xref: /openbmc/qemu/block.c (revision 3ff2f67a7c24183fcbcfe1332e5223ac6f96438c)
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"
28d49b6836SMarkus Armbruster #include "qemu/error-report.h"
291de7afc9SPaolo Bonzini #include "qemu/module.h"
30cc7a8ea7SMarkus Armbruster #include "qapi/qmp/qerror.h"
3191a097e7SKevin Wolf #include "qapi/qmp/qbool.h"
327b1b5d19SPaolo Bonzini #include "qapi/qmp/qjson.h"
33bfb197e0SMarkus Armbruster #include "sysemu/block-backend.h"
349c17d615SPaolo Bonzini #include "sysemu/sysemu.h"
351de7afc9SPaolo Bonzini #include "qemu/notify.h"
3610817bf0SDaniel P. Berrange #include "qemu/coroutine.h"
37c13163fbSBenoît Canet #include "block/qapi.h"
38b2023818SLuiz Capitulino #include "qmp-commands.h"
391de7afc9SPaolo Bonzini #include "qemu/timer.h"
40a5ee7bd4SWenchao Xia #include "qapi-event.h"
41f348b6d1SVeronia Bahaa #include "qemu/cutils.h"
42f348b6d1SVeronia Bahaa #include "qemu/id.h"
43fc01f7e7Sbellard 
4471e72a19SJuan Quintela #ifdef CONFIG_BSD
457674e7bfSbellard #include <sys/ioctl.h>
4672cf2d4fSBlue Swirl #include <sys/queue.h>
47c5e97233Sblueswir1 #ifndef __DragonFly__
487674e7bfSbellard #include <sys/disk.h>
497674e7bfSbellard #endif
50c5e97233Sblueswir1 #endif
517674e7bfSbellard 
5249dc768dSaliguori #ifdef _WIN32
5349dc768dSaliguori #include <windows.h>
5449dc768dSaliguori #endif
5549dc768dSaliguori 
561c9805a3SStefan Hajnoczi #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
571c9805a3SStefan Hajnoczi 
58dc364f4cSBenoît Canet static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
59dc364f4cSBenoît Canet     QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
60dc364f4cSBenoît Canet 
612c1d04e0SMax Reitz static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
622c1d04e0SMax Reitz     QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
632c1d04e0SMax Reitz 
648a22f02aSStefan Hajnoczi static QLIST_HEAD(, BlockDriver) bdrv_drivers =
658a22f02aSStefan Hajnoczi     QLIST_HEAD_INITIALIZER(bdrv_drivers);
66ea2384d3Sbellard 
675b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
685b363937SMax Reitz                                            const char *reference,
695b363937SMax Reitz                                            QDict *options, int flags,
70f3930ed0SKevin Wolf                                            BlockDriverState *parent,
715b363937SMax Reitz                                            const BdrvChildRole *child_role,
725b363937SMax Reitz                                            Error **errp);
73f3930ed0SKevin Wolf 
74eb852011SMarkus Armbruster /* If non-zero, use only whitelisted block drivers */
75eb852011SMarkus Armbruster static int use_bdrv_whitelist;
76eb852011SMarkus Armbruster 
779e0b22f4SStefan Hajnoczi #ifdef _WIN32
789e0b22f4SStefan Hajnoczi static int is_windows_drive_prefix(const char *filename)
799e0b22f4SStefan Hajnoczi {
809e0b22f4SStefan Hajnoczi     return (((filename[0] >= 'a' && filename[0] <= 'z') ||
819e0b22f4SStefan Hajnoczi              (filename[0] >= 'A' && filename[0] <= 'Z')) &&
829e0b22f4SStefan Hajnoczi             filename[1] == ':');
839e0b22f4SStefan Hajnoczi }
849e0b22f4SStefan Hajnoczi 
859e0b22f4SStefan Hajnoczi int is_windows_drive(const char *filename)
869e0b22f4SStefan Hajnoczi {
879e0b22f4SStefan Hajnoczi     if (is_windows_drive_prefix(filename) &&
889e0b22f4SStefan Hajnoczi         filename[2] == '\0')
899e0b22f4SStefan Hajnoczi         return 1;
909e0b22f4SStefan Hajnoczi     if (strstart(filename, "\\\\.\\", NULL) ||
919e0b22f4SStefan Hajnoczi         strstart(filename, "//./", NULL))
929e0b22f4SStefan Hajnoczi         return 1;
939e0b22f4SStefan Hajnoczi     return 0;
949e0b22f4SStefan Hajnoczi }
959e0b22f4SStefan Hajnoczi #endif
969e0b22f4SStefan Hajnoczi 
97339064d5SKevin Wolf size_t bdrv_opt_mem_align(BlockDriverState *bs)
98339064d5SKevin Wolf {
99339064d5SKevin Wolf     if (!bs || !bs->drv) {
100459b4e66SDenis V. Lunev         /* page size or 4k (hdd sector size) should be on the safe side */
101459b4e66SDenis V. Lunev         return MAX(4096, getpagesize());
102339064d5SKevin Wolf     }
103339064d5SKevin Wolf 
104339064d5SKevin Wolf     return bs->bl.opt_mem_alignment;
105339064d5SKevin Wolf }
106339064d5SKevin Wolf 
1074196d2f0SDenis V. Lunev size_t bdrv_min_mem_align(BlockDriverState *bs)
1084196d2f0SDenis V. Lunev {
1094196d2f0SDenis V. Lunev     if (!bs || !bs->drv) {
110459b4e66SDenis V. Lunev         /* page size or 4k (hdd sector size) should be on the safe side */
111459b4e66SDenis V. Lunev         return MAX(4096, getpagesize());
1124196d2f0SDenis V. Lunev     }
1134196d2f0SDenis V. Lunev 
1144196d2f0SDenis V. Lunev     return bs->bl.min_mem_alignment;
1154196d2f0SDenis V. Lunev }
1164196d2f0SDenis V. Lunev 
1179e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */
1185c98415bSMax Reitz int path_has_protocol(const char *path)
1199e0b22f4SStefan Hajnoczi {
120947995c0SPaolo Bonzini     const char *p;
121947995c0SPaolo Bonzini 
1229e0b22f4SStefan Hajnoczi #ifdef _WIN32
1239e0b22f4SStefan Hajnoczi     if (is_windows_drive(path) ||
1249e0b22f4SStefan Hajnoczi         is_windows_drive_prefix(path)) {
1259e0b22f4SStefan Hajnoczi         return 0;
1269e0b22f4SStefan Hajnoczi     }
127947995c0SPaolo Bonzini     p = path + strcspn(path, ":/\\");
128947995c0SPaolo Bonzini #else
129947995c0SPaolo Bonzini     p = path + strcspn(path, ":/");
1309e0b22f4SStefan Hajnoczi #endif
1319e0b22f4SStefan Hajnoczi 
132947995c0SPaolo Bonzini     return *p == ':';
1339e0b22f4SStefan Hajnoczi }
1349e0b22f4SStefan Hajnoczi 
13583f64091Sbellard int path_is_absolute(const char *path)
13683f64091Sbellard {
13721664424Sbellard #ifdef _WIN32
13821664424Sbellard     /* specific case for names like: "\\.\d:" */
139f53f4da9SPaolo Bonzini     if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
14021664424Sbellard         return 1;
141f53f4da9SPaolo Bonzini     }
142f53f4da9SPaolo Bonzini     return (*path == '/' || *path == '\\');
1433b9f94e1Sbellard #else
144f53f4da9SPaolo Bonzini     return (*path == '/');
1453b9f94e1Sbellard #endif
14683f64091Sbellard }
14783f64091Sbellard 
14883f64091Sbellard /* if filename is absolute, just copy it to dest. Otherwise, build a
14983f64091Sbellard    path to it by considering it is relative to base_path. URL are
15083f64091Sbellard    supported. */
15183f64091Sbellard void path_combine(char *dest, int dest_size,
15283f64091Sbellard                   const char *base_path,
15383f64091Sbellard                   const char *filename)
15483f64091Sbellard {
15583f64091Sbellard     const char *p, *p1;
15683f64091Sbellard     int len;
15783f64091Sbellard 
15883f64091Sbellard     if (dest_size <= 0)
15983f64091Sbellard         return;
16083f64091Sbellard     if (path_is_absolute(filename)) {
16183f64091Sbellard         pstrcpy(dest, dest_size, filename);
16283f64091Sbellard     } else {
16383f64091Sbellard         p = strchr(base_path, ':');
16483f64091Sbellard         if (p)
16583f64091Sbellard             p++;
16683f64091Sbellard         else
16783f64091Sbellard             p = base_path;
1683b9f94e1Sbellard         p1 = strrchr(base_path, '/');
1693b9f94e1Sbellard #ifdef _WIN32
1703b9f94e1Sbellard         {
1713b9f94e1Sbellard             const char *p2;
1723b9f94e1Sbellard             p2 = strrchr(base_path, '\\');
1733b9f94e1Sbellard             if (!p1 || p2 > p1)
1743b9f94e1Sbellard                 p1 = p2;
1753b9f94e1Sbellard         }
1763b9f94e1Sbellard #endif
17783f64091Sbellard         if (p1)
17883f64091Sbellard             p1++;
17983f64091Sbellard         else
18083f64091Sbellard             p1 = base_path;
18183f64091Sbellard         if (p1 > p)
18283f64091Sbellard             p = p1;
18383f64091Sbellard         len = p - base_path;
18483f64091Sbellard         if (len > dest_size - 1)
18583f64091Sbellard             len = dest_size - 1;
18683f64091Sbellard         memcpy(dest, base_path, len);
18783f64091Sbellard         dest[len] = '\0';
18883f64091Sbellard         pstrcat(dest, dest_size, filename);
18983f64091Sbellard     }
19083f64091Sbellard }
19183f64091Sbellard 
1920a82855aSMax Reitz void bdrv_get_full_backing_filename_from_filename(const char *backed,
1930a82855aSMax Reitz                                                   const char *backing,
1949f07429eSMax Reitz                                                   char *dest, size_t sz,
1959f07429eSMax Reitz                                                   Error **errp)
1960a82855aSMax Reitz {
1979f07429eSMax Reitz     if (backing[0] == '\0' || path_has_protocol(backing) ||
1989f07429eSMax Reitz         path_is_absolute(backing))
1999f07429eSMax Reitz     {
2000a82855aSMax Reitz         pstrcpy(dest, sz, backing);
2019f07429eSMax Reitz     } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
2029f07429eSMax Reitz         error_setg(errp, "Cannot use relative backing file names for '%s'",
2039f07429eSMax Reitz                    backed);
2040a82855aSMax Reitz     } else {
2050a82855aSMax Reitz         path_combine(dest, sz, backed, backing);
2060a82855aSMax Reitz     }
2070a82855aSMax Reitz }
2080a82855aSMax Reitz 
2099f07429eSMax Reitz void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz,
2109f07429eSMax Reitz                                     Error **errp)
211dc5a1371SPaolo Bonzini {
2129f07429eSMax Reitz     char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename;
2139f07429eSMax Reitz 
2149f07429eSMax Reitz     bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file,
2159f07429eSMax Reitz                                                  dest, sz, errp);
216dc5a1371SPaolo Bonzini }
217dc5a1371SPaolo Bonzini 
2180eb7217eSStefan Hajnoczi void bdrv_register(BlockDriver *bdrv)
2190eb7217eSStefan Hajnoczi {
2208a22f02aSStefan Hajnoczi     QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
221ea2384d3Sbellard }
222b338082bSbellard 
223e4e9986bSMarkus Armbruster BlockDriverState *bdrv_new(void)
224e4e9986bSMarkus Armbruster {
225e4e9986bSMarkus Armbruster     BlockDriverState *bs;
226e4e9986bSMarkus Armbruster     int i;
227e4e9986bSMarkus Armbruster 
2285839e53bSMarkus Armbruster     bs = g_new0(BlockDriverState, 1);
229e4654d2dSFam Zheng     QLIST_INIT(&bs->dirty_bitmaps);
230fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
231fbe40ff7SFam Zheng         QLIST_INIT(&bs->op_blockers[i]);
232fbe40ff7SFam Zheng     }
233d616b224SStefan Hajnoczi     notifier_with_return_list_init(&bs->before_write_notifiers);
2349fcb0251SFam Zheng     bs->refcnt = 1;
235dcd04228SStefan Hajnoczi     bs->aio_context = qemu_get_aio_context();
236d7d512f6SPaolo Bonzini 
237*3ff2f67aSEvgeny Yakovlev     qemu_co_queue_init(&bs->flush_queue);
238*3ff2f67aSEvgeny Yakovlev 
2392c1d04e0SMax Reitz     QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
2402c1d04e0SMax Reitz 
241b338082bSbellard     return bs;
242b338082bSbellard }
243b338082bSbellard 
244ea2384d3Sbellard BlockDriver *bdrv_find_format(const char *format_name)
245ea2384d3Sbellard {
246ea2384d3Sbellard     BlockDriver *drv1;
2478a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
2488a22f02aSStefan Hajnoczi         if (!strcmp(drv1->format_name, format_name)) {
249ea2384d3Sbellard             return drv1;
250ea2384d3Sbellard         }
2518a22f02aSStefan Hajnoczi     }
252ea2384d3Sbellard     return NULL;
253ea2384d3Sbellard }
254ea2384d3Sbellard 
255b64ec4e4SFam Zheng static int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
256eb852011SMarkus Armbruster {
257b64ec4e4SFam Zheng     static const char *whitelist_rw[] = {
258b64ec4e4SFam Zheng         CONFIG_BDRV_RW_WHITELIST
259b64ec4e4SFam Zheng     };
260b64ec4e4SFam Zheng     static const char *whitelist_ro[] = {
261b64ec4e4SFam Zheng         CONFIG_BDRV_RO_WHITELIST
262eb852011SMarkus Armbruster     };
263eb852011SMarkus Armbruster     const char **p;
264eb852011SMarkus Armbruster 
265b64ec4e4SFam Zheng     if (!whitelist_rw[0] && !whitelist_ro[0]) {
266eb852011SMarkus Armbruster         return 1;               /* no whitelist, anything goes */
267b64ec4e4SFam Zheng     }
268eb852011SMarkus Armbruster 
269b64ec4e4SFam Zheng     for (p = whitelist_rw; *p; p++) {
270eb852011SMarkus Armbruster         if (!strcmp(drv->format_name, *p)) {
271eb852011SMarkus Armbruster             return 1;
272eb852011SMarkus Armbruster         }
273eb852011SMarkus Armbruster     }
274b64ec4e4SFam Zheng     if (read_only) {
275b64ec4e4SFam Zheng         for (p = whitelist_ro; *p; p++) {
276b64ec4e4SFam Zheng             if (!strcmp(drv->format_name, *p)) {
277b64ec4e4SFam Zheng                 return 1;
278b64ec4e4SFam Zheng             }
279b64ec4e4SFam Zheng         }
280b64ec4e4SFam Zheng     }
281eb852011SMarkus Armbruster     return 0;
282eb852011SMarkus Armbruster }
283eb852011SMarkus Armbruster 
284e6ff69bfSDaniel P. Berrange bool bdrv_uses_whitelist(void)
285e6ff69bfSDaniel P. Berrange {
286e6ff69bfSDaniel P. Berrange     return use_bdrv_whitelist;
287e6ff69bfSDaniel P. Berrange }
288e6ff69bfSDaniel P. Berrange 
2895b7e1542SZhi Yong Wu typedef struct CreateCo {
2905b7e1542SZhi Yong Wu     BlockDriver *drv;
2915b7e1542SZhi Yong Wu     char *filename;
29283d0521aSChunyan Liu     QemuOpts *opts;
2935b7e1542SZhi Yong Wu     int ret;
294cc84d90fSMax Reitz     Error *err;
2955b7e1542SZhi Yong Wu } CreateCo;
2965b7e1542SZhi Yong Wu 
2975b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque)
2985b7e1542SZhi Yong Wu {
299cc84d90fSMax Reitz     Error *local_err = NULL;
300cc84d90fSMax Reitz     int ret;
301cc84d90fSMax Reitz 
3025b7e1542SZhi Yong Wu     CreateCo *cco = opaque;
3035b7e1542SZhi Yong Wu     assert(cco->drv);
3045b7e1542SZhi Yong Wu 
305c282e1fdSChunyan Liu     ret = cco->drv->bdrv_create(cco->filename, cco->opts, &local_err);
306cc84d90fSMax Reitz     error_propagate(&cco->err, local_err);
307cc84d90fSMax Reitz     cco->ret = ret;
3085b7e1542SZhi Yong Wu }
3095b7e1542SZhi Yong Wu 
3100e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename,
31183d0521aSChunyan Liu                 QemuOpts *opts, Error **errp)
312ea2384d3Sbellard {
3135b7e1542SZhi Yong Wu     int ret;
3140e7e1989SKevin Wolf 
3155b7e1542SZhi Yong Wu     Coroutine *co;
3165b7e1542SZhi Yong Wu     CreateCo cco = {
3175b7e1542SZhi Yong Wu         .drv = drv,
3185b7e1542SZhi Yong Wu         .filename = g_strdup(filename),
31983d0521aSChunyan Liu         .opts = opts,
3205b7e1542SZhi Yong Wu         .ret = NOT_DONE,
321cc84d90fSMax Reitz         .err = NULL,
3225b7e1542SZhi Yong Wu     };
3235b7e1542SZhi Yong Wu 
324c282e1fdSChunyan Liu     if (!drv->bdrv_create) {
325cc84d90fSMax Reitz         error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
32680168bffSLuiz Capitulino         ret = -ENOTSUP;
32780168bffSLuiz Capitulino         goto out;
3285b7e1542SZhi Yong Wu     }
3295b7e1542SZhi Yong Wu 
3305b7e1542SZhi Yong Wu     if (qemu_in_coroutine()) {
3315b7e1542SZhi Yong Wu         /* Fast-path if already in coroutine context */
3325b7e1542SZhi Yong Wu         bdrv_create_co_entry(&cco);
3335b7e1542SZhi Yong Wu     } else {
3340b8b8753SPaolo Bonzini         co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
3350b8b8753SPaolo Bonzini         qemu_coroutine_enter(co);
3365b7e1542SZhi Yong Wu         while (cco.ret == NOT_DONE) {
337b47ec2c4SPaolo Bonzini             aio_poll(qemu_get_aio_context(), true);
3385b7e1542SZhi Yong Wu         }
3395b7e1542SZhi Yong Wu     }
3405b7e1542SZhi Yong Wu 
3415b7e1542SZhi Yong Wu     ret = cco.ret;
342cc84d90fSMax Reitz     if (ret < 0) {
34384d18f06SMarkus Armbruster         if (cco.err) {
344cc84d90fSMax Reitz             error_propagate(errp, cco.err);
345cc84d90fSMax Reitz         } else {
346cc84d90fSMax Reitz             error_setg_errno(errp, -ret, "Could not create image");
347cc84d90fSMax Reitz         }
348cc84d90fSMax Reitz     }
3495b7e1542SZhi Yong Wu 
35080168bffSLuiz Capitulino out:
35180168bffSLuiz Capitulino     g_free(cco.filename);
3525b7e1542SZhi Yong Wu     return ret;
353ea2384d3Sbellard }
354ea2384d3Sbellard 
355c282e1fdSChunyan Liu int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
35684a12e66SChristoph Hellwig {
35784a12e66SChristoph Hellwig     BlockDriver *drv;
358cc84d90fSMax Reitz     Error *local_err = NULL;
359cc84d90fSMax Reitz     int ret;
36084a12e66SChristoph Hellwig 
361b65a5e12SMax Reitz     drv = bdrv_find_protocol(filename, true, errp);
36284a12e66SChristoph Hellwig     if (drv == NULL) {
36316905d71SStefan Hajnoczi         return -ENOENT;
36484a12e66SChristoph Hellwig     }
36584a12e66SChristoph Hellwig 
366c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
367cc84d90fSMax Reitz     error_propagate(errp, local_err);
368cc84d90fSMax Reitz     return ret;
36984a12e66SChristoph Hellwig }
37084a12e66SChristoph Hellwig 
371892b7de8SEkaterina Tumanova /**
372892b7de8SEkaterina Tumanova  * Try to get @bs's logical and physical block size.
373892b7de8SEkaterina Tumanova  * On success, store them in @bsz struct and return 0.
374892b7de8SEkaterina Tumanova  * On failure return -errno.
375892b7de8SEkaterina Tumanova  * @bs must not be empty.
376892b7de8SEkaterina Tumanova  */
377892b7de8SEkaterina Tumanova int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
378892b7de8SEkaterina Tumanova {
379892b7de8SEkaterina Tumanova     BlockDriver *drv = bs->drv;
380892b7de8SEkaterina Tumanova 
381892b7de8SEkaterina Tumanova     if (drv && drv->bdrv_probe_blocksizes) {
382892b7de8SEkaterina Tumanova         return drv->bdrv_probe_blocksizes(bs, bsz);
383892b7de8SEkaterina Tumanova     }
384892b7de8SEkaterina Tumanova 
385892b7de8SEkaterina Tumanova     return -ENOTSUP;
386892b7de8SEkaterina Tumanova }
387892b7de8SEkaterina Tumanova 
388892b7de8SEkaterina Tumanova /**
389892b7de8SEkaterina Tumanova  * Try to get @bs's geometry (cyls, heads, sectors).
390892b7de8SEkaterina Tumanova  * On success, store them in @geo struct and return 0.
391892b7de8SEkaterina Tumanova  * On failure return -errno.
392892b7de8SEkaterina Tumanova  * @bs must not be empty.
393892b7de8SEkaterina Tumanova  */
394892b7de8SEkaterina Tumanova int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
395892b7de8SEkaterina Tumanova {
396892b7de8SEkaterina Tumanova     BlockDriver *drv = bs->drv;
397892b7de8SEkaterina Tumanova 
398892b7de8SEkaterina Tumanova     if (drv && drv->bdrv_probe_geometry) {
399892b7de8SEkaterina Tumanova         return drv->bdrv_probe_geometry(bs, geo);
400892b7de8SEkaterina Tumanova     }
401892b7de8SEkaterina Tumanova 
402892b7de8SEkaterina Tumanova     return -ENOTSUP;
403892b7de8SEkaterina Tumanova }
404892b7de8SEkaterina Tumanova 
405eba25057SJim Meyering /*
406eba25057SJim Meyering  * Create a uniquely-named empty temporary file.
407eba25057SJim Meyering  * Return 0 upon success, otherwise a negative errno value.
408eba25057SJim Meyering  */
409eba25057SJim Meyering int get_tmp_filename(char *filename, int size)
410eba25057SJim Meyering {
411d5249393Sbellard #ifdef _WIN32
4123b9f94e1Sbellard     char temp_dir[MAX_PATH];
413eba25057SJim Meyering     /* GetTempFileName requires that its output buffer (4th param)
414eba25057SJim Meyering        have length MAX_PATH or greater.  */
415eba25057SJim Meyering     assert(size >= MAX_PATH);
416eba25057SJim Meyering     return (GetTempPath(MAX_PATH, temp_dir)
417eba25057SJim Meyering             && GetTempFileName(temp_dir, "qem", 0, filename)
418eba25057SJim Meyering             ? 0 : -GetLastError());
419d5249393Sbellard #else
420ea2384d3Sbellard     int fd;
4217ccfb2ebSblueswir1     const char *tmpdir;
4220badc1eeSaurel32     tmpdir = getenv("TMPDIR");
42369bef793SAmit Shah     if (!tmpdir) {
42469bef793SAmit Shah         tmpdir = "/var/tmp";
42569bef793SAmit Shah     }
426eba25057SJim Meyering     if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
427eba25057SJim Meyering         return -EOVERFLOW;
428ea2384d3Sbellard     }
429eba25057SJim Meyering     fd = mkstemp(filename);
430fe235a06SDunrong Huang     if (fd < 0) {
431fe235a06SDunrong Huang         return -errno;
432fe235a06SDunrong Huang     }
433fe235a06SDunrong Huang     if (close(fd) != 0) {
434fe235a06SDunrong Huang         unlink(filename);
435eba25057SJim Meyering         return -errno;
436eba25057SJim Meyering     }
437eba25057SJim Meyering     return 0;
438d5249393Sbellard #endif
439eba25057SJim Meyering }
440ea2384d3Sbellard 
441f3a5d3f8SChristoph Hellwig /*
442f3a5d3f8SChristoph Hellwig  * Detect host devices. By convention, /dev/cdrom[N] is always
443f3a5d3f8SChristoph Hellwig  * recognized as a host CDROM.
444f3a5d3f8SChristoph Hellwig  */
445f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename)
446f3a5d3f8SChristoph Hellwig {
447508c7cb3SChristoph Hellwig     int score_max = 0, score;
448508c7cb3SChristoph Hellwig     BlockDriver *drv = NULL, *d;
449f3a5d3f8SChristoph Hellwig 
4508a22f02aSStefan Hajnoczi     QLIST_FOREACH(d, &bdrv_drivers, list) {
451508c7cb3SChristoph Hellwig         if (d->bdrv_probe_device) {
452508c7cb3SChristoph Hellwig             score = d->bdrv_probe_device(filename);
453508c7cb3SChristoph Hellwig             if (score > score_max) {
454508c7cb3SChristoph Hellwig                 score_max = score;
455508c7cb3SChristoph Hellwig                 drv = d;
456f3a5d3f8SChristoph Hellwig             }
457508c7cb3SChristoph Hellwig         }
458f3a5d3f8SChristoph Hellwig     }
459f3a5d3f8SChristoph Hellwig 
460508c7cb3SChristoph Hellwig     return drv;
461f3a5d3f8SChristoph Hellwig }
462f3a5d3f8SChristoph Hellwig 
46398289620SKevin Wolf BlockDriver *bdrv_find_protocol(const char *filename,
464b65a5e12SMax Reitz                                 bool allow_protocol_prefix,
465b65a5e12SMax Reitz                                 Error **errp)
46684a12e66SChristoph Hellwig {
46784a12e66SChristoph Hellwig     BlockDriver *drv1;
46884a12e66SChristoph Hellwig     char protocol[128];
46984a12e66SChristoph Hellwig     int len;
47084a12e66SChristoph Hellwig     const char *p;
47184a12e66SChristoph Hellwig 
47266f82ceeSKevin Wolf     /* TODO Drivers without bdrv_file_open must be specified explicitly */
47366f82ceeSKevin Wolf 
47439508e7aSChristoph Hellwig     /*
47539508e7aSChristoph Hellwig      * XXX(hch): we really should not let host device detection
47639508e7aSChristoph Hellwig      * override an explicit protocol specification, but moving this
47739508e7aSChristoph Hellwig      * later breaks access to device names with colons in them.
47839508e7aSChristoph Hellwig      * Thanks to the brain-dead persistent naming schemes on udev-
47939508e7aSChristoph Hellwig      * based Linux systems those actually are quite common.
48039508e7aSChristoph Hellwig      */
48184a12e66SChristoph Hellwig     drv1 = find_hdev_driver(filename);
48239508e7aSChristoph Hellwig     if (drv1) {
48384a12e66SChristoph Hellwig         return drv1;
48484a12e66SChristoph Hellwig     }
48539508e7aSChristoph Hellwig 
48698289620SKevin Wolf     if (!path_has_protocol(filename) || !allow_protocol_prefix) {
487ef810437SMax Reitz         return &bdrv_file;
48839508e7aSChristoph Hellwig     }
48998289620SKevin Wolf 
4909e0b22f4SStefan Hajnoczi     p = strchr(filename, ':');
4919e0b22f4SStefan Hajnoczi     assert(p != NULL);
49284a12e66SChristoph Hellwig     len = p - filename;
49384a12e66SChristoph Hellwig     if (len > sizeof(protocol) - 1)
49484a12e66SChristoph Hellwig         len = sizeof(protocol) - 1;
49584a12e66SChristoph Hellwig     memcpy(protocol, filename, len);
49684a12e66SChristoph Hellwig     protocol[len] = '\0';
49784a12e66SChristoph Hellwig     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
49884a12e66SChristoph Hellwig         if (drv1->protocol_name &&
49984a12e66SChristoph Hellwig             !strcmp(drv1->protocol_name, protocol)) {
50084a12e66SChristoph Hellwig             return drv1;
50184a12e66SChristoph Hellwig         }
50284a12e66SChristoph Hellwig     }
503b65a5e12SMax Reitz 
504b65a5e12SMax Reitz     error_setg(errp, "Unknown protocol '%s'", protocol);
50584a12e66SChristoph Hellwig     return NULL;
50684a12e66SChristoph Hellwig }
50784a12e66SChristoph Hellwig 
508c6684249SMarkus Armbruster /*
509c6684249SMarkus Armbruster  * Guess image format by probing its contents.
510c6684249SMarkus Armbruster  * This is not a good idea when your image is raw (CVE-2008-2004), but
511c6684249SMarkus Armbruster  * we do it anyway for backward compatibility.
512c6684249SMarkus Armbruster  *
513c6684249SMarkus Armbruster  * @buf         contains the image's first @buf_size bytes.
5147cddd372SKevin Wolf  * @buf_size    is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
5157cddd372SKevin Wolf  *              but can be smaller if the image file is smaller)
516c6684249SMarkus Armbruster  * @filename    is its filename.
517c6684249SMarkus Armbruster  *
518c6684249SMarkus Armbruster  * For all block drivers, call the bdrv_probe() method to get its
519c6684249SMarkus Armbruster  * probing score.
520c6684249SMarkus Armbruster  * Return the first block driver with the highest probing score.
521c6684249SMarkus Armbruster  */
52238f3ef57SKevin Wolf BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
523c6684249SMarkus Armbruster                             const char *filename)
524c6684249SMarkus Armbruster {
525c6684249SMarkus Armbruster     int score_max = 0, score;
526c6684249SMarkus Armbruster     BlockDriver *drv = NULL, *d;
527c6684249SMarkus Armbruster 
528c6684249SMarkus Armbruster     QLIST_FOREACH(d, &bdrv_drivers, list) {
529c6684249SMarkus Armbruster         if (d->bdrv_probe) {
530c6684249SMarkus Armbruster             score = d->bdrv_probe(buf, buf_size, filename);
531c6684249SMarkus Armbruster             if (score > score_max) {
532c6684249SMarkus Armbruster                 score_max = score;
533c6684249SMarkus Armbruster                 drv = d;
534c6684249SMarkus Armbruster             }
535c6684249SMarkus Armbruster         }
536c6684249SMarkus Armbruster     }
537c6684249SMarkus Armbruster 
538c6684249SMarkus Armbruster     return drv;
539c6684249SMarkus Armbruster }
540c6684249SMarkus Armbruster 
541cf2ab8fcSKevin Wolf static int find_image_format(BdrvChild *file, const char *filename,
54234b5d2c6SMax Reitz                              BlockDriver **pdrv, Error **errp)
543ea2384d3Sbellard {
544cf2ab8fcSKevin Wolf     BlockDriverState *bs = file->bs;
545c6684249SMarkus Armbruster     BlockDriver *drv;
5467cddd372SKevin Wolf     uint8_t buf[BLOCK_PROBE_BUF_SIZE];
547f500a6d3SKevin Wolf     int ret = 0;
548f8ea0b00SNicholas Bellinger 
54908a00559SKevin Wolf     /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
550b192af8aSDimitris Aragiorgis     if (bdrv_is_sg(bs) || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) {
551ef810437SMax Reitz         *pdrv = &bdrv_raw;
552c98ac35dSStefan Weil         return ret;
5531a396859SNicholas A. Bellinger     }
554f8ea0b00SNicholas Bellinger 
555cf2ab8fcSKevin Wolf     ret = bdrv_pread(file, 0, buf, sizeof(buf));
556ea2384d3Sbellard     if (ret < 0) {
55734b5d2c6SMax Reitz         error_setg_errno(errp, -ret, "Could not read image for determining its "
55834b5d2c6SMax Reitz                          "format");
559c98ac35dSStefan Weil         *pdrv = NULL;
560c98ac35dSStefan Weil         return ret;
561ea2384d3Sbellard     }
562ea2384d3Sbellard 
563c6684249SMarkus Armbruster     drv = bdrv_probe_all(buf, ret, filename);
564c98ac35dSStefan Weil     if (!drv) {
56534b5d2c6SMax Reitz         error_setg(errp, "Could not determine image format: No compatible "
56634b5d2c6SMax Reitz                    "driver found");
567c98ac35dSStefan Weil         ret = -ENOENT;
568c98ac35dSStefan Weil     }
569c98ac35dSStefan Weil     *pdrv = drv;
570c98ac35dSStefan Weil     return ret;
571ea2384d3Sbellard }
572ea2384d3Sbellard 
57351762288SStefan Hajnoczi /**
57451762288SStefan Hajnoczi  * Set the current 'total_sectors' value
57565a9bb25SMarkus Armbruster  * Return 0 on success, -errno on error.
57651762288SStefan Hajnoczi  */
57751762288SStefan Hajnoczi static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
57851762288SStefan Hajnoczi {
57951762288SStefan Hajnoczi     BlockDriver *drv = bs->drv;
58051762288SStefan Hajnoczi 
581396759adSNicholas Bellinger     /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
582b192af8aSDimitris Aragiorgis     if (bdrv_is_sg(bs))
583396759adSNicholas Bellinger         return 0;
584396759adSNicholas Bellinger 
58551762288SStefan Hajnoczi     /* query actual device if possible, otherwise just trust the hint */
58651762288SStefan Hajnoczi     if (drv->bdrv_getlength) {
58751762288SStefan Hajnoczi         int64_t length = drv->bdrv_getlength(bs);
58851762288SStefan Hajnoczi         if (length < 0) {
58951762288SStefan Hajnoczi             return length;
59051762288SStefan Hajnoczi         }
5917e382003SFam Zheng         hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
59251762288SStefan Hajnoczi     }
59351762288SStefan Hajnoczi 
59451762288SStefan Hajnoczi     bs->total_sectors = hint;
59551762288SStefan Hajnoczi     return 0;
59651762288SStefan Hajnoczi }
59751762288SStefan Hajnoczi 
598c3993cdcSStefan Hajnoczi /**
599cddff5baSKevin Wolf  * Combines a QDict of new block driver @options with any missing options taken
600cddff5baSKevin Wolf  * from @old_options, so that leaving out an option defaults to its old value.
601cddff5baSKevin Wolf  */
602cddff5baSKevin Wolf static void bdrv_join_options(BlockDriverState *bs, QDict *options,
603cddff5baSKevin Wolf                               QDict *old_options)
604cddff5baSKevin Wolf {
605cddff5baSKevin Wolf     if (bs->drv && bs->drv->bdrv_join_options) {
606cddff5baSKevin Wolf         bs->drv->bdrv_join_options(options, old_options);
607cddff5baSKevin Wolf     } else {
608cddff5baSKevin Wolf         qdict_join(options, old_options, false);
609cddff5baSKevin Wolf     }
610cddff5baSKevin Wolf }
611cddff5baSKevin Wolf 
612cddff5baSKevin Wolf /**
6139e8f1835SPaolo Bonzini  * Set open flags for a given discard mode
6149e8f1835SPaolo Bonzini  *
6159e8f1835SPaolo Bonzini  * Return 0 on success, -1 if the discard mode was invalid.
6169e8f1835SPaolo Bonzini  */
6179e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags)
6189e8f1835SPaolo Bonzini {
6199e8f1835SPaolo Bonzini     *flags &= ~BDRV_O_UNMAP;
6209e8f1835SPaolo Bonzini 
6219e8f1835SPaolo Bonzini     if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
6229e8f1835SPaolo Bonzini         /* do nothing */
6239e8f1835SPaolo Bonzini     } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
6249e8f1835SPaolo Bonzini         *flags |= BDRV_O_UNMAP;
6259e8f1835SPaolo Bonzini     } else {
6269e8f1835SPaolo Bonzini         return -1;
6279e8f1835SPaolo Bonzini     }
6289e8f1835SPaolo Bonzini 
6299e8f1835SPaolo Bonzini     return 0;
6309e8f1835SPaolo Bonzini }
6319e8f1835SPaolo Bonzini 
6329e8f1835SPaolo Bonzini /**
633c3993cdcSStefan Hajnoczi  * Set open flags for a given cache mode
634c3993cdcSStefan Hajnoczi  *
635c3993cdcSStefan Hajnoczi  * Return 0 on success, -1 if the cache mode was invalid.
636c3993cdcSStefan Hajnoczi  */
63753e8ae01SKevin Wolf int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
638c3993cdcSStefan Hajnoczi {
639c3993cdcSStefan Hajnoczi     *flags &= ~BDRV_O_CACHE_MASK;
640c3993cdcSStefan Hajnoczi 
641c3993cdcSStefan Hajnoczi     if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
64253e8ae01SKevin Wolf         *writethrough = false;
64353e8ae01SKevin Wolf         *flags |= BDRV_O_NOCACHE;
64492196b2fSStefan Hajnoczi     } else if (!strcmp(mode, "directsync")) {
64553e8ae01SKevin Wolf         *writethrough = true;
64692196b2fSStefan Hajnoczi         *flags |= BDRV_O_NOCACHE;
647c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writeback")) {
64853e8ae01SKevin Wolf         *writethrough = false;
649c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "unsafe")) {
65053e8ae01SKevin Wolf         *writethrough = false;
651c3993cdcSStefan Hajnoczi         *flags |= BDRV_O_NO_FLUSH;
652c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writethrough")) {
65353e8ae01SKevin Wolf         *writethrough = true;
654c3993cdcSStefan Hajnoczi     } else {
655c3993cdcSStefan Hajnoczi         return -1;
656c3993cdcSStefan Hajnoczi     }
657c3993cdcSStefan Hajnoczi 
658c3993cdcSStefan Hajnoczi     return 0;
659c3993cdcSStefan Hajnoczi }
660c3993cdcSStefan Hajnoczi 
66120018e12SKevin Wolf static void bdrv_child_cb_drained_begin(BdrvChild *child)
66220018e12SKevin Wolf {
66320018e12SKevin Wolf     BlockDriverState *bs = child->opaque;
66420018e12SKevin Wolf     bdrv_drained_begin(bs);
66520018e12SKevin Wolf }
66620018e12SKevin Wolf 
66720018e12SKevin Wolf static void bdrv_child_cb_drained_end(BdrvChild *child)
66820018e12SKevin Wolf {
66920018e12SKevin Wolf     BlockDriverState *bs = child->opaque;
67020018e12SKevin Wolf     bdrv_drained_end(bs);
67120018e12SKevin Wolf }
67220018e12SKevin Wolf 
6730b50cc88SKevin Wolf /*
67473176beeSKevin Wolf  * Returns the options and flags that a temporary snapshot should get, based on
67573176beeSKevin Wolf  * the originally requested flags (the originally requested image will have
67673176beeSKevin Wolf  * flags like a backing file)
677b1e6fc08SKevin Wolf  */
67873176beeSKevin Wolf static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
67973176beeSKevin Wolf                                        int parent_flags, QDict *parent_options)
680b1e6fc08SKevin Wolf {
68173176beeSKevin Wolf     *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
68273176beeSKevin Wolf 
68373176beeSKevin Wolf     /* For temporary files, unconditional cache=unsafe is fine */
68473176beeSKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
68573176beeSKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
68641869044SKevin Wolf 
68741869044SKevin Wolf     /* aio=native doesn't work for cache.direct=off, so disable it for the
68841869044SKevin Wolf      * temporary snapshot */
68941869044SKevin Wolf     *child_flags &= ~BDRV_O_NATIVE_AIO;
690b1e6fc08SKevin Wolf }
691b1e6fc08SKevin Wolf 
692b1e6fc08SKevin Wolf /*
6938e2160e2SKevin Wolf  * Returns the options and flags that bs->file should get if a protocol driver
6948e2160e2SKevin Wolf  * is expected, based on the given options and flags for the parent BDS
6950b50cc88SKevin Wolf  */
6968e2160e2SKevin Wolf static void bdrv_inherited_options(int *child_flags, QDict *child_options,
6978e2160e2SKevin Wolf                                    int parent_flags, QDict *parent_options)
6980b50cc88SKevin Wolf {
6998e2160e2SKevin Wolf     int flags = parent_flags;
7008e2160e2SKevin Wolf 
7010b50cc88SKevin Wolf     /* Enable protocol handling, disable format probing for bs->file */
7020b50cc88SKevin Wolf     flags |= BDRV_O_PROTOCOL;
7030b50cc88SKevin Wolf 
70491a097e7SKevin Wolf     /* If the cache mode isn't explicitly set, inherit direct and no-flush from
70591a097e7SKevin Wolf      * the parent. */
70691a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
70791a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
70891a097e7SKevin Wolf 
7090b50cc88SKevin Wolf     /* Our block drivers take care to send flushes and respect unmap policy,
71091a097e7SKevin Wolf      * so we can default to enable both on lower layers regardless of the
71191a097e7SKevin Wolf      * corresponding parent options. */
71291a097e7SKevin Wolf     flags |= BDRV_O_UNMAP;
7130b50cc88SKevin Wolf 
7140b50cc88SKevin Wolf     /* Clear flags that only apply to the top layer */
715abb06c5aSDaniel P. Berrange     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ |
716abb06c5aSDaniel P. Berrange                BDRV_O_NO_IO);
7170b50cc88SKevin Wolf 
7188e2160e2SKevin Wolf     *child_flags = flags;
7190b50cc88SKevin Wolf }
7200b50cc88SKevin Wolf 
721f3930ed0SKevin Wolf const BdrvChildRole child_file = {
7228e2160e2SKevin Wolf     .inherit_options = bdrv_inherited_options,
72320018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
72420018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
725f3930ed0SKevin Wolf };
726f3930ed0SKevin Wolf 
727f3930ed0SKevin Wolf /*
7288e2160e2SKevin Wolf  * Returns the options and flags that bs->file should get if the use of formats
7298e2160e2SKevin Wolf  * (and not only protocols) is permitted for it, based on the given options and
7308e2160e2SKevin Wolf  * flags for the parent BDS
731f3930ed0SKevin Wolf  */
7328e2160e2SKevin Wolf static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
7338e2160e2SKevin Wolf                                        int parent_flags, QDict *parent_options)
734f3930ed0SKevin Wolf {
7358e2160e2SKevin Wolf     child_file.inherit_options(child_flags, child_options,
7368e2160e2SKevin Wolf                                parent_flags, parent_options);
7378e2160e2SKevin Wolf 
738abb06c5aSDaniel P. Berrange     *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
739f3930ed0SKevin Wolf }
740f3930ed0SKevin Wolf 
741f3930ed0SKevin Wolf const BdrvChildRole child_format = {
7428e2160e2SKevin Wolf     .inherit_options = bdrv_inherited_fmt_options,
74320018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
74420018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
745f3930ed0SKevin Wolf };
746f3930ed0SKevin Wolf 
747317fc44eSKevin Wolf /*
7488e2160e2SKevin Wolf  * Returns the options and flags that bs->backing should get, based on the
7498e2160e2SKevin Wolf  * given options and flags for the parent BDS
750317fc44eSKevin Wolf  */
7518e2160e2SKevin Wolf static void bdrv_backing_options(int *child_flags, QDict *child_options,
7528e2160e2SKevin Wolf                                  int parent_flags, QDict *parent_options)
753317fc44eSKevin Wolf {
7548e2160e2SKevin Wolf     int flags = parent_flags;
7558e2160e2SKevin Wolf 
756b8816a43SKevin Wolf     /* The cache mode is inherited unmodified for backing files; except WCE,
757b8816a43SKevin Wolf      * which is only applied on the top level (BlockBackend) */
75891a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
75991a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
76091a097e7SKevin Wolf 
761317fc44eSKevin Wolf     /* backing files always opened read-only */
762317fc44eSKevin Wolf     flags &= ~(BDRV_O_RDWR | BDRV_O_COPY_ON_READ);
763317fc44eSKevin Wolf 
764317fc44eSKevin Wolf     /* snapshot=on is handled on the top layer */
7658bfea15dSKevin Wolf     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
766317fc44eSKevin Wolf 
7678e2160e2SKevin Wolf     *child_flags = flags;
768317fc44eSKevin Wolf }
769317fc44eSKevin Wolf 
770f3930ed0SKevin Wolf static const BdrvChildRole child_backing = {
7718e2160e2SKevin Wolf     .inherit_options = bdrv_backing_options,
77220018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
77320018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
774f3930ed0SKevin Wolf };
775f3930ed0SKevin Wolf 
7767b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags)
7777b272452SKevin Wolf {
77861de4c68SKevin Wolf     int open_flags = flags;
7797b272452SKevin Wolf 
7807b272452SKevin Wolf     /*
7817b272452SKevin Wolf      * Clear flags that are internal to the block layer before opening the
7827b272452SKevin Wolf      * image.
7837b272452SKevin Wolf      */
78420cca275SKevin Wolf     open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
7857b272452SKevin Wolf 
7867b272452SKevin Wolf     /*
7877b272452SKevin Wolf      * Snapshots should be writable.
7887b272452SKevin Wolf      */
7898bfea15dSKevin Wolf     if (flags & BDRV_O_TEMPORARY) {
7907b272452SKevin Wolf         open_flags |= BDRV_O_RDWR;
7917b272452SKevin Wolf     }
7927b272452SKevin Wolf 
7937b272452SKevin Wolf     return open_flags;
7947b272452SKevin Wolf }
7957b272452SKevin Wolf 
79691a097e7SKevin Wolf static void update_flags_from_options(int *flags, QemuOpts *opts)
79791a097e7SKevin Wolf {
79891a097e7SKevin Wolf     *flags &= ~BDRV_O_CACHE_MASK;
79991a097e7SKevin Wolf 
80091a097e7SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH));
80191a097e7SKevin Wolf     if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
80291a097e7SKevin Wolf         *flags |= BDRV_O_NO_FLUSH;
80391a097e7SKevin Wolf     }
80491a097e7SKevin Wolf 
80591a097e7SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT));
80691a097e7SKevin Wolf     if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) {
80791a097e7SKevin Wolf         *flags |= BDRV_O_NOCACHE;
80891a097e7SKevin Wolf     }
80991a097e7SKevin Wolf }
81091a097e7SKevin Wolf 
81191a097e7SKevin Wolf static void update_options_from_flags(QDict *options, int flags)
81291a097e7SKevin Wolf {
81391a097e7SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
81491a097e7SKevin Wolf         qdict_put(options, BDRV_OPT_CACHE_DIRECT,
81591a097e7SKevin Wolf                   qbool_from_bool(flags & BDRV_O_NOCACHE));
81691a097e7SKevin Wolf     }
81791a097e7SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
81891a097e7SKevin Wolf         qdict_put(options, BDRV_OPT_CACHE_NO_FLUSH,
81991a097e7SKevin Wolf                   qbool_from_bool(flags & BDRV_O_NO_FLUSH));
82091a097e7SKevin Wolf     }
82191a097e7SKevin Wolf }
82291a097e7SKevin Wolf 
823636ea370SKevin Wolf static void bdrv_assign_node_name(BlockDriverState *bs,
8246913c0c2SBenoît Canet                                   const char *node_name,
8256913c0c2SBenoît Canet                                   Error **errp)
8266913c0c2SBenoît Canet {
82715489c76SJeff Cody     char *gen_node_name = NULL;
8286913c0c2SBenoît Canet 
82915489c76SJeff Cody     if (!node_name) {
83015489c76SJeff Cody         node_name = gen_node_name = id_generate(ID_BLOCK);
83115489c76SJeff Cody     } else if (!id_wellformed(node_name)) {
83215489c76SJeff Cody         /*
83315489c76SJeff Cody          * Check for empty string or invalid characters, but not if it is
83415489c76SJeff Cody          * generated (generated names use characters not available to the user)
83515489c76SJeff Cody          */
8369aebf3b8SKevin Wolf         error_setg(errp, "Invalid node name");
837636ea370SKevin Wolf         return;
8386913c0c2SBenoît Canet     }
8396913c0c2SBenoît Canet 
8400c5e94eeSBenoît Canet     /* takes care of avoiding namespaces collisions */
8417f06d47eSMarkus Armbruster     if (blk_by_name(node_name)) {
8420c5e94eeSBenoît Canet         error_setg(errp, "node-name=%s is conflicting with a device id",
8430c5e94eeSBenoît Canet                    node_name);
84415489c76SJeff Cody         goto out;
8450c5e94eeSBenoît Canet     }
8460c5e94eeSBenoît Canet 
8476913c0c2SBenoît Canet     /* takes care of avoiding duplicates node names */
8486913c0c2SBenoît Canet     if (bdrv_find_node(node_name)) {
8496913c0c2SBenoît Canet         error_setg(errp, "Duplicate node name");
85015489c76SJeff Cody         goto out;
8516913c0c2SBenoît Canet     }
8526913c0c2SBenoît Canet 
8536913c0c2SBenoît Canet     /* copy node name into the bs and insert it into the graph list */
8546913c0c2SBenoît Canet     pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
8556913c0c2SBenoît Canet     QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
85615489c76SJeff Cody out:
85715489c76SJeff Cody     g_free(gen_node_name);
8586913c0c2SBenoît Canet }
8596913c0c2SBenoît Canet 
86018edf289SKevin Wolf static QemuOptsList bdrv_runtime_opts = {
86118edf289SKevin Wolf     .name = "bdrv_common",
86218edf289SKevin Wolf     .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
86318edf289SKevin Wolf     .desc = {
86418edf289SKevin Wolf         {
86518edf289SKevin Wolf             .name = "node-name",
86618edf289SKevin Wolf             .type = QEMU_OPT_STRING,
86718edf289SKevin Wolf             .help = "Node name of the block device node",
86818edf289SKevin Wolf         },
86962392ebbSKevin Wolf         {
87062392ebbSKevin Wolf             .name = "driver",
87162392ebbSKevin Wolf             .type = QEMU_OPT_STRING,
87262392ebbSKevin Wolf             .help = "Block driver to use for the node",
87362392ebbSKevin Wolf         },
87491a097e7SKevin Wolf         {
87591a097e7SKevin Wolf             .name = BDRV_OPT_CACHE_DIRECT,
87691a097e7SKevin Wolf             .type = QEMU_OPT_BOOL,
87791a097e7SKevin Wolf             .help = "Bypass software writeback cache on the host",
87891a097e7SKevin Wolf         },
87991a097e7SKevin Wolf         {
88091a097e7SKevin Wolf             .name = BDRV_OPT_CACHE_NO_FLUSH,
88191a097e7SKevin Wolf             .type = QEMU_OPT_BOOL,
88291a097e7SKevin Wolf             .help = "Ignore flush requests",
88391a097e7SKevin Wolf         },
88418edf289SKevin Wolf         { /* end of list */ }
88518edf289SKevin Wolf     },
88618edf289SKevin Wolf };
88718edf289SKevin Wolf 
888b6ce07aaSKevin Wolf /*
88957915332SKevin Wolf  * Common part for opening disk images and files
890b6ad491aSKevin Wolf  *
891b6ad491aSKevin Wolf  * Removes all processed options from *options.
89257915332SKevin Wolf  */
8939a4f4c31SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BdrvChild *file,
89482dc8b41SKevin Wolf                             QDict *options, Error **errp)
89557915332SKevin Wolf {
89657915332SKevin Wolf     int ret, open_flags;
897035fccdfSKevin Wolf     const char *filename;
89862392ebbSKevin Wolf     const char *driver_name = NULL;
8996913c0c2SBenoît Canet     const char *node_name = NULL;
90018edf289SKevin Wolf     QemuOpts *opts;
90162392ebbSKevin Wolf     BlockDriver *drv;
90234b5d2c6SMax Reitz     Error *local_err = NULL;
90357915332SKevin Wolf 
9046405875cSPaolo Bonzini     assert(bs->file == NULL);
905707ff828SKevin Wolf     assert(options != NULL && bs->options != options);
90657915332SKevin Wolf 
90762392ebbSKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
90862392ebbSKevin Wolf     qemu_opts_absorb_qdict(opts, options, &local_err);
90962392ebbSKevin Wolf     if (local_err) {
91062392ebbSKevin Wolf         error_propagate(errp, local_err);
91162392ebbSKevin Wolf         ret = -EINVAL;
91262392ebbSKevin Wolf         goto fail_opts;
91362392ebbSKevin Wolf     }
91462392ebbSKevin Wolf 
91562392ebbSKevin Wolf     driver_name = qemu_opt_get(opts, "driver");
91662392ebbSKevin Wolf     drv = bdrv_find_format(driver_name);
91762392ebbSKevin Wolf     assert(drv != NULL);
91862392ebbSKevin Wolf 
91945673671SKevin Wolf     if (file != NULL) {
9209a4f4c31SKevin Wolf         filename = file->bs->filename;
92145673671SKevin Wolf     } else {
92245673671SKevin Wolf         filename = qdict_get_try_str(options, "filename");
92345673671SKevin Wolf     }
92445673671SKevin Wolf 
925765003dbSKevin Wolf     if (drv->bdrv_needs_filename && !filename) {
926765003dbSKevin Wolf         error_setg(errp, "The '%s' block driver requires a file name",
927765003dbSKevin Wolf                    drv->format_name);
92818edf289SKevin Wolf         ret = -EINVAL;
92918edf289SKevin Wolf         goto fail_opts;
93018edf289SKevin Wolf     }
93118edf289SKevin Wolf 
93282dc8b41SKevin Wolf     trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
93382dc8b41SKevin Wolf                            drv->format_name);
93462392ebbSKevin Wolf 
93518edf289SKevin Wolf     node_name = qemu_opt_get(opts, "node-name");
936636ea370SKevin Wolf     bdrv_assign_node_name(bs, node_name, &local_err);
9370fb6395cSMarkus Armbruster     if (local_err) {
938636ea370SKevin Wolf         error_propagate(errp, local_err);
93918edf289SKevin Wolf         ret = -EINVAL;
94018edf289SKevin Wolf         goto fail_opts;
9415d186eb0SKevin Wolf     }
9425d186eb0SKevin Wolf 
94382dc8b41SKevin Wolf     bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
944b64ec4e4SFam Zheng 
945b64ec4e4SFam Zheng     if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
9468f94a6e4SKevin Wolf         error_setg(errp,
9478f94a6e4SKevin Wolf                    !bs->read_only && bdrv_is_whitelisted(drv, true)
9488f94a6e4SKevin Wolf                         ? "Driver '%s' can only be used for read-only devices"
9498f94a6e4SKevin Wolf                         : "Driver '%s' is not whitelisted",
9508f94a6e4SKevin Wolf                    drv->format_name);
95118edf289SKevin Wolf         ret = -ENOTSUP;
95218edf289SKevin Wolf         goto fail_opts;
953b64ec4e4SFam Zheng     }
95457915332SKevin Wolf 
95553fec9d3SStefan Hajnoczi     assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */
95682dc8b41SKevin Wolf     if (bs->open_flags & BDRV_O_COPY_ON_READ) {
9570ebd24e0SKevin Wolf         if (!bs->read_only) {
95853fec9d3SStefan Hajnoczi             bdrv_enable_copy_on_read(bs);
9590ebd24e0SKevin Wolf         } else {
9600ebd24e0SKevin Wolf             error_setg(errp, "Can't use copy-on-read on read-only device");
96118edf289SKevin Wolf             ret = -EINVAL;
96218edf289SKevin Wolf             goto fail_opts;
9630ebd24e0SKevin Wolf         }
96453fec9d3SStefan Hajnoczi     }
96553fec9d3SStefan Hajnoczi 
966c2ad1b0cSKevin Wolf     if (filename != NULL) {
96757915332SKevin Wolf         pstrcpy(bs->filename, sizeof(bs->filename), filename);
968c2ad1b0cSKevin Wolf     } else {
969c2ad1b0cSKevin Wolf         bs->filename[0] = '\0';
970c2ad1b0cSKevin Wolf     }
97191af7014SMax Reitz     pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
97257915332SKevin Wolf 
97357915332SKevin Wolf     bs->drv = drv;
9747267c094SAnthony Liguori     bs->opaque = g_malloc0(drv->instance_size);
97557915332SKevin Wolf 
97691a097e7SKevin Wolf     /* Apply cache mode options */
97791a097e7SKevin Wolf     update_flags_from_options(&bs->open_flags, opts);
97873ac451fSKevin Wolf 
97966f82ceeSKevin Wolf     /* Open the image, either directly or using a protocol */
98082dc8b41SKevin Wolf     open_flags = bdrv_open_flags(bs, bs->open_flags);
98166f82ceeSKevin Wolf     if (drv->bdrv_file_open) {
9825d186eb0SKevin Wolf         assert(file == NULL);
983030be321SBenoît Canet         assert(!drv->bdrv_needs_filename || filename != NULL);
98434b5d2c6SMax Reitz         ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
985f500a6d3SKevin Wolf     } else {
9862af5ef70SKevin Wolf         if (file == NULL) {
98734b5d2c6SMax Reitz             error_setg(errp, "Can't use '%s' as a block driver for the "
98834b5d2c6SMax Reitz                        "protocol level", drv->format_name);
9892af5ef70SKevin Wolf             ret = -EINVAL;
9902af5ef70SKevin Wolf             goto free_and_fail;
9912af5ef70SKevin Wolf         }
992f500a6d3SKevin Wolf         bs->file = file;
99334b5d2c6SMax Reitz         ret = drv->bdrv_open(bs, options, open_flags, &local_err);
99466f82ceeSKevin Wolf     }
99566f82ceeSKevin Wolf 
99657915332SKevin Wolf     if (ret < 0) {
99784d18f06SMarkus Armbruster         if (local_err) {
99834b5d2c6SMax Reitz             error_propagate(errp, local_err);
9992fa9aa59SDunrong Huang         } else if (bs->filename[0]) {
10002fa9aa59SDunrong Huang             error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
100134b5d2c6SMax Reitz         } else {
100234b5d2c6SMax Reitz             error_setg_errno(errp, -ret, "Could not open image");
100334b5d2c6SMax Reitz         }
100457915332SKevin Wolf         goto free_and_fail;
100557915332SKevin Wolf     }
100657915332SKevin Wolf 
100751762288SStefan Hajnoczi     ret = refresh_total_sectors(bs, bs->total_sectors);
100851762288SStefan Hajnoczi     if (ret < 0) {
100934b5d2c6SMax Reitz         error_setg_errno(errp, -ret, "Could not refresh total sector count");
101051762288SStefan Hajnoczi         goto free_and_fail;
101157915332SKevin Wolf     }
101251762288SStefan Hajnoczi 
10133baca891SKevin Wolf     bdrv_refresh_limits(bs, &local_err);
10143baca891SKevin Wolf     if (local_err) {
10153baca891SKevin Wolf         error_propagate(errp, local_err);
10163baca891SKevin Wolf         ret = -EINVAL;
10173baca891SKevin Wolf         goto free_and_fail;
10183baca891SKevin Wolf     }
10193baca891SKevin Wolf 
1020c25f53b0SPaolo Bonzini     assert(bdrv_opt_mem_align(bs) != 0);
10214196d2f0SDenis V. Lunev     assert(bdrv_min_mem_align(bs) != 0);
1022a5b8dd2cSEric Blake     assert(is_power_of_2(bs->bl.request_alignment));
102318edf289SKevin Wolf 
102418edf289SKevin Wolf     qemu_opts_del(opts);
102557915332SKevin Wolf     return 0;
102657915332SKevin Wolf 
102757915332SKevin Wolf free_and_fail:
102866f82ceeSKevin Wolf     bs->file = NULL;
10297267c094SAnthony Liguori     g_free(bs->opaque);
103057915332SKevin Wolf     bs->opaque = NULL;
103157915332SKevin Wolf     bs->drv = NULL;
103218edf289SKevin Wolf fail_opts:
103318edf289SKevin Wolf     qemu_opts_del(opts);
103457915332SKevin Wolf     return ret;
103557915332SKevin Wolf }
103657915332SKevin Wolf 
10375e5c4f63SKevin Wolf static QDict *parse_json_filename(const char *filename, Error **errp)
10385e5c4f63SKevin Wolf {
10395e5c4f63SKevin Wolf     QObject *options_obj;
10405e5c4f63SKevin Wolf     QDict *options;
10415e5c4f63SKevin Wolf     int ret;
10425e5c4f63SKevin Wolf 
10435e5c4f63SKevin Wolf     ret = strstart(filename, "json:", &filename);
10445e5c4f63SKevin Wolf     assert(ret);
10455e5c4f63SKevin Wolf 
10465e5c4f63SKevin Wolf     options_obj = qobject_from_json(filename);
10475e5c4f63SKevin Wolf     if (!options_obj) {
10485e5c4f63SKevin Wolf         error_setg(errp, "Could not parse the JSON options");
10495e5c4f63SKevin Wolf         return NULL;
10505e5c4f63SKevin Wolf     }
10515e5c4f63SKevin Wolf 
10525e5c4f63SKevin Wolf     if (qobject_type(options_obj) != QTYPE_QDICT) {
10535e5c4f63SKevin Wolf         qobject_decref(options_obj);
10545e5c4f63SKevin Wolf         error_setg(errp, "Invalid JSON object given");
10555e5c4f63SKevin Wolf         return NULL;
10565e5c4f63SKevin Wolf     }
10575e5c4f63SKevin Wolf 
10585e5c4f63SKevin Wolf     options = qobject_to_qdict(options_obj);
10595e5c4f63SKevin Wolf     qdict_flatten(options);
10605e5c4f63SKevin Wolf 
10615e5c4f63SKevin Wolf     return options;
10625e5c4f63SKevin Wolf }
10635e5c4f63SKevin Wolf 
1064de3b53f0SKevin Wolf static void parse_json_protocol(QDict *options, const char **pfilename,
1065de3b53f0SKevin Wolf                                 Error **errp)
1066de3b53f0SKevin Wolf {
1067de3b53f0SKevin Wolf     QDict *json_options;
1068de3b53f0SKevin Wolf     Error *local_err = NULL;
1069de3b53f0SKevin Wolf 
1070de3b53f0SKevin Wolf     /* Parse json: pseudo-protocol */
1071de3b53f0SKevin Wolf     if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1072de3b53f0SKevin Wolf         return;
1073de3b53f0SKevin Wolf     }
1074de3b53f0SKevin Wolf 
1075de3b53f0SKevin Wolf     json_options = parse_json_filename(*pfilename, &local_err);
1076de3b53f0SKevin Wolf     if (local_err) {
1077de3b53f0SKevin Wolf         error_propagate(errp, local_err);
1078de3b53f0SKevin Wolf         return;
1079de3b53f0SKevin Wolf     }
1080de3b53f0SKevin Wolf 
1081de3b53f0SKevin Wolf     /* Options given in the filename have lower priority than options
1082de3b53f0SKevin Wolf      * specified directly */
1083de3b53f0SKevin Wolf     qdict_join(options, json_options, false);
1084de3b53f0SKevin Wolf     QDECREF(json_options);
1085de3b53f0SKevin Wolf     *pfilename = NULL;
1086de3b53f0SKevin Wolf }
1087de3b53f0SKevin Wolf 
108857915332SKevin Wolf /*
1089f54120ffSKevin Wolf  * Fills in default options for opening images and converts the legacy
1090f54120ffSKevin Wolf  * filename/flags pair to option QDict entries.
109153a29513SMax Reitz  * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
109253a29513SMax Reitz  * block driver has been specified explicitly.
1093f54120ffSKevin Wolf  */
1094de3b53f0SKevin Wolf static int bdrv_fill_options(QDict **options, const char *filename,
1095053e1578SMax Reitz                              int *flags, Error **errp)
1096f54120ffSKevin Wolf {
1097f54120ffSKevin Wolf     const char *drvname;
109853a29513SMax Reitz     bool protocol = *flags & BDRV_O_PROTOCOL;
1099f54120ffSKevin Wolf     bool parse_filename = false;
1100053e1578SMax Reitz     BlockDriver *drv = NULL;
1101f54120ffSKevin Wolf     Error *local_err = NULL;
1102f54120ffSKevin Wolf 
110353a29513SMax Reitz     drvname = qdict_get_try_str(*options, "driver");
1104053e1578SMax Reitz     if (drvname) {
1105053e1578SMax Reitz         drv = bdrv_find_format(drvname);
1106053e1578SMax Reitz         if (!drv) {
1107053e1578SMax Reitz             error_setg(errp, "Unknown driver '%s'", drvname);
1108053e1578SMax Reitz             return -ENOENT;
1109053e1578SMax Reitz         }
111053a29513SMax Reitz         /* If the user has explicitly specified the driver, this choice should
111153a29513SMax Reitz          * override the BDRV_O_PROTOCOL flag */
1112053e1578SMax Reitz         protocol = drv->bdrv_file_open;
111353a29513SMax Reitz     }
111453a29513SMax Reitz 
111553a29513SMax Reitz     if (protocol) {
111653a29513SMax Reitz         *flags |= BDRV_O_PROTOCOL;
111753a29513SMax Reitz     } else {
111853a29513SMax Reitz         *flags &= ~BDRV_O_PROTOCOL;
111953a29513SMax Reitz     }
112053a29513SMax Reitz 
112191a097e7SKevin Wolf     /* Translate cache options from flags into options */
112291a097e7SKevin Wolf     update_options_from_flags(*options, *flags);
112391a097e7SKevin Wolf 
1124f54120ffSKevin Wolf     /* Fetch the file name from the options QDict if necessary */
112517b005f1SKevin Wolf     if (protocol && filename) {
1126f54120ffSKevin Wolf         if (!qdict_haskey(*options, "filename")) {
1127f54120ffSKevin Wolf             qdict_put(*options, "filename", qstring_from_str(filename));
1128f54120ffSKevin Wolf             parse_filename = true;
1129f54120ffSKevin Wolf         } else {
1130f54120ffSKevin Wolf             error_setg(errp, "Can't specify 'file' and 'filename' options at "
1131f54120ffSKevin Wolf                              "the same time");
1132f54120ffSKevin Wolf             return -EINVAL;
1133f54120ffSKevin Wolf         }
1134f54120ffSKevin Wolf     }
1135f54120ffSKevin Wolf 
1136f54120ffSKevin Wolf     /* Find the right block driver */
1137f54120ffSKevin Wolf     filename = qdict_get_try_str(*options, "filename");
1138f54120ffSKevin Wolf 
113917b005f1SKevin Wolf     if (!drvname && protocol) {
1140f54120ffSKevin Wolf         if (filename) {
1141b65a5e12SMax Reitz             drv = bdrv_find_protocol(filename, parse_filename, errp);
1142f54120ffSKevin Wolf             if (!drv) {
1143f54120ffSKevin Wolf                 return -EINVAL;
1144f54120ffSKevin Wolf             }
1145f54120ffSKevin Wolf 
1146f54120ffSKevin Wolf             drvname = drv->format_name;
1147f54120ffSKevin Wolf             qdict_put(*options, "driver", qstring_from_str(drvname));
1148f54120ffSKevin Wolf         } else {
1149f54120ffSKevin Wolf             error_setg(errp, "Must specify either driver or file");
1150f54120ffSKevin Wolf             return -EINVAL;
1151f54120ffSKevin Wolf         }
115217b005f1SKevin Wolf     }
115317b005f1SKevin Wolf 
115417b005f1SKevin Wolf     assert(drv || !protocol);
1155f54120ffSKevin Wolf 
1156f54120ffSKevin Wolf     /* Driver-specific filename parsing */
115717b005f1SKevin Wolf     if (drv && drv->bdrv_parse_filename && parse_filename) {
1158f54120ffSKevin Wolf         drv->bdrv_parse_filename(filename, *options, &local_err);
1159f54120ffSKevin Wolf         if (local_err) {
1160f54120ffSKevin Wolf             error_propagate(errp, local_err);
1161f54120ffSKevin Wolf             return -EINVAL;
1162f54120ffSKevin Wolf         }
1163f54120ffSKevin Wolf 
1164f54120ffSKevin Wolf         if (!drv->bdrv_needs_filename) {
1165f54120ffSKevin Wolf             qdict_del(*options, "filename");
1166f54120ffSKevin Wolf         }
1167f54120ffSKevin Wolf     }
1168f54120ffSKevin Wolf 
1169f54120ffSKevin Wolf     return 0;
1170f54120ffSKevin Wolf }
1171f54120ffSKevin Wolf 
1172e9740bc6SKevin Wolf static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
1173e9740bc6SKevin Wolf {
1174e9740bc6SKevin Wolf     BlockDriverState *old_bs = child->bs;
1175e9740bc6SKevin Wolf 
1176e9740bc6SKevin Wolf     if (old_bs) {
117736fe1331SKevin Wolf         if (old_bs->quiesce_counter && child->role->drained_end) {
117836fe1331SKevin Wolf             child->role->drained_end(child);
1179e9740bc6SKevin Wolf         }
118036fe1331SKevin Wolf         QLIST_REMOVE(child, next_parent);
1181e9740bc6SKevin Wolf     }
1182e9740bc6SKevin Wolf 
1183e9740bc6SKevin Wolf     child->bs = new_bs;
118436fe1331SKevin Wolf 
118536fe1331SKevin Wolf     if (new_bs) {
118636fe1331SKevin Wolf         QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
118736fe1331SKevin Wolf         if (new_bs->quiesce_counter && child->role->drained_begin) {
118836fe1331SKevin Wolf             child->role->drained_begin(child);
118936fe1331SKevin Wolf         }
119036fe1331SKevin Wolf     }
1191e9740bc6SKevin Wolf }
1192e9740bc6SKevin Wolf 
1193f21d96d0SKevin Wolf BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
1194260fecf1SKevin Wolf                                   const char *child_name,
119536fe1331SKevin Wolf                                   const BdrvChildRole *child_role,
119636fe1331SKevin Wolf                                   void *opaque)
1197df581792SKevin Wolf {
1198df581792SKevin Wolf     BdrvChild *child = g_new(BdrvChild, 1);
1199df581792SKevin Wolf     *child = (BdrvChild) {
1200e9740bc6SKevin Wolf         .bs     = NULL,
1201260fecf1SKevin Wolf         .name   = g_strdup(child_name),
1202df581792SKevin Wolf         .role   = child_role,
120336fe1331SKevin Wolf         .opaque = opaque,
1204df581792SKevin Wolf     };
1205df581792SKevin Wolf 
1206e9740bc6SKevin Wolf     bdrv_replace_child(child, child_bs);
1207b4b059f6SKevin Wolf 
1208b4b059f6SKevin Wolf     return child;
1209df581792SKevin Wolf }
1210df581792SKevin Wolf 
121198292c61SWen Congyang BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
1212f21d96d0SKevin Wolf                              BlockDriverState *child_bs,
1213f21d96d0SKevin Wolf                              const char *child_name,
1214f21d96d0SKevin Wolf                              const BdrvChildRole *child_role)
1215f21d96d0SKevin Wolf {
121636fe1331SKevin Wolf     BdrvChild *child = bdrv_root_attach_child(child_bs, child_name, child_role,
121720018e12SKevin Wolf                                               parent_bs);
1218f21d96d0SKevin Wolf     QLIST_INSERT_HEAD(&parent_bs->children, child, next);
1219f21d96d0SKevin Wolf     return child;
1220f21d96d0SKevin Wolf }
1221f21d96d0SKevin Wolf 
12223f09bfbcSKevin Wolf static void bdrv_detach_child(BdrvChild *child)
122333a60407SKevin Wolf {
1224f21d96d0SKevin Wolf     if (child->next.le_prev) {
122533a60407SKevin Wolf         QLIST_REMOVE(child, next);
1226f21d96d0SKevin Wolf         child->next.le_prev = NULL;
1227f21d96d0SKevin Wolf     }
1228e9740bc6SKevin Wolf 
1229e9740bc6SKevin Wolf     bdrv_replace_child(child, NULL);
1230e9740bc6SKevin Wolf 
1231260fecf1SKevin Wolf     g_free(child->name);
123233a60407SKevin Wolf     g_free(child);
123333a60407SKevin Wolf }
123433a60407SKevin Wolf 
1235f21d96d0SKevin Wolf void bdrv_root_unref_child(BdrvChild *child)
123633a60407SKevin Wolf {
1237779020cbSKevin Wolf     BlockDriverState *child_bs;
1238779020cbSKevin Wolf 
1239f21d96d0SKevin Wolf     child_bs = child->bs;
1240f21d96d0SKevin Wolf     bdrv_detach_child(child);
1241f21d96d0SKevin Wolf     bdrv_unref(child_bs);
1242f21d96d0SKevin Wolf }
1243f21d96d0SKevin Wolf 
1244f21d96d0SKevin Wolf void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
1245f21d96d0SKevin Wolf {
1246779020cbSKevin Wolf     if (child == NULL) {
1247779020cbSKevin Wolf         return;
1248779020cbSKevin Wolf     }
124933a60407SKevin Wolf 
125033a60407SKevin Wolf     if (child->bs->inherits_from == parent) {
125133a60407SKevin Wolf         child->bs->inherits_from = NULL;
125233a60407SKevin Wolf     }
125333a60407SKevin Wolf 
1254f21d96d0SKevin Wolf     bdrv_root_unref_child(child);
125533a60407SKevin Wolf }
125633a60407SKevin Wolf 
12575c8cab48SKevin Wolf 
12585c8cab48SKevin Wolf static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
12595c8cab48SKevin Wolf {
12605c8cab48SKevin Wolf     BdrvChild *c;
12615c8cab48SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
12625c8cab48SKevin Wolf         if (c->role->change_media) {
12635c8cab48SKevin Wolf             c->role->change_media(c, load);
12645c8cab48SKevin Wolf         }
12655c8cab48SKevin Wolf     }
12665c8cab48SKevin Wolf }
12675c8cab48SKevin Wolf 
12685c8cab48SKevin Wolf static void bdrv_parent_cb_resize(BlockDriverState *bs)
12695c8cab48SKevin Wolf {
12705c8cab48SKevin Wolf     BdrvChild *c;
12715c8cab48SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
12725c8cab48SKevin Wolf         if (c->role->resize) {
12735c8cab48SKevin Wolf             c->role->resize(c);
12745c8cab48SKevin Wolf         }
12755c8cab48SKevin Wolf     }
12765c8cab48SKevin Wolf }
12775c8cab48SKevin Wolf 
12785db15a57SKevin Wolf /*
12795db15a57SKevin Wolf  * Sets the backing file link of a BDS. A new reference is created; callers
12805db15a57SKevin Wolf  * which don't need their own reference any more must call bdrv_unref().
12815db15a57SKevin Wolf  */
12828d24cce1SFam Zheng void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd)
12838d24cce1SFam Zheng {
12845db15a57SKevin Wolf     if (backing_hd) {
12855db15a57SKevin Wolf         bdrv_ref(backing_hd);
12865db15a57SKevin Wolf     }
12878d24cce1SFam Zheng 
1288760e0063SKevin Wolf     if (bs->backing) {
1289826b6ca0SFam Zheng         assert(bs->backing_blocker);
1290760e0063SKevin Wolf         bdrv_op_unblock_all(bs->backing->bs, bs->backing_blocker);
12915db15a57SKevin Wolf         bdrv_unref_child(bs, bs->backing);
1292826b6ca0SFam Zheng     } else if (backing_hd) {
1293826b6ca0SFam Zheng         error_setg(&bs->backing_blocker,
129481e5f78aSAlberto Garcia                    "node is used as backing hd of '%s'",
129581e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(bs));
1296826b6ca0SFam Zheng     }
1297826b6ca0SFam Zheng 
12988d24cce1SFam Zheng     if (!backing_hd) {
1299826b6ca0SFam Zheng         error_free(bs->backing_blocker);
1300826b6ca0SFam Zheng         bs->backing_blocker = NULL;
1301760e0063SKevin Wolf         bs->backing = NULL;
13028d24cce1SFam Zheng         goto out;
13038d24cce1SFam Zheng     }
1304260fecf1SKevin Wolf     bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing);
13058d24cce1SFam Zheng     bs->open_flags &= ~BDRV_O_NO_BACKING;
13068d24cce1SFam Zheng     pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_hd->filename);
13078d24cce1SFam Zheng     pstrcpy(bs->backing_format, sizeof(bs->backing_format),
13088d24cce1SFam Zheng             backing_hd->drv ? backing_hd->drv->format_name : "");
1309826b6ca0SFam Zheng 
1310760e0063SKevin Wolf     bdrv_op_block_all(backing_hd, bs->backing_blocker);
1311826b6ca0SFam Zheng     /* Otherwise we won't be able to commit due to check in bdrv_commit */
1312760e0063SKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1313826b6ca0SFam Zheng                     bs->backing_blocker);
13148d24cce1SFam Zheng out:
13153baca891SKevin Wolf     bdrv_refresh_limits(bs, NULL);
13168d24cce1SFam Zheng }
13178d24cce1SFam Zheng 
131831ca6d07SKevin Wolf /*
131931ca6d07SKevin Wolf  * Opens the backing file for a BlockDriverState if not yet open
132031ca6d07SKevin Wolf  *
1321d9b7b057SKevin Wolf  * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
1322d9b7b057SKevin Wolf  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
1323d9b7b057SKevin Wolf  * itself, all options starting with "${bdref_key}." are considered part of the
1324d9b7b057SKevin Wolf  * BlockdevRef.
1325d9b7b057SKevin Wolf  *
1326d9b7b057SKevin Wolf  * TODO Can this be unified with bdrv_open_image()?
132731ca6d07SKevin Wolf  */
1328d9b7b057SKevin Wolf int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
1329d9b7b057SKevin Wolf                            const char *bdref_key, Error **errp)
13309156df12SPaolo Bonzini {
13311ba4b6a5SBenoît Canet     char *backing_filename = g_malloc0(PATH_MAX);
1332d9b7b057SKevin Wolf     char *bdref_key_dot;
1333d9b7b057SKevin Wolf     const char *reference = NULL;
1334317fc44eSKevin Wolf     int ret = 0;
13358d24cce1SFam Zheng     BlockDriverState *backing_hd;
1336d9b7b057SKevin Wolf     QDict *options;
1337d9b7b057SKevin Wolf     QDict *tmp_parent_options = NULL;
133834b5d2c6SMax Reitz     Error *local_err = NULL;
13399156df12SPaolo Bonzini 
1340760e0063SKevin Wolf     if (bs->backing != NULL) {
13411ba4b6a5SBenoît Canet         goto free_exit;
13429156df12SPaolo Bonzini     }
13439156df12SPaolo Bonzini 
134431ca6d07SKevin Wolf     /* NULL means an empty set of options */
1345d9b7b057SKevin Wolf     if (parent_options == NULL) {
1346d9b7b057SKevin Wolf         tmp_parent_options = qdict_new();
1347d9b7b057SKevin Wolf         parent_options = tmp_parent_options;
134831ca6d07SKevin Wolf     }
134931ca6d07SKevin Wolf 
13509156df12SPaolo Bonzini     bs->open_flags &= ~BDRV_O_NO_BACKING;
1351d9b7b057SKevin Wolf 
1352d9b7b057SKevin Wolf     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
1353d9b7b057SKevin Wolf     qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
1354d9b7b057SKevin Wolf     g_free(bdref_key_dot);
1355d9b7b057SKevin Wolf 
1356d9b7b057SKevin Wolf     reference = qdict_get_try_str(parent_options, bdref_key);
1357d9b7b057SKevin Wolf     if (reference || qdict_haskey(options, "file.filename")) {
13581cb6f506SKevin Wolf         backing_filename[0] = '\0';
13591cb6f506SKevin Wolf     } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
136031ca6d07SKevin Wolf         QDECREF(options);
13611ba4b6a5SBenoît Canet         goto free_exit;
1362dbecebddSFam Zheng     } else {
13639f07429eSMax Reitz         bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX,
13649f07429eSMax Reitz                                        &local_err);
13659f07429eSMax Reitz         if (local_err) {
13669f07429eSMax Reitz             ret = -EINVAL;
13679f07429eSMax Reitz             error_propagate(errp, local_err);
13689f07429eSMax Reitz             QDECREF(options);
13699f07429eSMax Reitz             goto free_exit;
13709f07429eSMax Reitz         }
13719156df12SPaolo Bonzini     }
13729156df12SPaolo Bonzini 
13738ee79e70SKevin Wolf     if (!bs->drv || !bs->drv->supports_backing) {
13748ee79e70SKevin Wolf         ret = -EINVAL;
13758ee79e70SKevin Wolf         error_setg(errp, "Driver doesn't support backing files");
13768ee79e70SKevin Wolf         QDECREF(options);
13778ee79e70SKevin Wolf         goto free_exit;
13788ee79e70SKevin Wolf     }
13798ee79e70SKevin Wolf 
1380c5f6e493SKevin Wolf     if (bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
1381c5f6e493SKevin Wolf         qdict_put(options, "driver", qstring_from_str(bs->backing_format));
13829156df12SPaolo Bonzini     }
13839156df12SPaolo Bonzini 
13845b363937SMax Reitz     backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL,
1385d9b7b057SKevin Wolf                                    reference, options, 0, bs, &child_backing,
1386e43bfd9cSMarkus Armbruster                                    errp);
13875b363937SMax Reitz     if (!backing_hd) {
13889156df12SPaolo Bonzini         bs->open_flags |= BDRV_O_NO_BACKING;
1389e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not open backing file: ");
13905b363937SMax Reitz         ret = -EINVAL;
13911ba4b6a5SBenoît Canet         goto free_exit;
13929156df12SPaolo Bonzini     }
1393df581792SKevin Wolf 
13945db15a57SKevin Wolf     /* Hook up the backing file link; drop our reference, bs owns the
13955db15a57SKevin Wolf      * backing_hd reference now */
13968d24cce1SFam Zheng     bdrv_set_backing_hd(bs, backing_hd);
13975db15a57SKevin Wolf     bdrv_unref(backing_hd);
1398d80ac658SPeter Feiner 
1399d9b7b057SKevin Wolf     qdict_del(parent_options, bdref_key);
1400d9b7b057SKevin Wolf 
14011ba4b6a5SBenoît Canet free_exit:
14021ba4b6a5SBenoît Canet     g_free(backing_filename);
1403d9b7b057SKevin Wolf     QDECREF(tmp_parent_options);
14041ba4b6a5SBenoît Canet     return ret;
14059156df12SPaolo Bonzini }
14069156df12SPaolo Bonzini 
1407b6ce07aaSKevin Wolf /*
1408da557aacSMax Reitz  * Opens a disk image whose options are given as BlockdevRef in another block
1409da557aacSMax Reitz  * device's options.
1410da557aacSMax Reitz  *
1411da557aacSMax Reitz  * If allow_none is true, no image will be opened if filename is false and no
1412b4b059f6SKevin Wolf  * BlockdevRef is given. NULL will be returned, but errp remains unset.
1413da557aacSMax Reitz  *
1414da557aacSMax Reitz  * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
1415da557aacSMax Reitz  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
1416da557aacSMax Reitz  * itself, all options starting with "${bdref_key}." are considered part of the
1417da557aacSMax Reitz  * BlockdevRef.
1418da557aacSMax Reitz  *
1419da557aacSMax Reitz  * The BlockdevRef will be removed from the options QDict.
1420da557aacSMax Reitz  */
1421b4b059f6SKevin Wolf BdrvChild *bdrv_open_child(const char *filename,
1422f3930ed0SKevin Wolf                            QDict *options, const char *bdref_key,
1423b4b059f6SKevin Wolf                            BlockDriverState* parent,
1424b4b059f6SKevin Wolf                            const BdrvChildRole *child_role,
1425f7d9fd8cSMax Reitz                            bool allow_none, Error **errp)
1426da557aacSMax Reitz {
1427b4b059f6SKevin Wolf     BdrvChild *c = NULL;
1428b4b059f6SKevin Wolf     BlockDriverState *bs;
1429da557aacSMax Reitz     QDict *image_options;
1430da557aacSMax Reitz     char *bdref_key_dot;
1431da557aacSMax Reitz     const char *reference;
1432da557aacSMax Reitz 
1433df581792SKevin Wolf     assert(child_role != NULL);
1434f67503e5SMax Reitz 
1435da557aacSMax Reitz     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
1436da557aacSMax Reitz     qdict_extract_subqdict(options, &image_options, bdref_key_dot);
1437da557aacSMax Reitz     g_free(bdref_key_dot);
1438da557aacSMax Reitz 
1439da557aacSMax Reitz     reference = qdict_get_try_str(options, bdref_key);
1440da557aacSMax Reitz     if (!filename && !reference && !qdict_size(image_options)) {
1441b4b059f6SKevin Wolf         if (!allow_none) {
1442da557aacSMax Reitz             error_setg(errp, "A block device must be specified for \"%s\"",
1443da557aacSMax Reitz                        bdref_key);
1444da557aacSMax Reitz         }
1445b20e61e0SMarkus Armbruster         QDECREF(image_options);
1446da557aacSMax Reitz         goto done;
1447da557aacSMax Reitz     }
1448da557aacSMax Reitz 
14495b363937SMax Reitz     bs = bdrv_open_inherit(filename, reference, image_options, 0,
1450ce343771SMax Reitz                            parent, child_role, errp);
14515b363937SMax Reitz     if (!bs) {
1452df581792SKevin Wolf         goto done;
1453df581792SKevin Wolf     }
1454df581792SKevin Wolf 
1455260fecf1SKevin Wolf     c = bdrv_attach_child(parent, bs, bdref_key, child_role);
1456da557aacSMax Reitz 
1457da557aacSMax Reitz done:
1458da557aacSMax Reitz     qdict_del(options, bdref_key);
1459b4b059f6SKevin Wolf     return c;
1460b4b059f6SKevin Wolf }
1461b4b059f6SKevin Wolf 
146266836189SMax Reitz static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
146366836189SMax Reitz                                                    int flags,
146466836189SMax Reitz                                                    QDict *snapshot_options,
146566836189SMax Reitz                                                    Error **errp)
1466b998875dSKevin Wolf {
1467b998875dSKevin Wolf     /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
14681ba4b6a5SBenoît Canet     char *tmp_filename = g_malloc0(PATH_MAX + 1);
1469b998875dSKevin Wolf     int64_t total_size;
147083d0521aSChunyan Liu     QemuOpts *opts = NULL;
1471b998875dSKevin Wolf     BlockDriverState *bs_snapshot;
1472b998875dSKevin Wolf     int ret;
1473b998875dSKevin Wolf 
1474b998875dSKevin Wolf     /* if snapshot, we create a temporary backing file and open it
1475b998875dSKevin Wolf        instead of opening 'filename' directly */
1476b998875dSKevin Wolf 
1477b998875dSKevin Wolf     /* Get the required size from the image */
1478f187743aSKevin Wolf     total_size = bdrv_getlength(bs);
1479f187743aSKevin Wolf     if (total_size < 0) {
1480f187743aSKevin Wolf         error_setg_errno(errp, -total_size, "Could not get image size");
14811ba4b6a5SBenoît Canet         goto out;
1482f187743aSKevin Wolf     }
1483b998875dSKevin Wolf 
1484b998875dSKevin Wolf     /* Create the temporary image */
14851ba4b6a5SBenoît Canet     ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
1486b998875dSKevin Wolf     if (ret < 0) {
1487b998875dSKevin Wolf         error_setg_errno(errp, -ret, "Could not get temporary filename");
14881ba4b6a5SBenoît Canet         goto out;
1489b998875dSKevin Wolf     }
1490b998875dSKevin Wolf 
1491ef810437SMax Reitz     opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
1492c282e1fdSChunyan Liu                             &error_abort);
149339101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
1494e43bfd9cSMarkus Armbruster     ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
149583d0521aSChunyan Liu     qemu_opts_del(opts);
1496b998875dSKevin Wolf     if (ret < 0) {
1497e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not create temporary overlay '%s': ",
1498e43bfd9cSMarkus Armbruster                       tmp_filename);
14991ba4b6a5SBenoît Canet         goto out;
1500b998875dSKevin Wolf     }
1501b998875dSKevin Wolf 
150273176beeSKevin Wolf     /* Prepare options QDict for the temporary file */
1503b998875dSKevin Wolf     qdict_put(snapshot_options, "file.driver",
1504b998875dSKevin Wolf               qstring_from_str("file"));
1505b998875dSKevin Wolf     qdict_put(snapshot_options, "file.filename",
1506b998875dSKevin Wolf               qstring_from_str(tmp_filename));
1507e6641719SMax Reitz     qdict_put(snapshot_options, "driver",
1508e6641719SMax Reitz               qstring_from_str("qcow2"));
1509b998875dSKevin Wolf 
15105b363937SMax Reitz     bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
151173176beeSKevin Wolf     snapshot_options = NULL;
15125b363937SMax Reitz     if (!bs_snapshot) {
15135b363937SMax Reitz         ret = -EINVAL;
15141ba4b6a5SBenoît Canet         goto out;
1515b998875dSKevin Wolf     }
1516b998875dSKevin Wolf 
151766836189SMax Reitz     /* bdrv_append() consumes a strong reference to bs_snapshot (i.e. it will
151866836189SMax Reitz      * call bdrv_unref() on it), so in order to be able to return one, we have
151966836189SMax Reitz      * to increase bs_snapshot's refcount here */
152066836189SMax Reitz     bdrv_ref(bs_snapshot);
1521b998875dSKevin Wolf     bdrv_append(bs_snapshot, bs);
15221ba4b6a5SBenoît Canet 
152366836189SMax Reitz     g_free(tmp_filename);
152466836189SMax Reitz     return bs_snapshot;
152566836189SMax Reitz 
15261ba4b6a5SBenoît Canet out:
152773176beeSKevin Wolf     QDECREF(snapshot_options);
15281ba4b6a5SBenoît Canet     g_free(tmp_filename);
152966836189SMax Reitz     return NULL;
1530b998875dSKevin Wolf }
1531b998875dSKevin Wolf 
1532da557aacSMax Reitz /*
1533b6ce07aaSKevin Wolf  * Opens a disk image (raw, qcow2, vmdk, ...)
1534de9c0cecSKevin Wolf  *
1535de9c0cecSKevin Wolf  * options is a QDict of options to pass to the block drivers, or NULL for an
1536de9c0cecSKevin Wolf  * empty set of options. The reference to the QDict belongs to the block layer
1537de9c0cecSKevin Wolf  * after the call (even on failure), so if the caller intends to reuse the
1538de9c0cecSKevin Wolf  * dictionary, it needs to use QINCREF() before calling bdrv_open.
1539f67503e5SMax Reitz  *
1540f67503e5SMax Reitz  * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
1541f67503e5SMax Reitz  * If it is not NULL, the referenced BDS will be reused.
1542ddf5636dSMax Reitz  *
1543ddf5636dSMax Reitz  * The reference parameter may be used to specify an existing block device which
1544ddf5636dSMax Reitz  * should be opened. If specified, neither options nor a filename may be given,
1545ddf5636dSMax Reitz  * nor can an existing BDS be reused (that is, *pbs has to be NULL).
1546b6ce07aaSKevin Wolf  */
15475b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
15485b363937SMax Reitz                                            const char *reference,
15495b363937SMax Reitz                                            QDict *options, int flags,
1550f3930ed0SKevin Wolf                                            BlockDriverState *parent,
15515b363937SMax Reitz                                            const BdrvChildRole *child_role,
15525b363937SMax Reitz                                            Error **errp)
1553ea2384d3Sbellard {
1554b6ce07aaSKevin Wolf     int ret;
15559a4f4c31SKevin Wolf     BdrvChild *file = NULL;
15569a4f4c31SKevin Wolf     BlockDriverState *bs;
1557ce343771SMax Reitz     BlockDriver *drv = NULL;
155874fe54f2SKevin Wolf     const char *drvname;
15593e8c2e57SAlberto Garcia     const char *backing;
156034b5d2c6SMax Reitz     Error *local_err = NULL;
156173176beeSKevin Wolf     QDict *snapshot_options = NULL;
1562b1e6fc08SKevin Wolf     int snapshot_flags = 0;
156333e3963eSbellard 
1564f3930ed0SKevin Wolf     assert(!child_role || !flags);
1565f3930ed0SKevin Wolf     assert(!child_role == !parent);
1566f67503e5SMax Reitz 
1567ddf5636dSMax Reitz     if (reference) {
1568ddf5636dSMax Reitz         bool options_non_empty = options ? qdict_size(options) : false;
1569ddf5636dSMax Reitz         QDECREF(options);
1570ddf5636dSMax Reitz 
1571ddf5636dSMax Reitz         if (filename || options_non_empty) {
1572ddf5636dSMax Reitz             error_setg(errp, "Cannot reference an existing block device with "
1573ddf5636dSMax Reitz                        "additional options or a new filename");
15745b363937SMax Reitz             return NULL;
1575ddf5636dSMax Reitz         }
1576ddf5636dSMax Reitz 
1577ddf5636dSMax Reitz         bs = bdrv_lookup_bs(reference, reference, errp);
1578ddf5636dSMax Reitz         if (!bs) {
15795b363937SMax Reitz             return NULL;
1580ddf5636dSMax Reitz         }
158176b22320SKevin Wolf 
1582ddf5636dSMax Reitz         bdrv_ref(bs);
15835b363937SMax Reitz         return bs;
1584ddf5636dSMax Reitz     }
1585ddf5636dSMax Reitz 
1586e4e9986bSMarkus Armbruster     bs = bdrv_new();
1587f67503e5SMax Reitz 
1588de9c0cecSKevin Wolf     /* NULL means an empty set of options */
1589de9c0cecSKevin Wolf     if (options == NULL) {
1590de9c0cecSKevin Wolf         options = qdict_new();
1591de9c0cecSKevin Wolf     }
1592de9c0cecSKevin Wolf 
1593145f598eSKevin Wolf     /* json: syntax counts as explicit options, as if in the QDict */
1594de3b53f0SKevin Wolf     parse_json_protocol(options, &filename, &local_err);
1595de3b53f0SKevin Wolf     if (local_err) {
1596de3b53f0SKevin Wolf         goto fail;
1597de3b53f0SKevin Wolf     }
1598de3b53f0SKevin Wolf 
1599145f598eSKevin Wolf     bs->explicit_options = qdict_clone_shallow(options);
1600145f598eSKevin Wolf 
1601f3930ed0SKevin Wolf     if (child_role) {
1602bddcec37SKevin Wolf         bs->inherits_from = parent;
16038e2160e2SKevin Wolf         child_role->inherit_options(&flags, options,
16048e2160e2SKevin Wolf                                     parent->open_flags, parent->options);
1605f3930ed0SKevin Wolf     }
1606f3930ed0SKevin Wolf 
1607de3b53f0SKevin Wolf     ret = bdrv_fill_options(&options, filename, &flags, &local_err);
1608462f5bcfSKevin Wolf     if (local_err) {
1609462f5bcfSKevin Wolf         goto fail;
1610462f5bcfSKevin Wolf     }
1611462f5bcfSKevin Wolf 
161262392ebbSKevin Wolf     bs->open_flags = flags;
161362392ebbSKevin Wolf     bs->options = options;
161462392ebbSKevin Wolf     options = qdict_clone_shallow(options);
161562392ebbSKevin Wolf 
161676c591b0SKevin Wolf     /* Find the right image format driver */
161776c591b0SKevin Wolf     drvname = qdict_get_try_str(options, "driver");
161876c591b0SKevin Wolf     if (drvname) {
161976c591b0SKevin Wolf         drv = bdrv_find_format(drvname);
162076c591b0SKevin Wolf         if (!drv) {
162176c591b0SKevin Wolf             error_setg(errp, "Unknown driver: '%s'", drvname);
162276c591b0SKevin Wolf             goto fail;
162376c591b0SKevin Wolf         }
162476c591b0SKevin Wolf     }
162576c591b0SKevin Wolf 
162676c591b0SKevin Wolf     assert(drvname || !(flags & BDRV_O_PROTOCOL));
162776c591b0SKevin Wolf 
16283e8c2e57SAlberto Garcia     backing = qdict_get_try_str(options, "backing");
16293e8c2e57SAlberto Garcia     if (backing && *backing == '\0') {
16303e8c2e57SAlberto Garcia         flags |= BDRV_O_NO_BACKING;
16313e8c2e57SAlberto Garcia         qdict_del(options, "backing");
16323e8c2e57SAlberto Garcia     }
16333e8c2e57SAlberto Garcia 
1634f500a6d3SKevin Wolf     /* Open image file without format layer */
1635f4788adcSKevin Wolf     if ((flags & BDRV_O_PROTOCOL) == 0) {
1636be028adcSJeff Cody         if (flags & BDRV_O_RDWR) {
1637be028adcSJeff Cody             flags |= BDRV_O_ALLOW_RDWR;
1638be028adcSJeff Cody         }
1639b1e6fc08SKevin Wolf         if (flags & BDRV_O_SNAPSHOT) {
164073176beeSKevin Wolf             snapshot_options = qdict_new();
164173176beeSKevin Wolf             bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
164273176beeSKevin Wolf                                        flags, options);
16438e2160e2SKevin Wolf             bdrv_backing_options(&flags, options, flags, options);
1644b1e6fc08SKevin Wolf         }
1645be028adcSJeff Cody 
1646f3930ed0SKevin Wolf         bs->open_flags = flags;
16471fdd6933SKevin Wolf 
16489a4f4c31SKevin Wolf         file = bdrv_open_child(filename, options, "file", bs,
16491fdd6933SKevin Wolf                                &child_file, true, &local_err);
16501fdd6933SKevin Wolf         if (local_err) {
16518bfea15dSKevin Wolf             goto fail;
1652f500a6d3SKevin Wolf         }
1653f4788adcSKevin Wolf     }
1654f500a6d3SKevin Wolf 
165576c591b0SKevin Wolf     /* Image format probing */
165638f3ef57SKevin Wolf     bs->probed = !drv;
165776c591b0SKevin Wolf     if (!drv && file) {
1658cf2ab8fcSKevin Wolf         ret = find_image_format(file, filename, &drv, &local_err);
165917b005f1SKevin Wolf         if (ret < 0) {
166017b005f1SKevin Wolf             goto fail;
166117b005f1SKevin Wolf         }
166262392ebbSKevin Wolf         /*
166362392ebbSKevin Wolf          * This option update would logically belong in bdrv_fill_options(),
166462392ebbSKevin Wolf          * but we first need to open bs->file for the probing to work, while
166562392ebbSKevin Wolf          * opening bs->file already requires the (mostly) final set of options
166662392ebbSKevin Wolf          * so that cache mode etc. can be inherited.
166762392ebbSKevin Wolf          *
166862392ebbSKevin Wolf          * Adding the driver later is somewhat ugly, but it's not an option
166962392ebbSKevin Wolf          * that would ever be inherited, so it's correct. We just need to make
167062392ebbSKevin Wolf          * sure to update both bs->options (which has the full effective
167162392ebbSKevin Wolf          * options for bs) and options (which has file.* already removed).
167262392ebbSKevin Wolf          */
167362392ebbSKevin Wolf         qdict_put(bs->options, "driver", qstring_from_str(drv->format_name));
167462392ebbSKevin Wolf         qdict_put(options, "driver", qstring_from_str(drv->format_name));
167576c591b0SKevin Wolf     } else if (!drv) {
16762a05cbe4SMax Reitz         error_setg(errp, "Must specify either driver or file");
16778bfea15dSKevin Wolf         goto fail;
16782a05cbe4SMax Reitz     }
1679f500a6d3SKevin Wolf 
168053a29513SMax Reitz     /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
168153a29513SMax Reitz     assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
168253a29513SMax Reitz     /* file must be NULL if a protocol BDS is about to be created
168353a29513SMax Reitz      * (the inverse results in an error message from bdrv_open_common()) */
168453a29513SMax Reitz     assert(!(flags & BDRV_O_PROTOCOL) || !file);
168553a29513SMax Reitz 
1686b6ce07aaSKevin Wolf     /* Open the image */
168782dc8b41SKevin Wolf     ret = bdrv_open_common(bs, file, options, &local_err);
1688b6ce07aaSKevin Wolf     if (ret < 0) {
16898bfea15dSKevin Wolf         goto fail;
16906987307cSChristoph Hellwig     }
16916987307cSChristoph Hellwig 
16922a05cbe4SMax Reitz     if (file && (bs->file != file)) {
16939a4f4c31SKevin Wolf         bdrv_unref_child(bs, file);
1694f500a6d3SKevin Wolf         file = NULL;
1695f500a6d3SKevin Wolf     }
1696f500a6d3SKevin Wolf 
1697b6ce07aaSKevin Wolf     /* If there is a backing file, use it */
16989156df12SPaolo Bonzini     if ((flags & BDRV_O_NO_BACKING) == 0) {
1699d9b7b057SKevin Wolf         ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
1700b6ce07aaSKevin Wolf         if (ret < 0) {
1701b6ad491aSKevin Wolf             goto close_and_fail;
1702b6ce07aaSKevin Wolf         }
1703b6ce07aaSKevin Wolf     }
1704b6ce07aaSKevin Wolf 
170591af7014SMax Reitz     bdrv_refresh_filename(bs);
170691af7014SMax Reitz 
1707b6ad491aSKevin Wolf     /* Check if any unknown options were used */
17085acd9d81SMax Reitz     if (options && (qdict_size(options) != 0)) {
1709b6ad491aSKevin Wolf         const QDictEntry *entry = qdict_first(options);
17105acd9d81SMax Reitz         if (flags & BDRV_O_PROTOCOL) {
17115acd9d81SMax Reitz             error_setg(errp, "Block protocol '%s' doesn't support the option "
17125acd9d81SMax Reitz                        "'%s'", drv->format_name, entry->key);
17135acd9d81SMax Reitz         } else {
1714d0e46a55SMax Reitz             error_setg(errp,
1715d0e46a55SMax Reitz                        "Block format '%s' does not support the option '%s'",
1716d0e46a55SMax Reitz                        drv->format_name, entry->key);
17175acd9d81SMax Reitz         }
1718b6ad491aSKevin Wolf 
1719b6ad491aSKevin Wolf         goto close_and_fail;
1720b6ad491aSKevin Wolf     }
1721b6ad491aSKevin Wolf 
1722b6ce07aaSKevin Wolf     if (!bdrv_key_required(bs)) {
17235c8cab48SKevin Wolf         bdrv_parent_cb_change_media(bs, true);
1724c3adb58fSMarkus Armbruster     } else if (!runstate_check(RUN_STATE_PRELAUNCH)
1725c3adb58fSMarkus Armbruster                && !runstate_check(RUN_STATE_INMIGRATE)
1726c3adb58fSMarkus Armbruster                && !runstate_check(RUN_STATE_PAUSED)) { /* HACK */
1727c3adb58fSMarkus Armbruster         error_setg(errp,
1728c3adb58fSMarkus Armbruster                    "Guest must be stopped for opening of encrypted image");
1729c3adb58fSMarkus Armbruster         goto close_and_fail;
1730b6ce07aaSKevin Wolf     }
1731b6ce07aaSKevin Wolf 
1732c3adb58fSMarkus Armbruster     QDECREF(options);
1733dd62f1caSKevin Wolf 
1734dd62f1caSKevin Wolf     /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
1735dd62f1caSKevin Wolf      * temporary snapshot afterwards. */
1736dd62f1caSKevin Wolf     if (snapshot_flags) {
173766836189SMax Reitz         BlockDriverState *snapshot_bs;
173866836189SMax Reitz         snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
173966836189SMax Reitz                                                 snapshot_options, &local_err);
174073176beeSKevin Wolf         snapshot_options = NULL;
1741dd62f1caSKevin Wolf         if (local_err) {
1742dd62f1caSKevin Wolf             goto close_and_fail;
1743dd62f1caSKevin Wolf         }
174466836189SMax Reitz         /* We are not going to return bs but the overlay on top of it
174566836189SMax Reitz          * (snapshot_bs); thus, we have to drop the strong reference to bs
17465b363937SMax Reitz          * (which we obtained by calling bdrv_new()). bs will not be deleted,
17475b363937SMax Reitz          * though, because the overlay still has a reference to it. */
174866836189SMax Reitz         bdrv_unref(bs);
174966836189SMax Reitz         bs = snapshot_bs;
175066836189SMax Reitz     }
175166836189SMax Reitz 
17525b363937SMax Reitz     return bs;
1753b6ce07aaSKevin Wolf 
17548bfea15dSKevin Wolf fail:
1755f500a6d3SKevin Wolf     if (file != NULL) {
17569a4f4c31SKevin Wolf         bdrv_unref_child(bs, file);
1757f500a6d3SKevin Wolf     }
175873176beeSKevin Wolf     QDECREF(snapshot_options);
1759145f598eSKevin Wolf     QDECREF(bs->explicit_options);
1760de9c0cecSKevin Wolf     QDECREF(bs->options);
1761b6ad491aSKevin Wolf     QDECREF(options);
1762de9c0cecSKevin Wolf     bs->options = NULL;
1763f67503e5SMax Reitz     bdrv_unref(bs);
176434b5d2c6SMax Reitz     error_propagate(errp, local_err);
17655b363937SMax Reitz     return NULL;
1766de9c0cecSKevin Wolf 
1767b6ad491aSKevin Wolf close_and_fail:
1768f67503e5SMax Reitz     bdrv_unref(bs);
176973176beeSKevin Wolf     QDECREF(snapshot_options);
1770b6ad491aSKevin Wolf     QDECREF(options);
177134b5d2c6SMax Reitz     error_propagate(errp, local_err);
17725b363937SMax Reitz     return NULL;
1773b6ce07aaSKevin Wolf }
1774b6ce07aaSKevin Wolf 
17755b363937SMax Reitz BlockDriverState *bdrv_open(const char *filename, const char *reference,
17765b363937SMax Reitz                             QDict *options, int flags, Error **errp)
1777f3930ed0SKevin Wolf {
17785b363937SMax Reitz     return bdrv_open_inherit(filename, reference, options, flags, NULL,
1779ce343771SMax Reitz                              NULL, errp);
1780f3930ed0SKevin Wolf }
1781f3930ed0SKevin Wolf 
1782e971aa12SJeff Cody typedef struct BlockReopenQueueEntry {
1783e971aa12SJeff Cody      bool prepared;
1784e971aa12SJeff Cody      BDRVReopenState state;
1785e971aa12SJeff Cody      QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1786e971aa12SJeff Cody } BlockReopenQueueEntry;
1787e971aa12SJeff Cody 
1788e971aa12SJeff Cody /*
1789e971aa12SJeff Cody  * Adds a BlockDriverState to a simple queue for an atomic, transactional
1790e971aa12SJeff Cody  * reopen of multiple devices.
1791e971aa12SJeff Cody  *
1792e971aa12SJeff Cody  * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
1793e971aa12SJeff Cody  * already performed, or alternatively may be NULL a new BlockReopenQueue will
1794e971aa12SJeff Cody  * be created and initialized. This newly created BlockReopenQueue should be
1795e971aa12SJeff Cody  * passed back in for subsequent calls that are intended to be of the same
1796e971aa12SJeff Cody  * atomic 'set'.
1797e971aa12SJeff Cody  *
1798e971aa12SJeff Cody  * bs is the BlockDriverState to add to the reopen queue.
1799e971aa12SJeff Cody  *
18004d2cb092SKevin Wolf  * options contains the changed options for the associated bs
18014d2cb092SKevin Wolf  * (the BlockReopenQueue takes ownership)
18024d2cb092SKevin Wolf  *
1803e971aa12SJeff Cody  * flags contains the open flags for the associated bs
1804e971aa12SJeff Cody  *
1805e971aa12SJeff Cody  * returns a pointer to bs_queue, which is either the newly allocated
1806e971aa12SJeff Cody  * bs_queue, or the existing bs_queue being used.
1807e971aa12SJeff Cody  *
1808e971aa12SJeff Cody  */
180928518102SKevin Wolf static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
18104d2cb092SKevin Wolf                                                  BlockDriverState *bs,
181128518102SKevin Wolf                                                  QDict *options,
181228518102SKevin Wolf                                                  int flags,
181328518102SKevin Wolf                                                  const BdrvChildRole *role,
181428518102SKevin Wolf                                                  QDict *parent_options,
181528518102SKevin Wolf                                                  int parent_flags)
1816e971aa12SJeff Cody {
1817e971aa12SJeff Cody     assert(bs != NULL);
1818e971aa12SJeff Cody 
1819e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry;
182067251a31SKevin Wolf     BdrvChild *child;
1821145f598eSKevin Wolf     QDict *old_options, *explicit_options;
182267251a31SKevin Wolf 
1823e971aa12SJeff Cody     if (bs_queue == NULL) {
1824e971aa12SJeff Cody         bs_queue = g_new0(BlockReopenQueue, 1);
1825e971aa12SJeff Cody         QSIMPLEQ_INIT(bs_queue);
1826e971aa12SJeff Cody     }
1827e971aa12SJeff Cody 
18284d2cb092SKevin Wolf     if (!options) {
18294d2cb092SKevin Wolf         options = qdict_new();
18304d2cb092SKevin Wolf     }
18314d2cb092SKevin Wolf 
183228518102SKevin Wolf     /*
183328518102SKevin Wolf      * Precedence of options:
183428518102SKevin Wolf      * 1. Explicitly passed in options (highest)
183591a097e7SKevin Wolf      * 2. Set in flags (only for top level)
1836145f598eSKevin Wolf      * 3. Retained from explicitly set options of bs
18378e2160e2SKevin Wolf      * 4. Inherited from parent node
183828518102SKevin Wolf      * 5. Retained from effective options of bs
183928518102SKevin Wolf      */
184028518102SKevin Wolf 
184191a097e7SKevin Wolf     if (!parent_options) {
184291a097e7SKevin Wolf         /*
184391a097e7SKevin Wolf          * Any setting represented by flags is always updated. If the
184491a097e7SKevin Wolf          * corresponding QDict option is set, it takes precedence. Otherwise
184591a097e7SKevin Wolf          * the flag is translated into a QDict option. The old setting of bs is
184691a097e7SKevin Wolf          * not considered.
184791a097e7SKevin Wolf          */
184891a097e7SKevin Wolf         update_options_from_flags(options, flags);
184991a097e7SKevin Wolf     }
185091a097e7SKevin Wolf 
1851145f598eSKevin Wolf     /* Old explicitly set values (don't overwrite by inherited value) */
1852145f598eSKevin Wolf     old_options = qdict_clone_shallow(bs->explicit_options);
1853145f598eSKevin Wolf     bdrv_join_options(bs, options, old_options);
1854145f598eSKevin Wolf     QDECREF(old_options);
1855145f598eSKevin Wolf 
1856145f598eSKevin Wolf     explicit_options = qdict_clone_shallow(options);
1857145f598eSKevin Wolf 
185828518102SKevin Wolf     /* Inherit from parent node */
185928518102SKevin Wolf     if (parent_options) {
186028518102SKevin Wolf         assert(!flags);
18618e2160e2SKevin Wolf         role->inherit_options(&flags, options, parent_flags, parent_options);
186228518102SKevin Wolf     }
186328518102SKevin Wolf 
186428518102SKevin Wolf     /* Old values are used for options that aren't set yet */
18654d2cb092SKevin Wolf     old_options = qdict_clone_shallow(bs->options);
1866cddff5baSKevin Wolf     bdrv_join_options(bs, options, old_options);
18674d2cb092SKevin Wolf     QDECREF(old_options);
18684d2cb092SKevin Wolf 
1869f1f25a2eSKevin Wolf     /* bdrv_open() masks this flag out */
1870f1f25a2eSKevin Wolf     flags &= ~BDRV_O_PROTOCOL;
1871f1f25a2eSKevin Wolf 
187267251a31SKevin Wolf     QLIST_FOREACH(child, &bs->children, next) {
18734c9dfe5dSKevin Wolf         QDict *new_child_options;
18744c9dfe5dSKevin Wolf         char *child_key_dot;
187567251a31SKevin Wolf 
18764c9dfe5dSKevin Wolf         /* reopen can only change the options of block devices that were
18774c9dfe5dSKevin Wolf          * implicitly created and inherited options. For other (referenced)
18784c9dfe5dSKevin Wolf          * block devices, a syntax like "backing.foo" results in an error. */
187967251a31SKevin Wolf         if (child->bs->inherits_from != bs) {
188067251a31SKevin Wolf             continue;
188167251a31SKevin Wolf         }
188267251a31SKevin Wolf 
18834c9dfe5dSKevin Wolf         child_key_dot = g_strdup_printf("%s.", child->name);
18844c9dfe5dSKevin Wolf         qdict_extract_subqdict(options, &new_child_options, child_key_dot);
18854c9dfe5dSKevin Wolf         g_free(child_key_dot);
18864c9dfe5dSKevin Wolf 
188728518102SKevin Wolf         bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0,
188828518102SKevin Wolf                                 child->role, options, flags);
1889e971aa12SJeff Cody     }
1890e971aa12SJeff Cody 
1891e971aa12SJeff Cody     bs_entry = g_new0(BlockReopenQueueEntry, 1);
1892e971aa12SJeff Cody     QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
1893e971aa12SJeff Cody 
1894e971aa12SJeff Cody     bs_entry->state.bs = bs;
18954d2cb092SKevin Wolf     bs_entry->state.options = options;
1896145f598eSKevin Wolf     bs_entry->state.explicit_options = explicit_options;
1897e971aa12SJeff Cody     bs_entry->state.flags = flags;
1898e971aa12SJeff Cody 
1899e971aa12SJeff Cody     return bs_queue;
1900e971aa12SJeff Cody }
1901e971aa12SJeff Cody 
190228518102SKevin Wolf BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
190328518102SKevin Wolf                                     BlockDriverState *bs,
190428518102SKevin Wolf                                     QDict *options, int flags)
190528518102SKevin Wolf {
190628518102SKevin Wolf     return bdrv_reopen_queue_child(bs_queue, bs, options, flags,
190728518102SKevin Wolf                                    NULL, NULL, 0);
190828518102SKevin Wolf }
190928518102SKevin Wolf 
1910e971aa12SJeff Cody /*
1911e971aa12SJeff Cody  * Reopen multiple BlockDriverStates atomically & transactionally.
1912e971aa12SJeff Cody  *
1913e971aa12SJeff Cody  * The queue passed in (bs_queue) must have been built up previous
1914e971aa12SJeff Cody  * via bdrv_reopen_queue().
1915e971aa12SJeff Cody  *
1916e971aa12SJeff Cody  * Reopens all BDS specified in the queue, with the appropriate
1917e971aa12SJeff Cody  * flags.  All devices are prepared for reopen, and failure of any
1918e971aa12SJeff Cody  * device will cause all device changes to be abandonded, and intermediate
1919e971aa12SJeff Cody  * data cleaned up.
1920e971aa12SJeff Cody  *
1921e971aa12SJeff Cody  * If all devices prepare successfully, then the changes are committed
1922e971aa12SJeff Cody  * to all devices.
1923e971aa12SJeff Cody  *
1924e971aa12SJeff Cody  */
1925e971aa12SJeff Cody int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
1926e971aa12SJeff Cody {
1927e971aa12SJeff Cody     int ret = -1;
1928e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry, *next;
1929e971aa12SJeff Cody     Error *local_err = NULL;
1930e971aa12SJeff Cody 
1931e971aa12SJeff Cody     assert(bs_queue != NULL);
1932e971aa12SJeff Cody 
1933e971aa12SJeff Cody     bdrv_drain_all();
1934e971aa12SJeff Cody 
1935e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
1936e971aa12SJeff Cody         if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
1937e971aa12SJeff Cody             error_propagate(errp, local_err);
1938e971aa12SJeff Cody             goto cleanup;
1939e971aa12SJeff Cody         }
1940e971aa12SJeff Cody         bs_entry->prepared = true;
1941e971aa12SJeff Cody     }
1942e971aa12SJeff Cody 
1943e971aa12SJeff Cody     /* If we reach this point, we have success and just need to apply the
1944e971aa12SJeff Cody      * changes
1945e971aa12SJeff Cody      */
1946e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
1947e971aa12SJeff Cody         bdrv_reopen_commit(&bs_entry->state);
1948e971aa12SJeff Cody     }
1949e971aa12SJeff Cody 
1950e971aa12SJeff Cody     ret = 0;
1951e971aa12SJeff Cody 
1952e971aa12SJeff Cody cleanup:
1953e971aa12SJeff Cody     QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
1954e971aa12SJeff Cody         if (ret && bs_entry->prepared) {
1955e971aa12SJeff Cody             bdrv_reopen_abort(&bs_entry->state);
1956145f598eSKevin Wolf         } else if (ret) {
1957145f598eSKevin Wolf             QDECREF(bs_entry->state.explicit_options);
1958e971aa12SJeff Cody         }
19594d2cb092SKevin Wolf         QDECREF(bs_entry->state.options);
1960e971aa12SJeff Cody         g_free(bs_entry);
1961e971aa12SJeff Cody     }
1962e971aa12SJeff Cody     g_free(bs_queue);
1963e971aa12SJeff Cody     return ret;
1964e971aa12SJeff Cody }
1965e971aa12SJeff Cody 
1966e971aa12SJeff Cody 
1967e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */
1968e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
1969e971aa12SJeff Cody {
1970e971aa12SJeff Cody     int ret = -1;
1971e971aa12SJeff Cody     Error *local_err = NULL;
19724d2cb092SKevin Wolf     BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags);
1973e971aa12SJeff Cody 
1974e971aa12SJeff Cody     ret = bdrv_reopen_multiple(queue, &local_err);
1975e971aa12SJeff Cody     if (local_err != NULL) {
1976e971aa12SJeff Cody         error_propagate(errp, local_err);
1977e971aa12SJeff Cody     }
1978e971aa12SJeff Cody     return ret;
1979e971aa12SJeff Cody }
1980e971aa12SJeff Cody 
1981e971aa12SJeff Cody 
1982e971aa12SJeff Cody /*
1983e971aa12SJeff Cody  * Prepares a BlockDriverState for reopen. All changes are staged in the
1984e971aa12SJeff Cody  * 'opaque' field of the BDRVReopenState, which is used and allocated by
1985e971aa12SJeff Cody  * the block driver layer .bdrv_reopen_prepare()
1986e971aa12SJeff Cody  *
1987e971aa12SJeff Cody  * bs is the BlockDriverState to reopen
1988e971aa12SJeff Cody  * flags are the new open flags
1989e971aa12SJeff Cody  * queue is the reopen queue
1990e971aa12SJeff Cody  *
1991e971aa12SJeff Cody  * Returns 0 on success, non-zero on error.  On error errp will be set
1992e971aa12SJeff Cody  * as well.
1993e971aa12SJeff Cody  *
1994e971aa12SJeff Cody  * On failure, bdrv_reopen_abort() will be called to clean up any data.
1995e971aa12SJeff Cody  * It is the responsibility of the caller to then call the abort() or
1996e971aa12SJeff Cody  * commit() for any other BDS that have been left in a prepare() state
1997e971aa12SJeff Cody  *
1998e971aa12SJeff Cody  */
1999e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
2000e971aa12SJeff Cody                         Error **errp)
2001e971aa12SJeff Cody {
2002e971aa12SJeff Cody     int ret = -1;
2003e971aa12SJeff Cody     Error *local_err = NULL;
2004e971aa12SJeff Cody     BlockDriver *drv;
2005ccf9dc07SKevin Wolf     QemuOpts *opts;
2006ccf9dc07SKevin Wolf     const char *value;
2007e971aa12SJeff Cody 
2008e971aa12SJeff Cody     assert(reopen_state != NULL);
2009e971aa12SJeff Cody     assert(reopen_state->bs->drv != NULL);
2010e971aa12SJeff Cody     drv = reopen_state->bs->drv;
2011e971aa12SJeff Cody 
2012ccf9dc07SKevin Wolf     /* Process generic block layer options */
2013ccf9dc07SKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
2014ccf9dc07SKevin Wolf     qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
2015ccf9dc07SKevin Wolf     if (local_err) {
2016ccf9dc07SKevin Wolf         error_propagate(errp, local_err);
2017ccf9dc07SKevin Wolf         ret = -EINVAL;
2018ccf9dc07SKevin Wolf         goto error;
2019ccf9dc07SKevin Wolf     }
2020ccf9dc07SKevin Wolf 
202191a097e7SKevin Wolf     update_flags_from_options(&reopen_state->flags, opts);
202291a097e7SKevin Wolf 
2023ccf9dc07SKevin Wolf     /* node-name and driver must be unchanged. Put them back into the QDict, so
2024ccf9dc07SKevin Wolf      * that they are checked at the end of this function. */
2025ccf9dc07SKevin Wolf     value = qemu_opt_get(opts, "node-name");
2026ccf9dc07SKevin Wolf     if (value) {
2027ccf9dc07SKevin Wolf         qdict_put(reopen_state->options, "node-name", qstring_from_str(value));
2028ccf9dc07SKevin Wolf     }
2029ccf9dc07SKevin Wolf 
2030ccf9dc07SKevin Wolf     value = qemu_opt_get(opts, "driver");
2031ccf9dc07SKevin Wolf     if (value) {
2032ccf9dc07SKevin Wolf         qdict_put(reopen_state->options, "driver", qstring_from_str(value));
2033ccf9dc07SKevin Wolf     }
2034ccf9dc07SKevin Wolf 
2035e971aa12SJeff Cody     /* if we are to stay read-only, do not allow permission change
2036e971aa12SJeff Cody      * to r/w */
2037e971aa12SJeff Cody     if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) &&
2038e971aa12SJeff Cody         reopen_state->flags & BDRV_O_RDWR) {
203981e5f78aSAlberto Garcia         error_setg(errp, "Node '%s' is read only",
204081e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(reopen_state->bs));
2041e971aa12SJeff Cody         goto error;
2042e971aa12SJeff Cody     }
2043e971aa12SJeff Cody 
2044e971aa12SJeff Cody 
2045e971aa12SJeff Cody     ret = bdrv_flush(reopen_state->bs);
2046e971aa12SJeff Cody     if (ret) {
2047455b0fdeSEric Blake         error_setg_errno(errp, -ret, "Error flushing drive");
2048e971aa12SJeff Cody         goto error;
2049e971aa12SJeff Cody     }
2050e971aa12SJeff Cody 
2051e971aa12SJeff Cody     if (drv->bdrv_reopen_prepare) {
2052e971aa12SJeff Cody         ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
2053e971aa12SJeff Cody         if (ret) {
2054e971aa12SJeff Cody             if (local_err != NULL) {
2055e971aa12SJeff Cody                 error_propagate(errp, local_err);
2056e971aa12SJeff Cody             } else {
2057d8b6895fSLuiz Capitulino                 error_setg(errp, "failed while preparing to reopen image '%s'",
2058e971aa12SJeff Cody                            reopen_state->bs->filename);
2059e971aa12SJeff Cody             }
2060e971aa12SJeff Cody             goto error;
2061e971aa12SJeff Cody         }
2062e971aa12SJeff Cody     } else {
2063e971aa12SJeff Cody         /* It is currently mandatory to have a bdrv_reopen_prepare()
2064e971aa12SJeff Cody          * handler for each supported drv. */
206581e5f78aSAlberto Garcia         error_setg(errp, "Block format '%s' used by node '%s' "
206681e5f78aSAlberto Garcia                    "does not support reopening files", drv->format_name,
206781e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(reopen_state->bs));
2068e971aa12SJeff Cody         ret = -1;
2069e971aa12SJeff Cody         goto error;
2070e971aa12SJeff Cody     }
2071e971aa12SJeff Cody 
20724d2cb092SKevin Wolf     /* Options that are not handled are only okay if they are unchanged
20734d2cb092SKevin Wolf      * compared to the old state. It is expected that some options are only
20744d2cb092SKevin Wolf      * used for the initial open, but not reopen (e.g. filename) */
20754d2cb092SKevin Wolf     if (qdict_size(reopen_state->options)) {
20764d2cb092SKevin Wolf         const QDictEntry *entry = qdict_first(reopen_state->options);
20774d2cb092SKevin Wolf 
20784d2cb092SKevin Wolf         do {
20794d2cb092SKevin Wolf             QString *new_obj = qobject_to_qstring(entry->value);
20804d2cb092SKevin Wolf             const char *new = qstring_get_str(new_obj);
20814d2cb092SKevin Wolf             const char *old = qdict_get_try_str(reopen_state->bs->options,
20824d2cb092SKevin Wolf                                                 entry->key);
20834d2cb092SKevin Wolf 
20844d2cb092SKevin Wolf             if (!old || strcmp(new, old)) {
20854d2cb092SKevin Wolf                 error_setg(errp, "Cannot change the option '%s'", entry->key);
20864d2cb092SKevin Wolf                 ret = -EINVAL;
20874d2cb092SKevin Wolf                 goto error;
20884d2cb092SKevin Wolf             }
20894d2cb092SKevin Wolf         } while ((entry = qdict_next(reopen_state->options, entry)));
20904d2cb092SKevin Wolf     }
20914d2cb092SKevin Wolf 
2092e971aa12SJeff Cody     ret = 0;
2093e971aa12SJeff Cody 
2094e971aa12SJeff Cody error:
2095ccf9dc07SKevin Wolf     qemu_opts_del(opts);
2096e971aa12SJeff Cody     return ret;
2097e971aa12SJeff Cody }
2098e971aa12SJeff Cody 
2099e971aa12SJeff Cody /*
2100e971aa12SJeff Cody  * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
2101e971aa12SJeff Cody  * makes them final by swapping the staging BlockDriverState contents into
2102e971aa12SJeff Cody  * the active BlockDriverState contents.
2103e971aa12SJeff Cody  */
2104e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state)
2105e971aa12SJeff Cody {
2106e971aa12SJeff Cody     BlockDriver *drv;
2107e971aa12SJeff Cody 
2108e971aa12SJeff Cody     assert(reopen_state != NULL);
2109e971aa12SJeff Cody     drv = reopen_state->bs->drv;
2110e971aa12SJeff Cody     assert(drv != NULL);
2111e971aa12SJeff Cody 
2112e971aa12SJeff Cody     /* If there are any driver level actions to take */
2113e971aa12SJeff Cody     if (drv->bdrv_reopen_commit) {
2114e971aa12SJeff Cody         drv->bdrv_reopen_commit(reopen_state);
2115e971aa12SJeff Cody     }
2116e971aa12SJeff Cody 
2117e971aa12SJeff Cody     /* set BDS specific flags now */
2118145f598eSKevin Wolf     QDECREF(reopen_state->bs->explicit_options);
2119145f598eSKevin Wolf 
2120145f598eSKevin Wolf     reopen_state->bs->explicit_options   = reopen_state->explicit_options;
2121e971aa12SJeff Cody     reopen_state->bs->open_flags         = reopen_state->flags;
2122e971aa12SJeff Cody     reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
2123355ef4acSKevin Wolf 
21243baca891SKevin Wolf     bdrv_refresh_limits(reopen_state->bs, NULL);
2125e971aa12SJeff Cody }
2126e971aa12SJeff Cody 
2127e971aa12SJeff Cody /*
2128e971aa12SJeff Cody  * Abort the reopen, and delete and free the staged changes in
2129e971aa12SJeff Cody  * reopen_state
2130e971aa12SJeff Cody  */
2131e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state)
2132e971aa12SJeff Cody {
2133e971aa12SJeff Cody     BlockDriver *drv;
2134e971aa12SJeff Cody 
2135e971aa12SJeff Cody     assert(reopen_state != NULL);
2136e971aa12SJeff Cody     drv = reopen_state->bs->drv;
2137e971aa12SJeff Cody     assert(drv != NULL);
2138e971aa12SJeff Cody 
2139e971aa12SJeff Cody     if (drv->bdrv_reopen_abort) {
2140e971aa12SJeff Cody         drv->bdrv_reopen_abort(reopen_state);
2141e971aa12SJeff Cody     }
2142145f598eSKevin Wolf 
2143145f598eSKevin Wolf     QDECREF(reopen_state->explicit_options);
2144e971aa12SJeff Cody }
2145e971aa12SJeff Cody 
2146e971aa12SJeff Cody 
214764dff520SMax Reitz static void bdrv_close(BlockDriverState *bs)
2148fc01f7e7Sbellard {
214933384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
215033384421SMax Reitz 
2151ca9bd24cSMax Reitz     assert(!bs->job);
215230f55fb8SMax Reitz     assert(!bs->refcnt);
215399b7e775SAlberto Garcia 
2154fc27291dSPaolo Bonzini     bdrv_drained_begin(bs); /* complete I/O */
215558fda173SStefan Hajnoczi     bdrv_flush(bs);
215653ec73e2SFam Zheng     bdrv_drain(bs); /* in case flush left pending I/O */
2157fc27291dSPaolo Bonzini 
2158c5acdc9aSMax Reitz     bdrv_release_named_dirty_bitmaps(bs);
2159c5acdc9aSMax Reitz     assert(QLIST_EMPTY(&bs->dirty_bitmaps));
2160c5acdc9aSMax Reitz 
21613cbc002cSPaolo Bonzini     if (bs->drv) {
21626e93e7c4SKevin Wolf         BdrvChild *child, *next;
21636e93e7c4SKevin Wolf 
21649a7dedbcSKevin Wolf         bs->drv->bdrv_close(bs);
21659a4f4c31SKevin Wolf         bs->drv = NULL;
21669a7dedbcSKevin Wolf 
21679a7dedbcSKevin Wolf         bdrv_set_backing_hd(bs, NULL);
21689a7dedbcSKevin Wolf 
21699a4f4c31SKevin Wolf         if (bs->file != NULL) {
21709a4f4c31SKevin Wolf             bdrv_unref_child(bs, bs->file);
21719a4f4c31SKevin Wolf             bs->file = NULL;
21729a4f4c31SKevin Wolf         }
21739a4f4c31SKevin Wolf 
21746e93e7c4SKevin Wolf         QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
217533a60407SKevin Wolf             /* TODO Remove bdrv_unref() from drivers' close function and use
217633a60407SKevin Wolf              * bdrv_unref_child() here */
2177bddcec37SKevin Wolf             if (child->bs->inherits_from == bs) {
2178bddcec37SKevin Wolf                 child->bs->inherits_from = NULL;
2179bddcec37SKevin Wolf             }
218033a60407SKevin Wolf             bdrv_detach_child(child);
21816e93e7c4SKevin Wolf         }
21826e93e7c4SKevin Wolf 
21837267c094SAnthony Liguori         g_free(bs->opaque);
2184ea2384d3Sbellard         bs->opaque = NULL;
218553fec9d3SStefan Hajnoczi         bs->copy_on_read = 0;
2186a275fa42SPaolo Bonzini         bs->backing_file[0] = '\0';
2187a275fa42SPaolo Bonzini         bs->backing_format[0] = '\0';
21886405875cSPaolo Bonzini         bs->total_sectors = 0;
218954115412SEric Blake         bs->encrypted = false;
219054115412SEric Blake         bs->valid_key = false;
219154115412SEric Blake         bs->sg = false;
2192de9c0cecSKevin Wolf         QDECREF(bs->options);
2193145f598eSKevin Wolf         QDECREF(bs->explicit_options);
2194de9c0cecSKevin Wolf         bs->options = NULL;
219591af7014SMax Reitz         QDECREF(bs->full_open_options);
219691af7014SMax Reitz         bs->full_open_options = NULL;
21979ca11154SPavel Hrdina     }
219866f82ceeSKevin Wolf 
219933384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
220033384421SMax Reitz         g_free(ban);
220133384421SMax Reitz     }
220233384421SMax Reitz     QLIST_INIT(&bs->aio_notifiers);
2203fc27291dSPaolo Bonzini     bdrv_drained_end(bs);
2204b338082bSbellard }
2205b338082bSbellard 
22062bc93fedSMORITA Kazutaka void bdrv_close_all(void)
22072bc93fedSMORITA Kazutaka {
2208a1a2af07SKevin Wolf     block_job_cancel_sync_all();
22092bc93fedSMORITA Kazutaka 
2210ca9bd24cSMax Reitz     /* Drop references from requests still in flight, such as canceled block
2211ca9bd24cSMax Reitz      * jobs whose AIO context has not been polled yet */
2212ca9bd24cSMax Reitz     bdrv_drain_all();
2213ca9bd24cSMax Reitz 
2214ca9bd24cSMax Reitz     blk_remove_all_bs();
2215ca9bd24cSMax Reitz     blockdev_close_all_bdrv_states();
2216ca9bd24cSMax Reitz 
2217a1a2af07SKevin Wolf     assert(QTAILQ_EMPTY(&all_bdrv_states));
22182bc93fedSMORITA Kazutaka }
22192bc93fedSMORITA Kazutaka 
2220dd62f1caSKevin Wolf static void change_parent_backing_link(BlockDriverState *from,
2221dd62f1caSKevin Wolf                                        BlockDriverState *to)
2222dd62f1caSKevin Wolf {
22239bd910e2SMax Reitz     BdrvChild *c, *next, *to_c;
2224dd62f1caSKevin Wolf 
2225dd62f1caSKevin Wolf     QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
22269bd910e2SMax Reitz         if (c->role == &child_backing) {
22279bd910e2SMax Reitz             /* @from is generally not allowed to be a backing file, except for
22289bd910e2SMax Reitz              * when @to is the overlay. In that case, @from may not be replaced
22299bd910e2SMax Reitz              * by @to as @to's backing node. */
22309bd910e2SMax Reitz             QLIST_FOREACH(to_c, &to->children, next) {
22319bd910e2SMax Reitz                 if (to_c == c) {
22329bd910e2SMax Reitz                     break;
22339bd910e2SMax Reitz                 }
22349bd910e2SMax Reitz             }
22359bd910e2SMax Reitz             if (to_c) {
22369bd910e2SMax Reitz                 continue;
22379bd910e2SMax Reitz             }
22389bd910e2SMax Reitz         }
22399bd910e2SMax Reitz 
2240dd62f1caSKevin Wolf         assert(c->role != &child_backing);
2241dd62f1caSKevin Wolf         bdrv_ref(to);
2242e9740bc6SKevin Wolf         bdrv_replace_child(c, to);
2243dd62f1caSKevin Wolf         bdrv_unref(from);
2244dd62f1caSKevin Wolf     }
2245dd62f1caSKevin Wolf }
2246dd62f1caSKevin Wolf 
22478802d1fdSJeff Cody /*
22488802d1fdSJeff Cody  * Add new bs contents at the top of an image chain while the chain is
22498802d1fdSJeff Cody  * live, while keeping required fields on the top layer.
22508802d1fdSJeff Cody  *
22518802d1fdSJeff Cody  * This will modify the BlockDriverState fields, and swap contents
22528802d1fdSJeff Cody  * between bs_new and bs_top. Both bs_new and bs_top are modified.
22538802d1fdSJeff Cody  *
2254bfb197e0SMarkus Armbruster  * bs_new must not be attached to a BlockBackend.
2255f6801b83SJeff Cody  *
22568802d1fdSJeff Cody  * This function does not create any image files.
2257dd62f1caSKevin Wolf  *
2258dd62f1caSKevin Wolf  * bdrv_append() takes ownership of a bs_new reference and unrefs it because
2259dd62f1caSKevin Wolf  * that's what the callers commonly need. bs_new will be referenced by the old
2260dd62f1caSKevin Wolf  * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
2261dd62f1caSKevin Wolf  * reference of its own, it must call bdrv_ref().
22628802d1fdSJeff Cody  */
22638802d1fdSJeff Cody void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top)
22648802d1fdSJeff Cody {
2265dd62f1caSKevin Wolf     assert(!bdrv_requests_pending(bs_top));
2266dd62f1caSKevin Wolf     assert(!bdrv_requests_pending(bs_new));
22678802d1fdSJeff Cody 
2268dd62f1caSKevin Wolf     bdrv_ref(bs_top);
2269dd62f1caSKevin Wolf 
227027ccdd52SKevin Wolf     change_parent_backing_link(bs_top, bs_new);
2271dd62f1caSKevin Wolf     bdrv_set_backing_hd(bs_new, bs_top);
2272dd62f1caSKevin Wolf     bdrv_unref(bs_top);
2273dd62f1caSKevin Wolf 
2274dd62f1caSKevin Wolf     /* bs_new is now referenced by its new parents, we don't need the
2275dd62f1caSKevin Wolf      * additional reference any more. */
2276dd62f1caSKevin Wolf     bdrv_unref(bs_new);
22778802d1fdSJeff Cody }
22788802d1fdSJeff Cody 
22793f09bfbcSKevin Wolf void bdrv_replace_in_backing_chain(BlockDriverState *old, BlockDriverState *new)
22803f09bfbcSKevin Wolf {
22813f09bfbcSKevin Wolf     assert(!bdrv_requests_pending(old));
22823f09bfbcSKevin Wolf     assert(!bdrv_requests_pending(new));
22833f09bfbcSKevin Wolf 
22843f09bfbcSKevin Wolf     bdrv_ref(old);
22853f09bfbcSKevin Wolf 
22863f09bfbcSKevin Wolf     change_parent_backing_link(old, new);
22873f09bfbcSKevin Wolf 
22883f09bfbcSKevin Wolf     bdrv_unref(old);
22893f09bfbcSKevin Wolf }
22903f09bfbcSKevin Wolf 
22914f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs)
2292b338082bSbellard {
22933e914655SPaolo Bonzini     assert(!bs->job);
22943718d8abSFam Zheng     assert(bdrv_op_blocker_is_empty(bs));
22954f6fd349SFam Zheng     assert(!bs->refcnt);
229618846deeSMarkus Armbruster 
2297e1b5c52eSStefan Hajnoczi     bdrv_close(bs);
2298e1b5c52eSStefan Hajnoczi 
22991b7bdbc1SStefan Hajnoczi     /* remove from list, if necessary */
230063eaaae0SKevin Wolf     if (bs->node_name[0] != '\0') {
230163eaaae0SKevin Wolf         QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
230263eaaae0SKevin Wolf     }
23032c1d04e0SMax Reitz     QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
23042c1d04e0SMax Reitz 
23057267c094SAnthony Liguori     g_free(bs);
2306fc01f7e7Sbellard }
2307fc01f7e7Sbellard 
2308e97fc193Saliguori /*
2309e97fc193Saliguori  * Run consistency checks on an image
2310e97fc193Saliguori  *
2311e076f338SKevin Wolf  * Returns 0 if the check could be completed (it doesn't mean that the image is
2312a1c7273bSStefan Weil  * free of errors) or -errno when an internal error occurred. The results of the
2313e076f338SKevin Wolf  * check are stored in res.
2314e97fc193Saliguori  */
23154534ff54SKevin Wolf int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix)
2316e97fc193Saliguori {
2317908bcd54SMax Reitz     if (bs->drv == NULL) {
2318908bcd54SMax Reitz         return -ENOMEDIUM;
2319908bcd54SMax Reitz     }
2320e97fc193Saliguori     if (bs->drv->bdrv_check == NULL) {
2321e97fc193Saliguori         return -ENOTSUP;
2322e97fc193Saliguori     }
2323e97fc193Saliguori 
2324e076f338SKevin Wolf     memset(res, 0, sizeof(*res));
23254534ff54SKevin Wolf     return bs->drv->bdrv_check(bs, res, fix);
2326e97fc193Saliguori }
2327e97fc193Saliguori 
2328756e6736SKevin Wolf /*
2329756e6736SKevin Wolf  * Return values:
2330756e6736SKevin Wolf  * 0        - success
2331756e6736SKevin Wolf  * -EINVAL  - backing format specified, but no file
2332756e6736SKevin Wolf  * -ENOSPC  - can't update the backing file because no space is left in the
2333756e6736SKevin Wolf  *            image file header
2334756e6736SKevin Wolf  * -ENOTSUP - format driver doesn't support changing the backing file
2335756e6736SKevin Wolf  */
2336756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs,
2337756e6736SKevin Wolf     const char *backing_file, const char *backing_fmt)
2338756e6736SKevin Wolf {
2339756e6736SKevin Wolf     BlockDriver *drv = bs->drv;
2340469ef350SPaolo Bonzini     int ret;
2341756e6736SKevin Wolf 
23425f377794SPaolo Bonzini     /* Backing file format doesn't make sense without a backing file */
23435f377794SPaolo Bonzini     if (backing_fmt && !backing_file) {
23445f377794SPaolo Bonzini         return -EINVAL;
23455f377794SPaolo Bonzini     }
23465f377794SPaolo Bonzini 
2347756e6736SKevin Wolf     if (drv->bdrv_change_backing_file != NULL) {
2348469ef350SPaolo Bonzini         ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
2349756e6736SKevin Wolf     } else {
2350469ef350SPaolo Bonzini         ret = -ENOTSUP;
2351756e6736SKevin Wolf     }
2352469ef350SPaolo Bonzini 
2353469ef350SPaolo Bonzini     if (ret == 0) {
2354469ef350SPaolo Bonzini         pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
2355469ef350SPaolo Bonzini         pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
2356469ef350SPaolo Bonzini     }
2357469ef350SPaolo Bonzini     return ret;
2358756e6736SKevin Wolf }
2359756e6736SKevin Wolf 
23606ebdcee2SJeff Cody /*
23616ebdcee2SJeff Cody  * Finds the image layer in the chain that has 'bs' as its backing file.
23626ebdcee2SJeff Cody  *
23636ebdcee2SJeff Cody  * active is the current topmost image.
23646ebdcee2SJeff Cody  *
23656ebdcee2SJeff Cody  * Returns NULL if bs is not found in active's image chain,
23666ebdcee2SJeff Cody  * or if active == bs.
23674caf0fcdSJeff Cody  *
23684caf0fcdSJeff Cody  * Returns the bottommost base image if bs == NULL.
23696ebdcee2SJeff Cody  */
23706ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
23716ebdcee2SJeff Cody                                     BlockDriverState *bs)
23726ebdcee2SJeff Cody {
2373760e0063SKevin Wolf     while (active && bs != backing_bs(active)) {
2374760e0063SKevin Wolf         active = backing_bs(active);
23756ebdcee2SJeff Cody     }
23766ebdcee2SJeff Cody 
23774caf0fcdSJeff Cody     return active;
23786ebdcee2SJeff Cody }
23796ebdcee2SJeff Cody 
23804caf0fcdSJeff Cody /* Given a BDS, searches for the base layer. */
23814caf0fcdSJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs)
23824caf0fcdSJeff Cody {
23834caf0fcdSJeff Cody     return bdrv_find_overlay(bs, NULL);
23846ebdcee2SJeff Cody }
23856ebdcee2SJeff Cody 
23866ebdcee2SJeff Cody /*
23876ebdcee2SJeff Cody  * Drops images above 'base' up to and including 'top', and sets the image
23886ebdcee2SJeff Cody  * above 'top' to have base as its backing file.
23896ebdcee2SJeff Cody  *
23906ebdcee2SJeff Cody  * Requires that the overlay to 'top' is opened r/w, so that the backing file
23916ebdcee2SJeff Cody  * information in 'bs' can be properly updated.
23926ebdcee2SJeff Cody  *
23936ebdcee2SJeff Cody  * E.g., this will convert the following chain:
23946ebdcee2SJeff Cody  * bottom <- base <- intermediate <- top <- active
23956ebdcee2SJeff Cody  *
23966ebdcee2SJeff Cody  * to
23976ebdcee2SJeff Cody  *
23986ebdcee2SJeff Cody  * bottom <- base <- active
23996ebdcee2SJeff Cody  *
24006ebdcee2SJeff Cody  * It is allowed for bottom==base, in which case it converts:
24016ebdcee2SJeff Cody  *
24026ebdcee2SJeff Cody  * base <- intermediate <- top <- active
24036ebdcee2SJeff Cody  *
24046ebdcee2SJeff Cody  * to
24056ebdcee2SJeff Cody  *
24066ebdcee2SJeff Cody  * base <- active
24076ebdcee2SJeff Cody  *
240854e26900SJeff Cody  * If backing_file_str is non-NULL, it will be used when modifying top's
240954e26900SJeff Cody  * overlay image metadata.
241054e26900SJeff Cody  *
24116ebdcee2SJeff Cody  * Error conditions:
24126ebdcee2SJeff Cody  *  if active == top, that is considered an error
24136ebdcee2SJeff Cody  *
24146ebdcee2SJeff Cody  */
24156ebdcee2SJeff Cody int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top,
241654e26900SJeff Cody                            BlockDriverState *base, const char *backing_file_str)
24176ebdcee2SJeff Cody {
24186ebdcee2SJeff Cody     BlockDriverState *new_top_bs = NULL;
24196ebdcee2SJeff Cody     int ret = -EIO;
24206ebdcee2SJeff Cody 
24216ebdcee2SJeff Cody     if (!top->drv || !base->drv) {
24226ebdcee2SJeff Cody         goto exit;
24236ebdcee2SJeff Cody     }
24246ebdcee2SJeff Cody 
24256ebdcee2SJeff Cody     new_top_bs = bdrv_find_overlay(active, top);
24266ebdcee2SJeff Cody 
24276ebdcee2SJeff Cody     if (new_top_bs == NULL) {
24286ebdcee2SJeff Cody         /* we could not find the image above 'top', this is an error */
24296ebdcee2SJeff Cody         goto exit;
24306ebdcee2SJeff Cody     }
24316ebdcee2SJeff Cody 
2432760e0063SKevin Wolf     /* special case of new_top_bs->backing->bs already pointing to base - nothing
24336ebdcee2SJeff Cody      * to do, no intermediate images */
2434760e0063SKevin Wolf     if (backing_bs(new_top_bs) == base) {
24356ebdcee2SJeff Cody         ret = 0;
24366ebdcee2SJeff Cody         goto exit;
24376ebdcee2SJeff Cody     }
24386ebdcee2SJeff Cody 
24395db15a57SKevin Wolf     /* Make sure that base is in the backing chain of top */
24405db15a57SKevin Wolf     if (!bdrv_chain_contains(top, base)) {
24416ebdcee2SJeff Cody         goto exit;
24426ebdcee2SJeff Cody     }
24436ebdcee2SJeff Cody 
24446ebdcee2SJeff Cody     /* success - we can delete the intermediate states, and link top->base */
24455db15a57SKevin Wolf     backing_file_str = backing_file_str ? backing_file_str : base->filename;
244654e26900SJeff Cody     ret = bdrv_change_backing_file(new_top_bs, backing_file_str,
24475db15a57SKevin Wolf                                    base->drv ? base->drv->format_name : "");
24486ebdcee2SJeff Cody     if (ret) {
24496ebdcee2SJeff Cody         goto exit;
24506ebdcee2SJeff Cody     }
24515db15a57SKevin Wolf     bdrv_set_backing_hd(new_top_bs, base);
24526ebdcee2SJeff Cody 
24536ebdcee2SJeff Cody     ret = 0;
24546ebdcee2SJeff Cody exit:
24556ebdcee2SJeff Cody     return ret;
24566ebdcee2SJeff Cody }
24576ebdcee2SJeff Cody 
245883f64091Sbellard /**
245983f64091Sbellard  * Truncate file to 'offset' bytes (needed only for file protocols)
246083f64091Sbellard  */
246183f64091Sbellard int bdrv_truncate(BlockDriverState *bs, int64_t offset)
246283f64091Sbellard {
246383f64091Sbellard     BlockDriver *drv = bs->drv;
246451762288SStefan Hajnoczi     int ret;
246583f64091Sbellard     if (!drv)
246619cb3738Sbellard         return -ENOMEDIUM;
246783f64091Sbellard     if (!drv->bdrv_truncate)
246883f64091Sbellard         return -ENOTSUP;
246959f2689dSNaphtali Sprei     if (bs->read_only)
247059f2689dSNaphtali Sprei         return -EACCES;
24719c75e168SJeff Cody 
247251762288SStefan Hajnoczi     ret = drv->bdrv_truncate(bs, offset);
247351762288SStefan Hajnoczi     if (ret == 0) {
247451762288SStefan Hajnoczi         ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
2475ce1ffea8SJohn Snow         bdrv_dirty_bitmap_truncate(bs);
24765c8cab48SKevin Wolf         bdrv_parent_cb_resize(bs);
2477*3ff2f67aSEvgeny Yakovlev         ++bs->write_gen;
247851762288SStefan Hajnoczi     }
247951762288SStefan Hajnoczi     return ret;
248083f64091Sbellard }
248183f64091Sbellard 
248283f64091Sbellard /**
24834a1d5e1fSFam Zheng  * Length of a allocated file in bytes. Sparse files are counted by actual
24844a1d5e1fSFam Zheng  * allocated space. Return < 0 if error or unknown.
24854a1d5e1fSFam Zheng  */
24864a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
24874a1d5e1fSFam Zheng {
24884a1d5e1fSFam Zheng     BlockDriver *drv = bs->drv;
24894a1d5e1fSFam Zheng     if (!drv) {
24904a1d5e1fSFam Zheng         return -ENOMEDIUM;
24914a1d5e1fSFam Zheng     }
24924a1d5e1fSFam Zheng     if (drv->bdrv_get_allocated_file_size) {
24934a1d5e1fSFam Zheng         return drv->bdrv_get_allocated_file_size(bs);
24944a1d5e1fSFam Zheng     }
24954a1d5e1fSFam Zheng     if (bs->file) {
24969a4f4c31SKevin Wolf         return bdrv_get_allocated_file_size(bs->file->bs);
24974a1d5e1fSFam Zheng     }
24984a1d5e1fSFam Zheng     return -ENOTSUP;
24994a1d5e1fSFam Zheng }
25004a1d5e1fSFam Zheng 
25014a1d5e1fSFam Zheng /**
250265a9bb25SMarkus Armbruster  * Return number of sectors on success, -errno on error.
250383f64091Sbellard  */
250465a9bb25SMarkus Armbruster int64_t bdrv_nb_sectors(BlockDriverState *bs)
250583f64091Sbellard {
250683f64091Sbellard     BlockDriver *drv = bs->drv;
250765a9bb25SMarkus Armbruster 
250883f64091Sbellard     if (!drv)
250919cb3738Sbellard         return -ENOMEDIUM;
251051762288SStefan Hajnoczi 
2511b94a2610SKevin Wolf     if (drv->has_variable_length) {
2512b94a2610SKevin Wolf         int ret = refresh_total_sectors(bs, bs->total_sectors);
2513b94a2610SKevin Wolf         if (ret < 0) {
2514b94a2610SKevin Wolf             return ret;
2515fc01f7e7Sbellard         }
251646a4e4e6SStefan Hajnoczi     }
251765a9bb25SMarkus Armbruster     return bs->total_sectors;
251865a9bb25SMarkus Armbruster }
251965a9bb25SMarkus Armbruster 
252065a9bb25SMarkus Armbruster /**
252165a9bb25SMarkus Armbruster  * Return length in bytes on success, -errno on error.
252265a9bb25SMarkus Armbruster  * The length is always a multiple of BDRV_SECTOR_SIZE.
252365a9bb25SMarkus Armbruster  */
252465a9bb25SMarkus Armbruster int64_t bdrv_getlength(BlockDriverState *bs)
252565a9bb25SMarkus Armbruster {
252665a9bb25SMarkus Armbruster     int64_t ret = bdrv_nb_sectors(bs);
252765a9bb25SMarkus Armbruster 
25284a9c9ea0SFam Zheng     ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
252965a9bb25SMarkus Armbruster     return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
253046a4e4e6SStefan Hajnoczi }
2531fc01f7e7Sbellard 
253219cb3738Sbellard /* return 0 as number of sectors if no device present or error */
253396b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
2534fc01f7e7Sbellard {
253565a9bb25SMarkus Armbruster     int64_t nb_sectors = bdrv_nb_sectors(bs);
253665a9bb25SMarkus Armbruster 
253765a9bb25SMarkus Armbruster     *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
2538fc01f7e7Sbellard }
2539cf98951bSbellard 
254054115412SEric Blake bool bdrv_is_read_only(BlockDriverState *bs)
2541b338082bSbellard {
2542b338082bSbellard     return bs->read_only;
2543b338082bSbellard }
2544b338082bSbellard 
254554115412SEric Blake bool bdrv_is_sg(BlockDriverState *bs)
2546985a03b0Sths {
2547985a03b0Sths     return bs->sg;
2548985a03b0Sths }
2549985a03b0Sths 
255054115412SEric Blake bool bdrv_is_encrypted(BlockDriverState *bs)
2551ea2384d3Sbellard {
2552760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted) {
255354115412SEric Blake         return true;
2554760e0063SKevin Wolf     }
2555ea2384d3Sbellard     return bs->encrypted;
2556ea2384d3Sbellard }
2557ea2384d3Sbellard 
255854115412SEric Blake bool bdrv_key_required(BlockDriverState *bs)
2559c0f4ce77Saliguori {
2560760e0063SKevin Wolf     BdrvChild *backing = bs->backing;
2561c0f4ce77Saliguori 
2562760e0063SKevin Wolf     if (backing && backing->bs->encrypted && !backing->bs->valid_key) {
256354115412SEric Blake         return true;
2564760e0063SKevin Wolf     }
2565c0f4ce77Saliguori     return (bs->encrypted && !bs->valid_key);
2566c0f4ce77Saliguori }
2567c0f4ce77Saliguori 
2568ea2384d3Sbellard int bdrv_set_key(BlockDriverState *bs, const char *key)
2569ea2384d3Sbellard {
2570ea2384d3Sbellard     int ret;
2571760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted) {
2572760e0063SKevin Wolf         ret = bdrv_set_key(bs->backing->bs, key);
2573ea2384d3Sbellard         if (ret < 0)
2574ea2384d3Sbellard             return ret;
2575ea2384d3Sbellard         if (!bs->encrypted)
2576ea2384d3Sbellard             return 0;
2577ea2384d3Sbellard     }
2578fd04a2aeSShahar Havivi     if (!bs->encrypted) {
2579fd04a2aeSShahar Havivi         return -EINVAL;
2580fd04a2aeSShahar Havivi     } else if (!bs->drv || !bs->drv->bdrv_set_key) {
2581fd04a2aeSShahar Havivi         return -ENOMEDIUM;
2582fd04a2aeSShahar Havivi     }
2583c0f4ce77Saliguori     ret = bs->drv->bdrv_set_key(bs, key);
2584bb5fc20fSaliguori     if (ret < 0) {
258554115412SEric Blake         bs->valid_key = false;
2586bb5fc20fSaliguori     } else if (!bs->valid_key) {
2587bb5fc20fSaliguori         /* call the change callback now, we skipped it on open */
258854115412SEric Blake         bs->valid_key = true;
25895c8cab48SKevin Wolf         bdrv_parent_cb_change_media(bs, true);
2590bb5fc20fSaliguori     }
2591c0f4ce77Saliguori     return ret;
2592ea2384d3Sbellard }
2593ea2384d3Sbellard 
25944d2855a3SMarkus Armbruster /*
25954d2855a3SMarkus Armbruster  * Provide an encryption key for @bs.
25964d2855a3SMarkus Armbruster  * If @key is non-null:
25974d2855a3SMarkus Armbruster  *     If @bs is not encrypted, fail.
25984d2855a3SMarkus Armbruster  *     Else if the key is invalid, fail.
25994d2855a3SMarkus Armbruster  *     Else set @bs's key to @key, replacing the existing key, if any.
26004d2855a3SMarkus Armbruster  * If @key is null:
26014d2855a3SMarkus Armbruster  *     If @bs is encrypted and still lacks a key, fail.
26024d2855a3SMarkus Armbruster  *     Else do nothing.
26034d2855a3SMarkus Armbruster  * On failure, store an error object through @errp if non-null.
26044d2855a3SMarkus Armbruster  */
26054d2855a3SMarkus Armbruster void bdrv_add_key(BlockDriverState *bs, const char *key, Error **errp)
26064d2855a3SMarkus Armbruster {
26074d2855a3SMarkus Armbruster     if (key) {
26084d2855a3SMarkus Armbruster         if (!bdrv_is_encrypted(bs)) {
260981e5f78aSAlberto Garcia             error_setg(errp, "Node '%s' is not encrypted",
261081e5f78aSAlberto Garcia                       bdrv_get_device_or_node_name(bs));
26114d2855a3SMarkus Armbruster         } else if (bdrv_set_key(bs, key) < 0) {
2612c6bd8c70SMarkus Armbruster             error_setg(errp, QERR_INVALID_PASSWORD);
26134d2855a3SMarkus Armbruster         }
26144d2855a3SMarkus Armbruster     } else {
26154d2855a3SMarkus Armbruster         if (bdrv_key_required(bs)) {
2616b1ca6391SMarkus Armbruster             error_set(errp, ERROR_CLASS_DEVICE_ENCRYPTED,
2617b1ca6391SMarkus Armbruster                       "'%s' (%s) is encrypted",
261881e5f78aSAlberto Garcia                       bdrv_get_device_or_node_name(bs),
26194d2855a3SMarkus Armbruster                       bdrv_get_encrypted_filename(bs));
26204d2855a3SMarkus Armbruster         }
26214d2855a3SMarkus Armbruster     }
26224d2855a3SMarkus Armbruster }
26234d2855a3SMarkus Armbruster 
2624f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs)
2625ea2384d3Sbellard {
2626f8d6bba1SMarkus Armbruster     return bs->drv ? bs->drv->format_name : NULL;
2627ea2384d3Sbellard }
2628ea2384d3Sbellard 
2629ada42401SStefan Hajnoczi static int qsort_strcmp(const void *a, const void *b)
2630ada42401SStefan Hajnoczi {
2631ada42401SStefan Hajnoczi     return strcmp(a, b);
2632ada42401SStefan Hajnoczi }
2633ada42401SStefan Hajnoczi 
2634ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
2635ea2384d3Sbellard                          void *opaque)
2636ea2384d3Sbellard {
2637ea2384d3Sbellard     BlockDriver *drv;
2638e855e4fbSJeff Cody     int count = 0;
2639ada42401SStefan Hajnoczi     int i;
2640e855e4fbSJeff Cody     const char **formats = NULL;
2641ea2384d3Sbellard 
26428a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv, &bdrv_drivers, list) {
2643e855e4fbSJeff Cody         if (drv->format_name) {
2644e855e4fbSJeff Cody             bool found = false;
2645e855e4fbSJeff Cody             int i = count;
2646e855e4fbSJeff Cody             while (formats && i && !found) {
2647e855e4fbSJeff Cody                 found = !strcmp(formats[--i], drv->format_name);
2648e855e4fbSJeff Cody             }
2649e855e4fbSJeff Cody 
2650e855e4fbSJeff Cody             if (!found) {
26515839e53bSMarkus Armbruster                 formats = g_renew(const char *, formats, count + 1);
2652e855e4fbSJeff Cody                 formats[count++] = drv->format_name;
2653ea2384d3Sbellard             }
2654ea2384d3Sbellard         }
2655e855e4fbSJeff Cody     }
2656ada42401SStefan Hajnoczi 
2657ada42401SStefan Hajnoczi     qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
2658ada42401SStefan Hajnoczi 
2659ada42401SStefan Hajnoczi     for (i = 0; i < count; i++) {
2660ada42401SStefan Hajnoczi         it(opaque, formats[i]);
2661ada42401SStefan Hajnoczi     }
2662ada42401SStefan Hajnoczi 
2663e855e4fbSJeff Cody     g_free(formats);
2664e855e4fbSJeff Cody }
2665ea2384d3Sbellard 
2666dc364f4cSBenoît Canet /* This function is to find a node in the bs graph */
2667dc364f4cSBenoît Canet BlockDriverState *bdrv_find_node(const char *node_name)
2668dc364f4cSBenoît Canet {
2669dc364f4cSBenoît Canet     BlockDriverState *bs;
2670dc364f4cSBenoît Canet 
2671dc364f4cSBenoît Canet     assert(node_name);
2672dc364f4cSBenoît Canet 
2673dc364f4cSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
2674dc364f4cSBenoît Canet         if (!strcmp(node_name, bs->node_name)) {
2675dc364f4cSBenoît Canet             return bs;
2676dc364f4cSBenoît Canet         }
2677dc364f4cSBenoît Canet     }
2678dc364f4cSBenoît Canet     return NULL;
2679dc364f4cSBenoît Canet }
2680dc364f4cSBenoît Canet 
2681c13163fbSBenoît Canet /* Put this QMP function here so it can access the static graph_bdrv_states. */
2682d5a8ee60SAlberto Garcia BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
2683c13163fbSBenoît Canet {
2684c13163fbSBenoît Canet     BlockDeviceInfoList *list, *entry;
2685c13163fbSBenoît Canet     BlockDriverState *bs;
2686c13163fbSBenoît Canet 
2687c13163fbSBenoît Canet     list = NULL;
2688c13163fbSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
2689c83f9fbaSKevin Wolf         BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp);
2690d5a8ee60SAlberto Garcia         if (!info) {
2691d5a8ee60SAlberto Garcia             qapi_free_BlockDeviceInfoList(list);
2692d5a8ee60SAlberto Garcia             return NULL;
2693d5a8ee60SAlberto Garcia         }
2694c13163fbSBenoît Canet         entry = g_malloc0(sizeof(*entry));
2695d5a8ee60SAlberto Garcia         entry->value = info;
2696c13163fbSBenoît Canet         entry->next = list;
2697c13163fbSBenoît Canet         list = entry;
2698c13163fbSBenoît Canet     }
2699c13163fbSBenoît Canet 
2700c13163fbSBenoît Canet     return list;
2701c13163fbSBenoît Canet }
2702c13163fbSBenoît Canet 
270312d3ba82SBenoît Canet BlockDriverState *bdrv_lookup_bs(const char *device,
270412d3ba82SBenoît Canet                                  const char *node_name,
270512d3ba82SBenoît Canet                                  Error **errp)
270612d3ba82SBenoît Canet {
27077f06d47eSMarkus Armbruster     BlockBackend *blk;
27087f06d47eSMarkus Armbruster     BlockDriverState *bs;
270912d3ba82SBenoît Canet 
271012d3ba82SBenoît Canet     if (device) {
27117f06d47eSMarkus Armbruster         blk = blk_by_name(device);
271212d3ba82SBenoît Canet 
27137f06d47eSMarkus Armbruster         if (blk) {
27149f4ed6fbSAlberto Garcia             bs = blk_bs(blk);
27159f4ed6fbSAlberto Garcia             if (!bs) {
27165433c24fSMax Reitz                 error_setg(errp, "Device '%s' has no medium", device);
27175433c24fSMax Reitz             }
27185433c24fSMax Reitz 
27199f4ed6fbSAlberto Garcia             return bs;
272012d3ba82SBenoît Canet         }
2721dd67fa50SBenoît Canet     }
272212d3ba82SBenoît Canet 
2723dd67fa50SBenoît Canet     if (node_name) {
272412d3ba82SBenoît Canet         bs = bdrv_find_node(node_name);
272512d3ba82SBenoît Canet 
2726dd67fa50SBenoît Canet         if (bs) {
2727dd67fa50SBenoît Canet             return bs;
2728dd67fa50SBenoît Canet         }
272912d3ba82SBenoît Canet     }
273012d3ba82SBenoît Canet 
2731dd67fa50SBenoît Canet     error_setg(errp, "Cannot find device=%s nor node_name=%s",
2732dd67fa50SBenoît Canet                      device ? device : "",
2733dd67fa50SBenoît Canet                      node_name ? node_name : "");
2734dd67fa50SBenoît Canet     return NULL;
273512d3ba82SBenoît Canet }
273612d3ba82SBenoît Canet 
27375a6684d2SJeff Cody /* If 'base' is in the same chain as 'top', return true. Otherwise,
27385a6684d2SJeff Cody  * return false.  If either argument is NULL, return false. */
27395a6684d2SJeff Cody bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
27405a6684d2SJeff Cody {
27415a6684d2SJeff Cody     while (top && top != base) {
2742760e0063SKevin Wolf         top = backing_bs(top);
27435a6684d2SJeff Cody     }
27445a6684d2SJeff Cody 
27455a6684d2SJeff Cody     return top != NULL;
27465a6684d2SJeff Cody }
27475a6684d2SJeff Cody 
274804df765aSFam Zheng BlockDriverState *bdrv_next_node(BlockDriverState *bs)
274904df765aSFam Zheng {
275004df765aSFam Zheng     if (!bs) {
275104df765aSFam Zheng         return QTAILQ_FIRST(&graph_bdrv_states);
275204df765aSFam Zheng     }
275304df765aSFam Zheng     return QTAILQ_NEXT(bs, node_list);
275404df765aSFam Zheng }
275504df765aSFam Zheng 
275620a9e77dSFam Zheng const char *bdrv_get_node_name(const BlockDriverState *bs)
275720a9e77dSFam Zheng {
275820a9e77dSFam Zheng     return bs->node_name;
275920a9e77dSFam Zheng }
276020a9e77dSFam Zheng 
27611f0c461bSKevin Wolf const char *bdrv_get_parent_name(const BlockDriverState *bs)
27624c265bf9SKevin Wolf {
27634c265bf9SKevin Wolf     BdrvChild *c;
27644c265bf9SKevin Wolf     const char *name;
27654c265bf9SKevin Wolf 
27664c265bf9SKevin Wolf     /* If multiple parents have a name, just pick the first one. */
27674c265bf9SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
27684c265bf9SKevin Wolf         if (c->role->get_name) {
27694c265bf9SKevin Wolf             name = c->role->get_name(c);
27704c265bf9SKevin Wolf             if (name && *name) {
27714c265bf9SKevin Wolf                 return name;
27724c265bf9SKevin Wolf             }
27734c265bf9SKevin Wolf         }
27744c265bf9SKevin Wolf     }
27754c265bf9SKevin Wolf 
27764c265bf9SKevin Wolf     return NULL;
27774c265bf9SKevin Wolf }
27784c265bf9SKevin Wolf 
27797f06d47eSMarkus Armbruster /* TODO check what callers really want: bs->node_name or blk_name() */
2780bfb197e0SMarkus Armbruster const char *bdrv_get_device_name(const BlockDriverState *bs)
2781ea2384d3Sbellard {
27824c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: "";
2783ea2384d3Sbellard }
2784ea2384d3Sbellard 
27859b2aa84fSAlberto Garcia /* This can be used to identify nodes that might not have a device
27869b2aa84fSAlberto Garcia  * name associated. Since node and device names live in the same
27879b2aa84fSAlberto Garcia  * namespace, the result is unambiguous. The exception is if both are
27889b2aa84fSAlberto Garcia  * absent, then this returns an empty (non-null) string. */
27899b2aa84fSAlberto Garcia const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
27909b2aa84fSAlberto Garcia {
27914c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: bs->node_name;
27929b2aa84fSAlberto Garcia }
27939b2aa84fSAlberto Garcia 
2794c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs)
2795c8433287SMarkus Armbruster {
2796c8433287SMarkus Armbruster     return bs->open_flags;
2797c8433287SMarkus Armbruster }
2798c8433287SMarkus Armbruster 
27993ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs)
28003ac21627SPeter Lieven {
28013ac21627SPeter Lieven     return 1;
28023ac21627SPeter Lieven }
28033ac21627SPeter Lieven 
2804f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs)
2805f2feebbdSKevin Wolf {
2806f2feebbdSKevin Wolf     assert(bs->drv);
2807f2feebbdSKevin Wolf 
280811212d8fSPaolo Bonzini     /* If BS is a copy on write image, it is initialized to
280911212d8fSPaolo Bonzini        the contents of the base image, which may not be zeroes.  */
2810760e0063SKevin Wolf     if (bs->backing) {
281111212d8fSPaolo Bonzini         return 0;
281211212d8fSPaolo Bonzini     }
2813336c1c12SKevin Wolf     if (bs->drv->bdrv_has_zero_init) {
2814336c1c12SKevin Wolf         return bs->drv->bdrv_has_zero_init(bs);
2815f2feebbdSKevin Wolf     }
2816f2feebbdSKevin Wolf 
28173ac21627SPeter Lieven     /* safe default */
28183ac21627SPeter Lieven     return 0;
2819f2feebbdSKevin Wolf }
2820f2feebbdSKevin Wolf 
28214ce78691SPeter Lieven bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
28224ce78691SPeter Lieven {
28234ce78691SPeter Lieven     BlockDriverInfo bdi;
28244ce78691SPeter Lieven 
2825760e0063SKevin Wolf     if (bs->backing) {
28264ce78691SPeter Lieven         return false;
28274ce78691SPeter Lieven     }
28284ce78691SPeter Lieven 
28294ce78691SPeter Lieven     if (bdrv_get_info(bs, &bdi) == 0) {
28304ce78691SPeter Lieven         return bdi.unallocated_blocks_are_zero;
28314ce78691SPeter Lieven     }
28324ce78691SPeter Lieven 
28334ce78691SPeter Lieven     return false;
28344ce78691SPeter Lieven }
28354ce78691SPeter Lieven 
28364ce78691SPeter Lieven bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
28374ce78691SPeter Lieven {
28384ce78691SPeter Lieven     BlockDriverInfo bdi;
28394ce78691SPeter Lieven 
2840760e0063SKevin Wolf     if (bs->backing || !(bs->open_flags & BDRV_O_UNMAP)) {
28414ce78691SPeter Lieven         return false;
28424ce78691SPeter Lieven     }
28434ce78691SPeter Lieven 
28444ce78691SPeter Lieven     if (bdrv_get_info(bs, &bdi) == 0) {
28454ce78691SPeter Lieven         return bdi.can_write_zeroes_with_unmap;
28464ce78691SPeter Lieven     }
28474ce78691SPeter Lieven 
28484ce78691SPeter Lieven     return false;
28494ce78691SPeter Lieven }
28504ce78691SPeter Lieven 
2851045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
2852045df330Saliguori {
2853760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted)
2854045df330Saliguori         return bs->backing_file;
2855045df330Saliguori     else if (bs->encrypted)
2856045df330Saliguori         return bs->filename;
2857045df330Saliguori     else
2858045df330Saliguori         return NULL;
2859045df330Saliguori }
2860045df330Saliguori 
286183f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs,
286283f64091Sbellard                                char *filename, int filename_size)
286383f64091Sbellard {
286483f64091Sbellard     pstrcpy(filename, filename_size, bs->backing_file);
286583f64091Sbellard }
286683f64091Sbellard 
2867faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
2868faea38e7Sbellard {
2869faea38e7Sbellard     BlockDriver *drv = bs->drv;
2870faea38e7Sbellard     if (!drv)
287119cb3738Sbellard         return -ENOMEDIUM;
2872faea38e7Sbellard     if (!drv->bdrv_get_info)
2873faea38e7Sbellard         return -ENOTSUP;
2874faea38e7Sbellard     memset(bdi, 0, sizeof(*bdi));
2875faea38e7Sbellard     return drv->bdrv_get_info(bs, bdi);
2876faea38e7Sbellard }
2877faea38e7Sbellard 
2878eae041feSMax Reitz ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
2879eae041feSMax Reitz {
2880eae041feSMax Reitz     BlockDriver *drv = bs->drv;
2881eae041feSMax Reitz     if (drv && drv->bdrv_get_specific_info) {
2882eae041feSMax Reitz         return drv->bdrv_get_specific_info(bs);
2883eae041feSMax Reitz     }
2884eae041feSMax Reitz     return NULL;
2885eae041feSMax Reitz }
2886eae041feSMax Reitz 
2887a31939e6SEric Blake void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
28888b9b0cc2SKevin Wolf {
2889bf736fe3SKevin Wolf     if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
28908b9b0cc2SKevin Wolf         return;
28918b9b0cc2SKevin Wolf     }
28928b9b0cc2SKevin Wolf 
2893bf736fe3SKevin Wolf     bs->drv->bdrv_debug_event(bs, event);
289441c695c7SKevin Wolf }
28958b9b0cc2SKevin Wolf 
289641c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
289741c695c7SKevin Wolf                           const char *tag)
289841c695c7SKevin Wolf {
289941c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
29009a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
290141c695c7SKevin Wolf     }
290241c695c7SKevin Wolf 
290341c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
290441c695c7SKevin Wolf         return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
290541c695c7SKevin Wolf     }
290641c695c7SKevin Wolf 
290741c695c7SKevin Wolf     return -ENOTSUP;
290841c695c7SKevin Wolf }
290941c695c7SKevin Wolf 
29104cc70e93SFam Zheng int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
29114cc70e93SFam Zheng {
29124cc70e93SFam Zheng     while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
29139a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
29144cc70e93SFam Zheng     }
29154cc70e93SFam Zheng 
29164cc70e93SFam Zheng     if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
29174cc70e93SFam Zheng         return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
29184cc70e93SFam Zheng     }
29194cc70e93SFam Zheng 
29204cc70e93SFam Zheng     return -ENOTSUP;
29214cc70e93SFam Zheng }
29224cc70e93SFam Zheng 
292341c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
292441c695c7SKevin Wolf {
2925938789eaSMax Reitz     while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
29269a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
292741c695c7SKevin Wolf     }
292841c695c7SKevin Wolf 
292941c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
293041c695c7SKevin Wolf         return bs->drv->bdrv_debug_resume(bs, tag);
293141c695c7SKevin Wolf     }
293241c695c7SKevin Wolf 
293341c695c7SKevin Wolf     return -ENOTSUP;
293441c695c7SKevin Wolf }
293541c695c7SKevin Wolf 
293641c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
293741c695c7SKevin Wolf {
293841c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
29399a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
294041c695c7SKevin Wolf     }
294141c695c7SKevin Wolf 
294241c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
294341c695c7SKevin Wolf         return bs->drv->bdrv_debug_is_suspended(bs, tag);
294441c695c7SKevin Wolf     }
294541c695c7SKevin Wolf 
294641c695c7SKevin Wolf     return false;
29478b9b0cc2SKevin Wolf }
29488b9b0cc2SKevin Wolf 
2949199630b6SBlue Swirl int bdrv_is_snapshot(BlockDriverState *bs)
2950199630b6SBlue Swirl {
2951199630b6SBlue Swirl     return !!(bs->open_flags & BDRV_O_SNAPSHOT);
2952199630b6SBlue Swirl }
2953199630b6SBlue Swirl 
2954b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol.  If it is
2955b1b1d783SJeff Cody  * relative, it must be relative to the chain.  So, passing in bs->filename
2956b1b1d783SJeff Cody  * from a BDS as backing_file should not be done, as that may be relative to
2957b1b1d783SJeff Cody  * the CWD rather than the chain. */
2958e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
2959e8a6bb9cSMarcelo Tosatti         const char *backing_file)
2960e8a6bb9cSMarcelo Tosatti {
2961b1b1d783SJeff Cody     char *filename_full = NULL;
2962b1b1d783SJeff Cody     char *backing_file_full = NULL;
2963b1b1d783SJeff Cody     char *filename_tmp = NULL;
2964b1b1d783SJeff Cody     int is_protocol = 0;
2965b1b1d783SJeff Cody     BlockDriverState *curr_bs = NULL;
2966b1b1d783SJeff Cody     BlockDriverState *retval = NULL;
2967b1b1d783SJeff Cody 
2968b1b1d783SJeff Cody     if (!bs || !bs->drv || !backing_file) {
2969e8a6bb9cSMarcelo Tosatti         return NULL;
2970e8a6bb9cSMarcelo Tosatti     }
2971e8a6bb9cSMarcelo Tosatti 
2972b1b1d783SJeff Cody     filename_full     = g_malloc(PATH_MAX);
2973b1b1d783SJeff Cody     backing_file_full = g_malloc(PATH_MAX);
2974b1b1d783SJeff Cody     filename_tmp      = g_malloc(PATH_MAX);
2975b1b1d783SJeff Cody 
2976b1b1d783SJeff Cody     is_protocol = path_has_protocol(backing_file);
2977b1b1d783SJeff Cody 
2978760e0063SKevin Wolf     for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
2979b1b1d783SJeff Cody 
2980b1b1d783SJeff Cody         /* If either of the filename paths is actually a protocol, then
2981b1b1d783SJeff Cody          * compare unmodified paths; otherwise make paths relative */
2982b1b1d783SJeff Cody         if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
2983b1b1d783SJeff Cody             if (strcmp(backing_file, curr_bs->backing_file) == 0) {
2984760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
2985b1b1d783SJeff Cody                 break;
2986b1b1d783SJeff Cody             }
2987e8a6bb9cSMarcelo Tosatti         } else {
2988b1b1d783SJeff Cody             /* If not an absolute filename path, make it relative to the current
2989b1b1d783SJeff Cody              * image's filename path */
2990b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
2991b1b1d783SJeff Cody                          backing_file);
2992b1b1d783SJeff Cody 
2993b1b1d783SJeff Cody             /* We are going to compare absolute pathnames */
2994b1b1d783SJeff Cody             if (!realpath(filename_tmp, filename_full)) {
2995b1b1d783SJeff Cody                 continue;
2996b1b1d783SJeff Cody             }
2997b1b1d783SJeff Cody 
2998b1b1d783SJeff Cody             /* We need to make sure the backing filename we are comparing against
2999b1b1d783SJeff Cody              * is relative to the current image filename (or absolute) */
3000b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
3001b1b1d783SJeff Cody                          curr_bs->backing_file);
3002b1b1d783SJeff Cody 
3003b1b1d783SJeff Cody             if (!realpath(filename_tmp, backing_file_full)) {
3004b1b1d783SJeff Cody                 continue;
3005b1b1d783SJeff Cody             }
3006b1b1d783SJeff Cody 
3007b1b1d783SJeff Cody             if (strcmp(backing_file_full, filename_full) == 0) {
3008760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
3009b1b1d783SJeff Cody                 break;
3010b1b1d783SJeff Cody             }
3011e8a6bb9cSMarcelo Tosatti         }
3012e8a6bb9cSMarcelo Tosatti     }
3013e8a6bb9cSMarcelo Tosatti 
3014b1b1d783SJeff Cody     g_free(filename_full);
3015b1b1d783SJeff Cody     g_free(backing_file_full);
3016b1b1d783SJeff Cody     g_free(filename_tmp);
3017b1b1d783SJeff Cody     return retval;
3018e8a6bb9cSMarcelo Tosatti }
3019e8a6bb9cSMarcelo Tosatti 
3020f198fd1cSBenoît Canet int bdrv_get_backing_file_depth(BlockDriverState *bs)
3021f198fd1cSBenoît Canet {
3022f198fd1cSBenoît Canet     if (!bs->drv) {
3023f198fd1cSBenoît Canet         return 0;
3024f198fd1cSBenoît Canet     }
3025f198fd1cSBenoît Canet 
3026760e0063SKevin Wolf     if (!bs->backing) {
3027f198fd1cSBenoît Canet         return 0;
3028f198fd1cSBenoît Canet     }
3029f198fd1cSBenoît Canet 
3030760e0063SKevin Wolf     return 1 + bdrv_get_backing_file_depth(bs->backing->bs);
3031f198fd1cSBenoît Canet }
3032f198fd1cSBenoît Canet 
3033ea2384d3Sbellard void bdrv_init(void)
3034ea2384d3Sbellard {
30355efa9d5aSAnthony Liguori     module_call_init(MODULE_INIT_BLOCK);
3036ea2384d3Sbellard }
3037ce1a14dcSpbrook 
3038eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void)
3039eb852011SMarkus Armbruster {
3040eb852011SMarkus Armbruster     use_bdrv_whitelist = 1;
3041eb852011SMarkus Armbruster     bdrv_init();
3042eb852011SMarkus Armbruster }
3043eb852011SMarkus Armbruster 
30445a8a30dbSKevin Wolf void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
30450f15423cSAnthony Liguori {
30460d1c5c91SFam Zheng     BdrvChild *child;
30475a8a30dbSKevin Wolf     Error *local_err = NULL;
30485a8a30dbSKevin Wolf     int ret;
30495a8a30dbSKevin Wolf 
30503456a8d1SKevin Wolf     if (!bs->drv)  {
30513456a8d1SKevin Wolf         return;
30520f15423cSAnthony Liguori     }
30533456a8d1SKevin Wolf 
305404c01a5cSKevin Wolf     if (!(bs->open_flags & BDRV_O_INACTIVE)) {
30557ea2d269SAlexey Kardashevskiy         return;
30567ea2d269SAlexey Kardashevskiy     }
305704c01a5cSKevin Wolf     bs->open_flags &= ~BDRV_O_INACTIVE;
30587ea2d269SAlexey Kardashevskiy 
30593456a8d1SKevin Wolf     if (bs->drv->bdrv_invalidate_cache) {
30605a8a30dbSKevin Wolf         bs->drv->bdrv_invalidate_cache(bs, &local_err);
30615a8a30dbSKevin Wolf         if (local_err) {
306204c01a5cSKevin Wolf             bs->open_flags |= BDRV_O_INACTIVE;
30635a8a30dbSKevin Wolf             error_propagate(errp, local_err);
30645a8a30dbSKevin Wolf             return;
30653456a8d1SKevin Wolf         }
30660d1c5c91SFam Zheng     }
30670d1c5c91SFam Zheng 
30680d1c5c91SFam Zheng     QLIST_FOREACH(child, &bs->children, next) {
30690d1c5c91SFam Zheng         bdrv_invalidate_cache(child->bs, &local_err);
30700d1c5c91SFam Zheng         if (local_err) {
30710d1c5c91SFam Zheng             bs->open_flags |= BDRV_O_INACTIVE;
30720d1c5c91SFam Zheng             error_propagate(errp, local_err);
30730d1c5c91SFam Zheng             return;
30740d1c5c91SFam Zheng         }
30750d1c5c91SFam Zheng     }
30763456a8d1SKevin Wolf 
30775a8a30dbSKevin Wolf     ret = refresh_total_sectors(bs, bs->total_sectors);
30785a8a30dbSKevin Wolf     if (ret < 0) {
307904c01a5cSKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
30805a8a30dbSKevin Wolf         error_setg_errno(errp, -ret, "Could not refresh total sector count");
30815a8a30dbSKevin Wolf         return;
30825a8a30dbSKevin Wolf     }
30830f15423cSAnthony Liguori }
30840f15423cSAnthony Liguori 
30855a8a30dbSKevin Wolf void bdrv_invalidate_cache_all(Error **errp)
30860f15423cSAnthony Liguori {
30877c8eece4SKevin Wolf     BlockDriverState *bs;
30885a8a30dbSKevin Wolf     Error *local_err = NULL;
308988be7b4bSKevin Wolf     BdrvNextIterator it;
30900f15423cSAnthony Liguori 
309188be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3092ed78cda3SStefan Hajnoczi         AioContext *aio_context = bdrv_get_aio_context(bs);
3093ed78cda3SStefan Hajnoczi 
3094ed78cda3SStefan Hajnoczi         aio_context_acquire(aio_context);
30955a8a30dbSKevin Wolf         bdrv_invalidate_cache(bs, &local_err);
3096ed78cda3SStefan Hajnoczi         aio_context_release(aio_context);
30975a8a30dbSKevin Wolf         if (local_err) {
30985a8a30dbSKevin Wolf             error_propagate(errp, local_err);
30995a8a30dbSKevin Wolf             return;
31005a8a30dbSKevin Wolf         }
31010f15423cSAnthony Liguori     }
31020f15423cSAnthony Liguori }
31030f15423cSAnthony Liguori 
3104aad0b7a0SFam Zheng static int bdrv_inactivate_recurse(BlockDriverState *bs,
3105aad0b7a0SFam Zheng                                    bool setting_flag)
310676b1c7feSKevin Wolf {
3107aad0b7a0SFam Zheng     BdrvChild *child;
310876b1c7feSKevin Wolf     int ret;
310976b1c7feSKevin Wolf 
3110aad0b7a0SFam Zheng     if (!setting_flag && bs->drv->bdrv_inactivate) {
311176b1c7feSKevin Wolf         ret = bs->drv->bdrv_inactivate(bs);
311276b1c7feSKevin Wolf         if (ret < 0) {
311376b1c7feSKevin Wolf             return ret;
311476b1c7feSKevin Wolf         }
311576b1c7feSKevin Wolf     }
311676b1c7feSKevin Wolf 
3117aad0b7a0SFam Zheng     QLIST_FOREACH(child, &bs->children, next) {
3118aad0b7a0SFam Zheng         ret = bdrv_inactivate_recurse(child->bs, setting_flag);
3119aad0b7a0SFam Zheng         if (ret < 0) {
3120aad0b7a0SFam Zheng             return ret;
3121aad0b7a0SFam Zheng         }
3122aad0b7a0SFam Zheng     }
3123aad0b7a0SFam Zheng 
3124aad0b7a0SFam Zheng     if (setting_flag) {
312576b1c7feSKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
3126aad0b7a0SFam Zheng     }
312776b1c7feSKevin Wolf     return 0;
312876b1c7feSKevin Wolf }
312976b1c7feSKevin Wolf 
313076b1c7feSKevin Wolf int bdrv_inactivate_all(void)
313176b1c7feSKevin Wolf {
313279720af6SMax Reitz     BlockDriverState *bs = NULL;
313388be7b4bSKevin Wolf     BdrvNextIterator it;
3134aad0b7a0SFam Zheng     int ret = 0;
3135aad0b7a0SFam Zheng     int pass;
313676b1c7feSKevin Wolf 
313788be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3138aad0b7a0SFam Zheng         aio_context_acquire(bdrv_get_aio_context(bs));
3139aad0b7a0SFam Zheng     }
314076b1c7feSKevin Wolf 
3141aad0b7a0SFam Zheng     /* We do two passes of inactivation. The first pass calls to drivers'
3142aad0b7a0SFam Zheng      * .bdrv_inactivate callbacks recursively so all cache is flushed to disk;
3143aad0b7a0SFam Zheng      * the second pass sets the BDRV_O_INACTIVE flag so that no further write
3144aad0b7a0SFam Zheng      * is allowed. */
3145aad0b7a0SFam Zheng     for (pass = 0; pass < 2; pass++) {
314688be7b4bSKevin Wolf         for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3147aad0b7a0SFam Zheng             ret = bdrv_inactivate_recurse(bs, pass);
314876b1c7feSKevin Wolf             if (ret < 0) {
3149aad0b7a0SFam Zheng                 goto out;
3150aad0b7a0SFam Zheng             }
315176b1c7feSKevin Wolf         }
315276b1c7feSKevin Wolf     }
315376b1c7feSKevin Wolf 
3154aad0b7a0SFam Zheng out:
315588be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3156aad0b7a0SFam Zheng         aio_context_release(bdrv_get_aio_context(bs));
3157aad0b7a0SFam Zheng     }
3158aad0b7a0SFam Zheng 
3159aad0b7a0SFam Zheng     return ret;
316076b1c7feSKevin Wolf }
316176b1c7feSKevin Wolf 
3162f9f05dc5SKevin Wolf /**************************************************************/
316319cb3738Sbellard /* removable device support */
316419cb3738Sbellard 
316519cb3738Sbellard /**
316619cb3738Sbellard  * Return TRUE if the media is present
316719cb3738Sbellard  */
3168e031f750SMax Reitz bool bdrv_is_inserted(BlockDriverState *bs)
316919cb3738Sbellard {
317019cb3738Sbellard     BlockDriver *drv = bs->drv;
317128d7a789SMax Reitz     BdrvChild *child;
3172a1aff5bfSMarkus Armbruster 
3173e031f750SMax Reitz     if (!drv) {
3174e031f750SMax Reitz         return false;
3175e031f750SMax Reitz     }
317628d7a789SMax Reitz     if (drv->bdrv_is_inserted) {
3177a1aff5bfSMarkus Armbruster         return drv->bdrv_is_inserted(bs);
317819cb3738Sbellard     }
317928d7a789SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
318028d7a789SMax Reitz         if (!bdrv_is_inserted(child->bs)) {
318128d7a789SMax Reitz             return false;
318228d7a789SMax Reitz         }
318328d7a789SMax Reitz     }
318428d7a789SMax Reitz     return true;
318528d7a789SMax Reitz }
318619cb3738Sbellard 
318719cb3738Sbellard /**
31888e49ca46SMarkus Armbruster  * Return whether the media changed since the last call to this
31898e49ca46SMarkus Armbruster  * function, or -ENOTSUP if we don't know.  Most drivers don't know.
319019cb3738Sbellard  */
319119cb3738Sbellard int bdrv_media_changed(BlockDriverState *bs)
319219cb3738Sbellard {
319319cb3738Sbellard     BlockDriver *drv = bs->drv;
319419cb3738Sbellard 
31958e49ca46SMarkus Armbruster     if (drv && drv->bdrv_media_changed) {
31968e49ca46SMarkus Armbruster         return drv->bdrv_media_changed(bs);
31978e49ca46SMarkus Armbruster     }
31988e49ca46SMarkus Armbruster     return -ENOTSUP;
319919cb3738Sbellard }
320019cb3738Sbellard 
320119cb3738Sbellard /**
320219cb3738Sbellard  * If eject_flag is TRUE, eject the media. Otherwise, close the tray
320319cb3738Sbellard  */
3204f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag)
320519cb3738Sbellard {
320619cb3738Sbellard     BlockDriver *drv = bs->drv;
3207bfb197e0SMarkus Armbruster     const char *device_name;
320819cb3738Sbellard 
3209822e1cd1SMarkus Armbruster     if (drv && drv->bdrv_eject) {
3210822e1cd1SMarkus Armbruster         drv->bdrv_eject(bs, eject_flag);
321119cb3738Sbellard     }
32126f382ed2SLuiz Capitulino 
3213bfb197e0SMarkus Armbruster     device_name = bdrv_get_device_name(bs);
3214bfb197e0SMarkus Armbruster     if (device_name[0] != '\0') {
3215bfb197e0SMarkus Armbruster         qapi_event_send_device_tray_moved(device_name,
3216a5ee7bd4SWenchao Xia                                           eject_flag, &error_abort);
32176f382ed2SLuiz Capitulino     }
321819cb3738Sbellard }
321919cb3738Sbellard 
322019cb3738Sbellard /**
322119cb3738Sbellard  * Lock or unlock the media (if it is locked, the user won't be able
322219cb3738Sbellard  * to eject it manually).
322319cb3738Sbellard  */
3224025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked)
322519cb3738Sbellard {
322619cb3738Sbellard     BlockDriver *drv = bs->drv;
322719cb3738Sbellard 
3228025e849aSMarkus Armbruster     trace_bdrv_lock_medium(bs, locked);
3229b8c6d095SStefan Hajnoczi 
3230025e849aSMarkus Armbruster     if (drv && drv->bdrv_lock_medium) {
3231025e849aSMarkus Armbruster         drv->bdrv_lock_medium(bs, locked);
323219cb3738Sbellard     }
323319cb3738Sbellard }
3234985a03b0Sths 
32359fcb0251SFam Zheng /* Get a reference to bs */
32369fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs)
32379fcb0251SFam Zheng {
32389fcb0251SFam Zheng     bs->refcnt++;
32399fcb0251SFam Zheng }
32409fcb0251SFam Zheng 
32419fcb0251SFam Zheng /* Release a previously grabbed reference to bs.
32429fcb0251SFam Zheng  * If after releasing, reference count is zero, the BlockDriverState is
32439fcb0251SFam Zheng  * deleted. */
32449fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs)
32459fcb0251SFam Zheng {
32469a4d5ca6SJeff Cody     if (!bs) {
32479a4d5ca6SJeff Cody         return;
32489a4d5ca6SJeff Cody     }
32499fcb0251SFam Zheng     assert(bs->refcnt > 0);
32509fcb0251SFam Zheng     if (--bs->refcnt == 0) {
32519fcb0251SFam Zheng         bdrv_delete(bs);
32529fcb0251SFam Zheng     }
32539fcb0251SFam Zheng }
32549fcb0251SFam Zheng 
3255fbe40ff7SFam Zheng struct BdrvOpBlocker {
3256fbe40ff7SFam Zheng     Error *reason;
3257fbe40ff7SFam Zheng     QLIST_ENTRY(BdrvOpBlocker) list;
3258fbe40ff7SFam Zheng };
3259fbe40ff7SFam Zheng 
3260fbe40ff7SFam Zheng bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
3261fbe40ff7SFam Zheng {
3262fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
3263fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
3264fbe40ff7SFam Zheng     if (!QLIST_EMPTY(&bs->op_blockers[op])) {
3265fbe40ff7SFam Zheng         blocker = QLIST_FIRST(&bs->op_blockers[op]);
3266fbe40ff7SFam Zheng         if (errp) {
3267e43bfd9cSMarkus Armbruster             *errp = error_copy(blocker->reason);
3268e43bfd9cSMarkus Armbruster             error_prepend(errp, "Node '%s' is busy: ",
3269e43bfd9cSMarkus Armbruster                           bdrv_get_device_or_node_name(bs));
3270fbe40ff7SFam Zheng         }
3271fbe40ff7SFam Zheng         return true;
3272fbe40ff7SFam Zheng     }
3273fbe40ff7SFam Zheng     return false;
3274fbe40ff7SFam Zheng }
3275fbe40ff7SFam Zheng 
3276fbe40ff7SFam Zheng void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
3277fbe40ff7SFam Zheng {
3278fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
3279fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
3280fbe40ff7SFam Zheng 
32815839e53bSMarkus Armbruster     blocker = g_new0(BdrvOpBlocker, 1);
3282fbe40ff7SFam Zheng     blocker->reason = reason;
3283fbe40ff7SFam Zheng     QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
3284fbe40ff7SFam Zheng }
3285fbe40ff7SFam Zheng 
3286fbe40ff7SFam Zheng void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
3287fbe40ff7SFam Zheng {
3288fbe40ff7SFam Zheng     BdrvOpBlocker *blocker, *next;
3289fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
3290fbe40ff7SFam Zheng     QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
3291fbe40ff7SFam Zheng         if (blocker->reason == reason) {
3292fbe40ff7SFam Zheng             QLIST_REMOVE(blocker, list);
3293fbe40ff7SFam Zheng             g_free(blocker);
3294fbe40ff7SFam Zheng         }
3295fbe40ff7SFam Zheng     }
3296fbe40ff7SFam Zheng }
3297fbe40ff7SFam Zheng 
3298fbe40ff7SFam Zheng void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
3299fbe40ff7SFam Zheng {
3300fbe40ff7SFam Zheng     int i;
3301fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
3302fbe40ff7SFam Zheng         bdrv_op_block(bs, i, reason);
3303fbe40ff7SFam Zheng     }
3304fbe40ff7SFam Zheng }
3305fbe40ff7SFam Zheng 
3306fbe40ff7SFam Zheng void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
3307fbe40ff7SFam Zheng {
3308fbe40ff7SFam Zheng     int i;
3309fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
3310fbe40ff7SFam Zheng         bdrv_op_unblock(bs, i, reason);
3311fbe40ff7SFam Zheng     }
3312fbe40ff7SFam Zheng }
3313fbe40ff7SFam Zheng 
3314fbe40ff7SFam Zheng bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
3315fbe40ff7SFam Zheng {
3316fbe40ff7SFam Zheng     int i;
3317fbe40ff7SFam Zheng 
3318fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
3319fbe40ff7SFam Zheng         if (!QLIST_EMPTY(&bs->op_blockers[i])) {
3320fbe40ff7SFam Zheng             return false;
3321fbe40ff7SFam Zheng         }
3322fbe40ff7SFam Zheng     }
3323fbe40ff7SFam Zheng     return true;
3324fbe40ff7SFam Zheng }
3325fbe40ff7SFam Zheng 
3326d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt,
3327f88e1a42SJes Sorensen                      const char *base_filename, const char *base_fmt,
3328f382d43aSMiroslav Rezanina                      char *options, uint64_t img_size, int flags,
3329f382d43aSMiroslav Rezanina                      Error **errp, bool quiet)
3330f88e1a42SJes Sorensen {
333183d0521aSChunyan Liu     QemuOptsList *create_opts = NULL;
333283d0521aSChunyan Liu     QemuOpts *opts = NULL;
333383d0521aSChunyan Liu     const char *backing_fmt, *backing_file;
333483d0521aSChunyan Liu     int64_t size;
3335f88e1a42SJes Sorensen     BlockDriver *drv, *proto_drv;
3336cc84d90fSMax Reitz     Error *local_err = NULL;
3337f88e1a42SJes Sorensen     int ret = 0;
3338f88e1a42SJes Sorensen 
3339f88e1a42SJes Sorensen     /* Find driver and parse its options */
3340f88e1a42SJes Sorensen     drv = bdrv_find_format(fmt);
3341f88e1a42SJes Sorensen     if (!drv) {
334271c79813SLuiz Capitulino         error_setg(errp, "Unknown file format '%s'", fmt);
3343d92ada22SLuiz Capitulino         return;
3344f88e1a42SJes Sorensen     }
3345f88e1a42SJes Sorensen 
3346b65a5e12SMax Reitz     proto_drv = bdrv_find_protocol(filename, true, errp);
3347f88e1a42SJes Sorensen     if (!proto_drv) {
3348d92ada22SLuiz Capitulino         return;
3349f88e1a42SJes Sorensen     }
3350f88e1a42SJes Sorensen 
3351c6149724SMax Reitz     if (!drv->create_opts) {
3352c6149724SMax Reitz         error_setg(errp, "Format driver '%s' does not support image creation",
3353c6149724SMax Reitz                    drv->format_name);
3354c6149724SMax Reitz         return;
3355c6149724SMax Reitz     }
3356c6149724SMax Reitz 
3357c6149724SMax Reitz     if (!proto_drv->create_opts) {
3358c6149724SMax Reitz         error_setg(errp, "Protocol driver '%s' does not support image creation",
3359c6149724SMax Reitz                    proto_drv->format_name);
3360c6149724SMax Reitz         return;
3361c6149724SMax Reitz     }
3362c6149724SMax Reitz 
3363c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, drv->create_opts);
3364c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
3365f88e1a42SJes Sorensen 
3366f88e1a42SJes Sorensen     /* Create parameter list with default values */
336783d0521aSChunyan Liu     opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
336839101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
3369f88e1a42SJes Sorensen 
3370f88e1a42SJes Sorensen     /* Parse -o options */
3371f88e1a42SJes Sorensen     if (options) {
3372dc523cd3SMarkus Armbruster         qemu_opts_do_parse(opts, options, NULL, &local_err);
3373dc523cd3SMarkus Armbruster         if (local_err) {
3374dc523cd3SMarkus Armbruster             error_report_err(local_err);
3375dc523cd3SMarkus Armbruster             local_err = NULL;
337683d0521aSChunyan Liu             error_setg(errp, "Invalid options for file format '%s'", fmt);
3377f88e1a42SJes Sorensen             goto out;
3378f88e1a42SJes Sorensen         }
3379f88e1a42SJes Sorensen     }
3380f88e1a42SJes Sorensen 
3381f88e1a42SJes Sorensen     if (base_filename) {
3382f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
33836be4194bSMarkus Armbruster         if (local_err) {
338471c79813SLuiz Capitulino             error_setg(errp, "Backing file not supported for file format '%s'",
338571c79813SLuiz Capitulino                        fmt);
3386f88e1a42SJes Sorensen             goto out;
3387f88e1a42SJes Sorensen         }
3388f88e1a42SJes Sorensen     }
3389f88e1a42SJes Sorensen 
3390f88e1a42SJes Sorensen     if (base_fmt) {
3391f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
33926be4194bSMarkus Armbruster         if (local_err) {
339371c79813SLuiz Capitulino             error_setg(errp, "Backing file format not supported for file "
339471c79813SLuiz Capitulino                              "format '%s'", fmt);
3395f88e1a42SJes Sorensen             goto out;
3396f88e1a42SJes Sorensen         }
3397f88e1a42SJes Sorensen     }
3398f88e1a42SJes Sorensen 
339983d0521aSChunyan Liu     backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
340083d0521aSChunyan Liu     if (backing_file) {
340183d0521aSChunyan Liu         if (!strcmp(filename, backing_file)) {
340271c79813SLuiz Capitulino             error_setg(errp, "Error: Trying to create an image with the "
340371c79813SLuiz Capitulino                              "same filename as the backing file");
3404792da93aSJes Sorensen             goto out;
3405792da93aSJes Sorensen         }
3406792da93aSJes Sorensen     }
3407792da93aSJes Sorensen 
340883d0521aSChunyan Liu     backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
3409f88e1a42SJes Sorensen 
3410f88e1a42SJes Sorensen     // The size for the image must always be specified, with one exception:
3411f88e1a42SJes Sorensen     // If we are using a backing file, we can obtain the size from there
341283d0521aSChunyan Liu     size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0);
341383d0521aSChunyan Liu     if (size == -1) {
341483d0521aSChunyan Liu         if (backing_file) {
341566f6b814SMax Reitz             BlockDriverState *bs;
341629168018SMax Reitz             char *full_backing = g_new0(char, PATH_MAX);
341752bf1e72SMarkus Armbruster             int64_t size;
341863090dacSPaolo Bonzini             int back_flags;
3419e6641719SMax Reitz             QDict *backing_options = NULL;
342063090dacSPaolo Bonzini 
342129168018SMax Reitz             bdrv_get_full_backing_filename_from_filename(filename, backing_file,
342229168018SMax Reitz                                                          full_backing, PATH_MAX,
342329168018SMax Reitz                                                          &local_err);
342429168018SMax Reitz             if (local_err) {
342529168018SMax Reitz                 g_free(full_backing);
342629168018SMax Reitz                 goto out;
342729168018SMax Reitz             }
342829168018SMax Reitz 
342963090dacSPaolo Bonzini             /* backing files always opened read-only */
343061de4c68SKevin Wolf             back_flags = flags;
3431bfd18d1eSKevin Wolf             back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
3432f88e1a42SJes Sorensen 
3433e6641719SMax Reitz             if (backing_fmt) {
3434e6641719SMax Reitz                 backing_options = qdict_new();
3435e6641719SMax Reitz                 qdict_put(backing_options, "driver",
3436e6641719SMax Reitz                           qstring_from_str(backing_fmt));
3437e6641719SMax Reitz             }
3438e6641719SMax Reitz 
34395b363937SMax Reitz             bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
34405b363937SMax Reitz                            &local_err);
344129168018SMax Reitz             g_free(full_backing);
34425b363937SMax Reitz             if (!bs) {
3443f88e1a42SJes Sorensen                 goto out;
3444f88e1a42SJes Sorensen             }
344552bf1e72SMarkus Armbruster             size = bdrv_getlength(bs);
344652bf1e72SMarkus Armbruster             if (size < 0) {
344752bf1e72SMarkus Armbruster                 error_setg_errno(errp, -size, "Could not get size of '%s'",
344852bf1e72SMarkus Armbruster                                  backing_file);
344952bf1e72SMarkus Armbruster                 bdrv_unref(bs);
345052bf1e72SMarkus Armbruster                 goto out;
345152bf1e72SMarkus Armbruster             }
3452f88e1a42SJes Sorensen 
345339101f25SMarkus Armbruster             qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
345466f6b814SMax Reitz 
345566f6b814SMax Reitz             bdrv_unref(bs);
3456f88e1a42SJes Sorensen         } else {
345771c79813SLuiz Capitulino             error_setg(errp, "Image creation needs a size parameter");
3458f88e1a42SJes Sorensen             goto out;
3459f88e1a42SJes Sorensen         }
3460f88e1a42SJes Sorensen     }
3461f88e1a42SJes Sorensen 
3462f382d43aSMiroslav Rezanina     if (!quiet) {
3463f88e1a42SJes Sorensen         printf("Formatting '%s', fmt=%s ", filename, fmt);
346443c5d8f8SFam Zheng         qemu_opts_print(opts, " ");
3465f88e1a42SJes Sorensen         puts("");
3466f382d43aSMiroslav Rezanina     }
346783d0521aSChunyan Liu 
3468c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
346983d0521aSChunyan Liu 
3470cc84d90fSMax Reitz     if (ret == -EFBIG) {
3471cc84d90fSMax Reitz         /* This is generally a better message than whatever the driver would
3472cc84d90fSMax Reitz          * deliver (especially because of the cluster_size_hint), since that
3473cc84d90fSMax Reitz          * is most probably not much different from "image too large". */
3474f3f4d2c0SKevin Wolf         const char *cluster_size_hint = "";
347583d0521aSChunyan Liu         if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
3476f3f4d2c0SKevin Wolf             cluster_size_hint = " (try using a larger cluster size)";
3477f3f4d2c0SKevin Wolf         }
3478cc84d90fSMax Reitz         error_setg(errp, "The image size is too large for file format '%s'"
3479cc84d90fSMax Reitz                    "%s", fmt, cluster_size_hint);
3480cc84d90fSMax Reitz         error_free(local_err);
3481cc84d90fSMax Reitz         local_err = NULL;
3482f88e1a42SJes Sorensen     }
3483f88e1a42SJes Sorensen 
3484f88e1a42SJes Sorensen out:
348583d0521aSChunyan Liu     qemu_opts_del(opts);
348683d0521aSChunyan Liu     qemu_opts_free(create_opts);
3487cc84d90fSMax Reitz     error_propagate(errp, local_err);
3488cc84d90fSMax Reitz }
348985d126f3SStefan Hajnoczi 
349085d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs)
349185d126f3SStefan Hajnoczi {
3492dcd04228SStefan Hajnoczi     return bs->aio_context;
3493dcd04228SStefan Hajnoczi }
3494dcd04228SStefan Hajnoczi 
3495e8a095daSStefan Hajnoczi static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
3496e8a095daSStefan Hajnoczi {
3497e8a095daSStefan Hajnoczi     QLIST_REMOVE(ban, list);
3498e8a095daSStefan Hajnoczi     g_free(ban);
3499e8a095daSStefan Hajnoczi }
3500e8a095daSStefan Hajnoczi 
3501dcd04228SStefan Hajnoczi void bdrv_detach_aio_context(BlockDriverState *bs)
3502dcd04228SStefan Hajnoczi {
3503e8a095daSStefan Hajnoczi     BdrvAioNotifier *baf, *baf_tmp;
3504b97511c7SMax Reitz     BdrvChild *child;
350533384421SMax Reitz 
3506dcd04228SStefan Hajnoczi     if (!bs->drv) {
3507dcd04228SStefan Hajnoczi         return;
3508dcd04228SStefan Hajnoczi     }
3509dcd04228SStefan Hajnoczi 
3510e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
3511e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
3512e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
3513e8a095daSStefan Hajnoczi         if (baf->deleted) {
3514e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(baf);
3515e8a095daSStefan Hajnoczi         } else {
351633384421SMax Reitz             baf->detach_aio_context(baf->opaque);
351733384421SMax Reitz         }
3518e8a095daSStefan Hajnoczi     }
3519e8a095daSStefan Hajnoczi     /* Never mind iterating again to check for ->deleted.  bdrv_close() will
3520e8a095daSStefan Hajnoczi      * remove remaining aio notifiers if we aren't called again.
3521e8a095daSStefan Hajnoczi      */
3522e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
352333384421SMax Reitz 
3524dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_detach_aio_context) {
3525dcd04228SStefan Hajnoczi         bs->drv->bdrv_detach_aio_context(bs);
3526dcd04228SStefan Hajnoczi     }
3527b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
3528b97511c7SMax Reitz         bdrv_detach_aio_context(child->bs);
3529dcd04228SStefan Hajnoczi     }
3530dcd04228SStefan Hajnoczi 
3531dcd04228SStefan Hajnoczi     bs->aio_context = NULL;
3532dcd04228SStefan Hajnoczi }
3533dcd04228SStefan Hajnoczi 
3534dcd04228SStefan Hajnoczi void bdrv_attach_aio_context(BlockDriverState *bs,
3535dcd04228SStefan Hajnoczi                              AioContext *new_context)
3536dcd04228SStefan Hajnoczi {
3537e8a095daSStefan Hajnoczi     BdrvAioNotifier *ban, *ban_tmp;
3538b97511c7SMax Reitz     BdrvChild *child;
353933384421SMax Reitz 
3540dcd04228SStefan Hajnoczi     if (!bs->drv) {
3541dcd04228SStefan Hajnoczi         return;
3542dcd04228SStefan Hajnoczi     }
3543dcd04228SStefan Hajnoczi 
3544dcd04228SStefan Hajnoczi     bs->aio_context = new_context;
3545dcd04228SStefan Hajnoczi 
3546b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
3547b97511c7SMax Reitz         bdrv_attach_aio_context(child->bs, new_context);
3548dcd04228SStefan Hajnoczi     }
3549dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_attach_aio_context) {
3550dcd04228SStefan Hajnoczi         bs->drv->bdrv_attach_aio_context(bs, new_context);
3551dcd04228SStefan Hajnoczi     }
355233384421SMax Reitz 
3553e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
3554e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
3555e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
3556e8a095daSStefan Hajnoczi         if (ban->deleted) {
3557e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(ban);
3558e8a095daSStefan Hajnoczi         } else {
355933384421SMax Reitz             ban->attached_aio_context(new_context, ban->opaque);
356033384421SMax Reitz         }
3561dcd04228SStefan Hajnoczi     }
3562e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
3563e8a095daSStefan Hajnoczi }
3564dcd04228SStefan Hajnoczi 
3565dcd04228SStefan Hajnoczi void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
3566dcd04228SStefan Hajnoczi {
356753ec73e2SFam Zheng     bdrv_drain(bs); /* ensure there are no in-flight requests */
3568dcd04228SStefan Hajnoczi 
3569dcd04228SStefan Hajnoczi     bdrv_detach_aio_context(bs);
3570dcd04228SStefan Hajnoczi 
3571dcd04228SStefan Hajnoczi     /* This function executes in the old AioContext so acquire the new one in
3572dcd04228SStefan Hajnoczi      * case it runs in a different thread.
3573dcd04228SStefan Hajnoczi      */
3574dcd04228SStefan Hajnoczi     aio_context_acquire(new_context);
3575dcd04228SStefan Hajnoczi     bdrv_attach_aio_context(bs, new_context);
3576dcd04228SStefan Hajnoczi     aio_context_release(new_context);
357785d126f3SStefan Hajnoczi }
3578d616b224SStefan Hajnoczi 
357933384421SMax Reitz void bdrv_add_aio_context_notifier(BlockDriverState *bs,
358033384421SMax Reitz         void (*attached_aio_context)(AioContext *new_context, void *opaque),
358133384421SMax Reitz         void (*detach_aio_context)(void *opaque), void *opaque)
358233384421SMax Reitz {
358333384421SMax Reitz     BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
358433384421SMax Reitz     *ban = (BdrvAioNotifier){
358533384421SMax Reitz         .attached_aio_context = attached_aio_context,
358633384421SMax Reitz         .detach_aio_context   = detach_aio_context,
358733384421SMax Reitz         .opaque               = opaque
358833384421SMax Reitz     };
358933384421SMax Reitz 
359033384421SMax Reitz     QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
359133384421SMax Reitz }
359233384421SMax Reitz 
359333384421SMax Reitz void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
359433384421SMax Reitz                                       void (*attached_aio_context)(AioContext *,
359533384421SMax Reitz                                                                    void *),
359633384421SMax Reitz                                       void (*detach_aio_context)(void *),
359733384421SMax Reitz                                       void *opaque)
359833384421SMax Reitz {
359933384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
360033384421SMax Reitz 
360133384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
360233384421SMax Reitz         if (ban->attached_aio_context == attached_aio_context &&
360333384421SMax Reitz             ban->detach_aio_context   == detach_aio_context   &&
3604e8a095daSStefan Hajnoczi             ban->opaque               == opaque               &&
3605e8a095daSStefan Hajnoczi             ban->deleted              == false)
360633384421SMax Reitz         {
3607e8a095daSStefan Hajnoczi             if (bs->walking_aio_notifiers) {
3608e8a095daSStefan Hajnoczi                 ban->deleted = true;
3609e8a095daSStefan Hajnoczi             } else {
3610e8a095daSStefan Hajnoczi                 bdrv_do_remove_aio_context_notifier(ban);
3611e8a095daSStefan Hajnoczi             }
361233384421SMax Reitz             return;
361333384421SMax Reitz         }
361433384421SMax Reitz     }
361533384421SMax Reitz 
361633384421SMax Reitz     abort();
361733384421SMax Reitz }
361833384421SMax Reitz 
361977485434SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
36208b13976dSMax Reitz                        BlockDriverAmendStatusCB *status_cb, void *cb_opaque)
36216f176b48SMax Reitz {
3622c282e1fdSChunyan Liu     if (!bs->drv->bdrv_amend_options) {
36236f176b48SMax Reitz         return -ENOTSUP;
36246f176b48SMax Reitz     }
36258b13976dSMax Reitz     return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque);
36266f176b48SMax Reitz }
3627f6186f49SBenoît Canet 
3628b5042a36SBenoît Canet /* This function will be called by the bdrv_recurse_is_first_non_filter method
3629b5042a36SBenoît Canet  * of block filter and by bdrv_is_first_non_filter.
3630b5042a36SBenoît Canet  * It is used to test if the given bs is the candidate or recurse more in the
3631b5042a36SBenoît Canet  * node graph.
3632212a5a8fSBenoît Canet  */
3633212a5a8fSBenoît Canet bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
3634212a5a8fSBenoît Canet                                       BlockDriverState *candidate)
3635f6186f49SBenoît Canet {
3636b5042a36SBenoît Canet     /* return false if basic checks fails */
3637b5042a36SBenoît Canet     if (!bs || !bs->drv) {
3638b5042a36SBenoît Canet         return false;
3639b5042a36SBenoît Canet     }
3640b5042a36SBenoît Canet 
3641b5042a36SBenoît Canet     /* the code reached a non block filter driver -> check if the bs is
3642b5042a36SBenoît Canet      * the same as the candidate. It's the recursion termination condition.
3643b5042a36SBenoît Canet      */
3644b5042a36SBenoît Canet     if (!bs->drv->is_filter) {
3645b5042a36SBenoît Canet         return bs == candidate;
3646b5042a36SBenoît Canet     }
3647b5042a36SBenoît Canet     /* Down this path the driver is a block filter driver */
3648b5042a36SBenoît Canet 
3649b5042a36SBenoît Canet     /* If the block filter recursion method is defined use it to recurse down
3650b5042a36SBenoît Canet      * the node graph.
3651b5042a36SBenoît Canet      */
3652b5042a36SBenoît Canet     if (bs->drv->bdrv_recurse_is_first_non_filter) {
3653212a5a8fSBenoît Canet         return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
3654212a5a8fSBenoît Canet     }
3655212a5a8fSBenoît Canet 
3656b5042a36SBenoît Canet     /* the driver is a block filter but don't allow to recurse -> return false
3657b5042a36SBenoît Canet      */
3658b5042a36SBenoît Canet     return false;
3659212a5a8fSBenoît Canet }
3660212a5a8fSBenoît Canet 
3661212a5a8fSBenoît Canet /* This function checks if the candidate is the first non filter bs down it's
3662212a5a8fSBenoît Canet  * bs chain. Since we don't have pointers to parents it explore all bs chains
3663212a5a8fSBenoît Canet  * from the top. Some filters can choose not to pass down the recursion.
3664212a5a8fSBenoît Canet  */
3665212a5a8fSBenoît Canet bool bdrv_is_first_non_filter(BlockDriverState *candidate)
3666212a5a8fSBenoît Canet {
36677c8eece4SKevin Wolf     BlockDriverState *bs;
366888be7b4bSKevin Wolf     BdrvNextIterator it;
3669212a5a8fSBenoît Canet 
3670212a5a8fSBenoît Canet     /* walk down the bs forest recursively */
367188be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3672212a5a8fSBenoît Canet         bool perm;
3673212a5a8fSBenoît Canet 
3674b5042a36SBenoît Canet         /* try to recurse in this top level bs */
3675e6dc8a1fSKevin Wolf         perm = bdrv_recurse_is_first_non_filter(bs, candidate);
3676212a5a8fSBenoît Canet 
3677212a5a8fSBenoît Canet         /* candidate is the first non filter */
3678212a5a8fSBenoît Canet         if (perm) {
3679212a5a8fSBenoît Canet             return true;
3680212a5a8fSBenoît Canet         }
3681212a5a8fSBenoît Canet     }
3682212a5a8fSBenoît Canet 
3683212a5a8fSBenoît Canet     return false;
3684f6186f49SBenoît Canet }
368509158f00SBenoît Canet 
3686e12f3784SWen Congyang BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
3687e12f3784SWen Congyang                                         const char *node_name, Error **errp)
368809158f00SBenoît Canet {
368909158f00SBenoît Canet     BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
36905a7e7a0bSStefan Hajnoczi     AioContext *aio_context;
36915a7e7a0bSStefan Hajnoczi 
369209158f00SBenoît Canet     if (!to_replace_bs) {
369309158f00SBenoît Canet         error_setg(errp, "Node name '%s' not found", node_name);
369409158f00SBenoît Canet         return NULL;
369509158f00SBenoît Canet     }
369609158f00SBenoît Canet 
36975a7e7a0bSStefan Hajnoczi     aio_context = bdrv_get_aio_context(to_replace_bs);
36985a7e7a0bSStefan Hajnoczi     aio_context_acquire(aio_context);
36995a7e7a0bSStefan Hajnoczi 
370009158f00SBenoît Canet     if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
37015a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
37025a7e7a0bSStefan Hajnoczi         goto out;
370309158f00SBenoît Canet     }
370409158f00SBenoît Canet 
370509158f00SBenoît Canet     /* We don't want arbitrary node of the BDS chain to be replaced only the top
370609158f00SBenoît Canet      * most non filter in order to prevent data corruption.
370709158f00SBenoît Canet      * Another benefit is that this tests exclude backing files which are
370809158f00SBenoît Canet      * blocked by the backing blockers.
370909158f00SBenoît Canet      */
3710e12f3784SWen Congyang     if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
371109158f00SBenoît Canet         error_setg(errp, "Only top most non filter can be replaced");
37125a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
37135a7e7a0bSStefan Hajnoczi         goto out;
371409158f00SBenoît Canet     }
371509158f00SBenoît Canet 
37165a7e7a0bSStefan Hajnoczi out:
37175a7e7a0bSStefan Hajnoczi     aio_context_release(aio_context);
371809158f00SBenoît Canet     return to_replace_bs;
371909158f00SBenoît Canet }
3720448ad91dSMing Lei 
372191af7014SMax Reitz static bool append_open_options(QDict *d, BlockDriverState *bs)
372291af7014SMax Reitz {
372391af7014SMax Reitz     const QDictEntry *entry;
37249e700c1aSKevin Wolf     QemuOptDesc *desc;
3725260fecf1SKevin Wolf     BdrvChild *child;
372691af7014SMax Reitz     bool found_any = false;
3727260fecf1SKevin Wolf     const char *p;
372891af7014SMax Reitz 
372991af7014SMax Reitz     for (entry = qdict_first(bs->options); entry;
373091af7014SMax Reitz          entry = qdict_next(bs->options, entry))
373191af7014SMax Reitz     {
3732260fecf1SKevin Wolf         /* Exclude options for children */
3733260fecf1SKevin Wolf         QLIST_FOREACH(child, &bs->children, next) {
3734260fecf1SKevin Wolf             if (strstart(qdict_entry_key(entry), child->name, &p)
3735260fecf1SKevin Wolf                 && (!*p || *p == '.'))
3736260fecf1SKevin Wolf             {
3737260fecf1SKevin Wolf                 break;
3738260fecf1SKevin Wolf             }
3739260fecf1SKevin Wolf         }
3740260fecf1SKevin Wolf         if (child) {
37419e700c1aSKevin Wolf             continue;
37429e700c1aSKevin Wolf         }
37439e700c1aSKevin Wolf 
37449e700c1aSKevin Wolf         /* And exclude all non-driver-specific options */
37459e700c1aSKevin Wolf         for (desc = bdrv_runtime_opts.desc; desc->name; desc++) {
37469e700c1aSKevin Wolf             if (!strcmp(qdict_entry_key(entry), desc->name)) {
37479e700c1aSKevin Wolf                 break;
37489e700c1aSKevin Wolf             }
37499e700c1aSKevin Wolf         }
37509e700c1aSKevin Wolf         if (desc->name) {
37519e700c1aSKevin Wolf             continue;
37529e700c1aSKevin Wolf         }
37539e700c1aSKevin Wolf 
375491af7014SMax Reitz         qobject_incref(qdict_entry_value(entry));
375591af7014SMax Reitz         qdict_put_obj(d, qdict_entry_key(entry), qdict_entry_value(entry));
375691af7014SMax Reitz         found_any = true;
375791af7014SMax Reitz     }
375891af7014SMax Reitz 
375991af7014SMax Reitz     return found_any;
376091af7014SMax Reitz }
376191af7014SMax Reitz 
376291af7014SMax Reitz /* Updates the following BDS fields:
376391af7014SMax Reitz  *  - exact_filename: A filename which may be used for opening a block device
376491af7014SMax Reitz  *                    which (mostly) equals the given BDS (even without any
376591af7014SMax Reitz  *                    other options; so reading and writing must return the same
376691af7014SMax Reitz  *                    results, but caching etc. may be different)
376791af7014SMax Reitz  *  - full_open_options: Options which, when given when opening a block device
376891af7014SMax Reitz  *                       (without a filename), result in a BDS (mostly)
376991af7014SMax Reitz  *                       equalling the given one
377091af7014SMax Reitz  *  - filename: If exact_filename is set, it is copied here. Otherwise,
377191af7014SMax Reitz  *              full_open_options is converted to a JSON object, prefixed with
377291af7014SMax Reitz  *              "json:" (for use through the JSON pseudo protocol) and put here.
377391af7014SMax Reitz  */
377491af7014SMax Reitz void bdrv_refresh_filename(BlockDriverState *bs)
377591af7014SMax Reitz {
377691af7014SMax Reitz     BlockDriver *drv = bs->drv;
377791af7014SMax Reitz     QDict *opts;
377891af7014SMax Reitz 
377991af7014SMax Reitz     if (!drv) {
378091af7014SMax Reitz         return;
378191af7014SMax Reitz     }
378291af7014SMax Reitz 
378391af7014SMax Reitz     /* This BDS's file name will most probably depend on its file's name, so
378491af7014SMax Reitz      * refresh that first */
378591af7014SMax Reitz     if (bs->file) {
37869a4f4c31SKevin Wolf         bdrv_refresh_filename(bs->file->bs);
378791af7014SMax Reitz     }
378891af7014SMax Reitz 
378991af7014SMax Reitz     if (drv->bdrv_refresh_filename) {
379091af7014SMax Reitz         /* Obsolete information is of no use here, so drop the old file name
379191af7014SMax Reitz          * information before refreshing it */
379291af7014SMax Reitz         bs->exact_filename[0] = '\0';
379391af7014SMax Reitz         if (bs->full_open_options) {
379491af7014SMax Reitz             QDECREF(bs->full_open_options);
379591af7014SMax Reitz             bs->full_open_options = NULL;
379691af7014SMax Reitz         }
379791af7014SMax Reitz 
37984cdd01d3SKevin Wolf         opts = qdict_new();
37994cdd01d3SKevin Wolf         append_open_options(opts, bs);
38004cdd01d3SKevin Wolf         drv->bdrv_refresh_filename(bs, opts);
38014cdd01d3SKevin Wolf         QDECREF(opts);
380291af7014SMax Reitz     } else if (bs->file) {
380391af7014SMax Reitz         /* Try to reconstruct valid information from the underlying file */
380491af7014SMax Reitz         bool has_open_options;
380591af7014SMax Reitz 
380691af7014SMax Reitz         bs->exact_filename[0] = '\0';
380791af7014SMax Reitz         if (bs->full_open_options) {
380891af7014SMax Reitz             QDECREF(bs->full_open_options);
380991af7014SMax Reitz             bs->full_open_options = NULL;
381091af7014SMax Reitz         }
381191af7014SMax Reitz 
381291af7014SMax Reitz         opts = qdict_new();
381391af7014SMax Reitz         has_open_options = append_open_options(opts, bs);
381491af7014SMax Reitz 
381591af7014SMax Reitz         /* If no specific options have been given for this BDS, the filename of
381691af7014SMax Reitz          * the underlying file should suffice for this one as well */
38179a4f4c31SKevin Wolf         if (bs->file->bs->exact_filename[0] && !has_open_options) {
38189a4f4c31SKevin Wolf             strcpy(bs->exact_filename, bs->file->bs->exact_filename);
381991af7014SMax Reitz         }
382091af7014SMax Reitz         /* Reconstructing the full options QDict is simple for most format block
382191af7014SMax Reitz          * drivers, as long as the full options are known for the underlying
382291af7014SMax Reitz          * file BDS. The full options QDict of that file BDS should somehow
382391af7014SMax Reitz          * contain a representation of the filename, therefore the following
382491af7014SMax Reitz          * suffices without querying the (exact_)filename of this BDS. */
38259a4f4c31SKevin Wolf         if (bs->file->bs->full_open_options) {
382691af7014SMax Reitz             qdict_put_obj(opts, "driver",
382791af7014SMax Reitz                           QOBJECT(qstring_from_str(drv->format_name)));
38289a4f4c31SKevin Wolf             QINCREF(bs->file->bs->full_open_options);
38299a4f4c31SKevin Wolf             qdict_put_obj(opts, "file",
38309a4f4c31SKevin Wolf                           QOBJECT(bs->file->bs->full_open_options));
383191af7014SMax Reitz 
383291af7014SMax Reitz             bs->full_open_options = opts;
383391af7014SMax Reitz         } else {
383491af7014SMax Reitz             QDECREF(opts);
383591af7014SMax Reitz         }
383691af7014SMax Reitz     } else if (!bs->full_open_options && qdict_size(bs->options)) {
383791af7014SMax Reitz         /* There is no underlying file BDS (at least referenced by BDS.file),
383891af7014SMax Reitz          * so the full options QDict should be equal to the options given
383991af7014SMax Reitz          * specifically for this block device when it was opened (plus the
384091af7014SMax Reitz          * driver specification).
384191af7014SMax Reitz          * Because those options don't change, there is no need to update
384291af7014SMax Reitz          * full_open_options when it's already set. */
384391af7014SMax Reitz 
384491af7014SMax Reitz         opts = qdict_new();
384591af7014SMax Reitz         append_open_options(opts, bs);
384691af7014SMax Reitz         qdict_put_obj(opts, "driver",
384791af7014SMax Reitz                       QOBJECT(qstring_from_str(drv->format_name)));
384891af7014SMax Reitz 
384991af7014SMax Reitz         if (bs->exact_filename[0]) {
385091af7014SMax Reitz             /* This may not work for all block protocol drivers (some may
385191af7014SMax Reitz              * require this filename to be parsed), but we have to find some
385291af7014SMax Reitz              * default solution here, so just include it. If some block driver
385391af7014SMax Reitz              * does not support pure options without any filename at all or
385491af7014SMax Reitz              * needs some special format of the options QDict, it needs to
385591af7014SMax Reitz              * implement the driver-specific bdrv_refresh_filename() function.
385691af7014SMax Reitz              */
385791af7014SMax Reitz             qdict_put_obj(opts, "filename",
385891af7014SMax Reitz                           QOBJECT(qstring_from_str(bs->exact_filename)));
385991af7014SMax Reitz         }
386091af7014SMax Reitz 
386191af7014SMax Reitz         bs->full_open_options = opts;
386291af7014SMax Reitz     }
386391af7014SMax Reitz 
386491af7014SMax Reitz     if (bs->exact_filename[0]) {
386591af7014SMax Reitz         pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
386691af7014SMax Reitz     } else if (bs->full_open_options) {
386791af7014SMax Reitz         QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
386891af7014SMax Reitz         snprintf(bs->filename, sizeof(bs->filename), "json:%s",
386991af7014SMax Reitz                  qstring_get_str(json));
387091af7014SMax Reitz         QDECREF(json);
387191af7014SMax Reitz     }
387291af7014SMax Reitz }
3873e06018adSWen Congyang 
3874e06018adSWen Congyang /*
3875e06018adSWen Congyang  * Hot add/remove a BDS's child. So the user can take a child offline when
3876e06018adSWen Congyang  * it is broken and take a new child online
3877e06018adSWen Congyang  */
3878e06018adSWen Congyang void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
3879e06018adSWen Congyang                     Error **errp)
3880e06018adSWen Congyang {
3881e06018adSWen Congyang 
3882e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
3883e06018adSWen Congyang         error_setg(errp, "The node %s does not support adding a child",
3884e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
3885e06018adSWen Congyang         return;
3886e06018adSWen Congyang     }
3887e06018adSWen Congyang 
3888e06018adSWen Congyang     if (!QLIST_EMPTY(&child_bs->parents)) {
3889e06018adSWen Congyang         error_setg(errp, "The node %s already has a parent",
3890e06018adSWen Congyang                    child_bs->node_name);
3891e06018adSWen Congyang         return;
3892e06018adSWen Congyang     }
3893e06018adSWen Congyang 
3894e06018adSWen Congyang     parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
3895e06018adSWen Congyang }
3896e06018adSWen Congyang 
3897e06018adSWen Congyang void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
3898e06018adSWen Congyang {
3899e06018adSWen Congyang     BdrvChild *tmp;
3900e06018adSWen Congyang 
3901e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
3902e06018adSWen Congyang         error_setg(errp, "The node %s does not support removing a child",
3903e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
3904e06018adSWen Congyang         return;
3905e06018adSWen Congyang     }
3906e06018adSWen Congyang 
3907e06018adSWen Congyang     QLIST_FOREACH(tmp, &parent_bs->children, next) {
3908e06018adSWen Congyang         if (tmp == child) {
3909e06018adSWen Congyang             break;
3910e06018adSWen Congyang         }
3911e06018adSWen Congyang     }
3912e06018adSWen Congyang 
3913e06018adSWen Congyang     if (!tmp) {
3914e06018adSWen Congyang         error_setg(errp, "The node %s does not have a child named %s",
3915e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs),
3916e06018adSWen Congyang                    bdrv_get_device_or_node_name(child->bs));
3917e06018adSWen Congyang         return;
3918e06018adSWen Congyang     }
3919e06018adSWen Congyang 
3920e06018adSWen Congyang     parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
3921e06018adSWen Congyang }
3922