xref: /openbmc/qemu/block.c (revision 2e891722c5e3d0372e042173a425925e14749bf0)
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  */
24e688df6bSMarkus Armbruster 
25d38ea87aSPeter Maydell #include "qemu/osdep.h"
260ab8ed18SDaniel P. Berrange #include "block/trace.h"
27737e150eSPaolo Bonzini #include "block/block_int.h"
28737e150eSPaolo Bonzini #include "block/blockjob.h"
29cd7fca95SKevin Wolf #include "block/nbd.h"
30609f45eaSMax Reitz #include "block/qdict.h"
31d49b6836SMarkus Armbruster #include "qemu/error-report.h"
3288d88798SMarc Mari #include "module_block.h"
331de7afc9SPaolo Bonzini #include "qemu/module.h"
34e688df6bSMarkus Armbruster #include "qapi/error.h"
35452fcdbcSMarkus Armbruster #include "qapi/qmp/qdict.h"
367b1b5d19SPaolo Bonzini #include "qapi/qmp/qjson.h"
37e59a0cf1SMax Reitz #include "qapi/qmp/qnull.h"
38fc81fa1eSMarkus Armbruster #include "qapi/qmp/qstring.h"
39e1d74bc6SKevin Wolf #include "qapi/qobject-output-visitor.h"
40e1d74bc6SKevin Wolf #include "qapi/qapi-visit-block-core.h"
41bfb197e0SMarkus Armbruster #include "sysemu/block-backend.h"
429c17d615SPaolo Bonzini #include "sysemu/sysemu.h"
431de7afc9SPaolo Bonzini #include "qemu/notify.h"
44922a01a0SMarkus Armbruster #include "qemu/option.h"
4510817bf0SDaniel P. Berrange #include "qemu/coroutine.h"
46c13163fbSBenoît Canet #include "block/qapi.h"
471de7afc9SPaolo Bonzini #include "qemu/timer.h"
48f348b6d1SVeronia Bahaa #include "qemu/cutils.h"
49f348b6d1SVeronia Bahaa #include "qemu/id.h"
50fc01f7e7Sbellard 
5171e72a19SJuan Quintela #ifdef CONFIG_BSD
527674e7bfSbellard #include <sys/ioctl.h>
5372cf2d4fSBlue Swirl #include <sys/queue.h>
54c5e97233Sblueswir1 #ifndef __DragonFly__
557674e7bfSbellard #include <sys/disk.h>
567674e7bfSbellard #endif
57c5e97233Sblueswir1 #endif
587674e7bfSbellard 
5949dc768dSaliguori #ifdef _WIN32
6049dc768dSaliguori #include <windows.h>
6149dc768dSaliguori #endif
6249dc768dSaliguori 
631c9805a3SStefan Hajnoczi #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
641c9805a3SStefan Hajnoczi 
65dc364f4cSBenoît Canet static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
66dc364f4cSBenoît Canet     QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
67dc364f4cSBenoît Canet 
682c1d04e0SMax Reitz static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
692c1d04e0SMax Reitz     QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
702c1d04e0SMax Reitz 
718a22f02aSStefan Hajnoczi static QLIST_HEAD(, BlockDriver) bdrv_drivers =
728a22f02aSStefan Hajnoczi     QLIST_HEAD_INITIALIZER(bdrv_drivers);
73ea2384d3Sbellard 
745b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
755b363937SMax Reitz                                            const char *reference,
765b363937SMax Reitz                                            QDict *options, int flags,
77f3930ed0SKevin Wolf                                            BlockDriverState *parent,
785b363937SMax Reitz                                            const BdrvChildRole *child_role,
795b363937SMax Reitz                                            Error **errp);
80f3930ed0SKevin Wolf 
81eb852011SMarkus Armbruster /* If non-zero, use only whitelisted block drivers */
82eb852011SMarkus Armbruster static int use_bdrv_whitelist;
83eb852011SMarkus Armbruster 
849e0b22f4SStefan Hajnoczi #ifdef _WIN32
859e0b22f4SStefan Hajnoczi static int is_windows_drive_prefix(const char *filename)
869e0b22f4SStefan Hajnoczi {
879e0b22f4SStefan Hajnoczi     return (((filename[0] >= 'a' && filename[0] <= 'z') ||
889e0b22f4SStefan Hajnoczi              (filename[0] >= 'A' && filename[0] <= 'Z')) &&
899e0b22f4SStefan Hajnoczi             filename[1] == ':');
909e0b22f4SStefan Hajnoczi }
919e0b22f4SStefan Hajnoczi 
929e0b22f4SStefan Hajnoczi int is_windows_drive(const char *filename)
939e0b22f4SStefan Hajnoczi {
949e0b22f4SStefan Hajnoczi     if (is_windows_drive_prefix(filename) &&
959e0b22f4SStefan Hajnoczi         filename[2] == '\0')
969e0b22f4SStefan Hajnoczi         return 1;
979e0b22f4SStefan Hajnoczi     if (strstart(filename, "\\\\.\\", NULL) ||
989e0b22f4SStefan Hajnoczi         strstart(filename, "//./", NULL))
999e0b22f4SStefan Hajnoczi         return 1;
1009e0b22f4SStefan Hajnoczi     return 0;
1019e0b22f4SStefan Hajnoczi }
1029e0b22f4SStefan Hajnoczi #endif
1039e0b22f4SStefan Hajnoczi 
104339064d5SKevin Wolf size_t bdrv_opt_mem_align(BlockDriverState *bs)
105339064d5SKevin Wolf {
106339064d5SKevin Wolf     if (!bs || !bs->drv) {
107459b4e66SDenis V. Lunev         /* page size or 4k (hdd sector size) should be on the safe side */
108459b4e66SDenis V. Lunev         return MAX(4096, getpagesize());
109339064d5SKevin Wolf     }
110339064d5SKevin Wolf 
111339064d5SKevin Wolf     return bs->bl.opt_mem_alignment;
112339064d5SKevin Wolf }
113339064d5SKevin Wolf 
1144196d2f0SDenis V. Lunev size_t bdrv_min_mem_align(BlockDriverState *bs)
1154196d2f0SDenis V. Lunev {
1164196d2f0SDenis V. Lunev     if (!bs || !bs->drv) {
117459b4e66SDenis V. Lunev         /* page size or 4k (hdd sector size) should be on the safe side */
118459b4e66SDenis V. Lunev         return MAX(4096, getpagesize());
1194196d2f0SDenis V. Lunev     }
1204196d2f0SDenis V. Lunev 
1214196d2f0SDenis V. Lunev     return bs->bl.min_mem_alignment;
1224196d2f0SDenis V. Lunev }
1234196d2f0SDenis V. Lunev 
1249e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */
1255c98415bSMax Reitz int path_has_protocol(const char *path)
1269e0b22f4SStefan Hajnoczi {
127947995c0SPaolo Bonzini     const char *p;
128947995c0SPaolo Bonzini 
1299e0b22f4SStefan Hajnoczi #ifdef _WIN32
1309e0b22f4SStefan Hajnoczi     if (is_windows_drive(path) ||
1319e0b22f4SStefan Hajnoczi         is_windows_drive_prefix(path)) {
1329e0b22f4SStefan Hajnoczi         return 0;
1339e0b22f4SStefan Hajnoczi     }
134947995c0SPaolo Bonzini     p = path + strcspn(path, ":/\\");
135947995c0SPaolo Bonzini #else
136947995c0SPaolo Bonzini     p = path + strcspn(path, ":/");
1379e0b22f4SStefan Hajnoczi #endif
1389e0b22f4SStefan Hajnoczi 
139947995c0SPaolo Bonzini     return *p == ':';
1409e0b22f4SStefan Hajnoczi }
1419e0b22f4SStefan Hajnoczi 
14283f64091Sbellard int path_is_absolute(const char *path)
14383f64091Sbellard {
14421664424Sbellard #ifdef _WIN32
14521664424Sbellard     /* specific case for names like: "\\.\d:" */
146f53f4da9SPaolo Bonzini     if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
14721664424Sbellard         return 1;
148f53f4da9SPaolo Bonzini     }
149f53f4da9SPaolo Bonzini     return (*path == '/' || *path == '\\');
1503b9f94e1Sbellard #else
151f53f4da9SPaolo Bonzini     return (*path == '/');
1523b9f94e1Sbellard #endif
15383f64091Sbellard }
15483f64091Sbellard 
15583f64091Sbellard /* if filename is absolute, just copy it to dest. Otherwise, build a
15683f64091Sbellard    path to it by considering it is relative to base_path. URL are
15783f64091Sbellard    supported. */
15883f64091Sbellard void path_combine(char *dest, int dest_size,
15983f64091Sbellard                   const char *base_path,
16083f64091Sbellard                   const char *filename)
16183f64091Sbellard {
16283f64091Sbellard     const char *p, *p1;
16383f64091Sbellard     int len;
16483f64091Sbellard 
16583f64091Sbellard     if (dest_size <= 0)
16683f64091Sbellard         return;
16783f64091Sbellard     if (path_is_absolute(filename)) {
16883f64091Sbellard         pstrcpy(dest, dest_size, filename);
16983f64091Sbellard     } else {
1700d54a6feSMax Reitz         const char *protocol_stripped = NULL;
1710d54a6feSMax Reitz 
1720d54a6feSMax Reitz         if (path_has_protocol(base_path)) {
1730d54a6feSMax Reitz             protocol_stripped = strchr(base_path, ':');
1740d54a6feSMax Reitz             if (protocol_stripped) {
1750d54a6feSMax Reitz                 protocol_stripped++;
1760d54a6feSMax Reitz             }
1770d54a6feSMax Reitz         }
1780d54a6feSMax Reitz         p = protocol_stripped ?: base_path;
1790d54a6feSMax Reitz 
1803b9f94e1Sbellard         p1 = strrchr(base_path, '/');
1813b9f94e1Sbellard #ifdef _WIN32
1823b9f94e1Sbellard         {
1833b9f94e1Sbellard             const char *p2;
1843b9f94e1Sbellard             p2 = strrchr(base_path, '\\');
1853b9f94e1Sbellard             if (!p1 || p2 > p1)
1863b9f94e1Sbellard                 p1 = p2;
1873b9f94e1Sbellard         }
1883b9f94e1Sbellard #endif
18983f64091Sbellard         if (p1)
19083f64091Sbellard             p1++;
19183f64091Sbellard         else
19283f64091Sbellard             p1 = base_path;
19383f64091Sbellard         if (p1 > p)
19483f64091Sbellard             p = p1;
19583f64091Sbellard         len = p - base_path;
19683f64091Sbellard         if (len > dest_size - 1)
19783f64091Sbellard             len = dest_size - 1;
19883f64091Sbellard         memcpy(dest, base_path, len);
19983f64091Sbellard         dest[len] = '\0';
20083f64091Sbellard         pstrcat(dest, dest_size, filename);
20183f64091Sbellard     }
20283f64091Sbellard }
20383f64091Sbellard 
20403c320d8SMax Reitz /*
20503c320d8SMax Reitz  * Helper function for bdrv_parse_filename() implementations to remove optional
20603c320d8SMax Reitz  * protocol prefixes (especially "file:") from a filename and for putting the
20703c320d8SMax Reitz  * stripped filename into the options QDict if there is such a prefix.
20803c320d8SMax Reitz  */
20903c320d8SMax Reitz void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
21003c320d8SMax Reitz                                       QDict *options)
21103c320d8SMax Reitz {
21203c320d8SMax Reitz     if (strstart(filename, prefix, &filename)) {
21303c320d8SMax Reitz         /* Stripping the explicit protocol prefix may result in a protocol
21403c320d8SMax Reitz          * prefix being (wrongly) detected (if the filename contains a colon) */
21503c320d8SMax Reitz         if (path_has_protocol(filename)) {
21603c320d8SMax Reitz             QString *fat_filename;
21703c320d8SMax Reitz 
21803c320d8SMax Reitz             /* This means there is some colon before the first slash; therefore,
21903c320d8SMax Reitz              * this cannot be an absolute path */
22003c320d8SMax Reitz             assert(!path_is_absolute(filename));
22103c320d8SMax Reitz 
22203c320d8SMax Reitz             /* And we can thus fix the protocol detection issue by prefixing it
22303c320d8SMax Reitz              * by "./" */
22403c320d8SMax Reitz             fat_filename = qstring_from_str("./");
22503c320d8SMax Reitz             qstring_append(fat_filename, filename);
22603c320d8SMax Reitz 
22703c320d8SMax Reitz             assert(!path_has_protocol(qstring_get_str(fat_filename)));
22803c320d8SMax Reitz 
22903c320d8SMax Reitz             qdict_put(options, "filename", fat_filename);
23003c320d8SMax Reitz         } else {
23103c320d8SMax Reitz             /* If no protocol prefix was detected, we can use the shortened
23203c320d8SMax Reitz              * filename as-is */
23303c320d8SMax Reitz             qdict_put_str(options, "filename", filename);
23403c320d8SMax Reitz         }
23503c320d8SMax Reitz     }
23603c320d8SMax Reitz }
23703c320d8SMax Reitz 
23803c320d8SMax Reitz 
2399c5e6594SKevin Wolf /* Returns whether the image file is opened as read-only. Note that this can
2409c5e6594SKevin Wolf  * return false and writing to the image file is still not possible because the
2419c5e6594SKevin Wolf  * image is inactivated. */
24293ed524eSJeff Cody bool bdrv_is_read_only(BlockDriverState *bs)
24393ed524eSJeff Cody {
24493ed524eSJeff Cody     return bs->read_only;
24593ed524eSJeff Cody }
24693ed524eSJeff Cody 
24754a32bfeSKevin Wolf int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
24854a32bfeSKevin Wolf                            bool ignore_allow_rdw, Error **errp)
249fe5241bfSJeff Cody {
250e2b8247aSJeff Cody     /* Do not set read_only if copy_on_read is enabled */
251e2b8247aSJeff Cody     if (bs->copy_on_read && read_only) {
252e2b8247aSJeff Cody         error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
253e2b8247aSJeff Cody                    bdrv_get_device_or_node_name(bs));
254e2b8247aSJeff Cody         return -EINVAL;
255e2b8247aSJeff Cody     }
256e2b8247aSJeff Cody 
257d6fcdf06SJeff Cody     /* Do not clear read_only if it is prohibited */
25854a32bfeSKevin Wolf     if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
25954a32bfeSKevin Wolf         !ignore_allow_rdw)
26054a32bfeSKevin Wolf     {
261d6fcdf06SJeff Cody         error_setg(errp, "Node '%s' is read only",
262d6fcdf06SJeff Cody                    bdrv_get_device_or_node_name(bs));
263d6fcdf06SJeff Cody         return -EPERM;
264d6fcdf06SJeff Cody     }
265d6fcdf06SJeff Cody 
26645803a03SJeff Cody     return 0;
26745803a03SJeff Cody }
26845803a03SJeff Cody 
269eaa2410fSKevin Wolf /*
270eaa2410fSKevin Wolf  * Called by a driver that can only provide a read-only image.
271eaa2410fSKevin Wolf  *
272eaa2410fSKevin Wolf  * Returns 0 if the node is already read-only or it could switch the node to
273eaa2410fSKevin Wolf  * read-only because BDRV_O_AUTO_RDONLY is set.
274eaa2410fSKevin Wolf  *
275eaa2410fSKevin Wolf  * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
276eaa2410fSKevin Wolf  * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
277eaa2410fSKevin Wolf  * is not NULL, it is used as the error message for the Error object.
278eaa2410fSKevin Wolf  */
279eaa2410fSKevin Wolf int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
280eaa2410fSKevin Wolf                               Error **errp)
28145803a03SJeff Cody {
28245803a03SJeff Cody     int ret = 0;
28345803a03SJeff Cody 
284eaa2410fSKevin Wolf     if (!(bs->open_flags & BDRV_O_RDWR)) {
285eaa2410fSKevin Wolf         return 0;
286eaa2410fSKevin Wolf     }
287eaa2410fSKevin Wolf     if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
288eaa2410fSKevin Wolf         goto fail;
289eaa2410fSKevin Wolf     }
290eaa2410fSKevin Wolf 
291eaa2410fSKevin Wolf     ret = bdrv_can_set_read_only(bs, true, false, NULL);
29245803a03SJeff Cody     if (ret < 0) {
293eaa2410fSKevin Wolf         goto fail;
29445803a03SJeff Cody     }
29545803a03SJeff Cody 
296eaa2410fSKevin Wolf     bs->read_only = true;
297eeae6a59SKevin Wolf     bs->open_flags &= ~BDRV_O_RDWR;
298eeae6a59SKevin Wolf 
299e2b8247aSJeff Cody     return 0;
300eaa2410fSKevin Wolf 
301eaa2410fSKevin Wolf fail:
302eaa2410fSKevin Wolf     error_setg(errp, "%s", errmsg ?: "Image is read-only");
303eaa2410fSKevin Wolf     return -EACCES;
304fe5241bfSJeff Cody }
305fe5241bfSJeff Cody 
3060a82855aSMax Reitz void bdrv_get_full_backing_filename_from_filename(const char *backed,
3070a82855aSMax Reitz                                                   const char *backing,
3089f07429eSMax Reitz                                                   char *dest, size_t sz,
3099f07429eSMax Reitz                                                   Error **errp)
3100a82855aSMax Reitz {
3119f07429eSMax Reitz     if (backing[0] == '\0' || path_has_protocol(backing) ||
3129f07429eSMax Reitz         path_is_absolute(backing))
3139f07429eSMax Reitz     {
3140a82855aSMax Reitz         pstrcpy(dest, sz, backing);
3159f07429eSMax Reitz     } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
3169f07429eSMax Reitz         error_setg(errp, "Cannot use relative backing file names for '%s'",
3179f07429eSMax Reitz                    backed);
3180a82855aSMax Reitz     } else {
3190a82855aSMax Reitz         path_combine(dest, sz, backed, backing);
3200a82855aSMax Reitz     }
3210a82855aSMax Reitz }
3220a82855aSMax Reitz 
3239f07429eSMax Reitz void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz,
3249f07429eSMax Reitz                                     Error **errp)
325dc5a1371SPaolo Bonzini {
3269f07429eSMax Reitz     char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename;
3279f07429eSMax Reitz 
3289f07429eSMax Reitz     bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file,
3299f07429eSMax Reitz                                                  dest, sz, errp);
330dc5a1371SPaolo Bonzini }
331dc5a1371SPaolo Bonzini 
3320eb7217eSStefan Hajnoczi void bdrv_register(BlockDriver *bdrv)
3330eb7217eSStefan Hajnoczi {
3348a22f02aSStefan Hajnoczi     QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
335ea2384d3Sbellard }
336b338082bSbellard 
337e4e9986bSMarkus Armbruster BlockDriverState *bdrv_new(void)
338e4e9986bSMarkus Armbruster {
339e4e9986bSMarkus Armbruster     BlockDriverState *bs;
340e4e9986bSMarkus Armbruster     int i;
341e4e9986bSMarkus Armbruster 
3425839e53bSMarkus Armbruster     bs = g_new0(BlockDriverState, 1);
343e4654d2dSFam Zheng     QLIST_INIT(&bs->dirty_bitmaps);
344fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
345fbe40ff7SFam Zheng         QLIST_INIT(&bs->op_blockers[i]);
346fbe40ff7SFam Zheng     }
347d616b224SStefan Hajnoczi     notifier_with_return_list_init(&bs->before_write_notifiers);
3483783fa3dSPaolo Bonzini     qemu_co_mutex_init(&bs->reqs_lock);
3492119882cSPaolo Bonzini     qemu_mutex_init(&bs->dirty_bitmap_mutex);
3509fcb0251SFam Zheng     bs->refcnt = 1;
351dcd04228SStefan Hajnoczi     bs->aio_context = qemu_get_aio_context();
352d7d512f6SPaolo Bonzini 
3533ff2f67aSEvgeny Yakovlev     qemu_co_queue_init(&bs->flush_queue);
3543ff2f67aSEvgeny Yakovlev 
3550f12264eSKevin Wolf     for (i = 0; i < bdrv_drain_all_count; i++) {
3560f12264eSKevin Wolf         bdrv_drained_begin(bs);
3570f12264eSKevin Wolf     }
3580f12264eSKevin Wolf 
3592c1d04e0SMax Reitz     QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
3602c1d04e0SMax Reitz 
361b338082bSbellard     return bs;
362b338082bSbellard }
363b338082bSbellard 
36488d88798SMarc Mari static BlockDriver *bdrv_do_find_format(const char *format_name)
365ea2384d3Sbellard {
366ea2384d3Sbellard     BlockDriver *drv1;
36788d88798SMarc Mari 
3688a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
3698a22f02aSStefan Hajnoczi         if (!strcmp(drv1->format_name, format_name)) {
370ea2384d3Sbellard             return drv1;
371ea2384d3Sbellard         }
3728a22f02aSStefan Hajnoczi     }
37388d88798SMarc Mari 
374ea2384d3Sbellard     return NULL;
375ea2384d3Sbellard }
376ea2384d3Sbellard 
37788d88798SMarc Mari BlockDriver *bdrv_find_format(const char *format_name)
37888d88798SMarc Mari {
37988d88798SMarc Mari     BlockDriver *drv1;
38088d88798SMarc Mari     int i;
38188d88798SMarc Mari 
38288d88798SMarc Mari     drv1 = bdrv_do_find_format(format_name);
38388d88798SMarc Mari     if (drv1) {
38488d88798SMarc Mari         return drv1;
38588d88798SMarc Mari     }
38688d88798SMarc Mari 
38788d88798SMarc Mari     /* The driver isn't registered, maybe we need to load a module */
38888d88798SMarc Mari     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
38988d88798SMarc Mari         if (!strcmp(block_driver_modules[i].format_name, format_name)) {
39088d88798SMarc Mari             block_module_load_one(block_driver_modules[i].library_name);
39188d88798SMarc Mari             break;
39288d88798SMarc Mari         }
39388d88798SMarc Mari     }
39488d88798SMarc Mari 
39588d88798SMarc Mari     return bdrv_do_find_format(format_name);
39688d88798SMarc Mari }
39788d88798SMarc Mari 
398e8eb8637SKevin Wolf int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
399eb852011SMarkus Armbruster {
400b64ec4e4SFam Zheng     static const char *whitelist_rw[] = {
401b64ec4e4SFam Zheng         CONFIG_BDRV_RW_WHITELIST
402b64ec4e4SFam Zheng     };
403b64ec4e4SFam Zheng     static const char *whitelist_ro[] = {
404b64ec4e4SFam Zheng         CONFIG_BDRV_RO_WHITELIST
405eb852011SMarkus Armbruster     };
406eb852011SMarkus Armbruster     const char **p;
407eb852011SMarkus Armbruster 
408b64ec4e4SFam Zheng     if (!whitelist_rw[0] && !whitelist_ro[0]) {
409eb852011SMarkus Armbruster         return 1;               /* no whitelist, anything goes */
410b64ec4e4SFam Zheng     }
411eb852011SMarkus Armbruster 
412b64ec4e4SFam Zheng     for (p = whitelist_rw; *p; p++) {
413eb852011SMarkus Armbruster         if (!strcmp(drv->format_name, *p)) {
414eb852011SMarkus Armbruster             return 1;
415eb852011SMarkus Armbruster         }
416eb852011SMarkus Armbruster     }
417b64ec4e4SFam Zheng     if (read_only) {
418b64ec4e4SFam Zheng         for (p = whitelist_ro; *p; p++) {
419b64ec4e4SFam Zheng             if (!strcmp(drv->format_name, *p)) {
420b64ec4e4SFam Zheng                 return 1;
421b64ec4e4SFam Zheng             }
422b64ec4e4SFam Zheng         }
423b64ec4e4SFam Zheng     }
424eb852011SMarkus Armbruster     return 0;
425eb852011SMarkus Armbruster }
426eb852011SMarkus Armbruster 
427e6ff69bfSDaniel P. Berrange bool bdrv_uses_whitelist(void)
428e6ff69bfSDaniel P. Berrange {
429e6ff69bfSDaniel P. Berrange     return use_bdrv_whitelist;
430e6ff69bfSDaniel P. Berrange }
431e6ff69bfSDaniel P. Berrange 
4325b7e1542SZhi Yong Wu typedef struct CreateCo {
4335b7e1542SZhi Yong Wu     BlockDriver *drv;
4345b7e1542SZhi Yong Wu     char *filename;
43583d0521aSChunyan Liu     QemuOpts *opts;
4365b7e1542SZhi Yong Wu     int ret;
437cc84d90fSMax Reitz     Error *err;
4385b7e1542SZhi Yong Wu } CreateCo;
4395b7e1542SZhi Yong Wu 
4405b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque)
4415b7e1542SZhi Yong Wu {
442cc84d90fSMax Reitz     Error *local_err = NULL;
443cc84d90fSMax Reitz     int ret;
444cc84d90fSMax Reitz 
4455b7e1542SZhi Yong Wu     CreateCo *cco = opaque;
4465b7e1542SZhi Yong Wu     assert(cco->drv);
4475b7e1542SZhi Yong Wu 
448efc75e2aSStefan Hajnoczi     ret = cco->drv->bdrv_co_create_opts(cco->filename, cco->opts, &local_err);
449cc84d90fSMax Reitz     error_propagate(&cco->err, local_err);
450cc84d90fSMax Reitz     cco->ret = ret;
4515b7e1542SZhi Yong Wu }
4525b7e1542SZhi Yong Wu 
4530e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename,
45483d0521aSChunyan Liu                 QemuOpts *opts, Error **errp)
455ea2384d3Sbellard {
4565b7e1542SZhi Yong Wu     int ret;
4570e7e1989SKevin Wolf 
4585b7e1542SZhi Yong Wu     Coroutine *co;
4595b7e1542SZhi Yong Wu     CreateCo cco = {
4605b7e1542SZhi Yong Wu         .drv = drv,
4615b7e1542SZhi Yong Wu         .filename = g_strdup(filename),
46283d0521aSChunyan Liu         .opts = opts,
4635b7e1542SZhi Yong Wu         .ret = NOT_DONE,
464cc84d90fSMax Reitz         .err = NULL,
4655b7e1542SZhi Yong Wu     };
4665b7e1542SZhi Yong Wu 
467efc75e2aSStefan Hajnoczi     if (!drv->bdrv_co_create_opts) {
468cc84d90fSMax Reitz         error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
46980168bffSLuiz Capitulino         ret = -ENOTSUP;
47080168bffSLuiz Capitulino         goto out;
4715b7e1542SZhi Yong Wu     }
4725b7e1542SZhi Yong Wu 
4735b7e1542SZhi Yong Wu     if (qemu_in_coroutine()) {
4745b7e1542SZhi Yong Wu         /* Fast-path if already in coroutine context */
4755b7e1542SZhi Yong Wu         bdrv_create_co_entry(&cco);
4765b7e1542SZhi Yong Wu     } else {
4770b8b8753SPaolo Bonzini         co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
4780b8b8753SPaolo Bonzini         qemu_coroutine_enter(co);
4795b7e1542SZhi Yong Wu         while (cco.ret == NOT_DONE) {
480b47ec2c4SPaolo Bonzini             aio_poll(qemu_get_aio_context(), true);
4815b7e1542SZhi Yong Wu         }
4825b7e1542SZhi Yong Wu     }
4835b7e1542SZhi Yong Wu 
4845b7e1542SZhi Yong Wu     ret = cco.ret;
485cc84d90fSMax Reitz     if (ret < 0) {
48684d18f06SMarkus Armbruster         if (cco.err) {
487cc84d90fSMax Reitz             error_propagate(errp, cco.err);
488cc84d90fSMax Reitz         } else {
489cc84d90fSMax Reitz             error_setg_errno(errp, -ret, "Could not create image");
490cc84d90fSMax Reitz         }
491cc84d90fSMax Reitz     }
4925b7e1542SZhi Yong Wu 
49380168bffSLuiz Capitulino out:
49480168bffSLuiz Capitulino     g_free(cco.filename);
4955b7e1542SZhi Yong Wu     return ret;
496ea2384d3Sbellard }
497ea2384d3Sbellard 
498c282e1fdSChunyan Liu int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
49984a12e66SChristoph Hellwig {
50084a12e66SChristoph Hellwig     BlockDriver *drv;
501cc84d90fSMax Reitz     Error *local_err = NULL;
502cc84d90fSMax Reitz     int ret;
50384a12e66SChristoph Hellwig 
504b65a5e12SMax Reitz     drv = bdrv_find_protocol(filename, true, errp);
50584a12e66SChristoph Hellwig     if (drv == NULL) {
50616905d71SStefan Hajnoczi         return -ENOENT;
50784a12e66SChristoph Hellwig     }
50884a12e66SChristoph Hellwig 
509c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
510cc84d90fSMax Reitz     error_propagate(errp, local_err);
511cc84d90fSMax Reitz     return ret;
51284a12e66SChristoph Hellwig }
51384a12e66SChristoph Hellwig 
514892b7de8SEkaterina Tumanova /**
515892b7de8SEkaterina Tumanova  * Try to get @bs's logical and physical block size.
516892b7de8SEkaterina Tumanova  * On success, store them in @bsz struct and return 0.
517892b7de8SEkaterina Tumanova  * On failure return -errno.
518892b7de8SEkaterina Tumanova  * @bs must not be empty.
519892b7de8SEkaterina Tumanova  */
520892b7de8SEkaterina Tumanova int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
521892b7de8SEkaterina Tumanova {
522892b7de8SEkaterina Tumanova     BlockDriver *drv = bs->drv;
523892b7de8SEkaterina Tumanova 
524892b7de8SEkaterina Tumanova     if (drv && drv->bdrv_probe_blocksizes) {
525892b7de8SEkaterina Tumanova         return drv->bdrv_probe_blocksizes(bs, bsz);
5265a612c00SManos Pitsidianakis     } else if (drv && drv->is_filter && bs->file) {
5275a612c00SManos Pitsidianakis         return bdrv_probe_blocksizes(bs->file->bs, bsz);
528892b7de8SEkaterina Tumanova     }
529892b7de8SEkaterina Tumanova 
530892b7de8SEkaterina Tumanova     return -ENOTSUP;
531892b7de8SEkaterina Tumanova }
532892b7de8SEkaterina Tumanova 
533892b7de8SEkaterina Tumanova /**
534892b7de8SEkaterina Tumanova  * Try to get @bs's geometry (cyls, heads, sectors).
535892b7de8SEkaterina Tumanova  * On success, store them in @geo struct and return 0.
536892b7de8SEkaterina Tumanova  * On failure return -errno.
537892b7de8SEkaterina Tumanova  * @bs must not be empty.
538892b7de8SEkaterina Tumanova  */
539892b7de8SEkaterina Tumanova int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
540892b7de8SEkaterina Tumanova {
541892b7de8SEkaterina Tumanova     BlockDriver *drv = bs->drv;
542892b7de8SEkaterina Tumanova 
543892b7de8SEkaterina Tumanova     if (drv && drv->bdrv_probe_geometry) {
544892b7de8SEkaterina Tumanova         return drv->bdrv_probe_geometry(bs, geo);
5455a612c00SManos Pitsidianakis     } else if (drv && drv->is_filter && bs->file) {
5465a612c00SManos Pitsidianakis         return bdrv_probe_geometry(bs->file->bs, geo);
547892b7de8SEkaterina Tumanova     }
548892b7de8SEkaterina Tumanova 
549892b7de8SEkaterina Tumanova     return -ENOTSUP;
550892b7de8SEkaterina Tumanova }
551892b7de8SEkaterina Tumanova 
552eba25057SJim Meyering /*
553eba25057SJim Meyering  * Create a uniquely-named empty temporary file.
554eba25057SJim Meyering  * Return 0 upon success, otherwise a negative errno value.
555eba25057SJim Meyering  */
556eba25057SJim Meyering int get_tmp_filename(char *filename, int size)
557eba25057SJim Meyering {
558d5249393Sbellard #ifdef _WIN32
5593b9f94e1Sbellard     char temp_dir[MAX_PATH];
560eba25057SJim Meyering     /* GetTempFileName requires that its output buffer (4th param)
561eba25057SJim Meyering        have length MAX_PATH or greater.  */
562eba25057SJim Meyering     assert(size >= MAX_PATH);
563eba25057SJim Meyering     return (GetTempPath(MAX_PATH, temp_dir)
564eba25057SJim Meyering             && GetTempFileName(temp_dir, "qem", 0, filename)
565eba25057SJim Meyering             ? 0 : -GetLastError());
566d5249393Sbellard #else
567ea2384d3Sbellard     int fd;
5687ccfb2ebSblueswir1     const char *tmpdir;
5690badc1eeSaurel32     tmpdir = getenv("TMPDIR");
57069bef793SAmit Shah     if (!tmpdir) {
57169bef793SAmit Shah         tmpdir = "/var/tmp";
57269bef793SAmit Shah     }
573eba25057SJim Meyering     if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
574eba25057SJim Meyering         return -EOVERFLOW;
575ea2384d3Sbellard     }
576eba25057SJim Meyering     fd = mkstemp(filename);
577fe235a06SDunrong Huang     if (fd < 0) {
578fe235a06SDunrong Huang         return -errno;
579fe235a06SDunrong Huang     }
580fe235a06SDunrong Huang     if (close(fd) != 0) {
581fe235a06SDunrong Huang         unlink(filename);
582eba25057SJim Meyering         return -errno;
583eba25057SJim Meyering     }
584eba25057SJim Meyering     return 0;
585d5249393Sbellard #endif
586eba25057SJim Meyering }
587ea2384d3Sbellard 
588f3a5d3f8SChristoph Hellwig /*
589f3a5d3f8SChristoph Hellwig  * Detect host devices. By convention, /dev/cdrom[N] is always
590f3a5d3f8SChristoph Hellwig  * recognized as a host CDROM.
591f3a5d3f8SChristoph Hellwig  */
592f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename)
593f3a5d3f8SChristoph Hellwig {
594508c7cb3SChristoph Hellwig     int score_max = 0, score;
595508c7cb3SChristoph Hellwig     BlockDriver *drv = NULL, *d;
596f3a5d3f8SChristoph Hellwig 
5978a22f02aSStefan Hajnoczi     QLIST_FOREACH(d, &bdrv_drivers, list) {
598508c7cb3SChristoph Hellwig         if (d->bdrv_probe_device) {
599508c7cb3SChristoph Hellwig             score = d->bdrv_probe_device(filename);
600508c7cb3SChristoph Hellwig             if (score > score_max) {
601508c7cb3SChristoph Hellwig                 score_max = score;
602508c7cb3SChristoph Hellwig                 drv = d;
603f3a5d3f8SChristoph Hellwig             }
604508c7cb3SChristoph Hellwig         }
605f3a5d3f8SChristoph Hellwig     }
606f3a5d3f8SChristoph Hellwig 
607508c7cb3SChristoph Hellwig     return drv;
608f3a5d3f8SChristoph Hellwig }
609f3a5d3f8SChristoph Hellwig 
61088d88798SMarc Mari static BlockDriver *bdrv_do_find_protocol(const char *protocol)
61188d88798SMarc Mari {
61288d88798SMarc Mari     BlockDriver *drv1;
61388d88798SMarc Mari 
61488d88798SMarc Mari     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
61588d88798SMarc Mari         if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
61688d88798SMarc Mari             return drv1;
61788d88798SMarc Mari         }
61888d88798SMarc Mari     }
61988d88798SMarc Mari 
62088d88798SMarc Mari     return NULL;
62188d88798SMarc Mari }
62288d88798SMarc Mari 
62398289620SKevin Wolf BlockDriver *bdrv_find_protocol(const char *filename,
624b65a5e12SMax Reitz                                 bool allow_protocol_prefix,
625b65a5e12SMax Reitz                                 Error **errp)
62684a12e66SChristoph Hellwig {
62784a12e66SChristoph Hellwig     BlockDriver *drv1;
62884a12e66SChristoph Hellwig     char protocol[128];
62984a12e66SChristoph Hellwig     int len;
63084a12e66SChristoph Hellwig     const char *p;
63188d88798SMarc Mari     int i;
63284a12e66SChristoph Hellwig 
63366f82ceeSKevin Wolf     /* TODO Drivers without bdrv_file_open must be specified explicitly */
63466f82ceeSKevin Wolf 
63539508e7aSChristoph Hellwig     /*
63639508e7aSChristoph Hellwig      * XXX(hch): we really should not let host device detection
63739508e7aSChristoph Hellwig      * override an explicit protocol specification, but moving this
63839508e7aSChristoph Hellwig      * later breaks access to device names with colons in them.
63939508e7aSChristoph Hellwig      * Thanks to the brain-dead persistent naming schemes on udev-
64039508e7aSChristoph Hellwig      * based Linux systems those actually are quite common.
64139508e7aSChristoph Hellwig      */
64284a12e66SChristoph Hellwig     drv1 = find_hdev_driver(filename);
64339508e7aSChristoph Hellwig     if (drv1) {
64484a12e66SChristoph Hellwig         return drv1;
64584a12e66SChristoph Hellwig     }
64639508e7aSChristoph Hellwig 
64798289620SKevin Wolf     if (!path_has_protocol(filename) || !allow_protocol_prefix) {
648ef810437SMax Reitz         return &bdrv_file;
64939508e7aSChristoph Hellwig     }
65098289620SKevin Wolf 
6519e0b22f4SStefan Hajnoczi     p = strchr(filename, ':');
6529e0b22f4SStefan Hajnoczi     assert(p != NULL);
65384a12e66SChristoph Hellwig     len = p - filename;
65484a12e66SChristoph Hellwig     if (len > sizeof(protocol) - 1)
65584a12e66SChristoph Hellwig         len = sizeof(protocol) - 1;
65684a12e66SChristoph Hellwig     memcpy(protocol, filename, len);
65784a12e66SChristoph Hellwig     protocol[len] = '\0';
65888d88798SMarc Mari 
65988d88798SMarc Mari     drv1 = bdrv_do_find_protocol(protocol);
66088d88798SMarc Mari     if (drv1) {
66184a12e66SChristoph Hellwig         return drv1;
66284a12e66SChristoph Hellwig     }
66388d88798SMarc Mari 
66488d88798SMarc Mari     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
66588d88798SMarc Mari         if (block_driver_modules[i].protocol_name &&
66688d88798SMarc Mari             !strcmp(block_driver_modules[i].protocol_name, protocol)) {
66788d88798SMarc Mari             block_module_load_one(block_driver_modules[i].library_name);
66888d88798SMarc Mari             break;
66988d88798SMarc Mari         }
67084a12e66SChristoph Hellwig     }
671b65a5e12SMax Reitz 
67288d88798SMarc Mari     drv1 = bdrv_do_find_protocol(protocol);
67388d88798SMarc Mari     if (!drv1) {
674b65a5e12SMax Reitz         error_setg(errp, "Unknown protocol '%s'", protocol);
67588d88798SMarc Mari     }
67688d88798SMarc Mari     return drv1;
67784a12e66SChristoph Hellwig }
67884a12e66SChristoph Hellwig 
679c6684249SMarkus Armbruster /*
680c6684249SMarkus Armbruster  * Guess image format by probing its contents.
681c6684249SMarkus Armbruster  * This is not a good idea when your image is raw (CVE-2008-2004), but
682c6684249SMarkus Armbruster  * we do it anyway for backward compatibility.
683c6684249SMarkus Armbruster  *
684c6684249SMarkus Armbruster  * @buf         contains the image's first @buf_size bytes.
6857cddd372SKevin Wolf  * @buf_size    is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
6867cddd372SKevin Wolf  *              but can be smaller if the image file is smaller)
687c6684249SMarkus Armbruster  * @filename    is its filename.
688c6684249SMarkus Armbruster  *
689c6684249SMarkus Armbruster  * For all block drivers, call the bdrv_probe() method to get its
690c6684249SMarkus Armbruster  * probing score.
691c6684249SMarkus Armbruster  * Return the first block driver with the highest probing score.
692c6684249SMarkus Armbruster  */
69338f3ef57SKevin Wolf BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
694c6684249SMarkus Armbruster                             const char *filename)
695c6684249SMarkus Armbruster {
696c6684249SMarkus Armbruster     int score_max = 0, score;
697c6684249SMarkus Armbruster     BlockDriver *drv = NULL, *d;
698c6684249SMarkus Armbruster 
699c6684249SMarkus Armbruster     QLIST_FOREACH(d, &bdrv_drivers, list) {
700c6684249SMarkus Armbruster         if (d->bdrv_probe) {
701c6684249SMarkus Armbruster             score = d->bdrv_probe(buf, buf_size, filename);
702c6684249SMarkus Armbruster             if (score > score_max) {
703c6684249SMarkus Armbruster                 score_max = score;
704c6684249SMarkus Armbruster                 drv = d;
705c6684249SMarkus Armbruster             }
706c6684249SMarkus Armbruster         }
707c6684249SMarkus Armbruster     }
708c6684249SMarkus Armbruster 
709c6684249SMarkus Armbruster     return drv;
710c6684249SMarkus Armbruster }
711c6684249SMarkus Armbruster 
7125696c6e3SKevin Wolf static int find_image_format(BlockBackend *file, const char *filename,
71334b5d2c6SMax Reitz                              BlockDriver **pdrv, Error **errp)
714ea2384d3Sbellard {
715c6684249SMarkus Armbruster     BlockDriver *drv;
7167cddd372SKevin Wolf     uint8_t buf[BLOCK_PROBE_BUF_SIZE];
717f500a6d3SKevin Wolf     int ret = 0;
718f8ea0b00SNicholas Bellinger 
71908a00559SKevin Wolf     /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
7205696c6e3SKevin Wolf     if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
721ef810437SMax Reitz         *pdrv = &bdrv_raw;
722c98ac35dSStefan Weil         return ret;
7231a396859SNicholas A. Bellinger     }
724f8ea0b00SNicholas Bellinger 
7255696c6e3SKevin Wolf     ret = blk_pread(file, 0, buf, sizeof(buf));
726ea2384d3Sbellard     if (ret < 0) {
72734b5d2c6SMax Reitz         error_setg_errno(errp, -ret, "Could not read image for determining its "
72834b5d2c6SMax Reitz                          "format");
729c98ac35dSStefan Weil         *pdrv = NULL;
730c98ac35dSStefan Weil         return ret;
731ea2384d3Sbellard     }
732ea2384d3Sbellard 
733c6684249SMarkus Armbruster     drv = bdrv_probe_all(buf, ret, filename);
734c98ac35dSStefan Weil     if (!drv) {
73534b5d2c6SMax Reitz         error_setg(errp, "Could not determine image format: No compatible "
73634b5d2c6SMax Reitz                    "driver found");
737c98ac35dSStefan Weil         ret = -ENOENT;
738c98ac35dSStefan Weil     }
739c98ac35dSStefan Weil     *pdrv = drv;
740c98ac35dSStefan Weil     return ret;
741ea2384d3Sbellard }
742ea2384d3Sbellard 
74351762288SStefan Hajnoczi /**
74451762288SStefan Hajnoczi  * Set the current 'total_sectors' value
74565a9bb25SMarkus Armbruster  * Return 0 on success, -errno on error.
74651762288SStefan Hajnoczi  */
7473d9f2d2aSKevin Wolf int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
74851762288SStefan Hajnoczi {
74951762288SStefan Hajnoczi     BlockDriver *drv = bs->drv;
75051762288SStefan Hajnoczi 
751d470ad42SMax Reitz     if (!drv) {
752d470ad42SMax Reitz         return -ENOMEDIUM;
753d470ad42SMax Reitz     }
754d470ad42SMax Reitz 
755396759adSNicholas Bellinger     /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
756b192af8aSDimitris Aragiorgis     if (bdrv_is_sg(bs))
757396759adSNicholas Bellinger         return 0;
758396759adSNicholas Bellinger 
75951762288SStefan Hajnoczi     /* query actual device if possible, otherwise just trust the hint */
76051762288SStefan Hajnoczi     if (drv->bdrv_getlength) {
76151762288SStefan Hajnoczi         int64_t length = drv->bdrv_getlength(bs);
76251762288SStefan Hajnoczi         if (length < 0) {
76351762288SStefan Hajnoczi             return length;
76451762288SStefan Hajnoczi         }
7657e382003SFam Zheng         hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
76651762288SStefan Hajnoczi     }
76751762288SStefan Hajnoczi 
76851762288SStefan Hajnoczi     bs->total_sectors = hint;
76951762288SStefan Hajnoczi     return 0;
77051762288SStefan Hajnoczi }
77151762288SStefan Hajnoczi 
772c3993cdcSStefan Hajnoczi /**
773cddff5baSKevin Wolf  * Combines a QDict of new block driver @options with any missing options taken
774cddff5baSKevin Wolf  * from @old_options, so that leaving out an option defaults to its old value.
775cddff5baSKevin Wolf  */
776cddff5baSKevin Wolf static void bdrv_join_options(BlockDriverState *bs, QDict *options,
777cddff5baSKevin Wolf                               QDict *old_options)
778cddff5baSKevin Wolf {
779cddff5baSKevin Wolf     if (bs->drv && bs->drv->bdrv_join_options) {
780cddff5baSKevin Wolf         bs->drv->bdrv_join_options(options, old_options);
781cddff5baSKevin Wolf     } else {
782cddff5baSKevin Wolf         qdict_join(options, old_options, false);
783cddff5baSKevin Wolf     }
784cddff5baSKevin Wolf }
785cddff5baSKevin Wolf 
786543770bdSAlberto Garcia static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
787543770bdSAlberto Garcia                                                             int open_flags,
788543770bdSAlberto Garcia                                                             Error **errp)
789543770bdSAlberto Garcia {
790543770bdSAlberto Garcia     Error *local_err = NULL;
791543770bdSAlberto Garcia     char *value = qemu_opt_get_del(opts, "detect-zeroes");
792543770bdSAlberto Garcia     BlockdevDetectZeroesOptions detect_zeroes =
793543770bdSAlberto Garcia         qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
794543770bdSAlberto Garcia                         BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
795543770bdSAlberto Garcia     g_free(value);
796543770bdSAlberto Garcia     if (local_err) {
797543770bdSAlberto Garcia         error_propagate(errp, local_err);
798543770bdSAlberto Garcia         return detect_zeroes;
799543770bdSAlberto Garcia     }
800543770bdSAlberto Garcia 
801543770bdSAlberto Garcia     if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
802543770bdSAlberto Garcia         !(open_flags & BDRV_O_UNMAP))
803543770bdSAlberto Garcia     {
804543770bdSAlberto Garcia         error_setg(errp, "setting detect-zeroes to unmap is not allowed "
805543770bdSAlberto Garcia                    "without setting discard operation to unmap");
806543770bdSAlberto Garcia     }
807543770bdSAlberto Garcia 
808543770bdSAlberto Garcia     return detect_zeroes;
809543770bdSAlberto Garcia }
810543770bdSAlberto Garcia 
811cddff5baSKevin Wolf /**
8129e8f1835SPaolo Bonzini  * Set open flags for a given discard mode
8139e8f1835SPaolo Bonzini  *
8149e8f1835SPaolo Bonzini  * Return 0 on success, -1 if the discard mode was invalid.
8159e8f1835SPaolo Bonzini  */
8169e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags)
8179e8f1835SPaolo Bonzini {
8189e8f1835SPaolo Bonzini     *flags &= ~BDRV_O_UNMAP;
8199e8f1835SPaolo Bonzini 
8209e8f1835SPaolo Bonzini     if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
8219e8f1835SPaolo Bonzini         /* do nothing */
8229e8f1835SPaolo Bonzini     } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
8239e8f1835SPaolo Bonzini         *flags |= BDRV_O_UNMAP;
8249e8f1835SPaolo Bonzini     } else {
8259e8f1835SPaolo Bonzini         return -1;
8269e8f1835SPaolo Bonzini     }
8279e8f1835SPaolo Bonzini 
8289e8f1835SPaolo Bonzini     return 0;
8299e8f1835SPaolo Bonzini }
8309e8f1835SPaolo Bonzini 
8319e8f1835SPaolo Bonzini /**
832c3993cdcSStefan Hajnoczi  * Set open flags for a given cache mode
833c3993cdcSStefan Hajnoczi  *
834c3993cdcSStefan Hajnoczi  * Return 0 on success, -1 if the cache mode was invalid.
835c3993cdcSStefan Hajnoczi  */
83653e8ae01SKevin Wolf int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
837c3993cdcSStefan Hajnoczi {
838c3993cdcSStefan Hajnoczi     *flags &= ~BDRV_O_CACHE_MASK;
839c3993cdcSStefan Hajnoczi 
840c3993cdcSStefan Hajnoczi     if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
84153e8ae01SKevin Wolf         *writethrough = false;
84253e8ae01SKevin Wolf         *flags |= BDRV_O_NOCACHE;
84392196b2fSStefan Hajnoczi     } else if (!strcmp(mode, "directsync")) {
84453e8ae01SKevin Wolf         *writethrough = true;
84592196b2fSStefan Hajnoczi         *flags |= BDRV_O_NOCACHE;
846c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writeback")) {
84753e8ae01SKevin Wolf         *writethrough = false;
848c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "unsafe")) {
84953e8ae01SKevin Wolf         *writethrough = false;
850c3993cdcSStefan Hajnoczi         *flags |= BDRV_O_NO_FLUSH;
851c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writethrough")) {
85253e8ae01SKevin Wolf         *writethrough = true;
853c3993cdcSStefan Hajnoczi     } else {
854c3993cdcSStefan Hajnoczi         return -1;
855c3993cdcSStefan Hajnoczi     }
856c3993cdcSStefan Hajnoczi 
857c3993cdcSStefan Hajnoczi     return 0;
858c3993cdcSStefan Hajnoczi }
859c3993cdcSStefan Hajnoczi 
860b5411555SKevin Wolf static char *bdrv_child_get_parent_desc(BdrvChild *c)
861b5411555SKevin Wolf {
862b5411555SKevin Wolf     BlockDriverState *parent = c->opaque;
863b5411555SKevin Wolf     return g_strdup(bdrv_get_device_or_node_name(parent));
864b5411555SKevin Wolf }
865b5411555SKevin Wolf 
86620018e12SKevin Wolf static void bdrv_child_cb_drained_begin(BdrvChild *child)
86720018e12SKevin Wolf {
86820018e12SKevin Wolf     BlockDriverState *bs = child->opaque;
8696cd5c9d7SKevin Wolf     bdrv_do_drained_begin_quiesce(bs, NULL, false);
87020018e12SKevin Wolf }
87120018e12SKevin Wolf 
87289bd0305SKevin Wolf static bool bdrv_child_cb_drained_poll(BdrvChild *child)
87389bd0305SKevin Wolf {
87489bd0305SKevin Wolf     BlockDriverState *bs = child->opaque;
8756cd5c9d7SKevin Wolf     return bdrv_drain_poll(bs, false, NULL, false);
87689bd0305SKevin Wolf }
87789bd0305SKevin Wolf 
87820018e12SKevin Wolf static void bdrv_child_cb_drained_end(BdrvChild *child)
87920018e12SKevin Wolf {
88020018e12SKevin Wolf     BlockDriverState *bs = child->opaque;
88120018e12SKevin Wolf     bdrv_drained_end(bs);
88220018e12SKevin Wolf }
88320018e12SKevin Wolf 
884d736f119SKevin Wolf static void bdrv_child_cb_attach(BdrvChild *child)
885d736f119SKevin Wolf {
886d736f119SKevin Wolf     BlockDriverState *bs = child->opaque;
887d736f119SKevin Wolf     bdrv_apply_subtree_drain(child, bs);
888d736f119SKevin Wolf }
889d736f119SKevin Wolf 
890d736f119SKevin Wolf static void bdrv_child_cb_detach(BdrvChild *child)
891d736f119SKevin Wolf {
892d736f119SKevin Wolf     BlockDriverState *bs = child->opaque;
893d736f119SKevin Wolf     bdrv_unapply_subtree_drain(child, bs);
894d736f119SKevin Wolf }
895d736f119SKevin Wolf 
89638701b6aSKevin Wolf static int bdrv_child_cb_inactivate(BdrvChild *child)
89738701b6aSKevin Wolf {
89838701b6aSKevin Wolf     BlockDriverState *bs = child->opaque;
89938701b6aSKevin Wolf     assert(bs->open_flags & BDRV_O_INACTIVE);
90038701b6aSKevin Wolf     return 0;
90138701b6aSKevin Wolf }
90238701b6aSKevin Wolf 
9030b50cc88SKevin Wolf /*
90473176beeSKevin Wolf  * Returns the options and flags that a temporary snapshot should get, based on
90573176beeSKevin Wolf  * the originally requested flags (the originally requested image will have
90673176beeSKevin Wolf  * flags like a backing file)
907b1e6fc08SKevin Wolf  */
90873176beeSKevin Wolf static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
90973176beeSKevin Wolf                                        int parent_flags, QDict *parent_options)
910b1e6fc08SKevin Wolf {
91173176beeSKevin Wolf     *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
91273176beeSKevin Wolf 
91373176beeSKevin Wolf     /* For temporary files, unconditional cache=unsafe is fine */
91473176beeSKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
91573176beeSKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
91641869044SKevin Wolf 
917f87a0e29SAlberto Garcia     /* Copy the read-only option from the parent */
918f87a0e29SAlberto Garcia     qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
919f87a0e29SAlberto Garcia 
92041869044SKevin Wolf     /* aio=native doesn't work for cache.direct=off, so disable it for the
92141869044SKevin Wolf      * temporary snapshot */
92241869044SKevin Wolf     *child_flags &= ~BDRV_O_NATIVE_AIO;
923b1e6fc08SKevin Wolf }
924b1e6fc08SKevin Wolf 
925b1e6fc08SKevin Wolf /*
9268e2160e2SKevin Wolf  * Returns the options and flags that bs->file should get if a protocol driver
9278e2160e2SKevin Wolf  * is expected, based on the given options and flags for the parent BDS
9280b50cc88SKevin Wolf  */
9298e2160e2SKevin Wolf static void bdrv_inherited_options(int *child_flags, QDict *child_options,
9308e2160e2SKevin Wolf                                    int parent_flags, QDict *parent_options)
9310b50cc88SKevin Wolf {
9328e2160e2SKevin Wolf     int flags = parent_flags;
9338e2160e2SKevin Wolf 
9340b50cc88SKevin Wolf     /* Enable protocol handling, disable format probing for bs->file */
9350b50cc88SKevin Wolf     flags |= BDRV_O_PROTOCOL;
9360b50cc88SKevin Wolf 
93791a097e7SKevin Wolf     /* If the cache mode isn't explicitly set, inherit direct and no-flush from
93891a097e7SKevin Wolf      * the parent. */
93991a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
94091a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
9415a9347c6SFam Zheng     qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
94291a097e7SKevin Wolf 
943f87a0e29SAlberto Garcia     /* Inherit the read-only option from the parent if it's not set */
944f87a0e29SAlberto Garcia     qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
945e35bdc12SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_AUTO_READ_ONLY);
946f87a0e29SAlberto Garcia 
9470b50cc88SKevin Wolf     /* Our block drivers take care to send flushes and respect unmap policy,
94891a097e7SKevin Wolf      * so we can default to enable both on lower layers regardless of the
94991a097e7SKevin Wolf      * corresponding parent options. */
950818584a4SKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
9510b50cc88SKevin Wolf 
9520b50cc88SKevin Wolf     /* Clear flags that only apply to the top layer */
953abb06c5aSDaniel P. Berrange     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ |
954abb06c5aSDaniel P. Berrange                BDRV_O_NO_IO);
9550b50cc88SKevin Wolf 
9568e2160e2SKevin Wolf     *child_flags = flags;
9570b50cc88SKevin Wolf }
9580b50cc88SKevin Wolf 
959f3930ed0SKevin Wolf const BdrvChildRole child_file = {
9606cd5c9d7SKevin Wolf     .parent_is_bds   = true,
961b5411555SKevin Wolf     .get_parent_desc = bdrv_child_get_parent_desc,
9628e2160e2SKevin Wolf     .inherit_options = bdrv_inherited_options,
96320018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
96489bd0305SKevin Wolf     .drained_poll    = bdrv_child_cb_drained_poll,
96520018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
966d736f119SKevin Wolf     .attach          = bdrv_child_cb_attach,
967d736f119SKevin Wolf     .detach          = bdrv_child_cb_detach,
96838701b6aSKevin Wolf     .inactivate      = bdrv_child_cb_inactivate,
969f3930ed0SKevin Wolf };
970f3930ed0SKevin Wolf 
971f3930ed0SKevin Wolf /*
9728e2160e2SKevin Wolf  * Returns the options and flags that bs->file should get if the use of formats
9738e2160e2SKevin Wolf  * (and not only protocols) is permitted for it, based on the given options and
9748e2160e2SKevin Wolf  * flags for the parent BDS
975f3930ed0SKevin Wolf  */
9768e2160e2SKevin Wolf static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
9778e2160e2SKevin Wolf                                        int parent_flags, QDict *parent_options)
978f3930ed0SKevin Wolf {
9798e2160e2SKevin Wolf     child_file.inherit_options(child_flags, child_options,
9808e2160e2SKevin Wolf                                parent_flags, parent_options);
9818e2160e2SKevin Wolf 
982abb06c5aSDaniel P. Berrange     *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
983f3930ed0SKevin Wolf }
984f3930ed0SKevin Wolf 
985f3930ed0SKevin Wolf const BdrvChildRole child_format = {
9866cd5c9d7SKevin Wolf     .parent_is_bds   = true,
987b5411555SKevin Wolf     .get_parent_desc = bdrv_child_get_parent_desc,
9888e2160e2SKevin Wolf     .inherit_options = bdrv_inherited_fmt_options,
98920018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
99089bd0305SKevin Wolf     .drained_poll    = bdrv_child_cb_drained_poll,
99120018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
992d736f119SKevin Wolf     .attach          = bdrv_child_cb_attach,
993d736f119SKevin Wolf     .detach          = bdrv_child_cb_detach,
99438701b6aSKevin Wolf     .inactivate      = bdrv_child_cb_inactivate,
995f3930ed0SKevin Wolf };
996f3930ed0SKevin Wolf 
997db95dbbaSKevin Wolf static void bdrv_backing_attach(BdrvChild *c)
998db95dbbaSKevin Wolf {
999db95dbbaSKevin Wolf     BlockDriverState *parent = c->opaque;
1000db95dbbaSKevin Wolf     BlockDriverState *backing_hd = c->bs;
1001db95dbbaSKevin Wolf 
1002db95dbbaSKevin Wolf     assert(!parent->backing_blocker);
1003db95dbbaSKevin Wolf     error_setg(&parent->backing_blocker,
1004db95dbbaSKevin Wolf                "node is used as backing hd of '%s'",
1005db95dbbaSKevin Wolf                bdrv_get_device_or_node_name(parent));
1006db95dbbaSKevin Wolf 
1007db95dbbaSKevin Wolf     parent->open_flags &= ~BDRV_O_NO_BACKING;
1008db95dbbaSKevin Wolf     pstrcpy(parent->backing_file, sizeof(parent->backing_file),
1009db95dbbaSKevin Wolf             backing_hd->filename);
1010db95dbbaSKevin Wolf     pstrcpy(parent->backing_format, sizeof(parent->backing_format),
1011db95dbbaSKevin Wolf             backing_hd->drv ? backing_hd->drv->format_name : "");
1012db95dbbaSKevin Wolf 
1013db95dbbaSKevin Wolf     bdrv_op_block_all(backing_hd, parent->backing_blocker);
1014db95dbbaSKevin Wolf     /* Otherwise we won't be able to commit or stream */
1015db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1016db95dbbaSKevin Wolf                     parent->backing_blocker);
1017db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1018db95dbbaSKevin Wolf                     parent->backing_blocker);
1019db95dbbaSKevin Wolf     /*
1020db95dbbaSKevin Wolf      * We do backup in 3 ways:
1021db95dbbaSKevin Wolf      * 1. drive backup
1022db95dbbaSKevin Wolf      *    The target bs is new opened, and the source is top BDS
1023db95dbbaSKevin Wolf      * 2. blockdev backup
1024db95dbbaSKevin Wolf      *    Both the source and the target are top BDSes.
1025db95dbbaSKevin Wolf      * 3. internal backup(used for block replication)
1026db95dbbaSKevin Wolf      *    Both the source and the target are backing file
1027db95dbbaSKevin Wolf      *
1028db95dbbaSKevin Wolf      * In case 1 and 2, neither the source nor the target is the backing file.
1029db95dbbaSKevin Wolf      * In case 3, we will block the top BDS, so there is only one block job
1030db95dbbaSKevin Wolf      * for the top BDS and its backing chain.
1031db95dbbaSKevin Wolf      */
1032db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1033db95dbbaSKevin Wolf                     parent->backing_blocker);
1034db95dbbaSKevin Wolf     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1035db95dbbaSKevin Wolf                     parent->backing_blocker);
1036d736f119SKevin Wolf 
1037d736f119SKevin Wolf     bdrv_child_cb_attach(c);
1038db95dbbaSKevin Wolf }
1039db95dbbaSKevin Wolf 
1040db95dbbaSKevin Wolf static void bdrv_backing_detach(BdrvChild *c)
1041db95dbbaSKevin Wolf {
1042db95dbbaSKevin Wolf     BlockDriverState *parent = c->opaque;
1043db95dbbaSKevin Wolf 
1044db95dbbaSKevin Wolf     assert(parent->backing_blocker);
1045db95dbbaSKevin Wolf     bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1046db95dbbaSKevin Wolf     error_free(parent->backing_blocker);
1047db95dbbaSKevin Wolf     parent->backing_blocker = NULL;
1048d736f119SKevin Wolf 
1049d736f119SKevin Wolf     bdrv_child_cb_detach(c);
1050db95dbbaSKevin Wolf }
1051db95dbbaSKevin Wolf 
1052317fc44eSKevin Wolf /*
10538e2160e2SKevin Wolf  * Returns the options and flags that bs->backing should get, based on the
10548e2160e2SKevin Wolf  * given options and flags for the parent BDS
1055317fc44eSKevin Wolf  */
10568e2160e2SKevin Wolf static void bdrv_backing_options(int *child_flags, QDict *child_options,
10578e2160e2SKevin Wolf                                  int parent_flags, QDict *parent_options)
1058317fc44eSKevin Wolf {
10598e2160e2SKevin Wolf     int flags = parent_flags;
10608e2160e2SKevin Wolf 
1061b8816a43SKevin Wolf     /* The cache mode is inherited unmodified for backing files; except WCE,
1062b8816a43SKevin Wolf      * which is only applied on the top level (BlockBackend) */
106391a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
106491a097e7SKevin Wolf     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
10655a9347c6SFam Zheng     qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
106691a097e7SKevin Wolf 
1067317fc44eSKevin Wolf     /* backing files always opened read-only */
1068f87a0e29SAlberto Garcia     qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1069e35bdc12SKevin Wolf     qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1070f87a0e29SAlberto Garcia     flags &= ~BDRV_O_COPY_ON_READ;
1071317fc44eSKevin Wolf 
1072317fc44eSKevin Wolf     /* snapshot=on is handled on the top layer */
10738bfea15dSKevin Wolf     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
1074317fc44eSKevin Wolf 
10758e2160e2SKevin Wolf     *child_flags = flags;
1076317fc44eSKevin Wolf }
1077317fc44eSKevin Wolf 
10786858eba0SKevin Wolf static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
10796858eba0SKevin Wolf                                         const char *filename, Error **errp)
10806858eba0SKevin Wolf {
10816858eba0SKevin Wolf     BlockDriverState *parent = c->opaque;
1082e94d3dbaSAlberto Garcia     bool read_only = bdrv_is_read_only(parent);
10836858eba0SKevin Wolf     int ret;
10846858eba0SKevin Wolf 
1085e94d3dbaSAlberto Garcia     if (read_only) {
1086e94d3dbaSAlberto Garcia         ret = bdrv_reopen_set_read_only(parent, false, errp);
108761f09ceaSKevin Wolf         if (ret < 0) {
108861f09ceaSKevin Wolf             return ret;
108961f09ceaSKevin Wolf         }
109061f09ceaSKevin Wolf     }
109161f09ceaSKevin Wolf 
10926858eba0SKevin Wolf     ret = bdrv_change_backing_file(parent, filename,
10936858eba0SKevin Wolf                                    base->drv ? base->drv->format_name : "");
10946858eba0SKevin Wolf     if (ret < 0) {
109564730694SKevin Wolf         error_setg_errno(errp, -ret, "Could not update backing file link");
10966858eba0SKevin Wolf     }
10976858eba0SKevin Wolf 
1098e94d3dbaSAlberto Garcia     if (read_only) {
1099e94d3dbaSAlberto Garcia         bdrv_reopen_set_read_only(parent, true, NULL);
110061f09ceaSKevin Wolf     }
110161f09ceaSKevin Wolf 
11026858eba0SKevin Wolf     return ret;
11036858eba0SKevin Wolf }
11046858eba0SKevin Wolf 
110591ef3825SKevin Wolf const BdrvChildRole child_backing = {
11066cd5c9d7SKevin Wolf     .parent_is_bds   = true,
1107b5411555SKevin Wolf     .get_parent_desc = bdrv_child_get_parent_desc,
1108db95dbbaSKevin Wolf     .attach          = bdrv_backing_attach,
1109db95dbbaSKevin Wolf     .detach          = bdrv_backing_detach,
11108e2160e2SKevin Wolf     .inherit_options = bdrv_backing_options,
111120018e12SKevin Wolf     .drained_begin   = bdrv_child_cb_drained_begin,
111289bd0305SKevin Wolf     .drained_poll    = bdrv_child_cb_drained_poll,
111320018e12SKevin Wolf     .drained_end     = bdrv_child_cb_drained_end,
111438701b6aSKevin Wolf     .inactivate      = bdrv_child_cb_inactivate,
11156858eba0SKevin Wolf     .update_filename = bdrv_backing_update_filename,
1116f3930ed0SKevin Wolf };
1117f3930ed0SKevin Wolf 
11187b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags)
11197b272452SKevin Wolf {
112061de4c68SKevin Wolf     int open_flags = flags;
11217b272452SKevin Wolf 
11227b272452SKevin Wolf     /*
11237b272452SKevin Wolf      * Clear flags that are internal to the block layer before opening the
11247b272452SKevin Wolf      * image.
11257b272452SKevin Wolf      */
112620cca275SKevin Wolf     open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
11277b272452SKevin Wolf 
11287b272452SKevin Wolf     /*
11297b272452SKevin Wolf      * Snapshots should be writable.
11307b272452SKevin Wolf      */
11318bfea15dSKevin Wolf     if (flags & BDRV_O_TEMPORARY) {
11327b272452SKevin Wolf         open_flags |= BDRV_O_RDWR;
11337b272452SKevin Wolf     }
11347b272452SKevin Wolf 
11357b272452SKevin Wolf     return open_flags;
11367b272452SKevin Wolf }
11377b272452SKevin Wolf 
113891a097e7SKevin Wolf static void update_flags_from_options(int *flags, QemuOpts *opts)
113991a097e7SKevin Wolf {
11402a3d4331SAlberto Garcia     *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
114191a097e7SKevin Wolf 
114291a097e7SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH));
114357f9db9aSAlberto Garcia     if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
114491a097e7SKevin Wolf         *flags |= BDRV_O_NO_FLUSH;
114591a097e7SKevin Wolf     }
114691a097e7SKevin Wolf 
114791a097e7SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT));
114857f9db9aSAlberto Garcia     if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
114991a097e7SKevin Wolf         *flags |= BDRV_O_NOCACHE;
115091a097e7SKevin Wolf     }
1151f87a0e29SAlberto Garcia 
1152f87a0e29SAlberto Garcia     assert(qemu_opt_find(opts, BDRV_OPT_READ_ONLY));
115357f9db9aSAlberto Garcia     if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
1154f87a0e29SAlberto Garcia         *flags |= BDRV_O_RDWR;
1155f87a0e29SAlberto Garcia     }
1156f87a0e29SAlberto Garcia 
1157e35bdc12SKevin Wolf     assert(qemu_opt_find(opts, BDRV_OPT_AUTO_READ_ONLY));
1158e35bdc12SKevin Wolf     if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1159e35bdc12SKevin Wolf         *flags |= BDRV_O_AUTO_RDONLY;
1160e35bdc12SKevin Wolf     }
116191a097e7SKevin Wolf }
116291a097e7SKevin Wolf 
116391a097e7SKevin Wolf static void update_options_from_flags(QDict *options, int flags)
116491a097e7SKevin Wolf {
116591a097e7SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
116646f5ac20SEric Blake         qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
116791a097e7SKevin Wolf     }
116891a097e7SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
116946f5ac20SEric Blake         qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
117046f5ac20SEric Blake                        flags & BDRV_O_NO_FLUSH);
117191a097e7SKevin Wolf     }
1172f87a0e29SAlberto Garcia     if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
117346f5ac20SEric Blake         qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
1174f87a0e29SAlberto Garcia     }
1175e35bdc12SKevin Wolf     if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1176e35bdc12SKevin Wolf         qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1177e35bdc12SKevin Wolf                        flags & BDRV_O_AUTO_RDONLY);
1178e35bdc12SKevin Wolf     }
117991a097e7SKevin Wolf }
118091a097e7SKevin Wolf 
1181636ea370SKevin Wolf static void bdrv_assign_node_name(BlockDriverState *bs,
11826913c0c2SBenoît Canet                                   const char *node_name,
11836913c0c2SBenoît Canet                                   Error **errp)
11846913c0c2SBenoît Canet {
118515489c76SJeff Cody     char *gen_node_name = NULL;
11866913c0c2SBenoît Canet 
118715489c76SJeff Cody     if (!node_name) {
118815489c76SJeff Cody         node_name = gen_node_name = id_generate(ID_BLOCK);
118915489c76SJeff Cody     } else if (!id_wellformed(node_name)) {
119015489c76SJeff Cody         /*
119115489c76SJeff Cody          * Check for empty string or invalid characters, but not if it is
119215489c76SJeff Cody          * generated (generated names use characters not available to the user)
119315489c76SJeff Cody          */
11949aebf3b8SKevin Wolf         error_setg(errp, "Invalid node name");
1195636ea370SKevin Wolf         return;
11966913c0c2SBenoît Canet     }
11976913c0c2SBenoît Canet 
11980c5e94eeSBenoît Canet     /* takes care of avoiding namespaces collisions */
11997f06d47eSMarkus Armbruster     if (blk_by_name(node_name)) {
12000c5e94eeSBenoît Canet         error_setg(errp, "node-name=%s is conflicting with a device id",
12010c5e94eeSBenoît Canet                    node_name);
120215489c76SJeff Cody         goto out;
12030c5e94eeSBenoît Canet     }
12040c5e94eeSBenoît Canet 
12056913c0c2SBenoît Canet     /* takes care of avoiding duplicates node names */
12066913c0c2SBenoît Canet     if (bdrv_find_node(node_name)) {
12076913c0c2SBenoît Canet         error_setg(errp, "Duplicate node name");
120815489c76SJeff Cody         goto out;
12096913c0c2SBenoît Canet     }
12106913c0c2SBenoît Canet 
1211824808ddSKevin Wolf     /* Make sure that the node name isn't truncated */
1212824808ddSKevin Wolf     if (strlen(node_name) >= sizeof(bs->node_name)) {
1213824808ddSKevin Wolf         error_setg(errp, "Node name too long");
1214824808ddSKevin Wolf         goto out;
1215824808ddSKevin Wolf     }
1216824808ddSKevin Wolf 
12176913c0c2SBenoît Canet     /* copy node name into the bs and insert it into the graph list */
12186913c0c2SBenoît Canet     pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
12196913c0c2SBenoît Canet     QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
122015489c76SJeff Cody out:
122115489c76SJeff Cody     g_free(gen_node_name);
12226913c0c2SBenoît Canet }
12236913c0c2SBenoît Canet 
122401a56501SKevin Wolf static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
122501a56501SKevin Wolf                             const char *node_name, QDict *options,
122601a56501SKevin Wolf                             int open_flags, Error **errp)
122701a56501SKevin Wolf {
122801a56501SKevin Wolf     Error *local_err = NULL;
12290f12264eSKevin Wolf     int i, ret;
123001a56501SKevin Wolf 
123101a56501SKevin Wolf     bdrv_assign_node_name(bs, node_name, &local_err);
123201a56501SKevin Wolf     if (local_err) {
123301a56501SKevin Wolf         error_propagate(errp, local_err);
123401a56501SKevin Wolf         return -EINVAL;
123501a56501SKevin Wolf     }
123601a56501SKevin Wolf 
123701a56501SKevin Wolf     bs->drv = drv;
1238680c7f96SKevin Wolf     bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
123901a56501SKevin Wolf     bs->opaque = g_malloc0(drv->instance_size);
124001a56501SKevin Wolf 
124101a56501SKevin Wolf     if (drv->bdrv_file_open) {
124201a56501SKevin Wolf         assert(!drv->bdrv_needs_filename || bs->filename[0]);
124301a56501SKevin Wolf         ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1244680c7f96SKevin Wolf     } else if (drv->bdrv_open) {
124501a56501SKevin Wolf         ret = drv->bdrv_open(bs, options, open_flags, &local_err);
1246680c7f96SKevin Wolf     } else {
1247680c7f96SKevin Wolf         ret = 0;
124801a56501SKevin Wolf     }
124901a56501SKevin Wolf 
125001a56501SKevin Wolf     if (ret < 0) {
125101a56501SKevin Wolf         if (local_err) {
125201a56501SKevin Wolf             error_propagate(errp, local_err);
125301a56501SKevin Wolf         } else if (bs->filename[0]) {
125401a56501SKevin Wolf             error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
125501a56501SKevin Wolf         } else {
125601a56501SKevin Wolf             error_setg_errno(errp, -ret, "Could not open image");
125701a56501SKevin Wolf         }
1258180ca19aSManos Pitsidianakis         goto open_failed;
125901a56501SKevin Wolf     }
126001a56501SKevin Wolf 
126101a56501SKevin Wolf     ret = refresh_total_sectors(bs, bs->total_sectors);
126201a56501SKevin Wolf     if (ret < 0) {
126301a56501SKevin Wolf         error_setg_errno(errp, -ret, "Could not refresh total sector count");
1264180ca19aSManos Pitsidianakis         return ret;
126501a56501SKevin Wolf     }
126601a56501SKevin Wolf 
126701a56501SKevin Wolf     bdrv_refresh_limits(bs, &local_err);
126801a56501SKevin Wolf     if (local_err) {
126901a56501SKevin Wolf         error_propagate(errp, local_err);
1270180ca19aSManos Pitsidianakis         return -EINVAL;
127101a56501SKevin Wolf     }
127201a56501SKevin Wolf 
127301a56501SKevin Wolf     assert(bdrv_opt_mem_align(bs) != 0);
127401a56501SKevin Wolf     assert(bdrv_min_mem_align(bs) != 0);
127501a56501SKevin Wolf     assert(is_power_of_2(bs->bl.request_alignment));
127601a56501SKevin Wolf 
12770f12264eSKevin Wolf     for (i = 0; i < bs->quiesce_counter; i++) {
12780f12264eSKevin Wolf         if (drv->bdrv_co_drain_begin) {
12790f12264eSKevin Wolf             drv->bdrv_co_drain_begin(bs);
12800f12264eSKevin Wolf         }
12810f12264eSKevin Wolf     }
12820f12264eSKevin Wolf 
128301a56501SKevin Wolf     return 0;
1284180ca19aSManos Pitsidianakis open_failed:
1285180ca19aSManos Pitsidianakis     bs->drv = NULL;
1286180ca19aSManos Pitsidianakis     if (bs->file != NULL) {
1287180ca19aSManos Pitsidianakis         bdrv_unref_child(bs, bs->file);
1288180ca19aSManos Pitsidianakis         bs->file = NULL;
1289180ca19aSManos Pitsidianakis     }
129001a56501SKevin Wolf     g_free(bs->opaque);
129101a56501SKevin Wolf     bs->opaque = NULL;
129201a56501SKevin Wolf     return ret;
129301a56501SKevin Wolf }
129401a56501SKevin Wolf 
1295680c7f96SKevin Wolf BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1296680c7f96SKevin Wolf                                        int flags, Error **errp)
1297680c7f96SKevin Wolf {
1298680c7f96SKevin Wolf     BlockDriverState *bs;
1299680c7f96SKevin Wolf     int ret;
1300680c7f96SKevin Wolf 
1301680c7f96SKevin Wolf     bs = bdrv_new();
1302680c7f96SKevin Wolf     bs->open_flags = flags;
1303680c7f96SKevin Wolf     bs->explicit_options = qdict_new();
1304680c7f96SKevin Wolf     bs->options = qdict_new();
1305680c7f96SKevin Wolf     bs->opaque = NULL;
1306680c7f96SKevin Wolf 
1307680c7f96SKevin Wolf     update_options_from_flags(bs->options, flags);
1308680c7f96SKevin Wolf 
1309680c7f96SKevin Wolf     ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1310680c7f96SKevin Wolf     if (ret < 0) {
1311cb3e7f08SMarc-André Lureau         qobject_unref(bs->explicit_options);
1312180ca19aSManos Pitsidianakis         bs->explicit_options = NULL;
1313cb3e7f08SMarc-André Lureau         qobject_unref(bs->options);
1314180ca19aSManos Pitsidianakis         bs->options = NULL;
1315680c7f96SKevin Wolf         bdrv_unref(bs);
1316680c7f96SKevin Wolf         return NULL;
1317680c7f96SKevin Wolf     }
1318680c7f96SKevin Wolf 
1319680c7f96SKevin Wolf     return bs;
1320680c7f96SKevin Wolf }
1321680c7f96SKevin Wolf 
1322c5f3014bSKevin Wolf QemuOptsList bdrv_runtime_opts = {
132318edf289SKevin Wolf     .name = "bdrv_common",
132418edf289SKevin Wolf     .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
132518edf289SKevin Wolf     .desc = {
132618edf289SKevin Wolf         {
132718edf289SKevin Wolf             .name = "node-name",
132818edf289SKevin Wolf             .type = QEMU_OPT_STRING,
132918edf289SKevin Wolf             .help = "Node name of the block device node",
133018edf289SKevin Wolf         },
133162392ebbSKevin Wolf         {
133262392ebbSKevin Wolf             .name = "driver",
133362392ebbSKevin Wolf             .type = QEMU_OPT_STRING,
133462392ebbSKevin Wolf             .help = "Block driver to use for the node",
133562392ebbSKevin Wolf         },
133691a097e7SKevin Wolf         {
133791a097e7SKevin Wolf             .name = BDRV_OPT_CACHE_DIRECT,
133891a097e7SKevin Wolf             .type = QEMU_OPT_BOOL,
133991a097e7SKevin Wolf             .help = "Bypass software writeback cache on the host",
134091a097e7SKevin Wolf         },
134191a097e7SKevin Wolf         {
134291a097e7SKevin Wolf             .name = BDRV_OPT_CACHE_NO_FLUSH,
134391a097e7SKevin Wolf             .type = QEMU_OPT_BOOL,
134491a097e7SKevin Wolf             .help = "Ignore flush requests",
134591a097e7SKevin Wolf         },
1346f87a0e29SAlberto Garcia         {
1347f87a0e29SAlberto Garcia             .name = BDRV_OPT_READ_ONLY,
1348f87a0e29SAlberto Garcia             .type = QEMU_OPT_BOOL,
1349f87a0e29SAlberto Garcia             .help = "Node is opened in read-only mode",
1350f87a0e29SAlberto Garcia         },
1351692e01a2SKevin Wolf         {
1352e35bdc12SKevin Wolf             .name = BDRV_OPT_AUTO_READ_ONLY,
1353e35bdc12SKevin Wolf             .type = QEMU_OPT_BOOL,
1354e35bdc12SKevin Wolf             .help = "Node can become read-only if opening read-write fails",
1355e35bdc12SKevin Wolf         },
1356e35bdc12SKevin Wolf         {
1357692e01a2SKevin Wolf             .name = "detect-zeroes",
1358692e01a2SKevin Wolf             .type = QEMU_OPT_STRING,
1359692e01a2SKevin Wolf             .help = "try to optimize zero writes (off, on, unmap)",
1360692e01a2SKevin Wolf         },
1361818584a4SKevin Wolf         {
1362415bbca8SAlberto Garcia             .name = BDRV_OPT_DISCARD,
1363818584a4SKevin Wolf             .type = QEMU_OPT_STRING,
1364818584a4SKevin Wolf             .help = "discard operation (ignore/off, unmap/on)",
1365818584a4SKevin Wolf         },
13665a9347c6SFam Zheng         {
13675a9347c6SFam Zheng             .name = BDRV_OPT_FORCE_SHARE,
13685a9347c6SFam Zheng             .type = QEMU_OPT_BOOL,
13695a9347c6SFam Zheng             .help = "always accept other writers (default: off)",
13705a9347c6SFam Zheng         },
137118edf289SKevin Wolf         { /* end of list */ }
137218edf289SKevin Wolf     },
137318edf289SKevin Wolf };
137418edf289SKevin Wolf 
1375b6ce07aaSKevin Wolf /*
137657915332SKevin Wolf  * Common part for opening disk images and files
1377b6ad491aSKevin Wolf  *
1378b6ad491aSKevin Wolf  * Removes all processed options from *options.
137957915332SKevin Wolf  */
13805696c6e3SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
138182dc8b41SKevin Wolf                             QDict *options, Error **errp)
138257915332SKevin Wolf {
138357915332SKevin Wolf     int ret, open_flags;
1384035fccdfSKevin Wolf     const char *filename;
138562392ebbSKevin Wolf     const char *driver_name = NULL;
13866913c0c2SBenoît Canet     const char *node_name = NULL;
1387818584a4SKevin Wolf     const char *discard;
138818edf289SKevin Wolf     QemuOpts *opts;
138962392ebbSKevin Wolf     BlockDriver *drv;
139034b5d2c6SMax Reitz     Error *local_err = NULL;
139157915332SKevin Wolf 
13926405875cSPaolo Bonzini     assert(bs->file == NULL);
1393707ff828SKevin Wolf     assert(options != NULL && bs->options != options);
139457915332SKevin Wolf 
139562392ebbSKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
139662392ebbSKevin Wolf     qemu_opts_absorb_qdict(opts, options, &local_err);
139762392ebbSKevin Wolf     if (local_err) {
139862392ebbSKevin Wolf         error_propagate(errp, local_err);
139962392ebbSKevin Wolf         ret = -EINVAL;
140062392ebbSKevin Wolf         goto fail_opts;
140162392ebbSKevin Wolf     }
140262392ebbSKevin Wolf 
14039b7e8691SAlberto Garcia     update_flags_from_options(&bs->open_flags, opts);
14049b7e8691SAlberto Garcia 
140562392ebbSKevin Wolf     driver_name = qemu_opt_get(opts, "driver");
140662392ebbSKevin Wolf     drv = bdrv_find_format(driver_name);
140762392ebbSKevin Wolf     assert(drv != NULL);
140862392ebbSKevin Wolf 
14095a9347c6SFam Zheng     bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
14105a9347c6SFam Zheng 
14115a9347c6SFam Zheng     if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
14125a9347c6SFam Zheng         error_setg(errp,
14135a9347c6SFam Zheng                    BDRV_OPT_FORCE_SHARE
14145a9347c6SFam Zheng                    "=on can only be used with read-only images");
14155a9347c6SFam Zheng         ret = -EINVAL;
14165a9347c6SFam Zheng         goto fail_opts;
14175a9347c6SFam Zheng     }
14185a9347c6SFam Zheng 
141945673671SKevin Wolf     if (file != NULL) {
14205696c6e3SKevin Wolf         filename = blk_bs(file)->filename;
142145673671SKevin Wolf     } else {
1422129c7d1cSMarkus Armbruster         /*
1423129c7d1cSMarkus Armbruster          * Caution: while qdict_get_try_str() is fine, getting
1424129c7d1cSMarkus Armbruster          * non-string types would require more care.  When @options
1425129c7d1cSMarkus Armbruster          * come from -blockdev or blockdev_add, its members are typed
1426129c7d1cSMarkus Armbruster          * according to the QAPI schema, but when they come from
1427129c7d1cSMarkus Armbruster          * -drive, they're all QString.
1428129c7d1cSMarkus Armbruster          */
142945673671SKevin Wolf         filename = qdict_get_try_str(options, "filename");
143045673671SKevin Wolf     }
143145673671SKevin Wolf 
14324a008240SMax Reitz     if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
1433765003dbSKevin Wolf         error_setg(errp, "The '%s' block driver requires a file name",
1434765003dbSKevin Wolf                    drv->format_name);
143518edf289SKevin Wolf         ret = -EINVAL;
143618edf289SKevin Wolf         goto fail_opts;
143718edf289SKevin Wolf     }
143818edf289SKevin Wolf 
143982dc8b41SKevin Wolf     trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
144082dc8b41SKevin Wolf                            drv->format_name);
144162392ebbSKevin Wolf 
144282dc8b41SKevin Wolf     bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1443b64ec4e4SFam Zheng 
1444b64ec4e4SFam Zheng     if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
14458f94a6e4SKevin Wolf         error_setg(errp,
14468f94a6e4SKevin Wolf                    !bs->read_only && bdrv_is_whitelisted(drv, true)
14478f94a6e4SKevin Wolf                         ? "Driver '%s' can only be used for read-only devices"
14488f94a6e4SKevin Wolf                         : "Driver '%s' is not whitelisted",
14498f94a6e4SKevin Wolf                    drv->format_name);
145018edf289SKevin Wolf         ret = -ENOTSUP;
145118edf289SKevin Wolf         goto fail_opts;
1452b64ec4e4SFam Zheng     }
145357915332SKevin Wolf 
1454d3faa13eSPaolo Bonzini     /* bdrv_new() and bdrv_close() make it so */
1455d3faa13eSPaolo Bonzini     assert(atomic_read(&bs->copy_on_read) == 0);
1456d3faa13eSPaolo Bonzini 
145782dc8b41SKevin Wolf     if (bs->open_flags & BDRV_O_COPY_ON_READ) {
14580ebd24e0SKevin Wolf         if (!bs->read_only) {
145953fec9d3SStefan Hajnoczi             bdrv_enable_copy_on_read(bs);
14600ebd24e0SKevin Wolf         } else {
14610ebd24e0SKevin Wolf             error_setg(errp, "Can't use copy-on-read on read-only device");
146218edf289SKevin Wolf             ret = -EINVAL;
146318edf289SKevin Wolf             goto fail_opts;
14640ebd24e0SKevin Wolf         }
146553fec9d3SStefan Hajnoczi     }
146653fec9d3SStefan Hajnoczi 
1467415bbca8SAlberto Garcia     discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
1468818584a4SKevin Wolf     if (discard != NULL) {
1469818584a4SKevin Wolf         if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1470818584a4SKevin Wolf             error_setg(errp, "Invalid discard option");
1471818584a4SKevin Wolf             ret = -EINVAL;
1472818584a4SKevin Wolf             goto fail_opts;
1473818584a4SKevin Wolf         }
1474818584a4SKevin Wolf     }
1475818584a4SKevin Wolf 
1476543770bdSAlberto Garcia     bs->detect_zeroes =
1477543770bdSAlberto Garcia         bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1478692e01a2SKevin Wolf     if (local_err) {
1479692e01a2SKevin Wolf         error_propagate(errp, local_err);
1480692e01a2SKevin Wolf         ret = -EINVAL;
1481692e01a2SKevin Wolf         goto fail_opts;
1482692e01a2SKevin Wolf     }
1483692e01a2SKevin Wolf 
1484c2ad1b0cSKevin Wolf     if (filename != NULL) {
148557915332SKevin Wolf         pstrcpy(bs->filename, sizeof(bs->filename), filename);
1486c2ad1b0cSKevin Wolf     } else {
1487c2ad1b0cSKevin Wolf         bs->filename[0] = '\0';
1488c2ad1b0cSKevin Wolf     }
148991af7014SMax Reitz     pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
149057915332SKevin Wolf 
149166f82ceeSKevin Wolf     /* Open the image, either directly or using a protocol */
149282dc8b41SKevin Wolf     open_flags = bdrv_open_flags(bs, bs->open_flags);
149301a56501SKevin Wolf     node_name = qemu_opt_get(opts, "node-name");
149466f82ceeSKevin Wolf 
149501a56501SKevin Wolf     assert(!drv->bdrv_file_open || file == NULL);
149601a56501SKevin Wolf     ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
149757915332SKevin Wolf     if (ret < 0) {
149801a56501SKevin Wolf         goto fail_opts;
149934b5d2c6SMax Reitz     }
150018edf289SKevin Wolf 
150118edf289SKevin Wolf     qemu_opts_del(opts);
150257915332SKevin Wolf     return 0;
150357915332SKevin Wolf 
150418edf289SKevin Wolf fail_opts:
150518edf289SKevin Wolf     qemu_opts_del(opts);
150657915332SKevin Wolf     return ret;
150757915332SKevin Wolf }
150857915332SKevin Wolf 
15095e5c4f63SKevin Wolf static QDict *parse_json_filename(const char *filename, Error **errp)
15105e5c4f63SKevin Wolf {
15115e5c4f63SKevin Wolf     QObject *options_obj;
15125e5c4f63SKevin Wolf     QDict *options;
15135e5c4f63SKevin Wolf     int ret;
15145e5c4f63SKevin Wolf 
15155e5c4f63SKevin Wolf     ret = strstart(filename, "json:", &filename);
15165e5c4f63SKevin Wolf     assert(ret);
15175e5c4f63SKevin Wolf 
15185577fff7SMarkus Armbruster     options_obj = qobject_from_json(filename, errp);
15195e5c4f63SKevin Wolf     if (!options_obj) {
15205577fff7SMarkus Armbruster         error_prepend(errp, "Could not parse the JSON options: ");
15215577fff7SMarkus Armbruster         return NULL;
15225577fff7SMarkus Armbruster     }
15235e5c4f63SKevin Wolf 
15247dc847ebSMax Reitz     options = qobject_to(QDict, options_obj);
1525ca6b6e1eSMarkus Armbruster     if (!options) {
1526cb3e7f08SMarc-André Lureau         qobject_unref(options_obj);
15275e5c4f63SKevin Wolf         error_setg(errp, "Invalid JSON object given");
15285e5c4f63SKevin Wolf         return NULL;
15295e5c4f63SKevin Wolf     }
15305e5c4f63SKevin Wolf 
15315e5c4f63SKevin Wolf     qdict_flatten(options);
15325e5c4f63SKevin Wolf 
15335e5c4f63SKevin Wolf     return options;
15345e5c4f63SKevin Wolf }
15355e5c4f63SKevin Wolf 
1536de3b53f0SKevin Wolf static void parse_json_protocol(QDict *options, const char **pfilename,
1537de3b53f0SKevin Wolf                                 Error **errp)
1538de3b53f0SKevin Wolf {
1539de3b53f0SKevin Wolf     QDict *json_options;
1540de3b53f0SKevin Wolf     Error *local_err = NULL;
1541de3b53f0SKevin Wolf 
1542de3b53f0SKevin Wolf     /* Parse json: pseudo-protocol */
1543de3b53f0SKevin Wolf     if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1544de3b53f0SKevin Wolf         return;
1545de3b53f0SKevin Wolf     }
1546de3b53f0SKevin Wolf 
1547de3b53f0SKevin Wolf     json_options = parse_json_filename(*pfilename, &local_err);
1548de3b53f0SKevin Wolf     if (local_err) {
1549de3b53f0SKevin Wolf         error_propagate(errp, local_err);
1550de3b53f0SKevin Wolf         return;
1551de3b53f0SKevin Wolf     }
1552de3b53f0SKevin Wolf 
1553de3b53f0SKevin Wolf     /* Options given in the filename have lower priority than options
1554de3b53f0SKevin Wolf      * specified directly */
1555de3b53f0SKevin Wolf     qdict_join(options, json_options, false);
1556cb3e7f08SMarc-André Lureau     qobject_unref(json_options);
1557de3b53f0SKevin Wolf     *pfilename = NULL;
1558de3b53f0SKevin Wolf }
1559de3b53f0SKevin Wolf 
156057915332SKevin Wolf /*
1561f54120ffSKevin Wolf  * Fills in default options for opening images and converts the legacy
1562f54120ffSKevin Wolf  * filename/flags pair to option QDict entries.
156353a29513SMax Reitz  * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
156453a29513SMax Reitz  * block driver has been specified explicitly.
1565f54120ffSKevin Wolf  */
1566de3b53f0SKevin Wolf static int bdrv_fill_options(QDict **options, const char *filename,
1567053e1578SMax Reitz                              int *flags, Error **errp)
1568f54120ffSKevin Wolf {
1569f54120ffSKevin Wolf     const char *drvname;
157053a29513SMax Reitz     bool protocol = *flags & BDRV_O_PROTOCOL;
1571f54120ffSKevin Wolf     bool parse_filename = false;
1572053e1578SMax Reitz     BlockDriver *drv = NULL;
1573f54120ffSKevin Wolf     Error *local_err = NULL;
1574f54120ffSKevin Wolf 
1575129c7d1cSMarkus Armbruster     /*
1576129c7d1cSMarkus Armbruster      * Caution: while qdict_get_try_str() is fine, getting non-string
1577129c7d1cSMarkus Armbruster      * types would require more care.  When @options come from
1578129c7d1cSMarkus Armbruster      * -blockdev or blockdev_add, its members are typed according to
1579129c7d1cSMarkus Armbruster      * the QAPI schema, but when they come from -drive, they're all
1580129c7d1cSMarkus Armbruster      * QString.
1581129c7d1cSMarkus Armbruster      */
158253a29513SMax Reitz     drvname = qdict_get_try_str(*options, "driver");
1583053e1578SMax Reitz     if (drvname) {
1584053e1578SMax Reitz         drv = bdrv_find_format(drvname);
1585053e1578SMax Reitz         if (!drv) {
1586053e1578SMax Reitz             error_setg(errp, "Unknown driver '%s'", drvname);
1587053e1578SMax Reitz             return -ENOENT;
1588053e1578SMax Reitz         }
158953a29513SMax Reitz         /* If the user has explicitly specified the driver, this choice should
159053a29513SMax Reitz          * override the BDRV_O_PROTOCOL flag */
1591053e1578SMax Reitz         protocol = drv->bdrv_file_open;
159253a29513SMax Reitz     }
159353a29513SMax Reitz 
159453a29513SMax Reitz     if (protocol) {
159553a29513SMax Reitz         *flags |= BDRV_O_PROTOCOL;
159653a29513SMax Reitz     } else {
159753a29513SMax Reitz         *flags &= ~BDRV_O_PROTOCOL;
159853a29513SMax Reitz     }
159953a29513SMax Reitz 
160091a097e7SKevin Wolf     /* Translate cache options from flags into options */
160191a097e7SKevin Wolf     update_options_from_flags(*options, *flags);
160291a097e7SKevin Wolf 
1603f54120ffSKevin Wolf     /* Fetch the file name from the options QDict if necessary */
160417b005f1SKevin Wolf     if (protocol && filename) {
1605f54120ffSKevin Wolf         if (!qdict_haskey(*options, "filename")) {
160646f5ac20SEric Blake             qdict_put_str(*options, "filename", filename);
1607f54120ffSKevin Wolf             parse_filename = true;
1608f54120ffSKevin Wolf         } else {
1609f54120ffSKevin Wolf             error_setg(errp, "Can't specify 'file' and 'filename' options at "
1610f54120ffSKevin Wolf                              "the same time");
1611f54120ffSKevin Wolf             return -EINVAL;
1612f54120ffSKevin Wolf         }
1613f54120ffSKevin Wolf     }
1614f54120ffSKevin Wolf 
1615f54120ffSKevin Wolf     /* Find the right block driver */
1616129c7d1cSMarkus Armbruster     /* See cautionary note on accessing @options above */
1617f54120ffSKevin Wolf     filename = qdict_get_try_str(*options, "filename");
1618f54120ffSKevin Wolf 
161917b005f1SKevin Wolf     if (!drvname && protocol) {
1620f54120ffSKevin Wolf         if (filename) {
1621b65a5e12SMax Reitz             drv = bdrv_find_protocol(filename, parse_filename, errp);
1622f54120ffSKevin Wolf             if (!drv) {
1623f54120ffSKevin Wolf                 return -EINVAL;
1624f54120ffSKevin Wolf             }
1625f54120ffSKevin Wolf 
1626f54120ffSKevin Wolf             drvname = drv->format_name;
162746f5ac20SEric Blake             qdict_put_str(*options, "driver", drvname);
1628f54120ffSKevin Wolf         } else {
1629f54120ffSKevin Wolf             error_setg(errp, "Must specify either driver or file");
1630f54120ffSKevin Wolf             return -EINVAL;
1631f54120ffSKevin Wolf         }
163217b005f1SKevin Wolf     }
163317b005f1SKevin Wolf 
163417b005f1SKevin Wolf     assert(drv || !protocol);
1635f54120ffSKevin Wolf 
1636f54120ffSKevin Wolf     /* Driver-specific filename parsing */
163717b005f1SKevin Wolf     if (drv && drv->bdrv_parse_filename && parse_filename) {
1638f54120ffSKevin Wolf         drv->bdrv_parse_filename(filename, *options, &local_err);
1639f54120ffSKevin Wolf         if (local_err) {
1640f54120ffSKevin Wolf             error_propagate(errp, local_err);
1641f54120ffSKevin Wolf             return -EINVAL;
1642f54120ffSKevin Wolf         }
1643f54120ffSKevin Wolf 
1644f54120ffSKevin Wolf         if (!drv->bdrv_needs_filename) {
1645f54120ffSKevin Wolf             qdict_del(*options, "filename");
1646f54120ffSKevin Wolf         }
1647f54120ffSKevin Wolf     }
1648f54120ffSKevin Wolf 
1649f54120ffSKevin Wolf     return 0;
1650f54120ffSKevin Wolf }
1651f54120ffSKevin Wolf 
16523121fb45SKevin Wolf static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
16533121fb45SKevin Wolf                                  uint64_t perm, uint64_t shared,
1654c1cef672SFam Zheng                                  GSList *ignore_children, Error **errp);
1655c1cef672SFam Zheng static void bdrv_child_abort_perm_update(BdrvChild *c);
1656c1cef672SFam Zheng static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared);
1657c1cef672SFam Zheng 
1658148eb13cSKevin Wolf typedef struct BlockReopenQueueEntry {
1659148eb13cSKevin Wolf      bool prepared;
1660148eb13cSKevin Wolf      BDRVReopenState state;
1661148eb13cSKevin Wolf      QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1662148eb13cSKevin Wolf } BlockReopenQueueEntry;
1663148eb13cSKevin Wolf 
1664148eb13cSKevin Wolf /*
1665148eb13cSKevin Wolf  * Return the flags that @bs will have after the reopens in @q have
1666148eb13cSKevin Wolf  * successfully completed. If @q is NULL (or @bs is not contained in @q),
1667148eb13cSKevin Wolf  * return the current flags.
1668148eb13cSKevin Wolf  */
1669148eb13cSKevin Wolf static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
1670148eb13cSKevin Wolf {
1671148eb13cSKevin Wolf     BlockReopenQueueEntry *entry;
1672148eb13cSKevin Wolf 
1673148eb13cSKevin Wolf     if (q != NULL) {
1674148eb13cSKevin Wolf         QSIMPLEQ_FOREACH(entry, q, entry) {
1675148eb13cSKevin Wolf             if (entry->state.bs == bs) {
1676148eb13cSKevin Wolf                 return entry->state.flags;
1677148eb13cSKevin Wolf             }
1678148eb13cSKevin Wolf         }
1679148eb13cSKevin Wolf     }
1680148eb13cSKevin Wolf 
1681148eb13cSKevin Wolf     return bs->open_flags;
1682148eb13cSKevin Wolf }
1683148eb13cSKevin Wolf 
1684148eb13cSKevin Wolf /* Returns whether the image file can be written to after the reopen queue @q
1685148eb13cSKevin Wolf  * has been successfully applied, or right now if @q is NULL. */
1686cc022140SMax Reitz static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
1687cc022140SMax Reitz                                           BlockReopenQueue *q)
1688148eb13cSKevin Wolf {
1689148eb13cSKevin Wolf     int flags = bdrv_reopen_get_flags(q, bs);
1690148eb13cSKevin Wolf 
1691148eb13cSKevin Wolf     return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
1692148eb13cSKevin Wolf }
1693148eb13cSKevin Wolf 
1694cc022140SMax Reitz /*
1695cc022140SMax Reitz  * Return whether the BDS can be written to.  This is not necessarily
1696cc022140SMax Reitz  * the same as !bdrv_is_read_only(bs), as inactivated images may not
1697cc022140SMax Reitz  * be written to but do not count as read-only images.
1698cc022140SMax Reitz  */
1699cc022140SMax Reitz bool bdrv_is_writable(BlockDriverState *bs)
1700cc022140SMax Reitz {
1701cc022140SMax Reitz     return bdrv_is_writable_after_reopen(bs, NULL);
1702cc022140SMax Reitz }
1703cc022140SMax Reitz 
1704ffd1a5a2SFam Zheng static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
1705e0995dc3SKevin Wolf                             BdrvChild *c, const BdrvChildRole *role,
1706e0995dc3SKevin Wolf                             BlockReopenQueue *reopen_queue,
1707ffd1a5a2SFam Zheng                             uint64_t parent_perm, uint64_t parent_shared,
1708ffd1a5a2SFam Zheng                             uint64_t *nperm, uint64_t *nshared)
1709ffd1a5a2SFam Zheng {
1710ffd1a5a2SFam Zheng     if (bs->drv && bs->drv->bdrv_child_perm) {
1711e0995dc3SKevin Wolf         bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
1712ffd1a5a2SFam Zheng                                  parent_perm, parent_shared,
1713ffd1a5a2SFam Zheng                                  nperm, nshared);
1714ffd1a5a2SFam Zheng     }
1715e0995dc3SKevin Wolf     /* TODO Take force_share from reopen_queue */
1716ffd1a5a2SFam Zheng     if (child_bs && child_bs->force_share) {
1717ffd1a5a2SFam Zheng         *nshared = BLK_PERM_ALL;
1718ffd1a5a2SFam Zheng     }
1719ffd1a5a2SFam Zheng }
1720ffd1a5a2SFam Zheng 
172133a610c3SKevin Wolf /*
172233a610c3SKevin Wolf  * Check whether permissions on this node can be changed in a way that
172333a610c3SKevin Wolf  * @cumulative_perms and @cumulative_shared_perms are the new cumulative
172433a610c3SKevin Wolf  * permissions of all its parents. This involves checking whether all necessary
172533a610c3SKevin Wolf  * permission changes to child nodes can be performed.
172633a610c3SKevin Wolf  *
172733a610c3SKevin Wolf  * A call to this function must always be followed by a call to bdrv_set_perm()
172833a610c3SKevin Wolf  * or bdrv_abort_perm_update().
172933a610c3SKevin Wolf  */
17303121fb45SKevin Wolf static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
17313121fb45SKevin Wolf                            uint64_t cumulative_perms,
173246181129SKevin Wolf                            uint64_t cumulative_shared_perms,
173346181129SKevin Wolf                            GSList *ignore_children, Error **errp)
173433a610c3SKevin Wolf {
173533a610c3SKevin Wolf     BlockDriver *drv = bs->drv;
173633a610c3SKevin Wolf     BdrvChild *c;
173733a610c3SKevin Wolf     int ret;
173833a610c3SKevin Wolf 
173933a610c3SKevin Wolf     /* Write permissions never work with read-only images */
174033a610c3SKevin Wolf     if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
1741cc022140SMax Reitz         !bdrv_is_writable_after_reopen(bs, q))
174233a610c3SKevin Wolf     {
174333a610c3SKevin Wolf         error_setg(errp, "Block node is read-only");
174433a610c3SKevin Wolf         return -EPERM;
174533a610c3SKevin Wolf     }
174633a610c3SKevin Wolf 
174733a610c3SKevin Wolf     /* Check this node */
174833a610c3SKevin Wolf     if (!drv) {
174933a610c3SKevin Wolf         return 0;
175033a610c3SKevin Wolf     }
175133a610c3SKevin Wolf 
175233a610c3SKevin Wolf     if (drv->bdrv_check_perm) {
175333a610c3SKevin Wolf         return drv->bdrv_check_perm(bs, cumulative_perms,
175433a610c3SKevin Wolf                                     cumulative_shared_perms, errp);
175533a610c3SKevin Wolf     }
175633a610c3SKevin Wolf 
175778e421c9SKevin Wolf     /* Drivers that never have children can omit .bdrv_child_perm() */
175833a610c3SKevin Wolf     if (!drv->bdrv_child_perm) {
175978e421c9SKevin Wolf         assert(QLIST_EMPTY(&bs->children));
176033a610c3SKevin Wolf         return 0;
176133a610c3SKevin Wolf     }
176233a610c3SKevin Wolf 
176333a610c3SKevin Wolf     /* Check all children */
176433a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->children, next) {
176533a610c3SKevin Wolf         uint64_t cur_perm, cur_shared;
17663121fb45SKevin Wolf         bdrv_child_perm(bs, c->bs, c, c->role, q,
176733a610c3SKevin Wolf                         cumulative_perms, cumulative_shared_perms,
176833a610c3SKevin Wolf                         &cur_perm, &cur_shared);
17693121fb45SKevin Wolf         ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared,
17703121fb45SKevin Wolf                                     ignore_children, errp);
177133a610c3SKevin Wolf         if (ret < 0) {
177233a610c3SKevin Wolf             return ret;
177333a610c3SKevin Wolf         }
177433a610c3SKevin Wolf     }
177533a610c3SKevin Wolf 
177633a610c3SKevin Wolf     return 0;
177733a610c3SKevin Wolf }
177833a610c3SKevin Wolf 
177933a610c3SKevin Wolf /*
178033a610c3SKevin Wolf  * Notifies drivers that after a previous bdrv_check_perm() call, the
178133a610c3SKevin Wolf  * permission update is not performed and any preparations made for it (e.g.
178233a610c3SKevin Wolf  * taken file locks) need to be undone.
178333a610c3SKevin Wolf  *
178433a610c3SKevin Wolf  * This function recursively notifies all child nodes.
178533a610c3SKevin Wolf  */
178633a610c3SKevin Wolf static void bdrv_abort_perm_update(BlockDriverState *bs)
178733a610c3SKevin Wolf {
178833a610c3SKevin Wolf     BlockDriver *drv = bs->drv;
178933a610c3SKevin Wolf     BdrvChild *c;
179033a610c3SKevin Wolf 
179133a610c3SKevin Wolf     if (!drv) {
179233a610c3SKevin Wolf         return;
179333a610c3SKevin Wolf     }
179433a610c3SKevin Wolf 
179533a610c3SKevin Wolf     if (drv->bdrv_abort_perm_update) {
179633a610c3SKevin Wolf         drv->bdrv_abort_perm_update(bs);
179733a610c3SKevin Wolf     }
179833a610c3SKevin Wolf 
179933a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->children, next) {
180033a610c3SKevin Wolf         bdrv_child_abort_perm_update(c);
180133a610c3SKevin Wolf     }
180233a610c3SKevin Wolf }
180333a610c3SKevin Wolf 
180433a610c3SKevin Wolf static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms,
180533a610c3SKevin Wolf                           uint64_t cumulative_shared_perms)
180633a610c3SKevin Wolf {
180733a610c3SKevin Wolf     BlockDriver *drv = bs->drv;
180833a610c3SKevin Wolf     BdrvChild *c;
180933a610c3SKevin Wolf 
181033a610c3SKevin Wolf     if (!drv) {
181133a610c3SKevin Wolf         return;
181233a610c3SKevin Wolf     }
181333a610c3SKevin Wolf 
181433a610c3SKevin Wolf     /* Update this node */
181533a610c3SKevin Wolf     if (drv->bdrv_set_perm) {
181633a610c3SKevin Wolf         drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
181733a610c3SKevin Wolf     }
181833a610c3SKevin Wolf 
181978e421c9SKevin Wolf     /* Drivers that never have children can omit .bdrv_child_perm() */
182033a610c3SKevin Wolf     if (!drv->bdrv_child_perm) {
182178e421c9SKevin Wolf         assert(QLIST_EMPTY(&bs->children));
182233a610c3SKevin Wolf         return;
182333a610c3SKevin Wolf     }
182433a610c3SKevin Wolf 
182533a610c3SKevin Wolf     /* Update all children */
182633a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->children, next) {
182733a610c3SKevin Wolf         uint64_t cur_perm, cur_shared;
1828e0995dc3SKevin Wolf         bdrv_child_perm(bs, c->bs, c, c->role, NULL,
182933a610c3SKevin Wolf                         cumulative_perms, cumulative_shared_perms,
183033a610c3SKevin Wolf                         &cur_perm, &cur_shared);
183133a610c3SKevin Wolf         bdrv_child_set_perm(c, cur_perm, cur_shared);
183233a610c3SKevin Wolf     }
183333a610c3SKevin Wolf }
183433a610c3SKevin Wolf 
183533a610c3SKevin Wolf static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
183633a610c3SKevin Wolf                                      uint64_t *shared_perm)
183733a610c3SKevin Wolf {
183833a610c3SKevin Wolf     BdrvChild *c;
183933a610c3SKevin Wolf     uint64_t cumulative_perms = 0;
184033a610c3SKevin Wolf     uint64_t cumulative_shared_perms = BLK_PERM_ALL;
184133a610c3SKevin Wolf 
184233a610c3SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
184333a610c3SKevin Wolf         cumulative_perms |= c->perm;
184433a610c3SKevin Wolf         cumulative_shared_perms &= c->shared_perm;
184533a610c3SKevin Wolf     }
184633a610c3SKevin Wolf 
184733a610c3SKevin Wolf     *perm = cumulative_perms;
184833a610c3SKevin Wolf     *shared_perm = cumulative_shared_perms;
184933a610c3SKevin Wolf }
185033a610c3SKevin Wolf 
1851d083319fSKevin Wolf static char *bdrv_child_user_desc(BdrvChild *c)
1852d083319fSKevin Wolf {
1853d083319fSKevin Wolf     if (c->role->get_parent_desc) {
1854d083319fSKevin Wolf         return c->role->get_parent_desc(c);
1855d083319fSKevin Wolf     }
1856d083319fSKevin Wolf 
1857d083319fSKevin Wolf     return g_strdup("another user");
1858d083319fSKevin Wolf }
1859d083319fSKevin Wolf 
18605176196cSFam Zheng char *bdrv_perm_names(uint64_t perm)
1861d083319fSKevin Wolf {
1862d083319fSKevin Wolf     struct perm_name {
1863d083319fSKevin Wolf         uint64_t perm;
1864d083319fSKevin Wolf         const char *name;
1865d083319fSKevin Wolf     } permissions[] = {
1866d083319fSKevin Wolf         { BLK_PERM_CONSISTENT_READ, "consistent read" },
1867d083319fSKevin Wolf         { BLK_PERM_WRITE,           "write" },
1868d083319fSKevin Wolf         { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
1869d083319fSKevin Wolf         { BLK_PERM_RESIZE,          "resize" },
1870d083319fSKevin Wolf         { BLK_PERM_GRAPH_MOD,       "change children" },
1871d083319fSKevin Wolf         { 0, NULL }
1872d083319fSKevin Wolf     };
1873d083319fSKevin Wolf 
1874d083319fSKevin Wolf     char *result = g_strdup("");
1875d083319fSKevin Wolf     struct perm_name *p;
1876d083319fSKevin Wolf 
1877d083319fSKevin Wolf     for (p = permissions; p->name; p++) {
1878d083319fSKevin Wolf         if (perm & p->perm) {
1879d083319fSKevin Wolf             char *old = result;
1880d083319fSKevin Wolf             result = g_strdup_printf("%s%s%s", old, *old ? ", " : "", p->name);
1881d083319fSKevin Wolf             g_free(old);
1882d083319fSKevin Wolf         }
1883d083319fSKevin Wolf     }
1884d083319fSKevin Wolf 
1885d083319fSKevin Wolf     return result;
1886d083319fSKevin Wolf }
1887d083319fSKevin Wolf 
188833a610c3SKevin Wolf /*
188933a610c3SKevin Wolf  * Checks whether a new reference to @bs can be added if the new user requires
189046181129SKevin Wolf  * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
189146181129SKevin Wolf  * set, the BdrvChild objects in this list are ignored in the calculations;
189246181129SKevin Wolf  * this allows checking permission updates for an existing reference.
189333a610c3SKevin Wolf  *
189433a610c3SKevin Wolf  * Needs to be followed by a call to either bdrv_set_perm() or
189533a610c3SKevin Wolf  * bdrv_abort_perm_update(). */
18963121fb45SKevin Wolf static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
18973121fb45SKevin Wolf                                   uint64_t new_used_perm,
1898d5e6f437SKevin Wolf                                   uint64_t new_shared_perm,
189946181129SKevin Wolf                                   GSList *ignore_children, Error **errp)
1900d5e6f437SKevin Wolf {
1901d5e6f437SKevin Wolf     BdrvChild *c;
190233a610c3SKevin Wolf     uint64_t cumulative_perms = new_used_perm;
190333a610c3SKevin Wolf     uint64_t cumulative_shared_perms = new_shared_perm;
1904d5e6f437SKevin Wolf 
1905d5e6f437SKevin Wolf     /* There is no reason why anyone couldn't tolerate write_unchanged */
1906d5e6f437SKevin Wolf     assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
1907d5e6f437SKevin Wolf 
1908d5e6f437SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
190946181129SKevin Wolf         if (g_slist_find(ignore_children, c)) {
1910d5e6f437SKevin Wolf             continue;
1911d5e6f437SKevin Wolf         }
1912d5e6f437SKevin Wolf 
1913d083319fSKevin Wolf         if ((new_used_perm & c->shared_perm) != new_used_perm) {
1914d083319fSKevin Wolf             char *user = bdrv_child_user_desc(c);
1915d083319fSKevin Wolf             char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
1916d083319fSKevin Wolf             error_setg(errp, "Conflicts with use by %s as '%s', which does not "
1917d083319fSKevin Wolf                              "allow '%s' on %s",
1918d083319fSKevin Wolf                        user, c->name, perm_names, bdrv_get_node_name(c->bs));
1919d083319fSKevin Wolf             g_free(user);
1920d083319fSKevin Wolf             g_free(perm_names);
1921d083319fSKevin Wolf             return -EPERM;
1922d5e6f437SKevin Wolf         }
1923d083319fSKevin Wolf 
1924d083319fSKevin Wolf         if ((c->perm & new_shared_perm) != c->perm) {
1925d083319fSKevin Wolf             char *user = bdrv_child_user_desc(c);
1926d083319fSKevin Wolf             char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
1927d083319fSKevin Wolf             error_setg(errp, "Conflicts with use by %s as '%s', which uses "
1928d083319fSKevin Wolf                              "'%s' on %s",
1929d083319fSKevin Wolf                        user, c->name, perm_names, bdrv_get_node_name(c->bs));
1930d083319fSKevin Wolf             g_free(user);
1931d083319fSKevin Wolf             g_free(perm_names);
1932d5e6f437SKevin Wolf             return -EPERM;
1933d5e6f437SKevin Wolf         }
193433a610c3SKevin Wolf 
193533a610c3SKevin Wolf         cumulative_perms |= c->perm;
193633a610c3SKevin Wolf         cumulative_shared_perms &= c->shared_perm;
1937d5e6f437SKevin Wolf     }
1938d5e6f437SKevin Wolf 
19393121fb45SKevin Wolf     return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
194046181129SKevin Wolf                            ignore_children, errp);
194133a610c3SKevin Wolf }
194233a610c3SKevin Wolf 
194333a610c3SKevin Wolf /* Needs to be followed by a call to either bdrv_child_set_perm() or
194433a610c3SKevin Wolf  * bdrv_child_abort_perm_update(). */
19453121fb45SKevin Wolf static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
19463121fb45SKevin Wolf                                  uint64_t perm, uint64_t shared,
194746181129SKevin Wolf                                  GSList *ignore_children, Error **errp)
194833a610c3SKevin Wolf {
194946181129SKevin Wolf     int ret;
195046181129SKevin Wolf 
195146181129SKevin Wolf     ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c);
19523121fb45SKevin Wolf     ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children, errp);
195346181129SKevin Wolf     g_slist_free(ignore_children);
195446181129SKevin Wolf 
195546181129SKevin Wolf     return ret;
195633a610c3SKevin Wolf }
195733a610c3SKevin Wolf 
1958c1cef672SFam Zheng static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared)
195933a610c3SKevin Wolf {
196033a610c3SKevin Wolf     uint64_t cumulative_perms, cumulative_shared_perms;
196133a610c3SKevin Wolf 
196233a610c3SKevin Wolf     c->perm = perm;
196333a610c3SKevin Wolf     c->shared_perm = shared;
196433a610c3SKevin Wolf 
196533a610c3SKevin Wolf     bdrv_get_cumulative_perm(c->bs, &cumulative_perms,
196633a610c3SKevin Wolf                              &cumulative_shared_perms);
196733a610c3SKevin Wolf     bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms);
196833a610c3SKevin Wolf }
196933a610c3SKevin Wolf 
1970c1cef672SFam Zheng static void bdrv_child_abort_perm_update(BdrvChild *c)
197133a610c3SKevin Wolf {
197233a610c3SKevin Wolf     bdrv_abort_perm_update(c->bs);
197333a610c3SKevin Wolf }
197433a610c3SKevin Wolf 
197533a610c3SKevin Wolf int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
197633a610c3SKevin Wolf                             Error **errp)
197733a610c3SKevin Wolf {
197833a610c3SKevin Wolf     int ret;
197933a610c3SKevin Wolf 
19803121fb45SKevin Wolf     ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL, errp);
198133a610c3SKevin Wolf     if (ret < 0) {
198233a610c3SKevin Wolf         bdrv_child_abort_perm_update(c);
198333a610c3SKevin Wolf         return ret;
198433a610c3SKevin Wolf     }
198533a610c3SKevin Wolf 
198633a610c3SKevin Wolf     bdrv_child_set_perm(c, perm, shared);
198733a610c3SKevin Wolf 
1988d5e6f437SKevin Wolf     return 0;
1989d5e6f437SKevin Wolf }
1990d5e6f437SKevin Wolf 
19916a1b9ee1SKevin Wolf void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
19926a1b9ee1SKevin Wolf                                const BdrvChildRole *role,
1993e0995dc3SKevin Wolf                                BlockReopenQueue *reopen_queue,
19946a1b9ee1SKevin Wolf                                uint64_t perm, uint64_t shared,
19956a1b9ee1SKevin Wolf                                uint64_t *nperm, uint64_t *nshared)
19966a1b9ee1SKevin Wolf {
19976a1b9ee1SKevin Wolf     if (c == NULL) {
19986a1b9ee1SKevin Wolf         *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
19996a1b9ee1SKevin Wolf         *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
20006a1b9ee1SKevin Wolf         return;
20016a1b9ee1SKevin Wolf     }
20026a1b9ee1SKevin Wolf 
20036a1b9ee1SKevin Wolf     *nperm = (perm & DEFAULT_PERM_PASSTHROUGH) |
20046a1b9ee1SKevin Wolf              (c->perm & DEFAULT_PERM_UNCHANGED);
20056a1b9ee1SKevin Wolf     *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) |
20066a1b9ee1SKevin Wolf                (c->shared_perm & DEFAULT_PERM_UNCHANGED);
20076a1b9ee1SKevin Wolf }
20086a1b9ee1SKevin Wolf 
20096b1a044aSKevin Wolf void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c,
20106b1a044aSKevin Wolf                                const BdrvChildRole *role,
2011e0995dc3SKevin Wolf                                BlockReopenQueue *reopen_queue,
20126b1a044aSKevin Wolf                                uint64_t perm, uint64_t shared,
20136b1a044aSKevin Wolf                                uint64_t *nperm, uint64_t *nshared)
20146b1a044aSKevin Wolf {
20156b1a044aSKevin Wolf     bool backing = (role == &child_backing);
20166b1a044aSKevin Wolf     assert(role == &child_backing || role == &child_file);
20176b1a044aSKevin Wolf 
20186b1a044aSKevin Wolf     if (!backing) {
20195fbfabd3SKevin Wolf         int flags = bdrv_reopen_get_flags(reopen_queue, bs);
20205fbfabd3SKevin Wolf 
20216b1a044aSKevin Wolf         /* Apart from the modifications below, the same permissions are
20226b1a044aSKevin Wolf          * forwarded and left alone as for filters */
2023e0995dc3SKevin Wolf         bdrv_filter_default_perms(bs, c, role, reopen_queue, perm, shared,
2024e0995dc3SKevin Wolf                                   &perm, &shared);
20256b1a044aSKevin Wolf 
20266b1a044aSKevin Wolf         /* Format drivers may touch metadata even if the guest doesn't write */
2027cc022140SMax Reitz         if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
20286b1a044aSKevin Wolf             perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
20296b1a044aSKevin Wolf         }
20306b1a044aSKevin Wolf 
20316b1a044aSKevin Wolf         /* bs->file always needs to be consistent because of the metadata. We
20326b1a044aSKevin Wolf          * can never allow other users to resize or write to it. */
20335fbfabd3SKevin Wolf         if (!(flags & BDRV_O_NO_IO)) {
20346b1a044aSKevin Wolf             perm |= BLK_PERM_CONSISTENT_READ;
20355fbfabd3SKevin Wolf         }
20366b1a044aSKevin Wolf         shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
20376b1a044aSKevin Wolf     } else {
20386b1a044aSKevin Wolf         /* We want consistent read from backing files if the parent needs it.
20396b1a044aSKevin Wolf          * No other operations are performed on backing files. */
20406b1a044aSKevin Wolf         perm &= BLK_PERM_CONSISTENT_READ;
20416b1a044aSKevin Wolf 
20426b1a044aSKevin Wolf         /* If the parent can deal with changing data, we're okay with a
20436b1a044aSKevin Wolf          * writable and resizable backing file. */
20446b1a044aSKevin Wolf         /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */
20456b1a044aSKevin Wolf         if (shared & BLK_PERM_WRITE) {
20466b1a044aSKevin Wolf             shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
20476b1a044aSKevin Wolf         } else {
20486b1a044aSKevin Wolf             shared = 0;
20496b1a044aSKevin Wolf         }
20506b1a044aSKevin Wolf 
20516b1a044aSKevin Wolf         shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
20526b1a044aSKevin Wolf                   BLK_PERM_WRITE_UNCHANGED;
20536b1a044aSKevin Wolf     }
20546b1a044aSKevin Wolf 
20559c5e6594SKevin Wolf     if (bs->open_flags & BDRV_O_INACTIVE) {
20569c5e6594SKevin Wolf         shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
20579c5e6594SKevin Wolf     }
20589c5e6594SKevin Wolf 
20596b1a044aSKevin Wolf     *nperm = perm;
20606b1a044aSKevin Wolf     *nshared = shared;
20616b1a044aSKevin Wolf }
20626b1a044aSKevin Wolf 
20638ee03995SKevin Wolf static void bdrv_replace_child_noperm(BdrvChild *child,
20648ee03995SKevin Wolf                                       BlockDriverState *new_bs)
2065e9740bc6SKevin Wolf {
2066e9740bc6SKevin Wolf     BlockDriverState *old_bs = child->bs;
20670152bf40SKevin Wolf     int i;
2068e9740bc6SKevin Wolf 
2069bb2614e9SFam Zheng     if (old_bs && new_bs) {
2070bb2614e9SFam Zheng         assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2071bb2614e9SFam Zheng     }
2072e9740bc6SKevin Wolf     if (old_bs) {
2073d736f119SKevin Wolf         /* Detach first so that the recursive drain sections coming from @child
2074d736f119SKevin Wolf          * are already gone and we only end the drain sections that came from
2075d736f119SKevin Wolf          * elsewhere. */
2076d736f119SKevin Wolf         if (child->role->detach) {
2077d736f119SKevin Wolf             child->role->detach(child);
2078d736f119SKevin Wolf         }
207936fe1331SKevin Wolf         if (old_bs->quiesce_counter && child->role->drained_end) {
20800f12264eSKevin Wolf             int num = old_bs->quiesce_counter;
20810f12264eSKevin Wolf             if (child->role->parent_is_bds) {
20820f12264eSKevin Wolf                 num -= bdrv_drain_all_count;
20830f12264eSKevin Wolf             }
20840f12264eSKevin Wolf             assert(num >= 0);
20850f12264eSKevin Wolf             for (i = 0; i < num; i++) {
208636fe1331SKevin Wolf                 child->role->drained_end(child);
2087e9740bc6SKevin Wolf             }
20880152bf40SKevin Wolf         }
208936fe1331SKevin Wolf         QLIST_REMOVE(child, next_parent);
2090e9740bc6SKevin Wolf     }
2091e9740bc6SKevin Wolf 
2092e9740bc6SKevin Wolf     child->bs = new_bs;
209336fe1331SKevin Wolf 
209436fe1331SKevin Wolf     if (new_bs) {
209536fe1331SKevin Wolf         QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
209636fe1331SKevin Wolf         if (new_bs->quiesce_counter && child->role->drained_begin) {
20970f12264eSKevin Wolf             int num = new_bs->quiesce_counter;
20980f12264eSKevin Wolf             if (child->role->parent_is_bds) {
20990f12264eSKevin Wolf                 num -= bdrv_drain_all_count;
21000f12264eSKevin Wolf             }
21010f12264eSKevin Wolf             assert(num >= 0);
21020f12264eSKevin Wolf             for (i = 0; i < num; i++) {
21034be6a6d1SKevin Wolf                 bdrv_parent_drained_begin_single(child, true);
210436fe1331SKevin Wolf             }
21050152bf40SKevin Wolf         }
210633a610c3SKevin Wolf 
2107d736f119SKevin Wolf         /* Attach only after starting new drained sections, so that recursive
2108d736f119SKevin Wolf          * drain sections coming from @child don't get an extra .drained_begin
2109d736f119SKevin Wolf          * callback. */
2110db95dbbaSKevin Wolf         if (child->role->attach) {
2111db95dbbaSKevin Wolf             child->role->attach(child);
2112db95dbbaSKevin Wolf         }
211336fe1331SKevin Wolf     }
2114e9740bc6SKevin Wolf }
2115e9740bc6SKevin Wolf 
2116466787fbSKevin Wolf /*
2117466787fbSKevin Wolf  * Updates @child to change its reference to point to @new_bs, including
2118466787fbSKevin Wolf  * checking and applying the necessary permisson updates both to the old node
2119466787fbSKevin Wolf  * and to @new_bs.
2120466787fbSKevin Wolf  *
2121466787fbSKevin Wolf  * NULL is passed as @new_bs for removing the reference before freeing @child.
2122466787fbSKevin Wolf  *
2123466787fbSKevin Wolf  * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
2124466787fbSKevin Wolf  * function uses bdrv_set_perm() to update the permissions according to the new
2125466787fbSKevin Wolf  * reference that @new_bs gets.
2126466787fbSKevin Wolf  */
2127466787fbSKevin Wolf static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
21288ee03995SKevin Wolf {
21298ee03995SKevin Wolf     BlockDriverState *old_bs = child->bs;
21308ee03995SKevin Wolf     uint64_t perm, shared_perm;
21318ee03995SKevin Wolf 
21328aecf1d1SKevin Wolf     bdrv_replace_child_noperm(child, new_bs);
21338aecf1d1SKevin Wolf 
21348ee03995SKevin Wolf     if (old_bs) {
21358ee03995SKevin Wolf         /* Update permissions for old node. This is guaranteed to succeed
21368ee03995SKevin Wolf          * because we're just taking a parent away, so we're loosening
21378ee03995SKevin Wolf          * restrictions. */
21388ee03995SKevin Wolf         bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm);
21393121fb45SKevin Wolf         bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL, &error_abort);
21408ee03995SKevin Wolf         bdrv_set_perm(old_bs, perm, shared_perm);
21418ee03995SKevin Wolf     }
21428ee03995SKevin Wolf 
21438ee03995SKevin Wolf     if (new_bs) {
2144f54120ffSKevin Wolf         bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm);
2145f54120ffSKevin Wolf         bdrv_set_perm(new_bs, perm, shared_perm);
2146f54120ffSKevin Wolf     }
2147f54120ffSKevin Wolf }
2148f54120ffSKevin Wolf 
2149f21d96d0SKevin Wolf BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2150260fecf1SKevin Wolf                                   const char *child_name,
215136fe1331SKevin Wolf                                   const BdrvChildRole *child_role,
2152d5e6f437SKevin Wolf                                   uint64_t perm, uint64_t shared_perm,
2153d5e6f437SKevin Wolf                                   void *opaque, Error **errp)
2154df581792SKevin Wolf {
2155d5e6f437SKevin Wolf     BdrvChild *child;
2156d5e6f437SKevin Wolf     int ret;
2157d5e6f437SKevin Wolf 
21583121fb45SKevin Wolf     ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, errp);
2159d5e6f437SKevin Wolf     if (ret < 0) {
216033a610c3SKevin Wolf         bdrv_abort_perm_update(child_bs);
2161d5e6f437SKevin Wolf         return NULL;
2162d5e6f437SKevin Wolf     }
2163d5e6f437SKevin Wolf 
2164d5e6f437SKevin Wolf     child = g_new(BdrvChild, 1);
2165df581792SKevin Wolf     *child = (BdrvChild) {
2166e9740bc6SKevin Wolf         .bs             = NULL,
2167260fecf1SKevin Wolf         .name           = g_strdup(child_name),
2168df581792SKevin Wolf         .role           = child_role,
2169d5e6f437SKevin Wolf         .perm           = perm,
2170d5e6f437SKevin Wolf         .shared_perm    = shared_perm,
217136fe1331SKevin Wolf         .opaque         = opaque,
2172df581792SKevin Wolf     };
2173df581792SKevin Wolf 
217433a610c3SKevin Wolf     /* This performs the matching bdrv_set_perm() for the above check. */
2175466787fbSKevin Wolf     bdrv_replace_child(child, child_bs);
2176b4b059f6SKevin Wolf 
2177b4b059f6SKevin Wolf     return child;
2178df581792SKevin Wolf }
2179df581792SKevin Wolf 
218098292c61SWen Congyang BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2181f21d96d0SKevin Wolf                              BlockDriverState *child_bs,
2182f21d96d0SKevin Wolf                              const char *child_name,
21838b2ff529SKevin Wolf                              const BdrvChildRole *child_role,
21848b2ff529SKevin Wolf                              Error **errp)
2185f21d96d0SKevin Wolf {
2186d5e6f437SKevin Wolf     BdrvChild *child;
2187f68c598bSKevin Wolf     uint64_t perm, shared_perm;
2188d5e6f437SKevin Wolf 
2189f68c598bSKevin Wolf     bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2190f68c598bSKevin Wolf 
2191f68c598bSKevin Wolf     assert(parent_bs->drv);
2192bb2614e9SFam Zheng     assert(bdrv_get_aio_context(parent_bs) == bdrv_get_aio_context(child_bs));
2193e0995dc3SKevin Wolf     bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
2194f68c598bSKevin Wolf                     perm, shared_perm, &perm, &shared_perm);
2195f68c598bSKevin Wolf 
2196d5e6f437SKevin Wolf     child = bdrv_root_attach_child(child_bs, child_name, child_role,
2197f68c598bSKevin Wolf                                    perm, shared_perm, parent_bs, errp);
2198d5e6f437SKevin Wolf     if (child == NULL) {
2199d5e6f437SKevin Wolf         return NULL;
2200d5e6f437SKevin Wolf     }
2201d5e6f437SKevin Wolf 
2202f21d96d0SKevin Wolf     QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2203f21d96d0SKevin Wolf     return child;
2204f21d96d0SKevin Wolf }
2205f21d96d0SKevin Wolf 
22063f09bfbcSKevin Wolf static void bdrv_detach_child(BdrvChild *child)
220733a60407SKevin Wolf {
2208f21d96d0SKevin Wolf     if (child->next.le_prev) {
220933a60407SKevin Wolf         QLIST_REMOVE(child, next);
2210f21d96d0SKevin Wolf         child->next.le_prev = NULL;
2211f21d96d0SKevin Wolf     }
2212e9740bc6SKevin Wolf 
2213466787fbSKevin Wolf     bdrv_replace_child(child, NULL);
2214e9740bc6SKevin Wolf 
2215260fecf1SKevin Wolf     g_free(child->name);
221633a60407SKevin Wolf     g_free(child);
221733a60407SKevin Wolf }
221833a60407SKevin Wolf 
2219f21d96d0SKevin Wolf void bdrv_root_unref_child(BdrvChild *child)
222033a60407SKevin Wolf {
2221779020cbSKevin Wolf     BlockDriverState *child_bs;
2222779020cbSKevin Wolf 
2223f21d96d0SKevin Wolf     child_bs = child->bs;
2224f21d96d0SKevin Wolf     bdrv_detach_child(child);
2225f21d96d0SKevin Wolf     bdrv_unref(child_bs);
2226f21d96d0SKevin Wolf }
2227f21d96d0SKevin Wolf 
2228f21d96d0SKevin Wolf void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2229f21d96d0SKevin Wolf {
2230779020cbSKevin Wolf     if (child == NULL) {
2231779020cbSKevin Wolf         return;
2232779020cbSKevin Wolf     }
223333a60407SKevin Wolf 
223433a60407SKevin Wolf     if (child->bs->inherits_from == parent) {
22354e4bf5c4SKevin Wolf         BdrvChild *c;
22364e4bf5c4SKevin Wolf 
22374e4bf5c4SKevin Wolf         /* Remove inherits_from only when the last reference between parent and
22384e4bf5c4SKevin Wolf          * child->bs goes away. */
22394e4bf5c4SKevin Wolf         QLIST_FOREACH(c, &parent->children, next) {
22404e4bf5c4SKevin Wolf             if (c != child && c->bs == child->bs) {
22414e4bf5c4SKevin Wolf                 break;
22424e4bf5c4SKevin Wolf             }
22434e4bf5c4SKevin Wolf         }
22444e4bf5c4SKevin Wolf         if (c == NULL) {
224533a60407SKevin Wolf             child->bs->inherits_from = NULL;
224633a60407SKevin Wolf         }
22474e4bf5c4SKevin Wolf     }
224833a60407SKevin Wolf 
2249f21d96d0SKevin Wolf     bdrv_root_unref_child(child);
225033a60407SKevin Wolf }
225133a60407SKevin Wolf 
22525c8cab48SKevin Wolf 
22535c8cab48SKevin Wolf static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
22545c8cab48SKevin Wolf {
22555c8cab48SKevin Wolf     BdrvChild *c;
22565c8cab48SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
22575c8cab48SKevin Wolf         if (c->role->change_media) {
22585c8cab48SKevin Wolf             c->role->change_media(c, load);
22595c8cab48SKevin Wolf         }
22605c8cab48SKevin Wolf     }
22615c8cab48SKevin Wolf }
22625c8cab48SKevin Wolf 
22630065c455SAlberto Garcia /* Return true if you can reach parent going through child->inherits_from
22640065c455SAlberto Garcia  * recursively. If parent or child are NULL, return false */
22650065c455SAlberto Garcia static bool bdrv_inherits_from_recursive(BlockDriverState *child,
22660065c455SAlberto Garcia                                          BlockDriverState *parent)
22670065c455SAlberto Garcia {
22680065c455SAlberto Garcia     while (child && child != parent) {
22690065c455SAlberto Garcia         child = child->inherits_from;
22700065c455SAlberto Garcia     }
22710065c455SAlberto Garcia 
22720065c455SAlberto Garcia     return child != NULL;
22730065c455SAlberto Garcia }
22740065c455SAlberto Garcia 
22755db15a57SKevin Wolf /*
22765db15a57SKevin Wolf  * Sets the backing file link of a BDS. A new reference is created; callers
22775db15a57SKevin Wolf  * which don't need their own reference any more must call bdrv_unref().
22785db15a57SKevin Wolf  */
227912fa4af6SKevin Wolf void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
228012fa4af6SKevin Wolf                          Error **errp)
22818d24cce1SFam Zheng {
22820065c455SAlberto Garcia     bool update_inherits_from = bdrv_chain_contains(bs, backing_hd) &&
22830065c455SAlberto Garcia         bdrv_inherits_from_recursive(backing_hd, bs);
22840065c455SAlberto Garcia 
22855db15a57SKevin Wolf     if (backing_hd) {
22865db15a57SKevin Wolf         bdrv_ref(backing_hd);
22875db15a57SKevin Wolf     }
22888d24cce1SFam Zheng 
2289760e0063SKevin Wolf     if (bs->backing) {
22905db15a57SKevin Wolf         bdrv_unref_child(bs, bs->backing);
2291826b6ca0SFam Zheng     }
2292826b6ca0SFam Zheng 
22938d24cce1SFam Zheng     if (!backing_hd) {
2294760e0063SKevin Wolf         bs->backing = NULL;
22958d24cce1SFam Zheng         goto out;
22968d24cce1SFam Zheng     }
229712fa4af6SKevin Wolf 
22988b2ff529SKevin Wolf     bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing,
229912fa4af6SKevin Wolf                                     errp);
23000065c455SAlberto Garcia     /* If backing_hd was already part of bs's backing chain, and
23010065c455SAlberto Garcia      * inherits_from pointed recursively to bs then let's update it to
23020065c455SAlberto Garcia      * point directly to bs (else it will become NULL). */
23030065c455SAlberto Garcia     if (update_inherits_from) {
23040065c455SAlberto Garcia         backing_hd->inherits_from = bs;
23050065c455SAlberto Garcia     }
230612fa4af6SKevin Wolf     if (!bs->backing) {
230712fa4af6SKevin Wolf         bdrv_unref(backing_hd);
230812fa4af6SKevin Wolf     }
2309826b6ca0SFam Zheng 
23109e7e940cSKevin Wolf     bdrv_refresh_filename(bs);
23119e7e940cSKevin Wolf 
23128d24cce1SFam Zheng out:
23133baca891SKevin Wolf     bdrv_refresh_limits(bs, NULL);
23148d24cce1SFam Zheng }
23158d24cce1SFam Zheng 
231631ca6d07SKevin Wolf /*
231731ca6d07SKevin Wolf  * Opens the backing file for a BlockDriverState if not yet open
231831ca6d07SKevin Wolf  *
2319d9b7b057SKevin Wolf  * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
2320d9b7b057SKevin Wolf  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2321d9b7b057SKevin Wolf  * itself, all options starting with "${bdref_key}." are considered part of the
2322d9b7b057SKevin Wolf  * BlockdevRef.
2323d9b7b057SKevin Wolf  *
2324d9b7b057SKevin Wolf  * TODO Can this be unified with bdrv_open_image()?
232531ca6d07SKevin Wolf  */
2326d9b7b057SKevin Wolf int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2327d9b7b057SKevin Wolf                            const char *bdref_key, Error **errp)
23289156df12SPaolo Bonzini {
23291ba4b6a5SBenoît Canet     char *backing_filename = g_malloc0(PATH_MAX);
2330d9b7b057SKevin Wolf     char *bdref_key_dot;
2331d9b7b057SKevin Wolf     const char *reference = NULL;
2332317fc44eSKevin Wolf     int ret = 0;
23338d24cce1SFam Zheng     BlockDriverState *backing_hd;
2334d9b7b057SKevin Wolf     QDict *options;
2335d9b7b057SKevin Wolf     QDict *tmp_parent_options = NULL;
233634b5d2c6SMax Reitz     Error *local_err = NULL;
23379156df12SPaolo Bonzini 
2338760e0063SKevin Wolf     if (bs->backing != NULL) {
23391ba4b6a5SBenoît Canet         goto free_exit;
23409156df12SPaolo Bonzini     }
23419156df12SPaolo Bonzini 
234231ca6d07SKevin Wolf     /* NULL means an empty set of options */
2343d9b7b057SKevin Wolf     if (parent_options == NULL) {
2344d9b7b057SKevin Wolf         tmp_parent_options = qdict_new();
2345d9b7b057SKevin Wolf         parent_options = tmp_parent_options;
234631ca6d07SKevin Wolf     }
234731ca6d07SKevin Wolf 
23489156df12SPaolo Bonzini     bs->open_flags &= ~BDRV_O_NO_BACKING;
2349d9b7b057SKevin Wolf 
2350d9b7b057SKevin Wolf     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2351d9b7b057SKevin Wolf     qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2352d9b7b057SKevin Wolf     g_free(bdref_key_dot);
2353d9b7b057SKevin Wolf 
2354129c7d1cSMarkus Armbruster     /*
2355129c7d1cSMarkus Armbruster      * Caution: while qdict_get_try_str() is fine, getting non-string
2356129c7d1cSMarkus Armbruster      * types would require more care.  When @parent_options come from
2357129c7d1cSMarkus Armbruster      * -blockdev or blockdev_add, its members are typed according to
2358129c7d1cSMarkus Armbruster      * the QAPI schema, but when they come from -drive, they're all
2359129c7d1cSMarkus Armbruster      * QString.
2360129c7d1cSMarkus Armbruster      */
2361d9b7b057SKevin Wolf     reference = qdict_get_try_str(parent_options, bdref_key);
2362d9b7b057SKevin Wolf     if (reference || qdict_haskey(options, "file.filename")) {
23631cb6f506SKevin Wolf         backing_filename[0] = '\0';
23641cb6f506SKevin Wolf     } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
2365cb3e7f08SMarc-André Lureau         qobject_unref(options);
23661ba4b6a5SBenoît Canet         goto free_exit;
2367dbecebddSFam Zheng     } else {
23689f07429eSMax Reitz         bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX,
23699f07429eSMax Reitz                                        &local_err);
23709f07429eSMax Reitz         if (local_err) {
23719f07429eSMax Reitz             ret = -EINVAL;
23729f07429eSMax Reitz             error_propagate(errp, local_err);
2373cb3e7f08SMarc-André Lureau             qobject_unref(options);
23749f07429eSMax Reitz             goto free_exit;
23759f07429eSMax Reitz         }
23769156df12SPaolo Bonzini     }
23779156df12SPaolo Bonzini 
23788ee79e70SKevin Wolf     if (!bs->drv || !bs->drv->supports_backing) {
23798ee79e70SKevin Wolf         ret = -EINVAL;
23808ee79e70SKevin Wolf         error_setg(errp, "Driver doesn't support backing files");
2381cb3e7f08SMarc-André Lureau         qobject_unref(options);
23828ee79e70SKevin Wolf         goto free_exit;
23838ee79e70SKevin Wolf     }
23848ee79e70SKevin Wolf 
23856bff597bSPeter Krempa     if (!reference &&
23866bff597bSPeter Krempa         bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
238746f5ac20SEric Blake         qdict_put_str(options, "driver", bs->backing_format);
23889156df12SPaolo Bonzini     }
23899156df12SPaolo Bonzini 
23905b363937SMax Reitz     backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL,
2391d9b7b057SKevin Wolf                                    reference, options, 0, bs, &child_backing,
2392e43bfd9cSMarkus Armbruster                                    errp);
23935b363937SMax Reitz     if (!backing_hd) {
23949156df12SPaolo Bonzini         bs->open_flags |= BDRV_O_NO_BACKING;
2395e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not open backing file: ");
23965b363937SMax Reitz         ret = -EINVAL;
23971ba4b6a5SBenoît Canet         goto free_exit;
23989156df12SPaolo Bonzini     }
23995ce6bfe2Ssochin.jiang     bdrv_set_aio_context(backing_hd, bdrv_get_aio_context(bs));
2400df581792SKevin Wolf 
24015db15a57SKevin Wolf     /* Hook up the backing file link; drop our reference, bs owns the
24025db15a57SKevin Wolf      * backing_hd reference now */
240312fa4af6SKevin Wolf     bdrv_set_backing_hd(bs, backing_hd, &local_err);
24045db15a57SKevin Wolf     bdrv_unref(backing_hd);
240512fa4af6SKevin Wolf     if (local_err) {
24068cd1a3e4SFam Zheng         error_propagate(errp, local_err);
240712fa4af6SKevin Wolf         ret = -EINVAL;
240812fa4af6SKevin Wolf         goto free_exit;
240912fa4af6SKevin Wolf     }
2410d80ac658SPeter Feiner 
2411d9b7b057SKevin Wolf     qdict_del(parent_options, bdref_key);
2412d9b7b057SKevin Wolf 
24131ba4b6a5SBenoît Canet free_exit:
24141ba4b6a5SBenoît Canet     g_free(backing_filename);
2415cb3e7f08SMarc-André Lureau     qobject_unref(tmp_parent_options);
24161ba4b6a5SBenoît Canet     return ret;
24179156df12SPaolo Bonzini }
24189156df12SPaolo Bonzini 
24192d6b86afSKevin Wolf static BlockDriverState *
24202d6b86afSKevin Wolf bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
24212d6b86afSKevin Wolf                    BlockDriverState *parent, const BdrvChildRole *child_role,
2422f7d9fd8cSMax Reitz                    bool allow_none, Error **errp)
2423da557aacSMax Reitz {
24242d6b86afSKevin Wolf     BlockDriverState *bs = NULL;
2425da557aacSMax Reitz     QDict *image_options;
2426da557aacSMax Reitz     char *bdref_key_dot;
2427da557aacSMax Reitz     const char *reference;
2428da557aacSMax Reitz 
2429df581792SKevin Wolf     assert(child_role != NULL);
2430f67503e5SMax Reitz 
2431da557aacSMax Reitz     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2432da557aacSMax Reitz     qdict_extract_subqdict(options, &image_options, bdref_key_dot);
2433da557aacSMax Reitz     g_free(bdref_key_dot);
2434da557aacSMax Reitz 
2435129c7d1cSMarkus Armbruster     /*
2436129c7d1cSMarkus Armbruster      * Caution: while qdict_get_try_str() is fine, getting non-string
2437129c7d1cSMarkus Armbruster      * types would require more care.  When @options come from
2438129c7d1cSMarkus Armbruster      * -blockdev or blockdev_add, its members are typed according to
2439129c7d1cSMarkus Armbruster      * the QAPI schema, but when they come from -drive, they're all
2440129c7d1cSMarkus Armbruster      * QString.
2441129c7d1cSMarkus Armbruster      */
2442da557aacSMax Reitz     reference = qdict_get_try_str(options, bdref_key);
2443da557aacSMax Reitz     if (!filename && !reference && !qdict_size(image_options)) {
2444b4b059f6SKevin Wolf         if (!allow_none) {
2445da557aacSMax Reitz             error_setg(errp, "A block device must be specified for \"%s\"",
2446da557aacSMax Reitz                        bdref_key);
2447da557aacSMax Reitz         }
2448cb3e7f08SMarc-André Lureau         qobject_unref(image_options);
2449da557aacSMax Reitz         goto done;
2450da557aacSMax Reitz     }
2451da557aacSMax Reitz 
24525b363937SMax Reitz     bs = bdrv_open_inherit(filename, reference, image_options, 0,
2453ce343771SMax Reitz                            parent, child_role, errp);
24545b363937SMax Reitz     if (!bs) {
2455df581792SKevin Wolf         goto done;
2456df581792SKevin Wolf     }
2457df581792SKevin Wolf 
2458da557aacSMax Reitz done:
2459da557aacSMax Reitz     qdict_del(options, bdref_key);
24602d6b86afSKevin Wolf     return bs;
24612d6b86afSKevin Wolf }
24622d6b86afSKevin Wolf 
24632d6b86afSKevin Wolf /*
24642d6b86afSKevin Wolf  * Opens a disk image whose options are given as BlockdevRef in another block
24652d6b86afSKevin Wolf  * device's options.
24662d6b86afSKevin Wolf  *
24672d6b86afSKevin Wolf  * If allow_none is true, no image will be opened if filename is false and no
24682d6b86afSKevin Wolf  * BlockdevRef is given. NULL will be returned, but errp remains unset.
24692d6b86afSKevin Wolf  *
24702d6b86afSKevin Wolf  * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
24712d6b86afSKevin Wolf  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
24722d6b86afSKevin Wolf  * itself, all options starting with "${bdref_key}." are considered part of the
24732d6b86afSKevin Wolf  * BlockdevRef.
24742d6b86afSKevin Wolf  *
24752d6b86afSKevin Wolf  * The BlockdevRef will be removed from the options QDict.
24762d6b86afSKevin Wolf  */
24772d6b86afSKevin Wolf BdrvChild *bdrv_open_child(const char *filename,
24782d6b86afSKevin Wolf                            QDict *options, const char *bdref_key,
24792d6b86afSKevin Wolf                            BlockDriverState *parent,
24802d6b86afSKevin Wolf                            const BdrvChildRole *child_role,
24812d6b86afSKevin Wolf                            bool allow_none, Error **errp)
24822d6b86afSKevin Wolf {
24838b2ff529SKevin Wolf     BdrvChild *c;
24842d6b86afSKevin Wolf     BlockDriverState *bs;
24852d6b86afSKevin Wolf 
24862d6b86afSKevin Wolf     bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role,
24872d6b86afSKevin Wolf                             allow_none, errp);
24882d6b86afSKevin Wolf     if (bs == NULL) {
24892d6b86afSKevin Wolf         return NULL;
24902d6b86afSKevin Wolf     }
24912d6b86afSKevin Wolf 
24928b2ff529SKevin Wolf     c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp);
24938b2ff529SKevin Wolf     if (!c) {
24948b2ff529SKevin Wolf         bdrv_unref(bs);
24958b2ff529SKevin Wolf         return NULL;
24968b2ff529SKevin Wolf     }
24978b2ff529SKevin Wolf 
24988b2ff529SKevin Wolf     return c;
2499b4b059f6SKevin Wolf }
2500b4b059f6SKevin Wolf 
2501e1d74bc6SKevin Wolf /* TODO Future callers may need to specify parent/child_role in order for
2502e1d74bc6SKevin Wolf  * option inheritance to work. Existing callers use it for the root node. */
2503e1d74bc6SKevin Wolf BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
2504e1d74bc6SKevin Wolf {
2505e1d74bc6SKevin Wolf     BlockDriverState *bs = NULL;
2506e1d74bc6SKevin Wolf     Error *local_err = NULL;
2507e1d74bc6SKevin Wolf     QObject *obj = NULL;
2508e1d74bc6SKevin Wolf     QDict *qdict = NULL;
2509e1d74bc6SKevin Wolf     const char *reference = NULL;
2510e1d74bc6SKevin Wolf     Visitor *v = NULL;
2511e1d74bc6SKevin Wolf 
2512e1d74bc6SKevin Wolf     if (ref->type == QTYPE_QSTRING) {
2513e1d74bc6SKevin Wolf         reference = ref->u.reference;
2514e1d74bc6SKevin Wolf     } else {
2515e1d74bc6SKevin Wolf         BlockdevOptions *options = &ref->u.definition;
2516e1d74bc6SKevin Wolf         assert(ref->type == QTYPE_QDICT);
2517e1d74bc6SKevin Wolf 
2518e1d74bc6SKevin Wolf         v = qobject_output_visitor_new(&obj);
2519e1d74bc6SKevin Wolf         visit_type_BlockdevOptions(v, NULL, &options, &local_err);
2520e1d74bc6SKevin Wolf         if (local_err) {
2521e1d74bc6SKevin Wolf             error_propagate(errp, local_err);
2522e1d74bc6SKevin Wolf             goto fail;
2523e1d74bc6SKevin Wolf         }
2524e1d74bc6SKevin Wolf         visit_complete(v, &obj);
2525e1d74bc6SKevin Wolf 
25267dc847ebSMax Reitz         qdict = qobject_to(QDict, obj);
2527e1d74bc6SKevin Wolf         qdict_flatten(qdict);
2528e1d74bc6SKevin Wolf 
2529e1d74bc6SKevin Wolf         /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
2530e1d74bc6SKevin Wolf          * compatibility with other callers) rather than what we want as the
2531e1d74bc6SKevin Wolf          * real defaults. Apply the defaults here instead. */
2532e1d74bc6SKevin Wolf         qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
2533e1d74bc6SKevin Wolf         qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
2534e1d74bc6SKevin Wolf         qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
2535e35bdc12SKevin Wolf         qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
2536e35bdc12SKevin Wolf 
2537e1d74bc6SKevin Wolf     }
2538e1d74bc6SKevin Wolf 
2539e1d74bc6SKevin Wolf     bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, errp);
2540e1d74bc6SKevin Wolf     obj = NULL;
2541e1d74bc6SKevin Wolf 
2542e1d74bc6SKevin Wolf fail:
2543cb3e7f08SMarc-André Lureau     qobject_unref(obj);
2544e1d74bc6SKevin Wolf     visit_free(v);
2545e1d74bc6SKevin Wolf     return bs;
2546e1d74bc6SKevin Wolf }
2547e1d74bc6SKevin Wolf 
254866836189SMax Reitz static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
254966836189SMax Reitz                                                    int flags,
255066836189SMax Reitz                                                    QDict *snapshot_options,
255166836189SMax Reitz                                                    Error **errp)
2552b998875dSKevin Wolf {
2553b998875dSKevin Wolf     /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
25541ba4b6a5SBenoît Canet     char *tmp_filename = g_malloc0(PATH_MAX + 1);
2555b998875dSKevin Wolf     int64_t total_size;
255683d0521aSChunyan Liu     QemuOpts *opts = NULL;
2557ff6ed714SEric Blake     BlockDriverState *bs_snapshot = NULL;
2558b2c2832cSKevin Wolf     Error *local_err = NULL;
2559b998875dSKevin Wolf     int ret;
2560b998875dSKevin Wolf 
2561b998875dSKevin Wolf     /* if snapshot, we create a temporary backing file and open it
2562b998875dSKevin Wolf        instead of opening 'filename' directly */
2563b998875dSKevin Wolf 
2564b998875dSKevin Wolf     /* Get the required size from the image */
2565f187743aSKevin Wolf     total_size = bdrv_getlength(bs);
2566f187743aSKevin Wolf     if (total_size < 0) {
2567f187743aSKevin Wolf         error_setg_errno(errp, -total_size, "Could not get image size");
25681ba4b6a5SBenoît Canet         goto out;
2569f187743aSKevin Wolf     }
2570b998875dSKevin Wolf 
2571b998875dSKevin Wolf     /* Create the temporary image */
25721ba4b6a5SBenoît Canet     ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
2573b998875dSKevin Wolf     if (ret < 0) {
2574b998875dSKevin Wolf         error_setg_errno(errp, -ret, "Could not get temporary filename");
25751ba4b6a5SBenoît Canet         goto out;
2576b998875dSKevin Wolf     }
2577b998875dSKevin Wolf 
2578ef810437SMax Reitz     opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
2579c282e1fdSChunyan Liu                             &error_abort);
258039101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
2581e43bfd9cSMarkus Armbruster     ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
258283d0521aSChunyan Liu     qemu_opts_del(opts);
2583b998875dSKevin Wolf     if (ret < 0) {
2584e43bfd9cSMarkus Armbruster         error_prepend(errp, "Could not create temporary overlay '%s': ",
2585e43bfd9cSMarkus Armbruster                       tmp_filename);
25861ba4b6a5SBenoît Canet         goto out;
2587b998875dSKevin Wolf     }
2588b998875dSKevin Wolf 
258973176beeSKevin Wolf     /* Prepare options QDict for the temporary file */
259046f5ac20SEric Blake     qdict_put_str(snapshot_options, "file.driver", "file");
259146f5ac20SEric Blake     qdict_put_str(snapshot_options, "file.filename", tmp_filename);
259246f5ac20SEric Blake     qdict_put_str(snapshot_options, "driver", "qcow2");
2593b998875dSKevin Wolf 
25945b363937SMax Reitz     bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
259573176beeSKevin Wolf     snapshot_options = NULL;
25965b363937SMax Reitz     if (!bs_snapshot) {
25971ba4b6a5SBenoît Canet         goto out;
2598b998875dSKevin Wolf     }
2599b998875dSKevin Wolf 
2600ff6ed714SEric Blake     /* bdrv_append() consumes a strong reference to bs_snapshot
2601ff6ed714SEric Blake      * (i.e. it will call bdrv_unref() on it) even on error, so in
2602ff6ed714SEric Blake      * order to be able to return one, we have to increase
2603ff6ed714SEric Blake      * bs_snapshot's refcount here */
260466836189SMax Reitz     bdrv_ref(bs_snapshot);
2605b2c2832cSKevin Wolf     bdrv_append(bs_snapshot, bs, &local_err);
2606b2c2832cSKevin Wolf     if (local_err) {
2607b2c2832cSKevin Wolf         error_propagate(errp, local_err);
2608ff6ed714SEric Blake         bs_snapshot = NULL;
2609b2c2832cSKevin Wolf         goto out;
2610b2c2832cSKevin Wolf     }
26111ba4b6a5SBenoît Canet 
26121ba4b6a5SBenoît Canet out:
2613cb3e7f08SMarc-André Lureau     qobject_unref(snapshot_options);
26141ba4b6a5SBenoît Canet     g_free(tmp_filename);
2615ff6ed714SEric Blake     return bs_snapshot;
2616b998875dSKevin Wolf }
2617b998875dSKevin Wolf 
2618da557aacSMax Reitz /*
2619b6ce07aaSKevin Wolf  * Opens a disk image (raw, qcow2, vmdk, ...)
2620de9c0cecSKevin Wolf  *
2621de9c0cecSKevin Wolf  * options is a QDict of options to pass to the block drivers, or NULL for an
2622de9c0cecSKevin Wolf  * empty set of options. The reference to the QDict belongs to the block layer
2623de9c0cecSKevin Wolf  * after the call (even on failure), so if the caller intends to reuse the
2624cb3e7f08SMarc-André Lureau  * dictionary, it needs to use qobject_ref() before calling bdrv_open.
2625f67503e5SMax Reitz  *
2626f67503e5SMax Reitz  * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
2627f67503e5SMax Reitz  * If it is not NULL, the referenced BDS will be reused.
2628ddf5636dSMax Reitz  *
2629ddf5636dSMax Reitz  * The reference parameter may be used to specify an existing block device which
2630ddf5636dSMax Reitz  * should be opened. If specified, neither options nor a filename may be given,
2631ddf5636dSMax Reitz  * nor can an existing BDS be reused (that is, *pbs has to be NULL).
2632b6ce07aaSKevin Wolf  */
26335b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename,
26345b363937SMax Reitz                                            const char *reference,
26355b363937SMax Reitz                                            QDict *options, int flags,
2636f3930ed0SKevin Wolf                                            BlockDriverState *parent,
26375b363937SMax Reitz                                            const BdrvChildRole *child_role,
26385b363937SMax Reitz                                            Error **errp)
2639ea2384d3Sbellard {
2640b6ce07aaSKevin Wolf     int ret;
26415696c6e3SKevin Wolf     BlockBackend *file = NULL;
26429a4f4c31SKevin Wolf     BlockDriverState *bs;
2643ce343771SMax Reitz     BlockDriver *drv = NULL;
26442f624b80SAlberto Garcia     BdrvChild *child;
264574fe54f2SKevin Wolf     const char *drvname;
26463e8c2e57SAlberto Garcia     const char *backing;
264734b5d2c6SMax Reitz     Error *local_err = NULL;
264873176beeSKevin Wolf     QDict *snapshot_options = NULL;
2649b1e6fc08SKevin Wolf     int snapshot_flags = 0;
265033e3963eSbellard 
2651f3930ed0SKevin Wolf     assert(!child_role || !flags);
2652f3930ed0SKevin Wolf     assert(!child_role == !parent);
2653f67503e5SMax Reitz 
2654ddf5636dSMax Reitz     if (reference) {
2655ddf5636dSMax Reitz         bool options_non_empty = options ? qdict_size(options) : false;
2656cb3e7f08SMarc-André Lureau         qobject_unref(options);
2657ddf5636dSMax Reitz 
2658ddf5636dSMax Reitz         if (filename || options_non_empty) {
2659ddf5636dSMax Reitz             error_setg(errp, "Cannot reference an existing block device with "
2660ddf5636dSMax Reitz                        "additional options or a new filename");
26615b363937SMax Reitz             return NULL;
2662ddf5636dSMax Reitz         }
2663ddf5636dSMax Reitz 
2664ddf5636dSMax Reitz         bs = bdrv_lookup_bs(reference, reference, errp);
2665ddf5636dSMax Reitz         if (!bs) {
26665b363937SMax Reitz             return NULL;
2667ddf5636dSMax Reitz         }
266876b22320SKevin Wolf 
2669ddf5636dSMax Reitz         bdrv_ref(bs);
26705b363937SMax Reitz         return bs;
2671ddf5636dSMax Reitz     }
2672ddf5636dSMax Reitz 
2673e4e9986bSMarkus Armbruster     bs = bdrv_new();
2674f67503e5SMax Reitz 
2675de9c0cecSKevin Wolf     /* NULL means an empty set of options */
2676de9c0cecSKevin Wolf     if (options == NULL) {
2677de9c0cecSKevin Wolf         options = qdict_new();
2678de9c0cecSKevin Wolf     }
2679de9c0cecSKevin Wolf 
2680145f598eSKevin Wolf     /* json: syntax counts as explicit options, as if in the QDict */
2681de3b53f0SKevin Wolf     parse_json_protocol(options, &filename, &local_err);
2682de3b53f0SKevin Wolf     if (local_err) {
2683de3b53f0SKevin Wolf         goto fail;
2684de3b53f0SKevin Wolf     }
2685de3b53f0SKevin Wolf 
2686145f598eSKevin Wolf     bs->explicit_options = qdict_clone_shallow(options);
2687145f598eSKevin Wolf 
2688f3930ed0SKevin Wolf     if (child_role) {
2689bddcec37SKevin Wolf         bs->inherits_from = parent;
26908e2160e2SKevin Wolf         child_role->inherit_options(&flags, options,
26918e2160e2SKevin Wolf                                     parent->open_flags, parent->options);
2692f3930ed0SKevin Wolf     }
2693f3930ed0SKevin Wolf 
2694de3b53f0SKevin Wolf     ret = bdrv_fill_options(&options, filename, &flags, &local_err);
2695462f5bcfSKevin Wolf     if (local_err) {
2696462f5bcfSKevin Wolf         goto fail;
2697462f5bcfSKevin Wolf     }
2698462f5bcfSKevin Wolf 
2699129c7d1cSMarkus Armbruster     /*
2700129c7d1cSMarkus Armbruster      * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
2701129c7d1cSMarkus Armbruster      * Caution: getting a boolean member of @options requires care.
2702129c7d1cSMarkus Armbruster      * When @options come from -blockdev or blockdev_add, members are
2703129c7d1cSMarkus Armbruster      * typed according to the QAPI schema, but when they come from
2704129c7d1cSMarkus Armbruster      * -drive, they're all QString.
2705129c7d1cSMarkus Armbruster      */
2706f87a0e29SAlberto Garcia     if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
2707f87a0e29SAlberto Garcia         !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
2708f87a0e29SAlberto Garcia         flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
2709f87a0e29SAlberto Garcia     } else {
2710f87a0e29SAlberto Garcia         flags &= ~BDRV_O_RDWR;
271114499ea5SAlberto Garcia     }
271214499ea5SAlberto Garcia 
271314499ea5SAlberto Garcia     if (flags & BDRV_O_SNAPSHOT) {
271414499ea5SAlberto Garcia         snapshot_options = qdict_new();
271514499ea5SAlberto Garcia         bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
271614499ea5SAlberto Garcia                                    flags, options);
2717f87a0e29SAlberto Garcia         /* Let bdrv_backing_options() override "read-only" */
2718f87a0e29SAlberto Garcia         qdict_del(options, BDRV_OPT_READ_ONLY);
271914499ea5SAlberto Garcia         bdrv_backing_options(&flags, options, flags, options);
272014499ea5SAlberto Garcia     }
272114499ea5SAlberto Garcia 
272262392ebbSKevin Wolf     bs->open_flags = flags;
272362392ebbSKevin Wolf     bs->options = options;
272462392ebbSKevin Wolf     options = qdict_clone_shallow(options);
272562392ebbSKevin Wolf 
272676c591b0SKevin Wolf     /* Find the right image format driver */
2727129c7d1cSMarkus Armbruster     /* See cautionary note on accessing @options above */
272876c591b0SKevin Wolf     drvname = qdict_get_try_str(options, "driver");
272976c591b0SKevin Wolf     if (drvname) {
273076c591b0SKevin Wolf         drv = bdrv_find_format(drvname);
273176c591b0SKevin Wolf         if (!drv) {
273276c591b0SKevin Wolf             error_setg(errp, "Unknown driver: '%s'", drvname);
273376c591b0SKevin Wolf             goto fail;
273476c591b0SKevin Wolf         }
273576c591b0SKevin Wolf     }
273676c591b0SKevin Wolf 
273776c591b0SKevin Wolf     assert(drvname || !(flags & BDRV_O_PROTOCOL));
273876c591b0SKevin Wolf 
2739129c7d1cSMarkus Armbruster     /* See cautionary note on accessing @options above */
27403e8c2e57SAlberto Garcia     backing = qdict_get_try_str(options, "backing");
2741e59a0cf1SMax Reitz     if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
2742e59a0cf1SMax Reitz         (backing && *backing == '\0'))
2743e59a0cf1SMax Reitz     {
27444f7be280SMax Reitz         if (backing) {
27454f7be280SMax Reitz             warn_report("Use of \"backing\": \"\" is deprecated; "
27464f7be280SMax Reitz                         "use \"backing\": null instead");
27474f7be280SMax Reitz         }
27483e8c2e57SAlberto Garcia         flags |= BDRV_O_NO_BACKING;
27493e8c2e57SAlberto Garcia         qdict_del(options, "backing");
27503e8c2e57SAlberto Garcia     }
27513e8c2e57SAlberto Garcia 
27525696c6e3SKevin Wolf     /* Open image file without format layer. This BlockBackend is only used for
27534e4bf5c4SKevin Wolf      * probing, the block drivers will do their own bdrv_open_child() for the
27544e4bf5c4SKevin Wolf      * same BDS, which is why we put the node name back into options. */
2755f4788adcSKevin Wolf     if ((flags & BDRV_O_PROTOCOL) == 0) {
27565696c6e3SKevin Wolf         BlockDriverState *file_bs;
27575696c6e3SKevin Wolf 
27585696c6e3SKevin Wolf         file_bs = bdrv_open_child_bs(filename, options, "file", bs,
27591fdd6933SKevin Wolf                                      &child_file, true, &local_err);
27601fdd6933SKevin Wolf         if (local_err) {
27618bfea15dSKevin Wolf             goto fail;
2762f500a6d3SKevin Wolf         }
27635696c6e3SKevin Wolf         if (file_bs != NULL) {
2764dacaa162SKevin Wolf             /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
2765dacaa162SKevin Wolf              * looking at the header to guess the image format. This works even
2766dacaa162SKevin Wolf              * in cases where a guest would not see a consistent state. */
2767dacaa162SKevin Wolf             file = blk_new(0, BLK_PERM_ALL);
2768d7086422SKevin Wolf             blk_insert_bs(file, file_bs, &local_err);
27695696c6e3SKevin Wolf             bdrv_unref(file_bs);
2770d7086422SKevin Wolf             if (local_err) {
2771d7086422SKevin Wolf                 goto fail;
2772d7086422SKevin Wolf             }
27735696c6e3SKevin Wolf 
277446f5ac20SEric Blake             qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
27754e4bf5c4SKevin Wolf         }
2776f4788adcSKevin Wolf     }
2777f500a6d3SKevin Wolf 
277876c591b0SKevin Wolf     /* Image format probing */
277938f3ef57SKevin Wolf     bs->probed = !drv;
278076c591b0SKevin Wolf     if (!drv && file) {
2781cf2ab8fcSKevin Wolf         ret = find_image_format(file, filename, &drv, &local_err);
278217b005f1SKevin Wolf         if (ret < 0) {
278317b005f1SKevin Wolf             goto fail;
278417b005f1SKevin Wolf         }
278562392ebbSKevin Wolf         /*
278662392ebbSKevin Wolf          * This option update would logically belong in bdrv_fill_options(),
278762392ebbSKevin Wolf          * but we first need to open bs->file for the probing to work, while
278862392ebbSKevin Wolf          * opening bs->file already requires the (mostly) final set of options
278962392ebbSKevin Wolf          * so that cache mode etc. can be inherited.
279062392ebbSKevin Wolf          *
279162392ebbSKevin Wolf          * Adding the driver later is somewhat ugly, but it's not an option
279262392ebbSKevin Wolf          * that would ever be inherited, so it's correct. We just need to make
279362392ebbSKevin Wolf          * sure to update both bs->options (which has the full effective
279462392ebbSKevin Wolf          * options for bs) and options (which has file.* already removed).
279562392ebbSKevin Wolf          */
279646f5ac20SEric Blake         qdict_put_str(bs->options, "driver", drv->format_name);
279746f5ac20SEric Blake         qdict_put_str(options, "driver", drv->format_name);
279876c591b0SKevin Wolf     } else if (!drv) {
27992a05cbe4SMax Reitz         error_setg(errp, "Must specify either driver or file");
28008bfea15dSKevin Wolf         goto fail;
28012a05cbe4SMax Reitz     }
2802f500a6d3SKevin Wolf 
280353a29513SMax Reitz     /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
280453a29513SMax Reitz     assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
280553a29513SMax Reitz     /* file must be NULL if a protocol BDS is about to be created
280653a29513SMax Reitz      * (the inverse results in an error message from bdrv_open_common()) */
280753a29513SMax Reitz     assert(!(flags & BDRV_O_PROTOCOL) || !file);
280853a29513SMax Reitz 
2809b6ce07aaSKevin Wolf     /* Open the image */
281082dc8b41SKevin Wolf     ret = bdrv_open_common(bs, file, options, &local_err);
2811b6ce07aaSKevin Wolf     if (ret < 0) {
28128bfea15dSKevin Wolf         goto fail;
28136987307cSChristoph Hellwig     }
28146987307cSChristoph Hellwig 
28154e4bf5c4SKevin Wolf     if (file) {
28165696c6e3SKevin Wolf         blk_unref(file);
2817f500a6d3SKevin Wolf         file = NULL;
2818f500a6d3SKevin Wolf     }
2819f500a6d3SKevin Wolf 
2820b6ce07aaSKevin Wolf     /* If there is a backing file, use it */
28219156df12SPaolo Bonzini     if ((flags & BDRV_O_NO_BACKING) == 0) {
2822d9b7b057SKevin Wolf         ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
2823b6ce07aaSKevin Wolf         if (ret < 0) {
2824b6ad491aSKevin Wolf             goto close_and_fail;
2825b6ce07aaSKevin Wolf         }
2826b6ce07aaSKevin Wolf     }
2827b6ce07aaSKevin Wolf 
282850196d7aSAlberto Garcia     /* Remove all children options and references
282950196d7aSAlberto Garcia      * from bs->options and bs->explicit_options */
28302f624b80SAlberto Garcia     QLIST_FOREACH(child, &bs->children, next) {
28312f624b80SAlberto Garcia         char *child_key_dot;
28322f624b80SAlberto Garcia         child_key_dot = g_strdup_printf("%s.", child->name);
28332f624b80SAlberto Garcia         qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
28342f624b80SAlberto Garcia         qdict_extract_subqdict(bs->options, NULL, child_key_dot);
283550196d7aSAlberto Garcia         qdict_del(bs->explicit_options, child->name);
283650196d7aSAlberto Garcia         qdict_del(bs->options, child->name);
28372f624b80SAlberto Garcia         g_free(child_key_dot);
28382f624b80SAlberto Garcia     }
28392f624b80SAlberto Garcia 
284091af7014SMax Reitz     bdrv_refresh_filename(bs);
284191af7014SMax Reitz 
2842b6ad491aSKevin Wolf     /* Check if any unknown options were used */
28437ad2757fSPaolo Bonzini     if (qdict_size(options) != 0) {
2844b6ad491aSKevin Wolf         const QDictEntry *entry = qdict_first(options);
28455acd9d81SMax Reitz         if (flags & BDRV_O_PROTOCOL) {
28465acd9d81SMax Reitz             error_setg(errp, "Block protocol '%s' doesn't support the option "
28475acd9d81SMax Reitz                        "'%s'", drv->format_name, entry->key);
28485acd9d81SMax Reitz         } else {
2849d0e46a55SMax Reitz             error_setg(errp,
2850d0e46a55SMax Reitz                        "Block format '%s' does not support the option '%s'",
2851d0e46a55SMax Reitz                        drv->format_name, entry->key);
28525acd9d81SMax Reitz         }
2853b6ad491aSKevin Wolf 
2854b6ad491aSKevin Wolf         goto close_and_fail;
2855b6ad491aSKevin Wolf     }
2856b6ad491aSKevin Wolf 
28575c8cab48SKevin Wolf     bdrv_parent_cb_change_media(bs, true);
2858b6ce07aaSKevin Wolf 
2859cb3e7f08SMarc-André Lureau     qobject_unref(options);
28608961be33SAlberto Garcia     options = NULL;
2861dd62f1caSKevin Wolf 
2862dd62f1caSKevin Wolf     /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
2863dd62f1caSKevin Wolf      * temporary snapshot afterwards. */
2864dd62f1caSKevin Wolf     if (snapshot_flags) {
286566836189SMax Reitz         BlockDriverState *snapshot_bs;
286666836189SMax Reitz         snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
286766836189SMax Reitz                                                 snapshot_options, &local_err);
286873176beeSKevin Wolf         snapshot_options = NULL;
2869dd62f1caSKevin Wolf         if (local_err) {
2870dd62f1caSKevin Wolf             goto close_and_fail;
2871dd62f1caSKevin Wolf         }
287266836189SMax Reitz         /* We are not going to return bs but the overlay on top of it
287366836189SMax Reitz          * (snapshot_bs); thus, we have to drop the strong reference to bs
28745b363937SMax Reitz          * (which we obtained by calling bdrv_new()). bs will not be deleted,
28755b363937SMax Reitz          * though, because the overlay still has a reference to it. */
287666836189SMax Reitz         bdrv_unref(bs);
287766836189SMax Reitz         bs = snapshot_bs;
287866836189SMax Reitz     }
287966836189SMax Reitz 
28805b363937SMax Reitz     return bs;
2881b6ce07aaSKevin Wolf 
28828bfea15dSKevin Wolf fail:
28835696c6e3SKevin Wolf     blk_unref(file);
2884cb3e7f08SMarc-André Lureau     qobject_unref(snapshot_options);
2885cb3e7f08SMarc-André Lureau     qobject_unref(bs->explicit_options);
2886cb3e7f08SMarc-André Lureau     qobject_unref(bs->options);
2887cb3e7f08SMarc-André Lureau     qobject_unref(options);
2888de9c0cecSKevin Wolf     bs->options = NULL;
2889998cbd6aSManos Pitsidianakis     bs->explicit_options = NULL;
2890f67503e5SMax Reitz     bdrv_unref(bs);
289134b5d2c6SMax Reitz     error_propagate(errp, local_err);
28925b363937SMax Reitz     return NULL;
2893de9c0cecSKevin Wolf 
2894b6ad491aSKevin Wolf close_and_fail:
2895f67503e5SMax Reitz     bdrv_unref(bs);
2896cb3e7f08SMarc-André Lureau     qobject_unref(snapshot_options);
2897cb3e7f08SMarc-André Lureau     qobject_unref(options);
289834b5d2c6SMax Reitz     error_propagate(errp, local_err);
28995b363937SMax Reitz     return NULL;
2900b6ce07aaSKevin Wolf }
2901b6ce07aaSKevin Wolf 
29025b363937SMax Reitz BlockDriverState *bdrv_open(const char *filename, const char *reference,
29035b363937SMax Reitz                             QDict *options, int flags, Error **errp)
2904f3930ed0SKevin Wolf {
29055b363937SMax Reitz     return bdrv_open_inherit(filename, reference, options, flags, NULL,
2906ce343771SMax Reitz                              NULL, errp);
2907f3930ed0SKevin Wolf }
2908f3930ed0SKevin Wolf 
2909e971aa12SJeff Cody /*
2910e971aa12SJeff Cody  * Adds a BlockDriverState to a simple queue for an atomic, transactional
2911e971aa12SJeff Cody  * reopen of multiple devices.
2912e971aa12SJeff Cody  *
2913e971aa12SJeff Cody  * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
2914e971aa12SJeff Cody  * already performed, or alternatively may be NULL a new BlockReopenQueue will
2915e971aa12SJeff Cody  * be created and initialized. This newly created BlockReopenQueue should be
2916e971aa12SJeff Cody  * passed back in for subsequent calls that are intended to be of the same
2917e971aa12SJeff Cody  * atomic 'set'.
2918e971aa12SJeff Cody  *
2919e971aa12SJeff Cody  * bs is the BlockDriverState to add to the reopen queue.
2920e971aa12SJeff Cody  *
29214d2cb092SKevin Wolf  * options contains the changed options for the associated bs
29224d2cb092SKevin Wolf  * (the BlockReopenQueue takes ownership)
29234d2cb092SKevin Wolf  *
2924e971aa12SJeff Cody  * flags contains the open flags for the associated bs
2925e971aa12SJeff Cody  *
2926e971aa12SJeff Cody  * returns a pointer to bs_queue, which is either the newly allocated
2927e971aa12SJeff Cody  * bs_queue, or the existing bs_queue being used.
2928e971aa12SJeff Cody  *
29291a63a907SKevin Wolf  * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
2930e971aa12SJeff Cody  */
293128518102SKevin Wolf static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
29324d2cb092SKevin Wolf                                                  BlockDriverState *bs,
293328518102SKevin Wolf                                                  QDict *options,
293428518102SKevin Wolf                                                  int flags,
293528518102SKevin Wolf                                                  const BdrvChildRole *role,
293628518102SKevin Wolf                                                  QDict *parent_options,
293728518102SKevin Wolf                                                  int parent_flags)
2938e971aa12SJeff Cody {
2939e971aa12SJeff Cody     assert(bs != NULL);
2940e971aa12SJeff Cody 
2941e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry;
294267251a31SKevin Wolf     BdrvChild *child;
2943145f598eSKevin Wolf     QDict *old_options, *explicit_options;
294467251a31SKevin Wolf 
29451a63a907SKevin Wolf     /* Make sure that the caller remembered to use a drained section. This is
29461a63a907SKevin Wolf      * important to avoid graph changes between the recursive queuing here and
29471a63a907SKevin Wolf      * bdrv_reopen_multiple(). */
29481a63a907SKevin Wolf     assert(bs->quiesce_counter > 0);
29491a63a907SKevin Wolf 
2950e971aa12SJeff Cody     if (bs_queue == NULL) {
2951e971aa12SJeff Cody         bs_queue = g_new0(BlockReopenQueue, 1);
2952e971aa12SJeff Cody         QSIMPLEQ_INIT(bs_queue);
2953e971aa12SJeff Cody     }
2954e971aa12SJeff Cody 
29554d2cb092SKevin Wolf     if (!options) {
29564d2cb092SKevin Wolf         options = qdict_new();
29574d2cb092SKevin Wolf     }
29584d2cb092SKevin Wolf 
29595b7ba05fSAlberto Garcia     /* Check if this BlockDriverState is already in the queue */
29605b7ba05fSAlberto Garcia     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
29615b7ba05fSAlberto Garcia         if (bs == bs_entry->state.bs) {
29625b7ba05fSAlberto Garcia             break;
29635b7ba05fSAlberto Garcia         }
29645b7ba05fSAlberto Garcia     }
29655b7ba05fSAlberto Garcia 
296628518102SKevin Wolf     /*
296728518102SKevin Wolf      * Precedence of options:
296828518102SKevin Wolf      * 1. Explicitly passed in options (highest)
296991a097e7SKevin Wolf      * 2. Set in flags (only for top level)
2970145f598eSKevin Wolf      * 3. Retained from explicitly set options of bs
29718e2160e2SKevin Wolf      * 4. Inherited from parent node
297228518102SKevin Wolf      * 5. Retained from effective options of bs
297328518102SKevin Wolf      */
297428518102SKevin Wolf 
297591a097e7SKevin Wolf     if (!parent_options) {
297691a097e7SKevin Wolf         /*
297791a097e7SKevin Wolf          * Any setting represented by flags is always updated. If the
297891a097e7SKevin Wolf          * corresponding QDict option is set, it takes precedence. Otherwise
297991a097e7SKevin Wolf          * the flag is translated into a QDict option. The old setting of bs is
298091a097e7SKevin Wolf          * not considered.
298191a097e7SKevin Wolf          */
298291a097e7SKevin Wolf         update_options_from_flags(options, flags);
298391a097e7SKevin Wolf     }
298491a097e7SKevin Wolf 
2985145f598eSKevin Wolf     /* Old explicitly set values (don't overwrite by inherited value) */
29865b7ba05fSAlberto Garcia     if (bs_entry) {
29875b7ba05fSAlberto Garcia         old_options = qdict_clone_shallow(bs_entry->state.explicit_options);
29885b7ba05fSAlberto Garcia     } else {
2989145f598eSKevin Wolf         old_options = qdict_clone_shallow(bs->explicit_options);
29905b7ba05fSAlberto Garcia     }
2991145f598eSKevin Wolf     bdrv_join_options(bs, options, old_options);
2992cb3e7f08SMarc-André Lureau     qobject_unref(old_options);
2993145f598eSKevin Wolf 
2994145f598eSKevin Wolf     explicit_options = qdict_clone_shallow(options);
2995145f598eSKevin Wolf 
299628518102SKevin Wolf     /* Inherit from parent node */
299728518102SKevin Wolf     if (parent_options) {
29981a529736SFam Zheng         QemuOpts *opts;
29991a529736SFam Zheng         QDict *options_copy;
300028518102SKevin Wolf         assert(!flags);
30018e2160e2SKevin Wolf         role->inherit_options(&flags, options, parent_flags, parent_options);
30021a529736SFam Zheng         options_copy = qdict_clone_shallow(options);
30031a529736SFam Zheng         opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
30041a529736SFam Zheng         qemu_opts_absorb_qdict(opts, options_copy, NULL);
30051a529736SFam Zheng         update_flags_from_options(&flags, opts);
30061a529736SFam Zheng         qemu_opts_del(opts);
3007cb3e7f08SMarc-André Lureau         qobject_unref(options_copy);
300828518102SKevin Wolf     }
300928518102SKevin Wolf 
301028518102SKevin Wolf     /* Old values are used for options that aren't set yet */
30114d2cb092SKevin Wolf     old_options = qdict_clone_shallow(bs->options);
3012cddff5baSKevin Wolf     bdrv_join_options(bs, options, old_options);
3013cb3e7f08SMarc-André Lureau     qobject_unref(old_options);
30144d2cb092SKevin Wolf 
3015fd452021SKevin Wolf     /* bdrv_open_inherit() sets and clears some additional flags internally */
3016f1f25a2eSKevin Wolf     flags &= ~BDRV_O_PROTOCOL;
3017fd452021SKevin Wolf     if (flags & BDRV_O_RDWR) {
3018fd452021SKevin Wolf         flags |= BDRV_O_ALLOW_RDWR;
3019fd452021SKevin Wolf     }
3020f1f25a2eSKevin Wolf 
30211857c97bSKevin Wolf     if (!bs_entry) {
30221857c97bSKevin Wolf         bs_entry = g_new0(BlockReopenQueueEntry, 1);
30231857c97bSKevin Wolf         QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
30241857c97bSKevin Wolf     } else {
3025cb3e7f08SMarc-André Lureau         qobject_unref(bs_entry->state.options);
3026cb3e7f08SMarc-André Lureau         qobject_unref(bs_entry->state.explicit_options);
30271857c97bSKevin Wolf     }
30281857c97bSKevin Wolf 
30291857c97bSKevin Wolf     bs_entry->state.bs = bs;
30301857c97bSKevin Wolf     bs_entry->state.options = options;
30311857c97bSKevin Wolf     bs_entry->state.explicit_options = explicit_options;
30321857c97bSKevin Wolf     bs_entry->state.flags = flags;
30331857c97bSKevin Wolf 
303430450259SKevin Wolf     /* This needs to be overwritten in bdrv_reopen_prepare() */
303530450259SKevin Wolf     bs_entry->state.perm = UINT64_MAX;
303630450259SKevin Wolf     bs_entry->state.shared_perm = 0;
303730450259SKevin Wolf 
303867251a31SKevin Wolf     QLIST_FOREACH(child, &bs->children, next) {
30394c9dfe5dSKevin Wolf         QDict *new_child_options;
30404c9dfe5dSKevin Wolf         char *child_key_dot;
304167251a31SKevin Wolf 
30424c9dfe5dSKevin Wolf         /* reopen can only change the options of block devices that were
30434c9dfe5dSKevin Wolf          * implicitly created and inherited options. For other (referenced)
30444c9dfe5dSKevin Wolf          * block devices, a syntax like "backing.foo" results in an error. */
304567251a31SKevin Wolf         if (child->bs->inherits_from != bs) {
304667251a31SKevin Wolf             continue;
304767251a31SKevin Wolf         }
304867251a31SKevin Wolf 
30494c9dfe5dSKevin Wolf         child_key_dot = g_strdup_printf("%s.", child->name);
30502f624b80SAlberto Garcia         qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
30514c9dfe5dSKevin Wolf         qdict_extract_subqdict(options, &new_child_options, child_key_dot);
30524c9dfe5dSKevin Wolf         g_free(child_key_dot);
30534c9dfe5dSKevin Wolf 
305428518102SKevin Wolf         bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0,
305528518102SKevin Wolf                                 child->role, options, flags);
3056e971aa12SJeff Cody     }
3057e971aa12SJeff Cody 
3058e971aa12SJeff Cody     return bs_queue;
3059e971aa12SJeff Cody }
3060e971aa12SJeff Cody 
306128518102SKevin Wolf BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
306228518102SKevin Wolf                                     BlockDriverState *bs,
3063*2e891722SAlberto Garcia                                     QDict *options)
306428518102SKevin Wolf {
3065*2e891722SAlberto Garcia     int flags = bdrv_get_flags(bs);
306628518102SKevin Wolf     return bdrv_reopen_queue_child(bs_queue, bs, options, flags,
306728518102SKevin Wolf                                    NULL, NULL, 0);
306828518102SKevin Wolf }
306928518102SKevin Wolf 
3070e971aa12SJeff Cody /*
3071e971aa12SJeff Cody  * Reopen multiple BlockDriverStates atomically & transactionally.
3072e971aa12SJeff Cody  *
3073e971aa12SJeff Cody  * The queue passed in (bs_queue) must have been built up previous
3074e971aa12SJeff Cody  * via bdrv_reopen_queue().
3075e971aa12SJeff Cody  *
3076e971aa12SJeff Cody  * Reopens all BDS specified in the queue, with the appropriate
3077e971aa12SJeff Cody  * flags.  All devices are prepared for reopen, and failure of any
307850d6a8a3SStefan Weil  * device will cause all device changes to be abandoned, and intermediate
3079e971aa12SJeff Cody  * data cleaned up.
3080e971aa12SJeff Cody  *
3081e971aa12SJeff Cody  * If all devices prepare successfully, then the changes are committed
3082e971aa12SJeff Cody  * to all devices.
3083e971aa12SJeff Cody  *
30841a63a907SKevin Wolf  * All affected nodes must be drained between bdrv_reopen_queue() and
30851a63a907SKevin Wolf  * bdrv_reopen_multiple().
3086e971aa12SJeff Cody  */
3087720150f3SPaolo Bonzini int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp)
3088e971aa12SJeff Cody {
3089e971aa12SJeff Cody     int ret = -1;
3090e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry, *next;
3091e971aa12SJeff Cody     Error *local_err = NULL;
3092e971aa12SJeff Cody 
3093e971aa12SJeff Cody     assert(bs_queue != NULL);
3094e971aa12SJeff Cody 
3095e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
30961a63a907SKevin Wolf         assert(bs_entry->state.bs->quiesce_counter > 0);
3097e971aa12SJeff Cody         if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
3098e971aa12SJeff Cody             error_propagate(errp, local_err);
3099e971aa12SJeff Cody             goto cleanup;
3100e971aa12SJeff Cody         }
3101e971aa12SJeff Cody         bs_entry->prepared = true;
3102e971aa12SJeff Cody     }
3103e971aa12SJeff Cody 
3104e971aa12SJeff Cody     /* If we reach this point, we have success and just need to apply the
3105e971aa12SJeff Cody      * changes
3106e971aa12SJeff Cody      */
3107e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
3108e971aa12SJeff Cody         bdrv_reopen_commit(&bs_entry->state);
3109e971aa12SJeff Cody     }
3110e971aa12SJeff Cody 
3111e971aa12SJeff Cody     ret = 0;
3112e971aa12SJeff Cody 
3113e971aa12SJeff Cody cleanup:
3114e971aa12SJeff Cody     QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
31151bab38e7SAlberto Garcia         if (ret) {
31161bab38e7SAlberto Garcia             if (bs_entry->prepared) {
3117e971aa12SJeff Cody                 bdrv_reopen_abort(&bs_entry->state);
31181bab38e7SAlberto Garcia             }
3119cb3e7f08SMarc-André Lureau             qobject_unref(bs_entry->state.explicit_options);
3120cb3e7f08SMarc-André Lureau             qobject_unref(bs_entry->state.options);
31214c8350feSAlberto Garcia         }
3122e971aa12SJeff Cody         g_free(bs_entry);
3123e971aa12SJeff Cody     }
3124e971aa12SJeff Cody     g_free(bs_queue);
312540840e41SAlberto Garcia 
3126e971aa12SJeff Cody     return ret;
3127e971aa12SJeff Cody }
3128e971aa12SJeff Cody 
31296e1000a8SAlberto Garcia int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
31306e1000a8SAlberto Garcia                               Error **errp)
31316e1000a8SAlberto Garcia {
31326e1000a8SAlberto Garcia     int ret;
31336e1000a8SAlberto Garcia     BlockReopenQueue *queue;
31346e1000a8SAlberto Garcia     QDict *opts = qdict_new();
31356e1000a8SAlberto Garcia 
31366e1000a8SAlberto Garcia     qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
31376e1000a8SAlberto Garcia 
31386e1000a8SAlberto Garcia     bdrv_subtree_drained_begin(bs);
3139*2e891722SAlberto Garcia     queue = bdrv_reopen_queue(NULL, bs, opts);
31406e1000a8SAlberto Garcia     ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, errp);
31416e1000a8SAlberto Garcia     bdrv_subtree_drained_end(bs);
31426e1000a8SAlberto Garcia 
31436e1000a8SAlberto Garcia     return ret;
31446e1000a8SAlberto Garcia }
31456e1000a8SAlberto Garcia 
314630450259SKevin Wolf static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
314730450259SKevin Wolf                                                           BdrvChild *c)
314830450259SKevin Wolf {
314930450259SKevin Wolf     BlockReopenQueueEntry *entry;
315030450259SKevin Wolf 
315130450259SKevin Wolf     QSIMPLEQ_FOREACH(entry, q, entry) {
315230450259SKevin Wolf         BlockDriverState *bs = entry->state.bs;
315330450259SKevin Wolf         BdrvChild *child;
315430450259SKevin Wolf 
315530450259SKevin Wolf         QLIST_FOREACH(child, &bs->children, next) {
315630450259SKevin Wolf             if (child == c) {
315730450259SKevin Wolf                 return entry;
315830450259SKevin Wolf             }
315930450259SKevin Wolf         }
316030450259SKevin Wolf     }
316130450259SKevin Wolf 
316230450259SKevin Wolf     return NULL;
316330450259SKevin Wolf }
316430450259SKevin Wolf 
316530450259SKevin Wolf static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
316630450259SKevin Wolf                              uint64_t *perm, uint64_t *shared)
316730450259SKevin Wolf {
316830450259SKevin Wolf     BdrvChild *c;
316930450259SKevin Wolf     BlockReopenQueueEntry *parent;
317030450259SKevin Wolf     uint64_t cumulative_perms = 0;
317130450259SKevin Wolf     uint64_t cumulative_shared_perms = BLK_PERM_ALL;
317230450259SKevin Wolf 
317330450259SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
317430450259SKevin Wolf         parent = find_parent_in_reopen_queue(q, c);
317530450259SKevin Wolf         if (!parent) {
317630450259SKevin Wolf             cumulative_perms |= c->perm;
317730450259SKevin Wolf             cumulative_shared_perms &= c->shared_perm;
317830450259SKevin Wolf         } else {
317930450259SKevin Wolf             uint64_t nperm, nshared;
318030450259SKevin Wolf 
318130450259SKevin Wolf             bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
318230450259SKevin Wolf                             parent->state.perm, parent->state.shared_perm,
318330450259SKevin Wolf                             &nperm, &nshared);
318430450259SKevin Wolf 
318530450259SKevin Wolf             cumulative_perms |= nperm;
318630450259SKevin Wolf             cumulative_shared_perms &= nshared;
318730450259SKevin Wolf         }
318830450259SKevin Wolf     }
318930450259SKevin Wolf     *perm = cumulative_perms;
319030450259SKevin Wolf     *shared = cumulative_shared_perms;
319130450259SKevin Wolf }
3192e971aa12SJeff Cody 
3193e971aa12SJeff Cody /*
3194e971aa12SJeff Cody  * Prepares a BlockDriverState for reopen. All changes are staged in the
3195e971aa12SJeff Cody  * 'opaque' field of the BDRVReopenState, which is used and allocated by
3196e971aa12SJeff Cody  * the block driver layer .bdrv_reopen_prepare()
3197e971aa12SJeff Cody  *
3198e971aa12SJeff Cody  * bs is the BlockDriverState to reopen
3199e971aa12SJeff Cody  * flags are the new open flags
3200e971aa12SJeff Cody  * queue is the reopen queue
3201e971aa12SJeff Cody  *
3202e971aa12SJeff Cody  * Returns 0 on success, non-zero on error.  On error errp will be set
3203e971aa12SJeff Cody  * as well.
3204e971aa12SJeff Cody  *
3205e971aa12SJeff Cody  * On failure, bdrv_reopen_abort() will be called to clean up any data.
3206e971aa12SJeff Cody  * It is the responsibility of the caller to then call the abort() or
3207e971aa12SJeff Cody  * commit() for any other BDS that have been left in a prepare() state
3208e971aa12SJeff Cody  *
3209e971aa12SJeff Cody  */
3210e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
3211e971aa12SJeff Cody                         Error **errp)
3212e971aa12SJeff Cody {
3213e971aa12SJeff Cody     int ret = -1;
3214e971aa12SJeff Cody     Error *local_err = NULL;
3215e971aa12SJeff Cody     BlockDriver *drv;
3216ccf9dc07SKevin Wolf     QemuOpts *opts;
32174c8350feSAlberto Garcia     QDict *orig_reopen_opts;
3218593b3071SAlberto Garcia     char *discard = NULL;
32193d8ce171SJeff Cody     bool read_only;
32209ad08c44SMax Reitz     bool drv_prepared = false;
3221e971aa12SJeff Cody 
3222e971aa12SJeff Cody     assert(reopen_state != NULL);
3223e971aa12SJeff Cody     assert(reopen_state->bs->drv != NULL);
3224e971aa12SJeff Cody     drv = reopen_state->bs->drv;
3225e971aa12SJeff Cody 
32264c8350feSAlberto Garcia     /* This function and each driver's bdrv_reopen_prepare() remove
32274c8350feSAlberto Garcia      * entries from reopen_state->options as they are processed, so
32284c8350feSAlberto Garcia      * we need to make a copy of the original QDict. */
32294c8350feSAlberto Garcia     orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
32304c8350feSAlberto Garcia 
3231ccf9dc07SKevin Wolf     /* Process generic block layer options */
3232ccf9dc07SKevin Wolf     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3233ccf9dc07SKevin Wolf     qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
3234ccf9dc07SKevin Wolf     if (local_err) {
3235ccf9dc07SKevin Wolf         error_propagate(errp, local_err);
3236ccf9dc07SKevin Wolf         ret = -EINVAL;
3237ccf9dc07SKevin Wolf         goto error;
3238ccf9dc07SKevin Wolf     }
3239ccf9dc07SKevin Wolf 
324091a097e7SKevin Wolf     update_flags_from_options(&reopen_state->flags, opts);
324191a097e7SKevin Wolf 
3242415bbca8SAlberto Garcia     discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
3243593b3071SAlberto Garcia     if (discard != NULL) {
3244593b3071SAlberto Garcia         if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
3245593b3071SAlberto Garcia             error_setg(errp, "Invalid discard option");
3246593b3071SAlberto Garcia             ret = -EINVAL;
3247593b3071SAlberto Garcia             goto error;
3248593b3071SAlberto Garcia         }
3249593b3071SAlberto Garcia     }
3250593b3071SAlberto Garcia 
3251543770bdSAlberto Garcia     reopen_state->detect_zeroes =
3252543770bdSAlberto Garcia         bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
3253543770bdSAlberto Garcia     if (local_err) {
3254543770bdSAlberto Garcia         error_propagate(errp, local_err);
3255543770bdSAlberto Garcia         ret = -EINVAL;
3256543770bdSAlberto Garcia         goto error;
3257543770bdSAlberto Garcia     }
3258543770bdSAlberto Garcia 
325957f9db9aSAlberto Garcia     /* All other options (including node-name and driver) must be unchanged.
326057f9db9aSAlberto Garcia      * Put them back into the QDict, so that they are checked at the end
326157f9db9aSAlberto Garcia      * of this function. */
326257f9db9aSAlberto Garcia     qemu_opts_to_qdict(opts, reopen_state->options);
3263ccf9dc07SKevin Wolf 
32643d8ce171SJeff Cody     /* If we are to stay read-only, do not allow permission change
32653d8ce171SJeff Cody      * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
32663d8ce171SJeff Cody      * not set, or if the BDS still has copy_on_read enabled */
32673d8ce171SJeff Cody     read_only = !(reopen_state->flags & BDRV_O_RDWR);
326854a32bfeSKevin Wolf     ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
32693d8ce171SJeff Cody     if (local_err) {
32703d8ce171SJeff Cody         error_propagate(errp, local_err);
3271e971aa12SJeff Cody         goto error;
3272e971aa12SJeff Cody     }
3273e971aa12SJeff Cody 
327430450259SKevin Wolf     /* Calculate required permissions after reopening */
327530450259SKevin Wolf     bdrv_reopen_perm(queue, reopen_state->bs,
327630450259SKevin Wolf                      &reopen_state->perm, &reopen_state->shared_perm);
3277e971aa12SJeff Cody 
3278e971aa12SJeff Cody     ret = bdrv_flush(reopen_state->bs);
3279e971aa12SJeff Cody     if (ret) {
3280455b0fdeSEric Blake         error_setg_errno(errp, -ret, "Error flushing drive");
3281e971aa12SJeff Cody         goto error;
3282e971aa12SJeff Cody     }
3283e971aa12SJeff Cody 
3284e971aa12SJeff Cody     if (drv->bdrv_reopen_prepare) {
3285e971aa12SJeff Cody         ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
3286e971aa12SJeff Cody         if (ret) {
3287e971aa12SJeff Cody             if (local_err != NULL) {
3288e971aa12SJeff Cody                 error_propagate(errp, local_err);
3289e971aa12SJeff Cody             } else {
3290d8b6895fSLuiz Capitulino                 error_setg(errp, "failed while preparing to reopen image '%s'",
3291e971aa12SJeff Cody                            reopen_state->bs->filename);
3292e971aa12SJeff Cody             }
3293e971aa12SJeff Cody             goto error;
3294e971aa12SJeff Cody         }
3295e971aa12SJeff Cody     } else {
3296e971aa12SJeff Cody         /* It is currently mandatory to have a bdrv_reopen_prepare()
3297e971aa12SJeff Cody          * handler for each supported drv. */
329881e5f78aSAlberto Garcia         error_setg(errp, "Block format '%s' used by node '%s' "
329981e5f78aSAlberto Garcia                    "does not support reopening files", drv->format_name,
330081e5f78aSAlberto Garcia                    bdrv_get_device_or_node_name(reopen_state->bs));
3301e971aa12SJeff Cody         ret = -1;
3302e971aa12SJeff Cody         goto error;
3303e971aa12SJeff Cody     }
3304e971aa12SJeff Cody 
33059ad08c44SMax Reitz     drv_prepared = true;
33069ad08c44SMax Reitz 
33074d2cb092SKevin Wolf     /* Options that are not handled are only okay if they are unchanged
33084d2cb092SKevin Wolf      * compared to the old state. It is expected that some options are only
33094d2cb092SKevin Wolf      * used for the initial open, but not reopen (e.g. filename) */
33104d2cb092SKevin Wolf     if (qdict_size(reopen_state->options)) {
33114d2cb092SKevin Wolf         const QDictEntry *entry = qdict_first(reopen_state->options);
33124d2cb092SKevin Wolf 
33134d2cb092SKevin Wolf         do {
331454fd1b0dSMax Reitz             QObject *new = entry->value;
331554fd1b0dSMax Reitz             QObject *old = qdict_get(reopen_state->bs->options, entry->key);
33164d2cb092SKevin Wolf 
3317db905283SAlberto Garcia             /* Allow child references (child_name=node_name) as long as they
3318db905283SAlberto Garcia              * point to the current child (i.e. everything stays the same). */
3319db905283SAlberto Garcia             if (qobject_type(new) == QTYPE_QSTRING) {
3320db905283SAlberto Garcia                 BdrvChild *child;
3321db905283SAlberto Garcia                 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
3322db905283SAlberto Garcia                     if (!strcmp(child->name, entry->key)) {
3323db905283SAlberto Garcia                         break;
3324db905283SAlberto Garcia                     }
3325db905283SAlberto Garcia                 }
3326db905283SAlberto Garcia 
3327db905283SAlberto Garcia                 if (child) {
3328db905283SAlberto Garcia                     const char *str = qobject_get_try_str(new);
3329db905283SAlberto Garcia                     if (!strcmp(child->bs->node_name, str)) {
3330db905283SAlberto Garcia                         continue; /* Found child with this name, skip option */
3331db905283SAlberto Garcia                     }
3332db905283SAlberto Garcia                 }
3333db905283SAlberto Garcia             }
3334db905283SAlberto Garcia 
333554fd1b0dSMax Reitz             /*
333654fd1b0dSMax Reitz              * TODO: When using -drive to specify blockdev options, all values
333754fd1b0dSMax Reitz              * will be strings; however, when using -blockdev, blockdev-add or
333854fd1b0dSMax Reitz              * filenames using the json:{} pseudo-protocol, they will be
333954fd1b0dSMax Reitz              * correctly typed.
334054fd1b0dSMax Reitz              * In contrast, reopening options are (currently) always strings
334154fd1b0dSMax Reitz              * (because you can only specify them through qemu-io; all other
334254fd1b0dSMax Reitz              * callers do not specify any options).
334354fd1b0dSMax Reitz              * Therefore, when using anything other than -drive to create a BDS,
334454fd1b0dSMax Reitz              * this cannot detect non-string options as unchanged, because
334554fd1b0dSMax Reitz              * qobject_is_equal() always returns false for objects of different
334654fd1b0dSMax Reitz              * type.  In the future, this should be remedied by correctly typing
334754fd1b0dSMax Reitz              * all options.  For now, this is not too big of an issue because
334854fd1b0dSMax Reitz              * the user can simply omit options which cannot be changed anyway,
334954fd1b0dSMax Reitz              * so they will stay unchanged.
335054fd1b0dSMax Reitz              */
335154fd1b0dSMax Reitz             if (!qobject_is_equal(new, old)) {
33524d2cb092SKevin Wolf                 error_setg(errp, "Cannot change the option '%s'", entry->key);
33534d2cb092SKevin Wolf                 ret = -EINVAL;
33544d2cb092SKevin Wolf                 goto error;
33554d2cb092SKevin Wolf             }
33564d2cb092SKevin Wolf         } while ((entry = qdict_next(reopen_state->options, entry)));
33574d2cb092SKevin Wolf     }
33584d2cb092SKevin Wolf 
335930450259SKevin Wolf     ret = bdrv_check_perm(reopen_state->bs, queue, reopen_state->perm,
336030450259SKevin Wolf                           reopen_state->shared_perm, NULL, errp);
336130450259SKevin Wolf     if (ret < 0) {
336230450259SKevin Wolf         goto error;
336330450259SKevin Wolf     }
336430450259SKevin Wolf 
3365e971aa12SJeff Cody     ret = 0;
3366e971aa12SJeff Cody 
33674c8350feSAlberto Garcia     /* Restore the original reopen_state->options QDict */
33684c8350feSAlberto Garcia     qobject_unref(reopen_state->options);
33694c8350feSAlberto Garcia     reopen_state->options = qobject_ref(orig_reopen_opts);
33704c8350feSAlberto Garcia 
3371e971aa12SJeff Cody error:
33729ad08c44SMax Reitz     if (ret < 0 && drv_prepared) {
33739ad08c44SMax Reitz         /* drv->bdrv_reopen_prepare() has succeeded, so we need to
33749ad08c44SMax Reitz          * call drv->bdrv_reopen_abort() before signaling an error
33759ad08c44SMax Reitz          * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
33769ad08c44SMax Reitz          * when the respective bdrv_reopen_prepare() has failed) */
33779ad08c44SMax Reitz         if (drv->bdrv_reopen_abort) {
33789ad08c44SMax Reitz             drv->bdrv_reopen_abort(reopen_state);
33799ad08c44SMax Reitz         }
33809ad08c44SMax Reitz     }
3381ccf9dc07SKevin Wolf     qemu_opts_del(opts);
33824c8350feSAlberto Garcia     qobject_unref(orig_reopen_opts);
3383593b3071SAlberto Garcia     g_free(discard);
3384e971aa12SJeff Cody     return ret;
3385e971aa12SJeff Cody }
3386e971aa12SJeff Cody 
3387e971aa12SJeff Cody /*
3388e971aa12SJeff Cody  * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
3389e971aa12SJeff Cody  * makes them final by swapping the staging BlockDriverState contents into
3390e971aa12SJeff Cody  * the active BlockDriverState contents.
3391e971aa12SJeff Cody  */
3392e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state)
3393e971aa12SJeff Cody {
3394e971aa12SJeff Cody     BlockDriver *drv;
339550bf65baSVladimir Sementsov-Ogievskiy     BlockDriverState *bs;
339650196d7aSAlberto Garcia     BdrvChild *child;
3397cb9ff6c2SVladimir Sementsov-Ogievskiy     bool old_can_write, new_can_write;
3398e971aa12SJeff Cody 
3399e971aa12SJeff Cody     assert(reopen_state != NULL);
340050bf65baSVladimir Sementsov-Ogievskiy     bs = reopen_state->bs;
340150bf65baSVladimir Sementsov-Ogievskiy     drv = bs->drv;
3402e971aa12SJeff Cody     assert(drv != NULL);
3403e971aa12SJeff Cody 
3404cb9ff6c2SVladimir Sementsov-Ogievskiy     old_can_write =
3405cb9ff6c2SVladimir Sementsov-Ogievskiy         !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3406cb9ff6c2SVladimir Sementsov-Ogievskiy 
3407e971aa12SJeff Cody     /* If there are any driver level actions to take */
3408e971aa12SJeff Cody     if (drv->bdrv_reopen_commit) {
3409e971aa12SJeff Cody         drv->bdrv_reopen_commit(reopen_state);
3410e971aa12SJeff Cody     }
3411e971aa12SJeff Cody 
3412e971aa12SJeff Cody     /* set BDS specific flags now */
3413cb3e7f08SMarc-André Lureau     qobject_unref(bs->explicit_options);
34144c8350feSAlberto Garcia     qobject_unref(bs->options);
3415145f598eSKevin Wolf 
341650bf65baSVladimir Sementsov-Ogievskiy     bs->explicit_options   = reopen_state->explicit_options;
34174c8350feSAlberto Garcia     bs->options            = reopen_state->options;
341850bf65baSVladimir Sementsov-Ogievskiy     bs->open_flags         = reopen_state->flags;
341950bf65baSVladimir Sementsov-Ogievskiy     bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
3420543770bdSAlberto Garcia     bs->detect_zeroes      = reopen_state->detect_zeroes;
3421355ef4acSKevin Wolf 
342250196d7aSAlberto Garcia     /* Remove child references from bs->options and bs->explicit_options.
342350196d7aSAlberto Garcia      * Child options were already removed in bdrv_reopen_queue_child() */
342450196d7aSAlberto Garcia     QLIST_FOREACH(child, &bs->children, next) {
342550196d7aSAlberto Garcia         qdict_del(bs->explicit_options, child->name);
342650196d7aSAlberto Garcia         qdict_del(bs->options, child->name);
342750196d7aSAlberto Garcia     }
342850196d7aSAlberto Garcia 
342950bf65baSVladimir Sementsov-Ogievskiy     bdrv_refresh_limits(bs, NULL);
3430cb9ff6c2SVladimir Sementsov-Ogievskiy 
343130450259SKevin Wolf     bdrv_set_perm(reopen_state->bs, reopen_state->perm,
343230450259SKevin Wolf                   reopen_state->shared_perm);
343330450259SKevin Wolf 
3434cb9ff6c2SVladimir Sementsov-Ogievskiy     new_can_write =
3435cb9ff6c2SVladimir Sementsov-Ogievskiy         !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3436cb9ff6c2SVladimir Sementsov-Ogievskiy     if (!old_can_write && new_can_write && drv->bdrv_reopen_bitmaps_rw) {
3437cb9ff6c2SVladimir Sementsov-Ogievskiy         Error *local_err = NULL;
3438cb9ff6c2SVladimir Sementsov-Ogievskiy         if (drv->bdrv_reopen_bitmaps_rw(bs, &local_err) < 0) {
3439cb9ff6c2SVladimir Sementsov-Ogievskiy             /* This is not fatal, bitmaps just left read-only, so all following
3440cb9ff6c2SVladimir Sementsov-Ogievskiy              * writes will fail. User can remove read-only bitmaps to unblock
3441cb9ff6c2SVladimir Sementsov-Ogievskiy              * writes.
3442cb9ff6c2SVladimir Sementsov-Ogievskiy              */
3443cb9ff6c2SVladimir Sementsov-Ogievskiy             error_reportf_err(local_err,
3444cb9ff6c2SVladimir Sementsov-Ogievskiy                               "%s: Failed to make dirty bitmaps writable: ",
3445cb9ff6c2SVladimir Sementsov-Ogievskiy                               bdrv_get_node_name(bs));
3446cb9ff6c2SVladimir Sementsov-Ogievskiy         }
3447cb9ff6c2SVladimir Sementsov-Ogievskiy     }
3448e971aa12SJeff Cody }
3449e971aa12SJeff Cody 
3450e971aa12SJeff Cody /*
3451e971aa12SJeff Cody  * Abort the reopen, and delete and free the staged changes in
3452e971aa12SJeff Cody  * reopen_state
3453e971aa12SJeff Cody  */
3454e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state)
3455e971aa12SJeff Cody {
3456e971aa12SJeff Cody     BlockDriver *drv;
3457e971aa12SJeff Cody 
3458e971aa12SJeff Cody     assert(reopen_state != NULL);
3459e971aa12SJeff Cody     drv = reopen_state->bs->drv;
3460e971aa12SJeff Cody     assert(drv != NULL);
3461e971aa12SJeff Cody 
3462e971aa12SJeff Cody     if (drv->bdrv_reopen_abort) {
3463e971aa12SJeff Cody         drv->bdrv_reopen_abort(reopen_state);
3464e971aa12SJeff Cody     }
3465145f598eSKevin Wolf 
346630450259SKevin Wolf     bdrv_abort_perm_update(reopen_state->bs);
3467e971aa12SJeff Cody }
3468e971aa12SJeff Cody 
3469e971aa12SJeff Cody 
347064dff520SMax Reitz static void bdrv_close(BlockDriverState *bs)
3471fc01f7e7Sbellard {
347233384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
347350a3efb0SAlberto Garcia     BdrvChild *child, *next;
347433384421SMax Reitz 
3475ca9bd24cSMax Reitz     assert(!bs->job);
347630f55fb8SMax Reitz     assert(!bs->refcnt);
347799b7e775SAlberto Garcia 
3478fc27291dSPaolo Bonzini     bdrv_drained_begin(bs); /* complete I/O */
347958fda173SStefan Hajnoczi     bdrv_flush(bs);
348053ec73e2SFam Zheng     bdrv_drain(bs); /* in case flush left pending I/O */
3481fc27291dSPaolo Bonzini 
34823cbc002cSPaolo Bonzini     if (bs->drv) {
34833c005293SVladimir Sementsov-Ogievskiy         if (bs->drv->bdrv_close) {
34849a7dedbcSKevin Wolf             bs->drv->bdrv_close(bs);
34853c005293SVladimir Sementsov-Ogievskiy         }
34869a4f4c31SKevin Wolf         bs->drv = NULL;
348750a3efb0SAlberto Garcia     }
34889a7dedbcSKevin Wolf 
348912fa4af6SKevin Wolf     bdrv_set_backing_hd(bs, NULL, &error_abort);
34909a7dedbcSKevin Wolf 
34919a4f4c31SKevin Wolf     if (bs->file != NULL) {
34929a4f4c31SKevin Wolf         bdrv_unref_child(bs, bs->file);
34939a4f4c31SKevin Wolf         bs->file = NULL;
34949a4f4c31SKevin Wolf     }
34959a4f4c31SKevin Wolf 
34966e93e7c4SKevin Wolf     QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
349733a60407SKevin Wolf         /* TODO Remove bdrv_unref() from drivers' close function and use
349833a60407SKevin Wolf          * bdrv_unref_child() here */
3499bddcec37SKevin Wolf         if (child->bs->inherits_from == bs) {
3500bddcec37SKevin Wolf             child->bs->inherits_from = NULL;
3501bddcec37SKevin Wolf         }
350233a60407SKevin Wolf         bdrv_detach_child(child);
35036e93e7c4SKevin Wolf     }
35046e93e7c4SKevin Wolf 
35057267c094SAnthony Liguori     g_free(bs->opaque);
3506ea2384d3Sbellard     bs->opaque = NULL;
3507d3faa13eSPaolo Bonzini     atomic_set(&bs->copy_on_read, 0);
3508a275fa42SPaolo Bonzini     bs->backing_file[0] = '\0';
3509a275fa42SPaolo Bonzini     bs->backing_format[0] = '\0';
35106405875cSPaolo Bonzini     bs->total_sectors = 0;
351154115412SEric Blake     bs->encrypted = false;
351254115412SEric Blake     bs->sg = false;
3513cb3e7f08SMarc-André Lureau     qobject_unref(bs->options);
3514cb3e7f08SMarc-André Lureau     qobject_unref(bs->explicit_options);
3515de9c0cecSKevin Wolf     bs->options = NULL;
3516998cbd6aSManos Pitsidianakis     bs->explicit_options = NULL;
3517cb3e7f08SMarc-André Lureau     qobject_unref(bs->full_open_options);
351891af7014SMax Reitz     bs->full_open_options = NULL;
351966f82ceeSKevin Wolf 
3520cca43ae1SVladimir Sementsov-Ogievskiy     bdrv_release_named_dirty_bitmaps(bs);
3521cca43ae1SVladimir Sementsov-Ogievskiy     assert(QLIST_EMPTY(&bs->dirty_bitmaps));
3522cca43ae1SVladimir Sementsov-Ogievskiy 
352333384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
352433384421SMax Reitz         g_free(ban);
352533384421SMax Reitz     }
352633384421SMax Reitz     QLIST_INIT(&bs->aio_notifiers);
3527fc27291dSPaolo Bonzini     bdrv_drained_end(bs);
3528b338082bSbellard }
3529b338082bSbellard 
35302bc93fedSMORITA Kazutaka void bdrv_close_all(void)
35312bc93fedSMORITA Kazutaka {
3532b3b5299dSKevin Wolf     assert(job_next(NULL) == NULL);
3533cd7fca95SKevin Wolf     nbd_export_close_all();
35342bc93fedSMORITA Kazutaka 
3535ca9bd24cSMax Reitz     /* Drop references from requests still in flight, such as canceled block
3536ca9bd24cSMax Reitz      * jobs whose AIO context has not been polled yet */
3537ca9bd24cSMax Reitz     bdrv_drain_all();
3538ca9bd24cSMax Reitz 
3539ca9bd24cSMax Reitz     blk_remove_all_bs();
3540ca9bd24cSMax Reitz     blockdev_close_all_bdrv_states();
3541ca9bd24cSMax Reitz 
3542a1a2af07SKevin Wolf     assert(QTAILQ_EMPTY(&all_bdrv_states));
35432bc93fedSMORITA Kazutaka }
35442bc93fedSMORITA Kazutaka 
3545d0ac0380SKevin Wolf static bool should_update_child(BdrvChild *c, BlockDriverState *to)
3546dd62f1caSKevin Wolf {
3547d0ac0380SKevin Wolf     BdrvChild *to_c;
3548dd62f1caSKevin Wolf 
354926de9438SKevin Wolf     if (c->role->stay_at_node) {
3550d0ac0380SKevin Wolf         return false;
355126de9438SKevin Wolf     }
3552d0ac0380SKevin Wolf 
3553ec9f10feSMax Reitz     /* If the child @c belongs to the BDS @to, replacing the current
3554ec9f10feSMax Reitz      * c->bs by @to would mean to create a loop.
3555ec9f10feSMax Reitz      *
3556ec9f10feSMax Reitz      * Such a case occurs when appending a BDS to a backing chain.
3557ec9f10feSMax Reitz      * For instance, imagine the following chain:
3558ec9f10feSMax Reitz      *
3559ec9f10feSMax Reitz      *   guest device -> node A -> further backing chain...
3560ec9f10feSMax Reitz      *
3561ec9f10feSMax Reitz      * Now we create a new BDS B which we want to put on top of this
3562ec9f10feSMax Reitz      * chain, so we first attach A as its backing node:
3563ec9f10feSMax Reitz      *
3564ec9f10feSMax Reitz      *                   node B
3565ec9f10feSMax Reitz      *                     |
3566ec9f10feSMax Reitz      *                     v
3567ec9f10feSMax Reitz      *   guest device -> node A -> further backing chain...
3568ec9f10feSMax Reitz      *
3569ec9f10feSMax Reitz      * Finally we want to replace A by B.  When doing that, we want to
3570ec9f10feSMax Reitz      * replace all pointers to A by pointers to B -- except for the
3571ec9f10feSMax Reitz      * pointer from B because (1) that would create a loop, and (2)
3572ec9f10feSMax Reitz      * that pointer should simply stay intact:
3573ec9f10feSMax Reitz      *
3574ec9f10feSMax Reitz      *   guest device -> node B
3575ec9f10feSMax Reitz      *                     |
3576ec9f10feSMax Reitz      *                     v
3577ec9f10feSMax Reitz      *                   node A -> further backing chain...
3578ec9f10feSMax Reitz      *
3579ec9f10feSMax Reitz      * In general, when replacing a node A (c->bs) by a node B (@to),
3580ec9f10feSMax Reitz      * if A is a child of B, that means we cannot replace A by B there
3581ec9f10feSMax Reitz      * because that would create a loop.  Silently detaching A from B
3582ec9f10feSMax Reitz      * is also not really an option.  So overall just leaving A in
3583ec9f10feSMax Reitz      * place there is the most sensible choice. */
35849bd910e2SMax Reitz     QLIST_FOREACH(to_c, &to->children, next) {
35859bd910e2SMax Reitz         if (to_c == c) {
3586d0ac0380SKevin Wolf             return false;
35879bd910e2SMax Reitz         }
35889bd910e2SMax Reitz     }
35899bd910e2SMax Reitz 
3590d0ac0380SKevin Wolf     return true;
3591d0ac0380SKevin Wolf }
3592d0ac0380SKevin Wolf 
35935fe31c25SKevin Wolf void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
35945fe31c25SKevin Wolf                        Error **errp)
3595d0ac0380SKevin Wolf {
3596d0ac0380SKevin Wolf     BdrvChild *c, *next;
3597234ac1a9SKevin Wolf     GSList *list = NULL, *p;
3598234ac1a9SKevin Wolf     uint64_t old_perm, old_shared;
3599234ac1a9SKevin Wolf     uint64_t perm = 0, shared = BLK_PERM_ALL;
3600234ac1a9SKevin Wolf     int ret;
3601d0ac0380SKevin Wolf 
36025fe31c25SKevin Wolf     assert(!atomic_read(&from->in_flight));
36035fe31c25SKevin Wolf     assert(!atomic_read(&to->in_flight));
36045fe31c25SKevin Wolf 
3605234ac1a9SKevin Wolf     /* Make sure that @from doesn't go away until we have successfully attached
3606234ac1a9SKevin Wolf      * all of its parents to @to. */
3607234ac1a9SKevin Wolf     bdrv_ref(from);
3608234ac1a9SKevin Wolf 
3609234ac1a9SKevin Wolf     /* Put all parents into @list and calculate their cumulative permissions */
3610d0ac0380SKevin Wolf     QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
3611ec9f10feSMax Reitz         assert(c->bs == from);
3612d0ac0380SKevin Wolf         if (!should_update_child(c, to)) {
3613d0ac0380SKevin Wolf             continue;
3614d0ac0380SKevin Wolf         }
3615234ac1a9SKevin Wolf         list = g_slist_prepend(list, c);
3616234ac1a9SKevin Wolf         perm |= c->perm;
3617234ac1a9SKevin Wolf         shared &= c->shared_perm;
3618234ac1a9SKevin Wolf     }
3619234ac1a9SKevin Wolf 
3620234ac1a9SKevin Wolf     /* Check whether the required permissions can be granted on @to, ignoring
3621234ac1a9SKevin Wolf      * all BdrvChild in @list so that they can't block themselves. */
36223121fb45SKevin Wolf     ret = bdrv_check_update_perm(to, NULL, perm, shared, list, errp);
3623234ac1a9SKevin Wolf     if (ret < 0) {
3624234ac1a9SKevin Wolf         bdrv_abort_perm_update(to);
3625234ac1a9SKevin Wolf         goto out;
3626234ac1a9SKevin Wolf     }
3627234ac1a9SKevin Wolf 
3628234ac1a9SKevin Wolf     /* Now actually perform the change. We performed the permission check for
3629234ac1a9SKevin Wolf      * all elements of @list at once, so set the permissions all at once at the
3630234ac1a9SKevin Wolf      * very end. */
3631234ac1a9SKevin Wolf     for (p = list; p != NULL; p = p->next) {
3632234ac1a9SKevin Wolf         c = p->data;
3633d0ac0380SKevin Wolf 
3634dd62f1caSKevin Wolf         bdrv_ref(to);
3635234ac1a9SKevin Wolf         bdrv_replace_child_noperm(c, to);
3636dd62f1caSKevin Wolf         bdrv_unref(from);
3637dd62f1caSKevin Wolf     }
3638234ac1a9SKevin Wolf 
3639234ac1a9SKevin Wolf     bdrv_get_cumulative_perm(to, &old_perm, &old_shared);
3640234ac1a9SKevin Wolf     bdrv_set_perm(to, old_perm | perm, old_shared | shared);
3641234ac1a9SKevin Wolf 
3642234ac1a9SKevin Wolf out:
3643234ac1a9SKevin Wolf     g_slist_free(list);
3644234ac1a9SKevin Wolf     bdrv_unref(from);
3645dd62f1caSKevin Wolf }
3646dd62f1caSKevin Wolf 
36478802d1fdSJeff Cody /*
36488802d1fdSJeff Cody  * Add new bs contents at the top of an image chain while the chain is
36498802d1fdSJeff Cody  * live, while keeping required fields on the top layer.
36508802d1fdSJeff Cody  *
36518802d1fdSJeff Cody  * This will modify the BlockDriverState fields, and swap contents
36528802d1fdSJeff Cody  * between bs_new and bs_top. Both bs_new and bs_top are modified.
36538802d1fdSJeff Cody  *
3654bfb197e0SMarkus Armbruster  * bs_new must not be attached to a BlockBackend.
3655f6801b83SJeff Cody  *
36568802d1fdSJeff Cody  * This function does not create any image files.
3657dd62f1caSKevin Wolf  *
3658dd62f1caSKevin Wolf  * bdrv_append() takes ownership of a bs_new reference and unrefs it because
3659dd62f1caSKevin Wolf  * that's what the callers commonly need. bs_new will be referenced by the old
3660dd62f1caSKevin Wolf  * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
3661dd62f1caSKevin Wolf  * reference of its own, it must call bdrv_ref().
36628802d1fdSJeff Cody  */
3663b2c2832cSKevin Wolf void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
3664b2c2832cSKevin Wolf                  Error **errp)
36658802d1fdSJeff Cody {
3666b2c2832cSKevin Wolf     Error *local_err = NULL;
3667b2c2832cSKevin Wolf 
3668b2c2832cSKevin Wolf     bdrv_set_backing_hd(bs_new, bs_top, &local_err);
3669b2c2832cSKevin Wolf     if (local_err) {
3670b2c2832cSKevin Wolf         error_propagate(errp, local_err);
3671b2c2832cSKevin Wolf         goto out;
3672b2c2832cSKevin Wolf     }
3673dd62f1caSKevin Wolf 
36745fe31c25SKevin Wolf     bdrv_replace_node(bs_top, bs_new, &local_err);
3675234ac1a9SKevin Wolf     if (local_err) {
3676234ac1a9SKevin Wolf         error_propagate(errp, local_err);
3677234ac1a9SKevin Wolf         bdrv_set_backing_hd(bs_new, NULL, &error_abort);
3678234ac1a9SKevin Wolf         goto out;
3679234ac1a9SKevin Wolf     }
3680dd62f1caSKevin Wolf 
3681dd62f1caSKevin Wolf     /* bs_new is now referenced by its new parents, we don't need the
3682dd62f1caSKevin Wolf      * additional reference any more. */
3683b2c2832cSKevin Wolf out:
3684dd62f1caSKevin Wolf     bdrv_unref(bs_new);
36858802d1fdSJeff Cody }
36868802d1fdSJeff Cody 
36874f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs)
3688b338082bSbellard {
36893e914655SPaolo Bonzini     assert(!bs->job);
36903718d8abSFam Zheng     assert(bdrv_op_blocker_is_empty(bs));
36914f6fd349SFam Zheng     assert(!bs->refcnt);
369218846deeSMarkus Armbruster 
3693e1b5c52eSStefan Hajnoczi     bdrv_close(bs);
3694e1b5c52eSStefan Hajnoczi 
36951b7bdbc1SStefan Hajnoczi     /* remove from list, if necessary */
369663eaaae0SKevin Wolf     if (bs->node_name[0] != '\0') {
369763eaaae0SKevin Wolf         QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
369863eaaae0SKevin Wolf     }
36992c1d04e0SMax Reitz     QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
37002c1d04e0SMax Reitz 
37017267c094SAnthony Liguori     g_free(bs);
3702fc01f7e7Sbellard }
3703fc01f7e7Sbellard 
3704e97fc193Saliguori /*
3705e97fc193Saliguori  * Run consistency checks on an image
3706e97fc193Saliguori  *
3707e076f338SKevin Wolf  * Returns 0 if the check could be completed (it doesn't mean that the image is
3708a1c7273bSStefan Weil  * free of errors) or -errno when an internal error occurred. The results of the
3709e076f338SKevin Wolf  * check are stored in res.
3710e97fc193Saliguori  */
37112fd61638SPaolo Bonzini static int coroutine_fn bdrv_co_check(BlockDriverState *bs,
37122fd61638SPaolo Bonzini                                       BdrvCheckResult *res, BdrvCheckMode fix)
3713e97fc193Saliguori {
3714908bcd54SMax Reitz     if (bs->drv == NULL) {
3715908bcd54SMax Reitz         return -ENOMEDIUM;
3716908bcd54SMax Reitz     }
37172fd61638SPaolo Bonzini     if (bs->drv->bdrv_co_check == NULL) {
3718e97fc193Saliguori         return -ENOTSUP;
3719e97fc193Saliguori     }
3720e97fc193Saliguori 
3721e076f338SKevin Wolf     memset(res, 0, sizeof(*res));
37222fd61638SPaolo Bonzini     return bs->drv->bdrv_co_check(bs, res, fix);
37232fd61638SPaolo Bonzini }
37242fd61638SPaolo Bonzini 
37252fd61638SPaolo Bonzini typedef struct CheckCo {
37262fd61638SPaolo Bonzini     BlockDriverState *bs;
37272fd61638SPaolo Bonzini     BdrvCheckResult *res;
37282fd61638SPaolo Bonzini     BdrvCheckMode fix;
37292fd61638SPaolo Bonzini     int ret;
37302fd61638SPaolo Bonzini } CheckCo;
37312fd61638SPaolo Bonzini 
37322fd61638SPaolo Bonzini static void bdrv_check_co_entry(void *opaque)
37332fd61638SPaolo Bonzini {
37342fd61638SPaolo Bonzini     CheckCo *cco = opaque;
37352fd61638SPaolo Bonzini     cco->ret = bdrv_co_check(cco->bs, cco->res, cco->fix);
37362fd61638SPaolo Bonzini }
37372fd61638SPaolo Bonzini 
37382fd61638SPaolo Bonzini int bdrv_check(BlockDriverState *bs,
37392fd61638SPaolo Bonzini                BdrvCheckResult *res, BdrvCheckMode fix)
37402fd61638SPaolo Bonzini {
37412fd61638SPaolo Bonzini     Coroutine *co;
37422fd61638SPaolo Bonzini     CheckCo cco = {
37432fd61638SPaolo Bonzini         .bs = bs,
37442fd61638SPaolo Bonzini         .res = res,
37452fd61638SPaolo Bonzini         .ret = -EINPROGRESS,
37462fd61638SPaolo Bonzini         .fix = fix,
37472fd61638SPaolo Bonzini     };
37482fd61638SPaolo Bonzini 
37492fd61638SPaolo Bonzini     if (qemu_in_coroutine()) {
37502fd61638SPaolo Bonzini         /* Fast-path if already in coroutine context */
37512fd61638SPaolo Bonzini         bdrv_check_co_entry(&cco);
37522fd61638SPaolo Bonzini     } else {
37532fd61638SPaolo Bonzini         co = qemu_coroutine_create(bdrv_check_co_entry, &cco);
37542fd61638SPaolo Bonzini         qemu_coroutine_enter(co);
37552fd61638SPaolo Bonzini         BDRV_POLL_WHILE(bs, cco.ret == -EINPROGRESS);
37562fd61638SPaolo Bonzini     }
37572fd61638SPaolo Bonzini 
37582fd61638SPaolo Bonzini     return cco.ret;
3759e97fc193Saliguori }
3760e97fc193Saliguori 
3761756e6736SKevin Wolf /*
3762756e6736SKevin Wolf  * Return values:
3763756e6736SKevin Wolf  * 0        - success
3764756e6736SKevin Wolf  * -EINVAL  - backing format specified, but no file
3765756e6736SKevin Wolf  * -ENOSPC  - can't update the backing file because no space is left in the
3766756e6736SKevin Wolf  *            image file header
3767756e6736SKevin Wolf  * -ENOTSUP - format driver doesn't support changing the backing file
3768756e6736SKevin Wolf  */
3769756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs,
3770756e6736SKevin Wolf     const char *backing_file, const char *backing_fmt)
3771756e6736SKevin Wolf {
3772756e6736SKevin Wolf     BlockDriver *drv = bs->drv;
3773469ef350SPaolo Bonzini     int ret;
3774756e6736SKevin Wolf 
3775d470ad42SMax Reitz     if (!drv) {
3776d470ad42SMax Reitz         return -ENOMEDIUM;
3777d470ad42SMax Reitz     }
3778d470ad42SMax Reitz 
37795f377794SPaolo Bonzini     /* Backing file format doesn't make sense without a backing file */
37805f377794SPaolo Bonzini     if (backing_fmt && !backing_file) {
37815f377794SPaolo Bonzini         return -EINVAL;
37825f377794SPaolo Bonzini     }
37835f377794SPaolo Bonzini 
3784756e6736SKevin Wolf     if (drv->bdrv_change_backing_file != NULL) {
3785469ef350SPaolo Bonzini         ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
3786756e6736SKevin Wolf     } else {
3787469ef350SPaolo Bonzini         ret = -ENOTSUP;
3788756e6736SKevin Wolf     }
3789469ef350SPaolo Bonzini 
3790469ef350SPaolo Bonzini     if (ret == 0) {
3791469ef350SPaolo Bonzini         pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
3792469ef350SPaolo Bonzini         pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
3793469ef350SPaolo Bonzini     }
3794469ef350SPaolo Bonzini     return ret;
3795756e6736SKevin Wolf }
3796756e6736SKevin Wolf 
37976ebdcee2SJeff Cody /*
37986ebdcee2SJeff Cody  * Finds the image layer in the chain that has 'bs' as its backing file.
37996ebdcee2SJeff Cody  *
38006ebdcee2SJeff Cody  * active is the current topmost image.
38016ebdcee2SJeff Cody  *
38026ebdcee2SJeff Cody  * Returns NULL if bs is not found in active's image chain,
38036ebdcee2SJeff Cody  * or if active == bs.
38044caf0fcdSJeff Cody  *
38054caf0fcdSJeff Cody  * Returns the bottommost base image if bs == NULL.
38066ebdcee2SJeff Cody  */
38076ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
38086ebdcee2SJeff Cody                                     BlockDriverState *bs)
38096ebdcee2SJeff Cody {
3810760e0063SKevin Wolf     while (active && bs != backing_bs(active)) {
3811760e0063SKevin Wolf         active = backing_bs(active);
38126ebdcee2SJeff Cody     }
38136ebdcee2SJeff Cody 
38144caf0fcdSJeff Cody     return active;
38156ebdcee2SJeff Cody }
38166ebdcee2SJeff Cody 
38174caf0fcdSJeff Cody /* Given a BDS, searches for the base layer. */
38184caf0fcdSJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs)
38194caf0fcdSJeff Cody {
38204caf0fcdSJeff Cody     return bdrv_find_overlay(bs, NULL);
38216ebdcee2SJeff Cody }
38226ebdcee2SJeff Cody 
38236ebdcee2SJeff Cody /*
38246ebdcee2SJeff Cody  * Drops images above 'base' up to and including 'top', and sets the image
38256ebdcee2SJeff Cody  * above 'top' to have base as its backing file.
38266ebdcee2SJeff Cody  *
38276ebdcee2SJeff Cody  * Requires that the overlay to 'top' is opened r/w, so that the backing file
38286ebdcee2SJeff Cody  * information in 'bs' can be properly updated.
38296ebdcee2SJeff Cody  *
38306ebdcee2SJeff Cody  * E.g., this will convert the following chain:
38316ebdcee2SJeff Cody  * bottom <- base <- intermediate <- top <- active
38326ebdcee2SJeff Cody  *
38336ebdcee2SJeff Cody  * to
38346ebdcee2SJeff Cody  *
38356ebdcee2SJeff Cody  * bottom <- base <- active
38366ebdcee2SJeff Cody  *
38376ebdcee2SJeff Cody  * It is allowed for bottom==base, in which case it converts:
38386ebdcee2SJeff Cody  *
38396ebdcee2SJeff Cody  * base <- intermediate <- top <- active
38406ebdcee2SJeff Cody  *
38416ebdcee2SJeff Cody  * to
38426ebdcee2SJeff Cody  *
38436ebdcee2SJeff Cody  * base <- active
38446ebdcee2SJeff Cody  *
384554e26900SJeff Cody  * If backing_file_str is non-NULL, it will be used when modifying top's
384654e26900SJeff Cody  * overlay image metadata.
384754e26900SJeff Cody  *
38486ebdcee2SJeff Cody  * Error conditions:
38496ebdcee2SJeff Cody  *  if active == top, that is considered an error
38506ebdcee2SJeff Cody  *
38516ebdcee2SJeff Cody  */
3852bde70715SKevin Wolf int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
3853bde70715SKevin Wolf                            const char *backing_file_str)
38546ebdcee2SJeff Cody {
38556bd858b3SAlberto Garcia     BlockDriverState *explicit_top = top;
38566bd858b3SAlberto Garcia     bool update_inherits_from;
385761f09ceaSKevin Wolf     BdrvChild *c, *next;
385812fa4af6SKevin Wolf     Error *local_err = NULL;
38596ebdcee2SJeff Cody     int ret = -EIO;
38606ebdcee2SJeff Cody 
38616858eba0SKevin Wolf     bdrv_ref(top);
38626858eba0SKevin Wolf 
38636ebdcee2SJeff Cody     if (!top->drv || !base->drv) {
38646ebdcee2SJeff Cody         goto exit;
38656ebdcee2SJeff Cody     }
38666ebdcee2SJeff Cody 
38675db15a57SKevin Wolf     /* Make sure that base is in the backing chain of top */
38685db15a57SKevin Wolf     if (!bdrv_chain_contains(top, base)) {
38696ebdcee2SJeff Cody         goto exit;
38706ebdcee2SJeff Cody     }
38716ebdcee2SJeff Cody 
38726bd858b3SAlberto Garcia     /* If 'base' recursively inherits from 'top' then we should set
38736bd858b3SAlberto Garcia      * base->inherits_from to top->inherits_from after 'top' and all
38746bd858b3SAlberto Garcia      * other intermediate nodes have been dropped.
38756bd858b3SAlberto Garcia      * If 'top' is an implicit node (e.g. "commit_top") we should skip
38766bd858b3SAlberto Garcia      * it because no one inherits from it. We use explicit_top for that. */
38776bd858b3SAlberto Garcia     while (explicit_top && explicit_top->implicit) {
38786bd858b3SAlberto Garcia         explicit_top = backing_bs(explicit_top);
38796bd858b3SAlberto Garcia     }
38806bd858b3SAlberto Garcia     update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
38816bd858b3SAlberto Garcia 
38826ebdcee2SJeff Cody     /* success - we can delete the intermediate states, and link top->base */
3883bde70715SKevin Wolf     /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
3884bde70715SKevin Wolf      * we've figured out how they should work. */
38855db15a57SKevin Wolf     backing_file_str = backing_file_str ? backing_file_str : base->filename;
388612fa4af6SKevin Wolf 
388761f09ceaSKevin Wolf     QLIST_FOREACH_SAFE(c, &top->parents, next_parent, next) {
388861f09ceaSKevin Wolf         /* Check whether we are allowed to switch c from top to base */
388961f09ceaSKevin Wolf         GSList *ignore_children = g_slist_prepend(NULL, c);
389061f09ceaSKevin Wolf         bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm,
389161f09ceaSKevin Wolf                                ignore_children, &local_err);
38922c860e79SFam Zheng         g_slist_free(ignore_children);
389312fa4af6SKevin Wolf         if (local_err) {
389412fa4af6SKevin Wolf             ret = -EPERM;
389512fa4af6SKevin Wolf             error_report_err(local_err);
389612fa4af6SKevin Wolf             goto exit;
389712fa4af6SKevin Wolf         }
389861f09ceaSKevin Wolf 
389961f09ceaSKevin Wolf         /* If so, update the backing file path in the image file */
390061f09ceaSKevin Wolf         if (c->role->update_filename) {
390161f09ceaSKevin Wolf             ret = c->role->update_filename(c, base, backing_file_str,
390261f09ceaSKevin Wolf                                            &local_err);
390361f09ceaSKevin Wolf             if (ret < 0) {
390461f09ceaSKevin Wolf                 bdrv_abort_perm_update(base);
390561f09ceaSKevin Wolf                 error_report_err(local_err);
390661f09ceaSKevin Wolf                 goto exit;
390761f09ceaSKevin Wolf             }
390861f09ceaSKevin Wolf         }
390961f09ceaSKevin Wolf 
391061f09ceaSKevin Wolf         /* Do the actual switch in the in-memory graph.
391161f09ceaSKevin Wolf          * Completes bdrv_check_update_perm() transaction internally. */
391261f09ceaSKevin Wolf         bdrv_ref(base);
391361f09ceaSKevin Wolf         bdrv_replace_child(c, base);
391461f09ceaSKevin Wolf         bdrv_unref(top);
391561f09ceaSKevin Wolf     }
39166ebdcee2SJeff Cody 
39176bd858b3SAlberto Garcia     if (update_inherits_from) {
39186bd858b3SAlberto Garcia         base->inherits_from = explicit_top->inherits_from;
39196bd858b3SAlberto Garcia     }
39206bd858b3SAlberto Garcia 
39216ebdcee2SJeff Cody     ret = 0;
39226ebdcee2SJeff Cody exit:
39236858eba0SKevin Wolf     bdrv_unref(top);
39246ebdcee2SJeff Cody     return ret;
39256ebdcee2SJeff Cody }
39266ebdcee2SJeff Cody 
392783f64091Sbellard /**
39284a1d5e1fSFam Zheng  * Length of a allocated file in bytes. Sparse files are counted by actual
39294a1d5e1fSFam Zheng  * allocated space. Return < 0 if error or unknown.
39304a1d5e1fSFam Zheng  */
39314a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
39324a1d5e1fSFam Zheng {
39334a1d5e1fSFam Zheng     BlockDriver *drv = bs->drv;
39344a1d5e1fSFam Zheng     if (!drv) {
39354a1d5e1fSFam Zheng         return -ENOMEDIUM;
39364a1d5e1fSFam Zheng     }
39374a1d5e1fSFam Zheng     if (drv->bdrv_get_allocated_file_size) {
39384a1d5e1fSFam Zheng         return drv->bdrv_get_allocated_file_size(bs);
39394a1d5e1fSFam Zheng     }
39404a1d5e1fSFam Zheng     if (bs->file) {
39419a4f4c31SKevin Wolf         return bdrv_get_allocated_file_size(bs->file->bs);
39424a1d5e1fSFam Zheng     }
39434a1d5e1fSFam Zheng     return -ENOTSUP;
39444a1d5e1fSFam Zheng }
39454a1d5e1fSFam Zheng 
394690880ff1SStefan Hajnoczi /*
394790880ff1SStefan Hajnoczi  * bdrv_measure:
394890880ff1SStefan Hajnoczi  * @drv: Format driver
394990880ff1SStefan Hajnoczi  * @opts: Creation options for new image
395090880ff1SStefan Hajnoczi  * @in_bs: Existing image containing data for new image (may be NULL)
395190880ff1SStefan Hajnoczi  * @errp: Error object
395290880ff1SStefan Hajnoczi  * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
395390880ff1SStefan Hajnoczi  *          or NULL on error
395490880ff1SStefan Hajnoczi  *
395590880ff1SStefan Hajnoczi  * Calculate file size required to create a new image.
395690880ff1SStefan Hajnoczi  *
395790880ff1SStefan Hajnoczi  * If @in_bs is given then space for allocated clusters and zero clusters
395890880ff1SStefan Hajnoczi  * from that image are included in the calculation.  If @opts contains a
395990880ff1SStefan Hajnoczi  * backing file that is shared by @in_bs then backing clusters may be omitted
396090880ff1SStefan Hajnoczi  * from the calculation.
396190880ff1SStefan Hajnoczi  *
396290880ff1SStefan Hajnoczi  * If @in_bs is NULL then the calculation includes no allocated clusters
396390880ff1SStefan Hajnoczi  * unless a preallocation option is given in @opts.
396490880ff1SStefan Hajnoczi  *
396590880ff1SStefan Hajnoczi  * Note that @in_bs may use a different BlockDriver from @drv.
396690880ff1SStefan Hajnoczi  *
396790880ff1SStefan Hajnoczi  * If an error occurs the @errp pointer is set.
396890880ff1SStefan Hajnoczi  */
396990880ff1SStefan Hajnoczi BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
397090880ff1SStefan Hajnoczi                                BlockDriverState *in_bs, Error **errp)
397190880ff1SStefan Hajnoczi {
397290880ff1SStefan Hajnoczi     if (!drv->bdrv_measure) {
397390880ff1SStefan Hajnoczi         error_setg(errp, "Block driver '%s' does not support size measurement",
397490880ff1SStefan Hajnoczi                    drv->format_name);
397590880ff1SStefan Hajnoczi         return NULL;
397690880ff1SStefan Hajnoczi     }
397790880ff1SStefan Hajnoczi 
397890880ff1SStefan Hajnoczi     return drv->bdrv_measure(opts, in_bs, errp);
397990880ff1SStefan Hajnoczi }
398090880ff1SStefan Hajnoczi 
39814a1d5e1fSFam Zheng /**
398265a9bb25SMarkus Armbruster  * Return number of sectors on success, -errno on error.
398383f64091Sbellard  */
398465a9bb25SMarkus Armbruster int64_t bdrv_nb_sectors(BlockDriverState *bs)
398583f64091Sbellard {
398683f64091Sbellard     BlockDriver *drv = bs->drv;
398765a9bb25SMarkus Armbruster 
398883f64091Sbellard     if (!drv)
398919cb3738Sbellard         return -ENOMEDIUM;
399051762288SStefan Hajnoczi 
3991b94a2610SKevin Wolf     if (drv->has_variable_length) {
3992b94a2610SKevin Wolf         int ret = refresh_total_sectors(bs, bs->total_sectors);
3993b94a2610SKevin Wolf         if (ret < 0) {
3994b94a2610SKevin Wolf             return ret;
3995fc01f7e7Sbellard         }
399646a4e4e6SStefan Hajnoczi     }
399765a9bb25SMarkus Armbruster     return bs->total_sectors;
399865a9bb25SMarkus Armbruster }
399965a9bb25SMarkus Armbruster 
400065a9bb25SMarkus Armbruster /**
400165a9bb25SMarkus Armbruster  * Return length in bytes on success, -errno on error.
400265a9bb25SMarkus Armbruster  * The length is always a multiple of BDRV_SECTOR_SIZE.
400365a9bb25SMarkus Armbruster  */
400465a9bb25SMarkus Armbruster int64_t bdrv_getlength(BlockDriverState *bs)
400565a9bb25SMarkus Armbruster {
400665a9bb25SMarkus Armbruster     int64_t ret = bdrv_nb_sectors(bs);
400765a9bb25SMarkus Armbruster 
40084a9c9ea0SFam Zheng     ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
400965a9bb25SMarkus Armbruster     return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
401046a4e4e6SStefan Hajnoczi }
4011fc01f7e7Sbellard 
401219cb3738Sbellard /* return 0 as number of sectors if no device present or error */
401396b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
4014fc01f7e7Sbellard {
401565a9bb25SMarkus Armbruster     int64_t nb_sectors = bdrv_nb_sectors(bs);
401665a9bb25SMarkus Armbruster 
401765a9bb25SMarkus Armbruster     *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
4018fc01f7e7Sbellard }
4019cf98951bSbellard 
402054115412SEric Blake bool bdrv_is_sg(BlockDriverState *bs)
4021985a03b0Sths {
4022985a03b0Sths     return bs->sg;
4023985a03b0Sths }
4024985a03b0Sths 
402554115412SEric Blake bool bdrv_is_encrypted(BlockDriverState *bs)
4026ea2384d3Sbellard {
4027760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted) {
402854115412SEric Blake         return true;
4029760e0063SKevin Wolf     }
4030ea2384d3Sbellard     return bs->encrypted;
4031ea2384d3Sbellard }
4032ea2384d3Sbellard 
4033f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs)
4034ea2384d3Sbellard {
4035f8d6bba1SMarkus Armbruster     return bs->drv ? bs->drv->format_name : NULL;
4036ea2384d3Sbellard }
4037ea2384d3Sbellard 
4038ada42401SStefan Hajnoczi static int qsort_strcmp(const void *a, const void *b)
4039ada42401SStefan Hajnoczi {
4040ceff5bd7SMax Reitz     return strcmp(*(char *const *)a, *(char *const *)b);
4041ada42401SStefan Hajnoczi }
4042ada42401SStefan Hajnoczi 
4043ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
4044ea2384d3Sbellard                          void *opaque)
4045ea2384d3Sbellard {
4046ea2384d3Sbellard     BlockDriver *drv;
4047e855e4fbSJeff Cody     int count = 0;
4048ada42401SStefan Hajnoczi     int i;
4049e855e4fbSJeff Cody     const char **formats = NULL;
4050ea2384d3Sbellard 
40518a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv, &bdrv_drivers, list) {
4052e855e4fbSJeff Cody         if (drv->format_name) {
4053e855e4fbSJeff Cody             bool found = false;
4054e855e4fbSJeff Cody             int i = count;
4055e855e4fbSJeff Cody             while (formats && i && !found) {
4056e855e4fbSJeff Cody                 found = !strcmp(formats[--i], drv->format_name);
4057e855e4fbSJeff Cody             }
4058e855e4fbSJeff Cody 
4059e855e4fbSJeff Cody             if (!found) {
40605839e53bSMarkus Armbruster                 formats = g_renew(const char *, formats, count + 1);
4061e855e4fbSJeff Cody                 formats[count++] = drv->format_name;
4062ea2384d3Sbellard             }
4063ea2384d3Sbellard         }
4064e855e4fbSJeff Cody     }
4065ada42401SStefan Hajnoczi 
4066eb0df69fSMax Reitz     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
4067eb0df69fSMax Reitz         const char *format_name = block_driver_modules[i].format_name;
4068eb0df69fSMax Reitz 
4069eb0df69fSMax Reitz         if (format_name) {
4070eb0df69fSMax Reitz             bool found = false;
4071eb0df69fSMax Reitz             int j = count;
4072eb0df69fSMax Reitz 
4073eb0df69fSMax Reitz             while (formats && j && !found) {
4074eb0df69fSMax Reitz                 found = !strcmp(formats[--j], format_name);
4075eb0df69fSMax Reitz             }
4076eb0df69fSMax Reitz 
4077eb0df69fSMax Reitz             if (!found) {
4078eb0df69fSMax Reitz                 formats = g_renew(const char *, formats, count + 1);
4079eb0df69fSMax Reitz                 formats[count++] = format_name;
4080eb0df69fSMax Reitz             }
4081eb0df69fSMax Reitz         }
4082eb0df69fSMax Reitz     }
4083eb0df69fSMax Reitz 
4084ada42401SStefan Hajnoczi     qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
4085ada42401SStefan Hajnoczi 
4086ada42401SStefan Hajnoczi     for (i = 0; i < count; i++) {
4087ada42401SStefan Hajnoczi         it(opaque, formats[i]);
4088ada42401SStefan Hajnoczi     }
4089ada42401SStefan Hajnoczi 
4090e855e4fbSJeff Cody     g_free(formats);
4091e855e4fbSJeff Cody }
4092ea2384d3Sbellard 
4093dc364f4cSBenoît Canet /* This function is to find a node in the bs graph */
4094dc364f4cSBenoît Canet BlockDriverState *bdrv_find_node(const char *node_name)
4095dc364f4cSBenoît Canet {
4096dc364f4cSBenoît Canet     BlockDriverState *bs;
4097dc364f4cSBenoît Canet 
4098dc364f4cSBenoît Canet     assert(node_name);
4099dc364f4cSBenoît Canet 
4100dc364f4cSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
4101dc364f4cSBenoît Canet         if (!strcmp(node_name, bs->node_name)) {
4102dc364f4cSBenoît Canet             return bs;
4103dc364f4cSBenoît Canet         }
4104dc364f4cSBenoît Canet     }
4105dc364f4cSBenoît Canet     return NULL;
4106dc364f4cSBenoît Canet }
4107dc364f4cSBenoît Canet 
4108c13163fbSBenoît Canet /* Put this QMP function here so it can access the static graph_bdrv_states. */
4109d5a8ee60SAlberto Garcia BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
4110c13163fbSBenoît Canet {
4111c13163fbSBenoît Canet     BlockDeviceInfoList *list, *entry;
4112c13163fbSBenoît Canet     BlockDriverState *bs;
4113c13163fbSBenoît Canet 
4114c13163fbSBenoît Canet     list = NULL;
4115c13163fbSBenoît Canet     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
4116c83f9fbaSKevin Wolf         BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp);
4117d5a8ee60SAlberto Garcia         if (!info) {
4118d5a8ee60SAlberto Garcia             qapi_free_BlockDeviceInfoList(list);
4119d5a8ee60SAlberto Garcia             return NULL;
4120d5a8ee60SAlberto Garcia         }
4121c13163fbSBenoît Canet         entry = g_malloc0(sizeof(*entry));
4122d5a8ee60SAlberto Garcia         entry->value = info;
4123c13163fbSBenoît Canet         entry->next = list;
4124c13163fbSBenoît Canet         list = entry;
4125c13163fbSBenoît Canet     }
4126c13163fbSBenoît Canet 
4127c13163fbSBenoît Canet     return list;
4128c13163fbSBenoît Canet }
4129c13163fbSBenoît Canet 
413012d3ba82SBenoît Canet BlockDriverState *bdrv_lookup_bs(const char *device,
413112d3ba82SBenoît Canet                                  const char *node_name,
413212d3ba82SBenoît Canet                                  Error **errp)
413312d3ba82SBenoît Canet {
41347f06d47eSMarkus Armbruster     BlockBackend *blk;
41357f06d47eSMarkus Armbruster     BlockDriverState *bs;
413612d3ba82SBenoît Canet 
413712d3ba82SBenoît Canet     if (device) {
41387f06d47eSMarkus Armbruster         blk = blk_by_name(device);
413912d3ba82SBenoît Canet 
41407f06d47eSMarkus Armbruster         if (blk) {
41419f4ed6fbSAlberto Garcia             bs = blk_bs(blk);
41429f4ed6fbSAlberto Garcia             if (!bs) {
41435433c24fSMax Reitz                 error_setg(errp, "Device '%s' has no medium", device);
41445433c24fSMax Reitz             }
41455433c24fSMax Reitz 
41469f4ed6fbSAlberto Garcia             return bs;
414712d3ba82SBenoît Canet         }
4148dd67fa50SBenoît Canet     }
414912d3ba82SBenoît Canet 
4150dd67fa50SBenoît Canet     if (node_name) {
415112d3ba82SBenoît Canet         bs = bdrv_find_node(node_name);
415212d3ba82SBenoît Canet 
4153dd67fa50SBenoît Canet         if (bs) {
4154dd67fa50SBenoît Canet             return bs;
4155dd67fa50SBenoît Canet         }
415612d3ba82SBenoît Canet     }
415712d3ba82SBenoît Canet 
4158dd67fa50SBenoît Canet     error_setg(errp, "Cannot find device=%s nor node_name=%s",
4159dd67fa50SBenoît Canet                      device ? device : "",
4160dd67fa50SBenoît Canet                      node_name ? node_name : "");
4161dd67fa50SBenoît Canet     return NULL;
416212d3ba82SBenoît Canet }
416312d3ba82SBenoît Canet 
41645a6684d2SJeff Cody /* If 'base' is in the same chain as 'top', return true. Otherwise,
41655a6684d2SJeff Cody  * return false.  If either argument is NULL, return false. */
41665a6684d2SJeff Cody bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
41675a6684d2SJeff Cody {
41685a6684d2SJeff Cody     while (top && top != base) {
4169760e0063SKevin Wolf         top = backing_bs(top);
41705a6684d2SJeff Cody     }
41715a6684d2SJeff Cody 
41725a6684d2SJeff Cody     return top != NULL;
41735a6684d2SJeff Cody }
41745a6684d2SJeff Cody 
417504df765aSFam Zheng BlockDriverState *bdrv_next_node(BlockDriverState *bs)
417604df765aSFam Zheng {
417704df765aSFam Zheng     if (!bs) {
417804df765aSFam Zheng         return QTAILQ_FIRST(&graph_bdrv_states);
417904df765aSFam Zheng     }
418004df765aSFam Zheng     return QTAILQ_NEXT(bs, node_list);
418104df765aSFam Zheng }
418204df765aSFam Zheng 
41830f12264eSKevin Wolf BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
41840f12264eSKevin Wolf {
41850f12264eSKevin Wolf     if (!bs) {
41860f12264eSKevin Wolf         return QTAILQ_FIRST(&all_bdrv_states);
41870f12264eSKevin Wolf     }
41880f12264eSKevin Wolf     return QTAILQ_NEXT(bs, bs_list);
41890f12264eSKevin Wolf }
41900f12264eSKevin Wolf 
419120a9e77dSFam Zheng const char *bdrv_get_node_name(const BlockDriverState *bs)
419220a9e77dSFam Zheng {
419320a9e77dSFam Zheng     return bs->node_name;
419420a9e77dSFam Zheng }
419520a9e77dSFam Zheng 
41961f0c461bSKevin Wolf const char *bdrv_get_parent_name(const BlockDriverState *bs)
41974c265bf9SKevin Wolf {
41984c265bf9SKevin Wolf     BdrvChild *c;
41994c265bf9SKevin Wolf     const char *name;
42004c265bf9SKevin Wolf 
42014c265bf9SKevin Wolf     /* If multiple parents have a name, just pick the first one. */
42024c265bf9SKevin Wolf     QLIST_FOREACH(c, &bs->parents, next_parent) {
42034c265bf9SKevin Wolf         if (c->role->get_name) {
42044c265bf9SKevin Wolf             name = c->role->get_name(c);
42054c265bf9SKevin Wolf             if (name && *name) {
42064c265bf9SKevin Wolf                 return name;
42074c265bf9SKevin Wolf             }
42084c265bf9SKevin Wolf         }
42094c265bf9SKevin Wolf     }
42104c265bf9SKevin Wolf 
42114c265bf9SKevin Wolf     return NULL;
42124c265bf9SKevin Wolf }
42134c265bf9SKevin Wolf 
42147f06d47eSMarkus Armbruster /* TODO check what callers really want: bs->node_name or blk_name() */
4215bfb197e0SMarkus Armbruster const char *bdrv_get_device_name(const BlockDriverState *bs)
4216ea2384d3Sbellard {
42174c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: "";
4218ea2384d3Sbellard }
4219ea2384d3Sbellard 
42209b2aa84fSAlberto Garcia /* This can be used to identify nodes that might not have a device
42219b2aa84fSAlberto Garcia  * name associated. Since node and device names live in the same
42229b2aa84fSAlberto Garcia  * namespace, the result is unambiguous. The exception is if both are
42239b2aa84fSAlberto Garcia  * absent, then this returns an empty (non-null) string. */
42249b2aa84fSAlberto Garcia const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
42259b2aa84fSAlberto Garcia {
42264c265bf9SKevin Wolf     return bdrv_get_parent_name(bs) ?: bs->node_name;
42279b2aa84fSAlberto Garcia }
42289b2aa84fSAlberto Garcia 
4229c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs)
4230c8433287SMarkus Armbruster {
4231c8433287SMarkus Armbruster     return bs->open_flags;
4232c8433287SMarkus Armbruster }
4233c8433287SMarkus Armbruster 
42343ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs)
42353ac21627SPeter Lieven {
42363ac21627SPeter Lieven     return 1;
42373ac21627SPeter Lieven }
42383ac21627SPeter Lieven 
4239f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs)
4240f2feebbdSKevin Wolf {
4241d470ad42SMax Reitz     if (!bs->drv) {
4242d470ad42SMax Reitz         return 0;
4243d470ad42SMax Reitz     }
4244f2feebbdSKevin Wolf 
424511212d8fSPaolo Bonzini     /* If BS is a copy on write image, it is initialized to
424611212d8fSPaolo Bonzini        the contents of the base image, which may not be zeroes.  */
4247760e0063SKevin Wolf     if (bs->backing) {
424811212d8fSPaolo Bonzini         return 0;
424911212d8fSPaolo Bonzini     }
4250336c1c12SKevin Wolf     if (bs->drv->bdrv_has_zero_init) {
4251336c1c12SKevin Wolf         return bs->drv->bdrv_has_zero_init(bs);
4252f2feebbdSKevin Wolf     }
42535a612c00SManos Pitsidianakis     if (bs->file && bs->drv->is_filter) {
42545a612c00SManos Pitsidianakis         return bdrv_has_zero_init(bs->file->bs);
42555a612c00SManos Pitsidianakis     }
4256f2feebbdSKevin Wolf 
42573ac21627SPeter Lieven     /* safe default */
42583ac21627SPeter Lieven     return 0;
4259f2feebbdSKevin Wolf }
4260f2feebbdSKevin Wolf 
42614ce78691SPeter Lieven bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
42624ce78691SPeter Lieven {
42634ce78691SPeter Lieven     BlockDriverInfo bdi;
42644ce78691SPeter Lieven 
4265760e0063SKevin Wolf     if (bs->backing) {
42664ce78691SPeter Lieven         return false;
42674ce78691SPeter Lieven     }
42684ce78691SPeter Lieven 
42694ce78691SPeter Lieven     if (bdrv_get_info(bs, &bdi) == 0) {
42704ce78691SPeter Lieven         return bdi.unallocated_blocks_are_zero;
42714ce78691SPeter Lieven     }
42724ce78691SPeter Lieven 
42734ce78691SPeter Lieven     return false;
42744ce78691SPeter Lieven }
42754ce78691SPeter Lieven 
42764ce78691SPeter Lieven bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
42774ce78691SPeter Lieven {
42782f0342efSDenis V. Lunev     if (!(bs->open_flags & BDRV_O_UNMAP)) {
42794ce78691SPeter Lieven         return false;
42804ce78691SPeter Lieven     }
42814ce78691SPeter Lieven 
4282e24d813bSEric Blake     return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
42834ce78691SPeter Lieven }
42844ce78691SPeter Lieven 
4285045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
4286045df330Saliguori {
4287760e0063SKevin Wolf     if (bs->backing && bs->backing->bs->encrypted)
4288045df330Saliguori         return bs->backing_file;
4289045df330Saliguori     else if (bs->encrypted)
4290045df330Saliguori         return bs->filename;
4291045df330Saliguori     else
4292045df330Saliguori         return NULL;
4293045df330Saliguori }
4294045df330Saliguori 
429583f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs,
429683f64091Sbellard                                char *filename, int filename_size)
429783f64091Sbellard {
429883f64091Sbellard     pstrcpy(filename, filename_size, bs->backing_file);
429983f64091Sbellard }
430083f64091Sbellard 
4301faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
4302faea38e7Sbellard {
4303faea38e7Sbellard     BlockDriver *drv = bs->drv;
43045a612c00SManos Pitsidianakis     /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
43055a612c00SManos Pitsidianakis     if (!drv) {
430619cb3738Sbellard         return -ENOMEDIUM;
43075a612c00SManos Pitsidianakis     }
43085a612c00SManos Pitsidianakis     if (!drv->bdrv_get_info) {
43095a612c00SManos Pitsidianakis         if (bs->file && drv->is_filter) {
43105a612c00SManos Pitsidianakis             return bdrv_get_info(bs->file->bs, bdi);
43115a612c00SManos Pitsidianakis         }
4312faea38e7Sbellard         return -ENOTSUP;
43135a612c00SManos Pitsidianakis     }
4314faea38e7Sbellard     memset(bdi, 0, sizeof(*bdi));
4315faea38e7Sbellard     return drv->bdrv_get_info(bs, bdi);
4316faea38e7Sbellard }
4317faea38e7Sbellard 
4318eae041feSMax Reitz ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
4319eae041feSMax Reitz {
4320eae041feSMax Reitz     BlockDriver *drv = bs->drv;
4321eae041feSMax Reitz     if (drv && drv->bdrv_get_specific_info) {
4322eae041feSMax Reitz         return drv->bdrv_get_specific_info(bs);
4323eae041feSMax Reitz     }
4324eae041feSMax Reitz     return NULL;
4325eae041feSMax Reitz }
4326eae041feSMax Reitz 
4327a31939e6SEric Blake void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
43288b9b0cc2SKevin Wolf {
4329bf736fe3SKevin Wolf     if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
43308b9b0cc2SKevin Wolf         return;
43318b9b0cc2SKevin Wolf     }
43328b9b0cc2SKevin Wolf 
4333bf736fe3SKevin Wolf     bs->drv->bdrv_debug_event(bs, event);
433441c695c7SKevin Wolf }
43358b9b0cc2SKevin Wolf 
433641c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
433741c695c7SKevin Wolf                           const char *tag)
433841c695c7SKevin Wolf {
433941c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
43409a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
434141c695c7SKevin Wolf     }
434241c695c7SKevin Wolf 
434341c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
434441c695c7SKevin Wolf         return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
434541c695c7SKevin Wolf     }
434641c695c7SKevin Wolf 
434741c695c7SKevin Wolf     return -ENOTSUP;
434841c695c7SKevin Wolf }
434941c695c7SKevin Wolf 
43504cc70e93SFam Zheng int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
43514cc70e93SFam Zheng {
43524cc70e93SFam Zheng     while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
43539a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
43544cc70e93SFam Zheng     }
43554cc70e93SFam Zheng 
43564cc70e93SFam Zheng     if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
43574cc70e93SFam Zheng         return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
43584cc70e93SFam Zheng     }
43594cc70e93SFam Zheng 
43604cc70e93SFam Zheng     return -ENOTSUP;
43614cc70e93SFam Zheng }
43624cc70e93SFam Zheng 
436341c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
436441c695c7SKevin Wolf {
4365938789eaSMax Reitz     while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
43669a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
436741c695c7SKevin Wolf     }
436841c695c7SKevin Wolf 
436941c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
437041c695c7SKevin Wolf         return bs->drv->bdrv_debug_resume(bs, tag);
437141c695c7SKevin Wolf     }
437241c695c7SKevin Wolf 
437341c695c7SKevin Wolf     return -ENOTSUP;
437441c695c7SKevin Wolf }
437541c695c7SKevin Wolf 
437641c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
437741c695c7SKevin Wolf {
437841c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
43799a4f4c31SKevin Wolf         bs = bs->file ? bs->file->bs : NULL;
438041c695c7SKevin Wolf     }
438141c695c7SKevin Wolf 
438241c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
438341c695c7SKevin Wolf         return bs->drv->bdrv_debug_is_suspended(bs, tag);
438441c695c7SKevin Wolf     }
438541c695c7SKevin Wolf 
438641c695c7SKevin Wolf     return false;
43878b9b0cc2SKevin Wolf }
43888b9b0cc2SKevin Wolf 
4389b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol.  If it is
4390b1b1d783SJeff Cody  * relative, it must be relative to the chain.  So, passing in bs->filename
4391b1b1d783SJeff Cody  * from a BDS as backing_file should not be done, as that may be relative to
4392b1b1d783SJeff Cody  * the CWD rather than the chain. */
4393e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
4394e8a6bb9cSMarcelo Tosatti         const char *backing_file)
4395e8a6bb9cSMarcelo Tosatti {
4396b1b1d783SJeff Cody     char *filename_full = NULL;
4397b1b1d783SJeff Cody     char *backing_file_full = NULL;
4398b1b1d783SJeff Cody     char *filename_tmp = NULL;
4399b1b1d783SJeff Cody     int is_protocol = 0;
4400b1b1d783SJeff Cody     BlockDriverState *curr_bs = NULL;
4401b1b1d783SJeff Cody     BlockDriverState *retval = NULL;
4402418661e0SJeff Cody     Error *local_error = NULL;
4403b1b1d783SJeff Cody 
4404b1b1d783SJeff Cody     if (!bs || !bs->drv || !backing_file) {
4405e8a6bb9cSMarcelo Tosatti         return NULL;
4406e8a6bb9cSMarcelo Tosatti     }
4407e8a6bb9cSMarcelo Tosatti 
4408b1b1d783SJeff Cody     filename_full     = g_malloc(PATH_MAX);
4409b1b1d783SJeff Cody     backing_file_full = g_malloc(PATH_MAX);
4410b1b1d783SJeff Cody     filename_tmp      = g_malloc(PATH_MAX);
4411b1b1d783SJeff Cody 
4412b1b1d783SJeff Cody     is_protocol = path_has_protocol(backing_file);
4413b1b1d783SJeff Cody 
4414760e0063SKevin Wolf     for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
4415b1b1d783SJeff Cody 
4416b1b1d783SJeff Cody         /* If either of the filename paths is actually a protocol, then
4417b1b1d783SJeff Cody          * compare unmodified paths; otherwise make paths relative */
4418b1b1d783SJeff Cody         if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
4419b1b1d783SJeff Cody             if (strcmp(backing_file, curr_bs->backing_file) == 0) {
4420760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
4421b1b1d783SJeff Cody                 break;
4422b1b1d783SJeff Cody             }
4423418661e0SJeff Cody             /* Also check against the full backing filename for the image */
4424418661e0SJeff Cody             bdrv_get_full_backing_filename(curr_bs, backing_file_full, PATH_MAX,
4425418661e0SJeff Cody                                            &local_error);
4426418661e0SJeff Cody             if (local_error == NULL) {
4427418661e0SJeff Cody                 if (strcmp(backing_file, backing_file_full) == 0) {
4428418661e0SJeff Cody                     retval = curr_bs->backing->bs;
4429418661e0SJeff Cody                     break;
4430418661e0SJeff Cody                 }
4431418661e0SJeff Cody             } else {
4432418661e0SJeff Cody                 error_free(local_error);
4433418661e0SJeff Cody                 local_error = NULL;
4434418661e0SJeff Cody             }
4435e8a6bb9cSMarcelo Tosatti         } else {
4436b1b1d783SJeff Cody             /* If not an absolute filename path, make it relative to the current
4437b1b1d783SJeff Cody              * image's filename path */
4438b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4439b1b1d783SJeff Cody                          backing_file);
4440b1b1d783SJeff Cody 
4441b1b1d783SJeff Cody             /* We are going to compare absolute pathnames */
4442b1b1d783SJeff Cody             if (!realpath(filename_tmp, filename_full)) {
4443b1b1d783SJeff Cody                 continue;
4444b1b1d783SJeff Cody             }
4445b1b1d783SJeff Cody 
4446b1b1d783SJeff Cody             /* We need to make sure the backing filename we are comparing against
4447b1b1d783SJeff Cody              * is relative to the current image filename (or absolute) */
4448b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4449b1b1d783SJeff Cody                          curr_bs->backing_file);
4450b1b1d783SJeff Cody 
4451b1b1d783SJeff Cody             if (!realpath(filename_tmp, backing_file_full)) {
4452b1b1d783SJeff Cody                 continue;
4453b1b1d783SJeff Cody             }
4454b1b1d783SJeff Cody 
4455b1b1d783SJeff Cody             if (strcmp(backing_file_full, filename_full) == 0) {
4456760e0063SKevin Wolf                 retval = curr_bs->backing->bs;
4457b1b1d783SJeff Cody                 break;
4458b1b1d783SJeff Cody             }
4459e8a6bb9cSMarcelo Tosatti         }
4460e8a6bb9cSMarcelo Tosatti     }
4461e8a6bb9cSMarcelo Tosatti 
4462b1b1d783SJeff Cody     g_free(filename_full);
4463b1b1d783SJeff Cody     g_free(backing_file_full);
4464b1b1d783SJeff Cody     g_free(filename_tmp);
4465b1b1d783SJeff Cody     return retval;
4466e8a6bb9cSMarcelo Tosatti }
4467e8a6bb9cSMarcelo Tosatti 
4468ea2384d3Sbellard void bdrv_init(void)
4469ea2384d3Sbellard {
44705efa9d5aSAnthony Liguori     module_call_init(MODULE_INIT_BLOCK);
4471ea2384d3Sbellard }
4472ce1a14dcSpbrook 
4473eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void)
4474eb852011SMarkus Armbruster {
4475eb852011SMarkus Armbruster     use_bdrv_whitelist = 1;
4476eb852011SMarkus Armbruster     bdrv_init();
4477eb852011SMarkus Armbruster }
4478eb852011SMarkus Armbruster 
44792b148f39SPaolo Bonzini static void coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs,
44802b148f39SPaolo Bonzini                                                   Error **errp)
44810f15423cSAnthony Liguori {
44824417ab7aSKevin Wolf     BdrvChild *child, *parent;
44839c5e6594SKevin Wolf     uint64_t perm, shared_perm;
44845a8a30dbSKevin Wolf     Error *local_err = NULL;
44855a8a30dbSKevin Wolf     int ret;
44869c98f145SVladimir Sementsov-Ogievskiy     BdrvDirtyBitmap *bm;
44875a8a30dbSKevin Wolf 
44883456a8d1SKevin Wolf     if (!bs->drv)  {
44893456a8d1SKevin Wolf         return;
44900f15423cSAnthony Liguori     }
44913456a8d1SKevin Wolf 
449204c01a5cSKevin Wolf     if (!(bs->open_flags & BDRV_O_INACTIVE)) {
44937ea2d269SAlexey Kardashevskiy         return;
44947ea2d269SAlexey Kardashevskiy     }
44957ea2d269SAlexey Kardashevskiy 
449616e977d5SVladimir Sementsov-Ogievskiy     QLIST_FOREACH(child, &bs->children, next) {
44972b148f39SPaolo Bonzini         bdrv_co_invalidate_cache(child->bs, &local_err);
44985a8a30dbSKevin Wolf         if (local_err) {
44995a8a30dbSKevin Wolf             error_propagate(errp, local_err);
45005a8a30dbSKevin Wolf             return;
45013456a8d1SKevin Wolf         }
45020d1c5c91SFam Zheng     }
45030d1c5c91SFam Zheng 
4504dafe0960SKevin Wolf     /*
4505dafe0960SKevin Wolf      * Update permissions, they may differ for inactive nodes.
4506dafe0960SKevin Wolf      *
4507dafe0960SKevin Wolf      * Note that the required permissions of inactive images are always a
4508dafe0960SKevin Wolf      * subset of the permissions required after activating the image. This
4509dafe0960SKevin Wolf      * allows us to just get the permissions upfront without restricting
4510dafe0960SKevin Wolf      * drv->bdrv_invalidate_cache().
4511dafe0960SKevin Wolf      *
4512dafe0960SKevin Wolf      * It also means that in error cases, we don't have to try and revert to
4513dafe0960SKevin Wolf      * the old permissions (which is an operation that could fail, too). We can
4514dafe0960SKevin Wolf      * just keep the extended permissions for the next time that an activation
4515dafe0960SKevin Wolf      * of the image is tried.
4516dafe0960SKevin Wolf      */
451716e977d5SVladimir Sementsov-Ogievskiy     bs->open_flags &= ~BDRV_O_INACTIVE;
4518dafe0960SKevin Wolf     bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
4519dafe0960SKevin Wolf     ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &local_err);
4520dafe0960SKevin Wolf     if (ret < 0) {
4521dafe0960SKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
4522dafe0960SKevin Wolf         error_propagate(errp, local_err);
4523dafe0960SKevin Wolf         return;
4524dafe0960SKevin Wolf     }
4525dafe0960SKevin Wolf     bdrv_set_perm(bs, perm, shared_perm);
4526dafe0960SKevin Wolf 
45272b148f39SPaolo Bonzini     if (bs->drv->bdrv_co_invalidate_cache) {
45282b148f39SPaolo Bonzini         bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
45290d1c5c91SFam Zheng         if (local_err) {
45300d1c5c91SFam Zheng             bs->open_flags |= BDRV_O_INACTIVE;
45310d1c5c91SFam Zheng             error_propagate(errp, local_err);
45320d1c5c91SFam Zheng             return;
45330d1c5c91SFam Zheng         }
45340d1c5c91SFam Zheng     }
45353456a8d1SKevin Wolf 
45369c98f145SVladimir Sementsov-Ogievskiy     for (bm = bdrv_dirty_bitmap_next(bs, NULL); bm;
45379c98f145SVladimir Sementsov-Ogievskiy          bm = bdrv_dirty_bitmap_next(bs, bm))
45389c98f145SVladimir Sementsov-Ogievskiy     {
45399c98f145SVladimir Sementsov-Ogievskiy         bdrv_dirty_bitmap_set_migration(bm, false);
45409c98f145SVladimir Sementsov-Ogievskiy     }
45419c98f145SVladimir Sementsov-Ogievskiy 
45425a8a30dbSKevin Wolf     ret = refresh_total_sectors(bs, bs->total_sectors);
45435a8a30dbSKevin Wolf     if (ret < 0) {
454404c01a5cSKevin Wolf         bs->open_flags |= BDRV_O_INACTIVE;
45455a8a30dbSKevin Wolf         error_setg_errno(errp, -ret, "Could not refresh total sector count");
45465a8a30dbSKevin Wolf         return;
45475a8a30dbSKevin Wolf     }
45484417ab7aSKevin Wolf 
45494417ab7aSKevin Wolf     QLIST_FOREACH(parent, &bs->parents, next_parent) {
45504417ab7aSKevin Wolf         if (parent->role->activate) {
45514417ab7aSKevin Wolf             parent->role->activate(parent, &local_err);
45524417ab7aSKevin Wolf             if (local_err) {
45534417ab7aSKevin Wolf                 error_propagate(errp, local_err);
45544417ab7aSKevin Wolf                 return;
45554417ab7aSKevin Wolf             }
45564417ab7aSKevin Wolf         }
45574417ab7aSKevin Wolf     }
45580f15423cSAnthony Liguori }
45590f15423cSAnthony Liguori 
45602b148f39SPaolo Bonzini typedef struct InvalidateCacheCo {
45612b148f39SPaolo Bonzini     BlockDriverState *bs;
45622b148f39SPaolo Bonzini     Error **errp;
45632b148f39SPaolo Bonzini     bool done;
45642b148f39SPaolo Bonzini } InvalidateCacheCo;
45652b148f39SPaolo Bonzini 
45662b148f39SPaolo Bonzini static void coroutine_fn bdrv_invalidate_cache_co_entry(void *opaque)
45672b148f39SPaolo Bonzini {
45682b148f39SPaolo Bonzini     InvalidateCacheCo *ico = opaque;
45692b148f39SPaolo Bonzini     bdrv_co_invalidate_cache(ico->bs, ico->errp);
45702b148f39SPaolo Bonzini     ico->done = true;
45712b148f39SPaolo Bonzini }
45722b148f39SPaolo Bonzini 
45732b148f39SPaolo Bonzini void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
45742b148f39SPaolo Bonzini {
45752b148f39SPaolo Bonzini     Coroutine *co;
45762b148f39SPaolo Bonzini     InvalidateCacheCo ico = {
45772b148f39SPaolo Bonzini         .bs = bs,
45782b148f39SPaolo Bonzini         .done = false,
45792b148f39SPaolo Bonzini         .errp = errp
45802b148f39SPaolo Bonzini     };
45812b148f39SPaolo Bonzini 
45822b148f39SPaolo Bonzini     if (qemu_in_coroutine()) {
45832b148f39SPaolo Bonzini         /* Fast-path if already in coroutine context */
45842b148f39SPaolo Bonzini         bdrv_invalidate_cache_co_entry(&ico);
45852b148f39SPaolo Bonzini     } else {
45862b148f39SPaolo Bonzini         co = qemu_coroutine_create(bdrv_invalidate_cache_co_entry, &ico);
45872b148f39SPaolo Bonzini         qemu_coroutine_enter(co);
45882b148f39SPaolo Bonzini         BDRV_POLL_WHILE(bs, !ico.done);
45892b148f39SPaolo Bonzini     }
45902b148f39SPaolo Bonzini }
45912b148f39SPaolo Bonzini 
45925a8a30dbSKevin Wolf void bdrv_invalidate_cache_all(Error **errp)
45930f15423cSAnthony Liguori {
45947c8eece4SKevin Wolf     BlockDriverState *bs;
45955a8a30dbSKevin Wolf     Error *local_err = NULL;
459688be7b4bSKevin Wolf     BdrvNextIterator it;
45970f15423cSAnthony Liguori 
459888be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4599ed78cda3SStefan Hajnoczi         AioContext *aio_context = bdrv_get_aio_context(bs);
4600ed78cda3SStefan Hajnoczi 
4601ed78cda3SStefan Hajnoczi         aio_context_acquire(aio_context);
46025a8a30dbSKevin Wolf         bdrv_invalidate_cache(bs, &local_err);
4603ed78cda3SStefan Hajnoczi         aio_context_release(aio_context);
46045a8a30dbSKevin Wolf         if (local_err) {
46055a8a30dbSKevin Wolf             error_propagate(errp, local_err);
46065e003f17SMax Reitz             bdrv_next_cleanup(&it);
46075a8a30dbSKevin Wolf             return;
46085a8a30dbSKevin Wolf         }
46090f15423cSAnthony Liguori     }
46100f15423cSAnthony Liguori }
46110f15423cSAnthony Liguori 
46129e37271fSKevin Wolf static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
46139e37271fSKevin Wolf {
46149e37271fSKevin Wolf     BdrvChild *parent;
46159e37271fSKevin Wolf 
46169e37271fSKevin Wolf     QLIST_FOREACH(parent, &bs->parents, next_parent) {
46179e37271fSKevin Wolf         if (parent->role->parent_is_bds) {
46189e37271fSKevin Wolf             BlockDriverState *parent_bs = parent->opaque;
46199e37271fSKevin Wolf             if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
46209e37271fSKevin Wolf                 return true;
46219e37271fSKevin Wolf             }
46229e37271fSKevin Wolf         }
46239e37271fSKevin Wolf     }
46249e37271fSKevin Wolf 
46259e37271fSKevin Wolf     return false;
46269e37271fSKevin Wolf }
46279e37271fSKevin Wolf 
46289e37271fSKevin Wolf static int bdrv_inactivate_recurse(BlockDriverState *bs)
462976b1c7feSKevin Wolf {
4630cfa1a572SKevin Wolf     BdrvChild *child, *parent;
46319e37271fSKevin Wolf     uint64_t perm, shared_perm;
463276b1c7feSKevin Wolf     int ret;
463376b1c7feSKevin Wolf 
4634d470ad42SMax Reitz     if (!bs->drv) {
4635d470ad42SMax Reitz         return -ENOMEDIUM;
4636d470ad42SMax Reitz     }
4637d470ad42SMax Reitz 
46389e37271fSKevin Wolf     /* Make sure that we don't inactivate a child before its parent.
46399e37271fSKevin Wolf      * It will be covered by recursion from the yet active parent. */
46409e37271fSKevin Wolf     if (bdrv_has_bds_parent(bs, true)) {
46419e37271fSKevin Wolf         return 0;
46429e37271fSKevin Wolf     }
46439e37271fSKevin Wolf 
46449e37271fSKevin Wolf     assert(!(bs->open_flags & BDRV_O_INACTIVE));
46459e37271fSKevin Wolf 
46469e37271fSKevin Wolf     /* Inactivate this node */
46479e37271fSKevin Wolf     if (bs->drv->bdrv_inactivate) {
464876b1c7feSKevin Wolf         ret = bs->drv->bdrv_inactivate(bs);
464976b1c7feSKevin Wolf         if (ret < 0) {
465076b1c7feSKevin Wolf             return ret;
465176b1c7feSKevin Wolf         }
465276b1c7feSKevin Wolf     }
465376b1c7feSKevin Wolf 
4654cfa1a572SKevin Wolf     QLIST_FOREACH(parent, &bs->parents, next_parent) {
4655cfa1a572SKevin Wolf         if (parent->role->inactivate) {
4656cfa1a572SKevin Wolf             ret = parent->role->inactivate(parent);
4657cfa1a572SKevin Wolf             if (ret < 0) {
4658cfa1a572SKevin Wolf                 return ret;
4659cfa1a572SKevin Wolf             }
4660cfa1a572SKevin Wolf         }
4661cfa1a572SKevin Wolf     }
46629c5e6594SKevin Wolf 
46637d5b5261SStefan Hajnoczi     bs->open_flags |= BDRV_O_INACTIVE;
46647d5b5261SStefan Hajnoczi 
46659c5e6594SKevin Wolf     /* Update permissions, they may differ for inactive nodes */
46669c5e6594SKevin Wolf     bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
46673121fb45SKevin Wolf     bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &error_abort);
46689c5e6594SKevin Wolf     bdrv_set_perm(bs, perm, shared_perm);
466938701b6aSKevin Wolf 
46709e37271fSKevin Wolf 
46719e37271fSKevin Wolf     /* Recursively inactivate children */
467238701b6aSKevin Wolf     QLIST_FOREACH(child, &bs->children, next) {
46739e37271fSKevin Wolf         ret = bdrv_inactivate_recurse(child->bs);
467438701b6aSKevin Wolf         if (ret < 0) {
467538701b6aSKevin Wolf             return ret;
467638701b6aSKevin Wolf         }
467738701b6aSKevin Wolf     }
467838701b6aSKevin Wolf 
467976b1c7feSKevin Wolf     return 0;
468076b1c7feSKevin Wolf }
468176b1c7feSKevin Wolf 
468276b1c7feSKevin Wolf int bdrv_inactivate_all(void)
468376b1c7feSKevin Wolf {
468479720af6SMax Reitz     BlockDriverState *bs = NULL;
468588be7b4bSKevin Wolf     BdrvNextIterator it;
4686aad0b7a0SFam Zheng     int ret = 0;
4687bd6458e4SPaolo Bonzini     GSList *aio_ctxs = NULL, *ctx;
468876b1c7feSKevin Wolf 
468988be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4690bd6458e4SPaolo Bonzini         AioContext *aio_context = bdrv_get_aio_context(bs);
4691bd6458e4SPaolo Bonzini 
4692bd6458e4SPaolo Bonzini         if (!g_slist_find(aio_ctxs, aio_context)) {
4693bd6458e4SPaolo Bonzini             aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
4694bd6458e4SPaolo Bonzini             aio_context_acquire(aio_context);
4695bd6458e4SPaolo Bonzini         }
4696aad0b7a0SFam Zheng     }
469776b1c7feSKevin Wolf 
469888be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
46999e37271fSKevin Wolf         /* Nodes with BDS parents are covered by recursion from the last
47009e37271fSKevin Wolf          * parent that gets inactivated. Don't inactivate them a second
47019e37271fSKevin Wolf          * time if that has already happened. */
47029e37271fSKevin Wolf         if (bdrv_has_bds_parent(bs, false)) {
47039e37271fSKevin Wolf             continue;
47049e37271fSKevin Wolf         }
47059e37271fSKevin Wolf         ret = bdrv_inactivate_recurse(bs);
470676b1c7feSKevin Wolf         if (ret < 0) {
47075e003f17SMax Reitz             bdrv_next_cleanup(&it);
4708aad0b7a0SFam Zheng             goto out;
4709aad0b7a0SFam Zheng         }
471076b1c7feSKevin Wolf     }
471176b1c7feSKevin Wolf 
4712aad0b7a0SFam Zheng out:
4713bd6458e4SPaolo Bonzini     for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
4714bd6458e4SPaolo Bonzini         AioContext *aio_context = ctx->data;
4715bd6458e4SPaolo Bonzini         aio_context_release(aio_context);
4716aad0b7a0SFam Zheng     }
4717bd6458e4SPaolo Bonzini     g_slist_free(aio_ctxs);
4718aad0b7a0SFam Zheng 
4719aad0b7a0SFam Zheng     return ret;
472076b1c7feSKevin Wolf }
472176b1c7feSKevin Wolf 
4722f9f05dc5SKevin Wolf /**************************************************************/
472319cb3738Sbellard /* removable device support */
472419cb3738Sbellard 
472519cb3738Sbellard /**
472619cb3738Sbellard  * Return TRUE if the media is present
472719cb3738Sbellard  */
4728e031f750SMax Reitz bool bdrv_is_inserted(BlockDriverState *bs)
472919cb3738Sbellard {
473019cb3738Sbellard     BlockDriver *drv = bs->drv;
473128d7a789SMax Reitz     BdrvChild *child;
4732a1aff5bfSMarkus Armbruster 
4733e031f750SMax Reitz     if (!drv) {
4734e031f750SMax Reitz         return false;
4735e031f750SMax Reitz     }
473628d7a789SMax Reitz     if (drv->bdrv_is_inserted) {
4737a1aff5bfSMarkus Armbruster         return drv->bdrv_is_inserted(bs);
473819cb3738Sbellard     }
473928d7a789SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
474028d7a789SMax Reitz         if (!bdrv_is_inserted(child->bs)) {
474128d7a789SMax Reitz             return false;
474228d7a789SMax Reitz         }
474328d7a789SMax Reitz     }
474428d7a789SMax Reitz     return true;
474528d7a789SMax Reitz }
474619cb3738Sbellard 
474719cb3738Sbellard /**
474819cb3738Sbellard  * If eject_flag is TRUE, eject the media. Otherwise, close the tray
474919cb3738Sbellard  */
4750f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag)
475119cb3738Sbellard {
475219cb3738Sbellard     BlockDriver *drv = bs->drv;
475319cb3738Sbellard 
4754822e1cd1SMarkus Armbruster     if (drv && drv->bdrv_eject) {
4755822e1cd1SMarkus Armbruster         drv->bdrv_eject(bs, eject_flag);
475619cb3738Sbellard     }
475719cb3738Sbellard }
475819cb3738Sbellard 
475919cb3738Sbellard /**
476019cb3738Sbellard  * Lock or unlock the media (if it is locked, the user won't be able
476119cb3738Sbellard  * to eject it manually).
476219cb3738Sbellard  */
4763025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked)
476419cb3738Sbellard {
476519cb3738Sbellard     BlockDriver *drv = bs->drv;
476619cb3738Sbellard 
4767025e849aSMarkus Armbruster     trace_bdrv_lock_medium(bs, locked);
4768b8c6d095SStefan Hajnoczi 
4769025e849aSMarkus Armbruster     if (drv && drv->bdrv_lock_medium) {
4770025e849aSMarkus Armbruster         drv->bdrv_lock_medium(bs, locked);
477119cb3738Sbellard     }
477219cb3738Sbellard }
4773985a03b0Sths 
47749fcb0251SFam Zheng /* Get a reference to bs */
47759fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs)
47769fcb0251SFam Zheng {
47779fcb0251SFam Zheng     bs->refcnt++;
47789fcb0251SFam Zheng }
47799fcb0251SFam Zheng 
47809fcb0251SFam Zheng /* Release a previously grabbed reference to bs.
47819fcb0251SFam Zheng  * If after releasing, reference count is zero, the BlockDriverState is
47829fcb0251SFam Zheng  * deleted. */
47839fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs)
47849fcb0251SFam Zheng {
47859a4d5ca6SJeff Cody     if (!bs) {
47869a4d5ca6SJeff Cody         return;
47879a4d5ca6SJeff Cody     }
47889fcb0251SFam Zheng     assert(bs->refcnt > 0);
47899fcb0251SFam Zheng     if (--bs->refcnt == 0) {
47909fcb0251SFam Zheng         bdrv_delete(bs);
47919fcb0251SFam Zheng     }
47929fcb0251SFam Zheng }
47939fcb0251SFam Zheng 
4794fbe40ff7SFam Zheng struct BdrvOpBlocker {
4795fbe40ff7SFam Zheng     Error *reason;
4796fbe40ff7SFam Zheng     QLIST_ENTRY(BdrvOpBlocker) list;
4797fbe40ff7SFam Zheng };
4798fbe40ff7SFam Zheng 
4799fbe40ff7SFam Zheng bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
4800fbe40ff7SFam Zheng {
4801fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
4802fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4803fbe40ff7SFam Zheng     if (!QLIST_EMPTY(&bs->op_blockers[op])) {
4804fbe40ff7SFam Zheng         blocker = QLIST_FIRST(&bs->op_blockers[op]);
48054b576648SMarkus Armbruster         error_propagate_prepend(errp, error_copy(blocker->reason),
48064b576648SMarkus Armbruster                                 "Node '%s' is busy: ",
4807e43bfd9cSMarkus Armbruster                                 bdrv_get_device_or_node_name(bs));
4808fbe40ff7SFam Zheng         return true;
4809fbe40ff7SFam Zheng     }
4810fbe40ff7SFam Zheng     return false;
4811fbe40ff7SFam Zheng }
4812fbe40ff7SFam Zheng 
4813fbe40ff7SFam Zheng void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
4814fbe40ff7SFam Zheng {
4815fbe40ff7SFam Zheng     BdrvOpBlocker *blocker;
4816fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4817fbe40ff7SFam Zheng 
48185839e53bSMarkus Armbruster     blocker = g_new0(BdrvOpBlocker, 1);
4819fbe40ff7SFam Zheng     blocker->reason = reason;
4820fbe40ff7SFam Zheng     QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
4821fbe40ff7SFam Zheng }
4822fbe40ff7SFam Zheng 
4823fbe40ff7SFam Zheng void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
4824fbe40ff7SFam Zheng {
4825fbe40ff7SFam Zheng     BdrvOpBlocker *blocker, *next;
4826fbe40ff7SFam Zheng     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4827fbe40ff7SFam Zheng     QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
4828fbe40ff7SFam Zheng         if (blocker->reason == reason) {
4829fbe40ff7SFam Zheng             QLIST_REMOVE(blocker, list);
4830fbe40ff7SFam Zheng             g_free(blocker);
4831fbe40ff7SFam Zheng         }
4832fbe40ff7SFam Zheng     }
4833fbe40ff7SFam Zheng }
4834fbe40ff7SFam Zheng 
4835fbe40ff7SFam Zheng void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
4836fbe40ff7SFam Zheng {
4837fbe40ff7SFam Zheng     int i;
4838fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4839fbe40ff7SFam Zheng         bdrv_op_block(bs, i, reason);
4840fbe40ff7SFam Zheng     }
4841fbe40ff7SFam Zheng }
4842fbe40ff7SFam Zheng 
4843fbe40ff7SFam Zheng void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
4844fbe40ff7SFam Zheng {
4845fbe40ff7SFam Zheng     int i;
4846fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4847fbe40ff7SFam Zheng         bdrv_op_unblock(bs, i, reason);
4848fbe40ff7SFam Zheng     }
4849fbe40ff7SFam Zheng }
4850fbe40ff7SFam Zheng 
4851fbe40ff7SFam Zheng bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
4852fbe40ff7SFam Zheng {
4853fbe40ff7SFam Zheng     int i;
4854fbe40ff7SFam Zheng 
4855fbe40ff7SFam Zheng     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4856fbe40ff7SFam Zheng         if (!QLIST_EMPTY(&bs->op_blockers[i])) {
4857fbe40ff7SFam Zheng             return false;
4858fbe40ff7SFam Zheng         }
4859fbe40ff7SFam Zheng     }
4860fbe40ff7SFam Zheng     return true;
4861fbe40ff7SFam Zheng }
4862fbe40ff7SFam Zheng 
4863d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt,
4864f88e1a42SJes Sorensen                      const char *base_filename, const char *base_fmt,
48659217283dSFam Zheng                      char *options, uint64_t img_size, int flags, bool quiet,
48669217283dSFam Zheng                      Error **errp)
4867f88e1a42SJes Sorensen {
486883d0521aSChunyan Liu     QemuOptsList *create_opts = NULL;
486983d0521aSChunyan Liu     QemuOpts *opts = NULL;
487083d0521aSChunyan Liu     const char *backing_fmt, *backing_file;
487183d0521aSChunyan Liu     int64_t size;
4872f88e1a42SJes Sorensen     BlockDriver *drv, *proto_drv;
4873cc84d90fSMax Reitz     Error *local_err = NULL;
4874f88e1a42SJes Sorensen     int ret = 0;
4875f88e1a42SJes Sorensen 
4876f88e1a42SJes Sorensen     /* Find driver and parse its options */
4877f88e1a42SJes Sorensen     drv = bdrv_find_format(fmt);
4878f88e1a42SJes Sorensen     if (!drv) {
487971c79813SLuiz Capitulino         error_setg(errp, "Unknown file format '%s'", fmt);
4880d92ada22SLuiz Capitulino         return;
4881f88e1a42SJes Sorensen     }
4882f88e1a42SJes Sorensen 
4883b65a5e12SMax Reitz     proto_drv = bdrv_find_protocol(filename, true, errp);
4884f88e1a42SJes Sorensen     if (!proto_drv) {
4885d92ada22SLuiz Capitulino         return;
4886f88e1a42SJes Sorensen     }
4887f88e1a42SJes Sorensen 
4888c6149724SMax Reitz     if (!drv->create_opts) {
4889c6149724SMax Reitz         error_setg(errp, "Format driver '%s' does not support image creation",
4890c6149724SMax Reitz                    drv->format_name);
4891c6149724SMax Reitz         return;
4892c6149724SMax Reitz     }
4893c6149724SMax Reitz 
4894c6149724SMax Reitz     if (!proto_drv->create_opts) {
4895c6149724SMax Reitz         error_setg(errp, "Protocol driver '%s' does not support image creation",
4896c6149724SMax Reitz                    proto_drv->format_name);
4897c6149724SMax Reitz         return;
4898c6149724SMax Reitz     }
4899c6149724SMax Reitz 
4900c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, drv->create_opts);
4901c282e1fdSChunyan Liu     create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
4902f88e1a42SJes Sorensen 
4903f88e1a42SJes Sorensen     /* Create parameter list with default values */
490483d0521aSChunyan Liu     opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
490539101f25SMarkus Armbruster     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
4906f88e1a42SJes Sorensen 
4907f88e1a42SJes Sorensen     /* Parse -o options */
4908f88e1a42SJes Sorensen     if (options) {
4909dc523cd3SMarkus Armbruster         qemu_opts_do_parse(opts, options, NULL, &local_err);
4910dc523cd3SMarkus Armbruster         if (local_err) {
4911f88e1a42SJes Sorensen             goto out;
4912f88e1a42SJes Sorensen         }
4913f88e1a42SJes Sorensen     }
4914f88e1a42SJes Sorensen 
4915f88e1a42SJes Sorensen     if (base_filename) {
4916f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
49176be4194bSMarkus Armbruster         if (local_err) {
491871c79813SLuiz Capitulino             error_setg(errp, "Backing file not supported for file format '%s'",
491971c79813SLuiz Capitulino                        fmt);
4920f88e1a42SJes Sorensen             goto out;
4921f88e1a42SJes Sorensen         }
4922f88e1a42SJes Sorensen     }
4923f88e1a42SJes Sorensen 
4924f88e1a42SJes Sorensen     if (base_fmt) {
4925f43e47dbSMarkus Armbruster         qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
49266be4194bSMarkus Armbruster         if (local_err) {
492771c79813SLuiz Capitulino             error_setg(errp, "Backing file format not supported for file "
492871c79813SLuiz Capitulino                              "format '%s'", fmt);
4929f88e1a42SJes Sorensen             goto out;
4930f88e1a42SJes Sorensen         }
4931f88e1a42SJes Sorensen     }
4932f88e1a42SJes Sorensen 
493383d0521aSChunyan Liu     backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
493483d0521aSChunyan Liu     if (backing_file) {
493583d0521aSChunyan Liu         if (!strcmp(filename, backing_file)) {
493671c79813SLuiz Capitulino             error_setg(errp, "Error: Trying to create an image with the "
493771c79813SLuiz Capitulino                              "same filename as the backing file");
4938792da93aSJes Sorensen             goto out;
4939792da93aSJes Sorensen         }
4940792da93aSJes Sorensen     }
4941792da93aSJes Sorensen 
494283d0521aSChunyan Liu     backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
4943f88e1a42SJes Sorensen 
49446e6e55f5SJohn Snow     /* The size for the image must always be specified, unless we have a backing
49456e6e55f5SJohn Snow      * file and we have not been forbidden from opening it. */
4946a8b42a1cSEric Blake     size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
49476e6e55f5SJohn Snow     if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
494866f6b814SMax Reitz         BlockDriverState *bs;
494929168018SMax Reitz         char *full_backing = g_new0(char, PATH_MAX);
495063090dacSPaolo Bonzini         int back_flags;
4951e6641719SMax Reitz         QDict *backing_options = NULL;
495263090dacSPaolo Bonzini 
495329168018SMax Reitz         bdrv_get_full_backing_filename_from_filename(filename, backing_file,
495429168018SMax Reitz                                                      full_backing, PATH_MAX,
495529168018SMax Reitz                                                      &local_err);
495629168018SMax Reitz         if (local_err) {
495729168018SMax Reitz             g_free(full_backing);
495829168018SMax Reitz             goto out;
495929168018SMax Reitz         }
496029168018SMax Reitz 
496163090dacSPaolo Bonzini         /* backing files always opened read-only */
496261de4c68SKevin Wolf         back_flags = flags;
4963bfd18d1eSKevin Wolf         back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
4964f88e1a42SJes Sorensen 
4965e6641719SMax Reitz         backing_options = qdict_new();
4966cc954f01SFam Zheng         if (backing_fmt) {
496746f5ac20SEric Blake             qdict_put_str(backing_options, "driver", backing_fmt);
4968e6641719SMax Reitz         }
4969cc954f01SFam Zheng         qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
4970e6641719SMax Reitz 
49715b363937SMax Reitz         bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
49725b363937SMax Reitz                        &local_err);
497329168018SMax Reitz         g_free(full_backing);
49746e6e55f5SJohn Snow         if (!bs && size != -1) {
49756e6e55f5SJohn Snow             /* Couldn't open BS, but we have a size, so it's nonfatal */
49766e6e55f5SJohn Snow             warn_reportf_err(local_err,
49776e6e55f5SJohn Snow                             "Could not verify backing image. "
49786e6e55f5SJohn Snow                             "This may become an error in future versions.\n");
49796e6e55f5SJohn Snow             local_err = NULL;
49806e6e55f5SJohn Snow         } else if (!bs) {
49816e6e55f5SJohn Snow             /* Couldn't open bs, do not have size */
49826e6e55f5SJohn Snow             error_append_hint(&local_err,
49836e6e55f5SJohn Snow                               "Could not open backing image to determine size.\n");
4984f88e1a42SJes Sorensen             goto out;
49856e6e55f5SJohn Snow         } else {
49866e6e55f5SJohn Snow             if (size == -1) {
49876e6e55f5SJohn Snow                 /* Opened BS, have no size */
498852bf1e72SMarkus Armbruster                 size = bdrv_getlength(bs);
498952bf1e72SMarkus Armbruster                 if (size < 0) {
499052bf1e72SMarkus Armbruster                     error_setg_errno(errp, -size, "Could not get size of '%s'",
499152bf1e72SMarkus Armbruster                                      backing_file);
499252bf1e72SMarkus Armbruster                     bdrv_unref(bs);
499352bf1e72SMarkus Armbruster                     goto out;
499452bf1e72SMarkus Armbruster                 }
499539101f25SMarkus Armbruster                 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
49966e6e55f5SJohn Snow             }
499766f6b814SMax Reitz             bdrv_unref(bs);
49986e6e55f5SJohn Snow         }
49996e6e55f5SJohn Snow     } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
50006e6e55f5SJohn Snow 
50016e6e55f5SJohn Snow     if (size == -1) {
500271c79813SLuiz Capitulino         error_setg(errp, "Image creation needs a size parameter");
5003f88e1a42SJes Sorensen         goto out;
5004f88e1a42SJes Sorensen     }
5005f88e1a42SJes Sorensen 
5006f382d43aSMiroslav Rezanina     if (!quiet) {
5007f88e1a42SJes Sorensen         printf("Formatting '%s', fmt=%s ", filename, fmt);
500843c5d8f8SFam Zheng         qemu_opts_print(opts, " ");
5009f88e1a42SJes Sorensen         puts("");
5010f382d43aSMiroslav Rezanina     }
501183d0521aSChunyan Liu 
5012c282e1fdSChunyan Liu     ret = bdrv_create(drv, filename, opts, &local_err);
501383d0521aSChunyan Liu 
5014cc84d90fSMax Reitz     if (ret == -EFBIG) {
5015cc84d90fSMax Reitz         /* This is generally a better message than whatever the driver would
5016cc84d90fSMax Reitz          * deliver (especially because of the cluster_size_hint), since that
5017cc84d90fSMax Reitz          * is most probably not much different from "image too large". */
5018f3f4d2c0SKevin Wolf         const char *cluster_size_hint = "";
501983d0521aSChunyan Liu         if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
5020f3f4d2c0SKevin Wolf             cluster_size_hint = " (try using a larger cluster size)";
5021f3f4d2c0SKevin Wolf         }
5022cc84d90fSMax Reitz         error_setg(errp, "The image size is too large for file format '%s'"
5023cc84d90fSMax Reitz                    "%s", fmt, cluster_size_hint);
5024cc84d90fSMax Reitz         error_free(local_err);
5025cc84d90fSMax Reitz         local_err = NULL;
5026f88e1a42SJes Sorensen     }
5027f88e1a42SJes Sorensen 
5028f88e1a42SJes Sorensen out:
502983d0521aSChunyan Liu     qemu_opts_del(opts);
503083d0521aSChunyan Liu     qemu_opts_free(create_opts);
5031cc84d90fSMax Reitz     error_propagate(errp, local_err);
5032cc84d90fSMax Reitz }
503385d126f3SStefan Hajnoczi 
503485d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs)
503585d126f3SStefan Hajnoczi {
503633f2a757SStefan Hajnoczi     return bs ? bs->aio_context : qemu_get_aio_context();
5037dcd04228SStefan Hajnoczi }
5038dcd04228SStefan Hajnoczi 
5039052a7572SFam Zheng void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
5040052a7572SFam Zheng {
5041052a7572SFam Zheng     aio_co_enter(bdrv_get_aio_context(bs), co);
5042052a7572SFam Zheng }
5043052a7572SFam Zheng 
5044e8a095daSStefan Hajnoczi static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
5045e8a095daSStefan Hajnoczi {
5046e8a095daSStefan Hajnoczi     QLIST_REMOVE(ban, list);
5047e8a095daSStefan Hajnoczi     g_free(ban);
5048e8a095daSStefan Hajnoczi }
5049e8a095daSStefan Hajnoczi 
5050dcd04228SStefan Hajnoczi void bdrv_detach_aio_context(BlockDriverState *bs)
5051dcd04228SStefan Hajnoczi {
5052e8a095daSStefan Hajnoczi     BdrvAioNotifier *baf, *baf_tmp;
5053b97511c7SMax Reitz     BdrvChild *child;
505433384421SMax Reitz 
5055dcd04228SStefan Hajnoczi     if (!bs->drv) {
5056dcd04228SStefan Hajnoczi         return;
5057dcd04228SStefan Hajnoczi     }
5058dcd04228SStefan Hajnoczi 
5059e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
5060e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
5061e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
5062e8a095daSStefan Hajnoczi         if (baf->deleted) {
5063e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(baf);
5064e8a095daSStefan Hajnoczi         } else {
506533384421SMax Reitz             baf->detach_aio_context(baf->opaque);
506633384421SMax Reitz         }
5067e8a095daSStefan Hajnoczi     }
5068e8a095daSStefan Hajnoczi     /* Never mind iterating again to check for ->deleted.  bdrv_close() will
5069e8a095daSStefan Hajnoczi      * remove remaining aio notifiers if we aren't called again.
5070e8a095daSStefan Hajnoczi      */
5071e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
507233384421SMax Reitz 
5073dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_detach_aio_context) {
5074dcd04228SStefan Hajnoczi         bs->drv->bdrv_detach_aio_context(bs);
5075dcd04228SStefan Hajnoczi     }
5076b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
5077b97511c7SMax Reitz         bdrv_detach_aio_context(child->bs);
5078dcd04228SStefan Hajnoczi     }
5079dcd04228SStefan Hajnoczi 
5080dcd04228SStefan Hajnoczi     bs->aio_context = NULL;
5081dcd04228SStefan Hajnoczi }
5082dcd04228SStefan Hajnoczi 
5083dcd04228SStefan Hajnoczi void bdrv_attach_aio_context(BlockDriverState *bs,
5084dcd04228SStefan Hajnoczi                              AioContext *new_context)
5085dcd04228SStefan Hajnoczi {
5086e8a095daSStefan Hajnoczi     BdrvAioNotifier *ban, *ban_tmp;
5087b97511c7SMax Reitz     BdrvChild *child;
508833384421SMax Reitz 
5089dcd04228SStefan Hajnoczi     if (!bs->drv) {
5090dcd04228SStefan Hajnoczi         return;
5091dcd04228SStefan Hajnoczi     }
5092dcd04228SStefan Hajnoczi 
5093dcd04228SStefan Hajnoczi     bs->aio_context = new_context;
5094dcd04228SStefan Hajnoczi 
5095b97511c7SMax Reitz     QLIST_FOREACH(child, &bs->children, next) {
5096b97511c7SMax Reitz         bdrv_attach_aio_context(child->bs, new_context);
5097dcd04228SStefan Hajnoczi     }
5098dcd04228SStefan Hajnoczi     if (bs->drv->bdrv_attach_aio_context) {
5099dcd04228SStefan Hajnoczi         bs->drv->bdrv_attach_aio_context(bs, new_context);
5100dcd04228SStefan Hajnoczi     }
510133384421SMax Reitz 
5102e8a095daSStefan Hajnoczi     assert(!bs->walking_aio_notifiers);
5103e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = true;
5104e8a095daSStefan Hajnoczi     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
5105e8a095daSStefan Hajnoczi         if (ban->deleted) {
5106e8a095daSStefan Hajnoczi             bdrv_do_remove_aio_context_notifier(ban);
5107e8a095daSStefan Hajnoczi         } else {
510833384421SMax Reitz             ban->attached_aio_context(new_context, ban->opaque);
510933384421SMax Reitz         }
5110dcd04228SStefan Hajnoczi     }
5111e8a095daSStefan Hajnoczi     bs->walking_aio_notifiers = false;
5112e8a095daSStefan Hajnoczi }
5113dcd04228SStefan Hajnoczi 
5114dcd04228SStefan Hajnoczi void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
5115dcd04228SStefan Hajnoczi {
5116aabf5910SFam Zheng     AioContext *ctx = bdrv_get_aio_context(bs);
5117c2b6428dSPaolo Bonzini 
5118aabf5910SFam Zheng     aio_disable_external(ctx);
51196cd5c9d7SKevin Wolf     bdrv_parent_drained_begin(bs, NULL, false);
512053ec73e2SFam Zheng     bdrv_drain(bs); /* ensure there are no in-flight requests */
5121dcd04228SStefan Hajnoczi 
5122c2b6428dSPaolo Bonzini     while (aio_poll(ctx, false)) {
5123c2b6428dSPaolo Bonzini         /* wait for all bottom halves to execute */
5124c2b6428dSPaolo Bonzini     }
5125c2b6428dSPaolo Bonzini 
5126dcd04228SStefan Hajnoczi     bdrv_detach_aio_context(bs);
5127dcd04228SStefan Hajnoczi 
5128dcd04228SStefan Hajnoczi     /* This function executes in the old AioContext so acquire the new one in
5129dcd04228SStefan Hajnoczi      * case it runs in a different thread.
5130dcd04228SStefan Hajnoczi      */
5131dcd04228SStefan Hajnoczi     aio_context_acquire(new_context);
5132dcd04228SStefan Hajnoczi     bdrv_attach_aio_context(bs, new_context);
51336cd5c9d7SKevin Wolf     bdrv_parent_drained_end(bs, NULL, false);
5134aabf5910SFam Zheng     aio_enable_external(ctx);
5135dcd04228SStefan Hajnoczi     aio_context_release(new_context);
513685d126f3SStefan Hajnoczi }
5137d616b224SStefan Hajnoczi 
513833384421SMax Reitz void bdrv_add_aio_context_notifier(BlockDriverState *bs,
513933384421SMax Reitz         void (*attached_aio_context)(AioContext *new_context, void *opaque),
514033384421SMax Reitz         void (*detach_aio_context)(void *opaque), void *opaque)
514133384421SMax Reitz {
514233384421SMax Reitz     BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
514333384421SMax Reitz     *ban = (BdrvAioNotifier){
514433384421SMax Reitz         .attached_aio_context = attached_aio_context,
514533384421SMax Reitz         .detach_aio_context   = detach_aio_context,
514633384421SMax Reitz         .opaque               = opaque
514733384421SMax Reitz     };
514833384421SMax Reitz 
514933384421SMax Reitz     QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
515033384421SMax Reitz }
515133384421SMax Reitz 
515233384421SMax Reitz void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
515333384421SMax Reitz                                       void (*attached_aio_context)(AioContext *,
515433384421SMax Reitz                                                                    void *),
515533384421SMax Reitz                                       void (*detach_aio_context)(void *),
515633384421SMax Reitz                                       void *opaque)
515733384421SMax Reitz {
515833384421SMax Reitz     BdrvAioNotifier *ban, *ban_next;
515933384421SMax Reitz 
516033384421SMax Reitz     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
516133384421SMax Reitz         if (ban->attached_aio_context == attached_aio_context &&
516233384421SMax Reitz             ban->detach_aio_context   == detach_aio_context   &&
5163e8a095daSStefan Hajnoczi             ban->opaque               == opaque               &&
5164e8a095daSStefan Hajnoczi             ban->deleted              == false)
516533384421SMax Reitz         {
5166e8a095daSStefan Hajnoczi             if (bs->walking_aio_notifiers) {
5167e8a095daSStefan Hajnoczi                 ban->deleted = true;
5168e8a095daSStefan Hajnoczi             } else {
5169e8a095daSStefan Hajnoczi                 bdrv_do_remove_aio_context_notifier(ban);
5170e8a095daSStefan Hajnoczi             }
517133384421SMax Reitz             return;
517233384421SMax Reitz         }
517333384421SMax Reitz     }
517433384421SMax Reitz 
517533384421SMax Reitz     abort();
517633384421SMax Reitz }
517733384421SMax Reitz 
517877485434SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
5179d1402b50SMax Reitz                        BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
5180d1402b50SMax Reitz                        Error **errp)
51816f176b48SMax Reitz {
5182d470ad42SMax Reitz     if (!bs->drv) {
5183d1402b50SMax Reitz         error_setg(errp, "Node is ejected");
5184d470ad42SMax Reitz         return -ENOMEDIUM;
5185d470ad42SMax Reitz     }
5186c282e1fdSChunyan Liu     if (!bs->drv->bdrv_amend_options) {
5187d1402b50SMax Reitz         error_setg(errp, "Block driver '%s' does not support option amendment",
5188d1402b50SMax Reitz                    bs->drv->format_name);
51896f176b48SMax Reitz         return -ENOTSUP;
51906f176b48SMax Reitz     }
5191d1402b50SMax Reitz     return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque, errp);
51926f176b48SMax Reitz }
5193f6186f49SBenoît Canet 
5194b5042a36SBenoît Canet /* This function will be called by the bdrv_recurse_is_first_non_filter method
5195b5042a36SBenoît Canet  * of block filter and by bdrv_is_first_non_filter.
5196b5042a36SBenoît Canet  * It is used to test if the given bs is the candidate or recurse more in the
5197b5042a36SBenoît Canet  * node graph.
5198212a5a8fSBenoît Canet  */
5199212a5a8fSBenoît Canet bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
5200212a5a8fSBenoît Canet                                       BlockDriverState *candidate)
5201f6186f49SBenoît Canet {
5202b5042a36SBenoît Canet     /* return false if basic checks fails */
5203b5042a36SBenoît Canet     if (!bs || !bs->drv) {
5204b5042a36SBenoît Canet         return false;
5205b5042a36SBenoît Canet     }
5206b5042a36SBenoît Canet 
5207b5042a36SBenoît Canet     /* the code reached a non block filter driver -> check if the bs is
5208b5042a36SBenoît Canet      * the same as the candidate. It's the recursion termination condition.
5209b5042a36SBenoît Canet      */
5210b5042a36SBenoît Canet     if (!bs->drv->is_filter) {
5211b5042a36SBenoît Canet         return bs == candidate;
5212b5042a36SBenoît Canet     }
5213b5042a36SBenoît Canet     /* Down this path the driver is a block filter driver */
5214b5042a36SBenoît Canet 
5215b5042a36SBenoît Canet     /* If the block filter recursion method is defined use it to recurse down
5216b5042a36SBenoît Canet      * the node graph.
5217b5042a36SBenoît Canet      */
5218b5042a36SBenoît Canet     if (bs->drv->bdrv_recurse_is_first_non_filter) {
5219212a5a8fSBenoît Canet         return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
5220212a5a8fSBenoît Canet     }
5221212a5a8fSBenoît Canet 
5222b5042a36SBenoît Canet     /* the driver is a block filter but don't allow to recurse -> return false
5223b5042a36SBenoît Canet      */
5224b5042a36SBenoît Canet     return false;
5225212a5a8fSBenoît Canet }
5226212a5a8fSBenoît Canet 
5227212a5a8fSBenoît Canet /* This function checks if the candidate is the first non filter bs down it's
5228212a5a8fSBenoît Canet  * bs chain. Since we don't have pointers to parents it explore all bs chains
5229212a5a8fSBenoît Canet  * from the top. Some filters can choose not to pass down the recursion.
5230212a5a8fSBenoît Canet  */
5231212a5a8fSBenoît Canet bool bdrv_is_first_non_filter(BlockDriverState *candidate)
5232212a5a8fSBenoît Canet {
52337c8eece4SKevin Wolf     BlockDriverState *bs;
523488be7b4bSKevin Wolf     BdrvNextIterator it;
5235212a5a8fSBenoît Canet 
5236212a5a8fSBenoît Canet     /* walk down the bs forest recursively */
523788be7b4bSKevin Wolf     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5238212a5a8fSBenoît Canet         bool perm;
5239212a5a8fSBenoît Canet 
5240b5042a36SBenoît Canet         /* try to recurse in this top level bs */
5241e6dc8a1fSKevin Wolf         perm = bdrv_recurse_is_first_non_filter(bs, candidate);
5242212a5a8fSBenoît Canet 
5243212a5a8fSBenoît Canet         /* candidate is the first non filter */
5244212a5a8fSBenoît Canet         if (perm) {
52455e003f17SMax Reitz             bdrv_next_cleanup(&it);
5246212a5a8fSBenoît Canet             return true;
5247212a5a8fSBenoît Canet         }
5248212a5a8fSBenoît Canet     }
5249212a5a8fSBenoît Canet 
5250212a5a8fSBenoît Canet     return false;
5251f6186f49SBenoît Canet }
525209158f00SBenoît Canet 
5253e12f3784SWen Congyang BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
5254e12f3784SWen Congyang                                         const char *node_name, Error **errp)
525509158f00SBenoît Canet {
525609158f00SBenoît Canet     BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
52575a7e7a0bSStefan Hajnoczi     AioContext *aio_context;
52585a7e7a0bSStefan Hajnoczi 
525909158f00SBenoît Canet     if (!to_replace_bs) {
526009158f00SBenoît Canet         error_setg(errp, "Node name '%s' not found", node_name);
526109158f00SBenoît Canet         return NULL;
526209158f00SBenoît Canet     }
526309158f00SBenoît Canet 
52645a7e7a0bSStefan Hajnoczi     aio_context = bdrv_get_aio_context(to_replace_bs);
52655a7e7a0bSStefan Hajnoczi     aio_context_acquire(aio_context);
52665a7e7a0bSStefan Hajnoczi 
526709158f00SBenoît Canet     if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
52685a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
52695a7e7a0bSStefan Hajnoczi         goto out;
527009158f00SBenoît Canet     }
527109158f00SBenoît Canet 
527209158f00SBenoît Canet     /* We don't want arbitrary node of the BDS chain to be replaced only the top
527309158f00SBenoît Canet      * most non filter in order to prevent data corruption.
527409158f00SBenoît Canet      * Another benefit is that this tests exclude backing files which are
527509158f00SBenoît Canet      * blocked by the backing blockers.
527609158f00SBenoît Canet      */
5277e12f3784SWen Congyang     if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
527809158f00SBenoît Canet         error_setg(errp, "Only top most non filter can be replaced");
52795a7e7a0bSStefan Hajnoczi         to_replace_bs = NULL;
52805a7e7a0bSStefan Hajnoczi         goto out;
528109158f00SBenoît Canet     }
528209158f00SBenoît Canet 
52835a7e7a0bSStefan Hajnoczi out:
52845a7e7a0bSStefan Hajnoczi     aio_context_release(aio_context);
528509158f00SBenoît Canet     return to_replace_bs;
528609158f00SBenoît Canet }
5287448ad91dSMing Lei 
528891af7014SMax Reitz static bool append_open_options(QDict *d, BlockDriverState *bs)
528991af7014SMax Reitz {
529091af7014SMax Reitz     const QDictEntry *entry;
52919e700c1aSKevin Wolf     QemuOptDesc *desc;
529291af7014SMax Reitz     bool found_any = false;
529391af7014SMax Reitz 
529491af7014SMax Reitz     for (entry = qdict_first(bs->options); entry;
529591af7014SMax Reitz          entry = qdict_next(bs->options, entry))
529691af7014SMax Reitz     {
5297a600aaddSAlberto Garcia         /* Exclude all non-driver-specific options */
52989e700c1aSKevin Wolf         for (desc = bdrv_runtime_opts.desc; desc->name; desc++) {
52999e700c1aSKevin Wolf             if (!strcmp(qdict_entry_key(entry), desc->name)) {
53009e700c1aSKevin Wolf                 break;
53019e700c1aSKevin Wolf             }
53029e700c1aSKevin Wolf         }
53039e700c1aSKevin Wolf         if (desc->name) {
53049e700c1aSKevin Wolf             continue;
53059e700c1aSKevin Wolf         }
53069e700c1aSKevin Wolf 
5307f5a74a5aSMarc-André Lureau         qdict_put_obj(d, qdict_entry_key(entry),
5308f5a74a5aSMarc-André Lureau                       qobject_ref(qdict_entry_value(entry)));
530991af7014SMax Reitz         found_any = true;
531091af7014SMax Reitz     }
531191af7014SMax Reitz 
531291af7014SMax Reitz     return found_any;
531391af7014SMax Reitz }
531491af7014SMax Reitz 
531591af7014SMax Reitz /* Updates the following BDS fields:
531691af7014SMax Reitz  *  - exact_filename: A filename which may be used for opening a block device
531791af7014SMax Reitz  *                    which (mostly) equals the given BDS (even without any
531891af7014SMax Reitz  *                    other options; so reading and writing must return the same
531991af7014SMax Reitz  *                    results, but caching etc. may be different)
532091af7014SMax Reitz  *  - full_open_options: Options which, when given when opening a block device
532191af7014SMax Reitz  *                       (without a filename), result in a BDS (mostly)
532291af7014SMax Reitz  *                       equalling the given one
532391af7014SMax Reitz  *  - filename: If exact_filename is set, it is copied here. Otherwise,
532491af7014SMax Reitz  *              full_open_options is converted to a JSON object, prefixed with
532591af7014SMax Reitz  *              "json:" (for use through the JSON pseudo protocol) and put here.
532691af7014SMax Reitz  */
532791af7014SMax Reitz void bdrv_refresh_filename(BlockDriverState *bs)
532891af7014SMax Reitz {
532991af7014SMax Reitz     BlockDriver *drv = bs->drv;
533091af7014SMax Reitz     QDict *opts;
533191af7014SMax Reitz 
533291af7014SMax Reitz     if (!drv) {
533391af7014SMax Reitz         return;
533491af7014SMax Reitz     }
533591af7014SMax Reitz 
533691af7014SMax Reitz     /* This BDS's file name will most probably depend on its file's name, so
533791af7014SMax Reitz      * refresh that first */
533891af7014SMax Reitz     if (bs->file) {
53399a4f4c31SKevin Wolf         bdrv_refresh_filename(bs->file->bs);
534091af7014SMax Reitz     }
534191af7014SMax Reitz 
534291af7014SMax Reitz     if (drv->bdrv_refresh_filename) {
534391af7014SMax Reitz         /* Obsolete information is of no use here, so drop the old file name
534491af7014SMax Reitz          * information before refreshing it */
534591af7014SMax Reitz         bs->exact_filename[0] = '\0';
534691af7014SMax Reitz         if (bs->full_open_options) {
5347cb3e7f08SMarc-André Lureau             qobject_unref(bs->full_open_options);
534891af7014SMax Reitz             bs->full_open_options = NULL;
534991af7014SMax Reitz         }
535091af7014SMax Reitz 
53514cdd01d3SKevin Wolf         opts = qdict_new();
53524cdd01d3SKevin Wolf         append_open_options(opts, bs);
53534cdd01d3SKevin Wolf         drv->bdrv_refresh_filename(bs, opts);
5354cb3e7f08SMarc-André Lureau         qobject_unref(opts);
535591af7014SMax Reitz     } else if (bs->file) {
535691af7014SMax Reitz         /* Try to reconstruct valid information from the underlying file */
535791af7014SMax Reitz         bool has_open_options;
535891af7014SMax Reitz 
535991af7014SMax Reitz         bs->exact_filename[0] = '\0';
536091af7014SMax Reitz         if (bs->full_open_options) {
5361cb3e7f08SMarc-André Lureau             qobject_unref(bs->full_open_options);
536291af7014SMax Reitz             bs->full_open_options = NULL;
536391af7014SMax Reitz         }
536491af7014SMax Reitz 
536591af7014SMax Reitz         opts = qdict_new();
536691af7014SMax Reitz         has_open_options = append_open_options(opts, bs);
536791af7014SMax Reitz 
536891af7014SMax Reitz         /* If no specific options have been given for this BDS, the filename of
536991af7014SMax Reitz          * the underlying file should suffice for this one as well */
53709a4f4c31SKevin Wolf         if (bs->file->bs->exact_filename[0] && !has_open_options) {
53719a4f4c31SKevin Wolf             strcpy(bs->exact_filename, bs->file->bs->exact_filename);
537291af7014SMax Reitz         }
537391af7014SMax Reitz         /* Reconstructing the full options QDict is simple for most format block
537491af7014SMax Reitz          * drivers, as long as the full options are known for the underlying
537591af7014SMax Reitz          * file BDS. The full options QDict of that file BDS should somehow
537691af7014SMax Reitz          * contain a representation of the filename, therefore the following
537791af7014SMax Reitz          * suffices without querying the (exact_)filename of this BDS. */
53789a4f4c31SKevin Wolf         if (bs->file->bs->full_open_options) {
537946f5ac20SEric Blake             qdict_put_str(opts, "driver", drv->format_name);
5380f5a74a5aSMarc-André Lureau             qdict_put(opts, "file",
5381f5a74a5aSMarc-André Lureau                       qobject_ref(bs->file->bs->full_open_options));
538291af7014SMax Reitz 
538391af7014SMax Reitz             bs->full_open_options = opts;
538491af7014SMax Reitz         } else {
5385cb3e7f08SMarc-André Lureau             qobject_unref(opts);
538691af7014SMax Reitz         }
538791af7014SMax Reitz     } else if (!bs->full_open_options && qdict_size(bs->options)) {
538891af7014SMax Reitz         /* There is no underlying file BDS (at least referenced by BDS.file),
538991af7014SMax Reitz          * so the full options QDict should be equal to the options given
539091af7014SMax Reitz          * specifically for this block device when it was opened (plus the
539191af7014SMax Reitz          * driver specification).
539291af7014SMax Reitz          * Because those options don't change, there is no need to update
539391af7014SMax Reitz          * full_open_options when it's already set. */
539491af7014SMax Reitz 
539591af7014SMax Reitz         opts = qdict_new();
539691af7014SMax Reitz         append_open_options(opts, bs);
539746f5ac20SEric Blake         qdict_put_str(opts, "driver", drv->format_name);
539891af7014SMax Reitz 
539991af7014SMax Reitz         if (bs->exact_filename[0]) {
540091af7014SMax Reitz             /* This may not work for all block protocol drivers (some may
540191af7014SMax Reitz              * require this filename to be parsed), but we have to find some
540291af7014SMax Reitz              * default solution here, so just include it. If some block driver
540391af7014SMax Reitz              * does not support pure options without any filename at all or
540491af7014SMax Reitz              * needs some special format of the options QDict, it needs to
540591af7014SMax Reitz              * implement the driver-specific bdrv_refresh_filename() function.
540691af7014SMax Reitz              */
540746f5ac20SEric Blake             qdict_put_str(opts, "filename", bs->exact_filename);
540891af7014SMax Reitz         }
540991af7014SMax Reitz 
541091af7014SMax Reitz         bs->full_open_options = opts;
541191af7014SMax Reitz     }
541291af7014SMax Reitz 
541391af7014SMax Reitz     if (bs->exact_filename[0]) {
541491af7014SMax Reitz         pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
541591af7014SMax Reitz     } else if (bs->full_open_options) {
541691af7014SMax Reitz         QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
541791af7014SMax Reitz         snprintf(bs->filename, sizeof(bs->filename), "json:%s",
541891af7014SMax Reitz                  qstring_get_str(json));
5419cb3e7f08SMarc-André Lureau         qobject_unref(json);
542091af7014SMax Reitz     }
542191af7014SMax Reitz }
5422e06018adSWen Congyang 
5423e06018adSWen Congyang /*
5424e06018adSWen Congyang  * Hot add/remove a BDS's child. So the user can take a child offline when
5425e06018adSWen Congyang  * it is broken and take a new child online
5426e06018adSWen Congyang  */
5427e06018adSWen Congyang void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
5428e06018adSWen Congyang                     Error **errp)
5429e06018adSWen Congyang {
5430e06018adSWen Congyang 
5431e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
5432e06018adSWen Congyang         error_setg(errp, "The node %s does not support adding a child",
5433e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
5434e06018adSWen Congyang         return;
5435e06018adSWen Congyang     }
5436e06018adSWen Congyang 
5437e06018adSWen Congyang     if (!QLIST_EMPTY(&child_bs->parents)) {
5438e06018adSWen Congyang         error_setg(errp, "The node %s already has a parent",
5439e06018adSWen Congyang                    child_bs->node_name);
5440e06018adSWen Congyang         return;
5441e06018adSWen Congyang     }
5442e06018adSWen Congyang 
5443e06018adSWen Congyang     parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
5444e06018adSWen Congyang }
5445e06018adSWen Congyang 
5446e06018adSWen Congyang void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
5447e06018adSWen Congyang {
5448e06018adSWen Congyang     BdrvChild *tmp;
5449e06018adSWen Congyang 
5450e06018adSWen Congyang     if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
5451e06018adSWen Congyang         error_setg(errp, "The node %s does not support removing a child",
5452e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs));
5453e06018adSWen Congyang         return;
5454e06018adSWen Congyang     }
5455e06018adSWen Congyang 
5456e06018adSWen Congyang     QLIST_FOREACH(tmp, &parent_bs->children, next) {
5457e06018adSWen Congyang         if (tmp == child) {
5458e06018adSWen Congyang             break;
5459e06018adSWen Congyang         }
5460e06018adSWen Congyang     }
5461e06018adSWen Congyang 
5462e06018adSWen Congyang     if (!tmp) {
5463e06018adSWen Congyang         error_setg(errp, "The node %s does not have a child named %s",
5464e06018adSWen Congyang                    bdrv_get_device_or_node_name(parent_bs),
5465e06018adSWen Congyang                    bdrv_get_device_or_node_name(child->bs));
5466e06018adSWen Congyang         return;
5467e06018adSWen Congyang     }
5468e06018adSWen Congyang 
5469e06018adSWen Congyang     parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
5470e06018adSWen Congyang }
547167b792f5SVladimir Sementsov-Ogievskiy 
547267b792f5SVladimir Sementsov-Ogievskiy bool bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name,
547367b792f5SVladimir Sementsov-Ogievskiy                                      uint32_t granularity, Error **errp)
547467b792f5SVladimir Sementsov-Ogievskiy {
547567b792f5SVladimir Sementsov-Ogievskiy     BlockDriver *drv = bs->drv;
547667b792f5SVladimir Sementsov-Ogievskiy 
547767b792f5SVladimir Sementsov-Ogievskiy     if (!drv) {
547867b792f5SVladimir Sementsov-Ogievskiy         error_setg_errno(errp, ENOMEDIUM,
547967b792f5SVladimir Sementsov-Ogievskiy                          "Can't store persistent bitmaps to %s",
548067b792f5SVladimir Sementsov-Ogievskiy                          bdrv_get_device_or_node_name(bs));
548167b792f5SVladimir Sementsov-Ogievskiy         return false;
548267b792f5SVladimir Sementsov-Ogievskiy     }
548367b792f5SVladimir Sementsov-Ogievskiy 
548467b792f5SVladimir Sementsov-Ogievskiy     if (!drv->bdrv_can_store_new_dirty_bitmap) {
548567b792f5SVladimir Sementsov-Ogievskiy         error_setg_errno(errp, ENOTSUP,
548667b792f5SVladimir Sementsov-Ogievskiy                          "Can't store persistent bitmaps to %s",
548767b792f5SVladimir Sementsov-Ogievskiy                          bdrv_get_device_or_node_name(bs));
548867b792f5SVladimir Sementsov-Ogievskiy         return false;
548967b792f5SVladimir Sementsov-Ogievskiy     }
549067b792f5SVladimir Sementsov-Ogievskiy 
549167b792f5SVladimir Sementsov-Ogievskiy     return drv->bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp);
549267b792f5SVladimir Sementsov-Ogievskiy }
5493