xref: /openbmc/qemu/block.c (revision e9d6456e956898ccdd5d112d2e097e58a9d10b58)
1fc01f7e7Sbellard /*
2fc01f7e7Sbellard  * QEMU System Emulator block driver
3fc01f7e7Sbellard  *
4fc01f7e7Sbellard  * Copyright (c) 2003 Fabrice Bellard
5fc01f7e7Sbellard  *
6fc01f7e7Sbellard  * Permission is hereby granted, free of charge, to any person obtaining a copy
7fc01f7e7Sbellard  * of this software and associated documentation files (the "Software"), to deal
8fc01f7e7Sbellard  * in the Software without restriction, including without limitation the rights
9fc01f7e7Sbellard  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10fc01f7e7Sbellard  * copies of the Software, and to permit persons to whom the Software is
11fc01f7e7Sbellard  * furnished to do so, subject to the following conditions:
12fc01f7e7Sbellard  *
13fc01f7e7Sbellard  * The above copyright notice and this permission notice shall be included in
14fc01f7e7Sbellard  * all copies or substantial portions of the Software.
15fc01f7e7Sbellard  *
16fc01f7e7Sbellard  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17fc01f7e7Sbellard  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18fc01f7e7Sbellard  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19fc01f7e7Sbellard  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20fc01f7e7Sbellard  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21fc01f7e7Sbellard  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22fc01f7e7Sbellard  * THE SOFTWARE.
23fc01f7e7Sbellard  */
24d38ea87aSPeter Maydell #include "qemu/osdep.h"
256d519a5fSStefan Hajnoczi #include "trace.h"
26737e150eSPaolo Bonzini #include "block/block_int.h"
27737e150eSPaolo Bonzini #include "block/blockjob.h"
28cd7fca95SKevin Wolf #include "block/nbd.h"
29d49b6836SMarkus Armbruster #include "qemu/error-report.h"
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);
1315*e9d6456eSWen Congyang     /*
1316*e9d6456eSWen Congyang      * We do backup in 3 ways:
1317*e9d6456eSWen Congyang      * 1. drive backup
1318*e9d6456eSWen Congyang      *    The target bs is new opened, and the source is top BDS
1319*e9d6456eSWen Congyang      * 2. blockdev backup
1320*e9d6456eSWen Congyang      *    Both the source and the target are top BDSes.
1321*e9d6456eSWen Congyang      * 3. internal backup(used for block replication)
1322*e9d6456eSWen Congyang      *    Both the source and the target are backing file
1323*e9d6456eSWen Congyang      *
1324*e9d6456eSWen Congyang      * In case 1 and 2, neither the source nor the target is the backing file.
1325*e9d6456eSWen Congyang      * In case 3, we will block the top BDS, so there is only one block job
1326*e9d6456eSWen Congyang      * for the top BDS and its backing chain.
1327*e9d6456eSWen Congyang      */
1328*e9d6456eSWen Congyang     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1329*e9d6456eSWen Congyang                     bs->backing_blocker);
1330*e9d6456eSWen Congyang     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1331*e9d6456eSWen Congyang                     bs->backing_blocker);
13328d24cce1SFam Zheng out:
13333baca891SKevin Wolf     bdrv_refresh_limits(bs, NULL);
13348d24cce1SFam Zheng }
13358d24cce1SFam Zheng 
133631ca6d07SKevin Wolf /*
133731ca6d07SKevin Wolf  * Opens the backing file for a BlockDriverState if not yet open
133831ca6d07SKevin Wolf  *
1339d9b7b057SKevin Wolf  * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
1340d9b7b057SKevin Wolf  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
1341d9b7b057SKevin Wolf  * itself, all options starting with "${bdref_key}." are considered part of the
1342d9b7b057SKevin Wolf  * BlockdevRef.
1343d9b7b057SKevin Wolf  *
1344d9b7b057SKevin Wolf  * TODO Can this be unified with bdrv_open_image()?
134531ca6d07SKevin Wolf  */
1346d9b7b057SKevin Wolf int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
1347d9b7b057SKevin Wolf                            const char *bdref_key, Error **errp)
13489156df12SPaolo Bonzini {
13491ba4b6a5SBenoît Canet     char *backing_filename = g_malloc0(PATH_MAX);
1350d9b7b057SKevin Wolf     char *bdref_key_dot;
1351d9b7b057SKevin Wolf     const char *reference = NULL;
1352317fc44eSKevin Wolf     int ret = 0;
13538d24cce1SFam Zheng     BlockDriverState *backing_hd;
1354d9b7b057SKevin Wolf     QDict *options;
1355d9b7b057SKevin Wolf     QDict *tmp_parent_options = NULL;
135634b5d2c6SMax Reitz     Error *local_err = NULL;
13579156df12SPaolo Bonzini 
1358760e0063SKevin Wolf     if (bs->backing != NULL) {
13591ba4b6a5SBenoît Canet         goto free_exit;
13609156df12SPaolo Bonzini     }
13619156df12SPaolo Bonzini 
136231ca6d07SKevin Wolf     /* NULL means an empty set of options */
1363d9b7b057SKevin Wolf     if (parent_options == NULL) {
1364d9b7b057SKevin Wolf         tmp_parent_options = qdict_new();
1365d9b7b057SKevin Wolf         parent_options = tmp_parent_options;
136631ca6d07SKevin Wolf     }
136731ca6d07SKevin Wolf 
13689156df12SPaolo Bonzini     bs->open_flags &= ~BDRV_O_NO_BACKING;
1369d9b7b057SKevin Wolf 
1370d9b7b057SKevin Wolf     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
1371d9b7b057SKevin Wolf     qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
1372d9b7b057SKevin Wolf     g_free(bdref_key_dot);
1373d9b7b057SKevin Wolf 
1374d9b7b057SKevin Wolf     reference = qdict_get_try_str(parent_options, bdref_key);
1375d9b7b057SKevin Wolf     if (reference || qdict_haskey(options, "file.filename")) {
13761cb6f506SKevin Wolf         backing_filename[0] = '\0';
13771cb6f506SKevin Wolf     } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
137831ca6d07SKevin Wolf         QDECREF(options);
13791ba4b6a5SBenoît Canet         goto free_exit;
1380dbecebddSFam Zheng     } else {
13819f07429eSMax Reitz         bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX,
13829f07429eSMax Reitz                                        &local_err);
13839f07429eSMax Reitz         if (local_err) {
13849f07429eSMax Reitz             ret = -EINVAL;
13859f07429eSMax Reitz             error_propagate(errp, local_err);
13869f07429eSMax Reitz             QDECREF(options);
13879f07429eSMax Reitz             goto free_exit;
13889f07429eSMax Reitz         }
13899156df12SPaolo Bonzini     }
13909156df12SPaolo Bonzini 
13918ee79e70SKevin Wolf     if (!bs->drv || !bs->drv->supports_backing) {
13928ee79e70SKevin Wolf         ret = -EINVAL;
13938ee79e70SKevin Wolf         error_setg(errp, "Driver doesn't support backing files");
13948ee79e70SKevin Wolf         QDECREF(options);
13958ee79e70SKevin Wolf         goto free_exit;
13968ee79e70SKevin Wolf     }
13978ee79e70SKevin Wolf 
1398c5f6e493SKevin Wolf     if (bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
1399c5f6e493SKevin Wolf         qdict_put(options, "driver", qstring_from_str(bs->backing_format));
14009156df12SPaolo Bonzini     }
14019156df12SPaolo Bonzini 
14025b363937SMax Reitz     backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL,
1403d9b7b057SKevin Wolf                                    reference, options, 0, bs, &child_backing,
1404e43bfd9cSMarkus Armbruster                                    errp);
14055b363937SMax Reitz     if (!backing_hd) {
14069156df12SPaolo Bonzini         bs->open_flags |= BDRV_O_NO_BACKING;
1407e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not open backing file: ");
14085b363937SMax Reitz         ret = -EINVAL;
14091ba4b6a5SBenoît Canet         goto free_exit;
14109156df12SPaolo Bonzini     }
1411df581792SKevin Wolf 
14125db15a57SKevin Wolf     /* Hook up the backing file link; drop our reference, bs owns the
14135db15a57SKevin Wolf      * backing_hd reference now */
14148d24cce1SFam Zheng     bdrv_set_backing_hd(bs, backing_hd);
14155db15a57SKevin Wolf     bdrv_unref(backing_hd);
1416d80ac658SPeter Feiner 
1417d9b7b057SKevin Wolf     qdict_del(parent_options, bdref_key);
1418d9b7b057SKevin Wolf 
14191ba4b6a5SBenoît Canet free_exit:
14201ba4b6a5SBenoît Canet     g_free(backing_filename);
1421d9b7b057SKevin Wolf     QDECREF(tmp_parent_options);
14221ba4b6a5SBenoît Canet     return ret;
14239156df12SPaolo Bonzini }
14249156df12SPaolo Bonzini 
1425b6ce07aaSKevin Wolf /*
1426da557aacSMax Reitz  * Opens a disk image whose options are given as BlockdevRef in another block
1427da557aacSMax Reitz  * device's options.
1428da557aacSMax Reitz  *
1429da557aacSMax Reitz  * If allow_none is true, no image will be opened if filename is false and no
1430b4b059f6SKevin Wolf  * BlockdevRef is given. NULL will be returned, but errp remains unset.
1431da557aacSMax Reitz  *
1432da557aacSMax Reitz  * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
1433da557aacSMax Reitz  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
1434da557aacSMax Reitz  * itself, all options starting with "${bdref_key}." are considered part of the
1435da557aacSMax Reitz  * BlockdevRef.
1436da557aacSMax Reitz  *
1437da557aacSMax Reitz  * The BlockdevRef will be removed from the options QDict.
1438da557aacSMax Reitz  */
1439b4b059f6SKevin Wolf BdrvChild *bdrv_open_child(const char *filename,
1440f3930ed0SKevin Wolf                            QDict *options, const char *bdref_key,
1441b4b059f6SKevin Wolf                            BlockDriverState* parent,
1442b4b059f6SKevin Wolf                            const BdrvChildRole *child_role,
1443f7d9fd8cSMax Reitz                            bool allow_none, Error **errp)
1444da557aacSMax Reitz {
1445b4b059f6SKevin Wolf     BdrvChild *c = NULL;
1446b4b059f6SKevin Wolf     BlockDriverState *bs;
1447da557aacSMax Reitz     QDict *image_options;
1448da557aacSMax Reitz     char *bdref_key_dot;
1449da557aacSMax Reitz     const char *reference;
1450da557aacSMax Reitz 
1451df581792SKevin Wolf     assert(child_role != NULL);
1452f67503e5SMax Reitz 
1453da557aacSMax Reitz     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
1454da557aacSMax Reitz     qdict_extract_subqdict(options, &image_options, bdref_key_dot);
1455da557aacSMax Reitz     g_free(bdref_key_dot);
1456da557aacSMax Reitz 
1457da557aacSMax Reitz     reference = qdict_get_try_str(options, bdref_key);
1458da557aacSMax Reitz     if (!filename && !reference && !qdict_size(image_options)) {
1459b4b059f6SKevin Wolf         if (!allow_none) {
1460da557aacSMax Reitz             error_setg(errp, "A block device must be specified for \"%s\"",
1461da557aacSMax Reitz                        bdref_key);
1462da557aacSMax Reitz         }
1463b20e61e0SMarkus Armbruster         QDECREF(image_options);
1464da557aacSMax Reitz         goto done;
1465da557aacSMax Reitz     }
1466da557aacSMax Reitz 
14675b363937SMax Reitz     bs = bdrv_open_inherit(filename, reference, image_options, 0,
1468ce343771SMax Reitz                            parent, child_role, errp);
14695b363937SMax Reitz     if (!bs) {
1470df581792SKevin Wolf         goto done;
1471df581792SKevin Wolf     }
1472df581792SKevin Wolf 
1473260fecf1SKevin Wolf     c = bdrv_attach_child(parent, bs, bdref_key, child_role);
1474da557aacSMax Reitz 
1475da557aacSMax Reitz done:
1476da557aacSMax Reitz     qdict_del(options, bdref_key);
1477b4b059f6SKevin Wolf     return c;
1478b4b059f6SKevin Wolf }
1479b4b059f6SKevin Wolf 
148066836189SMax Reitz static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
148166836189SMax Reitz                                                    int flags,
148266836189SMax Reitz                                                    QDict *snapshot_options,
148366836189SMax Reitz                                                    Error **errp)
1484b998875dSKevin Wolf {
1485b998875dSKevin Wolf     /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
14861ba4b6a5SBenoît Canet     char *tmp_filename = g_malloc0(PATH_MAX + 1);
1487b998875dSKevin Wolf     int64_t total_size;
148883d0521aSChunyan Liu     QemuOpts *opts = NULL;
1489b998875dSKevin Wolf     BlockDriverState *bs_snapshot;
1490b998875dSKevin Wolf     int ret;
1491b998875dSKevin Wolf 
1492b998875dSKevin Wolf     /* if snapshot, we create a temporary backing file and open it
1493b998875dSKevin Wolf        instead of opening 'filename' directly */
1494b998875dSKevin Wolf 
1495b998875dSKevin Wolf     /* Get the required size from the image */
1496f187743aSKevin Wolf     total_size = bdrv_getlength(bs);
1497f187743aSKevin Wolf     if (total_size < 0) {
1498f187743aSKevin Wolf         error_setg_errno(errp, -total_size, "Could not get image size");
14991ba4b6a5SBenoît Canet         goto out;
1500f187743aSKevin Wolf     }
1501b998875dSKevin Wolf 
1502b998875dSKevin Wolf     /* Create the temporary image */
15031ba4b6a5SBenoît Canet     ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
1504b998875dSKevin Wolf     if (ret < 0) {
1505b998875dSKevin Wolf         error_setg_errno(errp, -ret, "Could not get temporary filename");
15061ba4b6a5SBenoît Canet         goto out;
1507b998875dSKevin Wolf     }
1508b998875dSKevin Wolf 
1509ef810437SMax Reitz     opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
1510c282e1fdSChunyan Liu                             &error_abort);
151139101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
1512e43bfd9cSMarkus Armbruster     ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
151383d0521aSChunyan Liu     qemu_opts_del(opts);
1514b998875dSKevin Wolf     if (ret < 0) {
1515e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not create temporary overlay '%s': ",
1516e43bfd9cSMarkus Armbruster                       tmp_filename);
15171ba4b6a5SBenoît Canet         goto out;
1518b998875dSKevin Wolf     }
1519b998875dSKevin Wolf 
152073176beeSKevin Wolf     /* Prepare options QDict for the temporary file */
1521b998875dSKevin Wolf     qdict_put(snapshot_options, "file.driver",
1522b998875dSKevin Wolf               qstring_from_str("file"));
1523b998875dSKevin Wolf     qdict_put(snapshot_options, "file.filename",
1524b998875dSKevin Wolf               qstring_from_str(tmp_filename));
1525e6641719SMax Reitz     qdict_put(snapshot_options, "driver",
1526e6641719SMax Reitz               qstring_from_str("qcow2"));
1527b998875dSKevin Wolf 
15285b363937SMax Reitz     bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
152973176beeSKevin Wolf     snapshot_options = NULL;
15305b363937SMax Reitz     if (!bs_snapshot) {
15315b363937SMax Reitz         ret = -EINVAL;
15321ba4b6a5SBenoît Canet         goto out;
1533b998875dSKevin Wolf     }
1534b998875dSKevin Wolf 
153566836189SMax Reitz     /* bdrv_append() consumes a strong reference to bs_snapshot (i.e. it will
153666836189SMax Reitz      * call bdrv_unref() on it), so in order to be able to return one, we have
153766836189SMax Reitz      * to increase bs_snapshot's refcount here */
153866836189SMax Reitz     bdrv_ref(bs_snapshot);
1539b998875dSKevin Wolf     bdrv_append(bs_snapshot, bs);
15401ba4b6a5SBenoît Canet 
154166836189SMax Reitz     g_free(tmp_filename);
154266836189SMax Reitz     return bs_snapshot;
154366836189SMax Reitz 
15441ba4b6a5SBenoît Canet out:
154573176beeSKevin Wolf     QDECREF(snapshot_options);
15461ba4b6a5SBenoît Canet     g_free(tmp_filename);
154766836189SMax Reitz     return NULL;
1548b998875dSKevin Wolf }
1549b998875dSKevin Wolf 
1550da557aacSMax Reitz /*
1551b6ce07aaSKevin Wolf  * Opens a disk image (raw, qcow2, vmdk, ...)
1552de9c0cecSKevin Wolf  *
1553de9c0cecSKevin Wolf  * options is a QDict of options to pass to the block drivers, or NULL for an
1554de9c0cecSKevin Wolf  * empty set of options. The reference to the QDict belongs to the block layer
1555de9c0cecSKevin Wolf  * after the call (even on failure), so if the caller intends to reuse the
1556de9c0cecSKevin Wolf  * dictionary, it needs to use QINCREF() before calling bdrv_open.
1557f67503e5SMax Reitz  *
1558f67503e5SMax Reitz  * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
1559f67503e5SMax Reitz  * If it is not NULL, the referenced BDS will be reused.
1560ddf5636dSMax Reitz  *
1561ddf5636dSMax Reitz  * The reference parameter may be used to specify an existing block device which
1562ddf5636dSMax Reitz  * should be opened. If specified, neither options nor a filename may be given,
1563ddf5636dSMax Reitz  * nor can an existing BDS be reused (that is, *pbs has to be NULL).
1564b6ce07aaSKevin Wolf  */
15655b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
15665b363937SMax Reitz                                            const char *reference,
15675b363937SMax Reitz                                            QDict *options, int flags,
1568f3930ed0SKevin Wolf                                            BlockDriverState *parent,
15695b363937SMax Reitz                                            const BdrvChildRole *child_role,
15705b363937SMax Reitz                                            Error **errp)
1571ea2384d3Sbellard {
1572b6ce07aaSKevin Wolf     int ret;
15739a4f4c31SKevin Wolf     BdrvChild *file = NULL;
15749a4f4c31SKevin Wolf     BlockDriverState *bs;
1575ce343771SMax Reitz     BlockDriver *drv = NULL;
157674fe54f2SKevin Wolf     const char *drvname;
15773e8c2e57SAlberto Garcia     const char *backing;
157834b5d2c6SMax Reitz     Error *local_err = NULL;
157973176beeSKevin Wolf     QDict *snapshot_options = NULL;
1580b1e6fc08SKevin Wolf     int snapshot_flags = 0;
158133e3963eSbellard 
1582f3930ed0SKevin Wolf     assert(!child_role || !flags);
1583f3930ed0SKevin Wolf     assert(!child_role == !parent);
1584f67503e5SMax Reitz 
1585ddf5636dSMax Reitz     if (reference) {
1586ddf5636dSMax Reitz         bool options_non_empty = options ? qdict_size(options) : false;
1587ddf5636dSMax Reitz         QDECREF(options);
1588ddf5636dSMax Reitz 
1589ddf5636dSMax Reitz         if (filename || options_non_empty) {
1590ddf5636dSMax Reitz             error_setg(errp, "Cannot reference an existing block device with "
1591ddf5636dSMax Reitz                        "additional options or a new filename");
15925b363937SMax Reitz             return NULL;
1593ddf5636dSMax Reitz         }
1594ddf5636dSMax Reitz 
1595ddf5636dSMax Reitz         bs = bdrv_lookup_bs(reference, reference, errp);
1596ddf5636dSMax Reitz         if (!bs) {
15975b363937SMax Reitz             return NULL;
1598ddf5636dSMax Reitz         }
159976b22320SKevin Wolf 
1600ddf5636dSMax Reitz         bdrv_ref(bs);
16015b363937SMax Reitz         return bs;
1602ddf5636dSMax Reitz     }
1603ddf5636dSMax Reitz 
1604e4e9986bSMarkus Armbruster     bs = bdrv_new();
1605f67503e5SMax Reitz 
1606de9c0cecSKevin Wolf     /* NULL means an empty set of options */
1607de9c0cecSKevin Wolf     if (options == NULL) {
1608de9c0cecSKevin Wolf         options = qdict_new();
1609de9c0cecSKevin Wolf     }
1610de9c0cecSKevin Wolf 
1611145f598eSKevin Wolf     /* json: syntax counts as explicit options, as if in the QDict */
1612de3b53f0SKevin Wolf     parse_json_protocol(options, &filename, &local_err);
1613de3b53f0SKevin Wolf     if (local_err) {
1614de3b53f0SKevin Wolf         goto fail;
1615de3b53f0SKevin Wolf     }
1616de3b53f0SKevin Wolf 
1617145f598eSKevin Wolf     bs->explicit_options = qdict_clone_shallow(options);
1618145f598eSKevin Wolf 
1619f3930ed0SKevin Wolf     if (child_role) {
1620bddcec37SKevin Wolf         bs->inherits_from = parent;
16218e2160e2SKevin Wolf         child_role->inherit_options(&flags, options,
16228e2160e2SKevin Wolf                                     parent->open_flags, parent->options);
1623f3930ed0SKevin Wolf     }
1624f3930ed0SKevin Wolf 
1625de3b53f0SKevin Wolf     ret = bdrv_fill_options(&options, filename, &flags, &local_err);
1626462f5bcfSKevin Wolf     if (local_err) {
1627462f5bcfSKevin Wolf         goto fail;
1628462f5bcfSKevin Wolf     }
1629462f5bcfSKevin Wolf 
163062392ebbSKevin Wolf     bs->open_flags = flags;
163162392ebbSKevin Wolf     bs->options = options;
163262392ebbSKevin Wolf     options = qdict_clone_shallow(options);
163362392ebbSKevin Wolf 
163476c591b0SKevin Wolf     /* Find the right image format driver */
163576c591b0SKevin Wolf     drvname = qdict_get_try_str(options, "driver");
163676c591b0SKevin Wolf     if (drvname) {
163776c591b0SKevin Wolf         drv = bdrv_find_format(drvname);
163876c591b0SKevin Wolf         if (!drv) {
163976c591b0SKevin Wolf             error_setg(errp, "Unknown driver: '%s'", drvname);
164076c591b0SKevin Wolf             goto fail;
164176c591b0SKevin Wolf         }
164276c591b0SKevin Wolf     }
164376c591b0SKevin Wolf 
164476c591b0SKevin Wolf     assert(drvname || !(flags & BDRV_O_PROTOCOL));
164576c591b0SKevin Wolf 
16463e8c2e57SAlberto Garcia     backing = qdict_get_try_str(options, "backing");
16473e8c2e57SAlberto Garcia     if (backing && *backing == '\0') {
16483e8c2e57SAlberto Garcia         flags |= BDRV_O_NO_BACKING;
16493e8c2e57SAlberto Garcia         qdict_del(options, "backing");
16503e8c2e57SAlberto Garcia     }
16513e8c2e57SAlberto Garcia 
1652f500a6d3SKevin Wolf     /* Open image file without format layer */
1653f4788adcSKevin Wolf     if ((flags & BDRV_O_PROTOCOL) == 0) {
1654be028adcSJeff Cody         if (flags & BDRV_O_RDWR) {
1655be028adcSJeff Cody             flags |= BDRV_O_ALLOW_RDWR;
1656be028adcSJeff Cody         }
1657b1e6fc08SKevin Wolf         if (flags & BDRV_O_SNAPSHOT) {
165873176beeSKevin Wolf             snapshot_options = qdict_new();
165973176beeSKevin Wolf             bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
166073176beeSKevin Wolf                                        flags, options);
16618e2160e2SKevin Wolf             bdrv_backing_options(&flags, options, flags, options);
1662b1e6fc08SKevin Wolf         }
1663be028adcSJeff Cody 
1664f3930ed0SKevin Wolf         bs->open_flags = flags;
16651fdd6933SKevin Wolf 
16669a4f4c31SKevin Wolf         file = bdrv_open_child(filename, options, "file", bs,
16671fdd6933SKevin Wolf                                &child_file, true, &local_err);
16681fdd6933SKevin Wolf         if (local_err) {
16698bfea15dSKevin Wolf             goto fail;
1670f500a6d3SKevin Wolf         }
1671f4788adcSKevin Wolf     }
1672f500a6d3SKevin Wolf 
167376c591b0SKevin Wolf     /* Image format probing */
167438f3ef57SKevin Wolf     bs->probed = !drv;
167576c591b0SKevin Wolf     if (!drv && file) {
1676cf2ab8fcSKevin Wolf         ret = find_image_format(file, filename, &drv, &local_err);
167717b005f1SKevin Wolf         if (ret < 0) {
167817b005f1SKevin Wolf             goto fail;
167917b005f1SKevin Wolf         }
168062392ebbSKevin Wolf         /*
168162392ebbSKevin Wolf          * This option update would logically belong in bdrv_fill_options(),
168262392ebbSKevin Wolf          * but we first need to open bs->file for the probing to work, while
168362392ebbSKevin Wolf          * opening bs->file already requires the (mostly) final set of options
168462392ebbSKevin Wolf          * so that cache mode etc. can be inherited.
168562392ebbSKevin Wolf          *
168662392ebbSKevin Wolf          * Adding the driver later is somewhat ugly, but it's not an option
168762392ebbSKevin Wolf          * that would ever be inherited, so it's correct. We just need to make
168862392ebbSKevin Wolf          * sure to update both bs->options (which has the full effective
168962392ebbSKevin Wolf          * options for bs) and options (which has file.* already removed).
169062392ebbSKevin Wolf          */
169162392ebbSKevin Wolf         qdict_put(bs->options, "driver", qstring_from_str(drv->format_name));
169262392ebbSKevin Wolf         qdict_put(options, "driver", qstring_from_str(drv->format_name));
169376c591b0SKevin Wolf     } else if (!drv) {
16942a05cbe4SMax Reitz         error_setg(errp, "Must specify either driver or file");
16958bfea15dSKevin Wolf         goto fail;
16962a05cbe4SMax Reitz     }
1697f500a6d3SKevin Wolf 
169853a29513SMax Reitz     /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
169953a29513SMax Reitz     assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
170053a29513SMax Reitz     /* file must be NULL if a protocol BDS is about to be created
170153a29513SMax Reitz      * (the inverse results in an error message from bdrv_open_common()) */
170253a29513SMax Reitz     assert(!(flags & BDRV_O_PROTOCOL) || !file);
170353a29513SMax Reitz 
1704b6ce07aaSKevin Wolf     /* Open the image */
170582dc8b41SKevin Wolf     ret = bdrv_open_common(bs, file, options, &local_err);
1706b6ce07aaSKevin Wolf     if (ret < 0) {
17078bfea15dSKevin Wolf         goto fail;
17086987307cSChristoph Hellwig     }
17096987307cSChristoph Hellwig 
17102a05cbe4SMax Reitz     if (file && (bs->file != file)) {
17119a4f4c31SKevin Wolf         bdrv_unref_child(bs, file);
1712f500a6d3SKevin Wolf         file = NULL;
1713f500a6d3SKevin Wolf     }
1714f500a6d3SKevin Wolf 
1715b6ce07aaSKevin Wolf     /* If there is a backing file, use it */
17169156df12SPaolo Bonzini     if ((flags & BDRV_O_NO_BACKING) == 0) {
1717d9b7b057SKevin Wolf         ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
1718b6ce07aaSKevin Wolf         if (ret < 0) {
1719b6ad491aSKevin Wolf             goto close_and_fail;
1720b6ce07aaSKevin Wolf         }
1721b6ce07aaSKevin Wolf     }
1722b6ce07aaSKevin Wolf 
172391af7014SMax Reitz     bdrv_refresh_filename(bs);
172491af7014SMax Reitz 
1725b6ad491aSKevin Wolf     /* Check if any unknown options were used */
17265acd9d81SMax Reitz     if (options && (qdict_size(options) != 0)) {
1727b6ad491aSKevin Wolf         const QDictEntry *entry = qdict_first(options);
17285acd9d81SMax Reitz         if (flags & BDRV_O_PROTOCOL) {
17295acd9d81SMax Reitz             error_setg(errp, "Block protocol '%s' doesn't support the option "
17305acd9d81SMax Reitz                        "'%s'", drv->format_name, entry->key);
17315acd9d81SMax Reitz         } else {
1732d0e46a55SMax Reitz             error_setg(errp,
1733d0e46a55SMax Reitz                        "Block format '%s' does not support the option '%s'",
1734d0e46a55SMax Reitz                        drv->format_name, entry->key);
17355acd9d81SMax Reitz         }
1736b6ad491aSKevin Wolf 
1737b6ad491aSKevin Wolf         goto close_and_fail;
1738b6ad491aSKevin Wolf     }
1739b6ad491aSKevin Wolf 
1740b6ce07aaSKevin Wolf     if (!bdrv_key_required(bs)) {
17415c8cab48SKevin Wolf         bdrv_parent_cb_change_media(bs, true);
1742c3adb58fSMarkus Armbruster     } else if (!runstate_check(RUN_STATE_PRELAUNCH)
1743c3adb58fSMarkus Armbruster                && !runstate_check(RUN_STATE_INMIGRATE)
1744c3adb58fSMarkus Armbruster                && !runstate_check(RUN_STATE_PAUSED)) { /* HACK */
1745c3adb58fSMarkus Armbruster         error_setg(errp,
1746c3adb58fSMarkus Armbruster                    "Guest must be stopped for opening of encrypted image");
1747c3adb58fSMarkus Armbruster         goto close_and_fail;
1748b6ce07aaSKevin Wolf     }
1749b6ce07aaSKevin Wolf 
1750c3adb58fSMarkus Armbruster     QDECREF(options);
1751dd62f1caSKevin Wolf 
1752dd62f1caSKevin Wolf     /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
1753dd62f1caSKevin Wolf      * temporary snapshot afterwards. */
1754dd62f1caSKevin Wolf     if (snapshot_flags) {
175566836189SMax Reitz         BlockDriverState *snapshot_bs;
175666836189SMax Reitz         snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
175766836189SMax Reitz                                                 snapshot_options, &local_err);
175873176beeSKevin Wolf         snapshot_options = NULL;
1759dd62f1caSKevin Wolf         if (local_err) {
1760dd62f1caSKevin Wolf             goto close_and_fail;
1761dd62f1caSKevin Wolf         }
176266836189SMax Reitz         /* We are not going to return bs but the overlay on top of it
176366836189SMax Reitz          * (snapshot_bs); thus, we have to drop the strong reference to bs
17645b363937SMax Reitz          * (which we obtained by calling bdrv_new()). bs will not be deleted,
17655b363937SMax Reitz          * though, because the overlay still has a reference to it. */
176666836189SMax Reitz         bdrv_unref(bs);
176766836189SMax Reitz         bs = snapshot_bs;
176866836189SMax Reitz     }
176966836189SMax Reitz 
17705b363937SMax Reitz     return bs;
1771b6ce07aaSKevin Wolf 
17728bfea15dSKevin Wolf fail:
1773f500a6d3SKevin Wolf     if (file != NULL) {
17749a4f4c31SKevin Wolf         bdrv_unref_child(bs, file);
1775f500a6d3SKevin Wolf     }
177673176beeSKevin Wolf     QDECREF(snapshot_options);
1777145f598eSKevin Wolf     QDECREF(bs->explicit_options);
1778de9c0cecSKevin Wolf     QDECREF(bs->options);
1779b6ad491aSKevin Wolf     QDECREF(options);
1780de9c0cecSKevin Wolf     bs->options = NULL;
1781f67503e5SMax Reitz     bdrv_unref(bs);
178234b5d2c6SMax Reitz     error_propagate(errp, local_err);
17835b363937SMax Reitz     return NULL;
1784de9c0cecSKevin Wolf 
1785b6ad491aSKevin Wolf close_and_fail:
1786f67503e5SMax Reitz     bdrv_unref(bs);
178773176beeSKevin Wolf     QDECREF(snapshot_options);
1788b6ad491aSKevin Wolf     QDECREF(options);
178934b5d2c6SMax Reitz     error_propagate(errp, local_err);
17905b363937SMax Reitz     return NULL;
1791b6ce07aaSKevin Wolf }
1792b6ce07aaSKevin Wolf 
17935b363937SMax Reitz BlockDriverState *bdrv_open(const char *filename, const char *reference,
17945b363937SMax Reitz                             QDict *options, int flags, Error **errp)
1795f3930ed0SKevin Wolf {
17965b363937SMax Reitz     return bdrv_open_inherit(filename, reference, options, flags, NULL,
1797ce343771SMax Reitz                              NULL, errp);
1798f3930ed0SKevin Wolf }
1799f3930ed0SKevin Wolf 
1800e971aa12SJeff Cody typedef struct BlockReopenQueueEntry {
1801e971aa12SJeff Cody      bool prepared;
1802e971aa12SJeff Cody      BDRVReopenState state;
1803e971aa12SJeff Cody      QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1804e971aa12SJeff Cody } BlockReopenQueueEntry;
1805e971aa12SJeff Cody 
1806e971aa12SJeff Cody /*
1807e971aa12SJeff Cody  * Adds a BlockDriverState to a simple queue for an atomic, transactional
1808e971aa12SJeff Cody  * reopen of multiple devices.
1809e971aa12SJeff Cody  *
1810e971aa12SJeff Cody  * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
1811e971aa12SJeff Cody  * already performed, or alternatively may be NULL a new BlockReopenQueue will
1812e971aa12SJeff Cody  * be created and initialized. This newly created BlockReopenQueue should be
1813e971aa12SJeff Cody  * passed back in for subsequent calls that are intended to be of the same
1814e971aa12SJeff Cody  * atomic 'set'.
1815e971aa12SJeff Cody  *
1816e971aa12SJeff Cody  * bs is the BlockDriverState to add to the reopen queue.
1817e971aa12SJeff Cody  *
18184d2cb092SKevin Wolf  * options contains the changed options for the associated bs
18194d2cb092SKevin Wolf  * (the BlockReopenQueue takes ownership)
18204d2cb092SKevin Wolf  *
1821e971aa12SJeff Cody  * flags contains the open flags for the associated bs
1822e971aa12SJeff Cody  *
1823e971aa12SJeff Cody  * returns a pointer to bs_queue, which is either the newly allocated
1824e971aa12SJeff Cody  * bs_queue, or the existing bs_queue being used.
1825e971aa12SJeff Cody  *
1826e971aa12SJeff Cody  */
182728518102SKevin Wolf static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
18284d2cb092SKevin Wolf                                                  BlockDriverState *bs,
182928518102SKevin Wolf                                                  QDict *options,
183028518102SKevin Wolf                                                  int flags,
183128518102SKevin Wolf                                                  const BdrvChildRole *role,
183228518102SKevin Wolf                                                  QDict *parent_options,
183328518102SKevin Wolf                                                  int parent_flags)
1834e971aa12SJeff Cody {
1835e971aa12SJeff Cody     assert(bs != NULL);
1836e971aa12SJeff Cody 
1837e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry;
183867251a31SKevin Wolf     BdrvChild *child;
1839145f598eSKevin Wolf     QDict *old_options, *explicit_options;
184067251a31SKevin Wolf 
1841e971aa12SJeff Cody     if (bs_queue == NULL) {
1842e971aa12SJeff Cody         bs_queue = g_new0(BlockReopenQueue, 1);
1843e971aa12SJeff Cody         QSIMPLEQ_INIT(bs_queue);
1844e971aa12SJeff Cody     }
1845e971aa12SJeff Cody 
18464d2cb092SKevin Wolf     if (!options) {
18474d2cb092SKevin Wolf         options = qdict_new();
18484d2cb092SKevin Wolf     }
18494d2cb092SKevin Wolf 
185028518102SKevin Wolf     /*
185128518102SKevin Wolf      * Precedence of options:
185228518102SKevin Wolf      * 1. Explicitly passed in options (highest)
185391a097e7SKevin Wolf      * 2. Set in flags (only for top level)
1854145f598eSKevin Wolf      * 3. Retained from explicitly set options of bs
18558e2160e2SKevin Wolf      * 4. Inherited from parent node
185628518102SKevin Wolf      * 5. Retained from effective options of bs
185728518102SKevin Wolf      */
185828518102SKevin Wolf 
185991a097e7SKevin Wolf     if (!parent_options) {
186091a097e7SKevin Wolf         /*
186191a097e7SKevin Wolf          * Any setting represented by flags is always updated. If the
186291a097e7SKevin Wolf          * corresponding QDict option is set, it takes precedence. Otherwise
186391a097e7SKevin Wolf          * the flag is translated into a QDict option. The old setting of bs is
186491a097e7SKevin Wolf          * not considered.
186591a097e7SKevin Wolf          */
186691a097e7SKevin Wolf         update_options_from_flags(options, flags);
186791a097e7SKevin Wolf     }
186891a097e7SKevin Wolf 
1869145f598eSKevin Wolf     /* Old explicitly set values (don't overwrite by inherited value) */
1870145f598eSKevin Wolf     old_options = qdict_clone_shallow(bs->explicit_options);
1871145f598eSKevin Wolf     bdrv_join_options(bs, options, old_options);
1872145f598eSKevin Wolf     QDECREF(old_options);
1873145f598eSKevin Wolf 
1874145f598eSKevin Wolf     explicit_options = qdict_clone_shallow(options);
1875145f598eSKevin Wolf 
187628518102SKevin Wolf     /* Inherit from parent node */
187728518102SKevin Wolf     if (parent_options) {
187828518102SKevin Wolf         assert(!flags);
18798e2160e2SKevin Wolf         role->inherit_options(&flags, options, parent_flags, parent_options);
188028518102SKevin Wolf     }
188128518102SKevin Wolf 
188228518102SKevin Wolf     /* Old values are used for options that aren't set yet */
18834d2cb092SKevin Wolf     old_options = qdict_clone_shallow(bs->options);
1884cddff5baSKevin Wolf     bdrv_join_options(bs, options, old_options);
18854d2cb092SKevin Wolf     QDECREF(old_options);
18864d2cb092SKevin Wolf 
1887f1f25a2eSKevin Wolf     /* bdrv_open() masks this flag out */
1888f1f25a2eSKevin Wolf     flags &= ~BDRV_O_PROTOCOL;
1889f1f25a2eSKevin Wolf 
189067251a31SKevin Wolf     QLIST_FOREACH(child, &bs->children, next) {
18914c9dfe5dSKevin Wolf         QDict *new_child_options;
18924c9dfe5dSKevin Wolf         char *child_key_dot;
189367251a31SKevin Wolf 
18944c9dfe5dSKevin Wolf         /* reopen can only change the options of block devices that were
18954c9dfe5dSKevin Wolf          * implicitly created and inherited options. For other (referenced)
18964c9dfe5dSKevin Wolf          * block devices, a syntax like "backing.foo" results in an error. */
189767251a31SKevin Wolf         if (child->bs->inherits_from != bs) {
189867251a31SKevin Wolf             continue;
189967251a31SKevin Wolf         }
190067251a31SKevin Wolf 
19014c9dfe5dSKevin Wolf         child_key_dot = g_strdup_printf("%s.", child->name);
19024c9dfe5dSKevin Wolf         qdict_extract_subqdict(options, &new_child_options, child_key_dot);
19034c9dfe5dSKevin Wolf         g_free(child_key_dot);
19044c9dfe5dSKevin Wolf 
190528518102SKevin Wolf         bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0,
190628518102SKevin Wolf                                 child->role, options, flags);
1907e971aa12SJeff Cody     }
1908e971aa12SJeff Cody 
1909e971aa12SJeff Cody     bs_entry = g_new0(BlockReopenQueueEntry, 1);
1910e971aa12SJeff Cody     QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
1911e971aa12SJeff Cody 
1912e971aa12SJeff Cody     bs_entry->state.bs = bs;
19134d2cb092SKevin Wolf     bs_entry->state.options = options;
1914145f598eSKevin Wolf     bs_entry->state.explicit_options = explicit_options;
1915e971aa12SJeff Cody     bs_entry->state.flags = flags;
1916e971aa12SJeff Cody 
1917e971aa12SJeff Cody     return bs_queue;
1918e971aa12SJeff Cody }
1919e971aa12SJeff Cody 
192028518102SKevin Wolf BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
192128518102SKevin Wolf                                     BlockDriverState *bs,
192228518102SKevin Wolf                                     QDict *options, int flags)
192328518102SKevin Wolf {
192428518102SKevin Wolf     return bdrv_reopen_queue_child(bs_queue, bs, options, flags,
192528518102SKevin Wolf                                    NULL, NULL, 0);
192628518102SKevin Wolf }
192728518102SKevin Wolf 
1928e971aa12SJeff Cody /*
1929e971aa12SJeff Cody  * Reopen multiple BlockDriverStates atomically & transactionally.
1930e971aa12SJeff Cody  *
1931e971aa12SJeff Cody  * The queue passed in (bs_queue) must have been built up previous
1932e971aa12SJeff Cody  * via bdrv_reopen_queue().
1933e971aa12SJeff Cody  *
1934e971aa12SJeff Cody  * Reopens all BDS specified in the queue, with the appropriate
1935e971aa12SJeff Cody  * flags.  All devices are prepared for reopen, and failure of any
1936e971aa12SJeff Cody  * device will cause all device changes to be abandonded, and intermediate
1937e971aa12SJeff Cody  * data cleaned up.
1938e971aa12SJeff Cody  *
1939e971aa12SJeff Cody  * If all devices prepare successfully, then the changes are committed
1940e971aa12SJeff Cody  * to all devices.
1941e971aa12SJeff Cody  *
1942e971aa12SJeff Cody  */
1943e971aa12SJeff Cody int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
1944e971aa12SJeff Cody {
1945e971aa12SJeff Cody     int ret = -1;
1946e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry, *next;
1947e971aa12SJeff Cody     Error *local_err = NULL;
1948e971aa12SJeff Cody 
1949e971aa12SJeff Cody     assert(bs_queue != NULL);
1950e971aa12SJeff Cody 
1951e971aa12SJeff Cody     bdrv_drain_all();
1952e971aa12SJeff Cody 
1953e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
1954e971aa12SJeff Cody         if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
1955e971aa12SJeff Cody             error_propagate(errp, local_err);
1956e971aa12SJeff Cody             goto cleanup;
1957e971aa12SJeff Cody         }
1958e971aa12SJeff Cody         bs_entry->prepared = true;
1959e971aa12SJeff Cody     }
1960e971aa12SJeff Cody 
1961e971aa12SJeff Cody     /* If we reach this point, we have success and just need to apply the
1962e971aa12SJeff Cody      * changes
1963e971aa12SJeff Cody      */
1964e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
1965e971aa12SJeff Cody         bdrv_reopen_commit(&bs_entry->state);
1966e971aa12SJeff Cody     }
1967e971aa12SJeff Cody 
1968e971aa12SJeff Cody     ret = 0;
1969e971aa12SJeff Cody 
1970e971aa12SJeff Cody cleanup:
1971e971aa12SJeff Cody     QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
1972e971aa12SJeff Cody         if (ret && bs_entry->prepared) {
1973e971aa12SJeff Cody             bdrv_reopen_abort(&bs_entry->state);
1974145f598eSKevin Wolf         } else if (ret) {
1975145f598eSKevin Wolf             QDECREF(bs_entry->state.explicit_options);
1976e971aa12SJeff Cody         }
19774d2cb092SKevin Wolf         QDECREF(bs_entry->state.options);
1978e971aa12SJeff Cody         g_free(bs_entry);
1979e971aa12SJeff Cody     }
1980e971aa12SJeff Cody     g_free(bs_queue);
1981e971aa12SJeff Cody     return ret;
1982e971aa12SJeff Cody }
1983e971aa12SJeff Cody 
1984e971aa12SJeff Cody 
1985e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */
1986e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
1987e971aa12SJeff Cody {
1988e971aa12SJeff Cody     int ret = -1;
1989e971aa12SJeff Cody     Error *local_err = NULL;
19904d2cb092SKevin Wolf     BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags);
1991e971aa12SJeff Cody 
1992e971aa12SJeff Cody     ret = bdrv_reopen_multiple(queue, &local_err);
1993e971aa12SJeff Cody     if (local_err != NULL) {
1994e971aa12SJeff Cody         error_propagate(errp, local_err);
1995e971aa12SJeff Cody     }
1996e971aa12SJeff Cody     return ret;
1997e971aa12SJeff Cody }
1998e971aa12SJeff Cody 
1999e971aa12SJeff Cody 
2000e971aa12SJeff Cody /*
2001e971aa12SJeff Cody  * Prepares a BlockDriverState for reopen. All changes are staged in the
2002e971aa12SJeff Cody  * 'opaque' field of the BDRVReopenState, which is used and allocated by
2003e971aa12SJeff Cody  * the block driver layer .bdrv_reopen_prepare()
2004e971aa12SJeff Cody  *
2005e971aa12SJeff Cody  * bs is the BlockDriverState to reopen
2006e971aa12SJeff Cody  * flags are the new open flags
2007e971aa12SJeff Cody  * queue is the reopen queue
2008e971aa12SJeff Cody  *
2009e971aa12SJeff Cody  * Returns 0 on success, non-zero on error.  On error errp will be set
2010e971aa12SJeff Cody  * as well.
2011e971aa12SJeff Cody  *
2012e971aa12SJeff Cody  * On failure, bdrv_reopen_abort() will be called to clean up any data.
2013e971aa12SJeff Cody  * It is the responsibility of the caller to then call the abort() or
2014e971aa12SJeff Cody  * commit() for any other BDS that have been left in a prepare() state
2015e971aa12SJeff Cody  *
2016e971aa12SJeff Cody  */
2017e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
2018e971aa12SJeff Cody                         Error **errp)
2019e971aa12SJeff Cody {
2020e971aa12SJeff Cody     int ret = -1;
2021e971aa12SJeff Cody     Error *local_err = NULL;
2022e971aa12SJeff Cody     BlockDriver *drv;
2023ccf9dc07SKevin Wolf     QemuOpts *opts;
2024ccf9dc07SKevin Wolf     const char *value;
2025e971aa12SJeff Cody 
2026e971aa12SJeff Cody     assert(reopen_state != NULL);
2027e971aa12SJeff Cody     assert(reopen_state->bs->drv != NULL);
2028e971aa12SJeff Cody     drv = reopen_state->bs->drv;
2029e971aa12SJeff Cody 
2030ccf9dc07SKevin Wolf     /* Process generic block layer options */
2031ccf9dc07SKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
2032ccf9dc07SKevin Wolf     qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
2033ccf9dc07SKevin Wolf     if (local_err) {
2034ccf9dc07SKevin Wolf         error_propagate(errp, local_err);
2035ccf9dc07SKevin Wolf         ret = -EINVAL;
2036ccf9dc07SKevin Wolf         goto error;
2037ccf9dc07SKevin Wolf     }
2038ccf9dc07SKevin Wolf 
203991a097e7SKevin Wolf     update_flags_from_options(&reopen_state->flags, opts);
204091a097e7SKevin Wolf 
2041ccf9dc07SKevin Wolf     /* node-name and driver must be unchanged. Put them back into the QDict, so
2042ccf9dc07SKevin Wolf      * that they are checked at the end of this function. */
2043ccf9dc07SKevin Wolf     value = qemu_opt_get(opts, "node-name");
2044ccf9dc07SKevin Wolf     if (value) {
2045ccf9dc07SKevin Wolf         qdict_put(reopen_state->options, "node-name", qstring_from_str(value));
2046ccf9dc07SKevin Wolf     }
2047ccf9dc07SKevin Wolf 
2048ccf9dc07SKevin Wolf     value = qemu_opt_get(opts, "driver");
2049ccf9dc07SKevin Wolf     if (value) {
2050ccf9dc07SKevin Wolf         qdict_put(reopen_state->options, "driver", qstring_from_str(value));
2051ccf9dc07SKevin Wolf     }
2052ccf9dc07SKevin Wolf 
2053e971aa12SJeff Cody     /* if we are to stay read-only, do not allow permission change
2054e971aa12SJeff Cody      * to r/w */
2055e971aa12SJeff Cody     if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) &&
2056e971aa12SJeff Cody         reopen_state->flags & BDRV_O_RDWR) {
205781e5f78aSAlberto Garcia         error_setg(errp, "Node '%s' is read only",
205881e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(reopen_state->bs));
2059e971aa12SJeff Cody         goto error;
2060e971aa12SJeff Cody     }
2061e971aa12SJeff Cody 
2062e971aa12SJeff Cody 
2063e971aa12SJeff Cody     ret = bdrv_flush(reopen_state->bs);
2064e971aa12SJeff Cody     if (ret) {
2065455b0fdeSEric Blake         error_setg_errno(errp, -ret, "Error flushing drive");
2066e971aa12SJeff Cody         goto error;
2067e971aa12SJeff Cody     }
2068e971aa12SJeff Cody 
2069e971aa12SJeff Cody     if (drv->bdrv_reopen_prepare) {
2070e971aa12SJeff Cody         ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
2071e971aa12SJeff Cody         if (ret) {
2072e971aa12SJeff Cody             if (local_err != NULL) {
2073e971aa12SJeff Cody                 error_propagate(errp, local_err);
2074e971aa12SJeff Cody             } else {
2075d8b6895fSLuiz Capitulino                 error_setg(errp, "failed while preparing to reopen image '%s'",
2076e971aa12SJeff Cody                            reopen_state->bs->filename);
2077e971aa12SJeff Cody             }
2078e971aa12SJeff Cody             goto error;
2079e971aa12SJeff Cody         }
2080e971aa12SJeff Cody     } else {
2081e971aa12SJeff Cody         /* It is currently mandatory to have a bdrv_reopen_prepare()
2082e971aa12SJeff Cody          * handler for each supported drv. */
208381e5f78aSAlberto Garcia         error_setg(errp, "Block format '%s' used by node '%s' "
208481e5f78aSAlberto Garcia                    "does not support reopening files", drv->format_name,
208581e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(reopen_state->bs));
2086e971aa12SJeff Cody         ret = -1;
2087e971aa12SJeff Cody         goto error;
2088e971aa12SJeff Cody     }
2089e971aa12SJeff Cody 
20904d2cb092SKevin Wolf     /* Options that are not handled are only okay if they are unchanged
20914d2cb092SKevin Wolf      * compared to the old state. It is expected that some options are only
20924d2cb092SKevin Wolf      * used for the initial open, but not reopen (e.g. filename) */
20934d2cb092SKevin Wolf     if (qdict_size(reopen_state->options)) {
20944d2cb092SKevin Wolf         const QDictEntry *entry = qdict_first(reopen_state->options);
20954d2cb092SKevin Wolf 
20964d2cb092SKevin Wolf         do {
20974d2cb092SKevin Wolf             QString *new_obj = qobject_to_qstring(entry->value);
20984d2cb092SKevin Wolf             const char *new = qstring_get_str(new_obj);
20994d2cb092SKevin Wolf             const char *old = qdict_get_try_str(reopen_state->bs->options,
21004d2cb092SKevin Wolf                                                 entry->key);
21014d2cb092SKevin Wolf 
21024d2cb092SKevin Wolf             if (!old || strcmp(new, old)) {
21034d2cb092SKevin Wolf                 error_setg(errp, "Cannot change the option '%s'", entry->key);
21044d2cb092SKevin Wolf                 ret = -EINVAL;
21054d2cb092SKevin Wolf                 goto error;
21064d2cb092SKevin Wolf             }
21074d2cb092SKevin Wolf         } while ((entry = qdict_next(reopen_state->options, entry)));
21084d2cb092SKevin Wolf     }
21094d2cb092SKevin Wolf 
2110e971aa12SJeff Cody     ret = 0;
2111e971aa12SJeff Cody 
2112e971aa12SJeff Cody error:
2113ccf9dc07SKevin Wolf     qemu_opts_del(opts);
2114e971aa12SJeff Cody     return ret;
2115e971aa12SJeff Cody }
2116e971aa12SJeff Cody 
2117e971aa12SJeff Cody /*
2118e971aa12SJeff Cody  * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
2119e971aa12SJeff Cody  * makes them final by swapping the staging BlockDriverState contents into
2120e971aa12SJeff Cody  * the active BlockDriverState contents.
2121e971aa12SJeff Cody  */
2122e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state)
2123e971aa12SJeff Cody {
2124e971aa12SJeff Cody     BlockDriver *drv;
2125e971aa12SJeff Cody 
2126e971aa12SJeff Cody     assert(reopen_state != NULL);
2127e971aa12SJeff Cody     drv = reopen_state->bs->drv;
2128e971aa12SJeff Cody     assert(drv != NULL);
2129e971aa12SJeff Cody 
2130e971aa12SJeff Cody     /* If there are any driver level actions to take */
2131e971aa12SJeff Cody     if (drv->bdrv_reopen_commit) {
2132e971aa12SJeff Cody         drv->bdrv_reopen_commit(reopen_state);
2133e971aa12SJeff Cody     }
2134e971aa12SJeff Cody 
2135e971aa12SJeff Cody     /* set BDS specific flags now */
2136145f598eSKevin Wolf     QDECREF(reopen_state->bs->explicit_options);
2137145f598eSKevin Wolf 
2138145f598eSKevin Wolf     reopen_state->bs->explicit_options   = reopen_state->explicit_options;
2139e971aa12SJeff Cody     reopen_state->bs->open_flags         = reopen_state->flags;
2140e971aa12SJeff Cody     reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
2141355ef4acSKevin Wolf 
21423baca891SKevin Wolf     bdrv_refresh_limits(reopen_state->bs, NULL);
2143e971aa12SJeff Cody }
2144e971aa12SJeff Cody 
2145e971aa12SJeff Cody /*
2146e971aa12SJeff Cody  * Abort the reopen, and delete and free the staged changes in
2147e971aa12SJeff Cody  * reopen_state
2148e971aa12SJeff Cody  */
2149e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state)
2150e971aa12SJeff Cody {
2151e971aa12SJeff Cody     BlockDriver *drv;
2152e971aa12SJeff Cody 
2153e971aa12SJeff Cody     assert(reopen_state != NULL);
2154e971aa12SJeff Cody     drv = reopen_state->bs->drv;
2155e971aa12SJeff Cody     assert(drv != NULL);
2156e971aa12SJeff Cody 
2157e971aa12SJeff Cody     if (drv->bdrv_reopen_abort) {
2158e971aa12SJeff Cody         drv->bdrv_reopen_abort(reopen_state);
2159e971aa12SJeff Cody     }
2160145f598eSKevin Wolf 
2161145f598eSKevin Wolf     QDECREF(reopen_state->explicit_options);
2162e971aa12SJeff Cody }
2163e971aa12SJeff Cody 
2164e971aa12SJeff Cody 
216564dff520SMax Reitz static void bdrv_close(BlockDriverState *bs)
2166fc01f7e7Sbellard {
216733384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
216833384421SMax Reitz 
2169ca9bd24cSMax Reitz     assert(!bs->job);
217030f55fb8SMax Reitz     assert(!bs->refcnt);
217199b7e775SAlberto Garcia 
2172fc27291dSPaolo Bonzini     bdrv_drained_begin(bs); /* complete I/O */
217358fda173SStefan Hajnoczi     bdrv_flush(bs);
217453ec73e2SFam Zheng     bdrv_drain(bs); /* in case flush left pending I/O */
2175fc27291dSPaolo Bonzini 
2176c5acdc9aSMax Reitz     bdrv_release_named_dirty_bitmaps(bs);
2177c5acdc9aSMax Reitz     assert(QLIST_EMPTY(&bs->dirty_bitmaps));
2178c5acdc9aSMax Reitz 
21793cbc002cSPaolo Bonzini     if (bs->drv) {
21806e93e7c4SKevin Wolf         BdrvChild *child, *next;
21816e93e7c4SKevin Wolf 
21829a7dedbcSKevin Wolf         bs->drv->bdrv_close(bs);
21839a4f4c31SKevin Wolf         bs->drv = NULL;
21849a7dedbcSKevin Wolf 
21859a7dedbcSKevin Wolf         bdrv_set_backing_hd(bs, NULL);
21869a7dedbcSKevin Wolf 
21879a4f4c31SKevin Wolf         if (bs->file != NULL) {
21889a4f4c31SKevin Wolf             bdrv_unref_child(bs, bs->file);
21899a4f4c31SKevin Wolf             bs->file = NULL;
21909a4f4c31SKevin Wolf         }
21919a4f4c31SKevin Wolf 
21926e93e7c4SKevin Wolf         QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
219333a60407SKevin Wolf             /* TODO Remove bdrv_unref() from drivers' close function and use
219433a60407SKevin Wolf              * bdrv_unref_child() here */
2195bddcec37SKevin Wolf             if (child->bs->inherits_from == bs) {
2196bddcec37SKevin Wolf                 child->bs->inherits_from = NULL;
2197bddcec37SKevin Wolf             }
219833a60407SKevin Wolf             bdrv_detach_child(child);
21996e93e7c4SKevin Wolf         }
22006e93e7c4SKevin Wolf 
22017267c094SAnthony Liguori         g_free(bs->opaque);
2202ea2384d3Sbellard         bs->opaque = NULL;
220353fec9d3SStefan Hajnoczi         bs->copy_on_read = 0;
2204a275fa42SPaolo Bonzini         bs->backing_file[0] = '\0';
2205a275fa42SPaolo Bonzini         bs->backing_format[0] = '\0';
22066405875cSPaolo Bonzini         bs->total_sectors = 0;
220754115412SEric Blake         bs->encrypted = false;
220854115412SEric Blake         bs->valid_key = false;
220954115412SEric Blake         bs->sg = false;
2210de9c0cecSKevin Wolf         QDECREF(bs->options);
2211145f598eSKevin Wolf         QDECREF(bs->explicit_options);
2212de9c0cecSKevin Wolf         bs->options = NULL;
221391af7014SMax Reitz         QDECREF(bs->full_open_options);
221491af7014SMax Reitz         bs->full_open_options = NULL;
22159ca11154SPavel Hrdina     }
221666f82ceeSKevin Wolf 
221733384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
221833384421SMax Reitz         g_free(ban);
221933384421SMax Reitz     }
222033384421SMax Reitz     QLIST_INIT(&bs->aio_notifiers);
2221fc27291dSPaolo Bonzini     bdrv_drained_end(bs);
2222b338082bSbellard }
2223b338082bSbellard 
22242bc93fedSMORITA Kazutaka void bdrv_close_all(void)
22252bc93fedSMORITA Kazutaka {
2226a1a2af07SKevin Wolf     block_job_cancel_sync_all();
2227cd7fca95SKevin Wolf     nbd_export_close_all();
22282bc93fedSMORITA Kazutaka 
2229ca9bd24cSMax Reitz     /* Drop references from requests still in flight, such as canceled block
2230ca9bd24cSMax Reitz      * jobs whose AIO context has not been polled yet */
2231ca9bd24cSMax Reitz     bdrv_drain_all();
2232ca9bd24cSMax Reitz 
2233ca9bd24cSMax Reitz     blk_remove_all_bs();
2234ca9bd24cSMax Reitz     blockdev_close_all_bdrv_states();
2235ca9bd24cSMax Reitz 
2236a1a2af07SKevin Wolf     assert(QTAILQ_EMPTY(&all_bdrv_states));
22372bc93fedSMORITA Kazutaka }
22382bc93fedSMORITA Kazutaka 
2239dd62f1caSKevin Wolf static void change_parent_backing_link(BlockDriverState *from,
2240dd62f1caSKevin Wolf                                        BlockDriverState *to)
2241dd62f1caSKevin Wolf {
22429bd910e2SMax Reitz     BdrvChild *c, *next, *to_c;
2243dd62f1caSKevin Wolf 
2244dd62f1caSKevin Wolf     QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
22459bd910e2SMax Reitz         if (c->role == &child_backing) {
22469bd910e2SMax Reitz             /* @from is generally not allowed to be a backing file, except for
22479bd910e2SMax Reitz              * when @to is the overlay. In that case, @from may not be replaced
22489bd910e2SMax Reitz              * by @to as @to's backing node. */
22499bd910e2SMax Reitz             QLIST_FOREACH(to_c, &to->children, next) {
22509bd910e2SMax Reitz                 if (to_c == c) {
22519bd910e2SMax Reitz                     break;
22529bd910e2SMax Reitz                 }
22539bd910e2SMax Reitz             }
22549bd910e2SMax Reitz             if (to_c) {
22559bd910e2SMax Reitz                 continue;
22569bd910e2SMax Reitz             }
22579bd910e2SMax Reitz         }
22589bd910e2SMax Reitz 
2259dd62f1caSKevin Wolf         assert(c->role != &child_backing);
2260dd62f1caSKevin Wolf         bdrv_ref(to);
2261e9740bc6SKevin Wolf         bdrv_replace_child(c, to);
2262dd62f1caSKevin Wolf         bdrv_unref(from);
2263dd62f1caSKevin Wolf     }
2264dd62f1caSKevin Wolf }
2265dd62f1caSKevin Wolf 
22668802d1fdSJeff Cody /*
22678802d1fdSJeff Cody  * Add new bs contents at the top of an image chain while the chain is
22688802d1fdSJeff Cody  * live, while keeping required fields on the top layer.
22698802d1fdSJeff Cody  *
22708802d1fdSJeff Cody  * This will modify the BlockDriverState fields, and swap contents
22718802d1fdSJeff Cody  * between bs_new and bs_top. Both bs_new and bs_top are modified.
22728802d1fdSJeff Cody  *
2273bfb197e0SMarkus Armbruster  * bs_new must not be attached to a BlockBackend.
2274f6801b83SJeff Cody  *
22758802d1fdSJeff Cody  * This function does not create any image files.
2276dd62f1caSKevin Wolf  *
2277dd62f1caSKevin Wolf  * bdrv_append() takes ownership of a bs_new reference and unrefs it because
2278dd62f1caSKevin Wolf  * that's what the callers commonly need. bs_new will be referenced by the old
2279dd62f1caSKevin Wolf  * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
2280dd62f1caSKevin Wolf  * reference of its own, it must call bdrv_ref().
22818802d1fdSJeff Cody  */
22828802d1fdSJeff Cody void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top)
22838802d1fdSJeff Cody {
2284dd62f1caSKevin Wolf     assert(!bdrv_requests_pending(bs_top));
2285dd62f1caSKevin Wolf     assert(!bdrv_requests_pending(bs_new));
22868802d1fdSJeff Cody 
2287dd62f1caSKevin Wolf     bdrv_ref(bs_top);
2288dd62f1caSKevin Wolf 
228927ccdd52SKevin Wolf     change_parent_backing_link(bs_top, bs_new);
2290dd62f1caSKevin Wolf     bdrv_set_backing_hd(bs_new, bs_top);
2291dd62f1caSKevin Wolf     bdrv_unref(bs_top);
2292dd62f1caSKevin Wolf 
2293dd62f1caSKevin Wolf     /* bs_new is now referenced by its new parents, we don't need the
2294dd62f1caSKevin Wolf      * additional reference any more. */
2295dd62f1caSKevin Wolf     bdrv_unref(bs_new);
22968802d1fdSJeff Cody }
22978802d1fdSJeff Cody 
22983f09bfbcSKevin Wolf void bdrv_replace_in_backing_chain(BlockDriverState *old, BlockDriverState *new)
22993f09bfbcSKevin Wolf {
23003f09bfbcSKevin Wolf     assert(!bdrv_requests_pending(old));
23013f09bfbcSKevin Wolf     assert(!bdrv_requests_pending(new));
23023f09bfbcSKevin Wolf 
23033f09bfbcSKevin Wolf     bdrv_ref(old);
23043f09bfbcSKevin Wolf 
23053f09bfbcSKevin Wolf     change_parent_backing_link(old, new);
23063f09bfbcSKevin Wolf 
23073f09bfbcSKevin Wolf     bdrv_unref(old);
23083f09bfbcSKevin Wolf }
23093f09bfbcSKevin Wolf 
23104f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs)
2311b338082bSbellard {
23123e914655SPaolo Bonzini     assert(!bs->job);
23133718d8abSFam Zheng     assert(bdrv_op_blocker_is_empty(bs));
23144f6fd349SFam Zheng     assert(!bs->refcnt);
231518846deeSMarkus Armbruster 
2316e1b5c52eSStefan Hajnoczi     bdrv_close(bs);
2317e1b5c52eSStefan Hajnoczi 
23181b7bdbc1SStefan Hajnoczi     /* remove from list, if necessary */
231963eaaae0SKevin Wolf     if (bs->node_name[0] != '\0') {
232063eaaae0SKevin Wolf         QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
232163eaaae0SKevin Wolf     }
23222c1d04e0SMax Reitz     QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
23232c1d04e0SMax Reitz 
23247267c094SAnthony Liguori     g_free(bs);
2325fc01f7e7Sbellard }
2326fc01f7e7Sbellard 
2327e97fc193Saliguori /*
2328e97fc193Saliguori  * Run consistency checks on an image
2329e97fc193Saliguori  *
2330e076f338SKevin Wolf  * Returns 0 if the check could be completed (it doesn't mean that the image is
2331a1c7273bSStefan Weil  * free of errors) or -errno when an internal error occurred. The results of the
2332e076f338SKevin Wolf  * check are stored in res.
2333e97fc193Saliguori  */
23344534ff54SKevin Wolf int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix)
2335e97fc193Saliguori {
2336908bcd54SMax Reitz     if (bs->drv == NULL) {
2337908bcd54SMax Reitz         return -ENOMEDIUM;
2338908bcd54SMax Reitz     }
2339e97fc193Saliguori     if (bs->drv->bdrv_check == NULL) {
2340e97fc193Saliguori         return -ENOTSUP;
2341e97fc193Saliguori     }
2342e97fc193Saliguori 
2343e076f338SKevin Wolf     memset(res, 0, sizeof(*res));
23444534ff54SKevin Wolf     return bs->drv->bdrv_check(bs, res, fix);
2345e97fc193Saliguori }
2346e97fc193Saliguori 
2347756e6736SKevin Wolf /*
2348756e6736SKevin Wolf  * Return values:
2349756e6736SKevin Wolf  * 0        - success
2350756e6736SKevin Wolf  * -EINVAL  - backing format specified, but no file
2351756e6736SKevin Wolf  * -ENOSPC  - can't update the backing file because no space is left in the
2352756e6736SKevin Wolf  *            image file header
2353756e6736SKevin Wolf  * -ENOTSUP - format driver doesn't support changing the backing file
2354756e6736SKevin Wolf  */
2355756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs,
2356756e6736SKevin Wolf     const char *backing_file, const char *backing_fmt)
2357756e6736SKevin Wolf {
2358756e6736SKevin Wolf     BlockDriver *drv = bs->drv;
2359469ef350SPaolo Bonzini     int ret;
2360756e6736SKevin Wolf 
23615f377794SPaolo Bonzini     /* Backing file format doesn't make sense without a backing file */
23625f377794SPaolo Bonzini     if (backing_fmt && !backing_file) {
23635f377794SPaolo Bonzini         return -EINVAL;
23645f377794SPaolo Bonzini     }
23655f377794SPaolo Bonzini 
2366756e6736SKevin Wolf     if (drv->bdrv_change_backing_file != NULL) {
2367469ef350SPaolo Bonzini         ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
2368756e6736SKevin Wolf     } else {
2369469ef350SPaolo Bonzini         ret = -ENOTSUP;
2370756e6736SKevin Wolf     }
2371469ef350SPaolo Bonzini 
2372469ef350SPaolo Bonzini     if (ret == 0) {
2373469ef350SPaolo Bonzini         pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
2374469ef350SPaolo Bonzini         pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
2375469ef350SPaolo Bonzini     }
2376469ef350SPaolo Bonzini     return ret;
2377756e6736SKevin Wolf }
2378756e6736SKevin Wolf 
23796ebdcee2SJeff Cody /*
23806ebdcee2SJeff Cody  * Finds the image layer in the chain that has 'bs' as its backing file.
23816ebdcee2SJeff Cody  *
23826ebdcee2SJeff Cody  * active is the current topmost image.
23836ebdcee2SJeff Cody  *
23846ebdcee2SJeff Cody  * Returns NULL if bs is not found in active's image chain,
23856ebdcee2SJeff Cody  * or if active == bs.
23864caf0fcdSJeff Cody  *
23874caf0fcdSJeff Cody  * Returns the bottommost base image if bs == NULL.
23886ebdcee2SJeff Cody  */
23896ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
23906ebdcee2SJeff Cody                                     BlockDriverState *bs)
23916ebdcee2SJeff Cody {
2392760e0063SKevin Wolf     while (active && bs != backing_bs(active)) {
2393760e0063SKevin Wolf         active = backing_bs(active);
23946ebdcee2SJeff Cody     }
23956ebdcee2SJeff Cody 
23964caf0fcdSJeff Cody     return active;
23976ebdcee2SJeff Cody }
23986ebdcee2SJeff Cody 
23994caf0fcdSJeff Cody /* Given a BDS, searches for the base layer. */
24004caf0fcdSJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs)
24014caf0fcdSJeff Cody {
24024caf0fcdSJeff Cody     return bdrv_find_overlay(bs, NULL);
24036ebdcee2SJeff Cody }
24046ebdcee2SJeff Cody 
24056ebdcee2SJeff Cody /*
24066ebdcee2SJeff Cody  * Drops images above 'base' up to and including 'top', and sets the image
24076ebdcee2SJeff Cody  * above 'top' to have base as its backing file.
24086ebdcee2SJeff Cody  *
24096ebdcee2SJeff Cody  * Requires that the overlay to 'top' is opened r/w, so that the backing file
24106ebdcee2SJeff Cody  * information in 'bs' can be properly updated.
24116ebdcee2SJeff Cody  *
24126ebdcee2SJeff Cody  * E.g., this will convert the following chain:
24136ebdcee2SJeff Cody  * bottom <- base <- intermediate <- top <- active
24146ebdcee2SJeff Cody  *
24156ebdcee2SJeff Cody  * to
24166ebdcee2SJeff Cody  *
24176ebdcee2SJeff Cody  * bottom <- base <- active
24186ebdcee2SJeff Cody  *
24196ebdcee2SJeff Cody  * It is allowed for bottom==base, in which case it converts:
24206ebdcee2SJeff Cody  *
24216ebdcee2SJeff Cody  * base <- intermediate <- top <- active
24226ebdcee2SJeff Cody  *
24236ebdcee2SJeff Cody  * to
24246ebdcee2SJeff Cody  *
24256ebdcee2SJeff Cody  * base <- active
24266ebdcee2SJeff Cody  *
242754e26900SJeff Cody  * If backing_file_str is non-NULL, it will be used when modifying top's
242854e26900SJeff Cody  * overlay image metadata.
242954e26900SJeff Cody  *
24306ebdcee2SJeff Cody  * Error conditions:
24316ebdcee2SJeff Cody  *  if active == top, that is considered an error
24326ebdcee2SJeff Cody  *
24336ebdcee2SJeff Cody  */
24346ebdcee2SJeff Cody int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top,
243554e26900SJeff Cody                            BlockDriverState *base, const char *backing_file_str)
24366ebdcee2SJeff Cody {
24376ebdcee2SJeff Cody     BlockDriverState *new_top_bs = NULL;
24386ebdcee2SJeff Cody     int ret = -EIO;
24396ebdcee2SJeff Cody 
24406ebdcee2SJeff Cody     if (!top->drv || !base->drv) {
24416ebdcee2SJeff Cody         goto exit;
24426ebdcee2SJeff Cody     }
24436ebdcee2SJeff Cody 
24446ebdcee2SJeff Cody     new_top_bs = bdrv_find_overlay(active, top);
24456ebdcee2SJeff Cody 
24466ebdcee2SJeff Cody     if (new_top_bs == NULL) {
24476ebdcee2SJeff Cody         /* we could not find the image above 'top', this is an error */
24486ebdcee2SJeff Cody         goto exit;
24496ebdcee2SJeff Cody     }
24506ebdcee2SJeff Cody 
2451760e0063SKevin Wolf     /* special case of new_top_bs->backing->bs already pointing to base - nothing
24526ebdcee2SJeff Cody      * to do, no intermediate images */
2453760e0063SKevin Wolf     if (backing_bs(new_top_bs) == base) {
24546ebdcee2SJeff Cody         ret = 0;
24556ebdcee2SJeff Cody         goto exit;
24566ebdcee2SJeff Cody     }
24576ebdcee2SJeff Cody 
24585db15a57SKevin Wolf     /* Make sure that base is in the backing chain of top */
24595db15a57SKevin Wolf     if (!bdrv_chain_contains(top, base)) {
24606ebdcee2SJeff Cody         goto exit;
24616ebdcee2SJeff Cody     }
24626ebdcee2SJeff Cody 
24636ebdcee2SJeff Cody     /* success - we can delete the intermediate states, and link top->base */
24645db15a57SKevin Wolf     backing_file_str = backing_file_str ? backing_file_str : base->filename;
246554e26900SJeff Cody     ret = bdrv_change_backing_file(new_top_bs, backing_file_str,
24665db15a57SKevin Wolf                                    base->drv ? base->drv->format_name : "");
24676ebdcee2SJeff Cody     if (ret) {
24686ebdcee2SJeff Cody         goto exit;
24696ebdcee2SJeff Cody     }
24705db15a57SKevin Wolf     bdrv_set_backing_hd(new_top_bs, base);
24716ebdcee2SJeff Cody 
24726ebdcee2SJeff Cody     ret = 0;
24736ebdcee2SJeff Cody exit:
24746ebdcee2SJeff Cody     return ret;
24756ebdcee2SJeff Cody }
24766ebdcee2SJeff Cody 
247783f64091Sbellard /**
247883f64091Sbellard  * Truncate file to 'offset' bytes (needed only for file protocols)
247983f64091Sbellard  */
248083f64091Sbellard int bdrv_truncate(BlockDriverState *bs, int64_t offset)
248183f64091Sbellard {
248283f64091Sbellard     BlockDriver *drv = bs->drv;
248351762288SStefan Hajnoczi     int ret;
248483f64091Sbellard     if (!drv)
248519cb3738Sbellard         return -ENOMEDIUM;
248683f64091Sbellard     if (!drv->bdrv_truncate)
248783f64091Sbellard         return -ENOTSUP;
248859f2689dSNaphtali Sprei     if (bs->read_only)
248959f2689dSNaphtali Sprei         return -EACCES;
24909c75e168SJeff Cody 
249151762288SStefan Hajnoczi     ret = drv->bdrv_truncate(bs, offset);
249251762288SStefan Hajnoczi     if (ret == 0) {
249351762288SStefan Hajnoczi         ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
2494ce1ffea8SJohn Snow         bdrv_dirty_bitmap_truncate(bs);
24955c8cab48SKevin Wolf         bdrv_parent_cb_resize(bs);
24963ff2f67aSEvgeny Yakovlev         ++bs->write_gen;
249751762288SStefan Hajnoczi     }
249851762288SStefan Hajnoczi     return ret;
249983f64091Sbellard }
250083f64091Sbellard 
250183f64091Sbellard /**
25024a1d5e1fSFam Zheng  * Length of a allocated file in bytes. Sparse files are counted by actual
25034a1d5e1fSFam Zheng  * allocated space. Return < 0 if error or unknown.
25044a1d5e1fSFam Zheng  */
25054a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
25064a1d5e1fSFam Zheng {
25074a1d5e1fSFam Zheng     BlockDriver *drv = bs->drv;
25084a1d5e1fSFam Zheng     if (!drv) {
25094a1d5e1fSFam Zheng         return -ENOMEDIUM;
25104a1d5e1fSFam Zheng     }
25114a1d5e1fSFam Zheng     if (drv->bdrv_get_allocated_file_size) {
25124a1d5e1fSFam Zheng         return drv->bdrv_get_allocated_file_size(bs);
25134a1d5e1fSFam Zheng     }
25144a1d5e1fSFam Zheng     if (bs->file) {
25159a4f4c31SKevin Wolf         return bdrv_get_allocated_file_size(bs->file->bs);
25164a1d5e1fSFam Zheng     }
25174a1d5e1fSFam Zheng     return -ENOTSUP;
25184a1d5e1fSFam Zheng }
25194a1d5e1fSFam Zheng 
25204a1d5e1fSFam Zheng /**
252165a9bb25SMarkus Armbruster  * Return number of sectors on success, -errno on error.
252283f64091Sbellard  */
252365a9bb25SMarkus Armbruster int64_t bdrv_nb_sectors(BlockDriverState *bs)
252483f64091Sbellard {
252583f64091Sbellard     BlockDriver *drv = bs->drv;
252665a9bb25SMarkus Armbruster 
252783f64091Sbellard     if (!drv)
252819cb3738Sbellard         return -ENOMEDIUM;
252951762288SStefan Hajnoczi 
2530b94a2610SKevin Wolf     if (drv->has_variable_length) {
2531b94a2610SKevin Wolf         int ret = refresh_total_sectors(bs, bs->total_sectors);
2532b94a2610SKevin Wolf         if (ret < 0) {
2533b94a2610SKevin Wolf             return ret;
2534fc01f7e7Sbellard         }
253546a4e4e6SStefan Hajnoczi     }
253665a9bb25SMarkus Armbruster     return bs->total_sectors;
253765a9bb25SMarkus Armbruster }
253865a9bb25SMarkus Armbruster 
253965a9bb25SMarkus Armbruster /**
254065a9bb25SMarkus Armbruster  * Return length in bytes on success, -errno on error.
254165a9bb25SMarkus Armbruster  * The length is always a multiple of BDRV_SECTOR_SIZE.
254265a9bb25SMarkus Armbruster  */
254365a9bb25SMarkus Armbruster int64_t bdrv_getlength(BlockDriverState *bs)
254465a9bb25SMarkus Armbruster {
254565a9bb25SMarkus Armbruster     int64_t ret = bdrv_nb_sectors(bs);
254665a9bb25SMarkus Armbruster 
25474a9c9ea0SFam Zheng     ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
254865a9bb25SMarkus Armbruster     return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
254946a4e4e6SStefan Hajnoczi }
2550fc01f7e7Sbellard 
255119cb3738Sbellard /* return 0 as number of sectors if no device present or error */
255296b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
2553fc01f7e7Sbellard {
255465a9bb25SMarkus Armbruster     int64_t nb_sectors = bdrv_nb_sectors(bs);
255565a9bb25SMarkus Armbruster 
255665a9bb25SMarkus Armbruster     *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
2557fc01f7e7Sbellard }
2558cf98951bSbellard 
255954115412SEric Blake bool bdrv_is_read_only(BlockDriverState *bs)
2560b338082bSbellard {
2561b338082bSbellard     return bs->read_only;
2562b338082bSbellard }
2563b338082bSbellard 
256454115412SEric Blake bool bdrv_is_sg(BlockDriverState *bs)
2565985a03b0Sths {
2566985a03b0Sths     return bs->sg;
2567985a03b0Sths }
2568985a03b0Sths 
256954115412SEric Blake bool bdrv_is_encrypted(BlockDriverState *bs)
2570ea2384d3Sbellard {
2571760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted) {
257254115412SEric Blake         return true;
2573760e0063SKevin Wolf     }
2574ea2384d3Sbellard     return bs->encrypted;
2575ea2384d3Sbellard }
2576ea2384d3Sbellard 
257754115412SEric Blake bool bdrv_key_required(BlockDriverState *bs)
2578c0f4ce77Saliguori {
2579760e0063SKevin Wolf     BdrvChild *backing = bs->backing;
2580c0f4ce77Saliguori 
2581760e0063SKevin Wolf     if (backing && backing->bs->encrypted && !backing->bs->valid_key) {
258254115412SEric Blake         return true;
2583760e0063SKevin Wolf     }
2584c0f4ce77Saliguori     return (bs->encrypted && !bs->valid_key);
2585c0f4ce77Saliguori }
2586c0f4ce77Saliguori 
2587ea2384d3Sbellard int bdrv_set_key(BlockDriverState *bs, const char *key)
2588ea2384d3Sbellard {
2589ea2384d3Sbellard     int ret;
2590760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted) {
2591760e0063SKevin Wolf         ret = bdrv_set_key(bs->backing->bs, key);
2592ea2384d3Sbellard         if (ret < 0)
2593ea2384d3Sbellard             return ret;
2594ea2384d3Sbellard         if (!bs->encrypted)
2595ea2384d3Sbellard             return 0;
2596ea2384d3Sbellard     }
2597fd04a2aeSShahar Havivi     if (!bs->encrypted) {
2598fd04a2aeSShahar Havivi         return -EINVAL;
2599fd04a2aeSShahar Havivi     } else if (!bs->drv || !bs->drv->bdrv_set_key) {
2600fd04a2aeSShahar Havivi         return -ENOMEDIUM;
2601fd04a2aeSShahar Havivi     }
2602c0f4ce77Saliguori     ret = bs->drv->bdrv_set_key(bs, key);
2603bb5fc20fSaliguori     if (ret < 0) {
260454115412SEric Blake         bs->valid_key = false;
2605bb5fc20fSaliguori     } else if (!bs->valid_key) {
2606bb5fc20fSaliguori         /* call the change callback now, we skipped it on open */
260754115412SEric Blake         bs->valid_key = true;
26085c8cab48SKevin Wolf         bdrv_parent_cb_change_media(bs, true);
2609bb5fc20fSaliguori     }
2610c0f4ce77Saliguori     return ret;
2611ea2384d3Sbellard }
2612ea2384d3Sbellard 
26134d2855a3SMarkus Armbruster /*
26144d2855a3SMarkus Armbruster  * Provide an encryption key for @bs.
26154d2855a3SMarkus Armbruster  * If @key is non-null:
26164d2855a3SMarkus Armbruster  *     If @bs is not encrypted, fail.
26174d2855a3SMarkus Armbruster  *     Else if the key is invalid, fail.
26184d2855a3SMarkus Armbruster  *     Else set @bs's key to @key, replacing the existing key, if any.
26194d2855a3SMarkus Armbruster  * If @key is null:
26204d2855a3SMarkus Armbruster  *     If @bs is encrypted and still lacks a key, fail.
26214d2855a3SMarkus Armbruster  *     Else do nothing.
26224d2855a3SMarkus Armbruster  * On failure, store an error object through @errp if non-null.
26234d2855a3SMarkus Armbruster  */
26244d2855a3SMarkus Armbruster void bdrv_add_key(BlockDriverState *bs, const char *key, Error **errp)
26254d2855a3SMarkus Armbruster {
26264d2855a3SMarkus Armbruster     if (key) {
26274d2855a3SMarkus Armbruster         if (!bdrv_is_encrypted(bs)) {
262881e5f78aSAlberto Garcia             error_setg(errp, "Node '%s' is not encrypted",
262981e5f78aSAlberto Garcia                       bdrv_get_device_or_node_name(bs));
26304d2855a3SMarkus Armbruster         } else if (bdrv_set_key(bs, key) < 0) {
2631c6bd8c70SMarkus Armbruster             error_setg(errp, QERR_INVALID_PASSWORD);
26324d2855a3SMarkus Armbruster         }
26334d2855a3SMarkus Armbruster     } else {
26344d2855a3SMarkus Armbruster         if (bdrv_key_required(bs)) {
2635b1ca6391SMarkus Armbruster             error_set(errp, ERROR_CLASS_DEVICE_ENCRYPTED,
2636b1ca6391SMarkus Armbruster                       "'%s' (%s) is encrypted",
263781e5f78aSAlberto Garcia                       bdrv_get_device_or_node_name(bs),
26384d2855a3SMarkus Armbruster                       bdrv_get_encrypted_filename(bs));
26394d2855a3SMarkus Armbruster         }
26404d2855a3SMarkus Armbruster     }
26414d2855a3SMarkus Armbruster }
26424d2855a3SMarkus Armbruster 
2643f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs)
2644ea2384d3Sbellard {
2645f8d6bba1SMarkus Armbruster     return bs->drv ? bs->drv->format_name : NULL;
2646ea2384d3Sbellard }
2647ea2384d3Sbellard 
2648ada42401SStefan Hajnoczi static int qsort_strcmp(const void *a, const void *b)
2649ada42401SStefan Hajnoczi {
2650ada42401SStefan Hajnoczi     return strcmp(a, b);
2651ada42401SStefan Hajnoczi }
2652ada42401SStefan Hajnoczi 
2653ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
2654ea2384d3Sbellard                          void *opaque)
2655ea2384d3Sbellard {
2656ea2384d3Sbellard     BlockDriver *drv;
2657e855e4fbSJeff Cody     int count = 0;
2658ada42401SStefan Hajnoczi     int i;
2659e855e4fbSJeff Cody     const char **formats = NULL;
2660ea2384d3Sbellard 
26618a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv, &bdrv_drivers, list) {
2662e855e4fbSJeff Cody         if (drv->format_name) {
2663e855e4fbSJeff Cody             bool found = false;
2664e855e4fbSJeff Cody             int i = count;
2665e855e4fbSJeff Cody             while (formats && i && !found) {
2666e855e4fbSJeff Cody                 found = !strcmp(formats[--i], drv->format_name);
2667e855e4fbSJeff Cody             }
2668e855e4fbSJeff Cody 
2669e855e4fbSJeff Cody             if (!found) {
26705839e53bSMarkus Armbruster                 formats = g_renew(const char *, formats, count + 1);
2671e855e4fbSJeff Cody                 formats[count++] = drv->format_name;
2672ea2384d3Sbellard             }
2673ea2384d3Sbellard         }
2674e855e4fbSJeff Cody     }
2675ada42401SStefan Hajnoczi 
2676ada42401SStefan Hajnoczi     qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
2677ada42401SStefan Hajnoczi 
2678ada42401SStefan Hajnoczi     for (i = 0; i < count; i++) {
2679ada42401SStefan Hajnoczi         it(opaque, formats[i]);
2680ada42401SStefan Hajnoczi     }
2681ada42401SStefan Hajnoczi 
2682e855e4fbSJeff Cody     g_free(formats);
2683e855e4fbSJeff Cody }
2684ea2384d3Sbellard 
2685dc364f4cSBenoît Canet /* This function is to find a node in the bs graph */
2686dc364f4cSBenoît Canet BlockDriverState *bdrv_find_node(const char *node_name)
2687dc364f4cSBenoît Canet {
2688dc364f4cSBenoît Canet     BlockDriverState *bs;
2689dc364f4cSBenoît Canet 
2690dc364f4cSBenoît Canet     assert(node_name);
2691dc364f4cSBenoît Canet 
2692dc364f4cSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
2693dc364f4cSBenoît Canet         if (!strcmp(node_name, bs->node_name)) {
2694dc364f4cSBenoît Canet             return bs;
2695dc364f4cSBenoît Canet         }
2696dc364f4cSBenoît Canet     }
2697dc364f4cSBenoît Canet     return NULL;
2698dc364f4cSBenoît Canet }
2699dc364f4cSBenoît Canet 
2700c13163fbSBenoît Canet /* Put this QMP function here so it can access the static graph_bdrv_states. */
2701d5a8ee60SAlberto Garcia BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
2702c13163fbSBenoît Canet {
2703c13163fbSBenoît Canet     BlockDeviceInfoList *list, *entry;
2704c13163fbSBenoît Canet     BlockDriverState *bs;
2705c13163fbSBenoît Canet 
2706c13163fbSBenoît Canet     list = NULL;
2707c13163fbSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
2708c83f9fbaSKevin Wolf         BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp);
2709d5a8ee60SAlberto Garcia         if (!info) {
2710d5a8ee60SAlberto Garcia             qapi_free_BlockDeviceInfoList(list);
2711d5a8ee60SAlberto Garcia             return NULL;
2712d5a8ee60SAlberto Garcia         }
2713c13163fbSBenoît Canet         entry = g_malloc0(sizeof(*entry));
2714d5a8ee60SAlberto Garcia         entry->value = info;
2715c13163fbSBenoît Canet         entry->next = list;
2716c13163fbSBenoît Canet         list = entry;
2717c13163fbSBenoît Canet     }
2718c13163fbSBenoît Canet 
2719c13163fbSBenoît Canet     return list;
2720c13163fbSBenoît Canet }
2721c13163fbSBenoît Canet 
272212d3ba82SBenoît Canet BlockDriverState *bdrv_lookup_bs(const char *device,
272312d3ba82SBenoît Canet                                  const char *node_name,
272412d3ba82SBenoît Canet                                  Error **errp)
272512d3ba82SBenoît Canet {
27267f06d47eSMarkus Armbruster     BlockBackend *blk;
27277f06d47eSMarkus Armbruster     BlockDriverState *bs;
272812d3ba82SBenoît Canet 
272912d3ba82SBenoît Canet     if (device) {
27307f06d47eSMarkus Armbruster         blk = blk_by_name(device);
273112d3ba82SBenoît Canet 
27327f06d47eSMarkus Armbruster         if (blk) {
27339f4ed6fbSAlberto Garcia             bs = blk_bs(blk);
27349f4ed6fbSAlberto Garcia             if (!bs) {
27355433c24fSMax Reitz                 error_setg(errp, "Device '%s' has no medium", device);
27365433c24fSMax Reitz             }
27375433c24fSMax Reitz 
27389f4ed6fbSAlberto Garcia             return bs;
273912d3ba82SBenoît Canet         }
2740dd67fa50SBenoît Canet     }
274112d3ba82SBenoît Canet 
2742dd67fa50SBenoît Canet     if (node_name) {
274312d3ba82SBenoît Canet         bs = bdrv_find_node(node_name);
274412d3ba82SBenoît Canet 
2745dd67fa50SBenoît Canet         if (bs) {
2746dd67fa50SBenoît Canet             return bs;
2747dd67fa50SBenoît Canet         }
274812d3ba82SBenoît Canet     }
274912d3ba82SBenoît Canet 
2750dd67fa50SBenoît Canet     error_setg(errp, "Cannot find device=%s nor node_name=%s",
2751dd67fa50SBenoît Canet                      device ? device : "",
2752dd67fa50SBenoît Canet                      node_name ? node_name : "");
2753dd67fa50SBenoît Canet     return NULL;
275412d3ba82SBenoît Canet }
275512d3ba82SBenoît Canet 
27565a6684d2SJeff Cody /* If 'base' is in the same chain as 'top', return true. Otherwise,
27575a6684d2SJeff Cody  * return false.  If either argument is NULL, return false. */
27585a6684d2SJeff Cody bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
27595a6684d2SJeff Cody {
27605a6684d2SJeff Cody     while (top && top != base) {
2761760e0063SKevin Wolf         top = backing_bs(top);
27625a6684d2SJeff Cody     }
27635a6684d2SJeff Cody 
27645a6684d2SJeff Cody     return top != NULL;
27655a6684d2SJeff Cody }
27665a6684d2SJeff Cody 
276704df765aSFam Zheng BlockDriverState *bdrv_next_node(BlockDriverState *bs)
276804df765aSFam Zheng {
276904df765aSFam Zheng     if (!bs) {
277004df765aSFam Zheng         return QTAILQ_FIRST(&graph_bdrv_states);
277104df765aSFam Zheng     }
277204df765aSFam Zheng     return QTAILQ_NEXT(bs, node_list);
277304df765aSFam Zheng }
277404df765aSFam Zheng 
277520a9e77dSFam Zheng const char *bdrv_get_node_name(const BlockDriverState *bs)
277620a9e77dSFam Zheng {
277720a9e77dSFam Zheng     return bs->node_name;
277820a9e77dSFam Zheng }
277920a9e77dSFam Zheng 
27801f0c461bSKevin Wolf const char *bdrv_get_parent_name(const BlockDriverState *bs)
27814c265bf9SKevin Wolf {
27824c265bf9SKevin Wolf     BdrvChild *c;
27834c265bf9SKevin Wolf     const char *name;
27844c265bf9SKevin Wolf 
27854c265bf9SKevin Wolf     /* If multiple parents have a name, just pick the first one. */
27864c265bf9SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
27874c265bf9SKevin Wolf         if (c->role->get_name) {
27884c265bf9SKevin Wolf             name = c->role->get_name(c);
27894c265bf9SKevin Wolf             if (name && *name) {
27904c265bf9SKevin Wolf                 return name;
27914c265bf9SKevin Wolf             }
27924c265bf9SKevin Wolf         }
27934c265bf9SKevin Wolf     }
27944c265bf9SKevin Wolf 
27954c265bf9SKevin Wolf     return NULL;
27964c265bf9SKevin Wolf }
27974c265bf9SKevin Wolf 
27987f06d47eSMarkus Armbruster /* TODO check what callers really want: bs->node_name or blk_name() */
2799bfb197e0SMarkus Armbruster const char *bdrv_get_device_name(const BlockDriverState *bs)
2800ea2384d3Sbellard {
28014c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: "";
2802ea2384d3Sbellard }
2803ea2384d3Sbellard 
28049b2aa84fSAlberto Garcia /* This can be used to identify nodes that might not have a device
28059b2aa84fSAlberto Garcia  * name associated. Since node and device names live in the same
28069b2aa84fSAlberto Garcia  * namespace, the result is unambiguous. The exception is if both are
28079b2aa84fSAlberto Garcia  * absent, then this returns an empty (non-null) string. */
28089b2aa84fSAlberto Garcia const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
28099b2aa84fSAlberto Garcia {
28104c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: bs->node_name;
28119b2aa84fSAlberto Garcia }
28129b2aa84fSAlberto Garcia 
2813c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs)
2814c8433287SMarkus Armbruster {
2815c8433287SMarkus Armbruster     return bs->open_flags;
2816c8433287SMarkus Armbruster }
2817c8433287SMarkus Armbruster 
28183ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs)
28193ac21627SPeter Lieven {
28203ac21627SPeter Lieven     return 1;
28213ac21627SPeter Lieven }
28223ac21627SPeter Lieven 
2823f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs)
2824f2feebbdSKevin Wolf {
2825f2feebbdSKevin Wolf     assert(bs->drv);
2826f2feebbdSKevin Wolf 
282711212d8fSPaolo Bonzini     /* If BS is a copy on write image, it is initialized to
282811212d8fSPaolo Bonzini        the contents of the base image, which may not be zeroes.  */
2829760e0063SKevin Wolf     if (bs->backing) {
283011212d8fSPaolo Bonzini         return 0;
283111212d8fSPaolo Bonzini     }
2832336c1c12SKevin Wolf     if (bs->drv->bdrv_has_zero_init) {
2833336c1c12SKevin Wolf         return bs->drv->bdrv_has_zero_init(bs);
2834f2feebbdSKevin Wolf     }
2835f2feebbdSKevin Wolf 
28363ac21627SPeter Lieven     /* safe default */
28373ac21627SPeter Lieven     return 0;
2838f2feebbdSKevin Wolf }
2839f2feebbdSKevin Wolf 
28404ce78691SPeter Lieven bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
28414ce78691SPeter Lieven {
28424ce78691SPeter Lieven     BlockDriverInfo bdi;
28434ce78691SPeter Lieven 
2844760e0063SKevin Wolf     if (bs->backing) {
28454ce78691SPeter Lieven         return false;
28464ce78691SPeter Lieven     }
28474ce78691SPeter Lieven 
28484ce78691SPeter Lieven     if (bdrv_get_info(bs, &bdi) == 0) {
28494ce78691SPeter Lieven         return bdi.unallocated_blocks_are_zero;
28504ce78691SPeter Lieven     }
28514ce78691SPeter Lieven 
28524ce78691SPeter Lieven     return false;
28534ce78691SPeter Lieven }
28544ce78691SPeter Lieven 
28554ce78691SPeter Lieven bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
28564ce78691SPeter Lieven {
28574ce78691SPeter Lieven     BlockDriverInfo bdi;
28584ce78691SPeter Lieven 
28592f0342efSDenis V. Lunev     if (!(bs->open_flags & BDRV_O_UNMAP)) {
28604ce78691SPeter Lieven         return false;
28614ce78691SPeter Lieven     }
28624ce78691SPeter Lieven 
28634ce78691SPeter Lieven     if (bdrv_get_info(bs, &bdi) == 0) {
28644ce78691SPeter Lieven         return bdi.can_write_zeroes_with_unmap;
28654ce78691SPeter Lieven     }
28664ce78691SPeter Lieven 
28674ce78691SPeter Lieven     return false;
28684ce78691SPeter Lieven }
28694ce78691SPeter Lieven 
2870045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
2871045df330Saliguori {
2872760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted)
2873045df330Saliguori         return bs->backing_file;
2874045df330Saliguori     else if (bs->encrypted)
2875045df330Saliguori         return bs->filename;
2876045df330Saliguori     else
2877045df330Saliguori         return NULL;
2878045df330Saliguori }
2879045df330Saliguori 
288083f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs,
288183f64091Sbellard                                char *filename, int filename_size)
288283f64091Sbellard {
288383f64091Sbellard     pstrcpy(filename, filename_size, bs->backing_file);
288483f64091Sbellard }
288583f64091Sbellard 
2886faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
2887faea38e7Sbellard {
2888faea38e7Sbellard     BlockDriver *drv = bs->drv;
2889faea38e7Sbellard     if (!drv)
289019cb3738Sbellard         return -ENOMEDIUM;
2891faea38e7Sbellard     if (!drv->bdrv_get_info)
2892faea38e7Sbellard         return -ENOTSUP;
2893faea38e7Sbellard     memset(bdi, 0, sizeof(*bdi));
2894faea38e7Sbellard     return drv->bdrv_get_info(bs, bdi);
2895faea38e7Sbellard }
2896faea38e7Sbellard 
2897eae041feSMax Reitz ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
2898eae041feSMax Reitz {
2899eae041feSMax Reitz     BlockDriver *drv = bs->drv;
2900eae041feSMax Reitz     if (drv && drv->bdrv_get_specific_info) {
2901eae041feSMax Reitz         return drv->bdrv_get_specific_info(bs);
2902eae041feSMax Reitz     }
2903eae041feSMax Reitz     return NULL;
2904eae041feSMax Reitz }
2905eae041feSMax Reitz 
2906a31939e6SEric Blake void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
29078b9b0cc2SKevin Wolf {
2908bf736fe3SKevin Wolf     if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
29098b9b0cc2SKevin Wolf         return;
29108b9b0cc2SKevin Wolf     }
29118b9b0cc2SKevin Wolf 
2912bf736fe3SKevin Wolf     bs->drv->bdrv_debug_event(bs, event);
291341c695c7SKevin Wolf }
29148b9b0cc2SKevin Wolf 
291541c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
291641c695c7SKevin Wolf                           const char *tag)
291741c695c7SKevin Wolf {
291841c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
29199a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
292041c695c7SKevin Wolf     }
292141c695c7SKevin Wolf 
292241c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
292341c695c7SKevin Wolf         return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
292441c695c7SKevin Wolf     }
292541c695c7SKevin Wolf 
292641c695c7SKevin Wolf     return -ENOTSUP;
292741c695c7SKevin Wolf }
292841c695c7SKevin Wolf 
29294cc70e93SFam Zheng int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
29304cc70e93SFam Zheng {
29314cc70e93SFam Zheng     while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
29329a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
29334cc70e93SFam Zheng     }
29344cc70e93SFam Zheng 
29354cc70e93SFam Zheng     if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
29364cc70e93SFam Zheng         return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
29374cc70e93SFam Zheng     }
29384cc70e93SFam Zheng 
29394cc70e93SFam Zheng     return -ENOTSUP;
29404cc70e93SFam Zheng }
29414cc70e93SFam Zheng 
294241c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
294341c695c7SKevin Wolf {
2944938789eaSMax Reitz     while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
29459a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
294641c695c7SKevin Wolf     }
294741c695c7SKevin Wolf 
294841c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
294941c695c7SKevin Wolf         return bs->drv->bdrv_debug_resume(bs, tag);
295041c695c7SKevin Wolf     }
295141c695c7SKevin Wolf 
295241c695c7SKevin Wolf     return -ENOTSUP;
295341c695c7SKevin Wolf }
295441c695c7SKevin Wolf 
295541c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
295641c695c7SKevin Wolf {
295741c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
29589a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
295941c695c7SKevin Wolf     }
296041c695c7SKevin Wolf 
296141c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
296241c695c7SKevin Wolf         return bs->drv->bdrv_debug_is_suspended(bs, tag);
296341c695c7SKevin Wolf     }
296441c695c7SKevin Wolf 
296541c695c7SKevin Wolf     return false;
29668b9b0cc2SKevin Wolf }
29678b9b0cc2SKevin Wolf 
2968199630b6SBlue Swirl int bdrv_is_snapshot(BlockDriverState *bs)
2969199630b6SBlue Swirl {
2970199630b6SBlue Swirl     return !!(bs->open_flags & BDRV_O_SNAPSHOT);
2971199630b6SBlue Swirl }
2972199630b6SBlue Swirl 
2973b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol.  If it is
2974b1b1d783SJeff Cody  * relative, it must be relative to the chain.  So, passing in bs->filename
2975b1b1d783SJeff Cody  * from a BDS as backing_file should not be done, as that may be relative to
2976b1b1d783SJeff Cody  * the CWD rather than the chain. */
2977e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
2978e8a6bb9cSMarcelo Tosatti         const char *backing_file)
2979e8a6bb9cSMarcelo Tosatti {
2980b1b1d783SJeff Cody     char *filename_full = NULL;
2981b1b1d783SJeff Cody     char *backing_file_full = NULL;
2982b1b1d783SJeff Cody     char *filename_tmp = NULL;
2983b1b1d783SJeff Cody     int is_protocol = 0;
2984b1b1d783SJeff Cody     BlockDriverState *curr_bs = NULL;
2985b1b1d783SJeff Cody     BlockDriverState *retval = NULL;
2986b1b1d783SJeff Cody 
2987b1b1d783SJeff Cody     if (!bs || !bs->drv || !backing_file) {
2988e8a6bb9cSMarcelo Tosatti         return NULL;
2989e8a6bb9cSMarcelo Tosatti     }
2990e8a6bb9cSMarcelo Tosatti 
2991b1b1d783SJeff Cody     filename_full     = g_malloc(PATH_MAX);
2992b1b1d783SJeff Cody     backing_file_full = g_malloc(PATH_MAX);
2993b1b1d783SJeff Cody     filename_tmp      = g_malloc(PATH_MAX);
2994b1b1d783SJeff Cody 
2995b1b1d783SJeff Cody     is_protocol = path_has_protocol(backing_file);
2996b1b1d783SJeff Cody 
2997760e0063SKevin Wolf     for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
2998b1b1d783SJeff Cody 
2999b1b1d783SJeff Cody         /* If either of the filename paths is actually a protocol, then
3000b1b1d783SJeff Cody          * compare unmodified paths; otherwise make paths relative */
3001b1b1d783SJeff Cody         if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
3002b1b1d783SJeff Cody             if (strcmp(backing_file, curr_bs->backing_file) == 0) {
3003760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
3004b1b1d783SJeff Cody                 break;
3005b1b1d783SJeff Cody             }
3006e8a6bb9cSMarcelo Tosatti         } else {
3007b1b1d783SJeff Cody             /* If not an absolute filename path, make it relative to the current
3008b1b1d783SJeff Cody              * image's filename path */
3009b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
3010b1b1d783SJeff Cody                          backing_file);
3011b1b1d783SJeff Cody 
3012b1b1d783SJeff Cody             /* We are going to compare absolute pathnames */
3013b1b1d783SJeff Cody             if (!realpath(filename_tmp, filename_full)) {
3014b1b1d783SJeff Cody                 continue;
3015b1b1d783SJeff Cody             }
3016b1b1d783SJeff Cody 
3017b1b1d783SJeff Cody             /* We need to make sure the backing filename we are comparing against
3018b1b1d783SJeff Cody              * is relative to the current image filename (or absolute) */
3019b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
3020b1b1d783SJeff Cody                          curr_bs->backing_file);
3021b1b1d783SJeff Cody 
3022b1b1d783SJeff Cody             if (!realpath(filename_tmp, backing_file_full)) {
3023b1b1d783SJeff Cody                 continue;
3024b1b1d783SJeff Cody             }
3025b1b1d783SJeff Cody 
3026b1b1d783SJeff Cody             if (strcmp(backing_file_full, filename_full) == 0) {
3027760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
3028b1b1d783SJeff Cody                 break;
3029b1b1d783SJeff Cody             }
3030e8a6bb9cSMarcelo Tosatti         }
3031e8a6bb9cSMarcelo Tosatti     }
3032e8a6bb9cSMarcelo Tosatti 
3033b1b1d783SJeff Cody     g_free(filename_full);
3034b1b1d783SJeff Cody     g_free(backing_file_full);
3035b1b1d783SJeff Cody     g_free(filename_tmp);
3036b1b1d783SJeff Cody     return retval;
3037e8a6bb9cSMarcelo Tosatti }
3038e8a6bb9cSMarcelo Tosatti 
3039f198fd1cSBenoît Canet int bdrv_get_backing_file_depth(BlockDriverState *bs)
3040f198fd1cSBenoît Canet {
3041f198fd1cSBenoît Canet     if (!bs->drv) {
3042f198fd1cSBenoît Canet         return 0;
3043f198fd1cSBenoît Canet     }
3044f198fd1cSBenoît Canet 
3045760e0063SKevin Wolf     if (!bs->backing) {
3046f198fd1cSBenoît Canet         return 0;
3047f198fd1cSBenoît Canet     }
3048f198fd1cSBenoît Canet 
3049760e0063SKevin Wolf     return 1 + bdrv_get_backing_file_depth(bs->backing->bs);
3050f198fd1cSBenoît Canet }
3051f198fd1cSBenoît Canet 
3052ea2384d3Sbellard void bdrv_init(void)
3053ea2384d3Sbellard {
30545efa9d5aSAnthony Liguori     module_call_init(MODULE_INIT_BLOCK);
3055ea2384d3Sbellard }
3056ce1a14dcSpbrook 
3057eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void)
3058eb852011SMarkus Armbruster {
3059eb852011SMarkus Armbruster     use_bdrv_whitelist = 1;
3060eb852011SMarkus Armbruster     bdrv_init();
3061eb852011SMarkus Armbruster }
3062eb852011SMarkus Armbruster 
30635a8a30dbSKevin Wolf void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
30640f15423cSAnthony Liguori {
30650d1c5c91SFam Zheng     BdrvChild *child;
30665a8a30dbSKevin Wolf     Error *local_err = NULL;
30675a8a30dbSKevin Wolf     int ret;
30685a8a30dbSKevin Wolf 
30693456a8d1SKevin Wolf     if (!bs->drv)  {
30703456a8d1SKevin Wolf         return;
30710f15423cSAnthony Liguori     }
30723456a8d1SKevin Wolf 
307304c01a5cSKevin Wolf     if (!(bs->open_flags & BDRV_O_INACTIVE)) {
30747ea2d269SAlexey Kardashevskiy         return;
30757ea2d269SAlexey Kardashevskiy     }
307604c01a5cSKevin Wolf     bs->open_flags &= ~BDRV_O_INACTIVE;
30777ea2d269SAlexey Kardashevskiy 
30783456a8d1SKevin Wolf     if (bs->drv->bdrv_invalidate_cache) {
30795a8a30dbSKevin Wolf         bs->drv->bdrv_invalidate_cache(bs, &local_err);
30805a8a30dbSKevin Wolf         if (local_err) {
308104c01a5cSKevin Wolf             bs->open_flags |= BDRV_O_INACTIVE;
30825a8a30dbSKevin Wolf             error_propagate(errp, local_err);
30835a8a30dbSKevin Wolf             return;
30843456a8d1SKevin Wolf         }
30850d1c5c91SFam Zheng     }
30860d1c5c91SFam Zheng 
30870d1c5c91SFam Zheng     QLIST_FOREACH(child, &bs->children, next) {
30880d1c5c91SFam Zheng         bdrv_invalidate_cache(child->bs, &local_err);
30890d1c5c91SFam Zheng         if (local_err) {
30900d1c5c91SFam Zheng             bs->open_flags |= BDRV_O_INACTIVE;
30910d1c5c91SFam Zheng             error_propagate(errp, local_err);
30920d1c5c91SFam Zheng             return;
30930d1c5c91SFam Zheng         }
30940d1c5c91SFam Zheng     }
30953456a8d1SKevin Wolf 
30965a8a30dbSKevin Wolf     ret = refresh_total_sectors(bs, bs->total_sectors);
30975a8a30dbSKevin Wolf     if (ret < 0) {
309804c01a5cSKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
30995a8a30dbSKevin Wolf         error_setg_errno(errp, -ret, "Could not refresh total sector count");
31005a8a30dbSKevin Wolf         return;
31015a8a30dbSKevin Wolf     }
31020f15423cSAnthony Liguori }
31030f15423cSAnthony Liguori 
31045a8a30dbSKevin Wolf void bdrv_invalidate_cache_all(Error **errp)
31050f15423cSAnthony Liguori {
31067c8eece4SKevin Wolf     BlockDriverState *bs;
31075a8a30dbSKevin Wolf     Error *local_err = NULL;
310888be7b4bSKevin Wolf     BdrvNextIterator it;
31090f15423cSAnthony Liguori 
311088be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3111ed78cda3SStefan Hajnoczi         AioContext *aio_context = bdrv_get_aio_context(bs);
3112ed78cda3SStefan Hajnoczi 
3113ed78cda3SStefan Hajnoczi         aio_context_acquire(aio_context);
31145a8a30dbSKevin Wolf         bdrv_invalidate_cache(bs, &local_err);
3115ed78cda3SStefan Hajnoczi         aio_context_release(aio_context);
31165a8a30dbSKevin Wolf         if (local_err) {
31175a8a30dbSKevin Wolf             error_propagate(errp, local_err);
31185a8a30dbSKevin Wolf             return;
31195a8a30dbSKevin Wolf         }
31200f15423cSAnthony Liguori     }
31210f15423cSAnthony Liguori }
31220f15423cSAnthony Liguori 
3123aad0b7a0SFam Zheng static int bdrv_inactivate_recurse(BlockDriverState *bs,
3124aad0b7a0SFam Zheng                                    bool setting_flag)
312576b1c7feSKevin Wolf {
3126aad0b7a0SFam Zheng     BdrvChild *child;
312776b1c7feSKevin Wolf     int ret;
312876b1c7feSKevin Wolf 
3129aad0b7a0SFam Zheng     if (!setting_flag && bs->drv->bdrv_inactivate) {
313076b1c7feSKevin Wolf         ret = bs->drv->bdrv_inactivate(bs);
313176b1c7feSKevin Wolf         if (ret < 0) {
313276b1c7feSKevin Wolf             return ret;
313376b1c7feSKevin Wolf         }
313476b1c7feSKevin Wolf     }
313576b1c7feSKevin Wolf 
3136aad0b7a0SFam Zheng     QLIST_FOREACH(child, &bs->children, next) {
3137aad0b7a0SFam Zheng         ret = bdrv_inactivate_recurse(child->bs, setting_flag);
3138aad0b7a0SFam Zheng         if (ret < 0) {
3139aad0b7a0SFam Zheng             return ret;
3140aad0b7a0SFam Zheng         }
3141aad0b7a0SFam Zheng     }
3142aad0b7a0SFam Zheng 
3143aad0b7a0SFam Zheng     if (setting_flag) {
314476b1c7feSKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
3145aad0b7a0SFam Zheng     }
314676b1c7feSKevin Wolf     return 0;
314776b1c7feSKevin Wolf }
314876b1c7feSKevin Wolf 
314976b1c7feSKevin Wolf int bdrv_inactivate_all(void)
315076b1c7feSKevin Wolf {
315179720af6SMax Reitz     BlockDriverState *bs = NULL;
315288be7b4bSKevin Wolf     BdrvNextIterator it;
3153aad0b7a0SFam Zheng     int ret = 0;
3154aad0b7a0SFam Zheng     int pass;
315576b1c7feSKevin Wolf 
315688be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3157aad0b7a0SFam Zheng         aio_context_acquire(bdrv_get_aio_context(bs));
3158aad0b7a0SFam Zheng     }
315976b1c7feSKevin Wolf 
3160aad0b7a0SFam Zheng     /* We do two passes of inactivation. The first pass calls to drivers'
3161aad0b7a0SFam Zheng      * .bdrv_inactivate callbacks recursively so all cache is flushed to disk;
3162aad0b7a0SFam Zheng      * the second pass sets the BDRV_O_INACTIVE flag so that no further write
3163aad0b7a0SFam Zheng      * is allowed. */
3164aad0b7a0SFam Zheng     for (pass = 0; pass < 2; pass++) {
316588be7b4bSKevin Wolf         for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3166aad0b7a0SFam Zheng             ret = bdrv_inactivate_recurse(bs, pass);
316776b1c7feSKevin Wolf             if (ret < 0) {
3168aad0b7a0SFam Zheng                 goto out;
3169aad0b7a0SFam Zheng             }
317076b1c7feSKevin Wolf         }
317176b1c7feSKevin Wolf     }
317276b1c7feSKevin Wolf 
3173aad0b7a0SFam Zheng out:
317488be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3175aad0b7a0SFam Zheng         aio_context_release(bdrv_get_aio_context(bs));
3176aad0b7a0SFam Zheng     }
3177aad0b7a0SFam Zheng 
3178aad0b7a0SFam Zheng     return ret;
317976b1c7feSKevin Wolf }
318076b1c7feSKevin Wolf 
3181f9f05dc5SKevin Wolf /**************************************************************/
318219cb3738Sbellard /* removable device support */
318319cb3738Sbellard 
318419cb3738Sbellard /**
318519cb3738Sbellard  * Return TRUE if the media is present
318619cb3738Sbellard  */
3187e031f750SMax Reitz bool bdrv_is_inserted(BlockDriverState *bs)
318819cb3738Sbellard {
318919cb3738Sbellard     BlockDriver *drv = bs->drv;
319028d7a789SMax Reitz     BdrvChild *child;
3191a1aff5bfSMarkus Armbruster 
3192e031f750SMax Reitz     if (!drv) {
3193e031f750SMax Reitz         return false;
3194e031f750SMax Reitz     }
319528d7a789SMax Reitz     if (drv->bdrv_is_inserted) {
3196a1aff5bfSMarkus Armbruster         return drv->bdrv_is_inserted(bs);
319719cb3738Sbellard     }
319828d7a789SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
319928d7a789SMax Reitz         if (!bdrv_is_inserted(child->bs)) {
320028d7a789SMax Reitz             return false;
320128d7a789SMax Reitz         }
320228d7a789SMax Reitz     }
320328d7a789SMax Reitz     return true;
320428d7a789SMax Reitz }
320519cb3738Sbellard 
320619cb3738Sbellard /**
32078e49ca46SMarkus Armbruster  * Return whether the media changed since the last call to this
32088e49ca46SMarkus Armbruster  * function, or -ENOTSUP if we don't know.  Most drivers don't know.
320919cb3738Sbellard  */
321019cb3738Sbellard int bdrv_media_changed(BlockDriverState *bs)
321119cb3738Sbellard {
321219cb3738Sbellard     BlockDriver *drv = bs->drv;
321319cb3738Sbellard 
32148e49ca46SMarkus Armbruster     if (drv && drv->bdrv_media_changed) {
32158e49ca46SMarkus Armbruster         return drv->bdrv_media_changed(bs);
32168e49ca46SMarkus Armbruster     }
32178e49ca46SMarkus Armbruster     return -ENOTSUP;
321819cb3738Sbellard }
321919cb3738Sbellard 
322019cb3738Sbellard /**
322119cb3738Sbellard  * If eject_flag is TRUE, eject the media. Otherwise, close the tray
322219cb3738Sbellard  */
3223f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag)
322419cb3738Sbellard {
322519cb3738Sbellard     BlockDriver *drv = bs->drv;
3226bfb197e0SMarkus Armbruster     const char *device_name;
322719cb3738Sbellard 
3228822e1cd1SMarkus Armbruster     if (drv && drv->bdrv_eject) {
3229822e1cd1SMarkus Armbruster         drv->bdrv_eject(bs, eject_flag);
323019cb3738Sbellard     }
32316f382ed2SLuiz Capitulino 
3232bfb197e0SMarkus Armbruster     device_name = bdrv_get_device_name(bs);
3233bfb197e0SMarkus Armbruster     if (device_name[0] != '\0') {
3234bfb197e0SMarkus Armbruster         qapi_event_send_device_tray_moved(device_name,
3235a5ee7bd4SWenchao Xia                                           eject_flag, &error_abort);
32366f382ed2SLuiz Capitulino     }
323719cb3738Sbellard }
323819cb3738Sbellard 
323919cb3738Sbellard /**
324019cb3738Sbellard  * Lock or unlock the media (if it is locked, the user won't be able
324119cb3738Sbellard  * to eject it manually).
324219cb3738Sbellard  */
3243025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked)
324419cb3738Sbellard {
324519cb3738Sbellard     BlockDriver *drv = bs->drv;
324619cb3738Sbellard 
3247025e849aSMarkus Armbruster     trace_bdrv_lock_medium(bs, locked);
3248b8c6d095SStefan Hajnoczi 
3249025e849aSMarkus Armbruster     if (drv && drv->bdrv_lock_medium) {
3250025e849aSMarkus Armbruster         drv->bdrv_lock_medium(bs, locked);
325119cb3738Sbellard     }
325219cb3738Sbellard }
3253985a03b0Sths 
32549fcb0251SFam Zheng /* Get a reference to bs */
32559fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs)
32569fcb0251SFam Zheng {
32579fcb0251SFam Zheng     bs->refcnt++;
32589fcb0251SFam Zheng }
32599fcb0251SFam Zheng 
32609fcb0251SFam Zheng /* Release a previously grabbed reference to bs.
32619fcb0251SFam Zheng  * If after releasing, reference count is zero, the BlockDriverState is
32629fcb0251SFam Zheng  * deleted. */
32639fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs)
32649fcb0251SFam Zheng {
32659a4d5ca6SJeff Cody     if (!bs) {
32669a4d5ca6SJeff Cody         return;
32679a4d5ca6SJeff Cody     }
32689fcb0251SFam Zheng     assert(bs->refcnt > 0);
32699fcb0251SFam Zheng     if (--bs->refcnt == 0) {
32709fcb0251SFam Zheng         bdrv_delete(bs);
32719fcb0251SFam Zheng     }
32729fcb0251SFam Zheng }
32739fcb0251SFam Zheng 
3274fbe40ff7SFam Zheng struct BdrvOpBlocker {
3275fbe40ff7SFam Zheng     Error *reason;
3276fbe40ff7SFam Zheng     QLIST_ENTRY(BdrvOpBlocker) list;
3277fbe40ff7SFam Zheng };
3278fbe40ff7SFam Zheng 
3279fbe40ff7SFam Zheng bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
3280fbe40ff7SFam Zheng {
3281fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
3282fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
3283fbe40ff7SFam Zheng     if (!QLIST_EMPTY(&bs->op_blockers[op])) {
3284fbe40ff7SFam Zheng         blocker = QLIST_FIRST(&bs->op_blockers[op]);
3285fbe40ff7SFam Zheng         if (errp) {
3286e43bfd9cSMarkus Armbruster             *errp = error_copy(blocker->reason);
3287e43bfd9cSMarkus Armbruster             error_prepend(errp, "Node '%s' is busy: ",
3288e43bfd9cSMarkus Armbruster                           bdrv_get_device_or_node_name(bs));
3289fbe40ff7SFam Zheng         }
3290fbe40ff7SFam Zheng         return true;
3291fbe40ff7SFam Zheng     }
3292fbe40ff7SFam Zheng     return false;
3293fbe40ff7SFam Zheng }
3294fbe40ff7SFam Zheng 
3295fbe40ff7SFam Zheng void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
3296fbe40ff7SFam Zheng {
3297fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
3298fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
3299fbe40ff7SFam Zheng 
33005839e53bSMarkus Armbruster     blocker = g_new0(BdrvOpBlocker, 1);
3301fbe40ff7SFam Zheng     blocker->reason = reason;
3302fbe40ff7SFam Zheng     QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
3303fbe40ff7SFam Zheng }
3304fbe40ff7SFam Zheng 
3305fbe40ff7SFam Zheng void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
3306fbe40ff7SFam Zheng {
3307fbe40ff7SFam Zheng     BdrvOpBlocker *blocker, *next;
3308fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
3309fbe40ff7SFam Zheng     QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
3310fbe40ff7SFam Zheng         if (blocker->reason == reason) {
3311fbe40ff7SFam Zheng             QLIST_REMOVE(blocker, list);
3312fbe40ff7SFam Zheng             g_free(blocker);
3313fbe40ff7SFam Zheng         }
3314fbe40ff7SFam Zheng     }
3315fbe40ff7SFam Zheng }
3316fbe40ff7SFam Zheng 
3317fbe40ff7SFam Zheng void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
3318fbe40ff7SFam Zheng {
3319fbe40ff7SFam Zheng     int i;
3320fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
3321fbe40ff7SFam Zheng         bdrv_op_block(bs, i, reason);
3322fbe40ff7SFam Zheng     }
3323fbe40ff7SFam Zheng }
3324fbe40ff7SFam Zheng 
3325fbe40ff7SFam Zheng void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
3326fbe40ff7SFam Zheng {
3327fbe40ff7SFam Zheng     int i;
3328fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
3329fbe40ff7SFam Zheng         bdrv_op_unblock(bs, i, reason);
3330fbe40ff7SFam Zheng     }
3331fbe40ff7SFam Zheng }
3332fbe40ff7SFam Zheng 
3333fbe40ff7SFam Zheng bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
3334fbe40ff7SFam Zheng {
3335fbe40ff7SFam Zheng     int i;
3336fbe40ff7SFam Zheng 
3337fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
3338fbe40ff7SFam Zheng         if (!QLIST_EMPTY(&bs->op_blockers[i])) {
3339fbe40ff7SFam Zheng             return false;
3340fbe40ff7SFam Zheng         }
3341fbe40ff7SFam Zheng     }
3342fbe40ff7SFam Zheng     return true;
3343fbe40ff7SFam Zheng }
3344fbe40ff7SFam Zheng 
3345d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt,
3346f88e1a42SJes Sorensen                      const char *base_filename, const char *base_fmt,
3347f382d43aSMiroslav Rezanina                      char *options, uint64_t img_size, int flags,
3348f382d43aSMiroslav Rezanina                      Error **errp, bool quiet)
3349f88e1a42SJes Sorensen {
335083d0521aSChunyan Liu     QemuOptsList *create_opts = NULL;
335183d0521aSChunyan Liu     QemuOpts *opts = NULL;
335283d0521aSChunyan Liu     const char *backing_fmt, *backing_file;
335383d0521aSChunyan Liu     int64_t size;
3354f88e1a42SJes Sorensen     BlockDriver *drv, *proto_drv;
3355cc84d90fSMax Reitz     Error *local_err = NULL;
3356f88e1a42SJes Sorensen     int ret = 0;
3357f88e1a42SJes Sorensen 
3358f88e1a42SJes Sorensen     /* Find driver and parse its options */
3359f88e1a42SJes Sorensen     drv = bdrv_find_format(fmt);
3360f88e1a42SJes Sorensen     if (!drv) {
336171c79813SLuiz Capitulino         error_setg(errp, "Unknown file format '%s'", fmt);
3362d92ada22SLuiz Capitulino         return;
3363f88e1a42SJes Sorensen     }
3364f88e1a42SJes Sorensen 
3365b65a5e12SMax Reitz     proto_drv = bdrv_find_protocol(filename, true, errp);
3366f88e1a42SJes Sorensen     if (!proto_drv) {
3367d92ada22SLuiz Capitulino         return;
3368f88e1a42SJes Sorensen     }
3369f88e1a42SJes Sorensen 
3370c6149724SMax Reitz     if (!drv->create_opts) {
3371c6149724SMax Reitz         error_setg(errp, "Format driver '%s' does not support image creation",
3372c6149724SMax Reitz                    drv->format_name);
3373c6149724SMax Reitz         return;
3374c6149724SMax Reitz     }
3375c6149724SMax Reitz 
3376c6149724SMax Reitz     if (!proto_drv->create_opts) {
3377c6149724SMax Reitz         error_setg(errp, "Protocol driver '%s' does not support image creation",
3378c6149724SMax Reitz                    proto_drv->format_name);
3379c6149724SMax Reitz         return;
3380c6149724SMax Reitz     }
3381c6149724SMax Reitz 
3382c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, drv->create_opts);
3383c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
3384f88e1a42SJes Sorensen 
3385f88e1a42SJes Sorensen     /* Create parameter list with default values */
338683d0521aSChunyan Liu     opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
338739101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
3388f88e1a42SJes Sorensen 
3389f88e1a42SJes Sorensen     /* Parse -o options */
3390f88e1a42SJes Sorensen     if (options) {
3391dc523cd3SMarkus Armbruster         qemu_opts_do_parse(opts, options, NULL, &local_err);
3392dc523cd3SMarkus Armbruster         if (local_err) {
3393dc523cd3SMarkus Armbruster             error_report_err(local_err);
3394dc523cd3SMarkus Armbruster             local_err = NULL;
339583d0521aSChunyan Liu             error_setg(errp, "Invalid options for file format '%s'", fmt);
3396f88e1a42SJes Sorensen             goto out;
3397f88e1a42SJes Sorensen         }
3398f88e1a42SJes Sorensen     }
3399f88e1a42SJes Sorensen 
3400f88e1a42SJes Sorensen     if (base_filename) {
3401f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
34026be4194bSMarkus Armbruster         if (local_err) {
340371c79813SLuiz Capitulino             error_setg(errp, "Backing file not supported for file format '%s'",
340471c79813SLuiz Capitulino                        fmt);
3405f88e1a42SJes Sorensen             goto out;
3406f88e1a42SJes Sorensen         }
3407f88e1a42SJes Sorensen     }
3408f88e1a42SJes Sorensen 
3409f88e1a42SJes Sorensen     if (base_fmt) {
3410f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
34116be4194bSMarkus Armbruster         if (local_err) {
341271c79813SLuiz Capitulino             error_setg(errp, "Backing file format not supported for file "
341371c79813SLuiz Capitulino                              "format '%s'", fmt);
3414f88e1a42SJes Sorensen             goto out;
3415f88e1a42SJes Sorensen         }
3416f88e1a42SJes Sorensen     }
3417f88e1a42SJes Sorensen 
341883d0521aSChunyan Liu     backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
341983d0521aSChunyan Liu     if (backing_file) {
342083d0521aSChunyan Liu         if (!strcmp(filename, backing_file)) {
342171c79813SLuiz Capitulino             error_setg(errp, "Error: Trying to create an image with the "
342271c79813SLuiz Capitulino                              "same filename as the backing file");
3423792da93aSJes Sorensen             goto out;
3424792da93aSJes Sorensen         }
3425792da93aSJes Sorensen     }
3426792da93aSJes Sorensen 
342783d0521aSChunyan Liu     backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
3428f88e1a42SJes Sorensen 
3429f88e1a42SJes Sorensen     // The size for the image must always be specified, with one exception:
3430f88e1a42SJes Sorensen     // If we are using a backing file, we can obtain the size from there
343183d0521aSChunyan Liu     size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0);
343283d0521aSChunyan Liu     if (size == -1) {
343383d0521aSChunyan Liu         if (backing_file) {
343466f6b814SMax Reitz             BlockDriverState *bs;
343529168018SMax Reitz             char *full_backing = g_new0(char, PATH_MAX);
343652bf1e72SMarkus Armbruster             int64_t size;
343763090dacSPaolo Bonzini             int back_flags;
3438e6641719SMax Reitz             QDict *backing_options = NULL;
343963090dacSPaolo Bonzini 
344029168018SMax Reitz             bdrv_get_full_backing_filename_from_filename(filename, backing_file,
344129168018SMax Reitz                                                          full_backing, PATH_MAX,
344229168018SMax Reitz                                                          &local_err);
344329168018SMax Reitz             if (local_err) {
344429168018SMax Reitz                 g_free(full_backing);
344529168018SMax Reitz                 goto out;
344629168018SMax Reitz             }
344729168018SMax Reitz 
344863090dacSPaolo Bonzini             /* backing files always opened read-only */
344961de4c68SKevin Wolf             back_flags = flags;
3450bfd18d1eSKevin Wolf             back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
3451f88e1a42SJes Sorensen 
3452e6641719SMax Reitz             if (backing_fmt) {
3453e6641719SMax Reitz                 backing_options = qdict_new();
3454e6641719SMax Reitz                 qdict_put(backing_options, "driver",
3455e6641719SMax Reitz                           qstring_from_str(backing_fmt));
3456e6641719SMax Reitz             }
3457e6641719SMax Reitz 
34585b363937SMax Reitz             bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
34595b363937SMax Reitz                            &local_err);
346029168018SMax Reitz             g_free(full_backing);
34615b363937SMax Reitz             if (!bs) {
3462f88e1a42SJes Sorensen                 goto out;
3463f88e1a42SJes Sorensen             }
346452bf1e72SMarkus Armbruster             size = bdrv_getlength(bs);
346552bf1e72SMarkus Armbruster             if (size < 0) {
346652bf1e72SMarkus Armbruster                 error_setg_errno(errp, -size, "Could not get size of '%s'",
346752bf1e72SMarkus Armbruster                                  backing_file);
346852bf1e72SMarkus Armbruster                 bdrv_unref(bs);
346952bf1e72SMarkus Armbruster                 goto out;
347052bf1e72SMarkus Armbruster             }
3471f88e1a42SJes Sorensen 
347239101f25SMarkus Armbruster             qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
347366f6b814SMax Reitz 
347466f6b814SMax Reitz             bdrv_unref(bs);
3475f88e1a42SJes Sorensen         } else {
347671c79813SLuiz Capitulino             error_setg(errp, "Image creation needs a size parameter");
3477f88e1a42SJes Sorensen             goto out;
3478f88e1a42SJes Sorensen         }
3479f88e1a42SJes Sorensen     }
3480f88e1a42SJes Sorensen 
3481f382d43aSMiroslav Rezanina     if (!quiet) {
3482f88e1a42SJes Sorensen         printf("Formatting '%s', fmt=%s ", filename, fmt);
348343c5d8f8SFam Zheng         qemu_opts_print(opts, " ");
3484f88e1a42SJes Sorensen         puts("");
3485f382d43aSMiroslav Rezanina     }
348683d0521aSChunyan Liu 
3487c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
348883d0521aSChunyan Liu 
3489cc84d90fSMax Reitz     if (ret == -EFBIG) {
3490cc84d90fSMax Reitz         /* This is generally a better message than whatever the driver would
3491cc84d90fSMax Reitz          * deliver (especially because of the cluster_size_hint), since that
3492cc84d90fSMax Reitz          * is most probably not much different from "image too large". */
3493f3f4d2c0SKevin Wolf         const char *cluster_size_hint = "";
349483d0521aSChunyan Liu         if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
3495f3f4d2c0SKevin Wolf             cluster_size_hint = " (try using a larger cluster size)";
3496f3f4d2c0SKevin Wolf         }
3497cc84d90fSMax Reitz         error_setg(errp, "The image size is too large for file format '%s'"
3498cc84d90fSMax Reitz                    "%s", fmt, cluster_size_hint);
3499cc84d90fSMax Reitz         error_free(local_err);
3500cc84d90fSMax Reitz         local_err = NULL;
3501f88e1a42SJes Sorensen     }
3502f88e1a42SJes Sorensen 
3503f88e1a42SJes Sorensen out:
350483d0521aSChunyan Liu     qemu_opts_del(opts);
350583d0521aSChunyan Liu     qemu_opts_free(create_opts);
3506cc84d90fSMax Reitz     error_propagate(errp, local_err);
3507cc84d90fSMax Reitz }
350885d126f3SStefan Hajnoczi 
350985d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs)
351085d126f3SStefan Hajnoczi {
3511dcd04228SStefan Hajnoczi     return bs->aio_context;
3512dcd04228SStefan Hajnoczi }
3513dcd04228SStefan Hajnoczi 
3514e8a095daSStefan Hajnoczi static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
3515e8a095daSStefan Hajnoczi {
3516e8a095daSStefan Hajnoczi     QLIST_REMOVE(ban, list);
3517e8a095daSStefan Hajnoczi     g_free(ban);
3518e8a095daSStefan Hajnoczi }
3519e8a095daSStefan Hajnoczi 
3520dcd04228SStefan Hajnoczi void bdrv_detach_aio_context(BlockDriverState *bs)
3521dcd04228SStefan Hajnoczi {
3522e8a095daSStefan Hajnoczi     BdrvAioNotifier *baf, *baf_tmp;
3523b97511c7SMax Reitz     BdrvChild *child;
352433384421SMax Reitz 
3525dcd04228SStefan Hajnoczi     if (!bs->drv) {
3526dcd04228SStefan Hajnoczi         return;
3527dcd04228SStefan Hajnoczi     }
3528dcd04228SStefan Hajnoczi 
3529e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
3530e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
3531e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
3532e8a095daSStefan Hajnoczi         if (baf->deleted) {
3533e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(baf);
3534e8a095daSStefan Hajnoczi         } else {
353533384421SMax Reitz             baf->detach_aio_context(baf->opaque);
353633384421SMax Reitz         }
3537e8a095daSStefan Hajnoczi     }
3538e8a095daSStefan Hajnoczi     /* Never mind iterating again to check for ->deleted.  bdrv_close() will
3539e8a095daSStefan Hajnoczi      * remove remaining aio notifiers if we aren't called again.
3540e8a095daSStefan Hajnoczi      */
3541e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
354233384421SMax Reitz 
3543dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_detach_aio_context) {
3544dcd04228SStefan Hajnoczi         bs->drv->bdrv_detach_aio_context(bs);
3545dcd04228SStefan Hajnoczi     }
3546b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
3547b97511c7SMax Reitz         bdrv_detach_aio_context(child->bs);
3548dcd04228SStefan Hajnoczi     }
3549dcd04228SStefan Hajnoczi 
3550dcd04228SStefan Hajnoczi     bs->aio_context = NULL;
3551dcd04228SStefan Hajnoczi }
3552dcd04228SStefan Hajnoczi 
3553dcd04228SStefan Hajnoczi void bdrv_attach_aio_context(BlockDriverState *bs,
3554dcd04228SStefan Hajnoczi                              AioContext *new_context)
3555dcd04228SStefan Hajnoczi {
3556e8a095daSStefan Hajnoczi     BdrvAioNotifier *ban, *ban_tmp;
3557b97511c7SMax Reitz     BdrvChild *child;
355833384421SMax Reitz 
3559dcd04228SStefan Hajnoczi     if (!bs->drv) {
3560dcd04228SStefan Hajnoczi         return;
3561dcd04228SStefan Hajnoczi     }
3562dcd04228SStefan Hajnoczi 
3563dcd04228SStefan Hajnoczi     bs->aio_context = new_context;
3564dcd04228SStefan Hajnoczi 
3565b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
3566b97511c7SMax Reitz         bdrv_attach_aio_context(child->bs, new_context);
3567dcd04228SStefan Hajnoczi     }
3568dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_attach_aio_context) {
3569dcd04228SStefan Hajnoczi         bs->drv->bdrv_attach_aio_context(bs, new_context);
3570dcd04228SStefan Hajnoczi     }
357133384421SMax Reitz 
3572e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
3573e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
3574e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
3575e8a095daSStefan Hajnoczi         if (ban->deleted) {
3576e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(ban);
3577e8a095daSStefan Hajnoczi         } else {
357833384421SMax Reitz             ban->attached_aio_context(new_context, ban->opaque);
357933384421SMax Reitz         }
3580dcd04228SStefan Hajnoczi     }
3581e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
3582e8a095daSStefan Hajnoczi }
3583dcd04228SStefan Hajnoczi 
3584dcd04228SStefan Hajnoczi void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
3585dcd04228SStefan Hajnoczi {
358653ec73e2SFam Zheng     bdrv_drain(bs); /* ensure there are no in-flight requests */
3587dcd04228SStefan Hajnoczi 
3588dcd04228SStefan Hajnoczi     bdrv_detach_aio_context(bs);
3589dcd04228SStefan Hajnoczi 
3590dcd04228SStefan Hajnoczi     /* This function executes in the old AioContext so acquire the new one in
3591dcd04228SStefan Hajnoczi      * case it runs in a different thread.
3592dcd04228SStefan Hajnoczi      */
3593dcd04228SStefan Hajnoczi     aio_context_acquire(new_context);
3594dcd04228SStefan Hajnoczi     bdrv_attach_aio_context(bs, new_context);
3595dcd04228SStefan Hajnoczi     aio_context_release(new_context);
359685d126f3SStefan Hajnoczi }
3597d616b224SStefan Hajnoczi 
359833384421SMax Reitz void bdrv_add_aio_context_notifier(BlockDriverState *bs,
359933384421SMax Reitz         void (*attached_aio_context)(AioContext *new_context, void *opaque),
360033384421SMax Reitz         void (*detach_aio_context)(void *opaque), void *opaque)
360133384421SMax Reitz {
360233384421SMax Reitz     BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
360333384421SMax Reitz     *ban = (BdrvAioNotifier){
360433384421SMax Reitz         .attached_aio_context = attached_aio_context,
360533384421SMax Reitz         .detach_aio_context   = detach_aio_context,
360633384421SMax Reitz         .opaque               = opaque
360733384421SMax Reitz     };
360833384421SMax Reitz 
360933384421SMax Reitz     QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
361033384421SMax Reitz }
361133384421SMax Reitz 
361233384421SMax Reitz void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
361333384421SMax Reitz                                       void (*attached_aio_context)(AioContext *,
361433384421SMax Reitz                                                                    void *),
361533384421SMax Reitz                                       void (*detach_aio_context)(void *),
361633384421SMax Reitz                                       void *opaque)
361733384421SMax Reitz {
361833384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
361933384421SMax Reitz 
362033384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
362133384421SMax Reitz         if (ban->attached_aio_context == attached_aio_context &&
362233384421SMax Reitz             ban->detach_aio_context   == detach_aio_context   &&
3623e8a095daSStefan Hajnoczi             ban->opaque               == opaque               &&
3624e8a095daSStefan Hajnoczi             ban->deleted              == false)
362533384421SMax Reitz         {
3626e8a095daSStefan Hajnoczi             if (bs->walking_aio_notifiers) {
3627e8a095daSStefan Hajnoczi                 ban->deleted = true;
3628e8a095daSStefan Hajnoczi             } else {
3629e8a095daSStefan Hajnoczi                 bdrv_do_remove_aio_context_notifier(ban);
3630e8a095daSStefan Hajnoczi             }
363133384421SMax Reitz             return;
363233384421SMax Reitz         }
363333384421SMax Reitz     }
363433384421SMax Reitz 
363533384421SMax Reitz     abort();
363633384421SMax Reitz }
363733384421SMax Reitz 
363877485434SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
36398b13976dSMax Reitz                        BlockDriverAmendStatusCB *status_cb, void *cb_opaque)
36406f176b48SMax Reitz {
3641c282e1fdSChunyan Liu     if (!bs->drv->bdrv_amend_options) {
36426f176b48SMax Reitz         return -ENOTSUP;
36436f176b48SMax Reitz     }
36448b13976dSMax Reitz     return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque);
36456f176b48SMax Reitz }
3646f6186f49SBenoît Canet 
3647b5042a36SBenoît Canet /* This function will be called by the bdrv_recurse_is_first_non_filter method
3648b5042a36SBenoît Canet  * of block filter and by bdrv_is_first_non_filter.
3649b5042a36SBenoît Canet  * It is used to test if the given bs is the candidate or recurse more in the
3650b5042a36SBenoît Canet  * node graph.
3651212a5a8fSBenoît Canet  */
3652212a5a8fSBenoît Canet bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
3653212a5a8fSBenoît Canet                                       BlockDriverState *candidate)
3654f6186f49SBenoît Canet {
3655b5042a36SBenoît Canet     /* return false if basic checks fails */
3656b5042a36SBenoît Canet     if (!bs || !bs->drv) {
3657b5042a36SBenoît Canet         return false;
3658b5042a36SBenoît Canet     }
3659b5042a36SBenoît Canet 
3660b5042a36SBenoît Canet     /* the code reached a non block filter driver -> check if the bs is
3661b5042a36SBenoît Canet      * the same as the candidate. It's the recursion termination condition.
3662b5042a36SBenoît Canet      */
3663b5042a36SBenoît Canet     if (!bs->drv->is_filter) {
3664b5042a36SBenoît Canet         return bs == candidate;
3665b5042a36SBenoît Canet     }
3666b5042a36SBenoît Canet     /* Down this path the driver is a block filter driver */
3667b5042a36SBenoît Canet 
3668b5042a36SBenoît Canet     /* If the block filter recursion method is defined use it to recurse down
3669b5042a36SBenoît Canet      * the node graph.
3670b5042a36SBenoît Canet      */
3671b5042a36SBenoît Canet     if (bs->drv->bdrv_recurse_is_first_non_filter) {
3672212a5a8fSBenoît Canet         return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
3673212a5a8fSBenoît Canet     }
3674212a5a8fSBenoît Canet 
3675b5042a36SBenoît Canet     /* the driver is a block filter but don't allow to recurse -> return false
3676b5042a36SBenoît Canet      */
3677b5042a36SBenoît Canet     return false;
3678212a5a8fSBenoît Canet }
3679212a5a8fSBenoît Canet 
3680212a5a8fSBenoît Canet /* This function checks if the candidate is the first non filter bs down it's
3681212a5a8fSBenoît Canet  * bs chain. Since we don't have pointers to parents it explore all bs chains
3682212a5a8fSBenoît Canet  * from the top. Some filters can choose not to pass down the recursion.
3683212a5a8fSBenoît Canet  */
3684212a5a8fSBenoît Canet bool bdrv_is_first_non_filter(BlockDriverState *candidate)
3685212a5a8fSBenoît Canet {
36867c8eece4SKevin Wolf     BlockDriverState *bs;
368788be7b4bSKevin Wolf     BdrvNextIterator it;
3688212a5a8fSBenoît Canet 
3689212a5a8fSBenoît Canet     /* walk down the bs forest recursively */
369088be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3691212a5a8fSBenoît Canet         bool perm;
3692212a5a8fSBenoît Canet 
3693b5042a36SBenoît Canet         /* try to recurse in this top level bs */
3694e6dc8a1fSKevin Wolf         perm = bdrv_recurse_is_first_non_filter(bs, candidate);
3695212a5a8fSBenoît Canet 
3696212a5a8fSBenoît Canet         /* candidate is the first non filter */
3697212a5a8fSBenoît Canet         if (perm) {
3698212a5a8fSBenoît Canet             return true;
3699212a5a8fSBenoît Canet         }
3700212a5a8fSBenoît Canet     }
3701212a5a8fSBenoît Canet 
3702212a5a8fSBenoît Canet     return false;
3703f6186f49SBenoît Canet }
370409158f00SBenoît Canet 
3705e12f3784SWen Congyang BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
3706e12f3784SWen Congyang                                         const char *node_name, Error **errp)
370709158f00SBenoît Canet {
370809158f00SBenoît Canet     BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
37095a7e7a0bSStefan Hajnoczi     AioContext *aio_context;
37105a7e7a0bSStefan Hajnoczi 
371109158f00SBenoît Canet     if (!to_replace_bs) {
371209158f00SBenoît Canet         error_setg(errp, "Node name '%s' not found", node_name);
371309158f00SBenoît Canet         return NULL;
371409158f00SBenoît Canet     }
371509158f00SBenoît Canet 
37165a7e7a0bSStefan Hajnoczi     aio_context = bdrv_get_aio_context(to_replace_bs);
37175a7e7a0bSStefan Hajnoczi     aio_context_acquire(aio_context);
37185a7e7a0bSStefan Hajnoczi 
371909158f00SBenoît Canet     if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
37205a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
37215a7e7a0bSStefan Hajnoczi         goto out;
372209158f00SBenoît Canet     }
372309158f00SBenoît Canet 
372409158f00SBenoît Canet     /* We don't want arbitrary node of the BDS chain to be replaced only the top
372509158f00SBenoît Canet      * most non filter in order to prevent data corruption.
372609158f00SBenoît Canet      * Another benefit is that this tests exclude backing files which are
372709158f00SBenoît Canet      * blocked by the backing blockers.
372809158f00SBenoît Canet      */
3729e12f3784SWen Congyang     if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
373009158f00SBenoît Canet         error_setg(errp, "Only top most non filter can be replaced");
37315a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
37325a7e7a0bSStefan Hajnoczi         goto out;
373309158f00SBenoît Canet     }
373409158f00SBenoît Canet 
37355a7e7a0bSStefan Hajnoczi out:
37365a7e7a0bSStefan Hajnoczi     aio_context_release(aio_context);
373709158f00SBenoît Canet     return to_replace_bs;
373809158f00SBenoît Canet }
3739448ad91dSMing Lei 
374091af7014SMax Reitz static bool append_open_options(QDict *d, BlockDriverState *bs)
374191af7014SMax Reitz {
374291af7014SMax Reitz     const QDictEntry *entry;
37439e700c1aSKevin Wolf     QemuOptDesc *desc;
3744260fecf1SKevin Wolf     BdrvChild *child;
374591af7014SMax Reitz     bool found_any = false;
3746260fecf1SKevin Wolf     const char *p;
374791af7014SMax Reitz 
374891af7014SMax Reitz     for (entry = qdict_first(bs->options); entry;
374991af7014SMax Reitz          entry = qdict_next(bs->options, entry))
375091af7014SMax Reitz     {
3751260fecf1SKevin Wolf         /* Exclude options for children */
3752260fecf1SKevin Wolf         QLIST_FOREACH(child, &bs->children, next) {
3753260fecf1SKevin Wolf             if (strstart(qdict_entry_key(entry), child->name, &p)
3754260fecf1SKevin Wolf                 && (!*p || *p == '.'))
3755260fecf1SKevin Wolf             {
3756260fecf1SKevin Wolf                 break;
3757260fecf1SKevin Wolf             }
3758260fecf1SKevin Wolf         }
3759260fecf1SKevin Wolf         if (child) {
37609e700c1aSKevin Wolf             continue;
37619e700c1aSKevin Wolf         }
37629e700c1aSKevin Wolf 
37639e700c1aSKevin Wolf         /* And exclude all non-driver-specific options */
37649e700c1aSKevin Wolf         for (desc = bdrv_runtime_opts.desc; desc->name; desc++) {
37659e700c1aSKevin Wolf             if (!strcmp(qdict_entry_key(entry), desc->name)) {
37669e700c1aSKevin Wolf                 break;
37679e700c1aSKevin Wolf             }
37689e700c1aSKevin Wolf         }
37699e700c1aSKevin Wolf         if (desc->name) {
37709e700c1aSKevin Wolf             continue;
37719e700c1aSKevin Wolf         }
37729e700c1aSKevin Wolf 
377391af7014SMax Reitz         qobject_incref(qdict_entry_value(entry));
377491af7014SMax Reitz         qdict_put_obj(d, qdict_entry_key(entry), qdict_entry_value(entry));
377591af7014SMax Reitz         found_any = true;
377691af7014SMax Reitz     }
377791af7014SMax Reitz 
377891af7014SMax Reitz     return found_any;
377991af7014SMax Reitz }
378091af7014SMax Reitz 
378191af7014SMax Reitz /* Updates the following BDS fields:
378291af7014SMax Reitz  *  - exact_filename: A filename which may be used for opening a block device
378391af7014SMax Reitz  *                    which (mostly) equals the given BDS (even without any
378491af7014SMax Reitz  *                    other options; so reading and writing must return the same
378591af7014SMax Reitz  *                    results, but caching etc. may be different)
378691af7014SMax Reitz  *  - full_open_options: Options which, when given when opening a block device
378791af7014SMax Reitz  *                       (without a filename), result in a BDS (mostly)
378891af7014SMax Reitz  *                       equalling the given one
378991af7014SMax Reitz  *  - filename: If exact_filename is set, it is copied here. Otherwise,
379091af7014SMax Reitz  *              full_open_options is converted to a JSON object, prefixed with
379191af7014SMax Reitz  *              "json:" (for use through the JSON pseudo protocol) and put here.
379291af7014SMax Reitz  */
379391af7014SMax Reitz void bdrv_refresh_filename(BlockDriverState *bs)
379491af7014SMax Reitz {
379591af7014SMax Reitz     BlockDriver *drv = bs->drv;
379691af7014SMax Reitz     QDict *opts;
379791af7014SMax Reitz 
379891af7014SMax Reitz     if (!drv) {
379991af7014SMax Reitz         return;
380091af7014SMax Reitz     }
380191af7014SMax Reitz 
380291af7014SMax Reitz     /* This BDS's file name will most probably depend on its file's name, so
380391af7014SMax Reitz      * refresh that first */
380491af7014SMax Reitz     if (bs->file) {
38059a4f4c31SKevin Wolf         bdrv_refresh_filename(bs->file->bs);
380691af7014SMax Reitz     }
380791af7014SMax Reitz 
380891af7014SMax Reitz     if (drv->bdrv_refresh_filename) {
380991af7014SMax Reitz         /* Obsolete information is of no use here, so drop the old file name
381091af7014SMax Reitz          * information before refreshing it */
381191af7014SMax Reitz         bs->exact_filename[0] = '\0';
381291af7014SMax Reitz         if (bs->full_open_options) {
381391af7014SMax Reitz             QDECREF(bs->full_open_options);
381491af7014SMax Reitz             bs->full_open_options = NULL;
381591af7014SMax Reitz         }
381691af7014SMax Reitz 
38174cdd01d3SKevin Wolf         opts = qdict_new();
38184cdd01d3SKevin Wolf         append_open_options(opts, bs);
38194cdd01d3SKevin Wolf         drv->bdrv_refresh_filename(bs, opts);
38204cdd01d3SKevin Wolf         QDECREF(opts);
382191af7014SMax Reitz     } else if (bs->file) {
382291af7014SMax Reitz         /* Try to reconstruct valid information from the underlying file */
382391af7014SMax Reitz         bool has_open_options;
382491af7014SMax Reitz 
382591af7014SMax Reitz         bs->exact_filename[0] = '\0';
382691af7014SMax Reitz         if (bs->full_open_options) {
382791af7014SMax Reitz             QDECREF(bs->full_open_options);
382891af7014SMax Reitz             bs->full_open_options = NULL;
382991af7014SMax Reitz         }
383091af7014SMax Reitz 
383191af7014SMax Reitz         opts = qdict_new();
383291af7014SMax Reitz         has_open_options = append_open_options(opts, bs);
383391af7014SMax Reitz 
383491af7014SMax Reitz         /* If no specific options have been given for this BDS, the filename of
383591af7014SMax Reitz          * the underlying file should suffice for this one as well */
38369a4f4c31SKevin Wolf         if (bs->file->bs->exact_filename[0] && !has_open_options) {
38379a4f4c31SKevin Wolf             strcpy(bs->exact_filename, bs->file->bs->exact_filename);
383891af7014SMax Reitz         }
383991af7014SMax Reitz         /* Reconstructing the full options QDict is simple for most format block
384091af7014SMax Reitz          * drivers, as long as the full options are known for the underlying
384191af7014SMax Reitz          * file BDS. The full options QDict of that file BDS should somehow
384291af7014SMax Reitz          * contain a representation of the filename, therefore the following
384391af7014SMax Reitz          * suffices without querying the (exact_)filename of this BDS. */
38449a4f4c31SKevin Wolf         if (bs->file->bs->full_open_options) {
384591af7014SMax Reitz             qdict_put_obj(opts, "driver",
384691af7014SMax Reitz                           QOBJECT(qstring_from_str(drv->format_name)));
38479a4f4c31SKevin Wolf             QINCREF(bs->file->bs->full_open_options);
38489a4f4c31SKevin Wolf             qdict_put_obj(opts, "file",
38499a4f4c31SKevin Wolf                           QOBJECT(bs->file->bs->full_open_options));
385091af7014SMax Reitz 
385191af7014SMax Reitz             bs->full_open_options = opts;
385291af7014SMax Reitz         } else {
385391af7014SMax Reitz             QDECREF(opts);
385491af7014SMax Reitz         }
385591af7014SMax Reitz     } else if (!bs->full_open_options && qdict_size(bs->options)) {
385691af7014SMax Reitz         /* There is no underlying file BDS (at least referenced by BDS.file),
385791af7014SMax Reitz          * so the full options QDict should be equal to the options given
385891af7014SMax Reitz          * specifically for this block device when it was opened (plus the
385991af7014SMax Reitz          * driver specification).
386091af7014SMax Reitz          * Because those options don't change, there is no need to update
386191af7014SMax Reitz          * full_open_options when it's already set. */
386291af7014SMax Reitz 
386391af7014SMax Reitz         opts = qdict_new();
386491af7014SMax Reitz         append_open_options(opts, bs);
386591af7014SMax Reitz         qdict_put_obj(opts, "driver",
386691af7014SMax Reitz                       QOBJECT(qstring_from_str(drv->format_name)));
386791af7014SMax Reitz 
386891af7014SMax Reitz         if (bs->exact_filename[0]) {
386991af7014SMax Reitz             /* This may not work for all block protocol drivers (some may
387091af7014SMax Reitz              * require this filename to be parsed), but we have to find some
387191af7014SMax Reitz              * default solution here, so just include it. If some block driver
387291af7014SMax Reitz              * does not support pure options without any filename at all or
387391af7014SMax Reitz              * needs some special format of the options QDict, it needs to
387491af7014SMax Reitz              * implement the driver-specific bdrv_refresh_filename() function.
387591af7014SMax Reitz              */
387691af7014SMax Reitz             qdict_put_obj(opts, "filename",
387791af7014SMax Reitz                           QOBJECT(qstring_from_str(bs->exact_filename)));
387891af7014SMax Reitz         }
387991af7014SMax Reitz 
388091af7014SMax Reitz         bs->full_open_options = opts;
388191af7014SMax Reitz     }
388291af7014SMax Reitz 
388391af7014SMax Reitz     if (bs->exact_filename[0]) {
388491af7014SMax Reitz         pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
388591af7014SMax Reitz     } else if (bs->full_open_options) {
388691af7014SMax Reitz         QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
388791af7014SMax Reitz         snprintf(bs->filename, sizeof(bs->filename), "json:%s",
388891af7014SMax Reitz                  qstring_get_str(json));
388991af7014SMax Reitz         QDECREF(json);
389091af7014SMax Reitz     }
389191af7014SMax Reitz }
3892e06018adSWen Congyang 
3893e06018adSWen Congyang /*
3894e06018adSWen Congyang  * Hot add/remove a BDS's child. So the user can take a child offline when
3895e06018adSWen Congyang  * it is broken and take a new child online
3896e06018adSWen Congyang  */
3897e06018adSWen Congyang void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
3898e06018adSWen Congyang                     Error **errp)
3899e06018adSWen Congyang {
3900e06018adSWen Congyang 
3901e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
3902e06018adSWen Congyang         error_setg(errp, "The node %s does not support adding a child",
3903e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
3904e06018adSWen Congyang         return;
3905e06018adSWen Congyang     }
3906e06018adSWen Congyang 
3907e06018adSWen Congyang     if (!QLIST_EMPTY(&child_bs->parents)) {
3908e06018adSWen Congyang         error_setg(errp, "The node %s already has a parent",
3909e06018adSWen Congyang                    child_bs->node_name);
3910e06018adSWen Congyang         return;
3911e06018adSWen Congyang     }
3912e06018adSWen Congyang 
3913e06018adSWen Congyang     parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
3914e06018adSWen Congyang }
3915e06018adSWen Congyang 
3916e06018adSWen Congyang void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
3917e06018adSWen Congyang {
3918e06018adSWen Congyang     BdrvChild *tmp;
3919e06018adSWen Congyang 
3920e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
3921e06018adSWen Congyang         error_setg(errp, "The node %s does not support removing a child",
3922e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
3923e06018adSWen Congyang         return;
3924e06018adSWen Congyang     }
3925e06018adSWen Congyang 
3926e06018adSWen Congyang     QLIST_FOREACH(tmp, &parent_bs->children, next) {
3927e06018adSWen Congyang         if (tmp == child) {
3928e06018adSWen Congyang             break;
3929e06018adSWen Congyang         }
3930e06018adSWen Congyang     }
3931e06018adSWen Congyang 
3932e06018adSWen Congyang     if (!tmp) {
3933e06018adSWen Congyang         error_setg(errp, "The node %s does not have a child named %s",
3934e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs),
3935e06018adSWen Congyang                    bdrv_get_device_or_node_name(child->bs));
3936e06018adSWen Congyang         return;
3937e06018adSWen Congyang     }
3938e06018adSWen Congyang 
3939e06018adSWen Congyang     parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
3940e06018adSWen Congyang }
3941