xref: /openbmc/qemu/block.c (revision cd7fca952ce8456955f7f4e11df9ced14204c2f1)
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"
28*cd7fca95SKevin Wolf #include "block/nbd.h"
29d49b6836SMarkus Armbruster #include "qemu/error-report.h"
301de7afc9SPaolo Bonzini #include "qemu/module.h"
31cc7a8ea7SMarkus Armbruster #include "qapi/qmp/qerror.h"
3291a097e7SKevin Wolf #include "qapi/qmp/qbool.h"
337b1b5d19SPaolo Bonzini #include "qapi/qmp/qjson.h"
34bfb197e0SMarkus Armbruster #include "sysemu/block-backend.h"
359c17d615SPaolo Bonzini #include "sysemu/sysemu.h"
361de7afc9SPaolo Bonzini #include "qemu/notify.h"
3710817bf0SDaniel P. Berrange #include "qemu/coroutine.h"
38c13163fbSBenoît Canet #include "block/qapi.h"
39b2023818SLuiz Capitulino #include "qmp-commands.h"
401de7afc9SPaolo Bonzini #include "qemu/timer.h"
41a5ee7bd4SWenchao Xia #include "qapi-event.h"
42f348b6d1SVeronia Bahaa #include "qemu/cutils.h"
43f348b6d1SVeronia Bahaa #include "qemu/id.h"
44fc01f7e7Sbellard 
4571e72a19SJuan Quintela #ifdef CONFIG_BSD
467674e7bfSbellard #include <sys/ioctl.h>
4772cf2d4fSBlue Swirl #include <sys/queue.h>
48c5e97233Sblueswir1 #ifndef __DragonFly__
497674e7bfSbellard #include <sys/disk.h>
507674e7bfSbellard #endif
51c5e97233Sblueswir1 #endif
527674e7bfSbellard 
5349dc768dSaliguori #ifdef _WIN32
5449dc768dSaliguori #include <windows.h>
5549dc768dSaliguori #endif
5649dc768dSaliguori 
571c9805a3SStefan Hajnoczi #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
581c9805a3SStefan Hajnoczi 
59dc364f4cSBenoît Canet static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
60dc364f4cSBenoît Canet     QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
61dc364f4cSBenoît Canet 
622c1d04e0SMax Reitz static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
632c1d04e0SMax Reitz     QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
642c1d04e0SMax Reitz 
658a22f02aSStefan Hajnoczi static QLIST_HEAD(, BlockDriver) bdrv_drivers =
668a22f02aSStefan Hajnoczi     QLIST_HEAD_INITIALIZER(bdrv_drivers);
67ea2384d3Sbellard 
685b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
695b363937SMax Reitz                                            const char *reference,
705b363937SMax Reitz                                            QDict *options, int flags,
71f3930ed0SKevin Wolf                                            BlockDriverState *parent,
725b363937SMax Reitz                                            const BdrvChildRole *child_role,
735b363937SMax Reitz                                            Error **errp);
74f3930ed0SKevin Wolf 
75eb852011SMarkus Armbruster /* If non-zero, use only whitelisted block drivers */
76eb852011SMarkus Armbruster static int use_bdrv_whitelist;
77eb852011SMarkus Armbruster 
789e0b22f4SStefan Hajnoczi #ifdef _WIN32
799e0b22f4SStefan Hajnoczi static int is_windows_drive_prefix(const char *filename)
809e0b22f4SStefan Hajnoczi {
819e0b22f4SStefan Hajnoczi     return (((filename[0] >= 'a' && filename[0] <= 'z') ||
829e0b22f4SStefan Hajnoczi              (filename[0] >= 'A' && filename[0] <= 'Z')) &&
839e0b22f4SStefan Hajnoczi             filename[1] == ':');
849e0b22f4SStefan Hajnoczi }
859e0b22f4SStefan Hajnoczi 
869e0b22f4SStefan Hajnoczi int is_windows_drive(const char *filename)
879e0b22f4SStefan Hajnoczi {
889e0b22f4SStefan Hajnoczi     if (is_windows_drive_prefix(filename) &&
899e0b22f4SStefan Hajnoczi         filename[2] == '\0')
909e0b22f4SStefan Hajnoczi         return 1;
919e0b22f4SStefan Hajnoczi     if (strstart(filename, "\\\\.\\", NULL) ||
929e0b22f4SStefan Hajnoczi         strstart(filename, "//./", NULL))
939e0b22f4SStefan Hajnoczi         return 1;
949e0b22f4SStefan Hajnoczi     return 0;
959e0b22f4SStefan Hajnoczi }
969e0b22f4SStefan Hajnoczi #endif
979e0b22f4SStefan Hajnoczi 
98339064d5SKevin Wolf size_t bdrv_opt_mem_align(BlockDriverState *bs)
99339064d5SKevin Wolf {
100339064d5SKevin Wolf     if (!bs || !bs->drv) {
101459b4e66SDenis V. Lunev         /* page size or 4k (hdd sector size) should be on the safe side */
102459b4e66SDenis V. Lunev         return MAX(4096, getpagesize());
103339064d5SKevin Wolf     }
104339064d5SKevin Wolf 
105339064d5SKevin Wolf     return bs->bl.opt_mem_alignment;
106339064d5SKevin Wolf }
107339064d5SKevin Wolf 
1084196d2f0SDenis V. Lunev size_t bdrv_min_mem_align(BlockDriverState *bs)
1094196d2f0SDenis V. Lunev {
1104196d2f0SDenis V. Lunev     if (!bs || !bs->drv) {
111459b4e66SDenis V. Lunev         /* page size or 4k (hdd sector size) should be on the safe side */
112459b4e66SDenis V. Lunev         return MAX(4096, getpagesize());
1134196d2f0SDenis V. Lunev     }
1144196d2f0SDenis V. Lunev 
1154196d2f0SDenis V. Lunev     return bs->bl.min_mem_alignment;
1164196d2f0SDenis V. Lunev }
1174196d2f0SDenis V. Lunev 
1189e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */
1195c98415bSMax Reitz int path_has_protocol(const char *path)
1209e0b22f4SStefan Hajnoczi {
121947995c0SPaolo Bonzini     const char *p;
122947995c0SPaolo Bonzini 
1239e0b22f4SStefan Hajnoczi #ifdef _WIN32
1249e0b22f4SStefan Hajnoczi     if (is_windows_drive(path) ||
1259e0b22f4SStefan Hajnoczi         is_windows_drive_prefix(path)) {
1269e0b22f4SStefan Hajnoczi         return 0;
1279e0b22f4SStefan Hajnoczi     }
128947995c0SPaolo Bonzini     p = path + strcspn(path, ":/\\");
129947995c0SPaolo Bonzini #else
130947995c0SPaolo Bonzini     p = path + strcspn(path, ":/");
1319e0b22f4SStefan Hajnoczi #endif
1329e0b22f4SStefan Hajnoczi 
133947995c0SPaolo Bonzini     return *p == ':';
1349e0b22f4SStefan Hajnoczi }
1359e0b22f4SStefan Hajnoczi 
13683f64091Sbellard int path_is_absolute(const char *path)
13783f64091Sbellard {
13821664424Sbellard #ifdef _WIN32
13921664424Sbellard     /* specific case for names like: "\\.\d:" */
140f53f4da9SPaolo Bonzini     if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
14121664424Sbellard         return 1;
142f53f4da9SPaolo Bonzini     }
143f53f4da9SPaolo Bonzini     return (*path == '/' || *path == '\\');
1443b9f94e1Sbellard #else
145f53f4da9SPaolo Bonzini     return (*path == '/');
1463b9f94e1Sbellard #endif
14783f64091Sbellard }
14883f64091Sbellard 
14983f64091Sbellard /* if filename is absolute, just copy it to dest. Otherwise, build a
15083f64091Sbellard    path to it by considering it is relative to base_path. URL are
15183f64091Sbellard    supported. */
15283f64091Sbellard void path_combine(char *dest, int dest_size,
15383f64091Sbellard                   const char *base_path,
15483f64091Sbellard                   const char *filename)
15583f64091Sbellard {
15683f64091Sbellard     const char *p, *p1;
15783f64091Sbellard     int len;
15883f64091Sbellard 
15983f64091Sbellard     if (dest_size <= 0)
16083f64091Sbellard         return;
16183f64091Sbellard     if (path_is_absolute(filename)) {
16283f64091Sbellard         pstrcpy(dest, dest_size, filename);
16383f64091Sbellard     } else {
16483f64091Sbellard         p = strchr(base_path, ':');
16583f64091Sbellard         if (p)
16683f64091Sbellard             p++;
16783f64091Sbellard         else
16883f64091Sbellard             p = base_path;
1693b9f94e1Sbellard         p1 = strrchr(base_path, '/');
1703b9f94e1Sbellard #ifdef _WIN32
1713b9f94e1Sbellard         {
1723b9f94e1Sbellard             const char *p2;
1733b9f94e1Sbellard             p2 = strrchr(base_path, '\\');
1743b9f94e1Sbellard             if (!p1 || p2 > p1)
1753b9f94e1Sbellard                 p1 = p2;
1763b9f94e1Sbellard         }
1773b9f94e1Sbellard #endif
17883f64091Sbellard         if (p1)
17983f64091Sbellard             p1++;
18083f64091Sbellard         else
18183f64091Sbellard             p1 = base_path;
18283f64091Sbellard         if (p1 > p)
18383f64091Sbellard             p = p1;
18483f64091Sbellard         len = p - base_path;
18583f64091Sbellard         if (len > dest_size - 1)
18683f64091Sbellard             len = dest_size - 1;
18783f64091Sbellard         memcpy(dest, base_path, len);
18883f64091Sbellard         dest[len] = '\0';
18983f64091Sbellard         pstrcat(dest, dest_size, filename);
19083f64091Sbellard     }
19183f64091Sbellard }
19283f64091Sbellard 
1930a82855aSMax Reitz void bdrv_get_full_backing_filename_from_filename(const char *backed,
1940a82855aSMax Reitz                                                   const char *backing,
1959f07429eSMax Reitz                                                   char *dest, size_t sz,
1969f07429eSMax Reitz                                                   Error **errp)
1970a82855aSMax Reitz {
1989f07429eSMax Reitz     if (backing[0] == '\0' || path_has_protocol(backing) ||
1999f07429eSMax Reitz         path_is_absolute(backing))
2009f07429eSMax Reitz     {
2010a82855aSMax Reitz         pstrcpy(dest, sz, backing);
2029f07429eSMax Reitz     } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
2039f07429eSMax Reitz         error_setg(errp, "Cannot use relative backing file names for '%s'",
2049f07429eSMax Reitz                    backed);
2050a82855aSMax Reitz     } else {
2060a82855aSMax Reitz         path_combine(dest, sz, backed, backing);
2070a82855aSMax Reitz     }
2080a82855aSMax Reitz }
2090a82855aSMax Reitz 
2109f07429eSMax Reitz void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz,
2119f07429eSMax Reitz                                     Error **errp)
212dc5a1371SPaolo Bonzini {
2139f07429eSMax Reitz     char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename;
2149f07429eSMax Reitz 
2159f07429eSMax Reitz     bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file,
2169f07429eSMax Reitz                                                  dest, sz, errp);
217dc5a1371SPaolo Bonzini }
218dc5a1371SPaolo Bonzini 
2190eb7217eSStefan Hajnoczi void bdrv_register(BlockDriver *bdrv)
2200eb7217eSStefan Hajnoczi {
2218a22f02aSStefan Hajnoczi     QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
222ea2384d3Sbellard }
223b338082bSbellard 
224e4e9986bSMarkus Armbruster BlockDriverState *bdrv_new(void)
225e4e9986bSMarkus Armbruster {
226e4e9986bSMarkus Armbruster     BlockDriverState *bs;
227e4e9986bSMarkus Armbruster     int i;
228e4e9986bSMarkus Armbruster 
2295839e53bSMarkus Armbruster     bs = g_new0(BlockDriverState, 1);
230e4654d2dSFam Zheng     QLIST_INIT(&bs->dirty_bitmaps);
231fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
232fbe40ff7SFam Zheng         QLIST_INIT(&bs->op_blockers[i]);
233fbe40ff7SFam Zheng     }
234d616b224SStefan Hajnoczi     notifier_with_return_list_init(&bs->before_write_notifiers);
2359fcb0251SFam Zheng     bs->refcnt = 1;
236dcd04228SStefan Hajnoczi     bs->aio_context = qemu_get_aio_context();
237d7d512f6SPaolo Bonzini 
2383ff2f67aSEvgeny Yakovlev     qemu_co_queue_init(&bs->flush_queue);
2393ff2f67aSEvgeny Yakovlev 
2402c1d04e0SMax Reitz     QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
2412c1d04e0SMax Reitz 
242b338082bSbellard     return bs;
243b338082bSbellard }
244b338082bSbellard 
245ea2384d3Sbellard BlockDriver *bdrv_find_format(const char *format_name)
246ea2384d3Sbellard {
247ea2384d3Sbellard     BlockDriver *drv1;
2488a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
2498a22f02aSStefan Hajnoczi         if (!strcmp(drv1->format_name, format_name)) {
250ea2384d3Sbellard             return drv1;
251ea2384d3Sbellard         }
2528a22f02aSStefan Hajnoczi     }
253ea2384d3Sbellard     return NULL;
254ea2384d3Sbellard }
255ea2384d3Sbellard 
256b64ec4e4SFam Zheng static int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
257eb852011SMarkus Armbruster {
258b64ec4e4SFam Zheng     static const char *whitelist_rw[] = {
259b64ec4e4SFam Zheng         CONFIG_BDRV_RW_WHITELIST
260b64ec4e4SFam Zheng     };
261b64ec4e4SFam Zheng     static const char *whitelist_ro[] = {
262b64ec4e4SFam Zheng         CONFIG_BDRV_RO_WHITELIST
263eb852011SMarkus Armbruster     };
264eb852011SMarkus Armbruster     const char **p;
265eb852011SMarkus Armbruster 
266b64ec4e4SFam Zheng     if (!whitelist_rw[0] && !whitelist_ro[0]) {
267eb852011SMarkus Armbruster         return 1;               /* no whitelist, anything goes */
268b64ec4e4SFam Zheng     }
269eb852011SMarkus Armbruster 
270b64ec4e4SFam Zheng     for (p = whitelist_rw; *p; p++) {
271eb852011SMarkus Armbruster         if (!strcmp(drv->format_name, *p)) {
272eb852011SMarkus Armbruster             return 1;
273eb852011SMarkus Armbruster         }
274eb852011SMarkus Armbruster     }
275b64ec4e4SFam Zheng     if (read_only) {
276b64ec4e4SFam Zheng         for (p = whitelist_ro; *p; p++) {
277b64ec4e4SFam Zheng             if (!strcmp(drv->format_name, *p)) {
278b64ec4e4SFam Zheng                 return 1;
279b64ec4e4SFam Zheng             }
280b64ec4e4SFam Zheng         }
281b64ec4e4SFam Zheng     }
282eb852011SMarkus Armbruster     return 0;
283eb852011SMarkus Armbruster }
284eb852011SMarkus Armbruster 
285e6ff69bfSDaniel P. Berrange bool bdrv_uses_whitelist(void)
286e6ff69bfSDaniel P. Berrange {
287e6ff69bfSDaniel P. Berrange     return use_bdrv_whitelist;
288e6ff69bfSDaniel P. Berrange }
289e6ff69bfSDaniel P. Berrange 
2905b7e1542SZhi Yong Wu typedef struct CreateCo {
2915b7e1542SZhi Yong Wu     BlockDriver *drv;
2925b7e1542SZhi Yong Wu     char *filename;
29383d0521aSChunyan Liu     QemuOpts *opts;
2945b7e1542SZhi Yong Wu     int ret;
295cc84d90fSMax Reitz     Error *err;
2965b7e1542SZhi Yong Wu } CreateCo;
2975b7e1542SZhi Yong Wu 
2985b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque)
2995b7e1542SZhi Yong Wu {
300cc84d90fSMax Reitz     Error *local_err = NULL;
301cc84d90fSMax Reitz     int ret;
302cc84d90fSMax Reitz 
3035b7e1542SZhi Yong Wu     CreateCo *cco = opaque;
3045b7e1542SZhi Yong Wu     assert(cco->drv);
3055b7e1542SZhi Yong Wu 
306c282e1fdSChunyan Liu     ret = cco->drv->bdrv_create(cco->filename, cco->opts, &local_err);
307cc84d90fSMax Reitz     error_propagate(&cco->err, local_err);
308cc84d90fSMax Reitz     cco->ret = ret;
3095b7e1542SZhi Yong Wu }
3105b7e1542SZhi Yong Wu 
3110e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename,
31283d0521aSChunyan Liu                 QemuOpts *opts, Error **errp)
313ea2384d3Sbellard {
3145b7e1542SZhi Yong Wu     int ret;
3150e7e1989SKevin Wolf 
3165b7e1542SZhi Yong Wu     Coroutine *co;
3175b7e1542SZhi Yong Wu     CreateCo cco = {
3185b7e1542SZhi Yong Wu         .drv = drv,
3195b7e1542SZhi Yong Wu         .filename = g_strdup(filename),
32083d0521aSChunyan Liu         .opts = opts,
3215b7e1542SZhi Yong Wu         .ret = NOT_DONE,
322cc84d90fSMax Reitz         .err = NULL,
3235b7e1542SZhi Yong Wu     };
3245b7e1542SZhi Yong Wu 
325c282e1fdSChunyan Liu     if (!drv->bdrv_create) {
326cc84d90fSMax Reitz         error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
32780168bffSLuiz Capitulino         ret = -ENOTSUP;
32880168bffSLuiz Capitulino         goto out;
3295b7e1542SZhi Yong Wu     }
3305b7e1542SZhi Yong Wu 
3315b7e1542SZhi Yong Wu     if (qemu_in_coroutine()) {
3325b7e1542SZhi Yong Wu         /* Fast-path if already in coroutine context */
3335b7e1542SZhi Yong Wu         bdrv_create_co_entry(&cco);
3345b7e1542SZhi Yong Wu     } else {
3350b8b8753SPaolo Bonzini         co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
3360b8b8753SPaolo Bonzini         qemu_coroutine_enter(co);
3375b7e1542SZhi Yong Wu         while (cco.ret == NOT_DONE) {
338b47ec2c4SPaolo Bonzini             aio_poll(qemu_get_aio_context(), true);
3395b7e1542SZhi Yong Wu         }
3405b7e1542SZhi Yong Wu     }
3415b7e1542SZhi Yong Wu 
3425b7e1542SZhi Yong Wu     ret = cco.ret;
343cc84d90fSMax Reitz     if (ret < 0) {
34484d18f06SMarkus Armbruster         if (cco.err) {
345cc84d90fSMax Reitz             error_propagate(errp, cco.err);
346cc84d90fSMax Reitz         } else {
347cc84d90fSMax Reitz             error_setg_errno(errp, -ret, "Could not create image");
348cc84d90fSMax Reitz         }
349cc84d90fSMax Reitz     }
3505b7e1542SZhi Yong Wu 
35180168bffSLuiz Capitulino out:
35280168bffSLuiz Capitulino     g_free(cco.filename);
3535b7e1542SZhi Yong Wu     return ret;
354ea2384d3Sbellard }
355ea2384d3Sbellard 
356c282e1fdSChunyan Liu int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
35784a12e66SChristoph Hellwig {
35884a12e66SChristoph Hellwig     BlockDriver *drv;
359cc84d90fSMax Reitz     Error *local_err = NULL;
360cc84d90fSMax Reitz     int ret;
36184a12e66SChristoph Hellwig 
362b65a5e12SMax Reitz     drv = bdrv_find_protocol(filename, true, errp);
36384a12e66SChristoph Hellwig     if (drv == NULL) {
36416905d71SStefan Hajnoczi         return -ENOENT;
36584a12e66SChristoph Hellwig     }
36684a12e66SChristoph Hellwig 
367c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
368cc84d90fSMax Reitz     error_propagate(errp, local_err);
369cc84d90fSMax Reitz     return ret;
37084a12e66SChristoph Hellwig }
37184a12e66SChristoph Hellwig 
372892b7de8SEkaterina Tumanova /**
373892b7de8SEkaterina Tumanova  * Try to get @bs's logical and physical block size.
374892b7de8SEkaterina Tumanova  * On success, store them in @bsz struct and return 0.
375892b7de8SEkaterina Tumanova  * On failure return -errno.
376892b7de8SEkaterina Tumanova  * @bs must not be empty.
377892b7de8SEkaterina Tumanova  */
378892b7de8SEkaterina Tumanova int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
379892b7de8SEkaterina Tumanova {
380892b7de8SEkaterina Tumanova     BlockDriver *drv = bs->drv;
381892b7de8SEkaterina Tumanova 
382892b7de8SEkaterina Tumanova     if (drv && drv->bdrv_probe_blocksizes) {
383892b7de8SEkaterina Tumanova         return drv->bdrv_probe_blocksizes(bs, bsz);
384892b7de8SEkaterina Tumanova     }
385892b7de8SEkaterina Tumanova 
386892b7de8SEkaterina Tumanova     return -ENOTSUP;
387892b7de8SEkaterina Tumanova }
388892b7de8SEkaterina Tumanova 
389892b7de8SEkaterina Tumanova /**
390892b7de8SEkaterina Tumanova  * Try to get @bs's geometry (cyls, heads, sectors).
391892b7de8SEkaterina Tumanova  * On success, store them in @geo struct and return 0.
392892b7de8SEkaterina Tumanova  * On failure return -errno.
393892b7de8SEkaterina Tumanova  * @bs must not be empty.
394892b7de8SEkaterina Tumanova  */
395892b7de8SEkaterina Tumanova int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
396892b7de8SEkaterina Tumanova {
397892b7de8SEkaterina Tumanova     BlockDriver *drv = bs->drv;
398892b7de8SEkaterina Tumanova 
399892b7de8SEkaterina Tumanova     if (drv && drv->bdrv_probe_geometry) {
400892b7de8SEkaterina Tumanova         return drv->bdrv_probe_geometry(bs, geo);
401892b7de8SEkaterina Tumanova     }
402892b7de8SEkaterina Tumanova 
403892b7de8SEkaterina Tumanova     return -ENOTSUP;
404892b7de8SEkaterina Tumanova }
405892b7de8SEkaterina Tumanova 
406eba25057SJim Meyering /*
407eba25057SJim Meyering  * Create a uniquely-named empty temporary file.
408eba25057SJim Meyering  * Return 0 upon success, otherwise a negative errno value.
409eba25057SJim Meyering  */
410eba25057SJim Meyering int get_tmp_filename(char *filename, int size)
411eba25057SJim Meyering {
412d5249393Sbellard #ifdef _WIN32
4133b9f94e1Sbellard     char temp_dir[MAX_PATH];
414eba25057SJim Meyering     /* GetTempFileName requires that its output buffer (4th param)
415eba25057SJim Meyering        have length MAX_PATH or greater.  */
416eba25057SJim Meyering     assert(size >= MAX_PATH);
417eba25057SJim Meyering     return (GetTempPath(MAX_PATH, temp_dir)
418eba25057SJim Meyering             && GetTempFileName(temp_dir, "qem", 0, filename)
419eba25057SJim Meyering             ? 0 : -GetLastError());
420d5249393Sbellard #else
421ea2384d3Sbellard     int fd;
4227ccfb2ebSblueswir1     const char *tmpdir;
4230badc1eeSaurel32     tmpdir = getenv("TMPDIR");
42469bef793SAmit Shah     if (!tmpdir) {
42569bef793SAmit Shah         tmpdir = "/var/tmp";
42669bef793SAmit Shah     }
427eba25057SJim Meyering     if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
428eba25057SJim Meyering         return -EOVERFLOW;
429ea2384d3Sbellard     }
430eba25057SJim Meyering     fd = mkstemp(filename);
431fe235a06SDunrong Huang     if (fd < 0) {
432fe235a06SDunrong Huang         return -errno;
433fe235a06SDunrong Huang     }
434fe235a06SDunrong Huang     if (close(fd) != 0) {
435fe235a06SDunrong Huang         unlink(filename);
436eba25057SJim Meyering         return -errno;
437eba25057SJim Meyering     }
438eba25057SJim Meyering     return 0;
439d5249393Sbellard #endif
440eba25057SJim Meyering }
441ea2384d3Sbellard 
442f3a5d3f8SChristoph Hellwig /*
443f3a5d3f8SChristoph Hellwig  * Detect host devices. By convention, /dev/cdrom[N] is always
444f3a5d3f8SChristoph Hellwig  * recognized as a host CDROM.
445f3a5d3f8SChristoph Hellwig  */
446f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename)
447f3a5d3f8SChristoph Hellwig {
448508c7cb3SChristoph Hellwig     int score_max = 0, score;
449508c7cb3SChristoph Hellwig     BlockDriver *drv = NULL, *d;
450f3a5d3f8SChristoph Hellwig 
4518a22f02aSStefan Hajnoczi     QLIST_FOREACH(d, &bdrv_drivers, list) {
452508c7cb3SChristoph Hellwig         if (d->bdrv_probe_device) {
453508c7cb3SChristoph Hellwig             score = d->bdrv_probe_device(filename);
454508c7cb3SChristoph Hellwig             if (score > score_max) {
455508c7cb3SChristoph Hellwig                 score_max = score;
456508c7cb3SChristoph Hellwig                 drv = d;
457f3a5d3f8SChristoph Hellwig             }
458508c7cb3SChristoph Hellwig         }
459f3a5d3f8SChristoph Hellwig     }
460f3a5d3f8SChristoph Hellwig 
461508c7cb3SChristoph Hellwig     return drv;
462f3a5d3f8SChristoph Hellwig }
463f3a5d3f8SChristoph Hellwig 
46498289620SKevin Wolf BlockDriver *bdrv_find_protocol(const char *filename,
465b65a5e12SMax Reitz                                 bool allow_protocol_prefix,
466b65a5e12SMax Reitz                                 Error **errp)
46784a12e66SChristoph Hellwig {
46884a12e66SChristoph Hellwig     BlockDriver *drv1;
46984a12e66SChristoph Hellwig     char protocol[128];
47084a12e66SChristoph Hellwig     int len;
47184a12e66SChristoph Hellwig     const char *p;
47284a12e66SChristoph Hellwig 
47366f82ceeSKevin Wolf     /* TODO Drivers without bdrv_file_open must be specified explicitly */
47466f82ceeSKevin Wolf 
47539508e7aSChristoph Hellwig     /*
47639508e7aSChristoph Hellwig      * XXX(hch): we really should not let host device detection
47739508e7aSChristoph Hellwig      * override an explicit protocol specification, but moving this
47839508e7aSChristoph Hellwig      * later breaks access to device names with colons in them.
47939508e7aSChristoph Hellwig      * Thanks to the brain-dead persistent naming schemes on udev-
48039508e7aSChristoph Hellwig      * based Linux systems those actually are quite common.
48139508e7aSChristoph Hellwig      */
48284a12e66SChristoph Hellwig     drv1 = find_hdev_driver(filename);
48339508e7aSChristoph Hellwig     if (drv1) {
48484a12e66SChristoph Hellwig         return drv1;
48584a12e66SChristoph Hellwig     }
48639508e7aSChristoph Hellwig 
48798289620SKevin Wolf     if (!path_has_protocol(filename) || !allow_protocol_prefix) {
488ef810437SMax Reitz         return &bdrv_file;
48939508e7aSChristoph Hellwig     }
49098289620SKevin Wolf 
4919e0b22f4SStefan Hajnoczi     p = strchr(filename, ':');
4929e0b22f4SStefan Hajnoczi     assert(p != NULL);
49384a12e66SChristoph Hellwig     len = p - filename;
49484a12e66SChristoph Hellwig     if (len > sizeof(protocol) - 1)
49584a12e66SChristoph Hellwig         len = sizeof(protocol) - 1;
49684a12e66SChristoph Hellwig     memcpy(protocol, filename, len);
49784a12e66SChristoph Hellwig     protocol[len] = '\0';
49884a12e66SChristoph Hellwig     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
49984a12e66SChristoph Hellwig         if (drv1->protocol_name &&
50084a12e66SChristoph Hellwig             !strcmp(drv1->protocol_name, protocol)) {
50184a12e66SChristoph Hellwig             return drv1;
50284a12e66SChristoph Hellwig         }
50384a12e66SChristoph Hellwig     }
504b65a5e12SMax Reitz 
505b65a5e12SMax Reitz     error_setg(errp, "Unknown protocol '%s'", protocol);
50684a12e66SChristoph Hellwig     return NULL;
50784a12e66SChristoph Hellwig }
50884a12e66SChristoph Hellwig 
509c6684249SMarkus Armbruster /*
510c6684249SMarkus Armbruster  * Guess image format by probing its contents.
511c6684249SMarkus Armbruster  * This is not a good idea when your image is raw (CVE-2008-2004), but
512c6684249SMarkus Armbruster  * we do it anyway for backward compatibility.
513c6684249SMarkus Armbruster  *
514c6684249SMarkus Armbruster  * @buf         contains the image's first @buf_size bytes.
5157cddd372SKevin Wolf  * @buf_size    is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
5167cddd372SKevin Wolf  *              but can be smaller if the image file is smaller)
517c6684249SMarkus Armbruster  * @filename    is its filename.
518c6684249SMarkus Armbruster  *
519c6684249SMarkus Armbruster  * For all block drivers, call the bdrv_probe() method to get its
520c6684249SMarkus Armbruster  * probing score.
521c6684249SMarkus Armbruster  * Return the first block driver with the highest probing score.
522c6684249SMarkus Armbruster  */
52338f3ef57SKevin Wolf BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
524c6684249SMarkus Armbruster                             const char *filename)
525c6684249SMarkus Armbruster {
526c6684249SMarkus Armbruster     int score_max = 0, score;
527c6684249SMarkus Armbruster     BlockDriver *drv = NULL, *d;
528c6684249SMarkus Armbruster 
529c6684249SMarkus Armbruster     QLIST_FOREACH(d, &bdrv_drivers, list) {
530c6684249SMarkus Armbruster         if (d->bdrv_probe) {
531c6684249SMarkus Armbruster             score = d->bdrv_probe(buf, buf_size, filename);
532c6684249SMarkus Armbruster             if (score > score_max) {
533c6684249SMarkus Armbruster                 score_max = score;
534c6684249SMarkus Armbruster                 drv = d;
535c6684249SMarkus Armbruster             }
536c6684249SMarkus Armbruster         }
537c6684249SMarkus Armbruster     }
538c6684249SMarkus Armbruster 
539c6684249SMarkus Armbruster     return drv;
540c6684249SMarkus Armbruster }
541c6684249SMarkus Armbruster 
542cf2ab8fcSKevin Wolf static int find_image_format(BdrvChild *file, const char *filename,
54334b5d2c6SMax Reitz                              BlockDriver **pdrv, Error **errp)
544ea2384d3Sbellard {
545cf2ab8fcSKevin Wolf     BlockDriverState *bs = file->bs;
546c6684249SMarkus Armbruster     BlockDriver *drv;
5477cddd372SKevin Wolf     uint8_t buf[BLOCK_PROBE_BUF_SIZE];
548f500a6d3SKevin Wolf     int ret = 0;
549f8ea0b00SNicholas Bellinger 
55008a00559SKevin Wolf     /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
551b192af8aSDimitris Aragiorgis     if (bdrv_is_sg(bs) || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) {
552ef810437SMax Reitz         *pdrv = &bdrv_raw;
553c98ac35dSStefan Weil         return ret;
5541a396859SNicholas A. Bellinger     }
555f8ea0b00SNicholas Bellinger 
556cf2ab8fcSKevin Wolf     ret = bdrv_pread(file, 0, buf, sizeof(buf));
557ea2384d3Sbellard     if (ret < 0) {
55834b5d2c6SMax Reitz         error_setg_errno(errp, -ret, "Could not read image for determining its "
55934b5d2c6SMax Reitz                          "format");
560c98ac35dSStefan Weil         *pdrv = NULL;
561c98ac35dSStefan Weil         return ret;
562ea2384d3Sbellard     }
563ea2384d3Sbellard 
564c6684249SMarkus Armbruster     drv = bdrv_probe_all(buf, ret, filename);
565c98ac35dSStefan Weil     if (!drv) {
56634b5d2c6SMax Reitz         error_setg(errp, "Could not determine image format: No compatible "
56734b5d2c6SMax Reitz                    "driver found");
568c98ac35dSStefan Weil         ret = -ENOENT;
569c98ac35dSStefan Weil     }
570c98ac35dSStefan Weil     *pdrv = drv;
571c98ac35dSStefan Weil     return ret;
572ea2384d3Sbellard }
573ea2384d3Sbellard 
57451762288SStefan Hajnoczi /**
57551762288SStefan Hajnoczi  * Set the current 'total_sectors' value
57665a9bb25SMarkus Armbruster  * Return 0 on success, -errno on error.
57751762288SStefan Hajnoczi  */
57851762288SStefan Hajnoczi static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
57951762288SStefan Hajnoczi {
58051762288SStefan Hajnoczi     BlockDriver *drv = bs->drv;
58151762288SStefan Hajnoczi 
582396759adSNicholas Bellinger     /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
583b192af8aSDimitris Aragiorgis     if (bdrv_is_sg(bs))
584396759adSNicholas Bellinger         return 0;
585396759adSNicholas Bellinger 
58651762288SStefan Hajnoczi     /* query actual device if possible, otherwise just trust the hint */
58751762288SStefan Hajnoczi     if (drv->bdrv_getlength) {
58851762288SStefan Hajnoczi         int64_t length = drv->bdrv_getlength(bs);
58951762288SStefan Hajnoczi         if (length < 0) {
59051762288SStefan Hajnoczi             return length;
59151762288SStefan Hajnoczi         }
5927e382003SFam Zheng         hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
59351762288SStefan Hajnoczi     }
59451762288SStefan Hajnoczi 
59551762288SStefan Hajnoczi     bs->total_sectors = hint;
59651762288SStefan Hajnoczi     return 0;
59751762288SStefan Hajnoczi }
59851762288SStefan Hajnoczi 
599c3993cdcSStefan Hajnoczi /**
600cddff5baSKevin Wolf  * Combines a QDict of new block driver @options with any missing options taken
601cddff5baSKevin Wolf  * from @old_options, so that leaving out an option defaults to its old value.
602cddff5baSKevin Wolf  */
603cddff5baSKevin Wolf static void bdrv_join_options(BlockDriverState *bs, QDict *options,
604cddff5baSKevin Wolf                               QDict *old_options)
605cddff5baSKevin Wolf {
606cddff5baSKevin Wolf     if (bs->drv && bs->drv->bdrv_join_options) {
607cddff5baSKevin Wolf         bs->drv->bdrv_join_options(options, old_options);
608cddff5baSKevin Wolf     } else {
609cddff5baSKevin Wolf         qdict_join(options, old_options, false);
610cddff5baSKevin Wolf     }
611cddff5baSKevin Wolf }
612cddff5baSKevin Wolf 
613cddff5baSKevin Wolf /**
6149e8f1835SPaolo Bonzini  * Set open flags for a given discard mode
6159e8f1835SPaolo Bonzini  *
6169e8f1835SPaolo Bonzini  * Return 0 on success, -1 if the discard mode was invalid.
6179e8f1835SPaolo Bonzini  */
6189e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags)
6199e8f1835SPaolo Bonzini {
6209e8f1835SPaolo Bonzini     *flags &= ~BDRV_O_UNMAP;
6219e8f1835SPaolo Bonzini 
6229e8f1835SPaolo Bonzini     if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
6239e8f1835SPaolo Bonzini         /* do nothing */
6249e8f1835SPaolo Bonzini     } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
6259e8f1835SPaolo Bonzini         *flags |= BDRV_O_UNMAP;
6269e8f1835SPaolo Bonzini     } else {
6279e8f1835SPaolo Bonzini         return -1;
6289e8f1835SPaolo Bonzini     }
6299e8f1835SPaolo Bonzini 
6309e8f1835SPaolo Bonzini     return 0;
6319e8f1835SPaolo Bonzini }
6329e8f1835SPaolo Bonzini 
6339e8f1835SPaolo Bonzini /**
634c3993cdcSStefan Hajnoczi  * Set open flags for a given cache mode
635c3993cdcSStefan Hajnoczi  *
636c3993cdcSStefan Hajnoczi  * Return 0 on success, -1 if the cache mode was invalid.
637c3993cdcSStefan Hajnoczi  */
63853e8ae01SKevin Wolf int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
639c3993cdcSStefan Hajnoczi {
640c3993cdcSStefan Hajnoczi     *flags &= ~BDRV_O_CACHE_MASK;
641c3993cdcSStefan Hajnoczi 
642c3993cdcSStefan Hajnoczi     if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
64353e8ae01SKevin Wolf         *writethrough = false;
64453e8ae01SKevin Wolf         *flags |= BDRV_O_NOCACHE;
64592196b2fSStefan Hajnoczi     } else if (!strcmp(mode, "directsync")) {
64653e8ae01SKevin Wolf         *writethrough = true;
64792196b2fSStefan Hajnoczi         *flags |= BDRV_O_NOCACHE;
648c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writeback")) {
64953e8ae01SKevin Wolf         *writethrough = false;
650c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "unsafe")) {
65153e8ae01SKevin Wolf         *writethrough = false;
652c3993cdcSStefan Hajnoczi         *flags |= BDRV_O_NO_FLUSH;
653c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writethrough")) {
65453e8ae01SKevin Wolf         *writethrough = true;
655c3993cdcSStefan Hajnoczi     } else {
656c3993cdcSStefan Hajnoczi         return -1;
657c3993cdcSStefan Hajnoczi     }
658c3993cdcSStefan Hajnoczi 
659c3993cdcSStefan Hajnoczi     return 0;
660c3993cdcSStefan Hajnoczi }
661c3993cdcSStefan Hajnoczi 
66220018e12SKevin Wolf static void bdrv_child_cb_drained_begin(BdrvChild *child)
66320018e12SKevin Wolf {
66420018e12SKevin Wolf     BlockDriverState *bs = child->opaque;
66520018e12SKevin Wolf     bdrv_drained_begin(bs);
66620018e12SKevin Wolf }
66720018e12SKevin Wolf 
66820018e12SKevin Wolf static void bdrv_child_cb_drained_end(BdrvChild *child)
66920018e12SKevin Wolf {
67020018e12SKevin Wolf     BlockDriverState *bs = child->opaque;
67120018e12SKevin Wolf     bdrv_drained_end(bs);
67220018e12SKevin Wolf }
67320018e12SKevin Wolf 
6740b50cc88SKevin Wolf /*
67573176beeSKevin Wolf  * Returns the options and flags that a temporary snapshot should get, based on
67673176beeSKevin Wolf  * the originally requested flags (the originally requested image will have
67773176beeSKevin Wolf  * flags like a backing file)
678b1e6fc08SKevin Wolf  */
67973176beeSKevin Wolf static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
68073176beeSKevin Wolf                                        int parent_flags, QDict *parent_options)
681b1e6fc08SKevin Wolf {
68273176beeSKevin Wolf     *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
68373176beeSKevin Wolf 
68473176beeSKevin Wolf     /* For temporary files, unconditional cache=unsafe is fine */
68573176beeSKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
68673176beeSKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
68741869044SKevin Wolf 
68841869044SKevin Wolf     /* aio=native doesn't work for cache.direct=off, so disable it for the
68941869044SKevin Wolf      * temporary snapshot */
69041869044SKevin Wolf     *child_flags &= ~BDRV_O_NATIVE_AIO;
691b1e6fc08SKevin Wolf }
692b1e6fc08SKevin Wolf 
693b1e6fc08SKevin Wolf /*
6948e2160e2SKevin Wolf  * Returns the options and flags that bs->file should get if a protocol driver
6958e2160e2SKevin Wolf  * is expected, based on the given options and flags for the parent BDS
6960b50cc88SKevin Wolf  */
6978e2160e2SKevin Wolf static void bdrv_inherited_options(int *child_flags, QDict *child_options,
6988e2160e2SKevin Wolf                                    int parent_flags, QDict *parent_options)
6990b50cc88SKevin Wolf {
7008e2160e2SKevin Wolf     int flags = parent_flags;
7018e2160e2SKevin Wolf 
7020b50cc88SKevin Wolf     /* Enable protocol handling, disable format probing for bs->file */
7030b50cc88SKevin Wolf     flags |= BDRV_O_PROTOCOL;
7040b50cc88SKevin Wolf 
70591a097e7SKevin Wolf     /* If the cache mode isn't explicitly set, inherit direct and no-flush from
70691a097e7SKevin Wolf      * the parent. */
70791a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
70891a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
70991a097e7SKevin Wolf 
7100b50cc88SKevin Wolf     /* Our block drivers take care to send flushes and respect unmap policy,
71191a097e7SKevin Wolf      * so we can default to enable both on lower layers regardless of the
71291a097e7SKevin Wolf      * corresponding parent options. */
71391a097e7SKevin Wolf     flags |= BDRV_O_UNMAP;
7140b50cc88SKevin Wolf 
7150b50cc88SKevin Wolf     /* Clear flags that only apply to the top layer */
716abb06c5aSDaniel P. Berrange     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ |
717abb06c5aSDaniel P. Berrange                BDRV_O_NO_IO);
7180b50cc88SKevin Wolf 
7198e2160e2SKevin Wolf     *child_flags = flags;
7200b50cc88SKevin Wolf }
7210b50cc88SKevin Wolf 
722f3930ed0SKevin Wolf const BdrvChildRole child_file = {
7238e2160e2SKevin Wolf     .inherit_options = bdrv_inherited_options,
72420018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
72520018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
726f3930ed0SKevin Wolf };
727f3930ed0SKevin Wolf 
728f3930ed0SKevin Wolf /*
7298e2160e2SKevin Wolf  * Returns the options and flags that bs->file should get if the use of formats
7308e2160e2SKevin Wolf  * (and not only protocols) is permitted for it, based on the given options and
7318e2160e2SKevin Wolf  * flags for the parent BDS
732f3930ed0SKevin Wolf  */
7338e2160e2SKevin Wolf static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
7348e2160e2SKevin Wolf                                        int parent_flags, QDict *parent_options)
735f3930ed0SKevin Wolf {
7368e2160e2SKevin Wolf     child_file.inherit_options(child_flags, child_options,
7378e2160e2SKevin Wolf                                parent_flags, parent_options);
7388e2160e2SKevin Wolf 
739abb06c5aSDaniel P. Berrange     *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
740f3930ed0SKevin Wolf }
741f3930ed0SKevin Wolf 
742f3930ed0SKevin Wolf const BdrvChildRole child_format = {
7438e2160e2SKevin Wolf     .inherit_options = bdrv_inherited_fmt_options,
74420018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
74520018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
746f3930ed0SKevin Wolf };
747f3930ed0SKevin Wolf 
748317fc44eSKevin Wolf /*
7498e2160e2SKevin Wolf  * Returns the options and flags that bs->backing should get, based on the
7508e2160e2SKevin Wolf  * given options and flags for the parent BDS
751317fc44eSKevin Wolf  */
7528e2160e2SKevin Wolf static void bdrv_backing_options(int *child_flags, QDict *child_options,
7538e2160e2SKevin Wolf                                  int parent_flags, QDict *parent_options)
754317fc44eSKevin Wolf {
7558e2160e2SKevin Wolf     int flags = parent_flags;
7568e2160e2SKevin Wolf 
757b8816a43SKevin Wolf     /* The cache mode is inherited unmodified for backing files; except WCE,
758b8816a43SKevin Wolf      * which is only applied on the top level (BlockBackend) */
75991a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
76091a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
76191a097e7SKevin Wolf 
762317fc44eSKevin Wolf     /* backing files always opened read-only */
763317fc44eSKevin Wolf     flags &= ~(BDRV_O_RDWR | BDRV_O_COPY_ON_READ);
764317fc44eSKevin Wolf 
765317fc44eSKevin Wolf     /* snapshot=on is handled on the top layer */
7668bfea15dSKevin Wolf     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
767317fc44eSKevin Wolf 
7688e2160e2SKevin Wolf     *child_flags = flags;
769317fc44eSKevin Wolf }
770317fc44eSKevin Wolf 
771f3930ed0SKevin Wolf static const BdrvChildRole child_backing = {
7728e2160e2SKevin Wolf     .inherit_options = bdrv_backing_options,
77320018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
77420018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
775f3930ed0SKevin Wolf };
776f3930ed0SKevin Wolf 
7777b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags)
7787b272452SKevin Wolf {
77961de4c68SKevin Wolf     int open_flags = flags;
7807b272452SKevin Wolf 
7817b272452SKevin Wolf     /*
7827b272452SKevin Wolf      * Clear flags that are internal to the block layer before opening the
7837b272452SKevin Wolf      * image.
7847b272452SKevin Wolf      */
78520cca275SKevin Wolf     open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
7867b272452SKevin Wolf 
7877b272452SKevin Wolf     /*
7887b272452SKevin Wolf      * Snapshots should be writable.
7897b272452SKevin Wolf      */
7908bfea15dSKevin Wolf     if (flags & BDRV_O_TEMPORARY) {
7917b272452SKevin Wolf         open_flags |= BDRV_O_RDWR;
7927b272452SKevin Wolf     }
7937b272452SKevin Wolf 
7947b272452SKevin Wolf     return open_flags;
7957b272452SKevin Wolf }
7967b272452SKevin Wolf 
79791a097e7SKevin Wolf static void update_flags_from_options(int *flags, QemuOpts *opts)
79891a097e7SKevin Wolf {
79991a097e7SKevin Wolf     *flags &= ~BDRV_O_CACHE_MASK;
80091a097e7SKevin Wolf 
80191a097e7SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH));
80291a097e7SKevin Wolf     if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
80391a097e7SKevin Wolf         *flags |= BDRV_O_NO_FLUSH;
80491a097e7SKevin Wolf     }
80591a097e7SKevin Wolf 
80691a097e7SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT));
80791a097e7SKevin Wolf     if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) {
80891a097e7SKevin Wolf         *flags |= BDRV_O_NOCACHE;
80991a097e7SKevin Wolf     }
81091a097e7SKevin Wolf }
81191a097e7SKevin Wolf 
81291a097e7SKevin Wolf static void update_options_from_flags(QDict *options, int flags)
81391a097e7SKevin Wolf {
81491a097e7SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
81591a097e7SKevin Wolf         qdict_put(options, BDRV_OPT_CACHE_DIRECT,
81691a097e7SKevin Wolf                   qbool_from_bool(flags & BDRV_O_NOCACHE));
81791a097e7SKevin Wolf     }
81891a097e7SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
81991a097e7SKevin Wolf         qdict_put(options, BDRV_OPT_CACHE_NO_FLUSH,
82091a097e7SKevin Wolf                   qbool_from_bool(flags & BDRV_O_NO_FLUSH));
82191a097e7SKevin Wolf     }
82291a097e7SKevin Wolf }
82391a097e7SKevin Wolf 
824636ea370SKevin Wolf static void bdrv_assign_node_name(BlockDriverState *bs,
8256913c0c2SBenoît Canet                                   const char *node_name,
8266913c0c2SBenoît Canet                                   Error **errp)
8276913c0c2SBenoît Canet {
82815489c76SJeff Cody     char *gen_node_name = NULL;
8296913c0c2SBenoît Canet 
83015489c76SJeff Cody     if (!node_name) {
83115489c76SJeff Cody         node_name = gen_node_name = id_generate(ID_BLOCK);
83215489c76SJeff Cody     } else if (!id_wellformed(node_name)) {
83315489c76SJeff Cody         /*
83415489c76SJeff Cody          * Check for empty string or invalid characters, but not if it is
83515489c76SJeff Cody          * generated (generated names use characters not available to the user)
83615489c76SJeff Cody          */
8379aebf3b8SKevin Wolf         error_setg(errp, "Invalid node name");
838636ea370SKevin Wolf         return;
8396913c0c2SBenoît Canet     }
8406913c0c2SBenoît Canet 
8410c5e94eeSBenoît Canet     /* takes care of avoiding namespaces collisions */
8427f06d47eSMarkus Armbruster     if (blk_by_name(node_name)) {
8430c5e94eeSBenoît Canet         error_setg(errp, "node-name=%s is conflicting with a device id",
8440c5e94eeSBenoît Canet                    node_name);
84515489c76SJeff Cody         goto out;
8460c5e94eeSBenoît Canet     }
8470c5e94eeSBenoît Canet 
8486913c0c2SBenoît Canet     /* takes care of avoiding duplicates node names */
8496913c0c2SBenoît Canet     if (bdrv_find_node(node_name)) {
8506913c0c2SBenoît Canet         error_setg(errp, "Duplicate node name");
85115489c76SJeff Cody         goto out;
8526913c0c2SBenoît Canet     }
8536913c0c2SBenoît Canet 
8546913c0c2SBenoît Canet     /* copy node name into the bs and insert it into the graph list */
8556913c0c2SBenoît Canet     pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
8566913c0c2SBenoît Canet     QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
85715489c76SJeff Cody out:
85815489c76SJeff Cody     g_free(gen_node_name);
8596913c0c2SBenoît Canet }
8606913c0c2SBenoît Canet 
86118edf289SKevin Wolf static QemuOptsList bdrv_runtime_opts = {
86218edf289SKevin Wolf     .name = "bdrv_common",
86318edf289SKevin Wolf     .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
86418edf289SKevin Wolf     .desc = {
86518edf289SKevin Wolf         {
86618edf289SKevin Wolf             .name = "node-name",
86718edf289SKevin Wolf             .type = QEMU_OPT_STRING,
86818edf289SKevin Wolf             .help = "Node name of the block device node",
86918edf289SKevin Wolf         },
87062392ebbSKevin Wolf         {
87162392ebbSKevin Wolf             .name = "driver",
87262392ebbSKevin Wolf             .type = QEMU_OPT_STRING,
87362392ebbSKevin Wolf             .help = "Block driver to use for the node",
87462392ebbSKevin Wolf         },
87591a097e7SKevin Wolf         {
87691a097e7SKevin Wolf             .name = BDRV_OPT_CACHE_DIRECT,
87791a097e7SKevin Wolf             .type = QEMU_OPT_BOOL,
87891a097e7SKevin Wolf             .help = "Bypass software writeback cache on the host",
87991a097e7SKevin Wolf         },
88091a097e7SKevin Wolf         {
88191a097e7SKevin Wolf             .name = BDRV_OPT_CACHE_NO_FLUSH,
88291a097e7SKevin Wolf             .type = QEMU_OPT_BOOL,
88391a097e7SKevin Wolf             .help = "Ignore flush requests",
88491a097e7SKevin Wolf         },
88518edf289SKevin Wolf         { /* end of list */ }
88618edf289SKevin Wolf     },
88718edf289SKevin Wolf };
88818edf289SKevin Wolf 
889b6ce07aaSKevin Wolf /*
89057915332SKevin Wolf  * Common part for opening disk images and files
891b6ad491aSKevin Wolf  *
892b6ad491aSKevin Wolf  * Removes all processed options from *options.
89357915332SKevin Wolf  */
8949a4f4c31SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BdrvChild *file,
89582dc8b41SKevin Wolf                             QDict *options, Error **errp)
89657915332SKevin Wolf {
89757915332SKevin Wolf     int ret, open_flags;
898035fccdfSKevin Wolf     const char *filename;
89962392ebbSKevin Wolf     const char *driver_name = NULL;
9006913c0c2SBenoît Canet     const char *node_name = NULL;
90118edf289SKevin Wolf     QemuOpts *opts;
90262392ebbSKevin Wolf     BlockDriver *drv;
90334b5d2c6SMax Reitz     Error *local_err = NULL;
90457915332SKevin Wolf 
9056405875cSPaolo Bonzini     assert(bs->file == NULL);
906707ff828SKevin Wolf     assert(options != NULL && bs->options != options);
90757915332SKevin Wolf 
90862392ebbSKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
90962392ebbSKevin Wolf     qemu_opts_absorb_qdict(opts, options, &local_err);
91062392ebbSKevin Wolf     if (local_err) {
91162392ebbSKevin Wolf         error_propagate(errp, local_err);
91262392ebbSKevin Wolf         ret = -EINVAL;
91362392ebbSKevin Wolf         goto fail_opts;
91462392ebbSKevin Wolf     }
91562392ebbSKevin Wolf 
91662392ebbSKevin Wolf     driver_name = qemu_opt_get(opts, "driver");
91762392ebbSKevin Wolf     drv = bdrv_find_format(driver_name);
91862392ebbSKevin Wolf     assert(drv != NULL);
91962392ebbSKevin Wolf 
92045673671SKevin Wolf     if (file != NULL) {
9219a4f4c31SKevin Wolf         filename = file->bs->filename;
92245673671SKevin Wolf     } else {
92345673671SKevin Wolf         filename = qdict_get_try_str(options, "filename");
92445673671SKevin Wolf     }
92545673671SKevin Wolf 
926765003dbSKevin Wolf     if (drv->bdrv_needs_filename && !filename) {
927765003dbSKevin Wolf         error_setg(errp, "The '%s' block driver requires a file name",
928765003dbSKevin Wolf                    drv->format_name);
92918edf289SKevin Wolf         ret = -EINVAL;
93018edf289SKevin Wolf         goto fail_opts;
93118edf289SKevin Wolf     }
93218edf289SKevin Wolf 
93382dc8b41SKevin Wolf     trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
93482dc8b41SKevin Wolf                            drv->format_name);
93562392ebbSKevin Wolf 
93618edf289SKevin Wolf     node_name = qemu_opt_get(opts, "node-name");
937636ea370SKevin Wolf     bdrv_assign_node_name(bs, node_name, &local_err);
9380fb6395cSMarkus Armbruster     if (local_err) {
939636ea370SKevin Wolf         error_propagate(errp, local_err);
94018edf289SKevin Wolf         ret = -EINVAL;
94118edf289SKevin Wolf         goto fail_opts;
9425d186eb0SKevin Wolf     }
9435d186eb0SKevin Wolf 
94482dc8b41SKevin Wolf     bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
945b64ec4e4SFam Zheng 
946b64ec4e4SFam Zheng     if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
9478f94a6e4SKevin Wolf         error_setg(errp,
9488f94a6e4SKevin Wolf                    !bs->read_only && bdrv_is_whitelisted(drv, true)
9498f94a6e4SKevin Wolf                         ? "Driver '%s' can only be used for read-only devices"
9508f94a6e4SKevin Wolf                         : "Driver '%s' is not whitelisted",
9518f94a6e4SKevin Wolf                    drv->format_name);
95218edf289SKevin Wolf         ret = -ENOTSUP;
95318edf289SKevin Wolf         goto fail_opts;
954b64ec4e4SFam Zheng     }
95557915332SKevin Wolf 
95653fec9d3SStefan Hajnoczi     assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */
95782dc8b41SKevin Wolf     if (bs->open_flags & BDRV_O_COPY_ON_READ) {
9580ebd24e0SKevin Wolf         if (!bs->read_only) {
95953fec9d3SStefan Hajnoczi             bdrv_enable_copy_on_read(bs);
9600ebd24e0SKevin Wolf         } else {
9610ebd24e0SKevin Wolf             error_setg(errp, "Can't use copy-on-read on read-only device");
96218edf289SKevin Wolf             ret = -EINVAL;
96318edf289SKevin Wolf             goto fail_opts;
9640ebd24e0SKevin Wolf         }
96553fec9d3SStefan Hajnoczi     }
96653fec9d3SStefan Hajnoczi 
967c2ad1b0cSKevin Wolf     if (filename != NULL) {
96857915332SKevin Wolf         pstrcpy(bs->filename, sizeof(bs->filename), filename);
969c2ad1b0cSKevin Wolf     } else {
970c2ad1b0cSKevin Wolf         bs->filename[0] = '\0';
971c2ad1b0cSKevin Wolf     }
97291af7014SMax Reitz     pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
97357915332SKevin Wolf 
97457915332SKevin Wolf     bs->drv = drv;
9757267c094SAnthony Liguori     bs->opaque = g_malloc0(drv->instance_size);
97657915332SKevin Wolf 
97791a097e7SKevin Wolf     /* Apply cache mode options */
97891a097e7SKevin Wolf     update_flags_from_options(&bs->open_flags, opts);
97973ac451fSKevin Wolf 
98066f82ceeSKevin Wolf     /* Open the image, either directly or using a protocol */
98182dc8b41SKevin Wolf     open_flags = bdrv_open_flags(bs, bs->open_flags);
98266f82ceeSKevin Wolf     if (drv->bdrv_file_open) {
9835d186eb0SKevin Wolf         assert(file == NULL);
984030be321SBenoît Canet         assert(!drv->bdrv_needs_filename || filename != NULL);
98534b5d2c6SMax Reitz         ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
986f500a6d3SKevin Wolf     } else {
9872af5ef70SKevin Wolf         if (file == NULL) {
98834b5d2c6SMax Reitz             error_setg(errp, "Can't use '%s' as a block driver for the "
98934b5d2c6SMax Reitz                        "protocol level", drv->format_name);
9902af5ef70SKevin Wolf             ret = -EINVAL;
9912af5ef70SKevin Wolf             goto free_and_fail;
9922af5ef70SKevin Wolf         }
993f500a6d3SKevin Wolf         bs->file = file;
99434b5d2c6SMax Reitz         ret = drv->bdrv_open(bs, options, open_flags, &local_err);
99566f82ceeSKevin Wolf     }
99666f82ceeSKevin Wolf 
99757915332SKevin Wolf     if (ret < 0) {
99884d18f06SMarkus Armbruster         if (local_err) {
99934b5d2c6SMax Reitz             error_propagate(errp, local_err);
10002fa9aa59SDunrong Huang         } else if (bs->filename[0]) {
10012fa9aa59SDunrong Huang             error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
100234b5d2c6SMax Reitz         } else {
100334b5d2c6SMax Reitz             error_setg_errno(errp, -ret, "Could not open image");
100434b5d2c6SMax Reitz         }
100557915332SKevin Wolf         goto free_and_fail;
100657915332SKevin Wolf     }
100757915332SKevin Wolf 
100851762288SStefan Hajnoczi     ret = refresh_total_sectors(bs, bs->total_sectors);
100951762288SStefan Hajnoczi     if (ret < 0) {
101034b5d2c6SMax Reitz         error_setg_errno(errp, -ret, "Could not refresh total sector count");
101151762288SStefan Hajnoczi         goto free_and_fail;
101257915332SKevin Wolf     }
101351762288SStefan Hajnoczi 
10143baca891SKevin Wolf     bdrv_refresh_limits(bs, &local_err);
10153baca891SKevin Wolf     if (local_err) {
10163baca891SKevin Wolf         error_propagate(errp, local_err);
10173baca891SKevin Wolf         ret = -EINVAL;
10183baca891SKevin Wolf         goto free_and_fail;
10193baca891SKevin Wolf     }
10203baca891SKevin Wolf 
1021c25f53b0SPaolo Bonzini     assert(bdrv_opt_mem_align(bs) != 0);
10224196d2f0SDenis V. Lunev     assert(bdrv_min_mem_align(bs) != 0);
1023a5b8dd2cSEric Blake     assert(is_power_of_2(bs->bl.request_alignment));
102418edf289SKevin Wolf 
102518edf289SKevin Wolf     qemu_opts_del(opts);
102657915332SKevin Wolf     return 0;
102757915332SKevin Wolf 
102857915332SKevin Wolf free_and_fail:
102966f82ceeSKevin Wolf     bs->file = NULL;
10307267c094SAnthony Liguori     g_free(bs->opaque);
103157915332SKevin Wolf     bs->opaque = NULL;
103257915332SKevin Wolf     bs->drv = NULL;
103318edf289SKevin Wolf fail_opts:
103418edf289SKevin Wolf     qemu_opts_del(opts);
103557915332SKevin Wolf     return ret;
103657915332SKevin Wolf }
103757915332SKevin Wolf 
10385e5c4f63SKevin Wolf static QDict *parse_json_filename(const char *filename, Error **errp)
10395e5c4f63SKevin Wolf {
10405e5c4f63SKevin Wolf     QObject *options_obj;
10415e5c4f63SKevin Wolf     QDict *options;
10425e5c4f63SKevin Wolf     int ret;
10435e5c4f63SKevin Wolf 
10445e5c4f63SKevin Wolf     ret = strstart(filename, "json:", &filename);
10455e5c4f63SKevin Wolf     assert(ret);
10465e5c4f63SKevin Wolf 
10475e5c4f63SKevin Wolf     options_obj = qobject_from_json(filename);
10485e5c4f63SKevin Wolf     if (!options_obj) {
10495e5c4f63SKevin Wolf         error_setg(errp, "Could not parse the JSON options");
10505e5c4f63SKevin Wolf         return NULL;
10515e5c4f63SKevin Wolf     }
10525e5c4f63SKevin Wolf 
10535e5c4f63SKevin Wolf     if (qobject_type(options_obj) != QTYPE_QDICT) {
10545e5c4f63SKevin Wolf         qobject_decref(options_obj);
10555e5c4f63SKevin Wolf         error_setg(errp, "Invalid JSON object given");
10565e5c4f63SKevin Wolf         return NULL;
10575e5c4f63SKevin Wolf     }
10585e5c4f63SKevin Wolf 
10595e5c4f63SKevin Wolf     options = qobject_to_qdict(options_obj);
10605e5c4f63SKevin Wolf     qdict_flatten(options);
10615e5c4f63SKevin Wolf 
10625e5c4f63SKevin Wolf     return options;
10635e5c4f63SKevin Wolf }
10645e5c4f63SKevin Wolf 
1065de3b53f0SKevin Wolf static void parse_json_protocol(QDict *options, const char **pfilename,
1066de3b53f0SKevin Wolf                                 Error **errp)
1067de3b53f0SKevin Wolf {
1068de3b53f0SKevin Wolf     QDict *json_options;
1069de3b53f0SKevin Wolf     Error *local_err = NULL;
1070de3b53f0SKevin Wolf 
1071de3b53f0SKevin Wolf     /* Parse json: pseudo-protocol */
1072de3b53f0SKevin Wolf     if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1073de3b53f0SKevin Wolf         return;
1074de3b53f0SKevin Wolf     }
1075de3b53f0SKevin Wolf 
1076de3b53f0SKevin Wolf     json_options = parse_json_filename(*pfilename, &local_err);
1077de3b53f0SKevin Wolf     if (local_err) {
1078de3b53f0SKevin Wolf         error_propagate(errp, local_err);
1079de3b53f0SKevin Wolf         return;
1080de3b53f0SKevin Wolf     }
1081de3b53f0SKevin Wolf 
1082de3b53f0SKevin Wolf     /* Options given in the filename have lower priority than options
1083de3b53f0SKevin Wolf      * specified directly */
1084de3b53f0SKevin Wolf     qdict_join(options, json_options, false);
1085de3b53f0SKevin Wolf     QDECREF(json_options);
1086de3b53f0SKevin Wolf     *pfilename = NULL;
1087de3b53f0SKevin Wolf }
1088de3b53f0SKevin Wolf 
108957915332SKevin Wolf /*
1090f54120ffSKevin Wolf  * Fills in default options for opening images and converts the legacy
1091f54120ffSKevin Wolf  * filename/flags pair to option QDict entries.
109253a29513SMax Reitz  * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
109353a29513SMax Reitz  * block driver has been specified explicitly.
1094f54120ffSKevin Wolf  */
1095de3b53f0SKevin Wolf static int bdrv_fill_options(QDict **options, const char *filename,
1096053e1578SMax Reitz                              int *flags, Error **errp)
1097f54120ffSKevin Wolf {
1098f54120ffSKevin Wolf     const char *drvname;
109953a29513SMax Reitz     bool protocol = *flags & BDRV_O_PROTOCOL;
1100f54120ffSKevin Wolf     bool parse_filename = false;
1101053e1578SMax Reitz     BlockDriver *drv = NULL;
1102f54120ffSKevin Wolf     Error *local_err = NULL;
1103f54120ffSKevin Wolf 
110453a29513SMax Reitz     drvname = qdict_get_try_str(*options, "driver");
1105053e1578SMax Reitz     if (drvname) {
1106053e1578SMax Reitz         drv = bdrv_find_format(drvname);
1107053e1578SMax Reitz         if (!drv) {
1108053e1578SMax Reitz             error_setg(errp, "Unknown driver '%s'", drvname);
1109053e1578SMax Reitz             return -ENOENT;
1110053e1578SMax Reitz         }
111153a29513SMax Reitz         /* If the user has explicitly specified the driver, this choice should
111253a29513SMax Reitz          * override the BDRV_O_PROTOCOL flag */
1113053e1578SMax Reitz         protocol = drv->bdrv_file_open;
111453a29513SMax Reitz     }
111553a29513SMax Reitz 
111653a29513SMax Reitz     if (protocol) {
111753a29513SMax Reitz         *flags |= BDRV_O_PROTOCOL;
111853a29513SMax Reitz     } else {
111953a29513SMax Reitz         *flags &= ~BDRV_O_PROTOCOL;
112053a29513SMax Reitz     }
112153a29513SMax Reitz 
112291a097e7SKevin Wolf     /* Translate cache options from flags into options */
112391a097e7SKevin Wolf     update_options_from_flags(*options, *flags);
112491a097e7SKevin Wolf 
1125f54120ffSKevin Wolf     /* Fetch the file name from the options QDict if necessary */
112617b005f1SKevin Wolf     if (protocol && filename) {
1127f54120ffSKevin Wolf         if (!qdict_haskey(*options, "filename")) {
1128f54120ffSKevin Wolf             qdict_put(*options, "filename", qstring_from_str(filename));
1129f54120ffSKevin Wolf             parse_filename = true;
1130f54120ffSKevin Wolf         } else {
1131f54120ffSKevin Wolf             error_setg(errp, "Can't specify 'file' and 'filename' options at "
1132f54120ffSKevin Wolf                              "the same time");
1133f54120ffSKevin Wolf             return -EINVAL;
1134f54120ffSKevin Wolf         }
1135f54120ffSKevin Wolf     }
1136f54120ffSKevin Wolf 
1137f54120ffSKevin Wolf     /* Find the right block driver */
1138f54120ffSKevin Wolf     filename = qdict_get_try_str(*options, "filename");
1139f54120ffSKevin Wolf 
114017b005f1SKevin Wolf     if (!drvname && protocol) {
1141f54120ffSKevin Wolf         if (filename) {
1142b65a5e12SMax Reitz             drv = bdrv_find_protocol(filename, parse_filename, errp);
1143f54120ffSKevin Wolf             if (!drv) {
1144f54120ffSKevin Wolf                 return -EINVAL;
1145f54120ffSKevin Wolf             }
1146f54120ffSKevin Wolf 
1147f54120ffSKevin Wolf             drvname = drv->format_name;
1148f54120ffSKevin Wolf             qdict_put(*options, "driver", qstring_from_str(drvname));
1149f54120ffSKevin Wolf         } else {
1150f54120ffSKevin Wolf             error_setg(errp, "Must specify either driver or file");
1151f54120ffSKevin Wolf             return -EINVAL;
1152f54120ffSKevin Wolf         }
115317b005f1SKevin Wolf     }
115417b005f1SKevin Wolf 
115517b005f1SKevin Wolf     assert(drv || !protocol);
1156f54120ffSKevin Wolf 
1157f54120ffSKevin Wolf     /* Driver-specific filename parsing */
115817b005f1SKevin Wolf     if (drv && drv->bdrv_parse_filename && parse_filename) {
1159f54120ffSKevin Wolf         drv->bdrv_parse_filename(filename, *options, &local_err);
1160f54120ffSKevin Wolf         if (local_err) {
1161f54120ffSKevin Wolf             error_propagate(errp, local_err);
1162f54120ffSKevin Wolf             return -EINVAL;
1163f54120ffSKevin Wolf         }
1164f54120ffSKevin Wolf 
1165f54120ffSKevin Wolf         if (!drv->bdrv_needs_filename) {
1166f54120ffSKevin Wolf             qdict_del(*options, "filename");
1167f54120ffSKevin Wolf         }
1168f54120ffSKevin Wolf     }
1169f54120ffSKevin Wolf 
1170f54120ffSKevin Wolf     return 0;
1171f54120ffSKevin Wolf }
1172f54120ffSKevin Wolf 
1173e9740bc6SKevin Wolf static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
1174e9740bc6SKevin Wolf {
1175e9740bc6SKevin Wolf     BlockDriverState *old_bs = child->bs;
1176e9740bc6SKevin Wolf 
1177e9740bc6SKevin Wolf     if (old_bs) {
117836fe1331SKevin Wolf         if (old_bs->quiesce_counter && child->role->drained_end) {
117936fe1331SKevin Wolf             child->role->drained_end(child);
1180e9740bc6SKevin Wolf         }
118136fe1331SKevin Wolf         QLIST_REMOVE(child, next_parent);
1182e9740bc6SKevin Wolf     }
1183e9740bc6SKevin Wolf 
1184e9740bc6SKevin Wolf     child->bs = new_bs;
118536fe1331SKevin Wolf 
118636fe1331SKevin Wolf     if (new_bs) {
118736fe1331SKevin Wolf         QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
118836fe1331SKevin Wolf         if (new_bs->quiesce_counter && child->role->drained_begin) {
118936fe1331SKevin Wolf             child->role->drained_begin(child);
119036fe1331SKevin Wolf         }
119136fe1331SKevin Wolf     }
1192e9740bc6SKevin Wolf }
1193e9740bc6SKevin Wolf 
1194f21d96d0SKevin Wolf BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
1195260fecf1SKevin Wolf                                   const char *child_name,
119636fe1331SKevin Wolf                                   const BdrvChildRole *child_role,
119736fe1331SKevin Wolf                                   void *opaque)
1198df581792SKevin Wolf {
1199df581792SKevin Wolf     BdrvChild *child = g_new(BdrvChild, 1);
1200df581792SKevin Wolf     *child = (BdrvChild) {
1201e9740bc6SKevin Wolf         .bs     = NULL,
1202260fecf1SKevin Wolf         .name   = g_strdup(child_name),
1203df581792SKevin Wolf         .role   = child_role,
120436fe1331SKevin Wolf         .opaque = opaque,
1205df581792SKevin Wolf     };
1206df581792SKevin Wolf 
1207e9740bc6SKevin Wolf     bdrv_replace_child(child, child_bs);
1208b4b059f6SKevin Wolf 
1209b4b059f6SKevin Wolf     return child;
1210df581792SKevin Wolf }
1211df581792SKevin Wolf 
121298292c61SWen Congyang BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
1213f21d96d0SKevin Wolf                              BlockDriverState *child_bs,
1214f21d96d0SKevin Wolf                              const char *child_name,
1215f21d96d0SKevin Wolf                              const BdrvChildRole *child_role)
1216f21d96d0SKevin Wolf {
121736fe1331SKevin Wolf     BdrvChild *child = bdrv_root_attach_child(child_bs, child_name, child_role,
121820018e12SKevin Wolf                                               parent_bs);
1219f21d96d0SKevin Wolf     QLIST_INSERT_HEAD(&parent_bs->children, child, next);
1220f21d96d0SKevin Wolf     return child;
1221f21d96d0SKevin Wolf }
1222f21d96d0SKevin Wolf 
12233f09bfbcSKevin Wolf static void bdrv_detach_child(BdrvChild *child)
122433a60407SKevin Wolf {
1225f21d96d0SKevin Wolf     if (child->next.le_prev) {
122633a60407SKevin Wolf         QLIST_REMOVE(child, next);
1227f21d96d0SKevin Wolf         child->next.le_prev = NULL;
1228f21d96d0SKevin Wolf     }
1229e9740bc6SKevin Wolf 
1230e9740bc6SKevin Wolf     bdrv_replace_child(child, NULL);
1231e9740bc6SKevin Wolf 
1232260fecf1SKevin Wolf     g_free(child->name);
123333a60407SKevin Wolf     g_free(child);
123433a60407SKevin Wolf }
123533a60407SKevin Wolf 
1236f21d96d0SKevin Wolf void bdrv_root_unref_child(BdrvChild *child)
123733a60407SKevin Wolf {
1238779020cbSKevin Wolf     BlockDriverState *child_bs;
1239779020cbSKevin Wolf 
1240f21d96d0SKevin Wolf     child_bs = child->bs;
1241f21d96d0SKevin Wolf     bdrv_detach_child(child);
1242f21d96d0SKevin Wolf     bdrv_unref(child_bs);
1243f21d96d0SKevin Wolf }
1244f21d96d0SKevin Wolf 
1245f21d96d0SKevin Wolf void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
1246f21d96d0SKevin Wolf {
1247779020cbSKevin Wolf     if (child == NULL) {
1248779020cbSKevin Wolf         return;
1249779020cbSKevin Wolf     }
125033a60407SKevin Wolf 
125133a60407SKevin Wolf     if (child->bs->inherits_from == parent) {
125233a60407SKevin Wolf         child->bs->inherits_from = NULL;
125333a60407SKevin Wolf     }
125433a60407SKevin Wolf 
1255f21d96d0SKevin Wolf     bdrv_root_unref_child(child);
125633a60407SKevin Wolf }
125733a60407SKevin Wolf 
12585c8cab48SKevin Wolf 
12595c8cab48SKevin Wolf static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
12605c8cab48SKevin Wolf {
12615c8cab48SKevin Wolf     BdrvChild *c;
12625c8cab48SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
12635c8cab48SKevin Wolf         if (c->role->change_media) {
12645c8cab48SKevin Wolf             c->role->change_media(c, load);
12655c8cab48SKevin Wolf         }
12665c8cab48SKevin Wolf     }
12675c8cab48SKevin Wolf }
12685c8cab48SKevin Wolf 
12695c8cab48SKevin Wolf static void bdrv_parent_cb_resize(BlockDriverState *bs)
12705c8cab48SKevin Wolf {
12715c8cab48SKevin Wolf     BdrvChild *c;
12725c8cab48SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
12735c8cab48SKevin Wolf         if (c->role->resize) {
12745c8cab48SKevin Wolf             c->role->resize(c);
12755c8cab48SKevin Wolf         }
12765c8cab48SKevin Wolf     }
12775c8cab48SKevin Wolf }
12785c8cab48SKevin Wolf 
12795db15a57SKevin Wolf /*
12805db15a57SKevin Wolf  * Sets the backing file link of a BDS. A new reference is created; callers
12815db15a57SKevin Wolf  * which don't need their own reference any more must call bdrv_unref().
12825db15a57SKevin Wolf  */
12838d24cce1SFam Zheng void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd)
12848d24cce1SFam Zheng {
12855db15a57SKevin Wolf     if (backing_hd) {
12865db15a57SKevin Wolf         bdrv_ref(backing_hd);
12875db15a57SKevin Wolf     }
12888d24cce1SFam Zheng 
1289760e0063SKevin Wolf     if (bs->backing) {
1290826b6ca0SFam Zheng         assert(bs->backing_blocker);
1291760e0063SKevin Wolf         bdrv_op_unblock_all(bs->backing->bs, bs->backing_blocker);
12925db15a57SKevin Wolf         bdrv_unref_child(bs, bs->backing);
1293826b6ca0SFam Zheng     } else if (backing_hd) {
1294826b6ca0SFam Zheng         error_setg(&bs->backing_blocker,
129581e5f78aSAlberto Garcia                    "node is used as backing hd of '%s'",
129681e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(bs));
1297826b6ca0SFam Zheng     }
1298826b6ca0SFam Zheng 
12998d24cce1SFam Zheng     if (!backing_hd) {
1300826b6ca0SFam Zheng         error_free(bs->backing_blocker);
1301826b6ca0SFam Zheng         bs->backing_blocker = NULL;
1302760e0063SKevin Wolf         bs->backing = NULL;
13038d24cce1SFam Zheng         goto out;
13048d24cce1SFam Zheng     }
1305260fecf1SKevin Wolf     bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing);
13068d24cce1SFam Zheng     bs->open_flags &= ~BDRV_O_NO_BACKING;
13078d24cce1SFam Zheng     pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_hd->filename);
13088d24cce1SFam Zheng     pstrcpy(bs->backing_format, sizeof(bs->backing_format),
13098d24cce1SFam Zheng             backing_hd->drv ? backing_hd->drv->format_name : "");
1310826b6ca0SFam Zheng 
1311760e0063SKevin Wolf     bdrv_op_block_all(backing_hd, bs->backing_blocker);
1312826b6ca0SFam Zheng     /* Otherwise we won't be able to commit due to check in bdrv_commit */
1313760e0063SKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1314826b6ca0SFam Zheng                     bs->backing_blocker);
13158d24cce1SFam Zheng out:
13163baca891SKevin Wolf     bdrv_refresh_limits(bs, NULL);
13178d24cce1SFam Zheng }
13188d24cce1SFam Zheng 
131931ca6d07SKevin Wolf /*
132031ca6d07SKevin Wolf  * Opens the backing file for a BlockDriverState if not yet open
132131ca6d07SKevin Wolf  *
1322d9b7b057SKevin Wolf  * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
1323d9b7b057SKevin Wolf  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
1324d9b7b057SKevin Wolf  * itself, all options starting with "${bdref_key}." are considered part of the
1325d9b7b057SKevin Wolf  * BlockdevRef.
1326d9b7b057SKevin Wolf  *
1327d9b7b057SKevin Wolf  * TODO Can this be unified with bdrv_open_image()?
132831ca6d07SKevin Wolf  */
1329d9b7b057SKevin Wolf int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
1330d9b7b057SKevin Wolf                            const char *bdref_key, Error **errp)
13319156df12SPaolo Bonzini {
13321ba4b6a5SBenoît Canet     char *backing_filename = g_malloc0(PATH_MAX);
1333d9b7b057SKevin Wolf     char *bdref_key_dot;
1334d9b7b057SKevin Wolf     const char *reference = NULL;
1335317fc44eSKevin Wolf     int ret = 0;
13368d24cce1SFam Zheng     BlockDriverState *backing_hd;
1337d9b7b057SKevin Wolf     QDict *options;
1338d9b7b057SKevin Wolf     QDict *tmp_parent_options = NULL;
133934b5d2c6SMax Reitz     Error *local_err = NULL;
13409156df12SPaolo Bonzini 
1341760e0063SKevin Wolf     if (bs->backing != NULL) {
13421ba4b6a5SBenoît Canet         goto free_exit;
13439156df12SPaolo Bonzini     }
13449156df12SPaolo Bonzini 
134531ca6d07SKevin Wolf     /* NULL means an empty set of options */
1346d9b7b057SKevin Wolf     if (parent_options == NULL) {
1347d9b7b057SKevin Wolf         tmp_parent_options = qdict_new();
1348d9b7b057SKevin Wolf         parent_options = tmp_parent_options;
134931ca6d07SKevin Wolf     }
135031ca6d07SKevin Wolf 
13519156df12SPaolo Bonzini     bs->open_flags &= ~BDRV_O_NO_BACKING;
1352d9b7b057SKevin Wolf 
1353d9b7b057SKevin Wolf     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
1354d9b7b057SKevin Wolf     qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
1355d9b7b057SKevin Wolf     g_free(bdref_key_dot);
1356d9b7b057SKevin Wolf 
1357d9b7b057SKevin Wolf     reference = qdict_get_try_str(parent_options, bdref_key);
1358d9b7b057SKevin Wolf     if (reference || qdict_haskey(options, "file.filename")) {
13591cb6f506SKevin Wolf         backing_filename[0] = '\0';
13601cb6f506SKevin Wolf     } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
136131ca6d07SKevin Wolf         QDECREF(options);
13621ba4b6a5SBenoît Canet         goto free_exit;
1363dbecebddSFam Zheng     } else {
13649f07429eSMax Reitz         bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX,
13659f07429eSMax Reitz                                        &local_err);
13669f07429eSMax Reitz         if (local_err) {
13679f07429eSMax Reitz             ret = -EINVAL;
13689f07429eSMax Reitz             error_propagate(errp, local_err);
13699f07429eSMax Reitz             QDECREF(options);
13709f07429eSMax Reitz             goto free_exit;
13719f07429eSMax Reitz         }
13729156df12SPaolo Bonzini     }
13739156df12SPaolo Bonzini 
13748ee79e70SKevin Wolf     if (!bs->drv || !bs->drv->supports_backing) {
13758ee79e70SKevin Wolf         ret = -EINVAL;
13768ee79e70SKevin Wolf         error_setg(errp, "Driver doesn't support backing files");
13778ee79e70SKevin Wolf         QDECREF(options);
13788ee79e70SKevin Wolf         goto free_exit;
13798ee79e70SKevin Wolf     }
13808ee79e70SKevin Wolf 
1381c5f6e493SKevin Wolf     if (bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
1382c5f6e493SKevin Wolf         qdict_put(options, "driver", qstring_from_str(bs->backing_format));
13839156df12SPaolo Bonzini     }
13849156df12SPaolo Bonzini 
13855b363937SMax Reitz     backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL,
1386d9b7b057SKevin Wolf                                    reference, options, 0, bs, &child_backing,
1387e43bfd9cSMarkus Armbruster                                    errp);
13885b363937SMax Reitz     if (!backing_hd) {
13899156df12SPaolo Bonzini         bs->open_flags |= BDRV_O_NO_BACKING;
1390e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not open backing file: ");
13915b363937SMax Reitz         ret = -EINVAL;
13921ba4b6a5SBenoît Canet         goto free_exit;
13939156df12SPaolo Bonzini     }
1394df581792SKevin Wolf 
13955db15a57SKevin Wolf     /* Hook up the backing file link; drop our reference, bs owns the
13965db15a57SKevin Wolf      * backing_hd reference now */
13978d24cce1SFam Zheng     bdrv_set_backing_hd(bs, backing_hd);
13985db15a57SKevin Wolf     bdrv_unref(backing_hd);
1399d80ac658SPeter Feiner 
1400d9b7b057SKevin Wolf     qdict_del(parent_options, bdref_key);
1401d9b7b057SKevin Wolf 
14021ba4b6a5SBenoît Canet free_exit:
14031ba4b6a5SBenoît Canet     g_free(backing_filename);
1404d9b7b057SKevin Wolf     QDECREF(tmp_parent_options);
14051ba4b6a5SBenoît Canet     return ret;
14069156df12SPaolo Bonzini }
14079156df12SPaolo Bonzini 
1408b6ce07aaSKevin Wolf /*
1409da557aacSMax Reitz  * Opens a disk image whose options are given as BlockdevRef in another block
1410da557aacSMax Reitz  * device's options.
1411da557aacSMax Reitz  *
1412da557aacSMax Reitz  * If allow_none is true, no image will be opened if filename is false and no
1413b4b059f6SKevin Wolf  * BlockdevRef is given. NULL will be returned, but errp remains unset.
1414da557aacSMax Reitz  *
1415da557aacSMax Reitz  * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
1416da557aacSMax Reitz  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
1417da557aacSMax Reitz  * itself, all options starting with "${bdref_key}." are considered part of the
1418da557aacSMax Reitz  * BlockdevRef.
1419da557aacSMax Reitz  *
1420da557aacSMax Reitz  * The BlockdevRef will be removed from the options QDict.
1421da557aacSMax Reitz  */
1422b4b059f6SKevin Wolf BdrvChild *bdrv_open_child(const char *filename,
1423f3930ed0SKevin Wolf                            QDict *options, const char *bdref_key,
1424b4b059f6SKevin Wolf                            BlockDriverState* parent,
1425b4b059f6SKevin Wolf                            const BdrvChildRole *child_role,
1426f7d9fd8cSMax Reitz                            bool allow_none, Error **errp)
1427da557aacSMax Reitz {
1428b4b059f6SKevin Wolf     BdrvChild *c = NULL;
1429b4b059f6SKevin Wolf     BlockDriverState *bs;
1430da557aacSMax Reitz     QDict *image_options;
1431da557aacSMax Reitz     char *bdref_key_dot;
1432da557aacSMax Reitz     const char *reference;
1433da557aacSMax Reitz 
1434df581792SKevin Wolf     assert(child_role != NULL);
1435f67503e5SMax Reitz 
1436da557aacSMax Reitz     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
1437da557aacSMax Reitz     qdict_extract_subqdict(options, &image_options, bdref_key_dot);
1438da557aacSMax Reitz     g_free(bdref_key_dot);
1439da557aacSMax Reitz 
1440da557aacSMax Reitz     reference = qdict_get_try_str(options, bdref_key);
1441da557aacSMax Reitz     if (!filename && !reference && !qdict_size(image_options)) {
1442b4b059f6SKevin Wolf         if (!allow_none) {
1443da557aacSMax Reitz             error_setg(errp, "A block device must be specified for \"%s\"",
1444da557aacSMax Reitz                        bdref_key);
1445da557aacSMax Reitz         }
1446b20e61e0SMarkus Armbruster         QDECREF(image_options);
1447da557aacSMax Reitz         goto done;
1448da557aacSMax Reitz     }
1449da557aacSMax Reitz 
14505b363937SMax Reitz     bs = bdrv_open_inherit(filename, reference, image_options, 0,
1451ce343771SMax Reitz                            parent, child_role, errp);
14525b363937SMax Reitz     if (!bs) {
1453df581792SKevin Wolf         goto done;
1454df581792SKevin Wolf     }
1455df581792SKevin Wolf 
1456260fecf1SKevin Wolf     c = bdrv_attach_child(parent, bs, bdref_key, child_role);
1457da557aacSMax Reitz 
1458da557aacSMax Reitz done:
1459da557aacSMax Reitz     qdict_del(options, bdref_key);
1460b4b059f6SKevin Wolf     return c;
1461b4b059f6SKevin Wolf }
1462b4b059f6SKevin Wolf 
146366836189SMax Reitz static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
146466836189SMax Reitz                                                    int flags,
146566836189SMax Reitz                                                    QDict *snapshot_options,
146666836189SMax Reitz                                                    Error **errp)
1467b998875dSKevin Wolf {
1468b998875dSKevin Wolf     /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
14691ba4b6a5SBenoît Canet     char *tmp_filename = g_malloc0(PATH_MAX + 1);
1470b998875dSKevin Wolf     int64_t total_size;
147183d0521aSChunyan Liu     QemuOpts *opts = NULL;
1472b998875dSKevin Wolf     BlockDriverState *bs_snapshot;
1473b998875dSKevin Wolf     int ret;
1474b998875dSKevin Wolf 
1475b998875dSKevin Wolf     /* if snapshot, we create a temporary backing file and open it
1476b998875dSKevin Wolf        instead of opening 'filename' directly */
1477b998875dSKevin Wolf 
1478b998875dSKevin Wolf     /* Get the required size from the image */
1479f187743aSKevin Wolf     total_size = bdrv_getlength(bs);
1480f187743aSKevin Wolf     if (total_size < 0) {
1481f187743aSKevin Wolf         error_setg_errno(errp, -total_size, "Could not get image size");
14821ba4b6a5SBenoît Canet         goto out;
1483f187743aSKevin Wolf     }
1484b998875dSKevin Wolf 
1485b998875dSKevin Wolf     /* Create the temporary image */
14861ba4b6a5SBenoît Canet     ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
1487b998875dSKevin Wolf     if (ret < 0) {
1488b998875dSKevin Wolf         error_setg_errno(errp, -ret, "Could not get temporary filename");
14891ba4b6a5SBenoît Canet         goto out;
1490b998875dSKevin Wolf     }
1491b998875dSKevin Wolf 
1492ef810437SMax Reitz     opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
1493c282e1fdSChunyan Liu                             &error_abort);
149439101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
1495e43bfd9cSMarkus Armbruster     ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
149683d0521aSChunyan Liu     qemu_opts_del(opts);
1497b998875dSKevin Wolf     if (ret < 0) {
1498e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not create temporary overlay '%s': ",
1499e43bfd9cSMarkus Armbruster                       tmp_filename);
15001ba4b6a5SBenoît Canet         goto out;
1501b998875dSKevin Wolf     }
1502b998875dSKevin Wolf 
150373176beeSKevin Wolf     /* Prepare options QDict for the temporary file */
1504b998875dSKevin Wolf     qdict_put(snapshot_options, "file.driver",
1505b998875dSKevin Wolf               qstring_from_str("file"));
1506b998875dSKevin Wolf     qdict_put(snapshot_options, "file.filename",
1507b998875dSKevin Wolf               qstring_from_str(tmp_filename));
1508e6641719SMax Reitz     qdict_put(snapshot_options, "driver",
1509e6641719SMax Reitz               qstring_from_str("qcow2"));
1510b998875dSKevin Wolf 
15115b363937SMax Reitz     bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
151273176beeSKevin Wolf     snapshot_options = NULL;
15135b363937SMax Reitz     if (!bs_snapshot) {
15145b363937SMax Reitz         ret = -EINVAL;
15151ba4b6a5SBenoît Canet         goto out;
1516b998875dSKevin Wolf     }
1517b998875dSKevin Wolf 
151866836189SMax Reitz     /* bdrv_append() consumes a strong reference to bs_snapshot (i.e. it will
151966836189SMax Reitz      * call bdrv_unref() on it), so in order to be able to return one, we have
152066836189SMax Reitz      * to increase bs_snapshot's refcount here */
152166836189SMax Reitz     bdrv_ref(bs_snapshot);
1522b998875dSKevin Wolf     bdrv_append(bs_snapshot, bs);
15231ba4b6a5SBenoît Canet 
152466836189SMax Reitz     g_free(tmp_filename);
152566836189SMax Reitz     return bs_snapshot;
152666836189SMax Reitz 
15271ba4b6a5SBenoît Canet out:
152873176beeSKevin Wolf     QDECREF(snapshot_options);
15291ba4b6a5SBenoît Canet     g_free(tmp_filename);
153066836189SMax Reitz     return NULL;
1531b998875dSKevin Wolf }
1532b998875dSKevin Wolf 
1533da557aacSMax Reitz /*
1534b6ce07aaSKevin Wolf  * Opens a disk image (raw, qcow2, vmdk, ...)
1535de9c0cecSKevin Wolf  *
1536de9c0cecSKevin Wolf  * options is a QDict of options to pass to the block drivers, or NULL for an
1537de9c0cecSKevin Wolf  * empty set of options. The reference to the QDict belongs to the block layer
1538de9c0cecSKevin Wolf  * after the call (even on failure), so if the caller intends to reuse the
1539de9c0cecSKevin Wolf  * dictionary, it needs to use QINCREF() before calling bdrv_open.
1540f67503e5SMax Reitz  *
1541f67503e5SMax Reitz  * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
1542f67503e5SMax Reitz  * If it is not NULL, the referenced BDS will be reused.
1543ddf5636dSMax Reitz  *
1544ddf5636dSMax Reitz  * The reference parameter may be used to specify an existing block device which
1545ddf5636dSMax Reitz  * should be opened. If specified, neither options nor a filename may be given,
1546ddf5636dSMax Reitz  * nor can an existing BDS be reused (that is, *pbs has to be NULL).
1547b6ce07aaSKevin Wolf  */
15485b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
15495b363937SMax Reitz                                            const char *reference,
15505b363937SMax Reitz                                            QDict *options, int flags,
1551f3930ed0SKevin Wolf                                            BlockDriverState *parent,
15525b363937SMax Reitz                                            const BdrvChildRole *child_role,
15535b363937SMax Reitz                                            Error **errp)
1554ea2384d3Sbellard {
1555b6ce07aaSKevin Wolf     int ret;
15569a4f4c31SKevin Wolf     BdrvChild *file = NULL;
15579a4f4c31SKevin Wolf     BlockDriverState *bs;
1558ce343771SMax Reitz     BlockDriver *drv = NULL;
155974fe54f2SKevin Wolf     const char *drvname;
15603e8c2e57SAlberto Garcia     const char *backing;
156134b5d2c6SMax Reitz     Error *local_err = NULL;
156273176beeSKevin Wolf     QDict *snapshot_options = NULL;
1563b1e6fc08SKevin Wolf     int snapshot_flags = 0;
156433e3963eSbellard 
1565f3930ed0SKevin Wolf     assert(!child_role || !flags);
1566f3930ed0SKevin Wolf     assert(!child_role == !parent);
1567f67503e5SMax Reitz 
1568ddf5636dSMax Reitz     if (reference) {
1569ddf5636dSMax Reitz         bool options_non_empty = options ? qdict_size(options) : false;
1570ddf5636dSMax Reitz         QDECREF(options);
1571ddf5636dSMax Reitz 
1572ddf5636dSMax Reitz         if (filename || options_non_empty) {
1573ddf5636dSMax Reitz             error_setg(errp, "Cannot reference an existing block device with "
1574ddf5636dSMax Reitz                        "additional options or a new filename");
15755b363937SMax Reitz             return NULL;
1576ddf5636dSMax Reitz         }
1577ddf5636dSMax Reitz 
1578ddf5636dSMax Reitz         bs = bdrv_lookup_bs(reference, reference, errp);
1579ddf5636dSMax Reitz         if (!bs) {
15805b363937SMax Reitz             return NULL;
1581ddf5636dSMax Reitz         }
158276b22320SKevin Wolf 
1583ddf5636dSMax Reitz         bdrv_ref(bs);
15845b363937SMax Reitz         return bs;
1585ddf5636dSMax Reitz     }
1586ddf5636dSMax Reitz 
1587e4e9986bSMarkus Armbruster     bs = bdrv_new();
1588f67503e5SMax Reitz 
1589de9c0cecSKevin Wolf     /* NULL means an empty set of options */
1590de9c0cecSKevin Wolf     if (options == NULL) {
1591de9c0cecSKevin Wolf         options = qdict_new();
1592de9c0cecSKevin Wolf     }
1593de9c0cecSKevin Wolf 
1594145f598eSKevin Wolf     /* json: syntax counts as explicit options, as if in the QDict */
1595de3b53f0SKevin Wolf     parse_json_protocol(options, &filename, &local_err);
1596de3b53f0SKevin Wolf     if (local_err) {
1597de3b53f0SKevin Wolf         goto fail;
1598de3b53f0SKevin Wolf     }
1599de3b53f0SKevin Wolf 
1600145f598eSKevin Wolf     bs->explicit_options = qdict_clone_shallow(options);
1601145f598eSKevin Wolf 
1602f3930ed0SKevin Wolf     if (child_role) {
1603bddcec37SKevin Wolf         bs->inherits_from = parent;
16048e2160e2SKevin Wolf         child_role->inherit_options(&flags, options,
16058e2160e2SKevin Wolf                                     parent->open_flags, parent->options);
1606f3930ed0SKevin Wolf     }
1607f3930ed0SKevin Wolf 
1608de3b53f0SKevin Wolf     ret = bdrv_fill_options(&options, filename, &flags, &local_err);
1609462f5bcfSKevin Wolf     if (local_err) {
1610462f5bcfSKevin Wolf         goto fail;
1611462f5bcfSKevin Wolf     }
1612462f5bcfSKevin Wolf 
161362392ebbSKevin Wolf     bs->open_flags = flags;
161462392ebbSKevin Wolf     bs->options = options;
161562392ebbSKevin Wolf     options = qdict_clone_shallow(options);
161662392ebbSKevin Wolf 
161776c591b0SKevin Wolf     /* Find the right image format driver */
161876c591b0SKevin Wolf     drvname = qdict_get_try_str(options, "driver");
161976c591b0SKevin Wolf     if (drvname) {
162076c591b0SKevin Wolf         drv = bdrv_find_format(drvname);
162176c591b0SKevin Wolf         if (!drv) {
162276c591b0SKevin Wolf             error_setg(errp, "Unknown driver: '%s'", drvname);
162376c591b0SKevin Wolf             goto fail;
162476c591b0SKevin Wolf         }
162576c591b0SKevin Wolf     }
162676c591b0SKevin Wolf 
162776c591b0SKevin Wolf     assert(drvname || !(flags & BDRV_O_PROTOCOL));
162876c591b0SKevin Wolf 
16293e8c2e57SAlberto Garcia     backing = qdict_get_try_str(options, "backing");
16303e8c2e57SAlberto Garcia     if (backing && *backing == '\0') {
16313e8c2e57SAlberto Garcia         flags |= BDRV_O_NO_BACKING;
16323e8c2e57SAlberto Garcia         qdict_del(options, "backing");
16333e8c2e57SAlberto Garcia     }
16343e8c2e57SAlberto Garcia 
1635f500a6d3SKevin Wolf     /* Open image file without format layer */
1636f4788adcSKevin Wolf     if ((flags & BDRV_O_PROTOCOL) == 0) {
1637be028adcSJeff Cody         if (flags & BDRV_O_RDWR) {
1638be028adcSJeff Cody             flags |= BDRV_O_ALLOW_RDWR;
1639be028adcSJeff Cody         }
1640b1e6fc08SKevin Wolf         if (flags & BDRV_O_SNAPSHOT) {
164173176beeSKevin Wolf             snapshot_options = qdict_new();
164273176beeSKevin Wolf             bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
164373176beeSKevin Wolf                                        flags, options);
16448e2160e2SKevin Wolf             bdrv_backing_options(&flags, options, flags, options);
1645b1e6fc08SKevin Wolf         }
1646be028adcSJeff Cody 
1647f3930ed0SKevin Wolf         bs->open_flags = flags;
16481fdd6933SKevin Wolf 
16499a4f4c31SKevin Wolf         file = bdrv_open_child(filename, options, "file", bs,
16501fdd6933SKevin Wolf                                &child_file, true, &local_err);
16511fdd6933SKevin Wolf         if (local_err) {
16528bfea15dSKevin Wolf             goto fail;
1653f500a6d3SKevin Wolf         }
1654f4788adcSKevin Wolf     }
1655f500a6d3SKevin Wolf 
165676c591b0SKevin Wolf     /* Image format probing */
165738f3ef57SKevin Wolf     bs->probed = !drv;
165876c591b0SKevin Wolf     if (!drv && file) {
1659cf2ab8fcSKevin Wolf         ret = find_image_format(file, filename, &drv, &local_err);
166017b005f1SKevin Wolf         if (ret < 0) {
166117b005f1SKevin Wolf             goto fail;
166217b005f1SKevin Wolf         }
166362392ebbSKevin Wolf         /*
166462392ebbSKevin Wolf          * This option update would logically belong in bdrv_fill_options(),
166562392ebbSKevin Wolf          * but we first need to open bs->file for the probing to work, while
166662392ebbSKevin Wolf          * opening bs->file already requires the (mostly) final set of options
166762392ebbSKevin Wolf          * so that cache mode etc. can be inherited.
166862392ebbSKevin Wolf          *
166962392ebbSKevin Wolf          * Adding the driver later is somewhat ugly, but it's not an option
167062392ebbSKevin Wolf          * that would ever be inherited, so it's correct. We just need to make
167162392ebbSKevin Wolf          * sure to update both bs->options (which has the full effective
167262392ebbSKevin Wolf          * options for bs) and options (which has file.* already removed).
167362392ebbSKevin Wolf          */
167462392ebbSKevin Wolf         qdict_put(bs->options, "driver", qstring_from_str(drv->format_name));
167562392ebbSKevin Wolf         qdict_put(options, "driver", qstring_from_str(drv->format_name));
167676c591b0SKevin Wolf     } else if (!drv) {
16772a05cbe4SMax Reitz         error_setg(errp, "Must specify either driver or file");
16788bfea15dSKevin Wolf         goto fail;
16792a05cbe4SMax Reitz     }
1680f500a6d3SKevin Wolf 
168153a29513SMax Reitz     /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
168253a29513SMax Reitz     assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
168353a29513SMax Reitz     /* file must be NULL if a protocol BDS is about to be created
168453a29513SMax Reitz      * (the inverse results in an error message from bdrv_open_common()) */
168553a29513SMax Reitz     assert(!(flags & BDRV_O_PROTOCOL) || !file);
168653a29513SMax Reitz 
1687b6ce07aaSKevin Wolf     /* Open the image */
168882dc8b41SKevin Wolf     ret = bdrv_open_common(bs, file, options, &local_err);
1689b6ce07aaSKevin Wolf     if (ret < 0) {
16908bfea15dSKevin Wolf         goto fail;
16916987307cSChristoph Hellwig     }
16926987307cSChristoph Hellwig 
16932a05cbe4SMax Reitz     if (file && (bs->file != file)) {
16949a4f4c31SKevin Wolf         bdrv_unref_child(bs, file);
1695f500a6d3SKevin Wolf         file = NULL;
1696f500a6d3SKevin Wolf     }
1697f500a6d3SKevin Wolf 
1698b6ce07aaSKevin Wolf     /* If there is a backing file, use it */
16999156df12SPaolo Bonzini     if ((flags & BDRV_O_NO_BACKING) == 0) {
1700d9b7b057SKevin Wolf         ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
1701b6ce07aaSKevin Wolf         if (ret < 0) {
1702b6ad491aSKevin Wolf             goto close_and_fail;
1703b6ce07aaSKevin Wolf         }
1704b6ce07aaSKevin Wolf     }
1705b6ce07aaSKevin Wolf 
170691af7014SMax Reitz     bdrv_refresh_filename(bs);
170791af7014SMax Reitz 
1708b6ad491aSKevin Wolf     /* Check if any unknown options were used */
17095acd9d81SMax Reitz     if (options && (qdict_size(options) != 0)) {
1710b6ad491aSKevin Wolf         const QDictEntry *entry = qdict_first(options);
17115acd9d81SMax Reitz         if (flags & BDRV_O_PROTOCOL) {
17125acd9d81SMax Reitz             error_setg(errp, "Block protocol '%s' doesn't support the option "
17135acd9d81SMax Reitz                        "'%s'", drv->format_name, entry->key);
17145acd9d81SMax Reitz         } else {
1715d0e46a55SMax Reitz             error_setg(errp,
1716d0e46a55SMax Reitz                        "Block format '%s' does not support the option '%s'",
1717d0e46a55SMax Reitz                        drv->format_name, entry->key);
17185acd9d81SMax Reitz         }
1719b6ad491aSKevin Wolf 
1720b6ad491aSKevin Wolf         goto close_and_fail;
1721b6ad491aSKevin Wolf     }
1722b6ad491aSKevin Wolf 
1723b6ce07aaSKevin Wolf     if (!bdrv_key_required(bs)) {
17245c8cab48SKevin Wolf         bdrv_parent_cb_change_media(bs, true);
1725c3adb58fSMarkus Armbruster     } else if (!runstate_check(RUN_STATE_PRELAUNCH)
1726c3adb58fSMarkus Armbruster                && !runstate_check(RUN_STATE_INMIGRATE)
1727c3adb58fSMarkus Armbruster                && !runstate_check(RUN_STATE_PAUSED)) { /* HACK */
1728c3adb58fSMarkus Armbruster         error_setg(errp,
1729c3adb58fSMarkus Armbruster                    "Guest must be stopped for opening of encrypted image");
1730c3adb58fSMarkus Armbruster         goto close_and_fail;
1731b6ce07aaSKevin Wolf     }
1732b6ce07aaSKevin Wolf 
1733c3adb58fSMarkus Armbruster     QDECREF(options);
1734dd62f1caSKevin Wolf 
1735dd62f1caSKevin Wolf     /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
1736dd62f1caSKevin Wolf      * temporary snapshot afterwards. */
1737dd62f1caSKevin Wolf     if (snapshot_flags) {
173866836189SMax Reitz         BlockDriverState *snapshot_bs;
173966836189SMax Reitz         snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
174066836189SMax Reitz                                                 snapshot_options, &local_err);
174173176beeSKevin Wolf         snapshot_options = NULL;
1742dd62f1caSKevin Wolf         if (local_err) {
1743dd62f1caSKevin Wolf             goto close_and_fail;
1744dd62f1caSKevin Wolf         }
174566836189SMax Reitz         /* We are not going to return bs but the overlay on top of it
174666836189SMax Reitz          * (snapshot_bs); thus, we have to drop the strong reference to bs
17475b363937SMax Reitz          * (which we obtained by calling bdrv_new()). bs will not be deleted,
17485b363937SMax Reitz          * though, because the overlay still has a reference to it. */
174966836189SMax Reitz         bdrv_unref(bs);
175066836189SMax Reitz         bs = snapshot_bs;
175166836189SMax Reitz     }
175266836189SMax Reitz 
17535b363937SMax Reitz     return bs;
1754b6ce07aaSKevin Wolf 
17558bfea15dSKevin Wolf fail:
1756f500a6d3SKevin Wolf     if (file != NULL) {
17579a4f4c31SKevin Wolf         bdrv_unref_child(bs, file);
1758f500a6d3SKevin Wolf     }
175973176beeSKevin Wolf     QDECREF(snapshot_options);
1760145f598eSKevin Wolf     QDECREF(bs->explicit_options);
1761de9c0cecSKevin Wolf     QDECREF(bs->options);
1762b6ad491aSKevin Wolf     QDECREF(options);
1763de9c0cecSKevin Wolf     bs->options = NULL;
1764f67503e5SMax Reitz     bdrv_unref(bs);
176534b5d2c6SMax Reitz     error_propagate(errp, local_err);
17665b363937SMax Reitz     return NULL;
1767de9c0cecSKevin Wolf 
1768b6ad491aSKevin Wolf close_and_fail:
1769f67503e5SMax Reitz     bdrv_unref(bs);
177073176beeSKevin Wolf     QDECREF(snapshot_options);
1771b6ad491aSKevin Wolf     QDECREF(options);
177234b5d2c6SMax Reitz     error_propagate(errp, local_err);
17735b363937SMax Reitz     return NULL;
1774b6ce07aaSKevin Wolf }
1775b6ce07aaSKevin Wolf 
17765b363937SMax Reitz BlockDriverState *bdrv_open(const char *filename, const char *reference,
17775b363937SMax Reitz                             QDict *options, int flags, Error **errp)
1778f3930ed0SKevin Wolf {
17795b363937SMax Reitz     return bdrv_open_inherit(filename, reference, options, flags, NULL,
1780ce343771SMax Reitz                              NULL, errp);
1781f3930ed0SKevin Wolf }
1782f3930ed0SKevin Wolf 
1783e971aa12SJeff Cody typedef struct BlockReopenQueueEntry {
1784e971aa12SJeff Cody      bool prepared;
1785e971aa12SJeff Cody      BDRVReopenState state;
1786e971aa12SJeff Cody      QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1787e971aa12SJeff Cody } BlockReopenQueueEntry;
1788e971aa12SJeff Cody 
1789e971aa12SJeff Cody /*
1790e971aa12SJeff Cody  * Adds a BlockDriverState to a simple queue for an atomic, transactional
1791e971aa12SJeff Cody  * reopen of multiple devices.
1792e971aa12SJeff Cody  *
1793e971aa12SJeff Cody  * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
1794e971aa12SJeff Cody  * already performed, or alternatively may be NULL a new BlockReopenQueue will
1795e971aa12SJeff Cody  * be created and initialized. This newly created BlockReopenQueue should be
1796e971aa12SJeff Cody  * passed back in for subsequent calls that are intended to be of the same
1797e971aa12SJeff Cody  * atomic 'set'.
1798e971aa12SJeff Cody  *
1799e971aa12SJeff Cody  * bs is the BlockDriverState to add to the reopen queue.
1800e971aa12SJeff Cody  *
18014d2cb092SKevin Wolf  * options contains the changed options for the associated bs
18024d2cb092SKevin Wolf  * (the BlockReopenQueue takes ownership)
18034d2cb092SKevin Wolf  *
1804e971aa12SJeff Cody  * flags contains the open flags for the associated bs
1805e971aa12SJeff Cody  *
1806e971aa12SJeff Cody  * returns a pointer to bs_queue, which is either the newly allocated
1807e971aa12SJeff Cody  * bs_queue, or the existing bs_queue being used.
1808e971aa12SJeff Cody  *
1809e971aa12SJeff Cody  */
181028518102SKevin Wolf static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
18114d2cb092SKevin Wolf                                                  BlockDriverState *bs,
181228518102SKevin Wolf                                                  QDict *options,
181328518102SKevin Wolf                                                  int flags,
181428518102SKevin Wolf                                                  const BdrvChildRole *role,
181528518102SKevin Wolf                                                  QDict *parent_options,
181628518102SKevin Wolf                                                  int parent_flags)
1817e971aa12SJeff Cody {
1818e971aa12SJeff Cody     assert(bs != NULL);
1819e971aa12SJeff Cody 
1820e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry;
182167251a31SKevin Wolf     BdrvChild *child;
1822145f598eSKevin Wolf     QDict *old_options, *explicit_options;
182367251a31SKevin Wolf 
1824e971aa12SJeff Cody     if (bs_queue == NULL) {
1825e971aa12SJeff Cody         bs_queue = g_new0(BlockReopenQueue, 1);
1826e971aa12SJeff Cody         QSIMPLEQ_INIT(bs_queue);
1827e971aa12SJeff Cody     }
1828e971aa12SJeff Cody 
18294d2cb092SKevin Wolf     if (!options) {
18304d2cb092SKevin Wolf         options = qdict_new();
18314d2cb092SKevin Wolf     }
18324d2cb092SKevin Wolf 
183328518102SKevin Wolf     /*
183428518102SKevin Wolf      * Precedence of options:
183528518102SKevin Wolf      * 1. Explicitly passed in options (highest)
183691a097e7SKevin Wolf      * 2. Set in flags (only for top level)
1837145f598eSKevin Wolf      * 3. Retained from explicitly set options of bs
18388e2160e2SKevin Wolf      * 4. Inherited from parent node
183928518102SKevin Wolf      * 5. Retained from effective options of bs
184028518102SKevin Wolf      */
184128518102SKevin Wolf 
184291a097e7SKevin Wolf     if (!parent_options) {
184391a097e7SKevin Wolf         /*
184491a097e7SKevin Wolf          * Any setting represented by flags is always updated. If the
184591a097e7SKevin Wolf          * corresponding QDict option is set, it takes precedence. Otherwise
184691a097e7SKevin Wolf          * the flag is translated into a QDict option. The old setting of bs is
184791a097e7SKevin Wolf          * not considered.
184891a097e7SKevin Wolf          */
184991a097e7SKevin Wolf         update_options_from_flags(options, flags);
185091a097e7SKevin Wolf     }
185191a097e7SKevin Wolf 
1852145f598eSKevin Wolf     /* Old explicitly set values (don't overwrite by inherited value) */
1853145f598eSKevin Wolf     old_options = qdict_clone_shallow(bs->explicit_options);
1854145f598eSKevin Wolf     bdrv_join_options(bs, options, old_options);
1855145f598eSKevin Wolf     QDECREF(old_options);
1856145f598eSKevin Wolf 
1857145f598eSKevin Wolf     explicit_options = qdict_clone_shallow(options);
1858145f598eSKevin Wolf 
185928518102SKevin Wolf     /* Inherit from parent node */
186028518102SKevin Wolf     if (parent_options) {
186128518102SKevin Wolf         assert(!flags);
18628e2160e2SKevin Wolf         role->inherit_options(&flags, options, parent_flags, parent_options);
186328518102SKevin Wolf     }
186428518102SKevin Wolf 
186528518102SKevin Wolf     /* Old values are used for options that aren't set yet */
18664d2cb092SKevin Wolf     old_options = qdict_clone_shallow(bs->options);
1867cddff5baSKevin Wolf     bdrv_join_options(bs, options, old_options);
18684d2cb092SKevin Wolf     QDECREF(old_options);
18694d2cb092SKevin Wolf 
1870f1f25a2eSKevin Wolf     /* bdrv_open() masks this flag out */
1871f1f25a2eSKevin Wolf     flags &= ~BDRV_O_PROTOCOL;
1872f1f25a2eSKevin Wolf 
187367251a31SKevin Wolf     QLIST_FOREACH(child, &bs->children, next) {
18744c9dfe5dSKevin Wolf         QDict *new_child_options;
18754c9dfe5dSKevin Wolf         char *child_key_dot;
187667251a31SKevin Wolf 
18774c9dfe5dSKevin Wolf         /* reopen can only change the options of block devices that were
18784c9dfe5dSKevin Wolf          * implicitly created and inherited options. For other (referenced)
18794c9dfe5dSKevin Wolf          * block devices, a syntax like "backing.foo" results in an error. */
188067251a31SKevin Wolf         if (child->bs->inherits_from != bs) {
188167251a31SKevin Wolf             continue;
188267251a31SKevin Wolf         }
188367251a31SKevin Wolf 
18844c9dfe5dSKevin Wolf         child_key_dot = g_strdup_printf("%s.", child->name);
18854c9dfe5dSKevin Wolf         qdict_extract_subqdict(options, &new_child_options, child_key_dot);
18864c9dfe5dSKevin Wolf         g_free(child_key_dot);
18874c9dfe5dSKevin Wolf 
188828518102SKevin Wolf         bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0,
188928518102SKevin Wolf                                 child->role, options, flags);
1890e971aa12SJeff Cody     }
1891e971aa12SJeff Cody 
1892e971aa12SJeff Cody     bs_entry = g_new0(BlockReopenQueueEntry, 1);
1893e971aa12SJeff Cody     QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
1894e971aa12SJeff Cody 
1895e971aa12SJeff Cody     bs_entry->state.bs = bs;
18964d2cb092SKevin Wolf     bs_entry->state.options = options;
1897145f598eSKevin Wolf     bs_entry->state.explicit_options = explicit_options;
1898e971aa12SJeff Cody     bs_entry->state.flags = flags;
1899e971aa12SJeff Cody 
1900e971aa12SJeff Cody     return bs_queue;
1901e971aa12SJeff Cody }
1902e971aa12SJeff Cody 
190328518102SKevin Wolf BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
190428518102SKevin Wolf                                     BlockDriverState *bs,
190528518102SKevin Wolf                                     QDict *options, int flags)
190628518102SKevin Wolf {
190728518102SKevin Wolf     return bdrv_reopen_queue_child(bs_queue, bs, options, flags,
190828518102SKevin Wolf                                    NULL, NULL, 0);
190928518102SKevin Wolf }
191028518102SKevin Wolf 
1911e971aa12SJeff Cody /*
1912e971aa12SJeff Cody  * Reopen multiple BlockDriverStates atomically & transactionally.
1913e971aa12SJeff Cody  *
1914e971aa12SJeff Cody  * The queue passed in (bs_queue) must have been built up previous
1915e971aa12SJeff Cody  * via bdrv_reopen_queue().
1916e971aa12SJeff Cody  *
1917e971aa12SJeff Cody  * Reopens all BDS specified in the queue, with the appropriate
1918e971aa12SJeff Cody  * flags.  All devices are prepared for reopen, and failure of any
1919e971aa12SJeff Cody  * device will cause all device changes to be abandonded, and intermediate
1920e971aa12SJeff Cody  * data cleaned up.
1921e971aa12SJeff Cody  *
1922e971aa12SJeff Cody  * If all devices prepare successfully, then the changes are committed
1923e971aa12SJeff Cody  * to all devices.
1924e971aa12SJeff Cody  *
1925e971aa12SJeff Cody  */
1926e971aa12SJeff Cody int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
1927e971aa12SJeff Cody {
1928e971aa12SJeff Cody     int ret = -1;
1929e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry, *next;
1930e971aa12SJeff Cody     Error *local_err = NULL;
1931e971aa12SJeff Cody 
1932e971aa12SJeff Cody     assert(bs_queue != NULL);
1933e971aa12SJeff Cody 
1934e971aa12SJeff Cody     bdrv_drain_all();
1935e971aa12SJeff Cody 
1936e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
1937e971aa12SJeff Cody         if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
1938e971aa12SJeff Cody             error_propagate(errp, local_err);
1939e971aa12SJeff Cody             goto cleanup;
1940e971aa12SJeff Cody         }
1941e971aa12SJeff Cody         bs_entry->prepared = true;
1942e971aa12SJeff Cody     }
1943e971aa12SJeff Cody 
1944e971aa12SJeff Cody     /* If we reach this point, we have success and just need to apply the
1945e971aa12SJeff Cody      * changes
1946e971aa12SJeff Cody      */
1947e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
1948e971aa12SJeff Cody         bdrv_reopen_commit(&bs_entry->state);
1949e971aa12SJeff Cody     }
1950e971aa12SJeff Cody 
1951e971aa12SJeff Cody     ret = 0;
1952e971aa12SJeff Cody 
1953e971aa12SJeff Cody cleanup:
1954e971aa12SJeff Cody     QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
1955e971aa12SJeff Cody         if (ret && bs_entry->prepared) {
1956e971aa12SJeff Cody             bdrv_reopen_abort(&bs_entry->state);
1957145f598eSKevin Wolf         } else if (ret) {
1958145f598eSKevin Wolf             QDECREF(bs_entry->state.explicit_options);
1959e971aa12SJeff Cody         }
19604d2cb092SKevin Wolf         QDECREF(bs_entry->state.options);
1961e971aa12SJeff Cody         g_free(bs_entry);
1962e971aa12SJeff Cody     }
1963e971aa12SJeff Cody     g_free(bs_queue);
1964e971aa12SJeff Cody     return ret;
1965e971aa12SJeff Cody }
1966e971aa12SJeff Cody 
1967e971aa12SJeff Cody 
1968e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */
1969e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
1970e971aa12SJeff Cody {
1971e971aa12SJeff Cody     int ret = -1;
1972e971aa12SJeff Cody     Error *local_err = NULL;
19734d2cb092SKevin Wolf     BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags);
1974e971aa12SJeff Cody 
1975e971aa12SJeff Cody     ret = bdrv_reopen_multiple(queue, &local_err);
1976e971aa12SJeff Cody     if (local_err != NULL) {
1977e971aa12SJeff Cody         error_propagate(errp, local_err);
1978e971aa12SJeff Cody     }
1979e971aa12SJeff Cody     return ret;
1980e971aa12SJeff Cody }
1981e971aa12SJeff Cody 
1982e971aa12SJeff Cody 
1983e971aa12SJeff Cody /*
1984e971aa12SJeff Cody  * Prepares a BlockDriverState for reopen. All changes are staged in the
1985e971aa12SJeff Cody  * 'opaque' field of the BDRVReopenState, which is used and allocated by
1986e971aa12SJeff Cody  * the block driver layer .bdrv_reopen_prepare()
1987e971aa12SJeff Cody  *
1988e971aa12SJeff Cody  * bs is the BlockDriverState to reopen
1989e971aa12SJeff Cody  * flags are the new open flags
1990e971aa12SJeff Cody  * queue is the reopen queue
1991e971aa12SJeff Cody  *
1992e971aa12SJeff Cody  * Returns 0 on success, non-zero on error.  On error errp will be set
1993e971aa12SJeff Cody  * as well.
1994e971aa12SJeff Cody  *
1995e971aa12SJeff Cody  * On failure, bdrv_reopen_abort() will be called to clean up any data.
1996e971aa12SJeff Cody  * It is the responsibility of the caller to then call the abort() or
1997e971aa12SJeff Cody  * commit() for any other BDS that have been left in a prepare() state
1998e971aa12SJeff Cody  *
1999e971aa12SJeff Cody  */
2000e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
2001e971aa12SJeff Cody                         Error **errp)
2002e971aa12SJeff Cody {
2003e971aa12SJeff Cody     int ret = -1;
2004e971aa12SJeff Cody     Error *local_err = NULL;
2005e971aa12SJeff Cody     BlockDriver *drv;
2006ccf9dc07SKevin Wolf     QemuOpts *opts;
2007ccf9dc07SKevin Wolf     const char *value;
2008e971aa12SJeff Cody 
2009e971aa12SJeff Cody     assert(reopen_state != NULL);
2010e971aa12SJeff Cody     assert(reopen_state->bs->drv != NULL);
2011e971aa12SJeff Cody     drv = reopen_state->bs->drv;
2012e971aa12SJeff Cody 
2013ccf9dc07SKevin Wolf     /* Process generic block layer options */
2014ccf9dc07SKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
2015ccf9dc07SKevin Wolf     qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
2016ccf9dc07SKevin Wolf     if (local_err) {
2017ccf9dc07SKevin Wolf         error_propagate(errp, local_err);
2018ccf9dc07SKevin Wolf         ret = -EINVAL;
2019ccf9dc07SKevin Wolf         goto error;
2020ccf9dc07SKevin Wolf     }
2021ccf9dc07SKevin Wolf 
202291a097e7SKevin Wolf     update_flags_from_options(&reopen_state->flags, opts);
202391a097e7SKevin Wolf 
2024ccf9dc07SKevin Wolf     /* node-name and driver must be unchanged. Put them back into the QDict, so
2025ccf9dc07SKevin Wolf      * that they are checked at the end of this function. */
2026ccf9dc07SKevin Wolf     value = qemu_opt_get(opts, "node-name");
2027ccf9dc07SKevin Wolf     if (value) {
2028ccf9dc07SKevin Wolf         qdict_put(reopen_state->options, "node-name", qstring_from_str(value));
2029ccf9dc07SKevin Wolf     }
2030ccf9dc07SKevin Wolf 
2031ccf9dc07SKevin Wolf     value = qemu_opt_get(opts, "driver");
2032ccf9dc07SKevin Wolf     if (value) {
2033ccf9dc07SKevin Wolf         qdict_put(reopen_state->options, "driver", qstring_from_str(value));
2034ccf9dc07SKevin Wolf     }
2035ccf9dc07SKevin Wolf 
2036e971aa12SJeff Cody     /* if we are to stay read-only, do not allow permission change
2037e971aa12SJeff Cody      * to r/w */
2038e971aa12SJeff Cody     if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) &&
2039e971aa12SJeff Cody         reopen_state->flags & BDRV_O_RDWR) {
204081e5f78aSAlberto Garcia         error_setg(errp, "Node '%s' is read only",
204181e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(reopen_state->bs));
2042e971aa12SJeff Cody         goto error;
2043e971aa12SJeff Cody     }
2044e971aa12SJeff Cody 
2045e971aa12SJeff Cody 
2046e971aa12SJeff Cody     ret = bdrv_flush(reopen_state->bs);
2047e971aa12SJeff Cody     if (ret) {
2048455b0fdeSEric Blake         error_setg_errno(errp, -ret, "Error flushing drive");
2049e971aa12SJeff Cody         goto error;
2050e971aa12SJeff Cody     }
2051e971aa12SJeff Cody 
2052e971aa12SJeff Cody     if (drv->bdrv_reopen_prepare) {
2053e971aa12SJeff Cody         ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
2054e971aa12SJeff Cody         if (ret) {
2055e971aa12SJeff Cody             if (local_err != NULL) {
2056e971aa12SJeff Cody                 error_propagate(errp, local_err);
2057e971aa12SJeff Cody             } else {
2058d8b6895fSLuiz Capitulino                 error_setg(errp, "failed while preparing to reopen image '%s'",
2059e971aa12SJeff Cody                            reopen_state->bs->filename);
2060e971aa12SJeff Cody             }
2061e971aa12SJeff Cody             goto error;
2062e971aa12SJeff Cody         }
2063e971aa12SJeff Cody     } else {
2064e971aa12SJeff Cody         /* It is currently mandatory to have a bdrv_reopen_prepare()
2065e971aa12SJeff Cody          * handler for each supported drv. */
206681e5f78aSAlberto Garcia         error_setg(errp, "Block format '%s' used by node '%s' "
206781e5f78aSAlberto Garcia                    "does not support reopening files", drv->format_name,
206881e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(reopen_state->bs));
2069e971aa12SJeff Cody         ret = -1;
2070e971aa12SJeff Cody         goto error;
2071e971aa12SJeff Cody     }
2072e971aa12SJeff Cody 
20734d2cb092SKevin Wolf     /* Options that are not handled are only okay if they are unchanged
20744d2cb092SKevin Wolf      * compared to the old state. It is expected that some options are only
20754d2cb092SKevin Wolf      * used for the initial open, but not reopen (e.g. filename) */
20764d2cb092SKevin Wolf     if (qdict_size(reopen_state->options)) {
20774d2cb092SKevin Wolf         const QDictEntry *entry = qdict_first(reopen_state->options);
20784d2cb092SKevin Wolf 
20794d2cb092SKevin Wolf         do {
20804d2cb092SKevin Wolf             QString *new_obj = qobject_to_qstring(entry->value);
20814d2cb092SKevin Wolf             const char *new = qstring_get_str(new_obj);
20824d2cb092SKevin Wolf             const char *old = qdict_get_try_str(reopen_state->bs->options,
20834d2cb092SKevin Wolf                                                 entry->key);
20844d2cb092SKevin Wolf 
20854d2cb092SKevin Wolf             if (!old || strcmp(new, old)) {
20864d2cb092SKevin Wolf                 error_setg(errp, "Cannot change the option '%s'", entry->key);
20874d2cb092SKevin Wolf                 ret = -EINVAL;
20884d2cb092SKevin Wolf                 goto error;
20894d2cb092SKevin Wolf             }
20904d2cb092SKevin Wolf         } while ((entry = qdict_next(reopen_state->options, entry)));
20914d2cb092SKevin Wolf     }
20924d2cb092SKevin Wolf 
2093e971aa12SJeff Cody     ret = 0;
2094e971aa12SJeff Cody 
2095e971aa12SJeff Cody error:
2096ccf9dc07SKevin Wolf     qemu_opts_del(opts);
2097e971aa12SJeff Cody     return ret;
2098e971aa12SJeff Cody }
2099e971aa12SJeff Cody 
2100e971aa12SJeff Cody /*
2101e971aa12SJeff Cody  * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
2102e971aa12SJeff Cody  * makes them final by swapping the staging BlockDriverState contents into
2103e971aa12SJeff Cody  * the active BlockDriverState contents.
2104e971aa12SJeff Cody  */
2105e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state)
2106e971aa12SJeff Cody {
2107e971aa12SJeff Cody     BlockDriver *drv;
2108e971aa12SJeff Cody 
2109e971aa12SJeff Cody     assert(reopen_state != NULL);
2110e971aa12SJeff Cody     drv = reopen_state->bs->drv;
2111e971aa12SJeff Cody     assert(drv != NULL);
2112e971aa12SJeff Cody 
2113e971aa12SJeff Cody     /* If there are any driver level actions to take */
2114e971aa12SJeff Cody     if (drv->bdrv_reopen_commit) {
2115e971aa12SJeff Cody         drv->bdrv_reopen_commit(reopen_state);
2116e971aa12SJeff Cody     }
2117e971aa12SJeff Cody 
2118e971aa12SJeff Cody     /* set BDS specific flags now */
2119145f598eSKevin Wolf     QDECREF(reopen_state->bs->explicit_options);
2120145f598eSKevin Wolf 
2121145f598eSKevin Wolf     reopen_state->bs->explicit_options   = reopen_state->explicit_options;
2122e971aa12SJeff Cody     reopen_state->bs->open_flags         = reopen_state->flags;
2123e971aa12SJeff Cody     reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
2124355ef4acSKevin Wolf 
21253baca891SKevin Wolf     bdrv_refresh_limits(reopen_state->bs, NULL);
2126e971aa12SJeff Cody }
2127e971aa12SJeff Cody 
2128e971aa12SJeff Cody /*
2129e971aa12SJeff Cody  * Abort the reopen, and delete and free the staged changes in
2130e971aa12SJeff Cody  * reopen_state
2131e971aa12SJeff Cody  */
2132e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state)
2133e971aa12SJeff Cody {
2134e971aa12SJeff Cody     BlockDriver *drv;
2135e971aa12SJeff Cody 
2136e971aa12SJeff Cody     assert(reopen_state != NULL);
2137e971aa12SJeff Cody     drv = reopen_state->bs->drv;
2138e971aa12SJeff Cody     assert(drv != NULL);
2139e971aa12SJeff Cody 
2140e971aa12SJeff Cody     if (drv->bdrv_reopen_abort) {
2141e971aa12SJeff Cody         drv->bdrv_reopen_abort(reopen_state);
2142e971aa12SJeff Cody     }
2143145f598eSKevin Wolf 
2144145f598eSKevin Wolf     QDECREF(reopen_state->explicit_options);
2145e971aa12SJeff Cody }
2146e971aa12SJeff Cody 
2147e971aa12SJeff Cody 
214864dff520SMax Reitz static void bdrv_close(BlockDriverState *bs)
2149fc01f7e7Sbellard {
215033384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
215133384421SMax Reitz 
2152ca9bd24cSMax Reitz     assert(!bs->job);
215330f55fb8SMax Reitz     assert(!bs->refcnt);
215499b7e775SAlberto Garcia 
2155fc27291dSPaolo Bonzini     bdrv_drained_begin(bs); /* complete I/O */
215658fda173SStefan Hajnoczi     bdrv_flush(bs);
215753ec73e2SFam Zheng     bdrv_drain(bs); /* in case flush left pending I/O */
2158fc27291dSPaolo Bonzini 
2159c5acdc9aSMax Reitz     bdrv_release_named_dirty_bitmaps(bs);
2160c5acdc9aSMax Reitz     assert(QLIST_EMPTY(&bs->dirty_bitmaps));
2161c5acdc9aSMax Reitz 
21623cbc002cSPaolo Bonzini     if (bs->drv) {
21636e93e7c4SKevin Wolf         BdrvChild *child, *next;
21646e93e7c4SKevin Wolf 
21659a7dedbcSKevin Wolf         bs->drv->bdrv_close(bs);
21669a4f4c31SKevin Wolf         bs->drv = NULL;
21679a7dedbcSKevin Wolf 
21689a7dedbcSKevin Wolf         bdrv_set_backing_hd(bs, NULL);
21699a7dedbcSKevin Wolf 
21709a4f4c31SKevin Wolf         if (bs->file != NULL) {
21719a4f4c31SKevin Wolf             bdrv_unref_child(bs, bs->file);
21729a4f4c31SKevin Wolf             bs->file = NULL;
21739a4f4c31SKevin Wolf         }
21749a4f4c31SKevin Wolf 
21756e93e7c4SKevin Wolf         QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
217633a60407SKevin Wolf             /* TODO Remove bdrv_unref() from drivers' close function and use
217733a60407SKevin Wolf              * bdrv_unref_child() here */
2178bddcec37SKevin Wolf             if (child->bs->inherits_from == bs) {
2179bddcec37SKevin Wolf                 child->bs->inherits_from = NULL;
2180bddcec37SKevin Wolf             }
218133a60407SKevin Wolf             bdrv_detach_child(child);
21826e93e7c4SKevin Wolf         }
21836e93e7c4SKevin Wolf 
21847267c094SAnthony Liguori         g_free(bs->opaque);
2185ea2384d3Sbellard         bs->opaque = NULL;
218653fec9d3SStefan Hajnoczi         bs->copy_on_read = 0;
2187a275fa42SPaolo Bonzini         bs->backing_file[0] = '\0';
2188a275fa42SPaolo Bonzini         bs->backing_format[0] = '\0';
21896405875cSPaolo Bonzini         bs->total_sectors = 0;
219054115412SEric Blake         bs->encrypted = false;
219154115412SEric Blake         bs->valid_key = false;
219254115412SEric Blake         bs->sg = false;
2193de9c0cecSKevin Wolf         QDECREF(bs->options);
2194145f598eSKevin Wolf         QDECREF(bs->explicit_options);
2195de9c0cecSKevin Wolf         bs->options = NULL;
219691af7014SMax Reitz         QDECREF(bs->full_open_options);
219791af7014SMax Reitz         bs->full_open_options = NULL;
21989ca11154SPavel Hrdina     }
219966f82ceeSKevin Wolf 
220033384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
220133384421SMax Reitz         g_free(ban);
220233384421SMax Reitz     }
220333384421SMax Reitz     QLIST_INIT(&bs->aio_notifiers);
2204fc27291dSPaolo Bonzini     bdrv_drained_end(bs);
2205b338082bSbellard }
2206b338082bSbellard 
22072bc93fedSMORITA Kazutaka void bdrv_close_all(void)
22082bc93fedSMORITA Kazutaka {
2209a1a2af07SKevin Wolf     block_job_cancel_sync_all();
2210*cd7fca95SKevin Wolf     nbd_export_close_all();
22112bc93fedSMORITA Kazutaka 
2212ca9bd24cSMax Reitz     /* Drop references from requests still in flight, such as canceled block
2213ca9bd24cSMax Reitz      * jobs whose AIO context has not been polled yet */
2214ca9bd24cSMax Reitz     bdrv_drain_all();
2215ca9bd24cSMax Reitz 
2216ca9bd24cSMax Reitz     blk_remove_all_bs();
2217ca9bd24cSMax Reitz     blockdev_close_all_bdrv_states();
2218ca9bd24cSMax Reitz 
2219a1a2af07SKevin Wolf     assert(QTAILQ_EMPTY(&all_bdrv_states));
22202bc93fedSMORITA Kazutaka }
22212bc93fedSMORITA Kazutaka 
2222dd62f1caSKevin Wolf static void change_parent_backing_link(BlockDriverState *from,
2223dd62f1caSKevin Wolf                                        BlockDriverState *to)
2224dd62f1caSKevin Wolf {
22259bd910e2SMax Reitz     BdrvChild *c, *next, *to_c;
2226dd62f1caSKevin Wolf 
2227dd62f1caSKevin Wolf     QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
22289bd910e2SMax Reitz         if (c->role == &child_backing) {
22299bd910e2SMax Reitz             /* @from is generally not allowed to be a backing file, except for
22309bd910e2SMax Reitz              * when @to is the overlay. In that case, @from may not be replaced
22319bd910e2SMax Reitz              * by @to as @to's backing node. */
22329bd910e2SMax Reitz             QLIST_FOREACH(to_c, &to->children, next) {
22339bd910e2SMax Reitz                 if (to_c == c) {
22349bd910e2SMax Reitz                     break;
22359bd910e2SMax Reitz                 }
22369bd910e2SMax Reitz             }
22379bd910e2SMax Reitz             if (to_c) {
22389bd910e2SMax Reitz                 continue;
22399bd910e2SMax Reitz             }
22409bd910e2SMax Reitz         }
22419bd910e2SMax Reitz 
2242dd62f1caSKevin Wolf         assert(c->role != &child_backing);
2243dd62f1caSKevin Wolf         bdrv_ref(to);
2244e9740bc6SKevin Wolf         bdrv_replace_child(c, to);
2245dd62f1caSKevin Wolf         bdrv_unref(from);
2246dd62f1caSKevin Wolf     }
2247dd62f1caSKevin Wolf }
2248dd62f1caSKevin Wolf 
22498802d1fdSJeff Cody /*
22508802d1fdSJeff Cody  * Add new bs contents at the top of an image chain while the chain is
22518802d1fdSJeff Cody  * live, while keeping required fields on the top layer.
22528802d1fdSJeff Cody  *
22538802d1fdSJeff Cody  * This will modify the BlockDriverState fields, and swap contents
22548802d1fdSJeff Cody  * between bs_new and bs_top. Both bs_new and bs_top are modified.
22558802d1fdSJeff Cody  *
2256bfb197e0SMarkus Armbruster  * bs_new must not be attached to a BlockBackend.
2257f6801b83SJeff Cody  *
22588802d1fdSJeff Cody  * This function does not create any image files.
2259dd62f1caSKevin Wolf  *
2260dd62f1caSKevin Wolf  * bdrv_append() takes ownership of a bs_new reference and unrefs it because
2261dd62f1caSKevin Wolf  * that's what the callers commonly need. bs_new will be referenced by the old
2262dd62f1caSKevin Wolf  * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
2263dd62f1caSKevin Wolf  * reference of its own, it must call bdrv_ref().
22648802d1fdSJeff Cody  */
22658802d1fdSJeff Cody void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top)
22668802d1fdSJeff Cody {
2267dd62f1caSKevin Wolf     assert(!bdrv_requests_pending(bs_top));
2268dd62f1caSKevin Wolf     assert(!bdrv_requests_pending(bs_new));
22698802d1fdSJeff Cody 
2270dd62f1caSKevin Wolf     bdrv_ref(bs_top);
2271dd62f1caSKevin Wolf 
227227ccdd52SKevin Wolf     change_parent_backing_link(bs_top, bs_new);
2273dd62f1caSKevin Wolf     bdrv_set_backing_hd(bs_new, bs_top);
2274dd62f1caSKevin Wolf     bdrv_unref(bs_top);
2275dd62f1caSKevin Wolf 
2276dd62f1caSKevin Wolf     /* bs_new is now referenced by its new parents, we don't need the
2277dd62f1caSKevin Wolf      * additional reference any more. */
2278dd62f1caSKevin Wolf     bdrv_unref(bs_new);
22798802d1fdSJeff Cody }
22808802d1fdSJeff Cody 
22813f09bfbcSKevin Wolf void bdrv_replace_in_backing_chain(BlockDriverState *old, BlockDriverState *new)
22823f09bfbcSKevin Wolf {
22833f09bfbcSKevin Wolf     assert(!bdrv_requests_pending(old));
22843f09bfbcSKevin Wolf     assert(!bdrv_requests_pending(new));
22853f09bfbcSKevin Wolf 
22863f09bfbcSKevin Wolf     bdrv_ref(old);
22873f09bfbcSKevin Wolf 
22883f09bfbcSKevin Wolf     change_parent_backing_link(old, new);
22893f09bfbcSKevin Wolf 
22903f09bfbcSKevin Wolf     bdrv_unref(old);
22913f09bfbcSKevin Wolf }
22923f09bfbcSKevin Wolf 
22934f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs)
2294b338082bSbellard {
22953e914655SPaolo Bonzini     assert(!bs->job);
22963718d8abSFam Zheng     assert(bdrv_op_blocker_is_empty(bs));
22974f6fd349SFam Zheng     assert(!bs->refcnt);
229818846deeSMarkus Armbruster 
2299e1b5c52eSStefan Hajnoczi     bdrv_close(bs);
2300e1b5c52eSStefan Hajnoczi 
23011b7bdbc1SStefan Hajnoczi     /* remove from list, if necessary */
230263eaaae0SKevin Wolf     if (bs->node_name[0] != '\0') {
230363eaaae0SKevin Wolf         QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
230463eaaae0SKevin Wolf     }
23052c1d04e0SMax Reitz     QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
23062c1d04e0SMax Reitz 
23077267c094SAnthony Liguori     g_free(bs);
2308fc01f7e7Sbellard }
2309fc01f7e7Sbellard 
2310e97fc193Saliguori /*
2311e97fc193Saliguori  * Run consistency checks on an image
2312e97fc193Saliguori  *
2313e076f338SKevin Wolf  * Returns 0 if the check could be completed (it doesn't mean that the image is
2314a1c7273bSStefan Weil  * free of errors) or -errno when an internal error occurred. The results of the
2315e076f338SKevin Wolf  * check are stored in res.
2316e97fc193Saliguori  */
23174534ff54SKevin Wolf int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix)
2318e97fc193Saliguori {
2319908bcd54SMax Reitz     if (bs->drv == NULL) {
2320908bcd54SMax Reitz         return -ENOMEDIUM;
2321908bcd54SMax Reitz     }
2322e97fc193Saliguori     if (bs->drv->bdrv_check == NULL) {
2323e97fc193Saliguori         return -ENOTSUP;
2324e97fc193Saliguori     }
2325e97fc193Saliguori 
2326e076f338SKevin Wolf     memset(res, 0, sizeof(*res));
23274534ff54SKevin Wolf     return bs->drv->bdrv_check(bs, res, fix);
2328e97fc193Saliguori }
2329e97fc193Saliguori 
2330756e6736SKevin Wolf /*
2331756e6736SKevin Wolf  * Return values:
2332756e6736SKevin Wolf  * 0        - success
2333756e6736SKevin Wolf  * -EINVAL  - backing format specified, but no file
2334756e6736SKevin Wolf  * -ENOSPC  - can't update the backing file because no space is left in the
2335756e6736SKevin Wolf  *            image file header
2336756e6736SKevin Wolf  * -ENOTSUP - format driver doesn't support changing the backing file
2337756e6736SKevin Wolf  */
2338756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs,
2339756e6736SKevin Wolf     const char *backing_file, const char *backing_fmt)
2340756e6736SKevin Wolf {
2341756e6736SKevin Wolf     BlockDriver *drv = bs->drv;
2342469ef350SPaolo Bonzini     int ret;
2343756e6736SKevin Wolf 
23445f377794SPaolo Bonzini     /* Backing file format doesn't make sense without a backing file */
23455f377794SPaolo Bonzini     if (backing_fmt && !backing_file) {
23465f377794SPaolo Bonzini         return -EINVAL;
23475f377794SPaolo Bonzini     }
23485f377794SPaolo Bonzini 
2349756e6736SKevin Wolf     if (drv->bdrv_change_backing_file != NULL) {
2350469ef350SPaolo Bonzini         ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
2351756e6736SKevin Wolf     } else {
2352469ef350SPaolo Bonzini         ret = -ENOTSUP;
2353756e6736SKevin Wolf     }
2354469ef350SPaolo Bonzini 
2355469ef350SPaolo Bonzini     if (ret == 0) {
2356469ef350SPaolo Bonzini         pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
2357469ef350SPaolo Bonzini         pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
2358469ef350SPaolo Bonzini     }
2359469ef350SPaolo Bonzini     return ret;
2360756e6736SKevin Wolf }
2361756e6736SKevin Wolf 
23626ebdcee2SJeff Cody /*
23636ebdcee2SJeff Cody  * Finds the image layer in the chain that has 'bs' as its backing file.
23646ebdcee2SJeff Cody  *
23656ebdcee2SJeff Cody  * active is the current topmost image.
23666ebdcee2SJeff Cody  *
23676ebdcee2SJeff Cody  * Returns NULL if bs is not found in active's image chain,
23686ebdcee2SJeff Cody  * or if active == bs.
23694caf0fcdSJeff Cody  *
23704caf0fcdSJeff Cody  * Returns the bottommost base image if bs == NULL.
23716ebdcee2SJeff Cody  */
23726ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
23736ebdcee2SJeff Cody                                     BlockDriverState *bs)
23746ebdcee2SJeff Cody {
2375760e0063SKevin Wolf     while (active && bs != backing_bs(active)) {
2376760e0063SKevin Wolf         active = backing_bs(active);
23776ebdcee2SJeff Cody     }
23786ebdcee2SJeff Cody 
23794caf0fcdSJeff Cody     return active;
23806ebdcee2SJeff Cody }
23816ebdcee2SJeff Cody 
23824caf0fcdSJeff Cody /* Given a BDS, searches for the base layer. */
23834caf0fcdSJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs)
23844caf0fcdSJeff Cody {
23854caf0fcdSJeff Cody     return bdrv_find_overlay(bs, NULL);
23866ebdcee2SJeff Cody }
23876ebdcee2SJeff Cody 
23886ebdcee2SJeff Cody /*
23896ebdcee2SJeff Cody  * Drops images above 'base' up to and including 'top', and sets the image
23906ebdcee2SJeff Cody  * above 'top' to have base as its backing file.
23916ebdcee2SJeff Cody  *
23926ebdcee2SJeff Cody  * Requires that the overlay to 'top' is opened r/w, so that the backing file
23936ebdcee2SJeff Cody  * information in 'bs' can be properly updated.
23946ebdcee2SJeff Cody  *
23956ebdcee2SJeff Cody  * E.g., this will convert the following chain:
23966ebdcee2SJeff Cody  * bottom <- base <- intermediate <- top <- active
23976ebdcee2SJeff Cody  *
23986ebdcee2SJeff Cody  * to
23996ebdcee2SJeff Cody  *
24006ebdcee2SJeff Cody  * bottom <- base <- active
24016ebdcee2SJeff Cody  *
24026ebdcee2SJeff Cody  * It is allowed for bottom==base, in which case it converts:
24036ebdcee2SJeff Cody  *
24046ebdcee2SJeff Cody  * base <- intermediate <- top <- active
24056ebdcee2SJeff Cody  *
24066ebdcee2SJeff Cody  * to
24076ebdcee2SJeff Cody  *
24086ebdcee2SJeff Cody  * base <- active
24096ebdcee2SJeff Cody  *
241054e26900SJeff Cody  * If backing_file_str is non-NULL, it will be used when modifying top's
241154e26900SJeff Cody  * overlay image metadata.
241254e26900SJeff Cody  *
24136ebdcee2SJeff Cody  * Error conditions:
24146ebdcee2SJeff Cody  *  if active == top, that is considered an error
24156ebdcee2SJeff Cody  *
24166ebdcee2SJeff Cody  */
24176ebdcee2SJeff Cody int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top,
241854e26900SJeff Cody                            BlockDriverState *base, const char *backing_file_str)
24196ebdcee2SJeff Cody {
24206ebdcee2SJeff Cody     BlockDriverState *new_top_bs = NULL;
24216ebdcee2SJeff Cody     int ret = -EIO;
24226ebdcee2SJeff Cody 
24236ebdcee2SJeff Cody     if (!top->drv || !base->drv) {
24246ebdcee2SJeff Cody         goto exit;
24256ebdcee2SJeff Cody     }
24266ebdcee2SJeff Cody 
24276ebdcee2SJeff Cody     new_top_bs = bdrv_find_overlay(active, top);
24286ebdcee2SJeff Cody 
24296ebdcee2SJeff Cody     if (new_top_bs == NULL) {
24306ebdcee2SJeff Cody         /* we could not find the image above 'top', this is an error */
24316ebdcee2SJeff Cody         goto exit;
24326ebdcee2SJeff Cody     }
24336ebdcee2SJeff Cody 
2434760e0063SKevin Wolf     /* special case of new_top_bs->backing->bs already pointing to base - nothing
24356ebdcee2SJeff Cody      * to do, no intermediate images */
2436760e0063SKevin Wolf     if (backing_bs(new_top_bs) == base) {
24376ebdcee2SJeff Cody         ret = 0;
24386ebdcee2SJeff Cody         goto exit;
24396ebdcee2SJeff Cody     }
24406ebdcee2SJeff Cody 
24415db15a57SKevin Wolf     /* Make sure that base is in the backing chain of top */
24425db15a57SKevin Wolf     if (!bdrv_chain_contains(top, base)) {
24436ebdcee2SJeff Cody         goto exit;
24446ebdcee2SJeff Cody     }
24456ebdcee2SJeff Cody 
24466ebdcee2SJeff Cody     /* success - we can delete the intermediate states, and link top->base */
24475db15a57SKevin Wolf     backing_file_str = backing_file_str ? backing_file_str : base->filename;
244854e26900SJeff Cody     ret = bdrv_change_backing_file(new_top_bs, backing_file_str,
24495db15a57SKevin Wolf                                    base->drv ? base->drv->format_name : "");
24506ebdcee2SJeff Cody     if (ret) {
24516ebdcee2SJeff Cody         goto exit;
24526ebdcee2SJeff Cody     }
24535db15a57SKevin Wolf     bdrv_set_backing_hd(new_top_bs, base);
24546ebdcee2SJeff Cody 
24556ebdcee2SJeff Cody     ret = 0;
24566ebdcee2SJeff Cody exit:
24576ebdcee2SJeff Cody     return ret;
24586ebdcee2SJeff Cody }
24596ebdcee2SJeff Cody 
246083f64091Sbellard /**
246183f64091Sbellard  * Truncate file to 'offset' bytes (needed only for file protocols)
246283f64091Sbellard  */
246383f64091Sbellard int bdrv_truncate(BlockDriverState *bs, int64_t offset)
246483f64091Sbellard {
246583f64091Sbellard     BlockDriver *drv = bs->drv;
246651762288SStefan Hajnoczi     int ret;
246783f64091Sbellard     if (!drv)
246819cb3738Sbellard         return -ENOMEDIUM;
246983f64091Sbellard     if (!drv->bdrv_truncate)
247083f64091Sbellard         return -ENOTSUP;
247159f2689dSNaphtali Sprei     if (bs->read_only)
247259f2689dSNaphtali Sprei         return -EACCES;
24739c75e168SJeff Cody 
247451762288SStefan Hajnoczi     ret = drv->bdrv_truncate(bs, offset);
247551762288SStefan Hajnoczi     if (ret == 0) {
247651762288SStefan Hajnoczi         ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
2477ce1ffea8SJohn Snow         bdrv_dirty_bitmap_truncate(bs);
24785c8cab48SKevin Wolf         bdrv_parent_cb_resize(bs);
24793ff2f67aSEvgeny Yakovlev         ++bs->write_gen;
248051762288SStefan Hajnoczi     }
248151762288SStefan Hajnoczi     return ret;
248283f64091Sbellard }
248383f64091Sbellard 
248483f64091Sbellard /**
24854a1d5e1fSFam Zheng  * Length of a allocated file in bytes. Sparse files are counted by actual
24864a1d5e1fSFam Zheng  * allocated space. Return < 0 if error or unknown.
24874a1d5e1fSFam Zheng  */
24884a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
24894a1d5e1fSFam Zheng {
24904a1d5e1fSFam Zheng     BlockDriver *drv = bs->drv;
24914a1d5e1fSFam Zheng     if (!drv) {
24924a1d5e1fSFam Zheng         return -ENOMEDIUM;
24934a1d5e1fSFam Zheng     }
24944a1d5e1fSFam Zheng     if (drv->bdrv_get_allocated_file_size) {
24954a1d5e1fSFam Zheng         return drv->bdrv_get_allocated_file_size(bs);
24964a1d5e1fSFam Zheng     }
24974a1d5e1fSFam Zheng     if (bs->file) {
24989a4f4c31SKevin Wolf         return bdrv_get_allocated_file_size(bs->file->bs);
24994a1d5e1fSFam Zheng     }
25004a1d5e1fSFam Zheng     return -ENOTSUP;
25014a1d5e1fSFam Zheng }
25024a1d5e1fSFam Zheng 
25034a1d5e1fSFam Zheng /**
250465a9bb25SMarkus Armbruster  * Return number of sectors on success, -errno on error.
250583f64091Sbellard  */
250665a9bb25SMarkus Armbruster int64_t bdrv_nb_sectors(BlockDriverState *bs)
250783f64091Sbellard {
250883f64091Sbellard     BlockDriver *drv = bs->drv;
250965a9bb25SMarkus Armbruster 
251083f64091Sbellard     if (!drv)
251119cb3738Sbellard         return -ENOMEDIUM;
251251762288SStefan Hajnoczi 
2513b94a2610SKevin Wolf     if (drv->has_variable_length) {
2514b94a2610SKevin Wolf         int ret = refresh_total_sectors(bs, bs->total_sectors);
2515b94a2610SKevin Wolf         if (ret < 0) {
2516b94a2610SKevin Wolf             return ret;
2517fc01f7e7Sbellard         }
251846a4e4e6SStefan Hajnoczi     }
251965a9bb25SMarkus Armbruster     return bs->total_sectors;
252065a9bb25SMarkus Armbruster }
252165a9bb25SMarkus Armbruster 
252265a9bb25SMarkus Armbruster /**
252365a9bb25SMarkus Armbruster  * Return length in bytes on success, -errno on error.
252465a9bb25SMarkus Armbruster  * The length is always a multiple of BDRV_SECTOR_SIZE.
252565a9bb25SMarkus Armbruster  */
252665a9bb25SMarkus Armbruster int64_t bdrv_getlength(BlockDriverState *bs)
252765a9bb25SMarkus Armbruster {
252865a9bb25SMarkus Armbruster     int64_t ret = bdrv_nb_sectors(bs);
252965a9bb25SMarkus Armbruster 
25304a9c9ea0SFam Zheng     ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
253165a9bb25SMarkus Armbruster     return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
253246a4e4e6SStefan Hajnoczi }
2533fc01f7e7Sbellard 
253419cb3738Sbellard /* return 0 as number of sectors if no device present or error */
253596b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
2536fc01f7e7Sbellard {
253765a9bb25SMarkus Armbruster     int64_t nb_sectors = bdrv_nb_sectors(bs);
253865a9bb25SMarkus Armbruster 
253965a9bb25SMarkus Armbruster     *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
2540fc01f7e7Sbellard }
2541cf98951bSbellard 
254254115412SEric Blake bool bdrv_is_read_only(BlockDriverState *bs)
2543b338082bSbellard {
2544b338082bSbellard     return bs->read_only;
2545b338082bSbellard }
2546b338082bSbellard 
254754115412SEric Blake bool bdrv_is_sg(BlockDriverState *bs)
2548985a03b0Sths {
2549985a03b0Sths     return bs->sg;
2550985a03b0Sths }
2551985a03b0Sths 
255254115412SEric Blake bool bdrv_is_encrypted(BlockDriverState *bs)
2553ea2384d3Sbellard {
2554760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted) {
255554115412SEric Blake         return true;
2556760e0063SKevin Wolf     }
2557ea2384d3Sbellard     return bs->encrypted;
2558ea2384d3Sbellard }
2559ea2384d3Sbellard 
256054115412SEric Blake bool bdrv_key_required(BlockDriverState *bs)
2561c0f4ce77Saliguori {
2562760e0063SKevin Wolf     BdrvChild *backing = bs->backing;
2563c0f4ce77Saliguori 
2564760e0063SKevin Wolf     if (backing && backing->bs->encrypted && !backing->bs->valid_key) {
256554115412SEric Blake         return true;
2566760e0063SKevin Wolf     }
2567c0f4ce77Saliguori     return (bs->encrypted && !bs->valid_key);
2568c0f4ce77Saliguori }
2569c0f4ce77Saliguori 
2570ea2384d3Sbellard int bdrv_set_key(BlockDriverState *bs, const char *key)
2571ea2384d3Sbellard {
2572ea2384d3Sbellard     int ret;
2573760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted) {
2574760e0063SKevin Wolf         ret = bdrv_set_key(bs->backing->bs, key);
2575ea2384d3Sbellard         if (ret < 0)
2576ea2384d3Sbellard             return ret;
2577ea2384d3Sbellard         if (!bs->encrypted)
2578ea2384d3Sbellard             return 0;
2579ea2384d3Sbellard     }
2580fd04a2aeSShahar Havivi     if (!bs->encrypted) {
2581fd04a2aeSShahar Havivi         return -EINVAL;
2582fd04a2aeSShahar Havivi     } else if (!bs->drv || !bs->drv->bdrv_set_key) {
2583fd04a2aeSShahar Havivi         return -ENOMEDIUM;
2584fd04a2aeSShahar Havivi     }
2585c0f4ce77Saliguori     ret = bs->drv->bdrv_set_key(bs, key);
2586bb5fc20fSaliguori     if (ret < 0) {
258754115412SEric Blake         bs->valid_key = false;
2588bb5fc20fSaliguori     } else if (!bs->valid_key) {
2589bb5fc20fSaliguori         /* call the change callback now, we skipped it on open */
259054115412SEric Blake         bs->valid_key = true;
25915c8cab48SKevin Wolf         bdrv_parent_cb_change_media(bs, true);
2592bb5fc20fSaliguori     }
2593c0f4ce77Saliguori     return ret;
2594ea2384d3Sbellard }
2595ea2384d3Sbellard 
25964d2855a3SMarkus Armbruster /*
25974d2855a3SMarkus Armbruster  * Provide an encryption key for @bs.
25984d2855a3SMarkus Armbruster  * If @key is non-null:
25994d2855a3SMarkus Armbruster  *     If @bs is not encrypted, fail.
26004d2855a3SMarkus Armbruster  *     Else if the key is invalid, fail.
26014d2855a3SMarkus Armbruster  *     Else set @bs's key to @key, replacing the existing key, if any.
26024d2855a3SMarkus Armbruster  * If @key is null:
26034d2855a3SMarkus Armbruster  *     If @bs is encrypted and still lacks a key, fail.
26044d2855a3SMarkus Armbruster  *     Else do nothing.
26054d2855a3SMarkus Armbruster  * On failure, store an error object through @errp if non-null.
26064d2855a3SMarkus Armbruster  */
26074d2855a3SMarkus Armbruster void bdrv_add_key(BlockDriverState *bs, const char *key, Error **errp)
26084d2855a3SMarkus Armbruster {
26094d2855a3SMarkus Armbruster     if (key) {
26104d2855a3SMarkus Armbruster         if (!bdrv_is_encrypted(bs)) {
261181e5f78aSAlberto Garcia             error_setg(errp, "Node '%s' is not encrypted",
261281e5f78aSAlberto Garcia                       bdrv_get_device_or_node_name(bs));
26134d2855a3SMarkus Armbruster         } else if (bdrv_set_key(bs, key) < 0) {
2614c6bd8c70SMarkus Armbruster             error_setg(errp, QERR_INVALID_PASSWORD);
26154d2855a3SMarkus Armbruster         }
26164d2855a3SMarkus Armbruster     } else {
26174d2855a3SMarkus Armbruster         if (bdrv_key_required(bs)) {
2618b1ca6391SMarkus Armbruster             error_set(errp, ERROR_CLASS_DEVICE_ENCRYPTED,
2619b1ca6391SMarkus Armbruster                       "'%s' (%s) is encrypted",
262081e5f78aSAlberto Garcia                       bdrv_get_device_or_node_name(bs),
26214d2855a3SMarkus Armbruster                       bdrv_get_encrypted_filename(bs));
26224d2855a3SMarkus Armbruster         }
26234d2855a3SMarkus Armbruster     }
26244d2855a3SMarkus Armbruster }
26254d2855a3SMarkus Armbruster 
2626f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs)
2627ea2384d3Sbellard {
2628f8d6bba1SMarkus Armbruster     return bs->drv ? bs->drv->format_name : NULL;
2629ea2384d3Sbellard }
2630ea2384d3Sbellard 
2631ada42401SStefan Hajnoczi static int qsort_strcmp(const void *a, const void *b)
2632ada42401SStefan Hajnoczi {
2633ada42401SStefan Hajnoczi     return strcmp(a, b);
2634ada42401SStefan Hajnoczi }
2635ada42401SStefan Hajnoczi 
2636ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
2637ea2384d3Sbellard                          void *opaque)
2638ea2384d3Sbellard {
2639ea2384d3Sbellard     BlockDriver *drv;
2640e855e4fbSJeff Cody     int count = 0;
2641ada42401SStefan Hajnoczi     int i;
2642e855e4fbSJeff Cody     const char **formats = NULL;
2643ea2384d3Sbellard 
26448a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv, &bdrv_drivers, list) {
2645e855e4fbSJeff Cody         if (drv->format_name) {
2646e855e4fbSJeff Cody             bool found = false;
2647e855e4fbSJeff Cody             int i = count;
2648e855e4fbSJeff Cody             while (formats && i && !found) {
2649e855e4fbSJeff Cody                 found = !strcmp(formats[--i], drv->format_name);
2650e855e4fbSJeff Cody             }
2651e855e4fbSJeff Cody 
2652e855e4fbSJeff Cody             if (!found) {
26535839e53bSMarkus Armbruster                 formats = g_renew(const char *, formats, count + 1);
2654e855e4fbSJeff Cody                 formats[count++] = drv->format_name;
2655ea2384d3Sbellard             }
2656ea2384d3Sbellard         }
2657e855e4fbSJeff Cody     }
2658ada42401SStefan Hajnoczi 
2659ada42401SStefan Hajnoczi     qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
2660ada42401SStefan Hajnoczi 
2661ada42401SStefan Hajnoczi     for (i = 0; i < count; i++) {
2662ada42401SStefan Hajnoczi         it(opaque, formats[i]);
2663ada42401SStefan Hajnoczi     }
2664ada42401SStefan Hajnoczi 
2665e855e4fbSJeff Cody     g_free(formats);
2666e855e4fbSJeff Cody }
2667ea2384d3Sbellard 
2668dc364f4cSBenoît Canet /* This function is to find a node in the bs graph */
2669dc364f4cSBenoît Canet BlockDriverState *bdrv_find_node(const char *node_name)
2670dc364f4cSBenoît Canet {
2671dc364f4cSBenoît Canet     BlockDriverState *bs;
2672dc364f4cSBenoît Canet 
2673dc364f4cSBenoît Canet     assert(node_name);
2674dc364f4cSBenoît Canet 
2675dc364f4cSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
2676dc364f4cSBenoît Canet         if (!strcmp(node_name, bs->node_name)) {
2677dc364f4cSBenoît Canet             return bs;
2678dc364f4cSBenoît Canet         }
2679dc364f4cSBenoît Canet     }
2680dc364f4cSBenoît Canet     return NULL;
2681dc364f4cSBenoît Canet }
2682dc364f4cSBenoît Canet 
2683c13163fbSBenoît Canet /* Put this QMP function here so it can access the static graph_bdrv_states. */
2684d5a8ee60SAlberto Garcia BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
2685c13163fbSBenoît Canet {
2686c13163fbSBenoît Canet     BlockDeviceInfoList *list, *entry;
2687c13163fbSBenoît Canet     BlockDriverState *bs;
2688c13163fbSBenoît Canet 
2689c13163fbSBenoît Canet     list = NULL;
2690c13163fbSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
2691c83f9fbaSKevin Wolf         BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp);
2692d5a8ee60SAlberto Garcia         if (!info) {
2693d5a8ee60SAlberto Garcia             qapi_free_BlockDeviceInfoList(list);
2694d5a8ee60SAlberto Garcia             return NULL;
2695d5a8ee60SAlberto Garcia         }
2696c13163fbSBenoît Canet         entry = g_malloc0(sizeof(*entry));
2697d5a8ee60SAlberto Garcia         entry->value = info;
2698c13163fbSBenoît Canet         entry->next = list;
2699c13163fbSBenoît Canet         list = entry;
2700c13163fbSBenoît Canet     }
2701c13163fbSBenoît Canet 
2702c13163fbSBenoît Canet     return list;
2703c13163fbSBenoît Canet }
2704c13163fbSBenoît Canet 
270512d3ba82SBenoît Canet BlockDriverState *bdrv_lookup_bs(const char *device,
270612d3ba82SBenoît Canet                                  const char *node_name,
270712d3ba82SBenoît Canet                                  Error **errp)
270812d3ba82SBenoît Canet {
27097f06d47eSMarkus Armbruster     BlockBackend *blk;
27107f06d47eSMarkus Armbruster     BlockDriverState *bs;
271112d3ba82SBenoît Canet 
271212d3ba82SBenoît Canet     if (device) {
27137f06d47eSMarkus Armbruster         blk = blk_by_name(device);
271412d3ba82SBenoît Canet 
27157f06d47eSMarkus Armbruster         if (blk) {
27169f4ed6fbSAlberto Garcia             bs = blk_bs(blk);
27179f4ed6fbSAlberto Garcia             if (!bs) {
27185433c24fSMax Reitz                 error_setg(errp, "Device '%s' has no medium", device);
27195433c24fSMax Reitz             }
27205433c24fSMax Reitz 
27219f4ed6fbSAlberto Garcia             return bs;
272212d3ba82SBenoît Canet         }
2723dd67fa50SBenoît Canet     }
272412d3ba82SBenoît Canet 
2725dd67fa50SBenoît Canet     if (node_name) {
272612d3ba82SBenoît Canet         bs = bdrv_find_node(node_name);
272712d3ba82SBenoît Canet 
2728dd67fa50SBenoît Canet         if (bs) {
2729dd67fa50SBenoît Canet             return bs;
2730dd67fa50SBenoît Canet         }
273112d3ba82SBenoît Canet     }
273212d3ba82SBenoît Canet 
2733dd67fa50SBenoît Canet     error_setg(errp, "Cannot find device=%s nor node_name=%s",
2734dd67fa50SBenoît Canet                      device ? device : "",
2735dd67fa50SBenoît Canet                      node_name ? node_name : "");
2736dd67fa50SBenoît Canet     return NULL;
273712d3ba82SBenoît Canet }
273812d3ba82SBenoît Canet 
27395a6684d2SJeff Cody /* If 'base' is in the same chain as 'top', return true. Otherwise,
27405a6684d2SJeff Cody  * return false.  If either argument is NULL, return false. */
27415a6684d2SJeff Cody bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
27425a6684d2SJeff Cody {
27435a6684d2SJeff Cody     while (top && top != base) {
2744760e0063SKevin Wolf         top = backing_bs(top);
27455a6684d2SJeff Cody     }
27465a6684d2SJeff Cody 
27475a6684d2SJeff Cody     return top != NULL;
27485a6684d2SJeff Cody }
27495a6684d2SJeff Cody 
275004df765aSFam Zheng BlockDriverState *bdrv_next_node(BlockDriverState *bs)
275104df765aSFam Zheng {
275204df765aSFam Zheng     if (!bs) {
275304df765aSFam Zheng         return QTAILQ_FIRST(&graph_bdrv_states);
275404df765aSFam Zheng     }
275504df765aSFam Zheng     return QTAILQ_NEXT(bs, node_list);
275604df765aSFam Zheng }
275704df765aSFam Zheng 
275820a9e77dSFam Zheng const char *bdrv_get_node_name(const BlockDriverState *bs)
275920a9e77dSFam Zheng {
276020a9e77dSFam Zheng     return bs->node_name;
276120a9e77dSFam Zheng }
276220a9e77dSFam Zheng 
27631f0c461bSKevin Wolf const char *bdrv_get_parent_name(const BlockDriverState *bs)
27644c265bf9SKevin Wolf {
27654c265bf9SKevin Wolf     BdrvChild *c;
27664c265bf9SKevin Wolf     const char *name;
27674c265bf9SKevin Wolf 
27684c265bf9SKevin Wolf     /* If multiple parents have a name, just pick the first one. */
27694c265bf9SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
27704c265bf9SKevin Wolf         if (c->role->get_name) {
27714c265bf9SKevin Wolf             name = c->role->get_name(c);
27724c265bf9SKevin Wolf             if (name && *name) {
27734c265bf9SKevin Wolf                 return name;
27744c265bf9SKevin Wolf             }
27754c265bf9SKevin Wolf         }
27764c265bf9SKevin Wolf     }
27774c265bf9SKevin Wolf 
27784c265bf9SKevin Wolf     return NULL;
27794c265bf9SKevin Wolf }
27804c265bf9SKevin Wolf 
27817f06d47eSMarkus Armbruster /* TODO check what callers really want: bs->node_name or blk_name() */
2782bfb197e0SMarkus Armbruster const char *bdrv_get_device_name(const BlockDriverState *bs)
2783ea2384d3Sbellard {
27844c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: "";
2785ea2384d3Sbellard }
2786ea2384d3Sbellard 
27879b2aa84fSAlberto Garcia /* This can be used to identify nodes that might not have a device
27889b2aa84fSAlberto Garcia  * name associated. Since node and device names live in the same
27899b2aa84fSAlberto Garcia  * namespace, the result is unambiguous. The exception is if both are
27909b2aa84fSAlberto Garcia  * absent, then this returns an empty (non-null) string. */
27919b2aa84fSAlberto Garcia const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
27929b2aa84fSAlberto Garcia {
27934c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: bs->node_name;
27949b2aa84fSAlberto Garcia }
27959b2aa84fSAlberto Garcia 
2796c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs)
2797c8433287SMarkus Armbruster {
2798c8433287SMarkus Armbruster     return bs->open_flags;
2799c8433287SMarkus Armbruster }
2800c8433287SMarkus Armbruster 
28013ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs)
28023ac21627SPeter Lieven {
28033ac21627SPeter Lieven     return 1;
28043ac21627SPeter Lieven }
28053ac21627SPeter Lieven 
2806f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs)
2807f2feebbdSKevin Wolf {
2808f2feebbdSKevin Wolf     assert(bs->drv);
2809f2feebbdSKevin Wolf 
281011212d8fSPaolo Bonzini     /* If BS is a copy on write image, it is initialized to
281111212d8fSPaolo Bonzini        the contents of the base image, which may not be zeroes.  */
2812760e0063SKevin Wolf     if (bs->backing) {
281311212d8fSPaolo Bonzini         return 0;
281411212d8fSPaolo Bonzini     }
2815336c1c12SKevin Wolf     if (bs->drv->bdrv_has_zero_init) {
2816336c1c12SKevin Wolf         return bs->drv->bdrv_has_zero_init(bs);
2817f2feebbdSKevin Wolf     }
2818f2feebbdSKevin Wolf 
28193ac21627SPeter Lieven     /* safe default */
28203ac21627SPeter Lieven     return 0;
2821f2feebbdSKevin Wolf }
2822f2feebbdSKevin Wolf 
28234ce78691SPeter Lieven bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
28244ce78691SPeter Lieven {
28254ce78691SPeter Lieven     BlockDriverInfo bdi;
28264ce78691SPeter Lieven 
2827760e0063SKevin Wolf     if (bs->backing) {
28284ce78691SPeter Lieven         return false;
28294ce78691SPeter Lieven     }
28304ce78691SPeter Lieven 
28314ce78691SPeter Lieven     if (bdrv_get_info(bs, &bdi) == 0) {
28324ce78691SPeter Lieven         return bdi.unallocated_blocks_are_zero;
28334ce78691SPeter Lieven     }
28344ce78691SPeter Lieven 
28354ce78691SPeter Lieven     return false;
28364ce78691SPeter Lieven }
28374ce78691SPeter Lieven 
28384ce78691SPeter Lieven bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
28394ce78691SPeter Lieven {
28404ce78691SPeter Lieven     BlockDriverInfo bdi;
28414ce78691SPeter Lieven 
28422f0342efSDenis V. Lunev     if (!(bs->open_flags & BDRV_O_UNMAP)) {
28434ce78691SPeter Lieven         return false;
28444ce78691SPeter Lieven     }
28454ce78691SPeter Lieven 
28464ce78691SPeter Lieven     if (bdrv_get_info(bs, &bdi) == 0) {
28474ce78691SPeter Lieven         return bdi.can_write_zeroes_with_unmap;
28484ce78691SPeter Lieven     }
28494ce78691SPeter Lieven 
28504ce78691SPeter Lieven     return false;
28514ce78691SPeter Lieven }
28524ce78691SPeter Lieven 
2853045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
2854045df330Saliguori {
2855760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted)
2856045df330Saliguori         return bs->backing_file;
2857045df330Saliguori     else if (bs->encrypted)
2858045df330Saliguori         return bs->filename;
2859045df330Saliguori     else
2860045df330Saliguori         return NULL;
2861045df330Saliguori }
2862045df330Saliguori 
286383f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs,
286483f64091Sbellard                                char *filename, int filename_size)
286583f64091Sbellard {
286683f64091Sbellard     pstrcpy(filename, filename_size, bs->backing_file);
286783f64091Sbellard }
286883f64091Sbellard 
2869faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
2870faea38e7Sbellard {
2871faea38e7Sbellard     BlockDriver *drv = bs->drv;
2872faea38e7Sbellard     if (!drv)
287319cb3738Sbellard         return -ENOMEDIUM;
2874faea38e7Sbellard     if (!drv->bdrv_get_info)
2875faea38e7Sbellard         return -ENOTSUP;
2876faea38e7Sbellard     memset(bdi, 0, sizeof(*bdi));
2877faea38e7Sbellard     return drv->bdrv_get_info(bs, bdi);
2878faea38e7Sbellard }
2879faea38e7Sbellard 
2880eae041feSMax Reitz ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
2881eae041feSMax Reitz {
2882eae041feSMax Reitz     BlockDriver *drv = bs->drv;
2883eae041feSMax Reitz     if (drv && drv->bdrv_get_specific_info) {
2884eae041feSMax Reitz         return drv->bdrv_get_specific_info(bs);
2885eae041feSMax Reitz     }
2886eae041feSMax Reitz     return NULL;
2887eae041feSMax Reitz }
2888eae041feSMax Reitz 
2889a31939e6SEric Blake void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
28908b9b0cc2SKevin Wolf {
2891bf736fe3SKevin Wolf     if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
28928b9b0cc2SKevin Wolf         return;
28938b9b0cc2SKevin Wolf     }
28948b9b0cc2SKevin Wolf 
2895bf736fe3SKevin Wolf     bs->drv->bdrv_debug_event(bs, event);
289641c695c7SKevin Wolf }
28978b9b0cc2SKevin Wolf 
289841c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
289941c695c7SKevin Wolf                           const char *tag)
290041c695c7SKevin Wolf {
290141c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
29029a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
290341c695c7SKevin Wolf     }
290441c695c7SKevin Wolf 
290541c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
290641c695c7SKevin Wolf         return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
290741c695c7SKevin Wolf     }
290841c695c7SKevin Wolf 
290941c695c7SKevin Wolf     return -ENOTSUP;
291041c695c7SKevin Wolf }
291141c695c7SKevin Wolf 
29124cc70e93SFam Zheng int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
29134cc70e93SFam Zheng {
29144cc70e93SFam Zheng     while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
29159a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
29164cc70e93SFam Zheng     }
29174cc70e93SFam Zheng 
29184cc70e93SFam Zheng     if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
29194cc70e93SFam Zheng         return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
29204cc70e93SFam Zheng     }
29214cc70e93SFam Zheng 
29224cc70e93SFam Zheng     return -ENOTSUP;
29234cc70e93SFam Zheng }
29244cc70e93SFam Zheng 
292541c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
292641c695c7SKevin Wolf {
2927938789eaSMax Reitz     while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
29289a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
292941c695c7SKevin Wolf     }
293041c695c7SKevin Wolf 
293141c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
293241c695c7SKevin Wolf         return bs->drv->bdrv_debug_resume(bs, tag);
293341c695c7SKevin Wolf     }
293441c695c7SKevin Wolf 
293541c695c7SKevin Wolf     return -ENOTSUP;
293641c695c7SKevin Wolf }
293741c695c7SKevin Wolf 
293841c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
293941c695c7SKevin Wolf {
294041c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
29419a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
294241c695c7SKevin Wolf     }
294341c695c7SKevin Wolf 
294441c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
294541c695c7SKevin Wolf         return bs->drv->bdrv_debug_is_suspended(bs, tag);
294641c695c7SKevin Wolf     }
294741c695c7SKevin Wolf 
294841c695c7SKevin Wolf     return false;
29498b9b0cc2SKevin Wolf }
29508b9b0cc2SKevin Wolf 
2951199630b6SBlue Swirl int bdrv_is_snapshot(BlockDriverState *bs)
2952199630b6SBlue Swirl {
2953199630b6SBlue Swirl     return !!(bs->open_flags & BDRV_O_SNAPSHOT);
2954199630b6SBlue Swirl }
2955199630b6SBlue Swirl 
2956b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol.  If it is
2957b1b1d783SJeff Cody  * relative, it must be relative to the chain.  So, passing in bs->filename
2958b1b1d783SJeff Cody  * from a BDS as backing_file should not be done, as that may be relative to
2959b1b1d783SJeff Cody  * the CWD rather than the chain. */
2960e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
2961e8a6bb9cSMarcelo Tosatti         const char *backing_file)
2962e8a6bb9cSMarcelo Tosatti {
2963b1b1d783SJeff Cody     char *filename_full = NULL;
2964b1b1d783SJeff Cody     char *backing_file_full = NULL;
2965b1b1d783SJeff Cody     char *filename_tmp = NULL;
2966b1b1d783SJeff Cody     int is_protocol = 0;
2967b1b1d783SJeff Cody     BlockDriverState *curr_bs = NULL;
2968b1b1d783SJeff Cody     BlockDriverState *retval = NULL;
2969b1b1d783SJeff Cody 
2970b1b1d783SJeff Cody     if (!bs || !bs->drv || !backing_file) {
2971e8a6bb9cSMarcelo Tosatti         return NULL;
2972e8a6bb9cSMarcelo Tosatti     }
2973e8a6bb9cSMarcelo Tosatti 
2974b1b1d783SJeff Cody     filename_full     = g_malloc(PATH_MAX);
2975b1b1d783SJeff Cody     backing_file_full = g_malloc(PATH_MAX);
2976b1b1d783SJeff Cody     filename_tmp      = g_malloc(PATH_MAX);
2977b1b1d783SJeff Cody 
2978b1b1d783SJeff Cody     is_protocol = path_has_protocol(backing_file);
2979b1b1d783SJeff Cody 
2980760e0063SKevin Wolf     for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
2981b1b1d783SJeff Cody 
2982b1b1d783SJeff Cody         /* If either of the filename paths is actually a protocol, then
2983b1b1d783SJeff Cody          * compare unmodified paths; otherwise make paths relative */
2984b1b1d783SJeff Cody         if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
2985b1b1d783SJeff Cody             if (strcmp(backing_file, curr_bs->backing_file) == 0) {
2986760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
2987b1b1d783SJeff Cody                 break;
2988b1b1d783SJeff Cody             }
2989e8a6bb9cSMarcelo Tosatti         } else {
2990b1b1d783SJeff Cody             /* If not an absolute filename path, make it relative to the current
2991b1b1d783SJeff Cody              * image's filename path */
2992b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
2993b1b1d783SJeff Cody                          backing_file);
2994b1b1d783SJeff Cody 
2995b1b1d783SJeff Cody             /* We are going to compare absolute pathnames */
2996b1b1d783SJeff Cody             if (!realpath(filename_tmp, filename_full)) {
2997b1b1d783SJeff Cody                 continue;
2998b1b1d783SJeff Cody             }
2999b1b1d783SJeff Cody 
3000b1b1d783SJeff Cody             /* We need to make sure the backing filename we are comparing against
3001b1b1d783SJeff Cody              * is relative to the current image filename (or absolute) */
3002b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
3003b1b1d783SJeff Cody                          curr_bs->backing_file);
3004b1b1d783SJeff Cody 
3005b1b1d783SJeff Cody             if (!realpath(filename_tmp, backing_file_full)) {
3006b1b1d783SJeff Cody                 continue;
3007b1b1d783SJeff Cody             }
3008b1b1d783SJeff Cody 
3009b1b1d783SJeff Cody             if (strcmp(backing_file_full, filename_full) == 0) {
3010760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
3011b1b1d783SJeff Cody                 break;
3012b1b1d783SJeff Cody             }
3013e8a6bb9cSMarcelo Tosatti         }
3014e8a6bb9cSMarcelo Tosatti     }
3015e8a6bb9cSMarcelo Tosatti 
3016b1b1d783SJeff Cody     g_free(filename_full);
3017b1b1d783SJeff Cody     g_free(backing_file_full);
3018b1b1d783SJeff Cody     g_free(filename_tmp);
3019b1b1d783SJeff Cody     return retval;
3020e8a6bb9cSMarcelo Tosatti }
3021e8a6bb9cSMarcelo Tosatti 
3022f198fd1cSBenoît Canet int bdrv_get_backing_file_depth(BlockDriverState *bs)
3023f198fd1cSBenoît Canet {
3024f198fd1cSBenoît Canet     if (!bs->drv) {
3025f198fd1cSBenoît Canet         return 0;
3026f198fd1cSBenoît Canet     }
3027f198fd1cSBenoît Canet 
3028760e0063SKevin Wolf     if (!bs->backing) {
3029f198fd1cSBenoît Canet         return 0;
3030f198fd1cSBenoît Canet     }
3031f198fd1cSBenoît Canet 
3032760e0063SKevin Wolf     return 1 + bdrv_get_backing_file_depth(bs->backing->bs);
3033f198fd1cSBenoît Canet }
3034f198fd1cSBenoît Canet 
3035ea2384d3Sbellard void bdrv_init(void)
3036ea2384d3Sbellard {
30375efa9d5aSAnthony Liguori     module_call_init(MODULE_INIT_BLOCK);
3038ea2384d3Sbellard }
3039ce1a14dcSpbrook 
3040eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void)
3041eb852011SMarkus Armbruster {
3042eb852011SMarkus Armbruster     use_bdrv_whitelist = 1;
3043eb852011SMarkus Armbruster     bdrv_init();
3044eb852011SMarkus Armbruster }
3045eb852011SMarkus Armbruster 
30465a8a30dbSKevin Wolf void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
30470f15423cSAnthony Liguori {
30480d1c5c91SFam Zheng     BdrvChild *child;
30495a8a30dbSKevin Wolf     Error *local_err = NULL;
30505a8a30dbSKevin Wolf     int ret;
30515a8a30dbSKevin Wolf 
30523456a8d1SKevin Wolf     if (!bs->drv)  {
30533456a8d1SKevin Wolf         return;
30540f15423cSAnthony Liguori     }
30553456a8d1SKevin Wolf 
305604c01a5cSKevin Wolf     if (!(bs->open_flags & BDRV_O_INACTIVE)) {
30577ea2d269SAlexey Kardashevskiy         return;
30587ea2d269SAlexey Kardashevskiy     }
305904c01a5cSKevin Wolf     bs->open_flags &= ~BDRV_O_INACTIVE;
30607ea2d269SAlexey Kardashevskiy 
30613456a8d1SKevin Wolf     if (bs->drv->bdrv_invalidate_cache) {
30625a8a30dbSKevin Wolf         bs->drv->bdrv_invalidate_cache(bs, &local_err);
30635a8a30dbSKevin Wolf         if (local_err) {
306404c01a5cSKevin Wolf             bs->open_flags |= BDRV_O_INACTIVE;
30655a8a30dbSKevin Wolf             error_propagate(errp, local_err);
30665a8a30dbSKevin Wolf             return;
30673456a8d1SKevin Wolf         }
30680d1c5c91SFam Zheng     }
30690d1c5c91SFam Zheng 
30700d1c5c91SFam Zheng     QLIST_FOREACH(child, &bs->children, next) {
30710d1c5c91SFam Zheng         bdrv_invalidate_cache(child->bs, &local_err);
30720d1c5c91SFam Zheng         if (local_err) {
30730d1c5c91SFam Zheng             bs->open_flags |= BDRV_O_INACTIVE;
30740d1c5c91SFam Zheng             error_propagate(errp, local_err);
30750d1c5c91SFam Zheng             return;
30760d1c5c91SFam Zheng         }
30770d1c5c91SFam Zheng     }
30783456a8d1SKevin Wolf 
30795a8a30dbSKevin Wolf     ret = refresh_total_sectors(bs, bs->total_sectors);
30805a8a30dbSKevin Wolf     if (ret < 0) {
308104c01a5cSKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
30825a8a30dbSKevin Wolf         error_setg_errno(errp, -ret, "Could not refresh total sector count");
30835a8a30dbSKevin Wolf         return;
30845a8a30dbSKevin Wolf     }
30850f15423cSAnthony Liguori }
30860f15423cSAnthony Liguori 
30875a8a30dbSKevin Wolf void bdrv_invalidate_cache_all(Error **errp)
30880f15423cSAnthony Liguori {
30897c8eece4SKevin Wolf     BlockDriverState *bs;
30905a8a30dbSKevin Wolf     Error *local_err = NULL;
309188be7b4bSKevin Wolf     BdrvNextIterator it;
30920f15423cSAnthony Liguori 
309388be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3094ed78cda3SStefan Hajnoczi         AioContext *aio_context = bdrv_get_aio_context(bs);
3095ed78cda3SStefan Hajnoczi 
3096ed78cda3SStefan Hajnoczi         aio_context_acquire(aio_context);
30975a8a30dbSKevin Wolf         bdrv_invalidate_cache(bs, &local_err);
3098ed78cda3SStefan Hajnoczi         aio_context_release(aio_context);
30995a8a30dbSKevin Wolf         if (local_err) {
31005a8a30dbSKevin Wolf             error_propagate(errp, local_err);
31015a8a30dbSKevin Wolf             return;
31025a8a30dbSKevin Wolf         }
31030f15423cSAnthony Liguori     }
31040f15423cSAnthony Liguori }
31050f15423cSAnthony Liguori 
3106aad0b7a0SFam Zheng static int bdrv_inactivate_recurse(BlockDriverState *bs,
3107aad0b7a0SFam Zheng                                    bool setting_flag)
310876b1c7feSKevin Wolf {
3109aad0b7a0SFam Zheng     BdrvChild *child;
311076b1c7feSKevin Wolf     int ret;
311176b1c7feSKevin Wolf 
3112aad0b7a0SFam Zheng     if (!setting_flag && bs->drv->bdrv_inactivate) {
311376b1c7feSKevin Wolf         ret = bs->drv->bdrv_inactivate(bs);
311476b1c7feSKevin Wolf         if (ret < 0) {
311576b1c7feSKevin Wolf             return ret;
311676b1c7feSKevin Wolf         }
311776b1c7feSKevin Wolf     }
311876b1c7feSKevin Wolf 
3119aad0b7a0SFam Zheng     QLIST_FOREACH(child, &bs->children, next) {
3120aad0b7a0SFam Zheng         ret = bdrv_inactivate_recurse(child->bs, setting_flag);
3121aad0b7a0SFam Zheng         if (ret < 0) {
3122aad0b7a0SFam Zheng             return ret;
3123aad0b7a0SFam Zheng         }
3124aad0b7a0SFam Zheng     }
3125aad0b7a0SFam Zheng 
3126aad0b7a0SFam Zheng     if (setting_flag) {
312776b1c7feSKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
3128aad0b7a0SFam Zheng     }
312976b1c7feSKevin Wolf     return 0;
313076b1c7feSKevin Wolf }
313176b1c7feSKevin Wolf 
313276b1c7feSKevin Wolf int bdrv_inactivate_all(void)
313376b1c7feSKevin Wolf {
313479720af6SMax Reitz     BlockDriverState *bs = NULL;
313588be7b4bSKevin Wolf     BdrvNextIterator it;
3136aad0b7a0SFam Zheng     int ret = 0;
3137aad0b7a0SFam Zheng     int pass;
313876b1c7feSKevin Wolf 
313988be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3140aad0b7a0SFam Zheng         aio_context_acquire(bdrv_get_aio_context(bs));
3141aad0b7a0SFam Zheng     }
314276b1c7feSKevin Wolf 
3143aad0b7a0SFam Zheng     /* We do two passes of inactivation. The first pass calls to drivers'
3144aad0b7a0SFam Zheng      * .bdrv_inactivate callbacks recursively so all cache is flushed to disk;
3145aad0b7a0SFam Zheng      * the second pass sets the BDRV_O_INACTIVE flag so that no further write
3146aad0b7a0SFam Zheng      * is allowed. */
3147aad0b7a0SFam Zheng     for (pass = 0; pass < 2; pass++) {
314888be7b4bSKevin Wolf         for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3149aad0b7a0SFam Zheng             ret = bdrv_inactivate_recurse(bs, pass);
315076b1c7feSKevin Wolf             if (ret < 0) {
3151aad0b7a0SFam Zheng                 goto out;
3152aad0b7a0SFam Zheng             }
315376b1c7feSKevin Wolf         }
315476b1c7feSKevin Wolf     }
315576b1c7feSKevin Wolf 
3156aad0b7a0SFam Zheng out:
315788be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3158aad0b7a0SFam Zheng         aio_context_release(bdrv_get_aio_context(bs));
3159aad0b7a0SFam Zheng     }
3160aad0b7a0SFam Zheng 
3161aad0b7a0SFam Zheng     return ret;
316276b1c7feSKevin Wolf }
316376b1c7feSKevin Wolf 
3164f9f05dc5SKevin Wolf /**************************************************************/
316519cb3738Sbellard /* removable device support */
316619cb3738Sbellard 
316719cb3738Sbellard /**
316819cb3738Sbellard  * Return TRUE if the media is present
316919cb3738Sbellard  */
3170e031f750SMax Reitz bool bdrv_is_inserted(BlockDriverState *bs)
317119cb3738Sbellard {
317219cb3738Sbellard     BlockDriver *drv = bs->drv;
317328d7a789SMax Reitz     BdrvChild *child;
3174a1aff5bfSMarkus Armbruster 
3175e031f750SMax Reitz     if (!drv) {
3176e031f750SMax Reitz         return false;
3177e031f750SMax Reitz     }
317828d7a789SMax Reitz     if (drv->bdrv_is_inserted) {
3179a1aff5bfSMarkus Armbruster         return drv->bdrv_is_inserted(bs);
318019cb3738Sbellard     }
318128d7a789SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
318228d7a789SMax Reitz         if (!bdrv_is_inserted(child->bs)) {
318328d7a789SMax Reitz             return false;
318428d7a789SMax Reitz         }
318528d7a789SMax Reitz     }
318628d7a789SMax Reitz     return true;
318728d7a789SMax Reitz }
318819cb3738Sbellard 
318919cb3738Sbellard /**
31908e49ca46SMarkus Armbruster  * Return whether the media changed since the last call to this
31918e49ca46SMarkus Armbruster  * function, or -ENOTSUP if we don't know.  Most drivers don't know.
319219cb3738Sbellard  */
319319cb3738Sbellard int bdrv_media_changed(BlockDriverState *bs)
319419cb3738Sbellard {
319519cb3738Sbellard     BlockDriver *drv = bs->drv;
319619cb3738Sbellard 
31978e49ca46SMarkus Armbruster     if (drv && drv->bdrv_media_changed) {
31988e49ca46SMarkus Armbruster         return drv->bdrv_media_changed(bs);
31998e49ca46SMarkus Armbruster     }
32008e49ca46SMarkus Armbruster     return -ENOTSUP;
320119cb3738Sbellard }
320219cb3738Sbellard 
320319cb3738Sbellard /**
320419cb3738Sbellard  * If eject_flag is TRUE, eject the media. Otherwise, close the tray
320519cb3738Sbellard  */
3206f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag)
320719cb3738Sbellard {
320819cb3738Sbellard     BlockDriver *drv = bs->drv;
3209bfb197e0SMarkus Armbruster     const char *device_name;
321019cb3738Sbellard 
3211822e1cd1SMarkus Armbruster     if (drv && drv->bdrv_eject) {
3212822e1cd1SMarkus Armbruster         drv->bdrv_eject(bs, eject_flag);
321319cb3738Sbellard     }
32146f382ed2SLuiz Capitulino 
3215bfb197e0SMarkus Armbruster     device_name = bdrv_get_device_name(bs);
3216bfb197e0SMarkus Armbruster     if (device_name[0] != '\0') {
3217bfb197e0SMarkus Armbruster         qapi_event_send_device_tray_moved(device_name,
3218a5ee7bd4SWenchao Xia                                           eject_flag, &error_abort);
32196f382ed2SLuiz Capitulino     }
322019cb3738Sbellard }
322119cb3738Sbellard 
322219cb3738Sbellard /**
322319cb3738Sbellard  * Lock or unlock the media (if it is locked, the user won't be able
322419cb3738Sbellard  * to eject it manually).
322519cb3738Sbellard  */
3226025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked)
322719cb3738Sbellard {
322819cb3738Sbellard     BlockDriver *drv = bs->drv;
322919cb3738Sbellard 
3230025e849aSMarkus Armbruster     trace_bdrv_lock_medium(bs, locked);
3231b8c6d095SStefan Hajnoczi 
3232025e849aSMarkus Armbruster     if (drv && drv->bdrv_lock_medium) {
3233025e849aSMarkus Armbruster         drv->bdrv_lock_medium(bs, locked);
323419cb3738Sbellard     }
323519cb3738Sbellard }
3236985a03b0Sths 
32379fcb0251SFam Zheng /* Get a reference to bs */
32389fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs)
32399fcb0251SFam Zheng {
32409fcb0251SFam Zheng     bs->refcnt++;
32419fcb0251SFam Zheng }
32429fcb0251SFam Zheng 
32439fcb0251SFam Zheng /* Release a previously grabbed reference to bs.
32449fcb0251SFam Zheng  * If after releasing, reference count is zero, the BlockDriverState is
32459fcb0251SFam Zheng  * deleted. */
32469fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs)
32479fcb0251SFam Zheng {
32489a4d5ca6SJeff Cody     if (!bs) {
32499a4d5ca6SJeff Cody         return;
32509a4d5ca6SJeff Cody     }
32519fcb0251SFam Zheng     assert(bs->refcnt > 0);
32529fcb0251SFam Zheng     if (--bs->refcnt == 0) {
32539fcb0251SFam Zheng         bdrv_delete(bs);
32549fcb0251SFam Zheng     }
32559fcb0251SFam Zheng }
32569fcb0251SFam Zheng 
3257fbe40ff7SFam Zheng struct BdrvOpBlocker {
3258fbe40ff7SFam Zheng     Error *reason;
3259fbe40ff7SFam Zheng     QLIST_ENTRY(BdrvOpBlocker) list;
3260fbe40ff7SFam Zheng };
3261fbe40ff7SFam Zheng 
3262fbe40ff7SFam Zheng bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
3263fbe40ff7SFam Zheng {
3264fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
3265fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
3266fbe40ff7SFam Zheng     if (!QLIST_EMPTY(&bs->op_blockers[op])) {
3267fbe40ff7SFam Zheng         blocker = QLIST_FIRST(&bs->op_blockers[op]);
3268fbe40ff7SFam Zheng         if (errp) {
3269e43bfd9cSMarkus Armbruster             *errp = error_copy(blocker->reason);
3270e43bfd9cSMarkus Armbruster             error_prepend(errp, "Node '%s' is busy: ",
3271e43bfd9cSMarkus Armbruster                           bdrv_get_device_or_node_name(bs));
3272fbe40ff7SFam Zheng         }
3273fbe40ff7SFam Zheng         return true;
3274fbe40ff7SFam Zheng     }
3275fbe40ff7SFam Zheng     return false;
3276fbe40ff7SFam Zheng }
3277fbe40ff7SFam Zheng 
3278fbe40ff7SFam Zheng void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
3279fbe40ff7SFam Zheng {
3280fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
3281fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
3282fbe40ff7SFam Zheng 
32835839e53bSMarkus Armbruster     blocker = g_new0(BdrvOpBlocker, 1);
3284fbe40ff7SFam Zheng     blocker->reason = reason;
3285fbe40ff7SFam Zheng     QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
3286fbe40ff7SFam Zheng }
3287fbe40ff7SFam Zheng 
3288fbe40ff7SFam Zheng void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
3289fbe40ff7SFam Zheng {
3290fbe40ff7SFam Zheng     BdrvOpBlocker *blocker, *next;
3291fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
3292fbe40ff7SFam Zheng     QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
3293fbe40ff7SFam Zheng         if (blocker->reason == reason) {
3294fbe40ff7SFam Zheng             QLIST_REMOVE(blocker, list);
3295fbe40ff7SFam Zheng             g_free(blocker);
3296fbe40ff7SFam Zheng         }
3297fbe40ff7SFam Zheng     }
3298fbe40ff7SFam Zheng }
3299fbe40ff7SFam Zheng 
3300fbe40ff7SFam Zheng void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
3301fbe40ff7SFam Zheng {
3302fbe40ff7SFam Zheng     int i;
3303fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
3304fbe40ff7SFam Zheng         bdrv_op_block(bs, i, reason);
3305fbe40ff7SFam Zheng     }
3306fbe40ff7SFam Zheng }
3307fbe40ff7SFam Zheng 
3308fbe40ff7SFam Zheng void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
3309fbe40ff7SFam Zheng {
3310fbe40ff7SFam Zheng     int i;
3311fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
3312fbe40ff7SFam Zheng         bdrv_op_unblock(bs, i, reason);
3313fbe40ff7SFam Zheng     }
3314fbe40ff7SFam Zheng }
3315fbe40ff7SFam Zheng 
3316fbe40ff7SFam Zheng bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
3317fbe40ff7SFam Zheng {
3318fbe40ff7SFam Zheng     int i;
3319fbe40ff7SFam Zheng 
3320fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
3321fbe40ff7SFam Zheng         if (!QLIST_EMPTY(&bs->op_blockers[i])) {
3322fbe40ff7SFam Zheng             return false;
3323fbe40ff7SFam Zheng         }
3324fbe40ff7SFam Zheng     }
3325fbe40ff7SFam Zheng     return true;
3326fbe40ff7SFam Zheng }
3327fbe40ff7SFam Zheng 
3328d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt,
3329f88e1a42SJes Sorensen                      const char *base_filename, const char *base_fmt,
3330f382d43aSMiroslav Rezanina                      char *options, uint64_t img_size, int flags,
3331f382d43aSMiroslav Rezanina                      Error **errp, bool quiet)
3332f88e1a42SJes Sorensen {
333383d0521aSChunyan Liu     QemuOptsList *create_opts = NULL;
333483d0521aSChunyan Liu     QemuOpts *opts = NULL;
333583d0521aSChunyan Liu     const char *backing_fmt, *backing_file;
333683d0521aSChunyan Liu     int64_t size;
3337f88e1a42SJes Sorensen     BlockDriver *drv, *proto_drv;
3338cc84d90fSMax Reitz     Error *local_err = NULL;
3339f88e1a42SJes Sorensen     int ret = 0;
3340f88e1a42SJes Sorensen 
3341f88e1a42SJes Sorensen     /* Find driver and parse its options */
3342f88e1a42SJes Sorensen     drv = bdrv_find_format(fmt);
3343f88e1a42SJes Sorensen     if (!drv) {
334471c79813SLuiz Capitulino         error_setg(errp, "Unknown file format '%s'", fmt);
3345d92ada22SLuiz Capitulino         return;
3346f88e1a42SJes Sorensen     }
3347f88e1a42SJes Sorensen 
3348b65a5e12SMax Reitz     proto_drv = bdrv_find_protocol(filename, true, errp);
3349f88e1a42SJes Sorensen     if (!proto_drv) {
3350d92ada22SLuiz Capitulino         return;
3351f88e1a42SJes Sorensen     }
3352f88e1a42SJes Sorensen 
3353c6149724SMax Reitz     if (!drv->create_opts) {
3354c6149724SMax Reitz         error_setg(errp, "Format driver '%s' does not support image creation",
3355c6149724SMax Reitz                    drv->format_name);
3356c6149724SMax Reitz         return;
3357c6149724SMax Reitz     }
3358c6149724SMax Reitz 
3359c6149724SMax Reitz     if (!proto_drv->create_opts) {
3360c6149724SMax Reitz         error_setg(errp, "Protocol driver '%s' does not support image creation",
3361c6149724SMax Reitz                    proto_drv->format_name);
3362c6149724SMax Reitz         return;
3363c6149724SMax Reitz     }
3364c6149724SMax Reitz 
3365c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, drv->create_opts);
3366c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
3367f88e1a42SJes Sorensen 
3368f88e1a42SJes Sorensen     /* Create parameter list with default values */
336983d0521aSChunyan Liu     opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
337039101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
3371f88e1a42SJes Sorensen 
3372f88e1a42SJes Sorensen     /* Parse -o options */
3373f88e1a42SJes Sorensen     if (options) {
3374dc523cd3SMarkus Armbruster         qemu_opts_do_parse(opts, options, NULL, &local_err);
3375dc523cd3SMarkus Armbruster         if (local_err) {
3376dc523cd3SMarkus Armbruster             error_report_err(local_err);
3377dc523cd3SMarkus Armbruster             local_err = NULL;
337883d0521aSChunyan Liu             error_setg(errp, "Invalid options for file format '%s'", fmt);
3379f88e1a42SJes Sorensen             goto out;
3380f88e1a42SJes Sorensen         }
3381f88e1a42SJes Sorensen     }
3382f88e1a42SJes Sorensen 
3383f88e1a42SJes Sorensen     if (base_filename) {
3384f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
33856be4194bSMarkus Armbruster         if (local_err) {
338671c79813SLuiz Capitulino             error_setg(errp, "Backing file not supported for file format '%s'",
338771c79813SLuiz Capitulino                        fmt);
3388f88e1a42SJes Sorensen             goto out;
3389f88e1a42SJes Sorensen         }
3390f88e1a42SJes Sorensen     }
3391f88e1a42SJes Sorensen 
3392f88e1a42SJes Sorensen     if (base_fmt) {
3393f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
33946be4194bSMarkus Armbruster         if (local_err) {
339571c79813SLuiz Capitulino             error_setg(errp, "Backing file format not supported for file "
339671c79813SLuiz Capitulino                              "format '%s'", fmt);
3397f88e1a42SJes Sorensen             goto out;
3398f88e1a42SJes Sorensen         }
3399f88e1a42SJes Sorensen     }
3400f88e1a42SJes Sorensen 
340183d0521aSChunyan Liu     backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
340283d0521aSChunyan Liu     if (backing_file) {
340383d0521aSChunyan Liu         if (!strcmp(filename, backing_file)) {
340471c79813SLuiz Capitulino             error_setg(errp, "Error: Trying to create an image with the "
340571c79813SLuiz Capitulino                              "same filename as the backing file");
3406792da93aSJes Sorensen             goto out;
3407792da93aSJes Sorensen         }
3408792da93aSJes Sorensen     }
3409792da93aSJes Sorensen 
341083d0521aSChunyan Liu     backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
3411f88e1a42SJes Sorensen 
3412f88e1a42SJes Sorensen     // The size for the image must always be specified, with one exception:
3413f88e1a42SJes Sorensen     // If we are using a backing file, we can obtain the size from there
341483d0521aSChunyan Liu     size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0);
341583d0521aSChunyan Liu     if (size == -1) {
341683d0521aSChunyan Liu         if (backing_file) {
341766f6b814SMax Reitz             BlockDriverState *bs;
341829168018SMax Reitz             char *full_backing = g_new0(char, PATH_MAX);
341952bf1e72SMarkus Armbruster             int64_t size;
342063090dacSPaolo Bonzini             int back_flags;
3421e6641719SMax Reitz             QDict *backing_options = NULL;
342263090dacSPaolo Bonzini 
342329168018SMax Reitz             bdrv_get_full_backing_filename_from_filename(filename, backing_file,
342429168018SMax Reitz                                                          full_backing, PATH_MAX,
342529168018SMax Reitz                                                          &local_err);
342629168018SMax Reitz             if (local_err) {
342729168018SMax Reitz                 g_free(full_backing);
342829168018SMax Reitz                 goto out;
342929168018SMax Reitz             }
343029168018SMax Reitz 
343163090dacSPaolo Bonzini             /* backing files always opened read-only */
343261de4c68SKevin Wolf             back_flags = flags;
3433bfd18d1eSKevin Wolf             back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
3434f88e1a42SJes Sorensen 
3435e6641719SMax Reitz             if (backing_fmt) {
3436e6641719SMax Reitz                 backing_options = qdict_new();
3437e6641719SMax Reitz                 qdict_put(backing_options, "driver",
3438e6641719SMax Reitz                           qstring_from_str(backing_fmt));
3439e6641719SMax Reitz             }
3440e6641719SMax Reitz 
34415b363937SMax Reitz             bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
34425b363937SMax Reitz                            &local_err);
344329168018SMax Reitz             g_free(full_backing);
34445b363937SMax Reitz             if (!bs) {
3445f88e1a42SJes Sorensen                 goto out;
3446f88e1a42SJes Sorensen             }
344752bf1e72SMarkus Armbruster             size = bdrv_getlength(bs);
344852bf1e72SMarkus Armbruster             if (size < 0) {
344952bf1e72SMarkus Armbruster                 error_setg_errno(errp, -size, "Could not get size of '%s'",
345052bf1e72SMarkus Armbruster                                  backing_file);
345152bf1e72SMarkus Armbruster                 bdrv_unref(bs);
345252bf1e72SMarkus Armbruster                 goto out;
345352bf1e72SMarkus Armbruster             }
3454f88e1a42SJes Sorensen 
345539101f25SMarkus Armbruster             qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
345666f6b814SMax Reitz 
345766f6b814SMax Reitz             bdrv_unref(bs);
3458f88e1a42SJes Sorensen         } else {
345971c79813SLuiz Capitulino             error_setg(errp, "Image creation needs a size parameter");
3460f88e1a42SJes Sorensen             goto out;
3461f88e1a42SJes Sorensen         }
3462f88e1a42SJes Sorensen     }
3463f88e1a42SJes Sorensen 
3464f382d43aSMiroslav Rezanina     if (!quiet) {
3465f88e1a42SJes Sorensen         printf("Formatting '%s', fmt=%s ", filename, fmt);
346643c5d8f8SFam Zheng         qemu_opts_print(opts, " ");
3467f88e1a42SJes Sorensen         puts("");
3468f382d43aSMiroslav Rezanina     }
346983d0521aSChunyan Liu 
3470c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
347183d0521aSChunyan Liu 
3472cc84d90fSMax Reitz     if (ret == -EFBIG) {
3473cc84d90fSMax Reitz         /* This is generally a better message than whatever the driver would
3474cc84d90fSMax Reitz          * deliver (especially because of the cluster_size_hint), since that
3475cc84d90fSMax Reitz          * is most probably not much different from "image too large". */
3476f3f4d2c0SKevin Wolf         const char *cluster_size_hint = "";
347783d0521aSChunyan Liu         if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
3478f3f4d2c0SKevin Wolf             cluster_size_hint = " (try using a larger cluster size)";
3479f3f4d2c0SKevin Wolf         }
3480cc84d90fSMax Reitz         error_setg(errp, "The image size is too large for file format '%s'"
3481cc84d90fSMax Reitz                    "%s", fmt, cluster_size_hint);
3482cc84d90fSMax Reitz         error_free(local_err);
3483cc84d90fSMax Reitz         local_err = NULL;
3484f88e1a42SJes Sorensen     }
3485f88e1a42SJes Sorensen 
3486f88e1a42SJes Sorensen out:
348783d0521aSChunyan Liu     qemu_opts_del(opts);
348883d0521aSChunyan Liu     qemu_opts_free(create_opts);
3489cc84d90fSMax Reitz     error_propagate(errp, local_err);
3490cc84d90fSMax Reitz }
349185d126f3SStefan Hajnoczi 
349285d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs)
349385d126f3SStefan Hajnoczi {
3494dcd04228SStefan Hajnoczi     return bs->aio_context;
3495dcd04228SStefan Hajnoczi }
3496dcd04228SStefan Hajnoczi 
3497e8a095daSStefan Hajnoczi static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
3498e8a095daSStefan Hajnoczi {
3499e8a095daSStefan Hajnoczi     QLIST_REMOVE(ban, list);
3500e8a095daSStefan Hajnoczi     g_free(ban);
3501e8a095daSStefan Hajnoczi }
3502e8a095daSStefan Hajnoczi 
3503dcd04228SStefan Hajnoczi void bdrv_detach_aio_context(BlockDriverState *bs)
3504dcd04228SStefan Hajnoczi {
3505e8a095daSStefan Hajnoczi     BdrvAioNotifier *baf, *baf_tmp;
3506b97511c7SMax Reitz     BdrvChild *child;
350733384421SMax Reitz 
3508dcd04228SStefan Hajnoczi     if (!bs->drv) {
3509dcd04228SStefan Hajnoczi         return;
3510dcd04228SStefan Hajnoczi     }
3511dcd04228SStefan Hajnoczi 
3512e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
3513e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
3514e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
3515e8a095daSStefan Hajnoczi         if (baf->deleted) {
3516e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(baf);
3517e8a095daSStefan Hajnoczi         } else {
351833384421SMax Reitz             baf->detach_aio_context(baf->opaque);
351933384421SMax Reitz         }
3520e8a095daSStefan Hajnoczi     }
3521e8a095daSStefan Hajnoczi     /* Never mind iterating again to check for ->deleted.  bdrv_close() will
3522e8a095daSStefan Hajnoczi      * remove remaining aio notifiers if we aren't called again.
3523e8a095daSStefan Hajnoczi      */
3524e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
352533384421SMax Reitz 
3526dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_detach_aio_context) {
3527dcd04228SStefan Hajnoczi         bs->drv->bdrv_detach_aio_context(bs);
3528dcd04228SStefan Hajnoczi     }
3529b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
3530b97511c7SMax Reitz         bdrv_detach_aio_context(child->bs);
3531dcd04228SStefan Hajnoczi     }
3532dcd04228SStefan Hajnoczi 
3533dcd04228SStefan Hajnoczi     bs->aio_context = NULL;
3534dcd04228SStefan Hajnoczi }
3535dcd04228SStefan Hajnoczi 
3536dcd04228SStefan Hajnoczi void bdrv_attach_aio_context(BlockDriverState *bs,
3537dcd04228SStefan Hajnoczi                              AioContext *new_context)
3538dcd04228SStefan Hajnoczi {
3539e8a095daSStefan Hajnoczi     BdrvAioNotifier *ban, *ban_tmp;
3540b97511c7SMax Reitz     BdrvChild *child;
354133384421SMax Reitz 
3542dcd04228SStefan Hajnoczi     if (!bs->drv) {
3543dcd04228SStefan Hajnoczi         return;
3544dcd04228SStefan Hajnoczi     }
3545dcd04228SStefan Hajnoczi 
3546dcd04228SStefan Hajnoczi     bs->aio_context = new_context;
3547dcd04228SStefan Hajnoczi 
3548b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
3549b97511c7SMax Reitz         bdrv_attach_aio_context(child->bs, new_context);
3550dcd04228SStefan Hajnoczi     }
3551dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_attach_aio_context) {
3552dcd04228SStefan Hajnoczi         bs->drv->bdrv_attach_aio_context(bs, new_context);
3553dcd04228SStefan Hajnoczi     }
355433384421SMax Reitz 
3555e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
3556e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
3557e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
3558e8a095daSStefan Hajnoczi         if (ban->deleted) {
3559e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(ban);
3560e8a095daSStefan Hajnoczi         } else {
356133384421SMax Reitz             ban->attached_aio_context(new_context, ban->opaque);
356233384421SMax Reitz         }
3563dcd04228SStefan Hajnoczi     }
3564e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
3565e8a095daSStefan Hajnoczi }
3566dcd04228SStefan Hajnoczi 
3567dcd04228SStefan Hajnoczi void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
3568dcd04228SStefan Hajnoczi {
356953ec73e2SFam Zheng     bdrv_drain(bs); /* ensure there are no in-flight requests */
3570dcd04228SStefan Hajnoczi 
3571dcd04228SStefan Hajnoczi     bdrv_detach_aio_context(bs);
3572dcd04228SStefan Hajnoczi 
3573dcd04228SStefan Hajnoczi     /* This function executes in the old AioContext so acquire the new one in
3574dcd04228SStefan Hajnoczi      * case it runs in a different thread.
3575dcd04228SStefan Hajnoczi      */
3576dcd04228SStefan Hajnoczi     aio_context_acquire(new_context);
3577dcd04228SStefan Hajnoczi     bdrv_attach_aio_context(bs, new_context);
3578dcd04228SStefan Hajnoczi     aio_context_release(new_context);
357985d126f3SStefan Hajnoczi }
3580d616b224SStefan Hajnoczi 
358133384421SMax Reitz void bdrv_add_aio_context_notifier(BlockDriverState *bs,
358233384421SMax Reitz         void (*attached_aio_context)(AioContext *new_context, void *opaque),
358333384421SMax Reitz         void (*detach_aio_context)(void *opaque), void *opaque)
358433384421SMax Reitz {
358533384421SMax Reitz     BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
358633384421SMax Reitz     *ban = (BdrvAioNotifier){
358733384421SMax Reitz         .attached_aio_context = attached_aio_context,
358833384421SMax Reitz         .detach_aio_context   = detach_aio_context,
358933384421SMax Reitz         .opaque               = opaque
359033384421SMax Reitz     };
359133384421SMax Reitz 
359233384421SMax Reitz     QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
359333384421SMax Reitz }
359433384421SMax Reitz 
359533384421SMax Reitz void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
359633384421SMax Reitz                                       void (*attached_aio_context)(AioContext *,
359733384421SMax Reitz                                                                    void *),
359833384421SMax Reitz                                       void (*detach_aio_context)(void *),
359933384421SMax Reitz                                       void *opaque)
360033384421SMax Reitz {
360133384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
360233384421SMax Reitz 
360333384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
360433384421SMax Reitz         if (ban->attached_aio_context == attached_aio_context &&
360533384421SMax Reitz             ban->detach_aio_context   == detach_aio_context   &&
3606e8a095daSStefan Hajnoczi             ban->opaque               == opaque               &&
3607e8a095daSStefan Hajnoczi             ban->deleted              == false)
360833384421SMax Reitz         {
3609e8a095daSStefan Hajnoczi             if (bs->walking_aio_notifiers) {
3610e8a095daSStefan Hajnoczi                 ban->deleted = true;
3611e8a095daSStefan Hajnoczi             } else {
3612e8a095daSStefan Hajnoczi                 bdrv_do_remove_aio_context_notifier(ban);
3613e8a095daSStefan Hajnoczi             }
361433384421SMax Reitz             return;
361533384421SMax Reitz         }
361633384421SMax Reitz     }
361733384421SMax Reitz 
361833384421SMax Reitz     abort();
361933384421SMax Reitz }
362033384421SMax Reitz 
362177485434SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
36228b13976dSMax Reitz                        BlockDriverAmendStatusCB *status_cb, void *cb_opaque)
36236f176b48SMax Reitz {
3624c282e1fdSChunyan Liu     if (!bs->drv->bdrv_amend_options) {
36256f176b48SMax Reitz         return -ENOTSUP;
36266f176b48SMax Reitz     }
36278b13976dSMax Reitz     return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque);
36286f176b48SMax Reitz }
3629f6186f49SBenoît Canet 
3630b5042a36SBenoît Canet /* This function will be called by the bdrv_recurse_is_first_non_filter method
3631b5042a36SBenoît Canet  * of block filter and by bdrv_is_first_non_filter.
3632b5042a36SBenoît Canet  * It is used to test if the given bs is the candidate or recurse more in the
3633b5042a36SBenoît Canet  * node graph.
3634212a5a8fSBenoît Canet  */
3635212a5a8fSBenoît Canet bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
3636212a5a8fSBenoît Canet                                       BlockDriverState *candidate)
3637f6186f49SBenoît Canet {
3638b5042a36SBenoît Canet     /* return false if basic checks fails */
3639b5042a36SBenoît Canet     if (!bs || !bs->drv) {
3640b5042a36SBenoît Canet         return false;
3641b5042a36SBenoît Canet     }
3642b5042a36SBenoît Canet 
3643b5042a36SBenoît Canet     /* the code reached a non block filter driver -> check if the bs is
3644b5042a36SBenoît Canet      * the same as the candidate. It's the recursion termination condition.
3645b5042a36SBenoît Canet      */
3646b5042a36SBenoît Canet     if (!bs->drv->is_filter) {
3647b5042a36SBenoît Canet         return bs == candidate;
3648b5042a36SBenoît Canet     }
3649b5042a36SBenoît Canet     /* Down this path the driver is a block filter driver */
3650b5042a36SBenoît Canet 
3651b5042a36SBenoît Canet     /* If the block filter recursion method is defined use it to recurse down
3652b5042a36SBenoît Canet      * the node graph.
3653b5042a36SBenoît Canet      */
3654b5042a36SBenoît Canet     if (bs->drv->bdrv_recurse_is_first_non_filter) {
3655212a5a8fSBenoît Canet         return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
3656212a5a8fSBenoît Canet     }
3657212a5a8fSBenoît Canet 
3658b5042a36SBenoît Canet     /* the driver is a block filter but don't allow to recurse -> return false
3659b5042a36SBenoît Canet      */
3660b5042a36SBenoît Canet     return false;
3661212a5a8fSBenoît Canet }
3662212a5a8fSBenoît Canet 
3663212a5a8fSBenoît Canet /* This function checks if the candidate is the first non filter bs down it's
3664212a5a8fSBenoît Canet  * bs chain. Since we don't have pointers to parents it explore all bs chains
3665212a5a8fSBenoît Canet  * from the top. Some filters can choose not to pass down the recursion.
3666212a5a8fSBenoît Canet  */
3667212a5a8fSBenoît Canet bool bdrv_is_first_non_filter(BlockDriverState *candidate)
3668212a5a8fSBenoît Canet {
36697c8eece4SKevin Wolf     BlockDriverState *bs;
367088be7b4bSKevin Wolf     BdrvNextIterator it;
3671212a5a8fSBenoît Canet 
3672212a5a8fSBenoît Canet     /* walk down the bs forest recursively */
367388be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3674212a5a8fSBenoît Canet         bool perm;
3675212a5a8fSBenoît Canet 
3676b5042a36SBenoît Canet         /* try to recurse in this top level bs */
3677e6dc8a1fSKevin Wolf         perm = bdrv_recurse_is_first_non_filter(bs, candidate);
3678212a5a8fSBenoît Canet 
3679212a5a8fSBenoît Canet         /* candidate is the first non filter */
3680212a5a8fSBenoît Canet         if (perm) {
3681212a5a8fSBenoît Canet             return true;
3682212a5a8fSBenoît Canet         }
3683212a5a8fSBenoît Canet     }
3684212a5a8fSBenoît Canet 
3685212a5a8fSBenoît Canet     return false;
3686f6186f49SBenoît Canet }
368709158f00SBenoît Canet 
3688e12f3784SWen Congyang BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
3689e12f3784SWen Congyang                                         const char *node_name, Error **errp)
369009158f00SBenoît Canet {
369109158f00SBenoît Canet     BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
36925a7e7a0bSStefan Hajnoczi     AioContext *aio_context;
36935a7e7a0bSStefan Hajnoczi 
369409158f00SBenoît Canet     if (!to_replace_bs) {
369509158f00SBenoît Canet         error_setg(errp, "Node name '%s' not found", node_name);
369609158f00SBenoît Canet         return NULL;
369709158f00SBenoît Canet     }
369809158f00SBenoît Canet 
36995a7e7a0bSStefan Hajnoczi     aio_context = bdrv_get_aio_context(to_replace_bs);
37005a7e7a0bSStefan Hajnoczi     aio_context_acquire(aio_context);
37015a7e7a0bSStefan Hajnoczi 
370209158f00SBenoît Canet     if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
37035a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
37045a7e7a0bSStefan Hajnoczi         goto out;
370509158f00SBenoît Canet     }
370609158f00SBenoît Canet 
370709158f00SBenoît Canet     /* We don't want arbitrary node of the BDS chain to be replaced only the top
370809158f00SBenoît Canet      * most non filter in order to prevent data corruption.
370909158f00SBenoît Canet      * Another benefit is that this tests exclude backing files which are
371009158f00SBenoît Canet      * blocked by the backing blockers.
371109158f00SBenoît Canet      */
3712e12f3784SWen Congyang     if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
371309158f00SBenoît Canet         error_setg(errp, "Only top most non filter can be replaced");
37145a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
37155a7e7a0bSStefan Hajnoczi         goto out;
371609158f00SBenoît Canet     }
371709158f00SBenoît Canet 
37185a7e7a0bSStefan Hajnoczi out:
37195a7e7a0bSStefan Hajnoczi     aio_context_release(aio_context);
372009158f00SBenoît Canet     return to_replace_bs;
372109158f00SBenoît Canet }
3722448ad91dSMing Lei 
372391af7014SMax Reitz static bool append_open_options(QDict *d, BlockDriverState *bs)
372491af7014SMax Reitz {
372591af7014SMax Reitz     const QDictEntry *entry;
37269e700c1aSKevin Wolf     QemuOptDesc *desc;
3727260fecf1SKevin Wolf     BdrvChild *child;
372891af7014SMax Reitz     bool found_any = false;
3729260fecf1SKevin Wolf     const char *p;
373091af7014SMax Reitz 
373191af7014SMax Reitz     for (entry = qdict_first(bs->options); entry;
373291af7014SMax Reitz          entry = qdict_next(bs->options, entry))
373391af7014SMax Reitz     {
3734260fecf1SKevin Wolf         /* Exclude options for children */
3735260fecf1SKevin Wolf         QLIST_FOREACH(child, &bs->children, next) {
3736260fecf1SKevin Wolf             if (strstart(qdict_entry_key(entry), child->name, &p)
3737260fecf1SKevin Wolf                 && (!*p || *p == '.'))
3738260fecf1SKevin Wolf             {
3739260fecf1SKevin Wolf                 break;
3740260fecf1SKevin Wolf             }
3741260fecf1SKevin Wolf         }
3742260fecf1SKevin Wolf         if (child) {
37439e700c1aSKevin Wolf             continue;
37449e700c1aSKevin Wolf         }
37459e700c1aSKevin Wolf 
37469e700c1aSKevin Wolf         /* And exclude all non-driver-specific options */
37479e700c1aSKevin Wolf         for (desc = bdrv_runtime_opts.desc; desc->name; desc++) {
37489e700c1aSKevin Wolf             if (!strcmp(qdict_entry_key(entry), desc->name)) {
37499e700c1aSKevin Wolf                 break;
37509e700c1aSKevin Wolf             }
37519e700c1aSKevin Wolf         }
37529e700c1aSKevin Wolf         if (desc->name) {
37539e700c1aSKevin Wolf             continue;
37549e700c1aSKevin Wolf         }
37559e700c1aSKevin Wolf 
375691af7014SMax Reitz         qobject_incref(qdict_entry_value(entry));
375791af7014SMax Reitz         qdict_put_obj(d, qdict_entry_key(entry), qdict_entry_value(entry));
375891af7014SMax Reitz         found_any = true;
375991af7014SMax Reitz     }
376091af7014SMax Reitz 
376191af7014SMax Reitz     return found_any;
376291af7014SMax Reitz }
376391af7014SMax Reitz 
376491af7014SMax Reitz /* Updates the following BDS fields:
376591af7014SMax Reitz  *  - exact_filename: A filename which may be used for opening a block device
376691af7014SMax Reitz  *                    which (mostly) equals the given BDS (even without any
376791af7014SMax Reitz  *                    other options; so reading and writing must return the same
376891af7014SMax Reitz  *                    results, but caching etc. may be different)
376991af7014SMax Reitz  *  - full_open_options: Options which, when given when opening a block device
377091af7014SMax Reitz  *                       (without a filename), result in a BDS (mostly)
377191af7014SMax Reitz  *                       equalling the given one
377291af7014SMax Reitz  *  - filename: If exact_filename is set, it is copied here. Otherwise,
377391af7014SMax Reitz  *              full_open_options is converted to a JSON object, prefixed with
377491af7014SMax Reitz  *              "json:" (for use through the JSON pseudo protocol) and put here.
377591af7014SMax Reitz  */
377691af7014SMax Reitz void bdrv_refresh_filename(BlockDriverState *bs)
377791af7014SMax Reitz {
377891af7014SMax Reitz     BlockDriver *drv = bs->drv;
377991af7014SMax Reitz     QDict *opts;
378091af7014SMax Reitz 
378191af7014SMax Reitz     if (!drv) {
378291af7014SMax Reitz         return;
378391af7014SMax Reitz     }
378491af7014SMax Reitz 
378591af7014SMax Reitz     /* This BDS's file name will most probably depend on its file's name, so
378691af7014SMax Reitz      * refresh that first */
378791af7014SMax Reitz     if (bs->file) {
37889a4f4c31SKevin Wolf         bdrv_refresh_filename(bs->file->bs);
378991af7014SMax Reitz     }
379091af7014SMax Reitz 
379191af7014SMax Reitz     if (drv->bdrv_refresh_filename) {
379291af7014SMax Reitz         /* Obsolete information is of no use here, so drop the old file name
379391af7014SMax Reitz          * information before refreshing it */
379491af7014SMax Reitz         bs->exact_filename[0] = '\0';
379591af7014SMax Reitz         if (bs->full_open_options) {
379691af7014SMax Reitz             QDECREF(bs->full_open_options);
379791af7014SMax Reitz             bs->full_open_options = NULL;
379891af7014SMax Reitz         }
379991af7014SMax Reitz 
38004cdd01d3SKevin Wolf         opts = qdict_new();
38014cdd01d3SKevin Wolf         append_open_options(opts, bs);
38024cdd01d3SKevin Wolf         drv->bdrv_refresh_filename(bs, opts);
38034cdd01d3SKevin Wolf         QDECREF(opts);
380491af7014SMax Reitz     } else if (bs->file) {
380591af7014SMax Reitz         /* Try to reconstruct valid information from the underlying file */
380691af7014SMax Reitz         bool has_open_options;
380791af7014SMax Reitz 
380891af7014SMax Reitz         bs->exact_filename[0] = '\0';
380991af7014SMax Reitz         if (bs->full_open_options) {
381091af7014SMax Reitz             QDECREF(bs->full_open_options);
381191af7014SMax Reitz             bs->full_open_options = NULL;
381291af7014SMax Reitz         }
381391af7014SMax Reitz 
381491af7014SMax Reitz         opts = qdict_new();
381591af7014SMax Reitz         has_open_options = append_open_options(opts, bs);
381691af7014SMax Reitz 
381791af7014SMax Reitz         /* If no specific options have been given for this BDS, the filename of
381891af7014SMax Reitz          * the underlying file should suffice for this one as well */
38199a4f4c31SKevin Wolf         if (bs->file->bs->exact_filename[0] && !has_open_options) {
38209a4f4c31SKevin Wolf             strcpy(bs->exact_filename, bs->file->bs->exact_filename);
382191af7014SMax Reitz         }
382291af7014SMax Reitz         /* Reconstructing the full options QDict is simple for most format block
382391af7014SMax Reitz          * drivers, as long as the full options are known for the underlying
382491af7014SMax Reitz          * file BDS. The full options QDict of that file BDS should somehow
382591af7014SMax Reitz          * contain a representation of the filename, therefore the following
382691af7014SMax Reitz          * suffices without querying the (exact_)filename of this BDS. */
38279a4f4c31SKevin Wolf         if (bs->file->bs->full_open_options) {
382891af7014SMax Reitz             qdict_put_obj(opts, "driver",
382991af7014SMax Reitz                           QOBJECT(qstring_from_str(drv->format_name)));
38309a4f4c31SKevin Wolf             QINCREF(bs->file->bs->full_open_options);
38319a4f4c31SKevin Wolf             qdict_put_obj(opts, "file",
38329a4f4c31SKevin Wolf                           QOBJECT(bs->file->bs->full_open_options));
383391af7014SMax Reitz 
383491af7014SMax Reitz             bs->full_open_options = opts;
383591af7014SMax Reitz         } else {
383691af7014SMax Reitz             QDECREF(opts);
383791af7014SMax Reitz         }
383891af7014SMax Reitz     } else if (!bs->full_open_options && qdict_size(bs->options)) {
383991af7014SMax Reitz         /* There is no underlying file BDS (at least referenced by BDS.file),
384091af7014SMax Reitz          * so the full options QDict should be equal to the options given
384191af7014SMax Reitz          * specifically for this block device when it was opened (plus the
384291af7014SMax Reitz          * driver specification).
384391af7014SMax Reitz          * Because those options don't change, there is no need to update
384491af7014SMax Reitz          * full_open_options when it's already set. */
384591af7014SMax Reitz 
384691af7014SMax Reitz         opts = qdict_new();
384791af7014SMax Reitz         append_open_options(opts, bs);
384891af7014SMax Reitz         qdict_put_obj(opts, "driver",
384991af7014SMax Reitz                       QOBJECT(qstring_from_str(drv->format_name)));
385091af7014SMax Reitz 
385191af7014SMax Reitz         if (bs->exact_filename[0]) {
385291af7014SMax Reitz             /* This may not work for all block protocol drivers (some may
385391af7014SMax Reitz              * require this filename to be parsed), but we have to find some
385491af7014SMax Reitz              * default solution here, so just include it. If some block driver
385591af7014SMax Reitz              * does not support pure options without any filename at all or
385691af7014SMax Reitz              * needs some special format of the options QDict, it needs to
385791af7014SMax Reitz              * implement the driver-specific bdrv_refresh_filename() function.
385891af7014SMax Reitz              */
385991af7014SMax Reitz             qdict_put_obj(opts, "filename",
386091af7014SMax Reitz                           QOBJECT(qstring_from_str(bs->exact_filename)));
386191af7014SMax Reitz         }
386291af7014SMax Reitz 
386391af7014SMax Reitz         bs->full_open_options = opts;
386491af7014SMax Reitz     }
386591af7014SMax Reitz 
386691af7014SMax Reitz     if (bs->exact_filename[0]) {
386791af7014SMax Reitz         pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
386891af7014SMax Reitz     } else if (bs->full_open_options) {
386991af7014SMax Reitz         QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
387091af7014SMax Reitz         snprintf(bs->filename, sizeof(bs->filename), "json:%s",
387191af7014SMax Reitz                  qstring_get_str(json));
387291af7014SMax Reitz         QDECREF(json);
387391af7014SMax Reitz     }
387491af7014SMax Reitz }
3875e06018adSWen Congyang 
3876e06018adSWen Congyang /*
3877e06018adSWen Congyang  * Hot add/remove a BDS's child. So the user can take a child offline when
3878e06018adSWen Congyang  * it is broken and take a new child online
3879e06018adSWen Congyang  */
3880e06018adSWen Congyang void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
3881e06018adSWen Congyang                     Error **errp)
3882e06018adSWen Congyang {
3883e06018adSWen Congyang 
3884e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
3885e06018adSWen Congyang         error_setg(errp, "The node %s does not support adding a child",
3886e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
3887e06018adSWen Congyang         return;
3888e06018adSWen Congyang     }
3889e06018adSWen Congyang 
3890e06018adSWen Congyang     if (!QLIST_EMPTY(&child_bs->parents)) {
3891e06018adSWen Congyang         error_setg(errp, "The node %s already has a parent",
3892e06018adSWen Congyang                    child_bs->node_name);
3893e06018adSWen Congyang         return;
3894e06018adSWen Congyang     }
3895e06018adSWen Congyang 
3896e06018adSWen Congyang     parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
3897e06018adSWen Congyang }
3898e06018adSWen Congyang 
3899e06018adSWen Congyang void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
3900e06018adSWen Congyang {
3901e06018adSWen Congyang     BdrvChild *tmp;
3902e06018adSWen Congyang 
3903e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
3904e06018adSWen Congyang         error_setg(errp, "The node %s does not support removing a child",
3905e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
3906e06018adSWen Congyang         return;
3907e06018adSWen Congyang     }
3908e06018adSWen Congyang 
3909e06018adSWen Congyang     QLIST_FOREACH(tmp, &parent_bs->children, next) {
3910e06018adSWen Congyang         if (tmp == child) {
3911e06018adSWen Congyang             break;
3912e06018adSWen Congyang         }
3913e06018adSWen Congyang     }
3914e06018adSWen Congyang 
3915e06018adSWen Congyang     if (!tmp) {
3916e06018adSWen Congyang         error_setg(errp, "The node %s does not have a child named %s",
3917e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs),
3918e06018adSWen Congyang                    bdrv_get_device_or_node_name(child->bs));
3919e06018adSWen Congyang         return;
3920e06018adSWen Congyang     }
3921e06018adSWen Congyang 
3922e06018adSWen Congyang     parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
3923e06018adSWen Congyang }
3924