xref: /openbmc/qemu/block.c (revision 88d88798b7efeb0be15b1a60e58b1f8ba4c2f700)
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"
30*88d88798SMarc Mari #include "module_block.h"
311de7afc9SPaolo Bonzini #include "qemu/module.h"
32cc7a8ea7SMarkus Armbruster #include "qapi/qmp/qerror.h"
3391a097e7SKevin Wolf #include "qapi/qmp/qbool.h"
347b1b5d19SPaolo Bonzini #include "qapi/qmp/qjson.h"
35bfb197e0SMarkus Armbruster #include "sysemu/block-backend.h"
369c17d615SPaolo Bonzini #include "sysemu/sysemu.h"
371de7afc9SPaolo Bonzini #include "qemu/notify.h"
3810817bf0SDaniel P. Berrange #include "qemu/coroutine.h"
39c13163fbSBenoît Canet #include "block/qapi.h"
40b2023818SLuiz Capitulino #include "qmp-commands.h"
411de7afc9SPaolo Bonzini #include "qemu/timer.h"
42a5ee7bd4SWenchao Xia #include "qapi-event.h"
43f348b6d1SVeronia Bahaa #include "qemu/cutils.h"
44f348b6d1SVeronia Bahaa #include "qemu/id.h"
45fc01f7e7Sbellard 
4671e72a19SJuan Quintela #ifdef CONFIG_BSD
477674e7bfSbellard #include <sys/ioctl.h>
4872cf2d4fSBlue Swirl #include <sys/queue.h>
49c5e97233Sblueswir1 #ifndef __DragonFly__
507674e7bfSbellard #include <sys/disk.h>
517674e7bfSbellard #endif
52c5e97233Sblueswir1 #endif
537674e7bfSbellard 
5449dc768dSaliguori #ifdef _WIN32
5549dc768dSaliguori #include <windows.h>
5649dc768dSaliguori #endif
5749dc768dSaliguori 
581c9805a3SStefan Hajnoczi #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
591c9805a3SStefan Hajnoczi 
60dc364f4cSBenoît Canet static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
61dc364f4cSBenoît Canet     QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
62dc364f4cSBenoît Canet 
632c1d04e0SMax Reitz static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
642c1d04e0SMax Reitz     QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
652c1d04e0SMax Reitz 
668a22f02aSStefan Hajnoczi static QLIST_HEAD(, BlockDriver) bdrv_drivers =
678a22f02aSStefan Hajnoczi     QLIST_HEAD_INITIALIZER(bdrv_drivers);
68ea2384d3Sbellard 
695b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
705b363937SMax Reitz                                            const char *reference,
715b363937SMax Reitz                                            QDict *options, int flags,
72f3930ed0SKevin Wolf                                            BlockDriverState *parent,
735b363937SMax Reitz                                            const BdrvChildRole *child_role,
745b363937SMax Reitz                                            Error **errp);
75f3930ed0SKevin Wolf 
76eb852011SMarkus Armbruster /* If non-zero, use only whitelisted block drivers */
77eb852011SMarkus Armbruster static int use_bdrv_whitelist;
78eb852011SMarkus Armbruster 
799e0b22f4SStefan Hajnoczi #ifdef _WIN32
809e0b22f4SStefan Hajnoczi static int is_windows_drive_prefix(const char *filename)
819e0b22f4SStefan Hajnoczi {
829e0b22f4SStefan Hajnoczi     return (((filename[0] >= 'a' && filename[0] <= 'z') ||
839e0b22f4SStefan Hajnoczi              (filename[0] >= 'A' && filename[0] <= 'Z')) &&
849e0b22f4SStefan Hajnoczi             filename[1] == ':');
859e0b22f4SStefan Hajnoczi }
869e0b22f4SStefan Hajnoczi 
879e0b22f4SStefan Hajnoczi int is_windows_drive(const char *filename)
889e0b22f4SStefan Hajnoczi {
899e0b22f4SStefan Hajnoczi     if (is_windows_drive_prefix(filename) &&
909e0b22f4SStefan Hajnoczi         filename[2] == '\0')
919e0b22f4SStefan Hajnoczi         return 1;
929e0b22f4SStefan Hajnoczi     if (strstart(filename, "\\\\.\\", NULL) ||
939e0b22f4SStefan Hajnoczi         strstart(filename, "//./", NULL))
949e0b22f4SStefan Hajnoczi         return 1;
959e0b22f4SStefan Hajnoczi     return 0;
969e0b22f4SStefan Hajnoczi }
979e0b22f4SStefan Hajnoczi #endif
989e0b22f4SStefan Hajnoczi 
99339064d5SKevin Wolf size_t bdrv_opt_mem_align(BlockDriverState *bs)
100339064d5SKevin Wolf {
101339064d5SKevin Wolf     if (!bs || !bs->drv) {
102459b4e66SDenis V. Lunev         /* page size or 4k (hdd sector size) should be on the safe side */
103459b4e66SDenis V. Lunev         return MAX(4096, getpagesize());
104339064d5SKevin Wolf     }
105339064d5SKevin Wolf 
106339064d5SKevin Wolf     return bs->bl.opt_mem_alignment;
107339064d5SKevin Wolf }
108339064d5SKevin Wolf 
1094196d2f0SDenis V. Lunev size_t bdrv_min_mem_align(BlockDriverState *bs)
1104196d2f0SDenis V. Lunev {
1114196d2f0SDenis V. Lunev     if (!bs || !bs->drv) {
112459b4e66SDenis V. Lunev         /* page size or 4k (hdd sector size) should be on the safe side */
113459b4e66SDenis V. Lunev         return MAX(4096, getpagesize());
1144196d2f0SDenis V. Lunev     }
1154196d2f0SDenis V. Lunev 
1164196d2f0SDenis V. Lunev     return bs->bl.min_mem_alignment;
1174196d2f0SDenis V. Lunev }
1184196d2f0SDenis V. Lunev 
1199e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */
1205c98415bSMax Reitz int path_has_protocol(const char *path)
1219e0b22f4SStefan Hajnoczi {
122947995c0SPaolo Bonzini     const char *p;
123947995c0SPaolo Bonzini 
1249e0b22f4SStefan Hajnoczi #ifdef _WIN32
1259e0b22f4SStefan Hajnoczi     if (is_windows_drive(path) ||
1269e0b22f4SStefan Hajnoczi         is_windows_drive_prefix(path)) {
1279e0b22f4SStefan Hajnoczi         return 0;
1289e0b22f4SStefan Hajnoczi     }
129947995c0SPaolo Bonzini     p = path + strcspn(path, ":/\\");
130947995c0SPaolo Bonzini #else
131947995c0SPaolo Bonzini     p = path + strcspn(path, ":/");
1329e0b22f4SStefan Hajnoczi #endif
1339e0b22f4SStefan Hajnoczi 
134947995c0SPaolo Bonzini     return *p == ':';
1359e0b22f4SStefan Hajnoczi }
1369e0b22f4SStefan Hajnoczi 
13783f64091Sbellard int path_is_absolute(const char *path)
13883f64091Sbellard {
13921664424Sbellard #ifdef _WIN32
14021664424Sbellard     /* specific case for names like: "\\.\d:" */
141f53f4da9SPaolo Bonzini     if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
14221664424Sbellard         return 1;
143f53f4da9SPaolo Bonzini     }
144f53f4da9SPaolo Bonzini     return (*path == '/' || *path == '\\');
1453b9f94e1Sbellard #else
146f53f4da9SPaolo Bonzini     return (*path == '/');
1473b9f94e1Sbellard #endif
14883f64091Sbellard }
14983f64091Sbellard 
15083f64091Sbellard /* if filename is absolute, just copy it to dest. Otherwise, build a
15183f64091Sbellard    path to it by considering it is relative to base_path. URL are
15283f64091Sbellard    supported. */
15383f64091Sbellard void path_combine(char *dest, int dest_size,
15483f64091Sbellard                   const char *base_path,
15583f64091Sbellard                   const char *filename)
15683f64091Sbellard {
15783f64091Sbellard     const char *p, *p1;
15883f64091Sbellard     int len;
15983f64091Sbellard 
16083f64091Sbellard     if (dest_size <= 0)
16183f64091Sbellard         return;
16283f64091Sbellard     if (path_is_absolute(filename)) {
16383f64091Sbellard         pstrcpy(dest, dest_size, filename);
16483f64091Sbellard     } else {
16583f64091Sbellard         p = strchr(base_path, ':');
16683f64091Sbellard         if (p)
16783f64091Sbellard             p++;
16883f64091Sbellard         else
16983f64091Sbellard             p = base_path;
1703b9f94e1Sbellard         p1 = strrchr(base_path, '/');
1713b9f94e1Sbellard #ifdef _WIN32
1723b9f94e1Sbellard         {
1733b9f94e1Sbellard             const char *p2;
1743b9f94e1Sbellard             p2 = strrchr(base_path, '\\');
1753b9f94e1Sbellard             if (!p1 || p2 > p1)
1763b9f94e1Sbellard                 p1 = p2;
1773b9f94e1Sbellard         }
1783b9f94e1Sbellard #endif
17983f64091Sbellard         if (p1)
18083f64091Sbellard             p1++;
18183f64091Sbellard         else
18283f64091Sbellard             p1 = base_path;
18383f64091Sbellard         if (p1 > p)
18483f64091Sbellard             p = p1;
18583f64091Sbellard         len = p - base_path;
18683f64091Sbellard         if (len > dest_size - 1)
18783f64091Sbellard             len = dest_size - 1;
18883f64091Sbellard         memcpy(dest, base_path, len);
18983f64091Sbellard         dest[len] = '\0';
19083f64091Sbellard         pstrcat(dest, dest_size, filename);
19183f64091Sbellard     }
19283f64091Sbellard }
19383f64091Sbellard 
1940a82855aSMax Reitz void bdrv_get_full_backing_filename_from_filename(const char *backed,
1950a82855aSMax Reitz                                                   const char *backing,
1969f07429eSMax Reitz                                                   char *dest, size_t sz,
1979f07429eSMax Reitz                                                   Error **errp)
1980a82855aSMax Reitz {
1999f07429eSMax Reitz     if (backing[0] == '\0' || path_has_protocol(backing) ||
2009f07429eSMax Reitz         path_is_absolute(backing))
2019f07429eSMax Reitz     {
2020a82855aSMax Reitz         pstrcpy(dest, sz, backing);
2039f07429eSMax Reitz     } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
2049f07429eSMax Reitz         error_setg(errp, "Cannot use relative backing file names for '%s'",
2059f07429eSMax Reitz                    backed);
2060a82855aSMax Reitz     } else {
2070a82855aSMax Reitz         path_combine(dest, sz, backed, backing);
2080a82855aSMax Reitz     }
2090a82855aSMax Reitz }
2100a82855aSMax Reitz 
2119f07429eSMax Reitz void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz,
2129f07429eSMax Reitz                                     Error **errp)
213dc5a1371SPaolo Bonzini {
2149f07429eSMax Reitz     char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename;
2159f07429eSMax Reitz 
2169f07429eSMax Reitz     bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file,
2179f07429eSMax Reitz                                                  dest, sz, errp);
218dc5a1371SPaolo Bonzini }
219dc5a1371SPaolo Bonzini 
2200eb7217eSStefan Hajnoczi void bdrv_register(BlockDriver *bdrv)
2210eb7217eSStefan Hajnoczi {
2228a22f02aSStefan Hajnoczi     QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
223ea2384d3Sbellard }
224b338082bSbellard 
225e4e9986bSMarkus Armbruster BlockDriverState *bdrv_new(void)
226e4e9986bSMarkus Armbruster {
227e4e9986bSMarkus Armbruster     BlockDriverState *bs;
228e4e9986bSMarkus Armbruster     int i;
229e4e9986bSMarkus Armbruster 
2305839e53bSMarkus Armbruster     bs = g_new0(BlockDriverState, 1);
231e4654d2dSFam Zheng     QLIST_INIT(&bs->dirty_bitmaps);
232fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
233fbe40ff7SFam Zheng         QLIST_INIT(&bs->op_blockers[i]);
234fbe40ff7SFam Zheng     }
235d616b224SStefan Hajnoczi     notifier_with_return_list_init(&bs->before_write_notifiers);
2369fcb0251SFam Zheng     bs->refcnt = 1;
237dcd04228SStefan Hajnoczi     bs->aio_context = qemu_get_aio_context();
238d7d512f6SPaolo Bonzini 
2393ff2f67aSEvgeny Yakovlev     qemu_co_queue_init(&bs->flush_queue);
2403ff2f67aSEvgeny Yakovlev 
2412c1d04e0SMax Reitz     QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
2422c1d04e0SMax Reitz 
243b338082bSbellard     return bs;
244b338082bSbellard }
245b338082bSbellard 
246*88d88798SMarc Mari static BlockDriver *bdrv_do_find_format(const char *format_name)
247ea2384d3Sbellard {
248ea2384d3Sbellard     BlockDriver *drv1;
249*88d88798SMarc Mari 
2508a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
2518a22f02aSStefan Hajnoczi         if (!strcmp(drv1->format_name, format_name)) {
252ea2384d3Sbellard             return drv1;
253ea2384d3Sbellard         }
2548a22f02aSStefan Hajnoczi     }
255*88d88798SMarc Mari 
256ea2384d3Sbellard     return NULL;
257ea2384d3Sbellard }
258ea2384d3Sbellard 
259*88d88798SMarc Mari BlockDriver *bdrv_find_format(const char *format_name)
260*88d88798SMarc Mari {
261*88d88798SMarc Mari     BlockDriver *drv1;
262*88d88798SMarc Mari     int i;
263*88d88798SMarc Mari 
264*88d88798SMarc Mari     drv1 = bdrv_do_find_format(format_name);
265*88d88798SMarc Mari     if (drv1) {
266*88d88798SMarc Mari         return drv1;
267*88d88798SMarc Mari     }
268*88d88798SMarc Mari 
269*88d88798SMarc Mari     /* The driver isn't registered, maybe we need to load a module */
270*88d88798SMarc Mari     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
271*88d88798SMarc Mari         if (!strcmp(block_driver_modules[i].format_name, format_name)) {
272*88d88798SMarc Mari             block_module_load_one(block_driver_modules[i].library_name);
273*88d88798SMarc Mari             break;
274*88d88798SMarc Mari         }
275*88d88798SMarc Mari     }
276*88d88798SMarc Mari 
277*88d88798SMarc Mari     return bdrv_do_find_format(format_name);
278*88d88798SMarc Mari }
279*88d88798SMarc Mari 
280b64ec4e4SFam Zheng static int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
281eb852011SMarkus Armbruster {
282b64ec4e4SFam Zheng     static const char *whitelist_rw[] = {
283b64ec4e4SFam Zheng         CONFIG_BDRV_RW_WHITELIST
284b64ec4e4SFam Zheng     };
285b64ec4e4SFam Zheng     static const char *whitelist_ro[] = {
286b64ec4e4SFam Zheng         CONFIG_BDRV_RO_WHITELIST
287eb852011SMarkus Armbruster     };
288eb852011SMarkus Armbruster     const char **p;
289eb852011SMarkus Armbruster 
290b64ec4e4SFam Zheng     if (!whitelist_rw[0] && !whitelist_ro[0]) {
291eb852011SMarkus Armbruster         return 1;               /* no whitelist, anything goes */
292b64ec4e4SFam Zheng     }
293eb852011SMarkus Armbruster 
294b64ec4e4SFam Zheng     for (p = whitelist_rw; *p; p++) {
295eb852011SMarkus Armbruster         if (!strcmp(drv->format_name, *p)) {
296eb852011SMarkus Armbruster             return 1;
297eb852011SMarkus Armbruster         }
298eb852011SMarkus Armbruster     }
299b64ec4e4SFam Zheng     if (read_only) {
300b64ec4e4SFam Zheng         for (p = whitelist_ro; *p; p++) {
301b64ec4e4SFam Zheng             if (!strcmp(drv->format_name, *p)) {
302b64ec4e4SFam Zheng                 return 1;
303b64ec4e4SFam Zheng             }
304b64ec4e4SFam Zheng         }
305b64ec4e4SFam Zheng     }
306eb852011SMarkus Armbruster     return 0;
307eb852011SMarkus Armbruster }
308eb852011SMarkus Armbruster 
309e6ff69bfSDaniel P. Berrange bool bdrv_uses_whitelist(void)
310e6ff69bfSDaniel P. Berrange {
311e6ff69bfSDaniel P. Berrange     return use_bdrv_whitelist;
312e6ff69bfSDaniel P. Berrange }
313e6ff69bfSDaniel P. Berrange 
3145b7e1542SZhi Yong Wu typedef struct CreateCo {
3155b7e1542SZhi Yong Wu     BlockDriver *drv;
3165b7e1542SZhi Yong Wu     char *filename;
31783d0521aSChunyan Liu     QemuOpts *opts;
3185b7e1542SZhi Yong Wu     int ret;
319cc84d90fSMax Reitz     Error *err;
3205b7e1542SZhi Yong Wu } CreateCo;
3215b7e1542SZhi Yong Wu 
3225b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque)
3235b7e1542SZhi Yong Wu {
324cc84d90fSMax Reitz     Error *local_err = NULL;
325cc84d90fSMax Reitz     int ret;
326cc84d90fSMax Reitz 
3275b7e1542SZhi Yong Wu     CreateCo *cco = opaque;
3285b7e1542SZhi Yong Wu     assert(cco->drv);
3295b7e1542SZhi Yong Wu 
330c282e1fdSChunyan Liu     ret = cco->drv->bdrv_create(cco->filename, cco->opts, &local_err);
331cc84d90fSMax Reitz     error_propagate(&cco->err, local_err);
332cc84d90fSMax Reitz     cco->ret = ret;
3335b7e1542SZhi Yong Wu }
3345b7e1542SZhi Yong Wu 
3350e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename,
33683d0521aSChunyan Liu                 QemuOpts *opts, Error **errp)
337ea2384d3Sbellard {
3385b7e1542SZhi Yong Wu     int ret;
3390e7e1989SKevin Wolf 
3405b7e1542SZhi Yong Wu     Coroutine *co;
3415b7e1542SZhi Yong Wu     CreateCo cco = {
3425b7e1542SZhi Yong Wu         .drv = drv,
3435b7e1542SZhi Yong Wu         .filename = g_strdup(filename),
34483d0521aSChunyan Liu         .opts = opts,
3455b7e1542SZhi Yong Wu         .ret = NOT_DONE,
346cc84d90fSMax Reitz         .err = NULL,
3475b7e1542SZhi Yong Wu     };
3485b7e1542SZhi Yong Wu 
349c282e1fdSChunyan Liu     if (!drv->bdrv_create) {
350cc84d90fSMax Reitz         error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
35180168bffSLuiz Capitulino         ret = -ENOTSUP;
35280168bffSLuiz Capitulino         goto out;
3535b7e1542SZhi Yong Wu     }
3545b7e1542SZhi Yong Wu 
3555b7e1542SZhi Yong Wu     if (qemu_in_coroutine()) {
3565b7e1542SZhi Yong Wu         /* Fast-path if already in coroutine context */
3575b7e1542SZhi Yong Wu         bdrv_create_co_entry(&cco);
3585b7e1542SZhi Yong Wu     } else {
3590b8b8753SPaolo Bonzini         co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
3600b8b8753SPaolo Bonzini         qemu_coroutine_enter(co);
3615b7e1542SZhi Yong Wu         while (cco.ret == NOT_DONE) {
362b47ec2c4SPaolo Bonzini             aio_poll(qemu_get_aio_context(), true);
3635b7e1542SZhi Yong Wu         }
3645b7e1542SZhi Yong Wu     }
3655b7e1542SZhi Yong Wu 
3665b7e1542SZhi Yong Wu     ret = cco.ret;
367cc84d90fSMax Reitz     if (ret < 0) {
36884d18f06SMarkus Armbruster         if (cco.err) {
369cc84d90fSMax Reitz             error_propagate(errp, cco.err);
370cc84d90fSMax Reitz         } else {
371cc84d90fSMax Reitz             error_setg_errno(errp, -ret, "Could not create image");
372cc84d90fSMax Reitz         }
373cc84d90fSMax Reitz     }
3745b7e1542SZhi Yong Wu 
37580168bffSLuiz Capitulino out:
37680168bffSLuiz Capitulino     g_free(cco.filename);
3775b7e1542SZhi Yong Wu     return ret;
378ea2384d3Sbellard }
379ea2384d3Sbellard 
380c282e1fdSChunyan Liu int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
38184a12e66SChristoph Hellwig {
38284a12e66SChristoph Hellwig     BlockDriver *drv;
383cc84d90fSMax Reitz     Error *local_err = NULL;
384cc84d90fSMax Reitz     int ret;
38584a12e66SChristoph Hellwig 
386b65a5e12SMax Reitz     drv = bdrv_find_protocol(filename, true, errp);
38784a12e66SChristoph Hellwig     if (drv == NULL) {
38816905d71SStefan Hajnoczi         return -ENOENT;
38984a12e66SChristoph Hellwig     }
39084a12e66SChristoph Hellwig 
391c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
392cc84d90fSMax Reitz     error_propagate(errp, local_err);
393cc84d90fSMax Reitz     return ret;
39484a12e66SChristoph Hellwig }
39584a12e66SChristoph Hellwig 
396892b7de8SEkaterina Tumanova /**
397892b7de8SEkaterina Tumanova  * Try to get @bs's logical and physical block size.
398892b7de8SEkaterina Tumanova  * On success, store them in @bsz struct and return 0.
399892b7de8SEkaterina Tumanova  * On failure return -errno.
400892b7de8SEkaterina Tumanova  * @bs must not be empty.
401892b7de8SEkaterina Tumanova  */
402892b7de8SEkaterina Tumanova int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
403892b7de8SEkaterina Tumanova {
404892b7de8SEkaterina Tumanova     BlockDriver *drv = bs->drv;
405892b7de8SEkaterina Tumanova 
406892b7de8SEkaterina Tumanova     if (drv && drv->bdrv_probe_blocksizes) {
407892b7de8SEkaterina Tumanova         return drv->bdrv_probe_blocksizes(bs, bsz);
408892b7de8SEkaterina Tumanova     }
409892b7de8SEkaterina Tumanova 
410892b7de8SEkaterina Tumanova     return -ENOTSUP;
411892b7de8SEkaterina Tumanova }
412892b7de8SEkaterina Tumanova 
413892b7de8SEkaterina Tumanova /**
414892b7de8SEkaterina Tumanova  * Try to get @bs's geometry (cyls, heads, sectors).
415892b7de8SEkaterina Tumanova  * On success, store them in @geo struct and return 0.
416892b7de8SEkaterina Tumanova  * On failure return -errno.
417892b7de8SEkaterina Tumanova  * @bs must not be empty.
418892b7de8SEkaterina Tumanova  */
419892b7de8SEkaterina Tumanova int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
420892b7de8SEkaterina Tumanova {
421892b7de8SEkaterina Tumanova     BlockDriver *drv = bs->drv;
422892b7de8SEkaterina Tumanova 
423892b7de8SEkaterina Tumanova     if (drv && drv->bdrv_probe_geometry) {
424892b7de8SEkaterina Tumanova         return drv->bdrv_probe_geometry(bs, geo);
425892b7de8SEkaterina Tumanova     }
426892b7de8SEkaterina Tumanova 
427892b7de8SEkaterina Tumanova     return -ENOTSUP;
428892b7de8SEkaterina Tumanova }
429892b7de8SEkaterina Tumanova 
430eba25057SJim Meyering /*
431eba25057SJim Meyering  * Create a uniquely-named empty temporary file.
432eba25057SJim Meyering  * Return 0 upon success, otherwise a negative errno value.
433eba25057SJim Meyering  */
434eba25057SJim Meyering int get_tmp_filename(char *filename, int size)
435eba25057SJim Meyering {
436d5249393Sbellard #ifdef _WIN32
4373b9f94e1Sbellard     char temp_dir[MAX_PATH];
438eba25057SJim Meyering     /* GetTempFileName requires that its output buffer (4th param)
439eba25057SJim Meyering        have length MAX_PATH or greater.  */
440eba25057SJim Meyering     assert(size >= MAX_PATH);
441eba25057SJim Meyering     return (GetTempPath(MAX_PATH, temp_dir)
442eba25057SJim Meyering             && GetTempFileName(temp_dir, "qem", 0, filename)
443eba25057SJim Meyering             ? 0 : -GetLastError());
444d5249393Sbellard #else
445ea2384d3Sbellard     int fd;
4467ccfb2ebSblueswir1     const char *tmpdir;
4470badc1eeSaurel32     tmpdir = getenv("TMPDIR");
44869bef793SAmit Shah     if (!tmpdir) {
44969bef793SAmit Shah         tmpdir = "/var/tmp";
45069bef793SAmit Shah     }
451eba25057SJim Meyering     if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
452eba25057SJim Meyering         return -EOVERFLOW;
453ea2384d3Sbellard     }
454eba25057SJim Meyering     fd = mkstemp(filename);
455fe235a06SDunrong Huang     if (fd < 0) {
456fe235a06SDunrong Huang         return -errno;
457fe235a06SDunrong Huang     }
458fe235a06SDunrong Huang     if (close(fd) != 0) {
459fe235a06SDunrong Huang         unlink(filename);
460eba25057SJim Meyering         return -errno;
461eba25057SJim Meyering     }
462eba25057SJim Meyering     return 0;
463d5249393Sbellard #endif
464eba25057SJim Meyering }
465ea2384d3Sbellard 
466f3a5d3f8SChristoph Hellwig /*
467f3a5d3f8SChristoph Hellwig  * Detect host devices. By convention, /dev/cdrom[N] is always
468f3a5d3f8SChristoph Hellwig  * recognized as a host CDROM.
469f3a5d3f8SChristoph Hellwig  */
470f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename)
471f3a5d3f8SChristoph Hellwig {
472508c7cb3SChristoph Hellwig     int score_max = 0, score;
473508c7cb3SChristoph Hellwig     BlockDriver *drv = NULL, *d;
474f3a5d3f8SChristoph Hellwig 
4758a22f02aSStefan Hajnoczi     QLIST_FOREACH(d, &bdrv_drivers, list) {
476508c7cb3SChristoph Hellwig         if (d->bdrv_probe_device) {
477508c7cb3SChristoph Hellwig             score = d->bdrv_probe_device(filename);
478508c7cb3SChristoph Hellwig             if (score > score_max) {
479508c7cb3SChristoph Hellwig                 score_max = score;
480508c7cb3SChristoph Hellwig                 drv = d;
481f3a5d3f8SChristoph Hellwig             }
482508c7cb3SChristoph Hellwig         }
483f3a5d3f8SChristoph Hellwig     }
484f3a5d3f8SChristoph Hellwig 
485508c7cb3SChristoph Hellwig     return drv;
486f3a5d3f8SChristoph Hellwig }
487f3a5d3f8SChristoph Hellwig 
488*88d88798SMarc Mari static BlockDriver *bdrv_do_find_protocol(const char *protocol)
489*88d88798SMarc Mari {
490*88d88798SMarc Mari     BlockDriver *drv1;
491*88d88798SMarc Mari 
492*88d88798SMarc Mari     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
493*88d88798SMarc Mari         if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
494*88d88798SMarc Mari             return drv1;
495*88d88798SMarc Mari         }
496*88d88798SMarc Mari     }
497*88d88798SMarc Mari 
498*88d88798SMarc Mari     return NULL;
499*88d88798SMarc Mari }
500*88d88798SMarc Mari 
50198289620SKevin Wolf BlockDriver *bdrv_find_protocol(const char *filename,
502b65a5e12SMax Reitz                                 bool allow_protocol_prefix,
503b65a5e12SMax Reitz                                 Error **errp)
50484a12e66SChristoph Hellwig {
50584a12e66SChristoph Hellwig     BlockDriver *drv1;
50684a12e66SChristoph Hellwig     char protocol[128];
50784a12e66SChristoph Hellwig     int len;
50884a12e66SChristoph Hellwig     const char *p;
509*88d88798SMarc Mari     int i;
51084a12e66SChristoph Hellwig 
51166f82ceeSKevin Wolf     /* TODO Drivers without bdrv_file_open must be specified explicitly */
51266f82ceeSKevin Wolf 
51339508e7aSChristoph Hellwig     /*
51439508e7aSChristoph Hellwig      * XXX(hch): we really should not let host device detection
51539508e7aSChristoph Hellwig      * override an explicit protocol specification, but moving this
51639508e7aSChristoph Hellwig      * later breaks access to device names with colons in them.
51739508e7aSChristoph Hellwig      * Thanks to the brain-dead persistent naming schemes on udev-
51839508e7aSChristoph Hellwig      * based Linux systems those actually are quite common.
51939508e7aSChristoph Hellwig      */
52084a12e66SChristoph Hellwig     drv1 = find_hdev_driver(filename);
52139508e7aSChristoph Hellwig     if (drv1) {
52284a12e66SChristoph Hellwig         return drv1;
52384a12e66SChristoph Hellwig     }
52439508e7aSChristoph Hellwig 
52598289620SKevin Wolf     if (!path_has_protocol(filename) || !allow_protocol_prefix) {
526ef810437SMax Reitz         return &bdrv_file;
52739508e7aSChristoph Hellwig     }
52898289620SKevin Wolf 
5299e0b22f4SStefan Hajnoczi     p = strchr(filename, ':');
5309e0b22f4SStefan Hajnoczi     assert(p != NULL);
53184a12e66SChristoph Hellwig     len = p - filename;
53284a12e66SChristoph Hellwig     if (len > sizeof(protocol) - 1)
53384a12e66SChristoph Hellwig         len = sizeof(protocol) - 1;
53484a12e66SChristoph Hellwig     memcpy(protocol, filename, len);
53584a12e66SChristoph Hellwig     protocol[len] = '\0';
536*88d88798SMarc Mari 
537*88d88798SMarc Mari     drv1 = bdrv_do_find_protocol(protocol);
538*88d88798SMarc Mari     if (drv1) {
53984a12e66SChristoph Hellwig         return drv1;
54084a12e66SChristoph Hellwig     }
541*88d88798SMarc Mari 
542*88d88798SMarc Mari     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
543*88d88798SMarc Mari         if (block_driver_modules[i].protocol_name &&
544*88d88798SMarc Mari             !strcmp(block_driver_modules[i].protocol_name, protocol)) {
545*88d88798SMarc Mari             block_module_load_one(block_driver_modules[i].library_name);
546*88d88798SMarc Mari             break;
547*88d88798SMarc Mari         }
54884a12e66SChristoph Hellwig     }
549b65a5e12SMax Reitz 
550*88d88798SMarc Mari     drv1 = bdrv_do_find_protocol(protocol);
551*88d88798SMarc Mari     if (!drv1) {
552b65a5e12SMax Reitz         error_setg(errp, "Unknown protocol '%s'", protocol);
553*88d88798SMarc Mari     }
554*88d88798SMarc Mari     return drv1;
55584a12e66SChristoph Hellwig }
55684a12e66SChristoph Hellwig 
557c6684249SMarkus Armbruster /*
558c6684249SMarkus Armbruster  * Guess image format by probing its contents.
559c6684249SMarkus Armbruster  * This is not a good idea when your image is raw (CVE-2008-2004), but
560c6684249SMarkus Armbruster  * we do it anyway for backward compatibility.
561c6684249SMarkus Armbruster  *
562c6684249SMarkus Armbruster  * @buf         contains the image's first @buf_size bytes.
5637cddd372SKevin Wolf  * @buf_size    is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
5647cddd372SKevin Wolf  *              but can be smaller if the image file is smaller)
565c6684249SMarkus Armbruster  * @filename    is its filename.
566c6684249SMarkus Armbruster  *
567c6684249SMarkus Armbruster  * For all block drivers, call the bdrv_probe() method to get its
568c6684249SMarkus Armbruster  * probing score.
569c6684249SMarkus Armbruster  * Return the first block driver with the highest probing score.
570c6684249SMarkus Armbruster  */
57138f3ef57SKevin Wolf BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
572c6684249SMarkus Armbruster                             const char *filename)
573c6684249SMarkus Armbruster {
574c6684249SMarkus Armbruster     int score_max = 0, score;
575c6684249SMarkus Armbruster     BlockDriver *drv = NULL, *d;
576c6684249SMarkus Armbruster 
577c6684249SMarkus Armbruster     QLIST_FOREACH(d, &bdrv_drivers, list) {
578c6684249SMarkus Armbruster         if (d->bdrv_probe) {
579c6684249SMarkus Armbruster             score = d->bdrv_probe(buf, buf_size, filename);
580c6684249SMarkus Armbruster             if (score > score_max) {
581c6684249SMarkus Armbruster                 score_max = score;
582c6684249SMarkus Armbruster                 drv = d;
583c6684249SMarkus Armbruster             }
584c6684249SMarkus Armbruster         }
585c6684249SMarkus Armbruster     }
586c6684249SMarkus Armbruster 
587c6684249SMarkus Armbruster     return drv;
588c6684249SMarkus Armbruster }
589c6684249SMarkus Armbruster 
590cf2ab8fcSKevin Wolf static int find_image_format(BdrvChild *file, const char *filename,
59134b5d2c6SMax Reitz                              BlockDriver **pdrv, Error **errp)
592ea2384d3Sbellard {
593cf2ab8fcSKevin Wolf     BlockDriverState *bs = file->bs;
594c6684249SMarkus Armbruster     BlockDriver *drv;
5957cddd372SKevin Wolf     uint8_t buf[BLOCK_PROBE_BUF_SIZE];
596f500a6d3SKevin Wolf     int ret = 0;
597f8ea0b00SNicholas Bellinger 
59808a00559SKevin Wolf     /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
599b192af8aSDimitris Aragiorgis     if (bdrv_is_sg(bs) || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) {
600ef810437SMax Reitz         *pdrv = &bdrv_raw;
601c98ac35dSStefan Weil         return ret;
6021a396859SNicholas A. Bellinger     }
603f8ea0b00SNicholas Bellinger 
604cf2ab8fcSKevin Wolf     ret = bdrv_pread(file, 0, buf, sizeof(buf));
605ea2384d3Sbellard     if (ret < 0) {
60634b5d2c6SMax Reitz         error_setg_errno(errp, -ret, "Could not read image for determining its "
60734b5d2c6SMax Reitz                          "format");
608c98ac35dSStefan Weil         *pdrv = NULL;
609c98ac35dSStefan Weil         return ret;
610ea2384d3Sbellard     }
611ea2384d3Sbellard 
612c6684249SMarkus Armbruster     drv = bdrv_probe_all(buf, ret, filename);
613c98ac35dSStefan Weil     if (!drv) {
61434b5d2c6SMax Reitz         error_setg(errp, "Could not determine image format: No compatible "
61534b5d2c6SMax Reitz                    "driver found");
616c98ac35dSStefan Weil         ret = -ENOENT;
617c98ac35dSStefan Weil     }
618c98ac35dSStefan Weil     *pdrv = drv;
619c98ac35dSStefan Weil     return ret;
620ea2384d3Sbellard }
621ea2384d3Sbellard 
62251762288SStefan Hajnoczi /**
62351762288SStefan Hajnoczi  * Set the current 'total_sectors' value
62465a9bb25SMarkus Armbruster  * Return 0 on success, -errno on error.
62551762288SStefan Hajnoczi  */
62651762288SStefan Hajnoczi static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
62751762288SStefan Hajnoczi {
62851762288SStefan Hajnoczi     BlockDriver *drv = bs->drv;
62951762288SStefan Hajnoczi 
630396759adSNicholas Bellinger     /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
631b192af8aSDimitris Aragiorgis     if (bdrv_is_sg(bs))
632396759adSNicholas Bellinger         return 0;
633396759adSNicholas Bellinger 
63451762288SStefan Hajnoczi     /* query actual device if possible, otherwise just trust the hint */
63551762288SStefan Hajnoczi     if (drv->bdrv_getlength) {
63651762288SStefan Hajnoczi         int64_t length = drv->bdrv_getlength(bs);
63751762288SStefan Hajnoczi         if (length < 0) {
63851762288SStefan Hajnoczi             return length;
63951762288SStefan Hajnoczi         }
6407e382003SFam Zheng         hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
64151762288SStefan Hajnoczi     }
64251762288SStefan Hajnoczi 
64351762288SStefan Hajnoczi     bs->total_sectors = hint;
64451762288SStefan Hajnoczi     return 0;
64551762288SStefan Hajnoczi }
64651762288SStefan Hajnoczi 
647c3993cdcSStefan Hajnoczi /**
648cddff5baSKevin Wolf  * Combines a QDict of new block driver @options with any missing options taken
649cddff5baSKevin Wolf  * from @old_options, so that leaving out an option defaults to its old value.
650cddff5baSKevin Wolf  */
651cddff5baSKevin Wolf static void bdrv_join_options(BlockDriverState *bs, QDict *options,
652cddff5baSKevin Wolf                               QDict *old_options)
653cddff5baSKevin Wolf {
654cddff5baSKevin Wolf     if (bs->drv && bs->drv->bdrv_join_options) {
655cddff5baSKevin Wolf         bs->drv->bdrv_join_options(options, old_options);
656cddff5baSKevin Wolf     } else {
657cddff5baSKevin Wolf         qdict_join(options, old_options, false);
658cddff5baSKevin Wolf     }
659cddff5baSKevin Wolf }
660cddff5baSKevin Wolf 
661cddff5baSKevin Wolf /**
6629e8f1835SPaolo Bonzini  * Set open flags for a given discard mode
6639e8f1835SPaolo Bonzini  *
6649e8f1835SPaolo Bonzini  * Return 0 on success, -1 if the discard mode was invalid.
6659e8f1835SPaolo Bonzini  */
6669e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags)
6679e8f1835SPaolo Bonzini {
6689e8f1835SPaolo Bonzini     *flags &= ~BDRV_O_UNMAP;
6699e8f1835SPaolo Bonzini 
6709e8f1835SPaolo Bonzini     if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
6719e8f1835SPaolo Bonzini         /* do nothing */
6729e8f1835SPaolo Bonzini     } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
6739e8f1835SPaolo Bonzini         *flags |= BDRV_O_UNMAP;
6749e8f1835SPaolo Bonzini     } else {
6759e8f1835SPaolo Bonzini         return -1;
6769e8f1835SPaolo Bonzini     }
6779e8f1835SPaolo Bonzini 
6789e8f1835SPaolo Bonzini     return 0;
6799e8f1835SPaolo Bonzini }
6809e8f1835SPaolo Bonzini 
6819e8f1835SPaolo Bonzini /**
682c3993cdcSStefan Hajnoczi  * Set open flags for a given cache mode
683c3993cdcSStefan Hajnoczi  *
684c3993cdcSStefan Hajnoczi  * Return 0 on success, -1 if the cache mode was invalid.
685c3993cdcSStefan Hajnoczi  */
68653e8ae01SKevin Wolf int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
687c3993cdcSStefan Hajnoczi {
688c3993cdcSStefan Hajnoczi     *flags &= ~BDRV_O_CACHE_MASK;
689c3993cdcSStefan Hajnoczi 
690c3993cdcSStefan Hajnoczi     if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
69153e8ae01SKevin Wolf         *writethrough = false;
69253e8ae01SKevin Wolf         *flags |= BDRV_O_NOCACHE;
69392196b2fSStefan Hajnoczi     } else if (!strcmp(mode, "directsync")) {
69453e8ae01SKevin Wolf         *writethrough = true;
69592196b2fSStefan Hajnoczi         *flags |= BDRV_O_NOCACHE;
696c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writeback")) {
69753e8ae01SKevin Wolf         *writethrough = false;
698c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "unsafe")) {
69953e8ae01SKevin Wolf         *writethrough = false;
700c3993cdcSStefan Hajnoczi         *flags |= BDRV_O_NO_FLUSH;
701c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writethrough")) {
70253e8ae01SKevin Wolf         *writethrough = true;
703c3993cdcSStefan Hajnoczi     } else {
704c3993cdcSStefan Hajnoczi         return -1;
705c3993cdcSStefan Hajnoczi     }
706c3993cdcSStefan Hajnoczi 
707c3993cdcSStefan Hajnoczi     return 0;
708c3993cdcSStefan Hajnoczi }
709c3993cdcSStefan Hajnoczi 
71020018e12SKevin Wolf static void bdrv_child_cb_drained_begin(BdrvChild *child)
71120018e12SKevin Wolf {
71220018e12SKevin Wolf     BlockDriverState *bs = child->opaque;
71320018e12SKevin Wolf     bdrv_drained_begin(bs);
71420018e12SKevin Wolf }
71520018e12SKevin Wolf 
71620018e12SKevin Wolf static void bdrv_child_cb_drained_end(BdrvChild *child)
71720018e12SKevin Wolf {
71820018e12SKevin Wolf     BlockDriverState *bs = child->opaque;
71920018e12SKevin Wolf     bdrv_drained_end(bs);
72020018e12SKevin Wolf }
72120018e12SKevin Wolf 
7220b50cc88SKevin Wolf /*
72373176beeSKevin Wolf  * Returns the options and flags that a temporary snapshot should get, based on
72473176beeSKevin Wolf  * the originally requested flags (the originally requested image will have
72573176beeSKevin Wolf  * flags like a backing file)
726b1e6fc08SKevin Wolf  */
72773176beeSKevin Wolf static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
72873176beeSKevin Wolf                                        int parent_flags, QDict *parent_options)
729b1e6fc08SKevin Wolf {
73073176beeSKevin Wolf     *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
73173176beeSKevin Wolf 
73273176beeSKevin Wolf     /* For temporary files, unconditional cache=unsafe is fine */
73373176beeSKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
73473176beeSKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
73541869044SKevin Wolf 
73641869044SKevin Wolf     /* aio=native doesn't work for cache.direct=off, so disable it for the
73741869044SKevin Wolf      * temporary snapshot */
73841869044SKevin Wolf     *child_flags &= ~BDRV_O_NATIVE_AIO;
739b1e6fc08SKevin Wolf }
740b1e6fc08SKevin Wolf 
741b1e6fc08SKevin Wolf /*
7428e2160e2SKevin Wolf  * Returns the options and flags that bs->file should get if a protocol driver
7438e2160e2SKevin Wolf  * is expected, based on the given options and flags for the parent BDS
7440b50cc88SKevin Wolf  */
7458e2160e2SKevin Wolf static void bdrv_inherited_options(int *child_flags, QDict *child_options,
7468e2160e2SKevin Wolf                                    int parent_flags, QDict *parent_options)
7470b50cc88SKevin Wolf {
7488e2160e2SKevin Wolf     int flags = parent_flags;
7498e2160e2SKevin Wolf 
7500b50cc88SKevin Wolf     /* Enable protocol handling, disable format probing for bs->file */
7510b50cc88SKevin Wolf     flags |= BDRV_O_PROTOCOL;
7520b50cc88SKevin Wolf 
75391a097e7SKevin Wolf     /* If the cache mode isn't explicitly set, inherit direct and no-flush from
75491a097e7SKevin Wolf      * the parent. */
75591a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
75691a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
75791a097e7SKevin Wolf 
7580b50cc88SKevin Wolf     /* Our block drivers take care to send flushes and respect unmap policy,
75991a097e7SKevin Wolf      * so we can default to enable both on lower layers regardless of the
76091a097e7SKevin Wolf      * corresponding parent options. */
76191a097e7SKevin Wolf     flags |= BDRV_O_UNMAP;
7620b50cc88SKevin Wolf 
7630b50cc88SKevin Wolf     /* Clear flags that only apply to the top layer */
764abb06c5aSDaniel P. Berrange     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ |
765abb06c5aSDaniel P. Berrange                BDRV_O_NO_IO);
7660b50cc88SKevin Wolf 
7678e2160e2SKevin Wolf     *child_flags = flags;
7680b50cc88SKevin Wolf }
7690b50cc88SKevin Wolf 
770f3930ed0SKevin Wolf const BdrvChildRole child_file = {
7718e2160e2SKevin Wolf     .inherit_options = bdrv_inherited_options,
77220018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
77320018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
774f3930ed0SKevin Wolf };
775f3930ed0SKevin Wolf 
776f3930ed0SKevin Wolf /*
7778e2160e2SKevin Wolf  * Returns the options and flags that bs->file should get if the use of formats
7788e2160e2SKevin Wolf  * (and not only protocols) is permitted for it, based on the given options and
7798e2160e2SKevin Wolf  * flags for the parent BDS
780f3930ed0SKevin Wolf  */
7818e2160e2SKevin Wolf static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
7828e2160e2SKevin Wolf                                        int parent_flags, QDict *parent_options)
783f3930ed0SKevin Wolf {
7848e2160e2SKevin Wolf     child_file.inherit_options(child_flags, child_options,
7858e2160e2SKevin Wolf                                parent_flags, parent_options);
7868e2160e2SKevin Wolf 
787abb06c5aSDaniel P. Berrange     *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
788f3930ed0SKevin Wolf }
789f3930ed0SKevin Wolf 
790f3930ed0SKevin Wolf const BdrvChildRole child_format = {
7918e2160e2SKevin Wolf     .inherit_options = bdrv_inherited_fmt_options,
79220018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
79320018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
794f3930ed0SKevin Wolf };
795f3930ed0SKevin Wolf 
796317fc44eSKevin Wolf /*
7978e2160e2SKevin Wolf  * Returns the options and flags that bs->backing should get, based on the
7988e2160e2SKevin Wolf  * given options and flags for the parent BDS
799317fc44eSKevin Wolf  */
8008e2160e2SKevin Wolf static void bdrv_backing_options(int *child_flags, QDict *child_options,
8018e2160e2SKevin Wolf                                  int parent_flags, QDict *parent_options)
802317fc44eSKevin Wolf {
8038e2160e2SKevin Wolf     int flags = parent_flags;
8048e2160e2SKevin Wolf 
805b8816a43SKevin Wolf     /* The cache mode is inherited unmodified for backing files; except WCE,
806b8816a43SKevin Wolf      * which is only applied on the top level (BlockBackend) */
80791a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
80891a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
80991a097e7SKevin Wolf 
810317fc44eSKevin Wolf     /* backing files always opened read-only */
811317fc44eSKevin Wolf     flags &= ~(BDRV_O_RDWR | BDRV_O_COPY_ON_READ);
812317fc44eSKevin Wolf 
813317fc44eSKevin Wolf     /* snapshot=on is handled on the top layer */
8148bfea15dSKevin Wolf     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
815317fc44eSKevin Wolf 
8168e2160e2SKevin Wolf     *child_flags = flags;
817317fc44eSKevin Wolf }
818317fc44eSKevin Wolf 
819f3930ed0SKevin Wolf static const BdrvChildRole child_backing = {
8208e2160e2SKevin Wolf     .inherit_options = bdrv_backing_options,
82120018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
82220018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
823f3930ed0SKevin Wolf };
824f3930ed0SKevin Wolf 
8257b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags)
8267b272452SKevin Wolf {
82761de4c68SKevin Wolf     int open_flags = flags;
8287b272452SKevin Wolf 
8297b272452SKevin Wolf     /*
8307b272452SKevin Wolf      * Clear flags that are internal to the block layer before opening the
8317b272452SKevin Wolf      * image.
8327b272452SKevin Wolf      */
83320cca275SKevin Wolf     open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
8347b272452SKevin Wolf 
8357b272452SKevin Wolf     /*
8367b272452SKevin Wolf      * Snapshots should be writable.
8377b272452SKevin Wolf      */
8388bfea15dSKevin Wolf     if (flags & BDRV_O_TEMPORARY) {
8397b272452SKevin Wolf         open_flags |= BDRV_O_RDWR;
8407b272452SKevin Wolf     }
8417b272452SKevin Wolf 
8427b272452SKevin Wolf     return open_flags;
8437b272452SKevin Wolf }
8447b272452SKevin Wolf 
84591a097e7SKevin Wolf static void update_flags_from_options(int *flags, QemuOpts *opts)
84691a097e7SKevin Wolf {
84791a097e7SKevin Wolf     *flags &= ~BDRV_O_CACHE_MASK;
84891a097e7SKevin Wolf 
84991a097e7SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH));
85091a097e7SKevin Wolf     if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
85191a097e7SKevin Wolf         *flags |= BDRV_O_NO_FLUSH;
85291a097e7SKevin Wolf     }
85391a097e7SKevin Wolf 
85491a097e7SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT));
85591a097e7SKevin Wolf     if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) {
85691a097e7SKevin Wolf         *flags |= BDRV_O_NOCACHE;
85791a097e7SKevin Wolf     }
85891a097e7SKevin Wolf }
85991a097e7SKevin Wolf 
86091a097e7SKevin Wolf static void update_options_from_flags(QDict *options, int flags)
86191a097e7SKevin Wolf {
86291a097e7SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
86391a097e7SKevin Wolf         qdict_put(options, BDRV_OPT_CACHE_DIRECT,
86491a097e7SKevin Wolf                   qbool_from_bool(flags & BDRV_O_NOCACHE));
86591a097e7SKevin Wolf     }
86691a097e7SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
86791a097e7SKevin Wolf         qdict_put(options, BDRV_OPT_CACHE_NO_FLUSH,
86891a097e7SKevin Wolf                   qbool_from_bool(flags & BDRV_O_NO_FLUSH));
86991a097e7SKevin Wolf     }
87091a097e7SKevin Wolf }
87191a097e7SKevin Wolf 
872636ea370SKevin Wolf static void bdrv_assign_node_name(BlockDriverState *bs,
8736913c0c2SBenoît Canet                                   const char *node_name,
8746913c0c2SBenoît Canet                                   Error **errp)
8756913c0c2SBenoît Canet {
87615489c76SJeff Cody     char *gen_node_name = NULL;
8776913c0c2SBenoît Canet 
87815489c76SJeff Cody     if (!node_name) {
87915489c76SJeff Cody         node_name = gen_node_name = id_generate(ID_BLOCK);
88015489c76SJeff Cody     } else if (!id_wellformed(node_name)) {
88115489c76SJeff Cody         /*
88215489c76SJeff Cody          * Check for empty string or invalid characters, but not if it is
88315489c76SJeff Cody          * generated (generated names use characters not available to the user)
88415489c76SJeff Cody          */
8859aebf3b8SKevin Wolf         error_setg(errp, "Invalid node name");
886636ea370SKevin Wolf         return;
8876913c0c2SBenoît Canet     }
8886913c0c2SBenoît Canet 
8890c5e94eeSBenoît Canet     /* takes care of avoiding namespaces collisions */
8907f06d47eSMarkus Armbruster     if (blk_by_name(node_name)) {
8910c5e94eeSBenoît Canet         error_setg(errp, "node-name=%s is conflicting with a device id",
8920c5e94eeSBenoît Canet                    node_name);
89315489c76SJeff Cody         goto out;
8940c5e94eeSBenoît Canet     }
8950c5e94eeSBenoît Canet 
8966913c0c2SBenoît Canet     /* takes care of avoiding duplicates node names */
8976913c0c2SBenoît Canet     if (bdrv_find_node(node_name)) {
8986913c0c2SBenoît Canet         error_setg(errp, "Duplicate node name");
89915489c76SJeff Cody         goto out;
9006913c0c2SBenoît Canet     }
9016913c0c2SBenoît Canet 
9026913c0c2SBenoît Canet     /* copy node name into the bs and insert it into the graph list */
9036913c0c2SBenoît Canet     pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
9046913c0c2SBenoît Canet     QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
90515489c76SJeff Cody out:
90615489c76SJeff Cody     g_free(gen_node_name);
9076913c0c2SBenoît Canet }
9086913c0c2SBenoît Canet 
90918edf289SKevin Wolf static QemuOptsList bdrv_runtime_opts = {
91018edf289SKevin Wolf     .name = "bdrv_common",
91118edf289SKevin Wolf     .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
91218edf289SKevin Wolf     .desc = {
91318edf289SKevin Wolf         {
91418edf289SKevin Wolf             .name = "node-name",
91518edf289SKevin Wolf             .type = QEMU_OPT_STRING,
91618edf289SKevin Wolf             .help = "Node name of the block device node",
91718edf289SKevin Wolf         },
91862392ebbSKevin Wolf         {
91962392ebbSKevin Wolf             .name = "driver",
92062392ebbSKevin Wolf             .type = QEMU_OPT_STRING,
92162392ebbSKevin Wolf             .help = "Block driver to use for the node",
92262392ebbSKevin Wolf         },
92391a097e7SKevin Wolf         {
92491a097e7SKevin Wolf             .name = BDRV_OPT_CACHE_DIRECT,
92591a097e7SKevin Wolf             .type = QEMU_OPT_BOOL,
92691a097e7SKevin Wolf             .help = "Bypass software writeback cache on the host",
92791a097e7SKevin Wolf         },
92891a097e7SKevin Wolf         {
92991a097e7SKevin Wolf             .name = BDRV_OPT_CACHE_NO_FLUSH,
93091a097e7SKevin Wolf             .type = QEMU_OPT_BOOL,
93191a097e7SKevin Wolf             .help = "Ignore flush requests",
93291a097e7SKevin Wolf         },
93318edf289SKevin Wolf         { /* end of list */ }
93418edf289SKevin Wolf     },
93518edf289SKevin Wolf };
93618edf289SKevin Wolf 
937b6ce07aaSKevin Wolf /*
93857915332SKevin Wolf  * Common part for opening disk images and files
939b6ad491aSKevin Wolf  *
940b6ad491aSKevin Wolf  * Removes all processed options from *options.
94157915332SKevin Wolf  */
9429a4f4c31SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BdrvChild *file,
94382dc8b41SKevin Wolf                             QDict *options, Error **errp)
94457915332SKevin Wolf {
94557915332SKevin Wolf     int ret, open_flags;
946035fccdfSKevin Wolf     const char *filename;
94762392ebbSKevin Wolf     const char *driver_name = NULL;
9486913c0c2SBenoît Canet     const char *node_name = NULL;
94918edf289SKevin Wolf     QemuOpts *opts;
95062392ebbSKevin Wolf     BlockDriver *drv;
95134b5d2c6SMax Reitz     Error *local_err = NULL;
95257915332SKevin Wolf 
9536405875cSPaolo Bonzini     assert(bs->file == NULL);
954707ff828SKevin Wolf     assert(options != NULL && bs->options != options);
95557915332SKevin Wolf 
95662392ebbSKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
95762392ebbSKevin Wolf     qemu_opts_absorb_qdict(opts, options, &local_err);
95862392ebbSKevin Wolf     if (local_err) {
95962392ebbSKevin Wolf         error_propagate(errp, local_err);
96062392ebbSKevin Wolf         ret = -EINVAL;
96162392ebbSKevin Wolf         goto fail_opts;
96262392ebbSKevin Wolf     }
96362392ebbSKevin Wolf 
96462392ebbSKevin Wolf     driver_name = qemu_opt_get(opts, "driver");
96562392ebbSKevin Wolf     drv = bdrv_find_format(driver_name);
96662392ebbSKevin Wolf     assert(drv != NULL);
96762392ebbSKevin Wolf 
96845673671SKevin Wolf     if (file != NULL) {
9699a4f4c31SKevin Wolf         filename = file->bs->filename;
97045673671SKevin Wolf     } else {
97145673671SKevin Wolf         filename = qdict_get_try_str(options, "filename");
97245673671SKevin Wolf     }
97345673671SKevin Wolf 
974765003dbSKevin Wolf     if (drv->bdrv_needs_filename && !filename) {
975765003dbSKevin Wolf         error_setg(errp, "The '%s' block driver requires a file name",
976765003dbSKevin Wolf                    drv->format_name);
97718edf289SKevin Wolf         ret = -EINVAL;
97818edf289SKevin Wolf         goto fail_opts;
97918edf289SKevin Wolf     }
98018edf289SKevin Wolf 
98182dc8b41SKevin Wolf     trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
98282dc8b41SKevin Wolf                            drv->format_name);
98362392ebbSKevin Wolf 
98418edf289SKevin Wolf     node_name = qemu_opt_get(opts, "node-name");
985636ea370SKevin Wolf     bdrv_assign_node_name(bs, node_name, &local_err);
9860fb6395cSMarkus Armbruster     if (local_err) {
987636ea370SKevin Wolf         error_propagate(errp, local_err);
98818edf289SKevin Wolf         ret = -EINVAL;
98918edf289SKevin Wolf         goto fail_opts;
9905d186eb0SKevin Wolf     }
9915d186eb0SKevin Wolf 
99282dc8b41SKevin Wolf     bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
993b64ec4e4SFam Zheng 
994b64ec4e4SFam Zheng     if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
9958f94a6e4SKevin Wolf         error_setg(errp,
9968f94a6e4SKevin Wolf                    !bs->read_only && bdrv_is_whitelisted(drv, true)
9978f94a6e4SKevin Wolf                         ? "Driver '%s' can only be used for read-only devices"
9988f94a6e4SKevin Wolf                         : "Driver '%s' is not whitelisted",
9998f94a6e4SKevin Wolf                    drv->format_name);
100018edf289SKevin Wolf         ret = -ENOTSUP;
100118edf289SKevin Wolf         goto fail_opts;
1002b64ec4e4SFam Zheng     }
100357915332SKevin Wolf 
100453fec9d3SStefan Hajnoczi     assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */
100582dc8b41SKevin Wolf     if (bs->open_flags & BDRV_O_COPY_ON_READ) {
10060ebd24e0SKevin Wolf         if (!bs->read_only) {
100753fec9d3SStefan Hajnoczi             bdrv_enable_copy_on_read(bs);
10080ebd24e0SKevin Wolf         } else {
10090ebd24e0SKevin Wolf             error_setg(errp, "Can't use copy-on-read on read-only device");
101018edf289SKevin Wolf             ret = -EINVAL;
101118edf289SKevin Wolf             goto fail_opts;
10120ebd24e0SKevin Wolf         }
101353fec9d3SStefan Hajnoczi     }
101453fec9d3SStefan Hajnoczi 
1015c2ad1b0cSKevin Wolf     if (filename != NULL) {
101657915332SKevin Wolf         pstrcpy(bs->filename, sizeof(bs->filename), filename);
1017c2ad1b0cSKevin Wolf     } else {
1018c2ad1b0cSKevin Wolf         bs->filename[0] = '\0';
1019c2ad1b0cSKevin Wolf     }
102091af7014SMax Reitz     pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
102157915332SKevin Wolf 
102257915332SKevin Wolf     bs->drv = drv;
10237267c094SAnthony Liguori     bs->opaque = g_malloc0(drv->instance_size);
102457915332SKevin Wolf 
102591a097e7SKevin Wolf     /* Apply cache mode options */
102691a097e7SKevin Wolf     update_flags_from_options(&bs->open_flags, opts);
102773ac451fSKevin Wolf 
102866f82ceeSKevin Wolf     /* Open the image, either directly or using a protocol */
102982dc8b41SKevin Wolf     open_flags = bdrv_open_flags(bs, bs->open_flags);
103066f82ceeSKevin Wolf     if (drv->bdrv_file_open) {
10315d186eb0SKevin Wolf         assert(file == NULL);
1032030be321SBenoît Canet         assert(!drv->bdrv_needs_filename || filename != NULL);
103334b5d2c6SMax Reitz         ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1034f500a6d3SKevin Wolf     } else {
10352af5ef70SKevin Wolf         if (file == NULL) {
103634b5d2c6SMax Reitz             error_setg(errp, "Can't use '%s' as a block driver for the "
103734b5d2c6SMax Reitz                        "protocol level", drv->format_name);
10382af5ef70SKevin Wolf             ret = -EINVAL;
10392af5ef70SKevin Wolf             goto free_and_fail;
10402af5ef70SKevin Wolf         }
1041f500a6d3SKevin Wolf         bs->file = file;
104234b5d2c6SMax Reitz         ret = drv->bdrv_open(bs, options, open_flags, &local_err);
104366f82ceeSKevin Wolf     }
104466f82ceeSKevin Wolf 
104557915332SKevin Wolf     if (ret < 0) {
104684d18f06SMarkus Armbruster         if (local_err) {
104734b5d2c6SMax Reitz             error_propagate(errp, local_err);
10482fa9aa59SDunrong Huang         } else if (bs->filename[0]) {
10492fa9aa59SDunrong Huang             error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
105034b5d2c6SMax Reitz         } else {
105134b5d2c6SMax Reitz             error_setg_errno(errp, -ret, "Could not open image");
105234b5d2c6SMax Reitz         }
105357915332SKevin Wolf         goto free_and_fail;
105457915332SKevin Wolf     }
105557915332SKevin Wolf 
105651762288SStefan Hajnoczi     ret = refresh_total_sectors(bs, bs->total_sectors);
105751762288SStefan Hajnoczi     if (ret < 0) {
105834b5d2c6SMax Reitz         error_setg_errno(errp, -ret, "Could not refresh total sector count");
105951762288SStefan Hajnoczi         goto free_and_fail;
106057915332SKevin Wolf     }
106151762288SStefan Hajnoczi 
10623baca891SKevin Wolf     bdrv_refresh_limits(bs, &local_err);
10633baca891SKevin Wolf     if (local_err) {
10643baca891SKevin Wolf         error_propagate(errp, local_err);
10653baca891SKevin Wolf         ret = -EINVAL;
10663baca891SKevin Wolf         goto free_and_fail;
10673baca891SKevin Wolf     }
10683baca891SKevin Wolf 
1069c25f53b0SPaolo Bonzini     assert(bdrv_opt_mem_align(bs) != 0);
10704196d2f0SDenis V. Lunev     assert(bdrv_min_mem_align(bs) != 0);
1071a5b8dd2cSEric Blake     assert(is_power_of_2(bs->bl.request_alignment));
107218edf289SKevin Wolf 
107318edf289SKevin Wolf     qemu_opts_del(opts);
107457915332SKevin Wolf     return 0;
107557915332SKevin Wolf 
107657915332SKevin Wolf free_and_fail:
107766f82ceeSKevin Wolf     bs->file = NULL;
10787267c094SAnthony Liguori     g_free(bs->opaque);
107957915332SKevin Wolf     bs->opaque = NULL;
108057915332SKevin Wolf     bs->drv = NULL;
108118edf289SKevin Wolf fail_opts:
108218edf289SKevin Wolf     qemu_opts_del(opts);
108357915332SKevin Wolf     return ret;
108457915332SKevin Wolf }
108557915332SKevin Wolf 
10865e5c4f63SKevin Wolf static QDict *parse_json_filename(const char *filename, Error **errp)
10875e5c4f63SKevin Wolf {
10885e5c4f63SKevin Wolf     QObject *options_obj;
10895e5c4f63SKevin Wolf     QDict *options;
10905e5c4f63SKevin Wolf     int ret;
10915e5c4f63SKevin Wolf 
10925e5c4f63SKevin Wolf     ret = strstart(filename, "json:", &filename);
10935e5c4f63SKevin Wolf     assert(ret);
10945e5c4f63SKevin Wolf 
10955e5c4f63SKevin Wolf     options_obj = qobject_from_json(filename);
10965e5c4f63SKevin Wolf     if (!options_obj) {
10975e5c4f63SKevin Wolf         error_setg(errp, "Could not parse the JSON options");
10985e5c4f63SKevin Wolf         return NULL;
10995e5c4f63SKevin Wolf     }
11005e5c4f63SKevin Wolf 
11015e5c4f63SKevin Wolf     if (qobject_type(options_obj) != QTYPE_QDICT) {
11025e5c4f63SKevin Wolf         qobject_decref(options_obj);
11035e5c4f63SKevin Wolf         error_setg(errp, "Invalid JSON object given");
11045e5c4f63SKevin Wolf         return NULL;
11055e5c4f63SKevin Wolf     }
11065e5c4f63SKevin Wolf 
11075e5c4f63SKevin Wolf     options = qobject_to_qdict(options_obj);
11085e5c4f63SKevin Wolf     qdict_flatten(options);
11095e5c4f63SKevin Wolf 
11105e5c4f63SKevin Wolf     return options;
11115e5c4f63SKevin Wolf }
11125e5c4f63SKevin Wolf 
1113de3b53f0SKevin Wolf static void parse_json_protocol(QDict *options, const char **pfilename,
1114de3b53f0SKevin Wolf                                 Error **errp)
1115de3b53f0SKevin Wolf {
1116de3b53f0SKevin Wolf     QDict *json_options;
1117de3b53f0SKevin Wolf     Error *local_err = NULL;
1118de3b53f0SKevin Wolf 
1119de3b53f0SKevin Wolf     /* Parse json: pseudo-protocol */
1120de3b53f0SKevin Wolf     if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1121de3b53f0SKevin Wolf         return;
1122de3b53f0SKevin Wolf     }
1123de3b53f0SKevin Wolf 
1124de3b53f0SKevin Wolf     json_options = parse_json_filename(*pfilename, &local_err);
1125de3b53f0SKevin Wolf     if (local_err) {
1126de3b53f0SKevin Wolf         error_propagate(errp, local_err);
1127de3b53f0SKevin Wolf         return;
1128de3b53f0SKevin Wolf     }
1129de3b53f0SKevin Wolf 
1130de3b53f0SKevin Wolf     /* Options given in the filename have lower priority than options
1131de3b53f0SKevin Wolf      * specified directly */
1132de3b53f0SKevin Wolf     qdict_join(options, json_options, false);
1133de3b53f0SKevin Wolf     QDECREF(json_options);
1134de3b53f0SKevin Wolf     *pfilename = NULL;
1135de3b53f0SKevin Wolf }
1136de3b53f0SKevin Wolf 
113757915332SKevin Wolf /*
1138f54120ffSKevin Wolf  * Fills in default options for opening images and converts the legacy
1139f54120ffSKevin Wolf  * filename/flags pair to option QDict entries.
114053a29513SMax Reitz  * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
114153a29513SMax Reitz  * block driver has been specified explicitly.
1142f54120ffSKevin Wolf  */
1143de3b53f0SKevin Wolf static int bdrv_fill_options(QDict **options, const char *filename,
1144053e1578SMax Reitz                              int *flags, Error **errp)
1145f54120ffSKevin Wolf {
1146f54120ffSKevin Wolf     const char *drvname;
114753a29513SMax Reitz     bool protocol = *flags & BDRV_O_PROTOCOL;
1148f54120ffSKevin Wolf     bool parse_filename = false;
1149053e1578SMax Reitz     BlockDriver *drv = NULL;
1150f54120ffSKevin Wolf     Error *local_err = NULL;
1151f54120ffSKevin Wolf 
115253a29513SMax Reitz     drvname = qdict_get_try_str(*options, "driver");
1153053e1578SMax Reitz     if (drvname) {
1154053e1578SMax Reitz         drv = bdrv_find_format(drvname);
1155053e1578SMax Reitz         if (!drv) {
1156053e1578SMax Reitz             error_setg(errp, "Unknown driver '%s'", drvname);
1157053e1578SMax Reitz             return -ENOENT;
1158053e1578SMax Reitz         }
115953a29513SMax Reitz         /* If the user has explicitly specified the driver, this choice should
116053a29513SMax Reitz          * override the BDRV_O_PROTOCOL flag */
1161053e1578SMax Reitz         protocol = drv->bdrv_file_open;
116253a29513SMax Reitz     }
116353a29513SMax Reitz 
116453a29513SMax Reitz     if (protocol) {
116553a29513SMax Reitz         *flags |= BDRV_O_PROTOCOL;
116653a29513SMax Reitz     } else {
116753a29513SMax Reitz         *flags &= ~BDRV_O_PROTOCOL;
116853a29513SMax Reitz     }
116953a29513SMax Reitz 
117091a097e7SKevin Wolf     /* Translate cache options from flags into options */
117191a097e7SKevin Wolf     update_options_from_flags(*options, *flags);
117291a097e7SKevin Wolf 
1173f54120ffSKevin Wolf     /* Fetch the file name from the options QDict if necessary */
117417b005f1SKevin Wolf     if (protocol && filename) {
1175f54120ffSKevin Wolf         if (!qdict_haskey(*options, "filename")) {
1176f54120ffSKevin Wolf             qdict_put(*options, "filename", qstring_from_str(filename));
1177f54120ffSKevin Wolf             parse_filename = true;
1178f54120ffSKevin Wolf         } else {
1179f54120ffSKevin Wolf             error_setg(errp, "Can't specify 'file' and 'filename' options at "
1180f54120ffSKevin Wolf                              "the same time");
1181f54120ffSKevin Wolf             return -EINVAL;
1182f54120ffSKevin Wolf         }
1183f54120ffSKevin Wolf     }
1184f54120ffSKevin Wolf 
1185f54120ffSKevin Wolf     /* Find the right block driver */
1186f54120ffSKevin Wolf     filename = qdict_get_try_str(*options, "filename");
1187f54120ffSKevin Wolf 
118817b005f1SKevin Wolf     if (!drvname && protocol) {
1189f54120ffSKevin Wolf         if (filename) {
1190b65a5e12SMax Reitz             drv = bdrv_find_protocol(filename, parse_filename, errp);
1191f54120ffSKevin Wolf             if (!drv) {
1192f54120ffSKevin Wolf                 return -EINVAL;
1193f54120ffSKevin Wolf             }
1194f54120ffSKevin Wolf 
1195f54120ffSKevin Wolf             drvname = drv->format_name;
1196f54120ffSKevin Wolf             qdict_put(*options, "driver", qstring_from_str(drvname));
1197f54120ffSKevin Wolf         } else {
1198f54120ffSKevin Wolf             error_setg(errp, "Must specify either driver or file");
1199f54120ffSKevin Wolf             return -EINVAL;
1200f54120ffSKevin Wolf         }
120117b005f1SKevin Wolf     }
120217b005f1SKevin Wolf 
120317b005f1SKevin Wolf     assert(drv || !protocol);
1204f54120ffSKevin Wolf 
1205f54120ffSKevin Wolf     /* Driver-specific filename parsing */
120617b005f1SKevin Wolf     if (drv && drv->bdrv_parse_filename && parse_filename) {
1207f54120ffSKevin Wolf         drv->bdrv_parse_filename(filename, *options, &local_err);
1208f54120ffSKevin Wolf         if (local_err) {
1209f54120ffSKevin Wolf             error_propagate(errp, local_err);
1210f54120ffSKevin Wolf             return -EINVAL;
1211f54120ffSKevin Wolf         }
1212f54120ffSKevin Wolf 
1213f54120ffSKevin Wolf         if (!drv->bdrv_needs_filename) {
1214f54120ffSKevin Wolf             qdict_del(*options, "filename");
1215f54120ffSKevin Wolf         }
1216f54120ffSKevin Wolf     }
1217f54120ffSKevin Wolf 
1218f54120ffSKevin Wolf     return 0;
1219f54120ffSKevin Wolf }
1220f54120ffSKevin Wolf 
1221e9740bc6SKevin Wolf static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
1222e9740bc6SKevin Wolf {
1223e9740bc6SKevin Wolf     BlockDriverState *old_bs = child->bs;
1224e9740bc6SKevin Wolf 
1225e9740bc6SKevin Wolf     if (old_bs) {
122636fe1331SKevin Wolf         if (old_bs->quiesce_counter && child->role->drained_end) {
122736fe1331SKevin Wolf             child->role->drained_end(child);
1228e9740bc6SKevin Wolf         }
122936fe1331SKevin Wolf         QLIST_REMOVE(child, next_parent);
1230e9740bc6SKevin Wolf     }
1231e9740bc6SKevin Wolf 
1232e9740bc6SKevin Wolf     child->bs = new_bs;
123336fe1331SKevin Wolf 
123436fe1331SKevin Wolf     if (new_bs) {
123536fe1331SKevin Wolf         QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
123636fe1331SKevin Wolf         if (new_bs->quiesce_counter && child->role->drained_begin) {
123736fe1331SKevin Wolf             child->role->drained_begin(child);
123836fe1331SKevin Wolf         }
123936fe1331SKevin Wolf     }
1240e9740bc6SKevin Wolf }
1241e9740bc6SKevin Wolf 
1242f21d96d0SKevin Wolf BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
1243260fecf1SKevin Wolf                                   const char *child_name,
124436fe1331SKevin Wolf                                   const BdrvChildRole *child_role,
124536fe1331SKevin Wolf                                   void *opaque)
1246df581792SKevin Wolf {
1247df581792SKevin Wolf     BdrvChild *child = g_new(BdrvChild, 1);
1248df581792SKevin Wolf     *child = (BdrvChild) {
1249e9740bc6SKevin Wolf         .bs     = NULL,
1250260fecf1SKevin Wolf         .name   = g_strdup(child_name),
1251df581792SKevin Wolf         .role   = child_role,
125236fe1331SKevin Wolf         .opaque = opaque,
1253df581792SKevin Wolf     };
1254df581792SKevin Wolf 
1255e9740bc6SKevin Wolf     bdrv_replace_child(child, child_bs);
1256b4b059f6SKevin Wolf 
1257b4b059f6SKevin Wolf     return child;
1258df581792SKevin Wolf }
1259df581792SKevin Wolf 
126098292c61SWen Congyang BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
1261f21d96d0SKevin Wolf                              BlockDriverState *child_bs,
1262f21d96d0SKevin Wolf                              const char *child_name,
1263f21d96d0SKevin Wolf                              const BdrvChildRole *child_role)
1264f21d96d0SKevin Wolf {
126536fe1331SKevin Wolf     BdrvChild *child = bdrv_root_attach_child(child_bs, child_name, child_role,
126620018e12SKevin Wolf                                               parent_bs);
1267f21d96d0SKevin Wolf     QLIST_INSERT_HEAD(&parent_bs->children, child, next);
1268f21d96d0SKevin Wolf     return child;
1269f21d96d0SKevin Wolf }
1270f21d96d0SKevin Wolf 
12713f09bfbcSKevin Wolf static void bdrv_detach_child(BdrvChild *child)
127233a60407SKevin Wolf {
1273f21d96d0SKevin Wolf     if (child->next.le_prev) {
127433a60407SKevin Wolf         QLIST_REMOVE(child, next);
1275f21d96d0SKevin Wolf         child->next.le_prev = NULL;
1276f21d96d0SKevin Wolf     }
1277e9740bc6SKevin Wolf 
1278e9740bc6SKevin Wolf     bdrv_replace_child(child, NULL);
1279e9740bc6SKevin Wolf 
1280260fecf1SKevin Wolf     g_free(child->name);
128133a60407SKevin Wolf     g_free(child);
128233a60407SKevin Wolf }
128333a60407SKevin Wolf 
1284f21d96d0SKevin Wolf void bdrv_root_unref_child(BdrvChild *child)
128533a60407SKevin Wolf {
1286779020cbSKevin Wolf     BlockDriverState *child_bs;
1287779020cbSKevin Wolf 
1288f21d96d0SKevin Wolf     child_bs = child->bs;
1289f21d96d0SKevin Wolf     bdrv_detach_child(child);
1290f21d96d0SKevin Wolf     bdrv_unref(child_bs);
1291f21d96d0SKevin Wolf }
1292f21d96d0SKevin Wolf 
1293f21d96d0SKevin Wolf void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
1294f21d96d0SKevin Wolf {
1295779020cbSKevin Wolf     if (child == NULL) {
1296779020cbSKevin Wolf         return;
1297779020cbSKevin Wolf     }
129833a60407SKevin Wolf 
129933a60407SKevin Wolf     if (child->bs->inherits_from == parent) {
130033a60407SKevin Wolf         child->bs->inherits_from = NULL;
130133a60407SKevin Wolf     }
130233a60407SKevin Wolf 
1303f21d96d0SKevin Wolf     bdrv_root_unref_child(child);
130433a60407SKevin Wolf }
130533a60407SKevin Wolf 
13065c8cab48SKevin Wolf 
13075c8cab48SKevin Wolf static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
13085c8cab48SKevin Wolf {
13095c8cab48SKevin Wolf     BdrvChild *c;
13105c8cab48SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
13115c8cab48SKevin Wolf         if (c->role->change_media) {
13125c8cab48SKevin Wolf             c->role->change_media(c, load);
13135c8cab48SKevin Wolf         }
13145c8cab48SKevin Wolf     }
13155c8cab48SKevin Wolf }
13165c8cab48SKevin Wolf 
13175c8cab48SKevin Wolf static void bdrv_parent_cb_resize(BlockDriverState *bs)
13185c8cab48SKevin Wolf {
13195c8cab48SKevin Wolf     BdrvChild *c;
13205c8cab48SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
13215c8cab48SKevin Wolf         if (c->role->resize) {
13225c8cab48SKevin Wolf             c->role->resize(c);
13235c8cab48SKevin Wolf         }
13245c8cab48SKevin Wolf     }
13255c8cab48SKevin Wolf }
13265c8cab48SKevin Wolf 
13275db15a57SKevin Wolf /*
13285db15a57SKevin Wolf  * Sets the backing file link of a BDS. A new reference is created; callers
13295db15a57SKevin Wolf  * which don't need their own reference any more must call bdrv_unref().
13305db15a57SKevin Wolf  */
13318d24cce1SFam Zheng void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd)
13328d24cce1SFam Zheng {
13335db15a57SKevin Wolf     if (backing_hd) {
13345db15a57SKevin Wolf         bdrv_ref(backing_hd);
13355db15a57SKevin Wolf     }
13368d24cce1SFam Zheng 
1337760e0063SKevin Wolf     if (bs->backing) {
1338826b6ca0SFam Zheng         assert(bs->backing_blocker);
1339760e0063SKevin Wolf         bdrv_op_unblock_all(bs->backing->bs, bs->backing_blocker);
13405db15a57SKevin Wolf         bdrv_unref_child(bs, bs->backing);
1341826b6ca0SFam Zheng     } else if (backing_hd) {
1342826b6ca0SFam Zheng         error_setg(&bs->backing_blocker,
134381e5f78aSAlberto Garcia                    "node is used as backing hd of '%s'",
134481e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(bs));
1345826b6ca0SFam Zheng     }
1346826b6ca0SFam Zheng 
13478d24cce1SFam Zheng     if (!backing_hd) {
1348826b6ca0SFam Zheng         error_free(bs->backing_blocker);
1349826b6ca0SFam Zheng         bs->backing_blocker = NULL;
1350760e0063SKevin Wolf         bs->backing = NULL;
13518d24cce1SFam Zheng         goto out;
13528d24cce1SFam Zheng     }
1353260fecf1SKevin Wolf     bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing);
13548d24cce1SFam Zheng     bs->open_flags &= ~BDRV_O_NO_BACKING;
13558d24cce1SFam Zheng     pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_hd->filename);
13568d24cce1SFam Zheng     pstrcpy(bs->backing_format, sizeof(bs->backing_format),
13578d24cce1SFam Zheng             backing_hd->drv ? backing_hd->drv->format_name : "");
1358826b6ca0SFam Zheng 
1359760e0063SKevin Wolf     bdrv_op_block_all(backing_hd, bs->backing_blocker);
1360826b6ca0SFam Zheng     /* Otherwise we won't be able to commit due to check in bdrv_commit */
1361760e0063SKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1362826b6ca0SFam Zheng                     bs->backing_blocker);
1363e9d6456eSWen Congyang     /*
1364e9d6456eSWen Congyang      * We do backup in 3 ways:
1365e9d6456eSWen Congyang      * 1. drive backup
1366e9d6456eSWen Congyang      *    The target bs is new opened, and the source is top BDS
1367e9d6456eSWen Congyang      * 2. blockdev backup
1368e9d6456eSWen Congyang      *    Both the source and the target are top BDSes.
1369e9d6456eSWen Congyang      * 3. internal backup(used for block replication)
1370e9d6456eSWen Congyang      *    Both the source and the target are backing file
1371e9d6456eSWen Congyang      *
1372e9d6456eSWen Congyang      * In case 1 and 2, neither the source nor the target is the backing file.
1373e9d6456eSWen Congyang      * In case 3, we will block the top BDS, so there is only one block job
1374e9d6456eSWen Congyang      * for the top BDS and its backing chain.
1375e9d6456eSWen Congyang      */
1376e9d6456eSWen Congyang     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1377e9d6456eSWen Congyang                     bs->backing_blocker);
1378e9d6456eSWen Congyang     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1379e9d6456eSWen Congyang                     bs->backing_blocker);
13808d24cce1SFam Zheng out:
13813baca891SKevin Wolf     bdrv_refresh_limits(bs, NULL);
13828d24cce1SFam Zheng }
13838d24cce1SFam Zheng 
138431ca6d07SKevin Wolf /*
138531ca6d07SKevin Wolf  * Opens the backing file for a BlockDriverState if not yet open
138631ca6d07SKevin Wolf  *
1387d9b7b057SKevin Wolf  * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
1388d9b7b057SKevin Wolf  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
1389d9b7b057SKevin Wolf  * itself, all options starting with "${bdref_key}." are considered part of the
1390d9b7b057SKevin Wolf  * BlockdevRef.
1391d9b7b057SKevin Wolf  *
1392d9b7b057SKevin Wolf  * TODO Can this be unified with bdrv_open_image()?
139331ca6d07SKevin Wolf  */
1394d9b7b057SKevin Wolf int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
1395d9b7b057SKevin Wolf                            const char *bdref_key, Error **errp)
13969156df12SPaolo Bonzini {
13971ba4b6a5SBenoît Canet     char *backing_filename = g_malloc0(PATH_MAX);
1398d9b7b057SKevin Wolf     char *bdref_key_dot;
1399d9b7b057SKevin Wolf     const char *reference = NULL;
1400317fc44eSKevin Wolf     int ret = 0;
14018d24cce1SFam Zheng     BlockDriverState *backing_hd;
1402d9b7b057SKevin Wolf     QDict *options;
1403d9b7b057SKevin Wolf     QDict *tmp_parent_options = NULL;
140434b5d2c6SMax Reitz     Error *local_err = NULL;
14059156df12SPaolo Bonzini 
1406760e0063SKevin Wolf     if (bs->backing != NULL) {
14071ba4b6a5SBenoît Canet         goto free_exit;
14089156df12SPaolo Bonzini     }
14099156df12SPaolo Bonzini 
141031ca6d07SKevin Wolf     /* NULL means an empty set of options */
1411d9b7b057SKevin Wolf     if (parent_options == NULL) {
1412d9b7b057SKevin Wolf         tmp_parent_options = qdict_new();
1413d9b7b057SKevin Wolf         parent_options = tmp_parent_options;
141431ca6d07SKevin Wolf     }
141531ca6d07SKevin Wolf 
14169156df12SPaolo Bonzini     bs->open_flags &= ~BDRV_O_NO_BACKING;
1417d9b7b057SKevin Wolf 
1418d9b7b057SKevin Wolf     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
1419d9b7b057SKevin Wolf     qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
1420d9b7b057SKevin Wolf     g_free(bdref_key_dot);
1421d9b7b057SKevin Wolf 
1422d9b7b057SKevin Wolf     reference = qdict_get_try_str(parent_options, bdref_key);
1423d9b7b057SKevin Wolf     if (reference || qdict_haskey(options, "file.filename")) {
14241cb6f506SKevin Wolf         backing_filename[0] = '\0';
14251cb6f506SKevin Wolf     } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
142631ca6d07SKevin Wolf         QDECREF(options);
14271ba4b6a5SBenoît Canet         goto free_exit;
1428dbecebddSFam Zheng     } else {
14299f07429eSMax Reitz         bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX,
14309f07429eSMax Reitz                                        &local_err);
14319f07429eSMax Reitz         if (local_err) {
14329f07429eSMax Reitz             ret = -EINVAL;
14339f07429eSMax Reitz             error_propagate(errp, local_err);
14349f07429eSMax Reitz             QDECREF(options);
14359f07429eSMax Reitz             goto free_exit;
14369f07429eSMax Reitz         }
14379156df12SPaolo Bonzini     }
14389156df12SPaolo Bonzini 
14398ee79e70SKevin Wolf     if (!bs->drv || !bs->drv->supports_backing) {
14408ee79e70SKevin Wolf         ret = -EINVAL;
14418ee79e70SKevin Wolf         error_setg(errp, "Driver doesn't support backing files");
14428ee79e70SKevin Wolf         QDECREF(options);
14438ee79e70SKevin Wolf         goto free_exit;
14448ee79e70SKevin Wolf     }
14458ee79e70SKevin Wolf 
1446c5f6e493SKevin Wolf     if (bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
1447c5f6e493SKevin Wolf         qdict_put(options, "driver", qstring_from_str(bs->backing_format));
14489156df12SPaolo Bonzini     }
14499156df12SPaolo Bonzini 
14505b363937SMax Reitz     backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL,
1451d9b7b057SKevin Wolf                                    reference, options, 0, bs, &child_backing,
1452e43bfd9cSMarkus Armbruster                                    errp);
14535b363937SMax Reitz     if (!backing_hd) {
14549156df12SPaolo Bonzini         bs->open_flags |= BDRV_O_NO_BACKING;
1455e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not open backing file: ");
14565b363937SMax Reitz         ret = -EINVAL;
14571ba4b6a5SBenoît Canet         goto free_exit;
14589156df12SPaolo Bonzini     }
1459df581792SKevin Wolf 
14605db15a57SKevin Wolf     /* Hook up the backing file link; drop our reference, bs owns the
14615db15a57SKevin Wolf      * backing_hd reference now */
14628d24cce1SFam Zheng     bdrv_set_backing_hd(bs, backing_hd);
14635db15a57SKevin Wolf     bdrv_unref(backing_hd);
1464d80ac658SPeter Feiner 
1465d9b7b057SKevin Wolf     qdict_del(parent_options, bdref_key);
1466d9b7b057SKevin Wolf 
14671ba4b6a5SBenoît Canet free_exit:
14681ba4b6a5SBenoît Canet     g_free(backing_filename);
1469d9b7b057SKevin Wolf     QDECREF(tmp_parent_options);
14701ba4b6a5SBenoît Canet     return ret;
14719156df12SPaolo Bonzini }
14729156df12SPaolo Bonzini 
1473b6ce07aaSKevin Wolf /*
1474da557aacSMax Reitz  * Opens a disk image whose options are given as BlockdevRef in another block
1475da557aacSMax Reitz  * device's options.
1476da557aacSMax Reitz  *
1477da557aacSMax Reitz  * If allow_none is true, no image will be opened if filename is false and no
1478b4b059f6SKevin Wolf  * BlockdevRef is given. NULL will be returned, but errp remains unset.
1479da557aacSMax Reitz  *
1480da557aacSMax Reitz  * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
1481da557aacSMax Reitz  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
1482da557aacSMax Reitz  * itself, all options starting with "${bdref_key}." are considered part of the
1483da557aacSMax Reitz  * BlockdevRef.
1484da557aacSMax Reitz  *
1485da557aacSMax Reitz  * The BlockdevRef will be removed from the options QDict.
1486da557aacSMax Reitz  */
1487b4b059f6SKevin Wolf BdrvChild *bdrv_open_child(const char *filename,
1488f3930ed0SKevin Wolf                            QDict *options, const char *bdref_key,
1489b4b059f6SKevin Wolf                            BlockDriverState* parent,
1490b4b059f6SKevin Wolf                            const BdrvChildRole *child_role,
1491f7d9fd8cSMax Reitz                            bool allow_none, Error **errp)
1492da557aacSMax Reitz {
1493b4b059f6SKevin Wolf     BdrvChild *c = NULL;
1494b4b059f6SKevin Wolf     BlockDriverState *bs;
1495da557aacSMax Reitz     QDict *image_options;
1496da557aacSMax Reitz     char *bdref_key_dot;
1497da557aacSMax Reitz     const char *reference;
1498da557aacSMax Reitz 
1499df581792SKevin Wolf     assert(child_role != NULL);
1500f67503e5SMax Reitz 
1501da557aacSMax Reitz     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
1502da557aacSMax Reitz     qdict_extract_subqdict(options, &image_options, bdref_key_dot);
1503da557aacSMax Reitz     g_free(bdref_key_dot);
1504da557aacSMax Reitz 
1505da557aacSMax Reitz     reference = qdict_get_try_str(options, bdref_key);
1506da557aacSMax Reitz     if (!filename && !reference && !qdict_size(image_options)) {
1507b4b059f6SKevin Wolf         if (!allow_none) {
1508da557aacSMax Reitz             error_setg(errp, "A block device must be specified for \"%s\"",
1509da557aacSMax Reitz                        bdref_key);
1510da557aacSMax Reitz         }
1511b20e61e0SMarkus Armbruster         QDECREF(image_options);
1512da557aacSMax Reitz         goto done;
1513da557aacSMax Reitz     }
1514da557aacSMax Reitz 
15155b363937SMax Reitz     bs = bdrv_open_inherit(filename, reference, image_options, 0,
1516ce343771SMax Reitz                            parent, child_role, errp);
15175b363937SMax Reitz     if (!bs) {
1518df581792SKevin Wolf         goto done;
1519df581792SKevin Wolf     }
1520df581792SKevin Wolf 
1521260fecf1SKevin Wolf     c = bdrv_attach_child(parent, bs, bdref_key, child_role);
1522da557aacSMax Reitz 
1523da557aacSMax Reitz done:
1524da557aacSMax Reitz     qdict_del(options, bdref_key);
1525b4b059f6SKevin Wolf     return c;
1526b4b059f6SKevin Wolf }
1527b4b059f6SKevin Wolf 
152866836189SMax Reitz static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
152966836189SMax Reitz                                                    int flags,
153066836189SMax Reitz                                                    QDict *snapshot_options,
153166836189SMax Reitz                                                    Error **errp)
1532b998875dSKevin Wolf {
1533b998875dSKevin Wolf     /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
15341ba4b6a5SBenoît Canet     char *tmp_filename = g_malloc0(PATH_MAX + 1);
1535b998875dSKevin Wolf     int64_t total_size;
153683d0521aSChunyan Liu     QemuOpts *opts = NULL;
1537b998875dSKevin Wolf     BlockDriverState *bs_snapshot;
1538b998875dSKevin Wolf     int ret;
1539b998875dSKevin Wolf 
1540b998875dSKevin Wolf     /* if snapshot, we create a temporary backing file and open it
1541b998875dSKevin Wolf        instead of opening 'filename' directly */
1542b998875dSKevin Wolf 
1543b998875dSKevin Wolf     /* Get the required size from the image */
1544f187743aSKevin Wolf     total_size = bdrv_getlength(bs);
1545f187743aSKevin Wolf     if (total_size < 0) {
1546f187743aSKevin Wolf         error_setg_errno(errp, -total_size, "Could not get image size");
15471ba4b6a5SBenoît Canet         goto out;
1548f187743aSKevin Wolf     }
1549b998875dSKevin Wolf 
1550b998875dSKevin Wolf     /* Create the temporary image */
15511ba4b6a5SBenoît Canet     ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
1552b998875dSKevin Wolf     if (ret < 0) {
1553b998875dSKevin Wolf         error_setg_errno(errp, -ret, "Could not get temporary filename");
15541ba4b6a5SBenoît Canet         goto out;
1555b998875dSKevin Wolf     }
1556b998875dSKevin Wolf 
1557ef810437SMax Reitz     opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
1558c282e1fdSChunyan Liu                             &error_abort);
155939101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
1560e43bfd9cSMarkus Armbruster     ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
156183d0521aSChunyan Liu     qemu_opts_del(opts);
1562b998875dSKevin Wolf     if (ret < 0) {
1563e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not create temporary overlay '%s': ",
1564e43bfd9cSMarkus Armbruster                       tmp_filename);
15651ba4b6a5SBenoît Canet         goto out;
1566b998875dSKevin Wolf     }
1567b998875dSKevin Wolf 
156873176beeSKevin Wolf     /* Prepare options QDict for the temporary file */
1569b998875dSKevin Wolf     qdict_put(snapshot_options, "file.driver",
1570b998875dSKevin Wolf               qstring_from_str("file"));
1571b998875dSKevin Wolf     qdict_put(snapshot_options, "file.filename",
1572b998875dSKevin Wolf               qstring_from_str(tmp_filename));
1573e6641719SMax Reitz     qdict_put(snapshot_options, "driver",
1574e6641719SMax Reitz               qstring_from_str("qcow2"));
1575b998875dSKevin Wolf 
15765b363937SMax Reitz     bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
157773176beeSKevin Wolf     snapshot_options = NULL;
15785b363937SMax Reitz     if (!bs_snapshot) {
15795b363937SMax Reitz         ret = -EINVAL;
15801ba4b6a5SBenoît Canet         goto out;
1581b998875dSKevin Wolf     }
1582b998875dSKevin Wolf 
158366836189SMax Reitz     /* bdrv_append() consumes a strong reference to bs_snapshot (i.e. it will
158466836189SMax Reitz      * call bdrv_unref() on it), so in order to be able to return one, we have
158566836189SMax Reitz      * to increase bs_snapshot's refcount here */
158666836189SMax Reitz     bdrv_ref(bs_snapshot);
1587b998875dSKevin Wolf     bdrv_append(bs_snapshot, bs);
15881ba4b6a5SBenoît Canet 
158966836189SMax Reitz     g_free(tmp_filename);
159066836189SMax Reitz     return bs_snapshot;
159166836189SMax Reitz 
15921ba4b6a5SBenoît Canet out:
159373176beeSKevin Wolf     QDECREF(snapshot_options);
15941ba4b6a5SBenoît Canet     g_free(tmp_filename);
159566836189SMax Reitz     return NULL;
1596b998875dSKevin Wolf }
1597b998875dSKevin Wolf 
1598da557aacSMax Reitz /*
1599b6ce07aaSKevin Wolf  * Opens a disk image (raw, qcow2, vmdk, ...)
1600de9c0cecSKevin Wolf  *
1601de9c0cecSKevin Wolf  * options is a QDict of options to pass to the block drivers, or NULL for an
1602de9c0cecSKevin Wolf  * empty set of options. The reference to the QDict belongs to the block layer
1603de9c0cecSKevin Wolf  * after the call (even on failure), so if the caller intends to reuse the
1604de9c0cecSKevin Wolf  * dictionary, it needs to use QINCREF() before calling bdrv_open.
1605f67503e5SMax Reitz  *
1606f67503e5SMax Reitz  * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
1607f67503e5SMax Reitz  * If it is not NULL, the referenced BDS will be reused.
1608ddf5636dSMax Reitz  *
1609ddf5636dSMax Reitz  * The reference parameter may be used to specify an existing block device which
1610ddf5636dSMax Reitz  * should be opened. If specified, neither options nor a filename may be given,
1611ddf5636dSMax Reitz  * nor can an existing BDS be reused (that is, *pbs has to be NULL).
1612b6ce07aaSKevin Wolf  */
16135b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
16145b363937SMax Reitz                                            const char *reference,
16155b363937SMax Reitz                                            QDict *options, int flags,
1616f3930ed0SKevin Wolf                                            BlockDriverState *parent,
16175b363937SMax Reitz                                            const BdrvChildRole *child_role,
16185b363937SMax Reitz                                            Error **errp)
1619ea2384d3Sbellard {
1620b6ce07aaSKevin Wolf     int ret;
16219a4f4c31SKevin Wolf     BdrvChild *file = NULL;
16229a4f4c31SKevin Wolf     BlockDriverState *bs;
1623ce343771SMax Reitz     BlockDriver *drv = NULL;
162474fe54f2SKevin Wolf     const char *drvname;
16253e8c2e57SAlberto Garcia     const char *backing;
162634b5d2c6SMax Reitz     Error *local_err = NULL;
162773176beeSKevin Wolf     QDict *snapshot_options = NULL;
1628b1e6fc08SKevin Wolf     int snapshot_flags = 0;
162933e3963eSbellard 
1630f3930ed0SKevin Wolf     assert(!child_role || !flags);
1631f3930ed0SKevin Wolf     assert(!child_role == !parent);
1632f67503e5SMax Reitz 
1633ddf5636dSMax Reitz     if (reference) {
1634ddf5636dSMax Reitz         bool options_non_empty = options ? qdict_size(options) : false;
1635ddf5636dSMax Reitz         QDECREF(options);
1636ddf5636dSMax Reitz 
1637ddf5636dSMax Reitz         if (filename || options_non_empty) {
1638ddf5636dSMax Reitz             error_setg(errp, "Cannot reference an existing block device with "
1639ddf5636dSMax Reitz                        "additional options or a new filename");
16405b363937SMax Reitz             return NULL;
1641ddf5636dSMax Reitz         }
1642ddf5636dSMax Reitz 
1643ddf5636dSMax Reitz         bs = bdrv_lookup_bs(reference, reference, errp);
1644ddf5636dSMax Reitz         if (!bs) {
16455b363937SMax Reitz             return NULL;
1646ddf5636dSMax Reitz         }
164776b22320SKevin Wolf 
1648ddf5636dSMax Reitz         bdrv_ref(bs);
16495b363937SMax Reitz         return bs;
1650ddf5636dSMax Reitz     }
1651ddf5636dSMax Reitz 
1652e4e9986bSMarkus Armbruster     bs = bdrv_new();
1653f67503e5SMax Reitz 
1654de9c0cecSKevin Wolf     /* NULL means an empty set of options */
1655de9c0cecSKevin Wolf     if (options == NULL) {
1656de9c0cecSKevin Wolf         options = qdict_new();
1657de9c0cecSKevin Wolf     }
1658de9c0cecSKevin Wolf 
1659145f598eSKevin Wolf     /* json: syntax counts as explicit options, as if in the QDict */
1660de3b53f0SKevin Wolf     parse_json_protocol(options, &filename, &local_err);
1661de3b53f0SKevin Wolf     if (local_err) {
1662de3b53f0SKevin Wolf         goto fail;
1663de3b53f0SKevin Wolf     }
1664de3b53f0SKevin Wolf 
1665145f598eSKevin Wolf     bs->explicit_options = qdict_clone_shallow(options);
1666145f598eSKevin Wolf 
1667f3930ed0SKevin Wolf     if (child_role) {
1668bddcec37SKevin Wolf         bs->inherits_from = parent;
16698e2160e2SKevin Wolf         child_role->inherit_options(&flags, options,
16708e2160e2SKevin Wolf                                     parent->open_flags, parent->options);
1671f3930ed0SKevin Wolf     }
1672f3930ed0SKevin Wolf 
1673de3b53f0SKevin Wolf     ret = bdrv_fill_options(&options, filename, &flags, &local_err);
1674462f5bcfSKevin Wolf     if (local_err) {
1675462f5bcfSKevin Wolf         goto fail;
1676462f5bcfSKevin Wolf     }
1677462f5bcfSKevin Wolf 
167862392ebbSKevin Wolf     bs->open_flags = flags;
167962392ebbSKevin Wolf     bs->options = options;
168062392ebbSKevin Wolf     options = qdict_clone_shallow(options);
168162392ebbSKevin Wolf 
168276c591b0SKevin Wolf     /* Find the right image format driver */
168376c591b0SKevin Wolf     drvname = qdict_get_try_str(options, "driver");
168476c591b0SKevin Wolf     if (drvname) {
168576c591b0SKevin Wolf         drv = bdrv_find_format(drvname);
168676c591b0SKevin Wolf         if (!drv) {
168776c591b0SKevin Wolf             error_setg(errp, "Unknown driver: '%s'", drvname);
168876c591b0SKevin Wolf             goto fail;
168976c591b0SKevin Wolf         }
169076c591b0SKevin Wolf     }
169176c591b0SKevin Wolf 
169276c591b0SKevin Wolf     assert(drvname || !(flags & BDRV_O_PROTOCOL));
169376c591b0SKevin Wolf 
16943e8c2e57SAlberto Garcia     backing = qdict_get_try_str(options, "backing");
16953e8c2e57SAlberto Garcia     if (backing && *backing == '\0') {
16963e8c2e57SAlberto Garcia         flags |= BDRV_O_NO_BACKING;
16973e8c2e57SAlberto Garcia         qdict_del(options, "backing");
16983e8c2e57SAlberto Garcia     }
16993e8c2e57SAlberto Garcia 
1700f500a6d3SKevin Wolf     /* Open image file without format layer */
1701f4788adcSKevin Wolf     if ((flags & BDRV_O_PROTOCOL) == 0) {
1702be028adcSJeff Cody         if (flags & BDRV_O_RDWR) {
1703be028adcSJeff Cody             flags |= BDRV_O_ALLOW_RDWR;
1704be028adcSJeff Cody         }
1705b1e6fc08SKevin Wolf         if (flags & BDRV_O_SNAPSHOT) {
170673176beeSKevin Wolf             snapshot_options = qdict_new();
170773176beeSKevin Wolf             bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
170873176beeSKevin Wolf                                        flags, options);
17098e2160e2SKevin Wolf             bdrv_backing_options(&flags, options, flags, options);
1710b1e6fc08SKevin Wolf         }
1711be028adcSJeff Cody 
1712f3930ed0SKevin Wolf         bs->open_flags = flags;
17131fdd6933SKevin Wolf 
17149a4f4c31SKevin Wolf         file = bdrv_open_child(filename, options, "file", bs,
17151fdd6933SKevin Wolf                                &child_file, true, &local_err);
17161fdd6933SKevin Wolf         if (local_err) {
17178bfea15dSKevin Wolf             goto fail;
1718f500a6d3SKevin Wolf         }
1719f4788adcSKevin Wolf     }
1720f500a6d3SKevin Wolf 
172176c591b0SKevin Wolf     /* Image format probing */
172238f3ef57SKevin Wolf     bs->probed = !drv;
172376c591b0SKevin Wolf     if (!drv && file) {
1724cf2ab8fcSKevin Wolf         ret = find_image_format(file, filename, &drv, &local_err);
172517b005f1SKevin Wolf         if (ret < 0) {
172617b005f1SKevin Wolf             goto fail;
172717b005f1SKevin Wolf         }
172862392ebbSKevin Wolf         /*
172962392ebbSKevin Wolf          * This option update would logically belong in bdrv_fill_options(),
173062392ebbSKevin Wolf          * but we first need to open bs->file for the probing to work, while
173162392ebbSKevin Wolf          * opening bs->file already requires the (mostly) final set of options
173262392ebbSKevin Wolf          * so that cache mode etc. can be inherited.
173362392ebbSKevin Wolf          *
173462392ebbSKevin Wolf          * Adding the driver later is somewhat ugly, but it's not an option
173562392ebbSKevin Wolf          * that would ever be inherited, so it's correct. We just need to make
173662392ebbSKevin Wolf          * sure to update both bs->options (which has the full effective
173762392ebbSKevin Wolf          * options for bs) and options (which has file.* already removed).
173862392ebbSKevin Wolf          */
173962392ebbSKevin Wolf         qdict_put(bs->options, "driver", qstring_from_str(drv->format_name));
174062392ebbSKevin Wolf         qdict_put(options, "driver", qstring_from_str(drv->format_name));
174176c591b0SKevin Wolf     } else if (!drv) {
17422a05cbe4SMax Reitz         error_setg(errp, "Must specify either driver or file");
17438bfea15dSKevin Wolf         goto fail;
17442a05cbe4SMax Reitz     }
1745f500a6d3SKevin Wolf 
174653a29513SMax Reitz     /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
174753a29513SMax Reitz     assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
174853a29513SMax Reitz     /* file must be NULL if a protocol BDS is about to be created
174953a29513SMax Reitz      * (the inverse results in an error message from bdrv_open_common()) */
175053a29513SMax Reitz     assert(!(flags & BDRV_O_PROTOCOL) || !file);
175153a29513SMax Reitz 
1752b6ce07aaSKevin Wolf     /* Open the image */
175382dc8b41SKevin Wolf     ret = bdrv_open_common(bs, file, options, &local_err);
1754b6ce07aaSKevin Wolf     if (ret < 0) {
17558bfea15dSKevin Wolf         goto fail;
17566987307cSChristoph Hellwig     }
17576987307cSChristoph Hellwig 
17582a05cbe4SMax Reitz     if (file && (bs->file != file)) {
17599a4f4c31SKevin Wolf         bdrv_unref_child(bs, file);
1760f500a6d3SKevin Wolf         file = NULL;
1761f500a6d3SKevin Wolf     }
1762f500a6d3SKevin Wolf 
1763b6ce07aaSKevin Wolf     /* If there is a backing file, use it */
17649156df12SPaolo Bonzini     if ((flags & BDRV_O_NO_BACKING) == 0) {
1765d9b7b057SKevin Wolf         ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
1766b6ce07aaSKevin Wolf         if (ret < 0) {
1767b6ad491aSKevin Wolf             goto close_and_fail;
1768b6ce07aaSKevin Wolf         }
1769b6ce07aaSKevin Wolf     }
1770b6ce07aaSKevin Wolf 
177191af7014SMax Reitz     bdrv_refresh_filename(bs);
177291af7014SMax Reitz 
1773b6ad491aSKevin Wolf     /* Check if any unknown options were used */
17745acd9d81SMax Reitz     if (options && (qdict_size(options) != 0)) {
1775b6ad491aSKevin Wolf         const QDictEntry *entry = qdict_first(options);
17765acd9d81SMax Reitz         if (flags & BDRV_O_PROTOCOL) {
17775acd9d81SMax Reitz             error_setg(errp, "Block protocol '%s' doesn't support the option "
17785acd9d81SMax Reitz                        "'%s'", drv->format_name, entry->key);
17795acd9d81SMax Reitz         } else {
1780d0e46a55SMax Reitz             error_setg(errp,
1781d0e46a55SMax Reitz                        "Block format '%s' does not support the option '%s'",
1782d0e46a55SMax Reitz                        drv->format_name, entry->key);
17835acd9d81SMax Reitz         }
1784b6ad491aSKevin Wolf 
1785b6ad491aSKevin Wolf         goto close_and_fail;
1786b6ad491aSKevin Wolf     }
1787b6ad491aSKevin Wolf 
1788b6ce07aaSKevin Wolf     if (!bdrv_key_required(bs)) {
17895c8cab48SKevin Wolf         bdrv_parent_cb_change_media(bs, true);
1790c3adb58fSMarkus Armbruster     } else if (!runstate_check(RUN_STATE_PRELAUNCH)
1791c3adb58fSMarkus Armbruster                && !runstate_check(RUN_STATE_INMIGRATE)
1792c3adb58fSMarkus Armbruster                && !runstate_check(RUN_STATE_PAUSED)) { /* HACK */
1793c3adb58fSMarkus Armbruster         error_setg(errp,
1794c3adb58fSMarkus Armbruster                    "Guest must be stopped for opening of encrypted image");
1795c3adb58fSMarkus Armbruster         goto close_and_fail;
1796b6ce07aaSKevin Wolf     }
1797b6ce07aaSKevin Wolf 
1798c3adb58fSMarkus Armbruster     QDECREF(options);
1799dd62f1caSKevin Wolf 
1800dd62f1caSKevin Wolf     /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
1801dd62f1caSKevin Wolf      * temporary snapshot afterwards. */
1802dd62f1caSKevin Wolf     if (snapshot_flags) {
180366836189SMax Reitz         BlockDriverState *snapshot_bs;
180466836189SMax Reitz         snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
180566836189SMax Reitz                                                 snapshot_options, &local_err);
180673176beeSKevin Wolf         snapshot_options = NULL;
1807dd62f1caSKevin Wolf         if (local_err) {
1808dd62f1caSKevin Wolf             goto close_and_fail;
1809dd62f1caSKevin Wolf         }
181066836189SMax Reitz         /* We are not going to return bs but the overlay on top of it
181166836189SMax Reitz          * (snapshot_bs); thus, we have to drop the strong reference to bs
18125b363937SMax Reitz          * (which we obtained by calling bdrv_new()). bs will not be deleted,
18135b363937SMax Reitz          * though, because the overlay still has a reference to it. */
181466836189SMax Reitz         bdrv_unref(bs);
181566836189SMax Reitz         bs = snapshot_bs;
181666836189SMax Reitz     }
181766836189SMax Reitz 
18185b363937SMax Reitz     return bs;
1819b6ce07aaSKevin Wolf 
18208bfea15dSKevin Wolf fail:
1821f500a6d3SKevin Wolf     if (file != NULL) {
18229a4f4c31SKevin Wolf         bdrv_unref_child(bs, file);
1823f500a6d3SKevin Wolf     }
182473176beeSKevin Wolf     QDECREF(snapshot_options);
1825145f598eSKevin Wolf     QDECREF(bs->explicit_options);
1826de9c0cecSKevin Wolf     QDECREF(bs->options);
1827b6ad491aSKevin Wolf     QDECREF(options);
1828de9c0cecSKevin Wolf     bs->options = NULL;
1829f67503e5SMax Reitz     bdrv_unref(bs);
183034b5d2c6SMax Reitz     error_propagate(errp, local_err);
18315b363937SMax Reitz     return NULL;
1832de9c0cecSKevin Wolf 
1833b6ad491aSKevin Wolf close_and_fail:
1834f67503e5SMax Reitz     bdrv_unref(bs);
183573176beeSKevin Wolf     QDECREF(snapshot_options);
1836b6ad491aSKevin Wolf     QDECREF(options);
183734b5d2c6SMax Reitz     error_propagate(errp, local_err);
18385b363937SMax Reitz     return NULL;
1839b6ce07aaSKevin Wolf }
1840b6ce07aaSKevin Wolf 
18415b363937SMax Reitz BlockDriverState *bdrv_open(const char *filename, const char *reference,
18425b363937SMax Reitz                             QDict *options, int flags, Error **errp)
1843f3930ed0SKevin Wolf {
18445b363937SMax Reitz     return bdrv_open_inherit(filename, reference, options, flags, NULL,
1845ce343771SMax Reitz                              NULL, errp);
1846f3930ed0SKevin Wolf }
1847f3930ed0SKevin Wolf 
1848e971aa12SJeff Cody typedef struct BlockReopenQueueEntry {
1849e971aa12SJeff Cody      bool prepared;
1850e971aa12SJeff Cody      BDRVReopenState state;
1851e971aa12SJeff Cody      QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1852e971aa12SJeff Cody } BlockReopenQueueEntry;
1853e971aa12SJeff Cody 
1854e971aa12SJeff Cody /*
1855e971aa12SJeff Cody  * Adds a BlockDriverState to a simple queue for an atomic, transactional
1856e971aa12SJeff Cody  * reopen of multiple devices.
1857e971aa12SJeff Cody  *
1858e971aa12SJeff Cody  * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
1859e971aa12SJeff Cody  * already performed, or alternatively may be NULL a new BlockReopenQueue will
1860e971aa12SJeff Cody  * be created and initialized. This newly created BlockReopenQueue should be
1861e971aa12SJeff Cody  * passed back in for subsequent calls that are intended to be of the same
1862e971aa12SJeff Cody  * atomic 'set'.
1863e971aa12SJeff Cody  *
1864e971aa12SJeff Cody  * bs is the BlockDriverState to add to the reopen queue.
1865e971aa12SJeff Cody  *
18664d2cb092SKevin Wolf  * options contains the changed options for the associated bs
18674d2cb092SKevin Wolf  * (the BlockReopenQueue takes ownership)
18684d2cb092SKevin Wolf  *
1869e971aa12SJeff Cody  * flags contains the open flags for the associated bs
1870e971aa12SJeff Cody  *
1871e971aa12SJeff Cody  * returns a pointer to bs_queue, which is either the newly allocated
1872e971aa12SJeff Cody  * bs_queue, or the existing bs_queue being used.
1873e971aa12SJeff Cody  *
1874e971aa12SJeff Cody  */
187528518102SKevin Wolf static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
18764d2cb092SKevin Wolf                                                  BlockDriverState *bs,
187728518102SKevin Wolf                                                  QDict *options,
187828518102SKevin Wolf                                                  int flags,
187928518102SKevin Wolf                                                  const BdrvChildRole *role,
188028518102SKevin Wolf                                                  QDict *parent_options,
188128518102SKevin Wolf                                                  int parent_flags)
1882e971aa12SJeff Cody {
1883e971aa12SJeff Cody     assert(bs != NULL);
1884e971aa12SJeff Cody 
1885e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry;
188667251a31SKevin Wolf     BdrvChild *child;
1887145f598eSKevin Wolf     QDict *old_options, *explicit_options;
188867251a31SKevin Wolf 
1889e971aa12SJeff Cody     if (bs_queue == NULL) {
1890e971aa12SJeff Cody         bs_queue = g_new0(BlockReopenQueue, 1);
1891e971aa12SJeff Cody         QSIMPLEQ_INIT(bs_queue);
1892e971aa12SJeff Cody     }
1893e971aa12SJeff Cody 
18944d2cb092SKevin Wolf     if (!options) {
18954d2cb092SKevin Wolf         options = qdict_new();
18964d2cb092SKevin Wolf     }
18974d2cb092SKevin Wolf 
189828518102SKevin Wolf     /*
189928518102SKevin Wolf      * Precedence of options:
190028518102SKevin Wolf      * 1. Explicitly passed in options (highest)
190191a097e7SKevin Wolf      * 2. Set in flags (only for top level)
1902145f598eSKevin Wolf      * 3. Retained from explicitly set options of bs
19038e2160e2SKevin Wolf      * 4. Inherited from parent node
190428518102SKevin Wolf      * 5. Retained from effective options of bs
190528518102SKevin Wolf      */
190628518102SKevin Wolf 
190791a097e7SKevin Wolf     if (!parent_options) {
190891a097e7SKevin Wolf         /*
190991a097e7SKevin Wolf          * Any setting represented by flags is always updated. If the
191091a097e7SKevin Wolf          * corresponding QDict option is set, it takes precedence. Otherwise
191191a097e7SKevin Wolf          * the flag is translated into a QDict option. The old setting of bs is
191291a097e7SKevin Wolf          * not considered.
191391a097e7SKevin Wolf          */
191491a097e7SKevin Wolf         update_options_from_flags(options, flags);
191591a097e7SKevin Wolf     }
191691a097e7SKevin Wolf 
1917145f598eSKevin Wolf     /* Old explicitly set values (don't overwrite by inherited value) */
1918145f598eSKevin Wolf     old_options = qdict_clone_shallow(bs->explicit_options);
1919145f598eSKevin Wolf     bdrv_join_options(bs, options, old_options);
1920145f598eSKevin Wolf     QDECREF(old_options);
1921145f598eSKevin Wolf 
1922145f598eSKevin Wolf     explicit_options = qdict_clone_shallow(options);
1923145f598eSKevin Wolf 
192428518102SKevin Wolf     /* Inherit from parent node */
192528518102SKevin Wolf     if (parent_options) {
192628518102SKevin Wolf         assert(!flags);
19278e2160e2SKevin Wolf         role->inherit_options(&flags, options, parent_flags, parent_options);
192828518102SKevin Wolf     }
192928518102SKevin Wolf 
193028518102SKevin Wolf     /* Old values are used for options that aren't set yet */
19314d2cb092SKevin Wolf     old_options = qdict_clone_shallow(bs->options);
1932cddff5baSKevin Wolf     bdrv_join_options(bs, options, old_options);
19334d2cb092SKevin Wolf     QDECREF(old_options);
19344d2cb092SKevin Wolf 
1935f1f25a2eSKevin Wolf     /* bdrv_open() masks this flag out */
1936f1f25a2eSKevin Wolf     flags &= ~BDRV_O_PROTOCOL;
1937f1f25a2eSKevin Wolf 
193867251a31SKevin Wolf     QLIST_FOREACH(child, &bs->children, next) {
19394c9dfe5dSKevin Wolf         QDict *new_child_options;
19404c9dfe5dSKevin Wolf         char *child_key_dot;
194167251a31SKevin Wolf 
19424c9dfe5dSKevin Wolf         /* reopen can only change the options of block devices that were
19434c9dfe5dSKevin Wolf          * implicitly created and inherited options. For other (referenced)
19444c9dfe5dSKevin Wolf          * block devices, a syntax like "backing.foo" results in an error. */
194567251a31SKevin Wolf         if (child->bs->inherits_from != bs) {
194667251a31SKevin Wolf             continue;
194767251a31SKevin Wolf         }
194867251a31SKevin Wolf 
19494c9dfe5dSKevin Wolf         child_key_dot = g_strdup_printf("%s.", child->name);
19504c9dfe5dSKevin Wolf         qdict_extract_subqdict(options, &new_child_options, child_key_dot);
19514c9dfe5dSKevin Wolf         g_free(child_key_dot);
19524c9dfe5dSKevin Wolf 
195328518102SKevin Wolf         bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0,
195428518102SKevin Wolf                                 child->role, options, flags);
1955e971aa12SJeff Cody     }
1956e971aa12SJeff Cody 
1957e971aa12SJeff Cody     bs_entry = g_new0(BlockReopenQueueEntry, 1);
1958e971aa12SJeff Cody     QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
1959e971aa12SJeff Cody 
1960e971aa12SJeff Cody     bs_entry->state.bs = bs;
19614d2cb092SKevin Wolf     bs_entry->state.options = options;
1962145f598eSKevin Wolf     bs_entry->state.explicit_options = explicit_options;
1963e971aa12SJeff Cody     bs_entry->state.flags = flags;
1964e971aa12SJeff Cody 
1965e971aa12SJeff Cody     return bs_queue;
1966e971aa12SJeff Cody }
1967e971aa12SJeff Cody 
196828518102SKevin Wolf BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
196928518102SKevin Wolf                                     BlockDriverState *bs,
197028518102SKevin Wolf                                     QDict *options, int flags)
197128518102SKevin Wolf {
197228518102SKevin Wolf     return bdrv_reopen_queue_child(bs_queue, bs, options, flags,
197328518102SKevin Wolf                                    NULL, NULL, 0);
197428518102SKevin Wolf }
197528518102SKevin Wolf 
1976e971aa12SJeff Cody /*
1977e971aa12SJeff Cody  * Reopen multiple BlockDriverStates atomically & transactionally.
1978e971aa12SJeff Cody  *
1979e971aa12SJeff Cody  * The queue passed in (bs_queue) must have been built up previous
1980e971aa12SJeff Cody  * via bdrv_reopen_queue().
1981e971aa12SJeff Cody  *
1982e971aa12SJeff Cody  * Reopens all BDS specified in the queue, with the appropriate
1983e971aa12SJeff Cody  * flags.  All devices are prepared for reopen, and failure of any
1984e971aa12SJeff Cody  * device will cause all device changes to be abandonded, and intermediate
1985e971aa12SJeff Cody  * data cleaned up.
1986e971aa12SJeff Cody  *
1987e971aa12SJeff Cody  * If all devices prepare successfully, then the changes are committed
1988e971aa12SJeff Cody  * to all devices.
1989e971aa12SJeff Cody  *
1990e971aa12SJeff Cody  */
1991e971aa12SJeff Cody int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
1992e971aa12SJeff Cody {
1993e971aa12SJeff Cody     int ret = -1;
1994e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry, *next;
1995e971aa12SJeff Cody     Error *local_err = NULL;
1996e971aa12SJeff Cody 
1997e971aa12SJeff Cody     assert(bs_queue != NULL);
1998e971aa12SJeff Cody 
1999e971aa12SJeff Cody     bdrv_drain_all();
2000e971aa12SJeff Cody 
2001e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
2002e971aa12SJeff Cody         if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
2003e971aa12SJeff Cody             error_propagate(errp, local_err);
2004e971aa12SJeff Cody             goto cleanup;
2005e971aa12SJeff Cody         }
2006e971aa12SJeff Cody         bs_entry->prepared = true;
2007e971aa12SJeff Cody     }
2008e971aa12SJeff Cody 
2009e971aa12SJeff Cody     /* If we reach this point, we have success and just need to apply the
2010e971aa12SJeff Cody      * changes
2011e971aa12SJeff Cody      */
2012e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
2013e971aa12SJeff Cody         bdrv_reopen_commit(&bs_entry->state);
2014e971aa12SJeff Cody     }
2015e971aa12SJeff Cody 
2016e971aa12SJeff Cody     ret = 0;
2017e971aa12SJeff Cody 
2018e971aa12SJeff Cody cleanup:
2019e971aa12SJeff Cody     QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
2020e971aa12SJeff Cody         if (ret && bs_entry->prepared) {
2021e971aa12SJeff Cody             bdrv_reopen_abort(&bs_entry->state);
2022145f598eSKevin Wolf         } else if (ret) {
2023145f598eSKevin Wolf             QDECREF(bs_entry->state.explicit_options);
2024e971aa12SJeff Cody         }
20254d2cb092SKevin Wolf         QDECREF(bs_entry->state.options);
2026e971aa12SJeff Cody         g_free(bs_entry);
2027e971aa12SJeff Cody     }
2028e971aa12SJeff Cody     g_free(bs_queue);
2029e971aa12SJeff Cody     return ret;
2030e971aa12SJeff Cody }
2031e971aa12SJeff Cody 
2032e971aa12SJeff Cody 
2033e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */
2034e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
2035e971aa12SJeff Cody {
2036e971aa12SJeff Cody     int ret = -1;
2037e971aa12SJeff Cody     Error *local_err = NULL;
20384d2cb092SKevin Wolf     BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags);
2039e971aa12SJeff Cody 
2040e971aa12SJeff Cody     ret = bdrv_reopen_multiple(queue, &local_err);
2041e971aa12SJeff Cody     if (local_err != NULL) {
2042e971aa12SJeff Cody         error_propagate(errp, local_err);
2043e971aa12SJeff Cody     }
2044e971aa12SJeff Cody     return ret;
2045e971aa12SJeff Cody }
2046e971aa12SJeff Cody 
2047e971aa12SJeff Cody 
2048e971aa12SJeff Cody /*
2049e971aa12SJeff Cody  * Prepares a BlockDriverState for reopen. All changes are staged in the
2050e971aa12SJeff Cody  * 'opaque' field of the BDRVReopenState, which is used and allocated by
2051e971aa12SJeff Cody  * the block driver layer .bdrv_reopen_prepare()
2052e971aa12SJeff Cody  *
2053e971aa12SJeff Cody  * bs is the BlockDriverState to reopen
2054e971aa12SJeff Cody  * flags are the new open flags
2055e971aa12SJeff Cody  * queue is the reopen queue
2056e971aa12SJeff Cody  *
2057e971aa12SJeff Cody  * Returns 0 on success, non-zero on error.  On error errp will be set
2058e971aa12SJeff Cody  * as well.
2059e971aa12SJeff Cody  *
2060e971aa12SJeff Cody  * On failure, bdrv_reopen_abort() will be called to clean up any data.
2061e971aa12SJeff Cody  * It is the responsibility of the caller to then call the abort() or
2062e971aa12SJeff Cody  * commit() for any other BDS that have been left in a prepare() state
2063e971aa12SJeff Cody  *
2064e971aa12SJeff Cody  */
2065e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
2066e971aa12SJeff Cody                         Error **errp)
2067e971aa12SJeff Cody {
2068e971aa12SJeff Cody     int ret = -1;
2069e971aa12SJeff Cody     Error *local_err = NULL;
2070e971aa12SJeff Cody     BlockDriver *drv;
2071ccf9dc07SKevin Wolf     QemuOpts *opts;
2072ccf9dc07SKevin Wolf     const char *value;
2073e971aa12SJeff Cody 
2074e971aa12SJeff Cody     assert(reopen_state != NULL);
2075e971aa12SJeff Cody     assert(reopen_state->bs->drv != NULL);
2076e971aa12SJeff Cody     drv = reopen_state->bs->drv;
2077e971aa12SJeff Cody 
2078ccf9dc07SKevin Wolf     /* Process generic block layer options */
2079ccf9dc07SKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
2080ccf9dc07SKevin Wolf     qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
2081ccf9dc07SKevin Wolf     if (local_err) {
2082ccf9dc07SKevin Wolf         error_propagate(errp, local_err);
2083ccf9dc07SKevin Wolf         ret = -EINVAL;
2084ccf9dc07SKevin Wolf         goto error;
2085ccf9dc07SKevin Wolf     }
2086ccf9dc07SKevin Wolf 
208791a097e7SKevin Wolf     update_flags_from_options(&reopen_state->flags, opts);
208891a097e7SKevin Wolf 
2089ccf9dc07SKevin Wolf     /* node-name and driver must be unchanged. Put them back into the QDict, so
2090ccf9dc07SKevin Wolf      * that they are checked at the end of this function. */
2091ccf9dc07SKevin Wolf     value = qemu_opt_get(opts, "node-name");
2092ccf9dc07SKevin Wolf     if (value) {
2093ccf9dc07SKevin Wolf         qdict_put(reopen_state->options, "node-name", qstring_from_str(value));
2094ccf9dc07SKevin Wolf     }
2095ccf9dc07SKevin Wolf 
2096ccf9dc07SKevin Wolf     value = qemu_opt_get(opts, "driver");
2097ccf9dc07SKevin Wolf     if (value) {
2098ccf9dc07SKevin Wolf         qdict_put(reopen_state->options, "driver", qstring_from_str(value));
2099ccf9dc07SKevin Wolf     }
2100ccf9dc07SKevin Wolf 
2101e971aa12SJeff Cody     /* if we are to stay read-only, do not allow permission change
2102e971aa12SJeff Cody      * to r/w */
2103e971aa12SJeff Cody     if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) &&
2104e971aa12SJeff Cody         reopen_state->flags & BDRV_O_RDWR) {
210581e5f78aSAlberto Garcia         error_setg(errp, "Node '%s' is read only",
210681e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(reopen_state->bs));
2107e971aa12SJeff Cody         goto error;
2108e971aa12SJeff Cody     }
2109e971aa12SJeff Cody 
2110e971aa12SJeff Cody 
2111e971aa12SJeff Cody     ret = bdrv_flush(reopen_state->bs);
2112e971aa12SJeff Cody     if (ret) {
2113455b0fdeSEric Blake         error_setg_errno(errp, -ret, "Error flushing drive");
2114e971aa12SJeff Cody         goto error;
2115e971aa12SJeff Cody     }
2116e971aa12SJeff Cody 
2117e971aa12SJeff Cody     if (drv->bdrv_reopen_prepare) {
2118e971aa12SJeff Cody         ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
2119e971aa12SJeff Cody         if (ret) {
2120e971aa12SJeff Cody             if (local_err != NULL) {
2121e971aa12SJeff Cody                 error_propagate(errp, local_err);
2122e971aa12SJeff Cody             } else {
2123d8b6895fSLuiz Capitulino                 error_setg(errp, "failed while preparing to reopen image '%s'",
2124e971aa12SJeff Cody                            reopen_state->bs->filename);
2125e971aa12SJeff Cody             }
2126e971aa12SJeff Cody             goto error;
2127e971aa12SJeff Cody         }
2128e971aa12SJeff Cody     } else {
2129e971aa12SJeff Cody         /* It is currently mandatory to have a bdrv_reopen_prepare()
2130e971aa12SJeff Cody          * handler for each supported drv. */
213181e5f78aSAlberto Garcia         error_setg(errp, "Block format '%s' used by node '%s' "
213281e5f78aSAlberto Garcia                    "does not support reopening files", drv->format_name,
213381e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(reopen_state->bs));
2134e971aa12SJeff Cody         ret = -1;
2135e971aa12SJeff Cody         goto error;
2136e971aa12SJeff Cody     }
2137e971aa12SJeff Cody 
21384d2cb092SKevin Wolf     /* Options that are not handled are only okay if they are unchanged
21394d2cb092SKevin Wolf      * compared to the old state. It is expected that some options are only
21404d2cb092SKevin Wolf      * used for the initial open, but not reopen (e.g. filename) */
21414d2cb092SKevin Wolf     if (qdict_size(reopen_state->options)) {
21424d2cb092SKevin Wolf         const QDictEntry *entry = qdict_first(reopen_state->options);
21434d2cb092SKevin Wolf 
21444d2cb092SKevin Wolf         do {
21454d2cb092SKevin Wolf             QString *new_obj = qobject_to_qstring(entry->value);
21464d2cb092SKevin Wolf             const char *new = qstring_get_str(new_obj);
21474d2cb092SKevin Wolf             const char *old = qdict_get_try_str(reopen_state->bs->options,
21484d2cb092SKevin Wolf                                                 entry->key);
21494d2cb092SKevin Wolf 
21504d2cb092SKevin Wolf             if (!old || strcmp(new, old)) {
21514d2cb092SKevin Wolf                 error_setg(errp, "Cannot change the option '%s'", entry->key);
21524d2cb092SKevin Wolf                 ret = -EINVAL;
21534d2cb092SKevin Wolf                 goto error;
21544d2cb092SKevin Wolf             }
21554d2cb092SKevin Wolf         } while ((entry = qdict_next(reopen_state->options, entry)));
21564d2cb092SKevin Wolf     }
21574d2cb092SKevin Wolf 
2158e971aa12SJeff Cody     ret = 0;
2159e971aa12SJeff Cody 
2160e971aa12SJeff Cody error:
2161ccf9dc07SKevin Wolf     qemu_opts_del(opts);
2162e971aa12SJeff Cody     return ret;
2163e971aa12SJeff Cody }
2164e971aa12SJeff Cody 
2165e971aa12SJeff Cody /*
2166e971aa12SJeff Cody  * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
2167e971aa12SJeff Cody  * makes them final by swapping the staging BlockDriverState contents into
2168e971aa12SJeff Cody  * the active BlockDriverState contents.
2169e971aa12SJeff Cody  */
2170e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state)
2171e971aa12SJeff Cody {
2172e971aa12SJeff Cody     BlockDriver *drv;
2173e971aa12SJeff Cody 
2174e971aa12SJeff Cody     assert(reopen_state != NULL);
2175e971aa12SJeff Cody     drv = reopen_state->bs->drv;
2176e971aa12SJeff Cody     assert(drv != NULL);
2177e971aa12SJeff Cody 
2178e971aa12SJeff Cody     /* If there are any driver level actions to take */
2179e971aa12SJeff Cody     if (drv->bdrv_reopen_commit) {
2180e971aa12SJeff Cody         drv->bdrv_reopen_commit(reopen_state);
2181e971aa12SJeff Cody     }
2182e971aa12SJeff Cody 
2183e971aa12SJeff Cody     /* set BDS specific flags now */
2184145f598eSKevin Wolf     QDECREF(reopen_state->bs->explicit_options);
2185145f598eSKevin Wolf 
2186145f598eSKevin Wolf     reopen_state->bs->explicit_options   = reopen_state->explicit_options;
2187e971aa12SJeff Cody     reopen_state->bs->open_flags         = reopen_state->flags;
2188e971aa12SJeff Cody     reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
2189355ef4acSKevin Wolf 
21903baca891SKevin Wolf     bdrv_refresh_limits(reopen_state->bs, NULL);
2191e971aa12SJeff Cody }
2192e971aa12SJeff Cody 
2193e971aa12SJeff Cody /*
2194e971aa12SJeff Cody  * Abort the reopen, and delete and free the staged changes in
2195e971aa12SJeff Cody  * reopen_state
2196e971aa12SJeff Cody  */
2197e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state)
2198e971aa12SJeff Cody {
2199e971aa12SJeff Cody     BlockDriver *drv;
2200e971aa12SJeff Cody 
2201e971aa12SJeff Cody     assert(reopen_state != NULL);
2202e971aa12SJeff Cody     drv = reopen_state->bs->drv;
2203e971aa12SJeff Cody     assert(drv != NULL);
2204e971aa12SJeff Cody 
2205e971aa12SJeff Cody     if (drv->bdrv_reopen_abort) {
2206e971aa12SJeff Cody         drv->bdrv_reopen_abort(reopen_state);
2207e971aa12SJeff Cody     }
2208145f598eSKevin Wolf 
2209145f598eSKevin Wolf     QDECREF(reopen_state->explicit_options);
2210e971aa12SJeff Cody }
2211e971aa12SJeff Cody 
2212e971aa12SJeff Cody 
221364dff520SMax Reitz static void bdrv_close(BlockDriverState *bs)
2214fc01f7e7Sbellard {
221533384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
221633384421SMax Reitz 
2217ca9bd24cSMax Reitz     assert(!bs->job);
221830f55fb8SMax Reitz     assert(!bs->refcnt);
221999b7e775SAlberto Garcia 
2220fc27291dSPaolo Bonzini     bdrv_drained_begin(bs); /* complete I/O */
222158fda173SStefan Hajnoczi     bdrv_flush(bs);
222253ec73e2SFam Zheng     bdrv_drain(bs); /* in case flush left pending I/O */
2223fc27291dSPaolo Bonzini 
2224c5acdc9aSMax Reitz     bdrv_release_named_dirty_bitmaps(bs);
2225c5acdc9aSMax Reitz     assert(QLIST_EMPTY(&bs->dirty_bitmaps));
2226c5acdc9aSMax Reitz 
22273cbc002cSPaolo Bonzini     if (bs->drv) {
22286e93e7c4SKevin Wolf         BdrvChild *child, *next;
22296e93e7c4SKevin Wolf 
22309a7dedbcSKevin Wolf         bs->drv->bdrv_close(bs);
22319a4f4c31SKevin Wolf         bs->drv = NULL;
22329a7dedbcSKevin Wolf 
22339a7dedbcSKevin Wolf         bdrv_set_backing_hd(bs, NULL);
22349a7dedbcSKevin Wolf 
22359a4f4c31SKevin Wolf         if (bs->file != NULL) {
22369a4f4c31SKevin Wolf             bdrv_unref_child(bs, bs->file);
22379a4f4c31SKevin Wolf             bs->file = NULL;
22389a4f4c31SKevin Wolf         }
22399a4f4c31SKevin Wolf 
22406e93e7c4SKevin Wolf         QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
224133a60407SKevin Wolf             /* TODO Remove bdrv_unref() from drivers' close function and use
224233a60407SKevin Wolf              * bdrv_unref_child() here */
2243bddcec37SKevin Wolf             if (child->bs->inherits_from == bs) {
2244bddcec37SKevin Wolf                 child->bs->inherits_from = NULL;
2245bddcec37SKevin Wolf             }
224633a60407SKevin Wolf             bdrv_detach_child(child);
22476e93e7c4SKevin Wolf         }
22486e93e7c4SKevin Wolf 
22497267c094SAnthony Liguori         g_free(bs->opaque);
2250ea2384d3Sbellard         bs->opaque = NULL;
225153fec9d3SStefan Hajnoczi         bs->copy_on_read = 0;
2252a275fa42SPaolo Bonzini         bs->backing_file[0] = '\0';
2253a275fa42SPaolo Bonzini         bs->backing_format[0] = '\0';
22546405875cSPaolo Bonzini         bs->total_sectors = 0;
225554115412SEric Blake         bs->encrypted = false;
225654115412SEric Blake         bs->valid_key = false;
225754115412SEric Blake         bs->sg = false;
2258de9c0cecSKevin Wolf         QDECREF(bs->options);
2259145f598eSKevin Wolf         QDECREF(bs->explicit_options);
2260de9c0cecSKevin Wolf         bs->options = NULL;
226191af7014SMax Reitz         QDECREF(bs->full_open_options);
226291af7014SMax Reitz         bs->full_open_options = NULL;
22639ca11154SPavel Hrdina     }
226466f82ceeSKevin Wolf 
226533384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
226633384421SMax Reitz         g_free(ban);
226733384421SMax Reitz     }
226833384421SMax Reitz     QLIST_INIT(&bs->aio_notifiers);
2269fc27291dSPaolo Bonzini     bdrv_drained_end(bs);
2270b338082bSbellard }
2271b338082bSbellard 
22722bc93fedSMORITA Kazutaka void bdrv_close_all(void)
22732bc93fedSMORITA Kazutaka {
2274a1a2af07SKevin Wolf     block_job_cancel_sync_all();
2275cd7fca95SKevin Wolf     nbd_export_close_all();
22762bc93fedSMORITA Kazutaka 
2277ca9bd24cSMax Reitz     /* Drop references from requests still in flight, such as canceled block
2278ca9bd24cSMax Reitz      * jobs whose AIO context has not been polled yet */
2279ca9bd24cSMax Reitz     bdrv_drain_all();
2280ca9bd24cSMax Reitz 
2281ca9bd24cSMax Reitz     blk_remove_all_bs();
2282ca9bd24cSMax Reitz     blockdev_close_all_bdrv_states();
2283ca9bd24cSMax Reitz 
2284a1a2af07SKevin Wolf     assert(QTAILQ_EMPTY(&all_bdrv_states));
22852bc93fedSMORITA Kazutaka }
22862bc93fedSMORITA Kazutaka 
2287dd62f1caSKevin Wolf static void change_parent_backing_link(BlockDriverState *from,
2288dd62f1caSKevin Wolf                                        BlockDriverState *to)
2289dd62f1caSKevin Wolf {
22909bd910e2SMax Reitz     BdrvChild *c, *next, *to_c;
2291dd62f1caSKevin Wolf 
2292dd62f1caSKevin Wolf     QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
22939bd910e2SMax Reitz         if (c->role == &child_backing) {
22949bd910e2SMax Reitz             /* @from is generally not allowed to be a backing file, except for
22959bd910e2SMax Reitz              * when @to is the overlay. In that case, @from may not be replaced
22969bd910e2SMax Reitz              * by @to as @to's backing node. */
22979bd910e2SMax Reitz             QLIST_FOREACH(to_c, &to->children, next) {
22989bd910e2SMax Reitz                 if (to_c == c) {
22999bd910e2SMax Reitz                     break;
23009bd910e2SMax Reitz                 }
23019bd910e2SMax Reitz             }
23029bd910e2SMax Reitz             if (to_c) {
23039bd910e2SMax Reitz                 continue;
23049bd910e2SMax Reitz             }
23059bd910e2SMax Reitz         }
23069bd910e2SMax Reitz 
2307dd62f1caSKevin Wolf         assert(c->role != &child_backing);
2308dd62f1caSKevin Wolf         bdrv_ref(to);
2309e9740bc6SKevin Wolf         bdrv_replace_child(c, to);
2310dd62f1caSKevin Wolf         bdrv_unref(from);
2311dd62f1caSKevin Wolf     }
2312dd62f1caSKevin Wolf }
2313dd62f1caSKevin Wolf 
23148802d1fdSJeff Cody /*
23158802d1fdSJeff Cody  * Add new bs contents at the top of an image chain while the chain is
23168802d1fdSJeff Cody  * live, while keeping required fields on the top layer.
23178802d1fdSJeff Cody  *
23188802d1fdSJeff Cody  * This will modify the BlockDriverState fields, and swap contents
23198802d1fdSJeff Cody  * between bs_new and bs_top. Both bs_new and bs_top are modified.
23208802d1fdSJeff Cody  *
2321bfb197e0SMarkus Armbruster  * bs_new must not be attached to a BlockBackend.
2322f6801b83SJeff Cody  *
23238802d1fdSJeff Cody  * This function does not create any image files.
2324dd62f1caSKevin Wolf  *
2325dd62f1caSKevin Wolf  * bdrv_append() takes ownership of a bs_new reference and unrefs it because
2326dd62f1caSKevin Wolf  * that's what the callers commonly need. bs_new will be referenced by the old
2327dd62f1caSKevin Wolf  * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
2328dd62f1caSKevin Wolf  * reference of its own, it must call bdrv_ref().
23298802d1fdSJeff Cody  */
23308802d1fdSJeff Cody void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top)
23318802d1fdSJeff Cody {
2332dd62f1caSKevin Wolf     assert(!bdrv_requests_pending(bs_top));
2333dd62f1caSKevin Wolf     assert(!bdrv_requests_pending(bs_new));
23348802d1fdSJeff Cody 
2335dd62f1caSKevin Wolf     bdrv_ref(bs_top);
2336dd62f1caSKevin Wolf 
233727ccdd52SKevin Wolf     change_parent_backing_link(bs_top, bs_new);
2338dd62f1caSKevin Wolf     bdrv_set_backing_hd(bs_new, bs_top);
2339dd62f1caSKevin Wolf     bdrv_unref(bs_top);
2340dd62f1caSKevin Wolf 
2341dd62f1caSKevin Wolf     /* bs_new is now referenced by its new parents, we don't need the
2342dd62f1caSKevin Wolf      * additional reference any more. */
2343dd62f1caSKevin Wolf     bdrv_unref(bs_new);
23448802d1fdSJeff Cody }
23458802d1fdSJeff Cody 
23463f09bfbcSKevin Wolf void bdrv_replace_in_backing_chain(BlockDriverState *old, BlockDriverState *new)
23473f09bfbcSKevin Wolf {
23483f09bfbcSKevin Wolf     assert(!bdrv_requests_pending(old));
23493f09bfbcSKevin Wolf     assert(!bdrv_requests_pending(new));
23503f09bfbcSKevin Wolf 
23513f09bfbcSKevin Wolf     bdrv_ref(old);
23523f09bfbcSKevin Wolf 
23533f09bfbcSKevin Wolf     change_parent_backing_link(old, new);
23543f09bfbcSKevin Wolf 
23553f09bfbcSKevin Wolf     bdrv_unref(old);
23563f09bfbcSKevin Wolf }
23573f09bfbcSKevin Wolf 
23584f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs)
2359b338082bSbellard {
23603e914655SPaolo Bonzini     assert(!bs->job);
23613718d8abSFam Zheng     assert(bdrv_op_blocker_is_empty(bs));
23624f6fd349SFam Zheng     assert(!bs->refcnt);
236318846deeSMarkus Armbruster 
2364e1b5c52eSStefan Hajnoczi     bdrv_close(bs);
2365e1b5c52eSStefan Hajnoczi 
23661b7bdbc1SStefan Hajnoczi     /* remove from list, if necessary */
236763eaaae0SKevin Wolf     if (bs->node_name[0] != '\0') {
236863eaaae0SKevin Wolf         QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
236963eaaae0SKevin Wolf     }
23702c1d04e0SMax Reitz     QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
23712c1d04e0SMax Reitz 
23727267c094SAnthony Liguori     g_free(bs);
2373fc01f7e7Sbellard }
2374fc01f7e7Sbellard 
2375e97fc193Saliguori /*
2376e97fc193Saliguori  * Run consistency checks on an image
2377e97fc193Saliguori  *
2378e076f338SKevin Wolf  * Returns 0 if the check could be completed (it doesn't mean that the image is
2379a1c7273bSStefan Weil  * free of errors) or -errno when an internal error occurred. The results of the
2380e076f338SKevin Wolf  * check are stored in res.
2381e97fc193Saliguori  */
23824534ff54SKevin Wolf int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix)
2383e97fc193Saliguori {
2384908bcd54SMax Reitz     if (bs->drv == NULL) {
2385908bcd54SMax Reitz         return -ENOMEDIUM;
2386908bcd54SMax Reitz     }
2387e97fc193Saliguori     if (bs->drv->bdrv_check == NULL) {
2388e97fc193Saliguori         return -ENOTSUP;
2389e97fc193Saliguori     }
2390e97fc193Saliguori 
2391e076f338SKevin Wolf     memset(res, 0, sizeof(*res));
23924534ff54SKevin Wolf     return bs->drv->bdrv_check(bs, res, fix);
2393e97fc193Saliguori }
2394e97fc193Saliguori 
2395756e6736SKevin Wolf /*
2396756e6736SKevin Wolf  * Return values:
2397756e6736SKevin Wolf  * 0        - success
2398756e6736SKevin Wolf  * -EINVAL  - backing format specified, but no file
2399756e6736SKevin Wolf  * -ENOSPC  - can't update the backing file because no space is left in the
2400756e6736SKevin Wolf  *            image file header
2401756e6736SKevin Wolf  * -ENOTSUP - format driver doesn't support changing the backing file
2402756e6736SKevin Wolf  */
2403756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs,
2404756e6736SKevin Wolf     const char *backing_file, const char *backing_fmt)
2405756e6736SKevin Wolf {
2406756e6736SKevin Wolf     BlockDriver *drv = bs->drv;
2407469ef350SPaolo Bonzini     int ret;
2408756e6736SKevin Wolf 
24095f377794SPaolo Bonzini     /* Backing file format doesn't make sense without a backing file */
24105f377794SPaolo Bonzini     if (backing_fmt && !backing_file) {
24115f377794SPaolo Bonzini         return -EINVAL;
24125f377794SPaolo Bonzini     }
24135f377794SPaolo Bonzini 
2414756e6736SKevin Wolf     if (drv->bdrv_change_backing_file != NULL) {
2415469ef350SPaolo Bonzini         ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
2416756e6736SKevin Wolf     } else {
2417469ef350SPaolo Bonzini         ret = -ENOTSUP;
2418756e6736SKevin Wolf     }
2419469ef350SPaolo Bonzini 
2420469ef350SPaolo Bonzini     if (ret == 0) {
2421469ef350SPaolo Bonzini         pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
2422469ef350SPaolo Bonzini         pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
2423469ef350SPaolo Bonzini     }
2424469ef350SPaolo Bonzini     return ret;
2425756e6736SKevin Wolf }
2426756e6736SKevin Wolf 
24276ebdcee2SJeff Cody /*
24286ebdcee2SJeff Cody  * Finds the image layer in the chain that has 'bs' as its backing file.
24296ebdcee2SJeff Cody  *
24306ebdcee2SJeff Cody  * active is the current topmost image.
24316ebdcee2SJeff Cody  *
24326ebdcee2SJeff Cody  * Returns NULL if bs is not found in active's image chain,
24336ebdcee2SJeff Cody  * or if active == bs.
24344caf0fcdSJeff Cody  *
24354caf0fcdSJeff Cody  * Returns the bottommost base image if bs == NULL.
24366ebdcee2SJeff Cody  */
24376ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
24386ebdcee2SJeff Cody                                     BlockDriverState *bs)
24396ebdcee2SJeff Cody {
2440760e0063SKevin Wolf     while (active && bs != backing_bs(active)) {
2441760e0063SKevin Wolf         active = backing_bs(active);
24426ebdcee2SJeff Cody     }
24436ebdcee2SJeff Cody 
24444caf0fcdSJeff Cody     return active;
24456ebdcee2SJeff Cody }
24466ebdcee2SJeff Cody 
24474caf0fcdSJeff Cody /* Given a BDS, searches for the base layer. */
24484caf0fcdSJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs)
24494caf0fcdSJeff Cody {
24504caf0fcdSJeff Cody     return bdrv_find_overlay(bs, NULL);
24516ebdcee2SJeff Cody }
24526ebdcee2SJeff Cody 
24536ebdcee2SJeff Cody /*
24546ebdcee2SJeff Cody  * Drops images above 'base' up to and including 'top', and sets the image
24556ebdcee2SJeff Cody  * above 'top' to have base as its backing file.
24566ebdcee2SJeff Cody  *
24576ebdcee2SJeff Cody  * Requires that the overlay to 'top' is opened r/w, so that the backing file
24586ebdcee2SJeff Cody  * information in 'bs' can be properly updated.
24596ebdcee2SJeff Cody  *
24606ebdcee2SJeff Cody  * E.g., this will convert the following chain:
24616ebdcee2SJeff Cody  * bottom <- base <- intermediate <- top <- active
24626ebdcee2SJeff Cody  *
24636ebdcee2SJeff Cody  * to
24646ebdcee2SJeff Cody  *
24656ebdcee2SJeff Cody  * bottom <- base <- active
24666ebdcee2SJeff Cody  *
24676ebdcee2SJeff Cody  * It is allowed for bottom==base, in which case it converts:
24686ebdcee2SJeff Cody  *
24696ebdcee2SJeff Cody  * base <- intermediate <- top <- active
24706ebdcee2SJeff Cody  *
24716ebdcee2SJeff Cody  * to
24726ebdcee2SJeff Cody  *
24736ebdcee2SJeff Cody  * base <- active
24746ebdcee2SJeff Cody  *
247554e26900SJeff Cody  * If backing_file_str is non-NULL, it will be used when modifying top's
247654e26900SJeff Cody  * overlay image metadata.
247754e26900SJeff Cody  *
24786ebdcee2SJeff Cody  * Error conditions:
24796ebdcee2SJeff Cody  *  if active == top, that is considered an error
24806ebdcee2SJeff Cody  *
24816ebdcee2SJeff Cody  */
24826ebdcee2SJeff Cody int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top,
248354e26900SJeff Cody                            BlockDriverState *base, const char *backing_file_str)
24846ebdcee2SJeff Cody {
24856ebdcee2SJeff Cody     BlockDriverState *new_top_bs = NULL;
24866ebdcee2SJeff Cody     int ret = -EIO;
24876ebdcee2SJeff Cody 
24886ebdcee2SJeff Cody     if (!top->drv || !base->drv) {
24896ebdcee2SJeff Cody         goto exit;
24906ebdcee2SJeff Cody     }
24916ebdcee2SJeff Cody 
24926ebdcee2SJeff Cody     new_top_bs = bdrv_find_overlay(active, top);
24936ebdcee2SJeff Cody 
24946ebdcee2SJeff Cody     if (new_top_bs == NULL) {
24956ebdcee2SJeff Cody         /* we could not find the image above 'top', this is an error */
24966ebdcee2SJeff Cody         goto exit;
24976ebdcee2SJeff Cody     }
24986ebdcee2SJeff Cody 
2499760e0063SKevin Wolf     /* special case of new_top_bs->backing->bs already pointing to base - nothing
25006ebdcee2SJeff Cody      * to do, no intermediate images */
2501760e0063SKevin Wolf     if (backing_bs(new_top_bs) == base) {
25026ebdcee2SJeff Cody         ret = 0;
25036ebdcee2SJeff Cody         goto exit;
25046ebdcee2SJeff Cody     }
25056ebdcee2SJeff Cody 
25065db15a57SKevin Wolf     /* Make sure that base is in the backing chain of top */
25075db15a57SKevin Wolf     if (!bdrv_chain_contains(top, base)) {
25086ebdcee2SJeff Cody         goto exit;
25096ebdcee2SJeff Cody     }
25106ebdcee2SJeff Cody 
25116ebdcee2SJeff Cody     /* success - we can delete the intermediate states, and link top->base */
25125db15a57SKevin Wolf     backing_file_str = backing_file_str ? backing_file_str : base->filename;
251354e26900SJeff Cody     ret = bdrv_change_backing_file(new_top_bs, backing_file_str,
25145db15a57SKevin Wolf                                    base->drv ? base->drv->format_name : "");
25156ebdcee2SJeff Cody     if (ret) {
25166ebdcee2SJeff Cody         goto exit;
25176ebdcee2SJeff Cody     }
25185db15a57SKevin Wolf     bdrv_set_backing_hd(new_top_bs, base);
25196ebdcee2SJeff Cody 
25206ebdcee2SJeff Cody     ret = 0;
25216ebdcee2SJeff Cody exit:
25226ebdcee2SJeff Cody     return ret;
25236ebdcee2SJeff Cody }
25246ebdcee2SJeff Cody 
252583f64091Sbellard /**
252683f64091Sbellard  * Truncate file to 'offset' bytes (needed only for file protocols)
252783f64091Sbellard  */
252883f64091Sbellard int bdrv_truncate(BlockDriverState *bs, int64_t offset)
252983f64091Sbellard {
253083f64091Sbellard     BlockDriver *drv = bs->drv;
253151762288SStefan Hajnoczi     int ret;
253283f64091Sbellard     if (!drv)
253319cb3738Sbellard         return -ENOMEDIUM;
253483f64091Sbellard     if (!drv->bdrv_truncate)
253583f64091Sbellard         return -ENOTSUP;
253659f2689dSNaphtali Sprei     if (bs->read_only)
253759f2689dSNaphtali Sprei         return -EACCES;
25389c75e168SJeff Cody 
253951762288SStefan Hajnoczi     ret = drv->bdrv_truncate(bs, offset);
254051762288SStefan Hajnoczi     if (ret == 0) {
254151762288SStefan Hajnoczi         ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
2542ce1ffea8SJohn Snow         bdrv_dirty_bitmap_truncate(bs);
25435c8cab48SKevin Wolf         bdrv_parent_cb_resize(bs);
25443ff2f67aSEvgeny Yakovlev         ++bs->write_gen;
254551762288SStefan Hajnoczi     }
254651762288SStefan Hajnoczi     return ret;
254783f64091Sbellard }
254883f64091Sbellard 
254983f64091Sbellard /**
25504a1d5e1fSFam Zheng  * Length of a allocated file in bytes. Sparse files are counted by actual
25514a1d5e1fSFam Zheng  * allocated space. Return < 0 if error or unknown.
25524a1d5e1fSFam Zheng  */
25534a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
25544a1d5e1fSFam Zheng {
25554a1d5e1fSFam Zheng     BlockDriver *drv = bs->drv;
25564a1d5e1fSFam Zheng     if (!drv) {
25574a1d5e1fSFam Zheng         return -ENOMEDIUM;
25584a1d5e1fSFam Zheng     }
25594a1d5e1fSFam Zheng     if (drv->bdrv_get_allocated_file_size) {
25604a1d5e1fSFam Zheng         return drv->bdrv_get_allocated_file_size(bs);
25614a1d5e1fSFam Zheng     }
25624a1d5e1fSFam Zheng     if (bs->file) {
25639a4f4c31SKevin Wolf         return bdrv_get_allocated_file_size(bs->file->bs);
25644a1d5e1fSFam Zheng     }
25654a1d5e1fSFam Zheng     return -ENOTSUP;
25664a1d5e1fSFam Zheng }
25674a1d5e1fSFam Zheng 
25684a1d5e1fSFam Zheng /**
256965a9bb25SMarkus Armbruster  * Return number of sectors on success, -errno on error.
257083f64091Sbellard  */
257165a9bb25SMarkus Armbruster int64_t bdrv_nb_sectors(BlockDriverState *bs)
257283f64091Sbellard {
257383f64091Sbellard     BlockDriver *drv = bs->drv;
257465a9bb25SMarkus Armbruster 
257583f64091Sbellard     if (!drv)
257619cb3738Sbellard         return -ENOMEDIUM;
257751762288SStefan Hajnoczi 
2578b94a2610SKevin Wolf     if (drv->has_variable_length) {
2579b94a2610SKevin Wolf         int ret = refresh_total_sectors(bs, bs->total_sectors);
2580b94a2610SKevin Wolf         if (ret < 0) {
2581b94a2610SKevin Wolf             return ret;
2582fc01f7e7Sbellard         }
258346a4e4e6SStefan Hajnoczi     }
258465a9bb25SMarkus Armbruster     return bs->total_sectors;
258565a9bb25SMarkus Armbruster }
258665a9bb25SMarkus Armbruster 
258765a9bb25SMarkus Armbruster /**
258865a9bb25SMarkus Armbruster  * Return length in bytes on success, -errno on error.
258965a9bb25SMarkus Armbruster  * The length is always a multiple of BDRV_SECTOR_SIZE.
259065a9bb25SMarkus Armbruster  */
259165a9bb25SMarkus Armbruster int64_t bdrv_getlength(BlockDriverState *bs)
259265a9bb25SMarkus Armbruster {
259365a9bb25SMarkus Armbruster     int64_t ret = bdrv_nb_sectors(bs);
259465a9bb25SMarkus Armbruster 
25954a9c9ea0SFam Zheng     ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
259665a9bb25SMarkus Armbruster     return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
259746a4e4e6SStefan Hajnoczi }
2598fc01f7e7Sbellard 
259919cb3738Sbellard /* return 0 as number of sectors if no device present or error */
260096b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
2601fc01f7e7Sbellard {
260265a9bb25SMarkus Armbruster     int64_t nb_sectors = bdrv_nb_sectors(bs);
260365a9bb25SMarkus Armbruster 
260465a9bb25SMarkus Armbruster     *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
2605fc01f7e7Sbellard }
2606cf98951bSbellard 
260754115412SEric Blake bool bdrv_is_read_only(BlockDriverState *bs)
2608b338082bSbellard {
2609b338082bSbellard     return bs->read_only;
2610b338082bSbellard }
2611b338082bSbellard 
261254115412SEric Blake bool bdrv_is_sg(BlockDriverState *bs)
2613985a03b0Sths {
2614985a03b0Sths     return bs->sg;
2615985a03b0Sths }
2616985a03b0Sths 
261754115412SEric Blake bool bdrv_is_encrypted(BlockDriverState *bs)
2618ea2384d3Sbellard {
2619760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted) {
262054115412SEric Blake         return true;
2621760e0063SKevin Wolf     }
2622ea2384d3Sbellard     return bs->encrypted;
2623ea2384d3Sbellard }
2624ea2384d3Sbellard 
262554115412SEric Blake bool bdrv_key_required(BlockDriverState *bs)
2626c0f4ce77Saliguori {
2627760e0063SKevin Wolf     BdrvChild *backing = bs->backing;
2628c0f4ce77Saliguori 
2629760e0063SKevin Wolf     if (backing && backing->bs->encrypted && !backing->bs->valid_key) {
263054115412SEric Blake         return true;
2631760e0063SKevin Wolf     }
2632c0f4ce77Saliguori     return (bs->encrypted && !bs->valid_key);
2633c0f4ce77Saliguori }
2634c0f4ce77Saliguori 
2635ea2384d3Sbellard int bdrv_set_key(BlockDriverState *bs, const char *key)
2636ea2384d3Sbellard {
2637ea2384d3Sbellard     int ret;
2638760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted) {
2639760e0063SKevin Wolf         ret = bdrv_set_key(bs->backing->bs, key);
2640ea2384d3Sbellard         if (ret < 0)
2641ea2384d3Sbellard             return ret;
2642ea2384d3Sbellard         if (!bs->encrypted)
2643ea2384d3Sbellard             return 0;
2644ea2384d3Sbellard     }
2645fd04a2aeSShahar Havivi     if (!bs->encrypted) {
2646fd04a2aeSShahar Havivi         return -EINVAL;
2647fd04a2aeSShahar Havivi     } else if (!bs->drv || !bs->drv->bdrv_set_key) {
2648fd04a2aeSShahar Havivi         return -ENOMEDIUM;
2649fd04a2aeSShahar Havivi     }
2650c0f4ce77Saliguori     ret = bs->drv->bdrv_set_key(bs, key);
2651bb5fc20fSaliguori     if (ret < 0) {
265254115412SEric Blake         bs->valid_key = false;
2653bb5fc20fSaliguori     } else if (!bs->valid_key) {
2654bb5fc20fSaliguori         /* call the change callback now, we skipped it on open */
265554115412SEric Blake         bs->valid_key = true;
26565c8cab48SKevin Wolf         bdrv_parent_cb_change_media(bs, true);
2657bb5fc20fSaliguori     }
2658c0f4ce77Saliguori     return ret;
2659ea2384d3Sbellard }
2660ea2384d3Sbellard 
26614d2855a3SMarkus Armbruster /*
26624d2855a3SMarkus Armbruster  * Provide an encryption key for @bs.
26634d2855a3SMarkus Armbruster  * If @key is non-null:
26644d2855a3SMarkus Armbruster  *     If @bs is not encrypted, fail.
26654d2855a3SMarkus Armbruster  *     Else if the key is invalid, fail.
26664d2855a3SMarkus Armbruster  *     Else set @bs's key to @key, replacing the existing key, if any.
26674d2855a3SMarkus Armbruster  * If @key is null:
26684d2855a3SMarkus Armbruster  *     If @bs is encrypted and still lacks a key, fail.
26694d2855a3SMarkus Armbruster  *     Else do nothing.
26704d2855a3SMarkus Armbruster  * On failure, store an error object through @errp if non-null.
26714d2855a3SMarkus Armbruster  */
26724d2855a3SMarkus Armbruster void bdrv_add_key(BlockDriverState *bs, const char *key, Error **errp)
26734d2855a3SMarkus Armbruster {
26744d2855a3SMarkus Armbruster     if (key) {
26754d2855a3SMarkus Armbruster         if (!bdrv_is_encrypted(bs)) {
267681e5f78aSAlberto Garcia             error_setg(errp, "Node '%s' is not encrypted",
267781e5f78aSAlberto Garcia                       bdrv_get_device_or_node_name(bs));
26784d2855a3SMarkus Armbruster         } else if (bdrv_set_key(bs, key) < 0) {
2679c6bd8c70SMarkus Armbruster             error_setg(errp, QERR_INVALID_PASSWORD);
26804d2855a3SMarkus Armbruster         }
26814d2855a3SMarkus Armbruster     } else {
26824d2855a3SMarkus Armbruster         if (bdrv_key_required(bs)) {
2683b1ca6391SMarkus Armbruster             error_set(errp, ERROR_CLASS_DEVICE_ENCRYPTED,
2684b1ca6391SMarkus Armbruster                       "'%s' (%s) is encrypted",
268581e5f78aSAlberto Garcia                       bdrv_get_device_or_node_name(bs),
26864d2855a3SMarkus Armbruster                       bdrv_get_encrypted_filename(bs));
26874d2855a3SMarkus Armbruster         }
26884d2855a3SMarkus Armbruster     }
26894d2855a3SMarkus Armbruster }
26904d2855a3SMarkus Armbruster 
2691f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs)
2692ea2384d3Sbellard {
2693f8d6bba1SMarkus Armbruster     return bs->drv ? bs->drv->format_name : NULL;
2694ea2384d3Sbellard }
2695ea2384d3Sbellard 
2696ada42401SStefan Hajnoczi static int qsort_strcmp(const void *a, const void *b)
2697ada42401SStefan Hajnoczi {
2698ada42401SStefan Hajnoczi     return strcmp(a, b);
2699ada42401SStefan Hajnoczi }
2700ada42401SStefan Hajnoczi 
2701ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
2702ea2384d3Sbellard                          void *opaque)
2703ea2384d3Sbellard {
2704ea2384d3Sbellard     BlockDriver *drv;
2705e855e4fbSJeff Cody     int count = 0;
2706ada42401SStefan Hajnoczi     int i;
2707e855e4fbSJeff Cody     const char **formats = NULL;
2708ea2384d3Sbellard 
27098a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv, &bdrv_drivers, list) {
2710e855e4fbSJeff Cody         if (drv->format_name) {
2711e855e4fbSJeff Cody             bool found = false;
2712e855e4fbSJeff Cody             int i = count;
2713e855e4fbSJeff Cody             while (formats && i && !found) {
2714e855e4fbSJeff Cody                 found = !strcmp(formats[--i], drv->format_name);
2715e855e4fbSJeff Cody             }
2716e855e4fbSJeff Cody 
2717e855e4fbSJeff Cody             if (!found) {
27185839e53bSMarkus Armbruster                 formats = g_renew(const char *, formats, count + 1);
2719e855e4fbSJeff Cody                 formats[count++] = drv->format_name;
2720ea2384d3Sbellard             }
2721ea2384d3Sbellard         }
2722e855e4fbSJeff Cody     }
2723ada42401SStefan Hajnoczi 
2724ada42401SStefan Hajnoczi     qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
2725ada42401SStefan Hajnoczi 
2726ada42401SStefan Hajnoczi     for (i = 0; i < count; i++) {
2727ada42401SStefan Hajnoczi         it(opaque, formats[i]);
2728ada42401SStefan Hajnoczi     }
2729ada42401SStefan Hajnoczi 
2730e855e4fbSJeff Cody     g_free(formats);
2731e855e4fbSJeff Cody }
2732ea2384d3Sbellard 
2733dc364f4cSBenoît Canet /* This function is to find a node in the bs graph */
2734dc364f4cSBenoît Canet BlockDriverState *bdrv_find_node(const char *node_name)
2735dc364f4cSBenoît Canet {
2736dc364f4cSBenoît Canet     BlockDriverState *bs;
2737dc364f4cSBenoît Canet 
2738dc364f4cSBenoît Canet     assert(node_name);
2739dc364f4cSBenoît Canet 
2740dc364f4cSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
2741dc364f4cSBenoît Canet         if (!strcmp(node_name, bs->node_name)) {
2742dc364f4cSBenoît Canet             return bs;
2743dc364f4cSBenoît Canet         }
2744dc364f4cSBenoît Canet     }
2745dc364f4cSBenoît Canet     return NULL;
2746dc364f4cSBenoît Canet }
2747dc364f4cSBenoît Canet 
2748c13163fbSBenoît Canet /* Put this QMP function here so it can access the static graph_bdrv_states. */
2749d5a8ee60SAlberto Garcia BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
2750c13163fbSBenoît Canet {
2751c13163fbSBenoît Canet     BlockDeviceInfoList *list, *entry;
2752c13163fbSBenoît Canet     BlockDriverState *bs;
2753c13163fbSBenoît Canet 
2754c13163fbSBenoît Canet     list = NULL;
2755c13163fbSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
2756c83f9fbaSKevin Wolf         BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp);
2757d5a8ee60SAlberto Garcia         if (!info) {
2758d5a8ee60SAlberto Garcia             qapi_free_BlockDeviceInfoList(list);
2759d5a8ee60SAlberto Garcia             return NULL;
2760d5a8ee60SAlberto Garcia         }
2761c13163fbSBenoît Canet         entry = g_malloc0(sizeof(*entry));
2762d5a8ee60SAlberto Garcia         entry->value = info;
2763c13163fbSBenoît Canet         entry->next = list;
2764c13163fbSBenoît Canet         list = entry;
2765c13163fbSBenoît Canet     }
2766c13163fbSBenoît Canet 
2767c13163fbSBenoît Canet     return list;
2768c13163fbSBenoît Canet }
2769c13163fbSBenoît Canet 
277012d3ba82SBenoît Canet BlockDriverState *bdrv_lookup_bs(const char *device,
277112d3ba82SBenoît Canet                                  const char *node_name,
277212d3ba82SBenoît Canet                                  Error **errp)
277312d3ba82SBenoît Canet {
27747f06d47eSMarkus Armbruster     BlockBackend *blk;
27757f06d47eSMarkus Armbruster     BlockDriverState *bs;
277612d3ba82SBenoît Canet 
277712d3ba82SBenoît Canet     if (device) {
27787f06d47eSMarkus Armbruster         blk = blk_by_name(device);
277912d3ba82SBenoît Canet 
27807f06d47eSMarkus Armbruster         if (blk) {
27819f4ed6fbSAlberto Garcia             bs = blk_bs(blk);
27829f4ed6fbSAlberto Garcia             if (!bs) {
27835433c24fSMax Reitz                 error_setg(errp, "Device '%s' has no medium", device);
27845433c24fSMax Reitz             }
27855433c24fSMax Reitz 
27869f4ed6fbSAlberto Garcia             return bs;
278712d3ba82SBenoît Canet         }
2788dd67fa50SBenoît Canet     }
278912d3ba82SBenoît Canet 
2790dd67fa50SBenoît Canet     if (node_name) {
279112d3ba82SBenoît Canet         bs = bdrv_find_node(node_name);
279212d3ba82SBenoît Canet 
2793dd67fa50SBenoît Canet         if (bs) {
2794dd67fa50SBenoît Canet             return bs;
2795dd67fa50SBenoît Canet         }
279612d3ba82SBenoît Canet     }
279712d3ba82SBenoît Canet 
2798dd67fa50SBenoît Canet     error_setg(errp, "Cannot find device=%s nor node_name=%s",
2799dd67fa50SBenoît Canet                      device ? device : "",
2800dd67fa50SBenoît Canet                      node_name ? node_name : "");
2801dd67fa50SBenoît Canet     return NULL;
280212d3ba82SBenoît Canet }
280312d3ba82SBenoît Canet 
28045a6684d2SJeff Cody /* If 'base' is in the same chain as 'top', return true. Otherwise,
28055a6684d2SJeff Cody  * return false.  If either argument is NULL, return false. */
28065a6684d2SJeff Cody bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
28075a6684d2SJeff Cody {
28085a6684d2SJeff Cody     while (top && top != base) {
2809760e0063SKevin Wolf         top = backing_bs(top);
28105a6684d2SJeff Cody     }
28115a6684d2SJeff Cody 
28125a6684d2SJeff Cody     return top != NULL;
28135a6684d2SJeff Cody }
28145a6684d2SJeff Cody 
281504df765aSFam Zheng BlockDriverState *bdrv_next_node(BlockDriverState *bs)
281604df765aSFam Zheng {
281704df765aSFam Zheng     if (!bs) {
281804df765aSFam Zheng         return QTAILQ_FIRST(&graph_bdrv_states);
281904df765aSFam Zheng     }
282004df765aSFam Zheng     return QTAILQ_NEXT(bs, node_list);
282104df765aSFam Zheng }
282204df765aSFam Zheng 
282320a9e77dSFam Zheng const char *bdrv_get_node_name(const BlockDriverState *bs)
282420a9e77dSFam Zheng {
282520a9e77dSFam Zheng     return bs->node_name;
282620a9e77dSFam Zheng }
282720a9e77dSFam Zheng 
28281f0c461bSKevin Wolf const char *bdrv_get_parent_name(const BlockDriverState *bs)
28294c265bf9SKevin Wolf {
28304c265bf9SKevin Wolf     BdrvChild *c;
28314c265bf9SKevin Wolf     const char *name;
28324c265bf9SKevin Wolf 
28334c265bf9SKevin Wolf     /* If multiple parents have a name, just pick the first one. */
28344c265bf9SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
28354c265bf9SKevin Wolf         if (c->role->get_name) {
28364c265bf9SKevin Wolf             name = c->role->get_name(c);
28374c265bf9SKevin Wolf             if (name && *name) {
28384c265bf9SKevin Wolf                 return name;
28394c265bf9SKevin Wolf             }
28404c265bf9SKevin Wolf         }
28414c265bf9SKevin Wolf     }
28424c265bf9SKevin Wolf 
28434c265bf9SKevin Wolf     return NULL;
28444c265bf9SKevin Wolf }
28454c265bf9SKevin Wolf 
28467f06d47eSMarkus Armbruster /* TODO check what callers really want: bs->node_name or blk_name() */
2847bfb197e0SMarkus Armbruster const char *bdrv_get_device_name(const BlockDriverState *bs)
2848ea2384d3Sbellard {
28494c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: "";
2850ea2384d3Sbellard }
2851ea2384d3Sbellard 
28529b2aa84fSAlberto Garcia /* This can be used to identify nodes that might not have a device
28539b2aa84fSAlberto Garcia  * name associated. Since node and device names live in the same
28549b2aa84fSAlberto Garcia  * namespace, the result is unambiguous. The exception is if both are
28559b2aa84fSAlberto Garcia  * absent, then this returns an empty (non-null) string. */
28569b2aa84fSAlberto Garcia const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
28579b2aa84fSAlberto Garcia {
28584c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: bs->node_name;
28599b2aa84fSAlberto Garcia }
28609b2aa84fSAlberto Garcia 
2861c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs)
2862c8433287SMarkus Armbruster {
2863c8433287SMarkus Armbruster     return bs->open_flags;
2864c8433287SMarkus Armbruster }
2865c8433287SMarkus Armbruster 
28663ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs)
28673ac21627SPeter Lieven {
28683ac21627SPeter Lieven     return 1;
28693ac21627SPeter Lieven }
28703ac21627SPeter Lieven 
2871f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs)
2872f2feebbdSKevin Wolf {
2873f2feebbdSKevin Wolf     assert(bs->drv);
2874f2feebbdSKevin Wolf 
287511212d8fSPaolo Bonzini     /* If BS is a copy on write image, it is initialized to
287611212d8fSPaolo Bonzini        the contents of the base image, which may not be zeroes.  */
2877760e0063SKevin Wolf     if (bs->backing) {
287811212d8fSPaolo Bonzini         return 0;
287911212d8fSPaolo Bonzini     }
2880336c1c12SKevin Wolf     if (bs->drv->bdrv_has_zero_init) {
2881336c1c12SKevin Wolf         return bs->drv->bdrv_has_zero_init(bs);
2882f2feebbdSKevin Wolf     }
2883f2feebbdSKevin Wolf 
28843ac21627SPeter Lieven     /* safe default */
28853ac21627SPeter Lieven     return 0;
2886f2feebbdSKevin Wolf }
2887f2feebbdSKevin Wolf 
28884ce78691SPeter Lieven bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
28894ce78691SPeter Lieven {
28904ce78691SPeter Lieven     BlockDriverInfo bdi;
28914ce78691SPeter Lieven 
2892760e0063SKevin Wolf     if (bs->backing) {
28934ce78691SPeter Lieven         return false;
28944ce78691SPeter Lieven     }
28954ce78691SPeter Lieven 
28964ce78691SPeter Lieven     if (bdrv_get_info(bs, &bdi) == 0) {
28974ce78691SPeter Lieven         return bdi.unallocated_blocks_are_zero;
28984ce78691SPeter Lieven     }
28994ce78691SPeter Lieven 
29004ce78691SPeter Lieven     return false;
29014ce78691SPeter Lieven }
29024ce78691SPeter Lieven 
29034ce78691SPeter Lieven bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
29044ce78691SPeter Lieven {
29054ce78691SPeter Lieven     BlockDriverInfo bdi;
29064ce78691SPeter Lieven 
29072f0342efSDenis V. Lunev     if (!(bs->open_flags & BDRV_O_UNMAP)) {
29084ce78691SPeter Lieven         return false;
29094ce78691SPeter Lieven     }
29104ce78691SPeter Lieven 
29114ce78691SPeter Lieven     if (bdrv_get_info(bs, &bdi) == 0) {
29124ce78691SPeter Lieven         return bdi.can_write_zeroes_with_unmap;
29134ce78691SPeter Lieven     }
29144ce78691SPeter Lieven 
29154ce78691SPeter Lieven     return false;
29164ce78691SPeter Lieven }
29174ce78691SPeter Lieven 
2918045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
2919045df330Saliguori {
2920760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted)
2921045df330Saliguori         return bs->backing_file;
2922045df330Saliguori     else if (bs->encrypted)
2923045df330Saliguori         return bs->filename;
2924045df330Saliguori     else
2925045df330Saliguori         return NULL;
2926045df330Saliguori }
2927045df330Saliguori 
292883f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs,
292983f64091Sbellard                                char *filename, int filename_size)
293083f64091Sbellard {
293183f64091Sbellard     pstrcpy(filename, filename_size, bs->backing_file);
293283f64091Sbellard }
293383f64091Sbellard 
2934faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
2935faea38e7Sbellard {
2936faea38e7Sbellard     BlockDriver *drv = bs->drv;
2937faea38e7Sbellard     if (!drv)
293819cb3738Sbellard         return -ENOMEDIUM;
2939faea38e7Sbellard     if (!drv->bdrv_get_info)
2940faea38e7Sbellard         return -ENOTSUP;
2941faea38e7Sbellard     memset(bdi, 0, sizeof(*bdi));
2942faea38e7Sbellard     return drv->bdrv_get_info(bs, bdi);
2943faea38e7Sbellard }
2944faea38e7Sbellard 
2945eae041feSMax Reitz ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
2946eae041feSMax Reitz {
2947eae041feSMax Reitz     BlockDriver *drv = bs->drv;
2948eae041feSMax Reitz     if (drv && drv->bdrv_get_specific_info) {
2949eae041feSMax Reitz         return drv->bdrv_get_specific_info(bs);
2950eae041feSMax Reitz     }
2951eae041feSMax Reitz     return NULL;
2952eae041feSMax Reitz }
2953eae041feSMax Reitz 
2954a31939e6SEric Blake void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
29558b9b0cc2SKevin Wolf {
2956bf736fe3SKevin Wolf     if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
29578b9b0cc2SKevin Wolf         return;
29588b9b0cc2SKevin Wolf     }
29598b9b0cc2SKevin Wolf 
2960bf736fe3SKevin Wolf     bs->drv->bdrv_debug_event(bs, event);
296141c695c7SKevin Wolf }
29628b9b0cc2SKevin Wolf 
296341c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
296441c695c7SKevin Wolf                           const char *tag)
296541c695c7SKevin Wolf {
296641c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
29679a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
296841c695c7SKevin Wolf     }
296941c695c7SKevin Wolf 
297041c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
297141c695c7SKevin Wolf         return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
297241c695c7SKevin Wolf     }
297341c695c7SKevin Wolf 
297441c695c7SKevin Wolf     return -ENOTSUP;
297541c695c7SKevin Wolf }
297641c695c7SKevin Wolf 
29774cc70e93SFam Zheng int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
29784cc70e93SFam Zheng {
29794cc70e93SFam Zheng     while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
29809a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
29814cc70e93SFam Zheng     }
29824cc70e93SFam Zheng 
29834cc70e93SFam Zheng     if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
29844cc70e93SFam Zheng         return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
29854cc70e93SFam Zheng     }
29864cc70e93SFam Zheng 
29874cc70e93SFam Zheng     return -ENOTSUP;
29884cc70e93SFam Zheng }
29894cc70e93SFam Zheng 
299041c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
299141c695c7SKevin Wolf {
2992938789eaSMax Reitz     while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
29939a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
299441c695c7SKevin Wolf     }
299541c695c7SKevin Wolf 
299641c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
299741c695c7SKevin Wolf         return bs->drv->bdrv_debug_resume(bs, tag);
299841c695c7SKevin Wolf     }
299941c695c7SKevin Wolf 
300041c695c7SKevin Wolf     return -ENOTSUP;
300141c695c7SKevin Wolf }
300241c695c7SKevin Wolf 
300341c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
300441c695c7SKevin Wolf {
300541c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
30069a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
300741c695c7SKevin Wolf     }
300841c695c7SKevin Wolf 
300941c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
301041c695c7SKevin Wolf         return bs->drv->bdrv_debug_is_suspended(bs, tag);
301141c695c7SKevin Wolf     }
301241c695c7SKevin Wolf 
301341c695c7SKevin Wolf     return false;
30148b9b0cc2SKevin Wolf }
30158b9b0cc2SKevin Wolf 
3016199630b6SBlue Swirl int bdrv_is_snapshot(BlockDriverState *bs)
3017199630b6SBlue Swirl {
3018199630b6SBlue Swirl     return !!(bs->open_flags & BDRV_O_SNAPSHOT);
3019199630b6SBlue Swirl }
3020199630b6SBlue Swirl 
3021b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol.  If it is
3022b1b1d783SJeff Cody  * relative, it must be relative to the chain.  So, passing in bs->filename
3023b1b1d783SJeff Cody  * from a BDS as backing_file should not be done, as that may be relative to
3024b1b1d783SJeff Cody  * the CWD rather than the chain. */
3025e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
3026e8a6bb9cSMarcelo Tosatti         const char *backing_file)
3027e8a6bb9cSMarcelo Tosatti {
3028b1b1d783SJeff Cody     char *filename_full = NULL;
3029b1b1d783SJeff Cody     char *backing_file_full = NULL;
3030b1b1d783SJeff Cody     char *filename_tmp = NULL;
3031b1b1d783SJeff Cody     int is_protocol = 0;
3032b1b1d783SJeff Cody     BlockDriverState *curr_bs = NULL;
3033b1b1d783SJeff Cody     BlockDriverState *retval = NULL;
3034b1b1d783SJeff Cody 
3035b1b1d783SJeff Cody     if (!bs || !bs->drv || !backing_file) {
3036e8a6bb9cSMarcelo Tosatti         return NULL;
3037e8a6bb9cSMarcelo Tosatti     }
3038e8a6bb9cSMarcelo Tosatti 
3039b1b1d783SJeff Cody     filename_full     = g_malloc(PATH_MAX);
3040b1b1d783SJeff Cody     backing_file_full = g_malloc(PATH_MAX);
3041b1b1d783SJeff Cody     filename_tmp      = g_malloc(PATH_MAX);
3042b1b1d783SJeff Cody 
3043b1b1d783SJeff Cody     is_protocol = path_has_protocol(backing_file);
3044b1b1d783SJeff Cody 
3045760e0063SKevin Wolf     for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
3046b1b1d783SJeff Cody 
3047b1b1d783SJeff Cody         /* If either of the filename paths is actually a protocol, then
3048b1b1d783SJeff Cody          * compare unmodified paths; otherwise make paths relative */
3049b1b1d783SJeff Cody         if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
3050b1b1d783SJeff Cody             if (strcmp(backing_file, curr_bs->backing_file) == 0) {
3051760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
3052b1b1d783SJeff Cody                 break;
3053b1b1d783SJeff Cody             }
3054e8a6bb9cSMarcelo Tosatti         } else {
3055b1b1d783SJeff Cody             /* If not an absolute filename path, make it relative to the current
3056b1b1d783SJeff Cody              * image's filename path */
3057b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
3058b1b1d783SJeff Cody                          backing_file);
3059b1b1d783SJeff Cody 
3060b1b1d783SJeff Cody             /* We are going to compare absolute pathnames */
3061b1b1d783SJeff Cody             if (!realpath(filename_tmp, filename_full)) {
3062b1b1d783SJeff Cody                 continue;
3063b1b1d783SJeff Cody             }
3064b1b1d783SJeff Cody 
3065b1b1d783SJeff Cody             /* We need to make sure the backing filename we are comparing against
3066b1b1d783SJeff Cody              * is relative to the current image filename (or absolute) */
3067b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
3068b1b1d783SJeff Cody                          curr_bs->backing_file);
3069b1b1d783SJeff Cody 
3070b1b1d783SJeff Cody             if (!realpath(filename_tmp, backing_file_full)) {
3071b1b1d783SJeff Cody                 continue;
3072b1b1d783SJeff Cody             }
3073b1b1d783SJeff Cody 
3074b1b1d783SJeff Cody             if (strcmp(backing_file_full, filename_full) == 0) {
3075760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
3076b1b1d783SJeff Cody                 break;
3077b1b1d783SJeff Cody             }
3078e8a6bb9cSMarcelo Tosatti         }
3079e8a6bb9cSMarcelo Tosatti     }
3080e8a6bb9cSMarcelo Tosatti 
3081b1b1d783SJeff Cody     g_free(filename_full);
3082b1b1d783SJeff Cody     g_free(backing_file_full);
3083b1b1d783SJeff Cody     g_free(filename_tmp);
3084b1b1d783SJeff Cody     return retval;
3085e8a6bb9cSMarcelo Tosatti }
3086e8a6bb9cSMarcelo Tosatti 
3087f198fd1cSBenoît Canet int bdrv_get_backing_file_depth(BlockDriverState *bs)
3088f198fd1cSBenoît Canet {
3089f198fd1cSBenoît Canet     if (!bs->drv) {
3090f198fd1cSBenoît Canet         return 0;
3091f198fd1cSBenoît Canet     }
3092f198fd1cSBenoît Canet 
3093760e0063SKevin Wolf     if (!bs->backing) {
3094f198fd1cSBenoît Canet         return 0;
3095f198fd1cSBenoît Canet     }
3096f198fd1cSBenoît Canet 
3097760e0063SKevin Wolf     return 1 + bdrv_get_backing_file_depth(bs->backing->bs);
3098f198fd1cSBenoît Canet }
3099f198fd1cSBenoît Canet 
3100ea2384d3Sbellard void bdrv_init(void)
3101ea2384d3Sbellard {
31025efa9d5aSAnthony Liguori     module_call_init(MODULE_INIT_BLOCK);
3103ea2384d3Sbellard }
3104ce1a14dcSpbrook 
3105eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void)
3106eb852011SMarkus Armbruster {
3107eb852011SMarkus Armbruster     use_bdrv_whitelist = 1;
3108eb852011SMarkus Armbruster     bdrv_init();
3109eb852011SMarkus Armbruster }
3110eb852011SMarkus Armbruster 
31115a8a30dbSKevin Wolf void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
31120f15423cSAnthony Liguori {
31130d1c5c91SFam Zheng     BdrvChild *child;
31145a8a30dbSKevin Wolf     Error *local_err = NULL;
31155a8a30dbSKevin Wolf     int ret;
31165a8a30dbSKevin Wolf 
31173456a8d1SKevin Wolf     if (!bs->drv)  {
31183456a8d1SKevin Wolf         return;
31190f15423cSAnthony Liguori     }
31203456a8d1SKevin Wolf 
312104c01a5cSKevin Wolf     if (!(bs->open_flags & BDRV_O_INACTIVE)) {
31227ea2d269SAlexey Kardashevskiy         return;
31237ea2d269SAlexey Kardashevskiy     }
312404c01a5cSKevin Wolf     bs->open_flags &= ~BDRV_O_INACTIVE;
31257ea2d269SAlexey Kardashevskiy 
31263456a8d1SKevin Wolf     if (bs->drv->bdrv_invalidate_cache) {
31275a8a30dbSKevin Wolf         bs->drv->bdrv_invalidate_cache(bs, &local_err);
31285a8a30dbSKevin Wolf         if (local_err) {
312904c01a5cSKevin Wolf             bs->open_flags |= BDRV_O_INACTIVE;
31305a8a30dbSKevin Wolf             error_propagate(errp, local_err);
31315a8a30dbSKevin Wolf             return;
31323456a8d1SKevin Wolf         }
31330d1c5c91SFam Zheng     }
31340d1c5c91SFam Zheng 
31350d1c5c91SFam Zheng     QLIST_FOREACH(child, &bs->children, next) {
31360d1c5c91SFam Zheng         bdrv_invalidate_cache(child->bs, &local_err);
31370d1c5c91SFam Zheng         if (local_err) {
31380d1c5c91SFam Zheng             bs->open_flags |= BDRV_O_INACTIVE;
31390d1c5c91SFam Zheng             error_propagate(errp, local_err);
31400d1c5c91SFam Zheng             return;
31410d1c5c91SFam Zheng         }
31420d1c5c91SFam Zheng     }
31433456a8d1SKevin Wolf 
31445a8a30dbSKevin Wolf     ret = refresh_total_sectors(bs, bs->total_sectors);
31455a8a30dbSKevin Wolf     if (ret < 0) {
314604c01a5cSKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
31475a8a30dbSKevin Wolf         error_setg_errno(errp, -ret, "Could not refresh total sector count");
31485a8a30dbSKevin Wolf         return;
31495a8a30dbSKevin Wolf     }
31500f15423cSAnthony Liguori }
31510f15423cSAnthony Liguori 
31525a8a30dbSKevin Wolf void bdrv_invalidate_cache_all(Error **errp)
31530f15423cSAnthony Liguori {
31547c8eece4SKevin Wolf     BlockDriverState *bs;
31555a8a30dbSKevin Wolf     Error *local_err = NULL;
315688be7b4bSKevin Wolf     BdrvNextIterator it;
31570f15423cSAnthony Liguori 
315888be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3159ed78cda3SStefan Hajnoczi         AioContext *aio_context = bdrv_get_aio_context(bs);
3160ed78cda3SStefan Hajnoczi 
3161ed78cda3SStefan Hajnoczi         aio_context_acquire(aio_context);
31625a8a30dbSKevin Wolf         bdrv_invalidate_cache(bs, &local_err);
3163ed78cda3SStefan Hajnoczi         aio_context_release(aio_context);
31645a8a30dbSKevin Wolf         if (local_err) {
31655a8a30dbSKevin Wolf             error_propagate(errp, local_err);
31665a8a30dbSKevin Wolf             return;
31675a8a30dbSKevin Wolf         }
31680f15423cSAnthony Liguori     }
31690f15423cSAnthony Liguori }
31700f15423cSAnthony Liguori 
3171aad0b7a0SFam Zheng static int bdrv_inactivate_recurse(BlockDriverState *bs,
3172aad0b7a0SFam Zheng                                    bool setting_flag)
317376b1c7feSKevin Wolf {
3174aad0b7a0SFam Zheng     BdrvChild *child;
317576b1c7feSKevin Wolf     int ret;
317676b1c7feSKevin Wolf 
3177aad0b7a0SFam Zheng     if (!setting_flag && bs->drv->bdrv_inactivate) {
317876b1c7feSKevin Wolf         ret = bs->drv->bdrv_inactivate(bs);
317976b1c7feSKevin Wolf         if (ret < 0) {
318076b1c7feSKevin Wolf             return ret;
318176b1c7feSKevin Wolf         }
318276b1c7feSKevin Wolf     }
318376b1c7feSKevin Wolf 
3184aad0b7a0SFam Zheng     QLIST_FOREACH(child, &bs->children, next) {
3185aad0b7a0SFam Zheng         ret = bdrv_inactivate_recurse(child->bs, setting_flag);
3186aad0b7a0SFam Zheng         if (ret < 0) {
3187aad0b7a0SFam Zheng             return ret;
3188aad0b7a0SFam Zheng         }
3189aad0b7a0SFam Zheng     }
3190aad0b7a0SFam Zheng 
3191aad0b7a0SFam Zheng     if (setting_flag) {
319276b1c7feSKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
3193aad0b7a0SFam Zheng     }
319476b1c7feSKevin Wolf     return 0;
319576b1c7feSKevin Wolf }
319676b1c7feSKevin Wolf 
319776b1c7feSKevin Wolf int bdrv_inactivate_all(void)
319876b1c7feSKevin Wolf {
319979720af6SMax Reitz     BlockDriverState *bs = NULL;
320088be7b4bSKevin Wolf     BdrvNextIterator it;
3201aad0b7a0SFam Zheng     int ret = 0;
3202aad0b7a0SFam Zheng     int pass;
320376b1c7feSKevin Wolf 
320488be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3205aad0b7a0SFam Zheng         aio_context_acquire(bdrv_get_aio_context(bs));
3206aad0b7a0SFam Zheng     }
320776b1c7feSKevin Wolf 
3208aad0b7a0SFam Zheng     /* We do two passes of inactivation. The first pass calls to drivers'
3209aad0b7a0SFam Zheng      * .bdrv_inactivate callbacks recursively so all cache is flushed to disk;
3210aad0b7a0SFam Zheng      * the second pass sets the BDRV_O_INACTIVE flag so that no further write
3211aad0b7a0SFam Zheng      * is allowed. */
3212aad0b7a0SFam Zheng     for (pass = 0; pass < 2; pass++) {
321388be7b4bSKevin Wolf         for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3214aad0b7a0SFam Zheng             ret = bdrv_inactivate_recurse(bs, pass);
321576b1c7feSKevin Wolf             if (ret < 0) {
3216aad0b7a0SFam Zheng                 goto out;
3217aad0b7a0SFam Zheng             }
321876b1c7feSKevin Wolf         }
321976b1c7feSKevin Wolf     }
322076b1c7feSKevin Wolf 
3221aad0b7a0SFam Zheng out:
322288be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3223aad0b7a0SFam Zheng         aio_context_release(bdrv_get_aio_context(bs));
3224aad0b7a0SFam Zheng     }
3225aad0b7a0SFam Zheng 
3226aad0b7a0SFam Zheng     return ret;
322776b1c7feSKevin Wolf }
322876b1c7feSKevin Wolf 
3229f9f05dc5SKevin Wolf /**************************************************************/
323019cb3738Sbellard /* removable device support */
323119cb3738Sbellard 
323219cb3738Sbellard /**
323319cb3738Sbellard  * Return TRUE if the media is present
323419cb3738Sbellard  */
3235e031f750SMax Reitz bool bdrv_is_inserted(BlockDriverState *bs)
323619cb3738Sbellard {
323719cb3738Sbellard     BlockDriver *drv = bs->drv;
323828d7a789SMax Reitz     BdrvChild *child;
3239a1aff5bfSMarkus Armbruster 
3240e031f750SMax Reitz     if (!drv) {
3241e031f750SMax Reitz         return false;
3242e031f750SMax Reitz     }
324328d7a789SMax Reitz     if (drv->bdrv_is_inserted) {
3244a1aff5bfSMarkus Armbruster         return drv->bdrv_is_inserted(bs);
324519cb3738Sbellard     }
324628d7a789SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
324728d7a789SMax Reitz         if (!bdrv_is_inserted(child->bs)) {
324828d7a789SMax Reitz             return false;
324928d7a789SMax Reitz         }
325028d7a789SMax Reitz     }
325128d7a789SMax Reitz     return true;
325228d7a789SMax Reitz }
325319cb3738Sbellard 
325419cb3738Sbellard /**
32558e49ca46SMarkus Armbruster  * Return whether the media changed since the last call to this
32568e49ca46SMarkus Armbruster  * function, or -ENOTSUP if we don't know.  Most drivers don't know.
325719cb3738Sbellard  */
325819cb3738Sbellard int bdrv_media_changed(BlockDriverState *bs)
325919cb3738Sbellard {
326019cb3738Sbellard     BlockDriver *drv = bs->drv;
326119cb3738Sbellard 
32628e49ca46SMarkus Armbruster     if (drv && drv->bdrv_media_changed) {
32638e49ca46SMarkus Armbruster         return drv->bdrv_media_changed(bs);
32648e49ca46SMarkus Armbruster     }
32658e49ca46SMarkus Armbruster     return -ENOTSUP;
326619cb3738Sbellard }
326719cb3738Sbellard 
326819cb3738Sbellard /**
326919cb3738Sbellard  * If eject_flag is TRUE, eject the media. Otherwise, close the tray
327019cb3738Sbellard  */
3271f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag)
327219cb3738Sbellard {
327319cb3738Sbellard     BlockDriver *drv = bs->drv;
3274bfb197e0SMarkus Armbruster     const char *device_name;
327519cb3738Sbellard 
3276822e1cd1SMarkus Armbruster     if (drv && drv->bdrv_eject) {
3277822e1cd1SMarkus Armbruster         drv->bdrv_eject(bs, eject_flag);
327819cb3738Sbellard     }
32796f382ed2SLuiz Capitulino 
3280bfb197e0SMarkus Armbruster     device_name = bdrv_get_device_name(bs);
3281bfb197e0SMarkus Armbruster     if (device_name[0] != '\0') {
3282bfb197e0SMarkus Armbruster         qapi_event_send_device_tray_moved(device_name,
3283a5ee7bd4SWenchao Xia                                           eject_flag, &error_abort);
32846f382ed2SLuiz Capitulino     }
328519cb3738Sbellard }
328619cb3738Sbellard 
328719cb3738Sbellard /**
328819cb3738Sbellard  * Lock or unlock the media (if it is locked, the user won't be able
328919cb3738Sbellard  * to eject it manually).
329019cb3738Sbellard  */
3291025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked)
329219cb3738Sbellard {
329319cb3738Sbellard     BlockDriver *drv = bs->drv;
329419cb3738Sbellard 
3295025e849aSMarkus Armbruster     trace_bdrv_lock_medium(bs, locked);
3296b8c6d095SStefan Hajnoczi 
3297025e849aSMarkus Armbruster     if (drv && drv->bdrv_lock_medium) {
3298025e849aSMarkus Armbruster         drv->bdrv_lock_medium(bs, locked);
329919cb3738Sbellard     }
330019cb3738Sbellard }
3301985a03b0Sths 
33029fcb0251SFam Zheng /* Get a reference to bs */
33039fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs)
33049fcb0251SFam Zheng {
33059fcb0251SFam Zheng     bs->refcnt++;
33069fcb0251SFam Zheng }
33079fcb0251SFam Zheng 
33089fcb0251SFam Zheng /* Release a previously grabbed reference to bs.
33099fcb0251SFam Zheng  * If after releasing, reference count is zero, the BlockDriverState is
33109fcb0251SFam Zheng  * deleted. */
33119fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs)
33129fcb0251SFam Zheng {
33139a4d5ca6SJeff Cody     if (!bs) {
33149a4d5ca6SJeff Cody         return;
33159a4d5ca6SJeff Cody     }
33169fcb0251SFam Zheng     assert(bs->refcnt > 0);
33179fcb0251SFam Zheng     if (--bs->refcnt == 0) {
33189fcb0251SFam Zheng         bdrv_delete(bs);
33199fcb0251SFam Zheng     }
33209fcb0251SFam Zheng }
33219fcb0251SFam Zheng 
3322fbe40ff7SFam Zheng struct BdrvOpBlocker {
3323fbe40ff7SFam Zheng     Error *reason;
3324fbe40ff7SFam Zheng     QLIST_ENTRY(BdrvOpBlocker) list;
3325fbe40ff7SFam Zheng };
3326fbe40ff7SFam Zheng 
3327fbe40ff7SFam Zheng bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
3328fbe40ff7SFam Zheng {
3329fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
3330fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
3331fbe40ff7SFam Zheng     if (!QLIST_EMPTY(&bs->op_blockers[op])) {
3332fbe40ff7SFam Zheng         blocker = QLIST_FIRST(&bs->op_blockers[op]);
3333fbe40ff7SFam Zheng         if (errp) {
3334e43bfd9cSMarkus Armbruster             *errp = error_copy(blocker->reason);
3335e43bfd9cSMarkus Armbruster             error_prepend(errp, "Node '%s' is busy: ",
3336e43bfd9cSMarkus Armbruster                           bdrv_get_device_or_node_name(bs));
3337fbe40ff7SFam Zheng         }
3338fbe40ff7SFam Zheng         return true;
3339fbe40ff7SFam Zheng     }
3340fbe40ff7SFam Zheng     return false;
3341fbe40ff7SFam Zheng }
3342fbe40ff7SFam Zheng 
3343fbe40ff7SFam Zheng void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
3344fbe40ff7SFam Zheng {
3345fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
3346fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
3347fbe40ff7SFam Zheng 
33485839e53bSMarkus Armbruster     blocker = g_new0(BdrvOpBlocker, 1);
3349fbe40ff7SFam Zheng     blocker->reason = reason;
3350fbe40ff7SFam Zheng     QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
3351fbe40ff7SFam Zheng }
3352fbe40ff7SFam Zheng 
3353fbe40ff7SFam Zheng void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
3354fbe40ff7SFam Zheng {
3355fbe40ff7SFam Zheng     BdrvOpBlocker *blocker, *next;
3356fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
3357fbe40ff7SFam Zheng     QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
3358fbe40ff7SFam Zheng         if (blocker->reason == reason) {
3359fbe40ff7SFam Zheng             QLIST_REMOVE(blocker, list);
3360fbe40ff7SFam Zheng             g_free(blocker);
3361fbe40ff7SFam Zheng         }
3362fbe40ff7SFam Zheng     }
3363fbe40ff7SFam Zheng }
3364fbe40ff7SFam Zheng 
3365fbe40ff7SFam Zheng void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
3366fbe40ff7SFam Zheng {
3367fbe40ff7SFam Zheng     int i;
3368fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
3369fbe40ff7SFam Zheng         bdrv_op_block(bs, i, reason);
3370fbe40ff7SFam Zheng     }
3371fbe40ff7SFam Zheng }
3372fbe40ff7SFam Zheng 
3373fbe40ff7SFam Zheng void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
3374fbe40ff7SFam Zheng {
3375fbe40ff7SFam Zheng     int i;
3376fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
3377fbe40ff7SFam Zheng         bdrv_op_unblock(bs, i, reason);
3378fbe40ff7SFam Zheng     }
3379fbe40ff7SFam Zheng }
3380fbe40ff7SFam Zheng 
3381fbe40ff7SFam Zheng bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
3382fbe40ff7SFam Zheng {
3383fbe40ff7SFam Zheng     int i;
3384fbe40ff7SFam Zheng 
3385fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
3386fbe40ff7SFam Zheng         if (!QLIST_EMPTY(&bs->op_blockers[i])) {
3387fbe40ff7SFam Zheng             return false;
3388fbe40ff7SFam Zheng         }
3389fbe40ff7SFam Zheng     }
3390fbe40ff7SFam Zheng     return true;
3391fbe40ff7SFam Zheng }
3392fbe40ff7SFam Zheng 
3393d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt,
3394f88e1a42SJes Sorensen                      const char *base_filename, const char *base_fmt,
3395f382d43aSMiroslav Rezanina                      char *options, uint64_t img_size, int flags,
3396f382d43aSMiroslav Rezanina                      Error **errp, bool quiet)
3397f88e1a42SJes Sorensen {
339883d0521aSChunyan Liu     QemuOptsList *create_opts = NULL;
339983d0521aSChunyan Liu     QemuOpts *opts = NULL;
340083d0521aSChunyan Liu     const char *backing_fmt, *backing_file;
340183d0521aSChunyan Liu     int64_t size;
3402f88e1a42SJes Sorensen     BlockDriver *drv, *proto_drv;
3403cc84d90fSMax Reitz     Error *local_err = NULL;
3404f88e1a42SJes Sorensen     int ret = 0;
3405f88e1a42SJes Sorensen 
3406f88e1a42SJes Sorensen     /* Find driver and parse its options */
3407f88e1a42SJes Sorensen     drv = bdrv_find_format(fmt);
3408f88e1a42SJes Sorensen     if (!drv) {
340971c79813SLuiz Capitulino         error_setg(errp, "Unknown file format '%s'", fmt);
3410d92ada22SLuiz Capitulino         return;
3411f88e1a42SJes Sorensen     }
3412f88e1a42SJes Sorensen 
3413b65a5e12SMax Reitz     proto_drv = bdrv_find_protocol(filename, true, errp);
3414f88e1a42SJes Sorensen     if (!proto_drv) {
3415d92ada22SLuiz Capitulino         return;
3416f88e1a42SJes Sorensen     }
3417f88e1a42SJes Sorensen 
3418c6149724SMax Reitz     if (!drv->create_opts) {
3419c6149724SMax Reitz         error_setg(errp, "Format driver '%s' does not support image creation",
3420c6149724SMax Reitz                    drv->format_name);
3421c6149724SMax Reitz         return;
3422c6149724SMax Reitz     }
3423c6149724SMax Reitz 
3424c6149724SMax Reitz     if (!proto_drv->create_opts) {
3425c6149724SMax Reitz         error_setg(errp, "Protocol driver '%s' does not support image creation",
3426c6149724SMax Reitz                    proto_drv->format_name);
3427c6149724SMax Reitz         return;
3428c6149724SMax Reitz     }
3429c6149724SMax Reitz 
3430c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, drv->create_opts);
3431c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
3432f88e1a42SJes Sorensen 
3433f88e1a42SJes Sorensen     /* Create parameter list with default values */
343483d0521aSChunyan Liu     opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
343539101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
3436f88e1a42SJes Sorensen 
3437f88e1a42SJes Sorensen     /* Parse -o options */
3438f88e1a42SJes Sorensen     if (options) {
3439dc523cd3SMarkus Armbruster         qemu_opts_do_parse(opts, options, NULL, &local_err);
3440dc523cd3SMarkus Armbruster         if (local_err) {
3441dc523cd3SMarkus Armbruster             error_report_err(local_err);
3442dc523cd3SMarkus Armbruster             local_err = NULL;
344383d0521aSChunyan Liu             error_setg(errp, "Invalid options for file format '%s'", fmt);
3444f88e1a42SJes Sorensen             goto out;
3445f88e1a42SJes Sorensen         }
3446f88e1a42SJes Sorensen     }
3447f88e1a42SJes Sorensen 
3448f88e1a42SJes Sorensen     if (base_filename) {
3449f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
34506be4194bSMarkus Armbruster         if (local_err) {
345171c79813SLuiz Capitulino             error_setg(errp, "Backing file not supported for file format '%s'",
345271c79813SLuiz Capitulino                        fmt);
3453f88e1a42SJes Sorensen             goto out;
3454f88e1a42SJes Sorensen         }
3455f88e1a42SJes Sorensen     }
3456f88e1a42SJes Sorensen 
3457f88e1a42SJes Sorensen     if (base_fmt) {
3458f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
34596be4194bSMarkus Armbruster         if (local_err) {
346071c79813SLuiz Capitulino             error_setg(errp, "Backing file format not supported for file "
346171c79813SLuiz Capitulino                              "format '%s'", fmt);
3462f88e1a42SJes Sorensen             goto out;
3463f88e1a42SJes Sorensen         }
3464f88e1a42SJes Sorensen     }
3465f88e1a42SJes Sorensen 
346683d0521aSChunyan Liu     backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
346783d0521aSChunyan Liu     if (backing_file) {
346883d0521aSChunyan Liu         if (!strcmp(filename, backing_file)) {
346971c79813SLuiz Capitulino             error_setg(errp, "Error: Trying to create an image with the "
347071c79813SLuiz Capitulino                              "same filename as the backing file");
3471792da93aSJes Sorensen             goto out;
3472792da93aSJes Sorensen         }
3473792da93aSJes Sorensen     }
3474792da93aSJes Sorensen 
347583d0521aSChunyan Liu     backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
3476f88e1a42SJes Sorensen 
3477f88e1a42SJes Sorensen     // The size for the image must always be specified, with one exception:
3478f88e1a42SJes Sorensen     // If we are using a backing file, we can obtain the size from there
347983d0521aSChunyan Liu     size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0);
348083d0521aSChunyan Liu     if (size == -1) {
348183d0521aSChunyan Liu         if (backing_file) {
348266f6b814SMax Reitz             BlockDriverState *bs;
348329168018SMax Reitz             char *full_backing = g_new0(char, PATH_MAX);
348452bf1e72SMarkus Armbruster             int64_t size;
348563090dacSPaolo Bonzini             int back_flags;
3486e6641719SMax Reitz             QDict *backing_options = NULL;
348763090dacSPaolo Bonzini 
348829168018SMax Reitz             bdrv_get_full_backing_filename_from_filename(filename, backing_file,
348929168018SMax Reitz                                                          full_backing, PATH_MAX,
349029168018SMax Reitz                                                          &local_err);
349129168018SMax Reitz             if (local_err) {
349229168018SMax Reitz                 g_free(full_backing);
349329168018SMax Reitz                 goto out;
349429168018SMax Reitz             }
349529168018SMax Reitz 
349663090dacSPaolo Bonzini             /* backing files always opened read-only */
349761de4c68SKevin Wolf             back_flags = flags;
3498bfd18d1eSKevin Wolf             back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
3499f88e1a42SJes Sorensen 
3500e6641719SMax Reitz             if (backing_fmt) {
3501e6641719SMax Reitz                 backing_options = qdict_new();
3502e6641719SMax Reitz                 qdict_put(backing_options, "driver",
3503e6641719SMax Reitz                           qstring_from_str(backing_fmt));
3504e6641719SMax Reitz             }
3505e6641719SMax Reitz 
35065b363937SMax Reitz             bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
35075b363937SMax Reitz                            &local_err);
350829168018SMax Reitz             g_free(full_backing);
35095b363937SMax Reitz             if (!bs) {
3510f88e1a42SJes Sorensen                 goto out;
3511f88e1a42SJes Sorensen             }
351252bf1e72SMarkus Armbruster             size = bdrv_getlength(bs);
351352bf1e72SMarkus Armbruster             if (size < 0) {
351452bf1e72SMarkus Armbruster                 error_setg_errno(errp, -size, "Could not get size of '%s'",
351552bf1e72SMarkus Armbruster                                  backing_file);
351652bf1e72SMarkus Armbruster                 bdrv_unref(bs);
351752bf1e72SMarkus Armbruster                 goto out;
351852bf1e72SMarkus Armbruster             }
3519f88e1a42SJes Sorensen 
352039101f25SMarkus Armbruster             qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
352166f6b814SMax Reitz 
352266f6b814SMax Reitz             bdrv_unref(bs);
3523f88e1a42SJes Sorensen         } else {
352471c79813SLuiz Capitulino             error_setg(errp, "Image creation needs a size parameter");
3525f88e1a42SJes Sorensen             goto out;
3526f88e1a42SJes Sorensen         }
3527f88e1a42SJes Sorensen     }
3528f88e1a42SJes Sorensen 
3529f382d43aSMiroslav Rezanina     if (!quiet) {
3530f88e1a42SJes Sorensen         printf("Formatting '%s', fmt=%s ", filename, fmt);
353143c5d8f8SFam Zheng         qemu_opts_print(opts, " ");
3532f88e1a42SJes Sorensen         puts("");
3533f382d43aSMiroslav Rezanina     }
353483d0521aSChunyan Liu 
3535c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
353683d0521aSChunyan Liu 
3537cc84d90fSMax Reitz     if (ret == -EFBIG) {
3538cc84d90fSMax Reitz         /* This is generally a better message than whatever the driver would
3539cc84d90fSMax Reitz          * deliver (especially because of the cluster_size_hint), since that
3540cc84d90fSMax Reitz          * is most probably not much different from "image too large". */
3541f3f4d2c0SKevin Wolf         const char *cluster_size_hint = "";
354283d0521aSChunyan Liu         if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
3543f3f4d2c0SKevin Wolf             cluster_size_hint = " (try using a larger cluster size)";
3544f3f4d2c0SKevin Wolf         }
3545cc84d90fSMax Reitz         error_setg(errp, "The image size is too large for file format '%s'"
3546cc84d90fSMax Reitz                    "%s", fmt, cluster_size_hint);
3547cc84d90fSMax Reitz         error_free(local_err);
3548cc84d90fSMax Reitz         local_err = NULL;
3549f88e1a42SJes Sorensen     }
3550f88e1a42SJes Sorensen 
3551f88e1a42SJes Sorensen out:
355283d0521aSChunyan Liu     qemu_opts_del(opts);
355383d0521aSChunyan Liu     qemu_opts_free(create_opts);
3554cc84d90fSMax Reitz     error_propagate(errp, local_err);
3555cc84d90fSMax Reitz }
355685d126f3SStefan Hajnoczi 
355785d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs)
355885d126f3SStefan Hajnoczi {
3559dcd04228SStefan Hajnoczi     return bs->aio_context;
3560dcd04228SStefan Hajnoczi }
3561dcd04228SStefan Hajnoczi 
3562e8a095daSStefan Hajnoczi static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
3563e8a095daSStefan Hajnoczi {
3564e8a095daSStefan Hajnoczi     QLIST_REMOVE(ban, list);
3565e8a095daSStefan Hajnoczi     g_free(ban);
3566e8a095daSStefan Hajnoczi }
3567e8a095daSStefan Hajnoczi 
3568dcd04228SStefan Hajnoczi void bdrv_detach_aio_context(BlockDriverState *bs)
3569dcd04228SStefan Hajnoczi {
3570e8a095daSStefan Hajnoczi     BdrvAioNotifier *baf, *baf_tmp;
3571b97511c7SMax Reitz     BdrvChild *child;
357233384421SMax Reitz 
3573dcd04228SStefan Hajnoczi     if (!bs->drv) {
3574dcd04228SStefan Hajnoczi         return;
3575dcd04228SStefan Hajnoczi     }
3576dcd04228SStefan Hajnoczi 
3577e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
3578e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
3579e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
3580e8a095daSStefan Hajnoczi         if (baf->deleted) {
3581e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(baf);
3582e8a095daSStefan Hajnoczi         } else {
358333384421SMax Reitz             baf->detach_aio_context(baf->opaque);
358433384421SMax Reitz         }
3585e8a095daSStefan Hajnoczi     }
3586e8a095daSStefan Hajnoczi     /* Never mind iterating again to check for ->deleted.  bdrv_close() will
3587e8a095daSStefan Hajnoczi      * remove remaining aio notifiers if we aren't called again.
3588e8a095daSStefan Hajnoczi      */
3589e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
359033384421SMax Reitz 
3591dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_detach_aio_context) {
3592dcd04228SStefan Hajnoczi         bs->drv->bdrv_detach_aio_context(bs);
3593dcd04228SStefan Hajnoczi     }
3594b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
3595b97511c7SMax Reitz         bdrv_detach_aio_context(child->bs);
3596dcd04228SStefan Hajnoczi     }
3597dcd04228SStefan Hajnoczi 
3598dcd04228SStefan Hajnoczi     bs->aio_context = NULL;
3599dcd04228SStefan Hajnoczi }
3600dcd04228SStefan Hajnoczi 
3601dcd04228SStefan Hajnoczi void bdrv_attach_aio_context(BlockDriverState *bs,
3602dcd04228SStefan Hajnoczi                              AioContext *new_context)
3603dcd04228SStefan Hajnoczi {
3604e8a095daSStefan Hajnoczi     BdrvAioNotifier *ban, *ban_tmp;
3605b97511c7SMax Reitz     BdrvChild *child;
360633384421SMax Reitz 
3607dcd04228SStefan Hajnoczi     if (!bs->drv) {
3608dcd04228SStefan Hajnoczi         return;
3609dcd04228SStefan Hajnoczi     }
3610dcd04228SStefan Hajnoczi 
3611dcd04228SStefan Hajnoczi     bs->aio_context = new_context;
3612dcd04228SStefan Hajnoczi 
3613b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
3614b97511c7SMax Reitz         bdrv_attach_aio_context(child->bs, new_context);
3615dcd04228SStefan Hajnoczi     }
3616dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_attach_aio_context) {
3617dcd04228SStefan Hajnoczi         bs->drv->bdrv_attach_aio_context(bs, new_context);
3618dcd04228SStefan Hajnoczi     }
361933384421SMax Reitz 
3620e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
3621e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
3622e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
3623e8a095daSStefan Hajnoczi         if (ban->deleted) {
3624e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(ban);
3625e8a095daSStefan Hajnoczi         } else {
362633384421SMax Reitz             ban->attached_aio_context(new_context, ban->opaque);
362733384421SMax Reitz         }
3628dcd04228SStefan Hajnoczi     }
3629e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
3630e8a095daSStefan Hajnoczi }
3631dcd04228SStefan Hajnoczi 
3632dcd04228SStefan Hajnoczi void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
3633dcd04228SStefan Hajnoczi {
363453ec73e2SFam Zheng     bdrv_drain(bs); /* ensure there are no in-flight requests */
3635dcd04228SStefan Hajnoczi 
3636dcd04228SStefan Hajnoczi     bdrv_detach_aio_context(bs);
3637dcd04228SStefan Hajnoczi 
3638dcd04228SStefan Hajnoczi     /* This function executes in the old AioContext so acquire the new one in
3639dcd04228SStefan Hajnoczi      * case it runs in a different thread.
3640dcd04228SStefan Hajnoczi      */
3641dcd04228SStefan Hajnoczi     aio_context_acquire(new_context);
3642dcd04228SStefan Hajnoczi     bdrv_attach_aio_context(bs, new_context);
3643dcd04228SStefan Hajnoczi     aio_context_release(new_context);
364485d126f3SStefan Hajnoczi }
3645d616b224SStefan Hajnoczi 
364633384421SMax Reitz void bdrv_add_aio_context_notifier(BlockDriverState *bs,
364733384421SMax Reitz         void (*attached_aio_context)(AioContext *new_context, void *opaque),
364833384421SMax Reitz         void (*detach_aio_context)(void *opaque), void *opaque)
364933384421SMax Reitz {
365033384421SMax Reitz     BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
365133384421SMax Reitz     *ban = (BdrvAioNotifier){
365233384421SMax Reitz         .attached_aio_context = attached_aio_context,
365333384421SMax Reitz         .detach_aio_context   = detach_aio_context,
365433384421SMax Reitz         .opaque               = opaque
365533384421SMax Reitz     };
365633384421SMax Reitz 
365733384421SMax Reitz     QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
365833384421SMax Reitz }
365933384421SMax Reitz 
366033384421SMax Reitz void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
366133384421SMax Reitz                                       void (*attached_aio_context)(AioContext *,
366233384421SMax Reitz                                                                    void *),
366333384421SMax Reitz                                       void (*detach_aio_context)(void *),
366433384421SMax Reitz                                       void *opaque)
366533384421SMax Reitz {
366633384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
366733384421SMax Reitz 
366833384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
366933384421SMax Reitz         if (ban->attached_aio_context == attached_aio_context &&
367033384421SMax Reitz             ban->detach_aio_context   == detach_aio_context   &&
3671e8a095daSStefan Hajnoczi             ban->opaque               == opaque               &&
3672e8a095daSStefan Hajnoczi             ban->deleted              == false)
367333384421SMax Reitz         {
3674e8a095daSStefan Hajnoczi             if (bs->walking_aio_notifiers) {
3675e8a095daSStefan Hajnoczi                 ban->deleted = true;
3676e8a095daSStefan Hajnoczi             } else {
3677e8a095daSStefan Hajnoczi                 bdrv_do_remove_aio_context_notifier(ban);
3678e8a095daSStefan Hajnoczi             }
367933384421SMax Reitz             return;
368033384421SMax Reitz         }
368133384421SMax Reitz     }
368233384421SMax Reitz 
368333384421SMax Reitz     abort();
368433384421SMax Reitz }
368533384421SMax Reitz 
368677485434SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
36878b13976dSMax Reitz                        BlockDriverAmendStatusCB *status_cb, void *cb_opaque)
36886f176b48SMax Reitz {
3689c282e1fdSChunyan Liu     if (!bs->drv->bdrv_amend_options) {
36906f176b48SMax Reitz         return -ENOTSUP;
36916f176b48SMax Reitz     }
36928b13976dSMax Reitz     return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque);
36936f176b48SMax Reitz }
3694f6186f49SBenoît Canet 
3695b5042a36SBenoît Canet /* This function will be called by the bdrv_recurse_is_first_non_filter method
3696b5042a36SBenoît Canet  * of block filter and by bdrv_is_first_non_filter.
3697b5042a36SBenoît Canet  * It is used to test if the given bs is the candidate or recurse more in the
3698b5042a36SBenoît Canet  * node graph.
3699212a5a8fSBenoît Canet  */
3700212a5a8fSBenoît Canet bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
3701212a5a8fSBenoît Canet                                       BlockDriverState *candidate)
3702f6186f49SBenoît Canet {
3703b5042a36SBenoît Canet     /* return false if basic checks fails */
3704b5042a36SBenoît Canet     if (!bs || !bs->drv) {
3705b5042a36SBenoît Canet         return false;
3706b5042a36SBenoît Canet     }
3707b5042a36SBenoît Canet 
3708b5042a36SBenoît Canet     /* the code reached a non block filter driver -> check if the bs is
3709b5042a36SBenoît Canet      * the same as the candidate. It's the recursion termination condition.
3710b5042a36SBenoît Canet      */
3711b5042a36SBenoît Canet     if (!bs->drv->is_filter) {
3712b5042a36SBenoît Canet         return bs == candidate;
3713b5042a36SBenoît Canet     }
3714b5042a36SBenoît Canet     /* Down this path the driver is a block filter driver */
3715b5042a36SBenoît Canet 
3716b5042a36SBenoît Canet     /* If the block filter recursion method is defined use it to recurse down
3717b5042a36SBenoît Canet      * the node graph.
3718b5042a36SBenoît Canet      */
3719b5042a36SBenoît Canet     if (bs->drv->bdrv_recurse_is_first_non_filter) {
3720212a5a8fSBenoît Canet         return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
3721212a5a8fSBenoît Canet     }
3722212a5a8fSBenoît Canet 
3723b5042a36SBenoît Canet     /* the driver is a block filter but don't allow to recurse -> return false
3724b5042a36SBenoît Canet      */
3725b5042a36SBenoît Canet     return false;
3726212a5a8fSBenoît Canet }
3727212a5a8fSBenoît Canet 
3728212a5a8fSBenoît Canet /* This function checks if the candidate is the first non filter bs down it's
3729212a5a8fSBenoît Canet  * bs chain. Since we don't have pointers to parents it explore all bs chains
3730212a5a8fSBenoît Canet  * from the top. Some filters can choose not to pass down the recursion.
3731212a5a8fSBenoît Canet  */
3732212a5a8fSBenoît Canet bool bdrv_is_first_non_filter(BlockDriverState *candidate)
3733212a5a8fSBenoît Canet {
37347c8eece4SKevin Wolf     BlockDriverState *bs;
373588be7b4bSKevin Wolf     BdrvNextIterator it;
3736212a5a8fSBenoît Canet 
3737212a5a8fSBenoît Canet     /* walk down the bs forest recursively */
373888be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3739212a5a8fSBenoît Canet         bool perm;
3740212a5a8fSBenoît Canet 
3741b5042a36SBenoît Canet         /* try to recurse in this top level bs */
3742e6dc8a1fSKevin Wolf         perm = bdrv_recurse_is_first_non_filter(bs, candidate);
3743212a5a8fSBenoît Canet 
3744212a5a8fSBenoît Canet         /* candidate is the first non filter */
3745212a5a8fSBenoît Canet         if (perm) {
3746212a5a8fSBenoît Canet             return true;
3747212a5a8fSBenoît Canet         }
3748212a5a8fSBenoît Canet     }
3749212a5a8fSBenoît Canet 
3750212a5a8fSBenoît Canet     return false;
3751f6186f49SBenoît Canet }
375209158f00SBenoît Canet 
3753e12f3784SWen Congyang BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
3754e12f3784SWen Congyang                                         const char *node_name, Error **errp)
375509158f00SBenoît Canet {
375609158f00SBenoît Canet     BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
37575a7e7a0bSStefan Hajnoczi     AioContext *aio_context;
37585a7e7a0bSStefan Hajnoczi 
375909158f00SBenoît Canet     if (!to_replace_bs) {
376009158f00SBenoît Canet         error_setg(errp, "Node name '%s' not found", node_name);
376109158f00SBenoît Canet         return NULL;
376209158f00SBenoît Canet     }
376309158f00SBenoît Canet 
37645a7e7a0bSStefan Hajnoczi     aio_context = bdrv_get_aio_context(to_replace_bs);
37655a7e7a0bSStefan Hajnoczi     aio_context_acquire(aio_context);
37665a7e7a0bSStefan Hajnoczi 
376709158f00SBenoît Canet     if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
37685a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
37695a7e7a0bSStefan Hajnoczi         goto out;
377009158f00SBenoît Canet     }
377109158f00SBenoît Canet 
377209158f00SBenoît Canet     /* We don't want arbitrary node of the BDS chain to be replaced only the top
377309158f00SBenoît Canet      * most non filter in order to prevent data corruption.
377409158f00SBenoît Canet      * Another benefit is that this tests exclude backing files which are
377509158f00SBenoît Canet      * blocked by the backing blockers.
377609158f00SBenoît Canet      */
3777e12f3784SWen Congyang     if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
377809158f00SBenoît Canet         error_setg(errp, "Only top most non filter can be replaced");
37795a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
37805a7e7a0bSStefan Hajnoczi         goto out;
378109158f00SBenoît Canet     }
378209158f00SBenoît Canet 
37835a7e7a0bSStefan Hajnoczi out:
37845a7e7a0bSStefan Hajnoczi     aio_context_release(aio_context);
378509158f00SBenoît Canet     return to_replace_bs;
378609158f00SBenoît Canet }
3787448ad91dSMing Lei 
378891af7014SMax Reitz static bool append_open_options(QDict *d, BlockDriverState *bs)
378991af7014SMax Reitz {
379091af7014SMax Reitz     const QDictEntry *entry;
37919e700c1aSKevin Wolf     QemuOptDesc *desc;
3792260fecf1SKevin Wolf     BdrvChild *child;
379391af7014SMax Reitz     bool found_any = false;
3794260fecf1SKevin Wolf     const char *p;
379591af7014SMax Reitz 
379691af7014SMax Reitz     for (entry = qdict_first(bs->options); entry;
379791af7014SMax Reitz          entry = qdict_next(bs->options, entry))
379891af7014SMax Reitz     {
3799260fecf1SKevin Wolf         /* Exclude options for children */
3800260fecf1SKevin Wolf         QLIST_FOREACH(child, &bs->children, next) {
3801260fecf1SKevin Wolf             if (strstart(qdict_entry_key(entry), child->name, &p)
3802260fecf1SKevin Wolf                 && (!*p || *p == '.'))
3803260fecf1SKevin Wolf             {
3804260fecf1SKevin Wolf                 break;
3805260fecf1SKevin Wolf             }
3806260fecf1SKevin Wolf         }
3807260fecf1SKevin Wolf         if (child) {
38089e700c1aSKevin Wolf             continue;
38099e700c1aSKevin Wolf         }
38109e700c1aSKevin Wolf 
38119e700c1aSKevin Wolf         /* And exclude all non-driver-specific options */
38129e700c1aSKevin Wolf         for (desc = bdrv_runtime_opts.desc; desc->name; desc++) {
38139e700c1aSKevin Wolf             if (!strcmp(qdict_entry_key(entry), desc->name)) {
38149e700c1aSKevin Wolf                 break;
38159e700c1aSKevin Wolf             }
38169e700c1aSKevin Wolf         }
38179e700c1aSKevin Wolf         if (desc->name) {
38189e700c1aSKevin Wolf             continue;
38199e700c1aSKevin Wolf         }
38209e700c1aSKevin Wolf 
382191af7014SMax Reitz         qobject_incref(qdict_entry_value(entry));
382291af7014SMax Reitz         qdict_put_obj(d, qdict_entry_key(entry), qdict_entry_value(entry));
382391af7014SMax Reitz         found_any = true;
382491af7014SMax Reitz     }
382591af7014SMax Reitz 
382691af7014SMax Reitz     return found_any;
382791af7014SMax Reitz }
382891af7014SMax Reitz 
382991af7014SMax Reitz /* Updates the following BDS fields:
383091af7014SMax Reitz  *  - exact_filename: A filename which may be used for opening a block device
383191af7014SMax Reitz  *                    which (mostly) equals the given BDS (even without any
383291af7014SMax Reitz  *                    other options; so reading and writing must return the same
383391af7014SMax Reitz  *                    results, but caching etc. may be different)
383491af7014SMax Reitz  *  - full_open_options: Options which, when given when opening a block device
383591af7014SMax Reitz  *                       (without a filename), result in a BDS (mostly)
383691af7014SMax Reitz  *                       equalling the given one
383791af7014SMax Reitz  *  - filename: If exact_filename is set, it is copied here. Otherwise,
383891af7014SMax Reitz  *              full_open_options is converted to a JSON object, prefixed with
383991af7014SMax Reitz  *              "json:" (for use through the JSON pseudo protocol) and put here.
384091af7014SMax Reitz  */
384191af7014SMax Reitz void bdrv_refresh_filename(BlockDriverState *bs)
384291af7014SMax Reitz {
384391af7014SMax Reitz     BlockDriver *drv = bs->drv;
384491af7014SMax Reitz     QDict *opts;
384591af7014SMax Reitz 
384691af7014SMax Reitz     if (!drv) {
384791af7014SMax Reitz         return;
384891af7014SMax Reitz     }
384991af7014SMax Reitz 
385091af7014SMax Reitz     /* This BDS's file name will most probably depend on its file's name, so
385191af7014SMax Reitz      * refresh that first */
385291af7014SMax Reitz     if (bs->file) {
38539a4f4c31SKevin Wolf         bdrv_refresh_filename(bs->file->bs);
385491af7014SMax Reitz     }
385591af7014SMax Reitz 
385691af7014SMax Reitz     if (drv->bdrv_refresh_filename) {
385791af7014SMax Reitz         /* Obsolete information is of no use here, so drop the old file name
385891af7014SMax Reitz          * information before refreshing it */
385991af7014SMax Reitz         bs->exact_filename[0] = '\0';
386091af7014SMax Reitz         if (bs->full_open_options) {
386191af7014SMax Reitz             QDECREF(bs->full_open_options);
386291af7014SMax Reitz             bs->full_open_options = NULL;
386391af7014SMax Reitz         }
386491af7014SMax Reitz 
38654cdd01d3SKevin Wolf         opts = qdict_new();
38664cdd01d3SKevin Wolf         append_open_options(opts, bs);
38674cdd01d3SKevin Wolf         drv->bdrv_refresh_filename(bs, opts);
38684cdd01d3SKevin Wolf         QDECREF(opts);
386991af7014SMax Reitz     } else if (bs->file) {
387091af7014SMax Reitz         /* Try to reconstruct valid information from the underlying file */
387191af7014SMax Reitz         bool has_open_options;
387291af7014SMax Reitz 
387391af7014SMax Reitz         bs->exact_filename[0] = '\0';
387491af7014SMax Reitz         if (bs->full_open_options) {
387591af7014SMax Reitz             QDECREF(bs->full_open_options);
387691af7014SMax Reitz             bs->full_open_options = NULL;
387791af7014SMax Reitz         }
387891af7014SMax Reitz 
387991af7014SMax Reitz         opts = qdict_new();
388091af7014SMax Reitz         has_open_options = append_open_options(opts, bs);
388191af7014SMax Reitz 
388291af7014SMax Reitz         /* If no specific options have been given for this BDS, the filename of
388391af7014SMax Reitz          * the underlying file should suffice for this one as well */
38849a4f4c31SKevin Wolf         if (bs->file->bs->exact_filename[0] && !has_open_options) {
38859a4f4c31SKevin Wolf             strcpy(bs->exact_filename, bs->file->bs->exact_filename);
388691af7014SMax Reitz         }
388791af7014SMax Reitz         /* Reconstructing the full options QDict is simple for most format block
388891af7014SMax Reitz          * drivers, as long as the full options are known for the underlying
388991af7014SMax Reitz          * file BDS. The full options QDict of that file BDS should somehow
389091af7014SMax Reitz          * contain a representation of the filename, therefore the following
389191af7014SMax Reitz          * suffices without querying the (exact_)filename of this BDS. */
38929a4f4c31SKevin Wolf         if (bs->file->bs->full_open_options) {
389391af7014SMax Reitz             qdict_put_obj(opts, "driver",
389491af7014SMax Reitz                           QOBJECT(qstring_from_str(drv->format_name)));
38959a4f4c31SKevin Wolf             QINCREF(bs->file->bs->full_open_options);
38969a4f4c31SKevin Wolf             qdict_put_obj(opts, "file",
38979a4f4c31SKevin Wolf                           QOBJECT(bs->file->bs->full_open_options));
389891af7014SMax Reitz 
389991af7014SMax Reitz             bs->full_open_options = opts;
390091af7014SMax Reitz         } else {
390191af7014SMax Reitz             QDECREF(opts);
390291af7014SMax Reitz         }
390391af7014SMax Reitz     } else if (!bs->full_open_options && qdict_size(bs->options)) {
390491af7014SMax Reitz         /* There is no underlying file BDS (at least referenced by BDS.file),
390591af7014SMax Reitz          * so the full options QDict should be equal to the options given
390691af7014SMax Reitz          * specifically for this block device when it was opened (plus the
390791af7014SMax Reitz          * driver specification).
390891af7014SMax Reitz          * Because those options don't change, there is no need to update
390991af7014SMax Reitz          * full_open_options when it's already set. */
391091af7014SMax Reitz 
391191af7014SMax Reitz         opts = qdict_new();
391291af7014SMax Reitz         append_open_options(opts, bs);
391391af7014SMax Reitz         qdict_put_obj(opts, "driver",
391491af7014SMax Reitz                       QOBJECT(qstring_from_str(drv->format_name)));
391591af7014SMax Reitz 
391691af7014SMax Reitz         if (bs->exact_filename[0]) {
391791af7014SMax Reitz             /* This may not work for all block protocol drivers (some may
391891af7014SMax Reitz              * require this filename to be parsed), but we have to find some
391991af7014SMax Reitz              * default solution here, so just include it. If some block driver
392091af7014SMax Reitz              * does not support pure options without any filename at all or
392191af7014SMax Reitz              * needs some special format of the options QDict, it needs to
392291af7014SMax Reitz              * implement the driver-specific bdrv_refresh_filename() function.
392391af7014SMax Reitz              */
392491af7014SMax Reitz             qdict_put_obj(opts, "filename",
392591af7014SMax Reitz                           QOBJECT(qstring_from_str(bs->exact_filename)));
392691af7014SMax Reitz         }
392791af7014SMax Reitz 
392891af7014SMax Reitz         bs->full_open_options = opts;
392991af7014SMax Reitz     }
393091af7014SMax Reitz 
393191af7014SMax Reitz     if (bs->exact_filename[0]) {
393291af7014SMax Reitz         pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
393391af7014SMax Reitz     } else if (bs->full_open_options) {
393491af7014SMax Reitz         QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
393591af7014SMax Reitz         snprintf(bs->filename, sizeof(bs->filename), "json:%s",
393691af7014SMax Reitz                  qstring_get_str(json));
393791af7014SMax Reitz         QDECREF(json);
393891af7014SMax Reitz     }
393991af7014SMax Reitz }
3940e06018adSWen Congyang 
3941e06018adSWen Congyang /*
3942e06018adSWen Congyang  * Hot add/remove a BDS's child. So the user can take a child offline when
3943e06018adSWen Congyang  * it is broken and take a new child online
3944e06018adSWen Congyang  */
3945e06018adSWen Congyang void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
3946e06018adSWen Congyang                     Error **errp)
3947e06018adSWen Congyang {
3948e06018adSWen Congyang 
3949e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
3950e06018adSWen Congyang         error_setg(errp, "The node %s does not support adding a child",
3951e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
3952e06018adSWen Congyang         return;
3953e06018adSWen Congyang     }
3954e06018adSWen Congyang 
3955e06018adSWen Congyang     if (!QLIST_EMPTY(&child_bs->parents)) {
3956e06018adSWen Congyang         error_setg(errp, "The node %s already has a parent",
3957e06018adSWen Congyang                    child_bs->node_name);
3958e06018adSWen Congyang         return;
3959e06018adSWen Congyang     }
3960e06018adSWen Congyang 
3961e06018adSWen Congyang     parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
3962e06018adSWen Congyang }
3963e06018adSWen Congyang 
3964e06018adSWen Congyang void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
3965e06018adSWen Congyang {
3966e06018adSWen Congyang     BdrvChild *tmp;
3967e06018adSWen Congyang 
3968e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
3969e06018adSWen Congyang         error_setg(errp, "The node %s does not support removing a child",
3970e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
3971e06018adSWen Congyang         return;
3972e06018adSWen Congyang     }
3973e06018adSWen Congyang 
3974e06018adSWen Congyang     QLIST_FOREACH(tmp, &parent_bs->children, next) {
3975e06018adSWen Congyang         if (tmp == child) {
3976e06018adSWen Congyang             break;
3977e06018adSWen Congyang         }
3978e06018adSWen Congyang     }
3979e06018adSWen Congyang 
3980e06018adSWen Congyang     if (!tmp) {
3981e06018adSWen Congyang         error_setg(errp, "The node %s does not have a child named %s",
3982e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs),
3983e06018adSWen Congyang                    bdrv_get_device_or_node_name(child->bs));
3984e06018adSWen Congyang         return;
3985e06018adSWen Congyang     }
3986e06018adSWen Congyang 
3987e06018adSWen Congyang     parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
3988e06018adSWen Congyang }
3989