1fc01f7e7Sbellard /* 2fc01f7e7Sbellard * QEMU System Emulator block driver 3fc01f7e7Sbellard * 4fc01f7e7Sbellard * Copyright (c) 2003 Fabrice Bellard 5c20555e1SVladimir Sementsov-Ogievskiy * Copyright (c) 2020 Virtuozzo International GmbH. 6fc01f7e7Sbellard * 7fc01f7e7Sbellard * Permission is hereby granted, free of charge, to any person obtaining a copy 8fc01f7e7Sbellard * of this software and associated documentation files (the "Software"), to deal 9fc01f7e7Sbellard * in the Software without restriction, including without limitation the rights 10fc01f7e7Sbellard * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11fc01f7e7Sbellard * copies of the Software, and to permit persons to whom the Software is 12fc01f7e7Sbellard * furnished to do so, subject to the following conditions: 13fc01f7e7Sbellard * 14fc01f7e7Sbellard * The above copyright notice and this permission notice shall be included in 15fc01f7e7Sbellard * all copies or substantial portions of the Software. 16fc01f7e7Sbellard * 17fc01f7e7Sbellard * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18fc01f7e7Sbellard * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19fc01f7e7Sbellard * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 20fc01f7e7Sbellard * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21fc01f7e7Sbellard * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22fc01f7e7Sbellard * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 23fc01f7e7Sbellard * THE SOFTWARE. 24fc01f7e7Sbellard */ 25e688df6bSMarkus Armbruster 26d38ea87aSPeter Maydell #include "qemu/osdep.h" 270ab8ed18SDaniel P. Berrange #include "block/trace.h" 28737e150eSPaolo Bonzini #include "block/block_int.h" 29737e150eSPaolo Bonzini #include "block/blockjob.h" 300c9b70d5SMax Reitz #include "block/fuse.h" 31cd7fca95SKevin Wolf #include "block/nbd.h" 32609f45eaSMax Reitz #include "block/qdict.h" 33d49b6836SMarkus Armbruster #include "qemu/error-report.h" 345e5733e5SMarc-André Lureau #include "block/module_block.h" 35db725815SMarkus Armbruster #include "qemu/main-loop.h" 361de7afc9SPaolo Bonzini #include "qemu/module.h" 37e688df6bSMarkus Armbruster #include "qapi/error.h" 38452fcdbcSMarkus Armbruster #include "qapi/qmp/qdict.h" 397b1b5d19SPaolo Bonzini #include "qapi/qmp/qjson.h" 40e59a0cf1SMax Reitz #include "qapi/qmp/qnull.h" 41fc81fa1eSMarkus Armbruster #include "qapi/qmp/qstring.h" 42e1d74bc6SKevin Wolf #include "qapi/qobject-output-visitor.h" 43e1d74bc6SKevin Wolf #include "qapi/qapi-visit-block-core.h" 44bfb197e0SMarkus Armbruster #include "sysemu/block-backend.h" 451de7afc9SPaolo Bonzini #include "qemu/notify.h" 46922a01a0SMarkus Armbruster #include "qemu/option.h" 4710817bf0SDaniel P. Berrange #include "qemu/coroutine.h" 48c13163fbSBenoît Canet #include "block/qapi.h" 491de7afc9SPaolo Bonzini #include "qemu/timer.h" 50f348b6d1SVeronia Bahaa #include "qemu/cutils.h" 51f348b6d1SVeronia Bahaa #include "qemu/id.h" 520bc329fbSHanna Reitz #include "qemu/range.h" 530bc329fbSHanna Reitz #include "qemu/rcu.h" 5421c2283eSVladimir Sementsov-Ogievskiy #include "block/coroutines.h" 55fc01f7e7Sbellard 5671e72a19SJuan Quintela #ifdef CONFIG_BSD 577674e7bfSbellard #include <sys/ioctl.h> 5872cf2d4fSBlue Swirl #include <sys/queue.h> 59feccdceeSJoelle van Dyne #if defined(HAVE_SYS_DISK_H) 607674e7bfSbellard #include <sys/disk.h> 617674e7bfSbellard #endif 62c5e97233Sblueswir1 #endif 637674e7bfSbellard 6449dc768dSaliguori #ifdef _WIN32 6549dc768dSaliguori #include <windows.h> 6649dc768dSaliguori #endif 6749dc768dSaliguori 681c9805a3SStefan Hajnoczi #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */ 691c9805a3SStefan Hajnoczi 70dc364f4cSBenoît Canet static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states = 71dc364f4cSBenoît Canet QTAILQ_HEAD_INITIALIZER(graph_bdrv_states); 72dc364f4cSBenoît Canet 732c1d04e0SMax Reitz static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states = 742c1d04e0SMax Reitz QTAILQ_HEAD_INITIALIZER(all_bdrv_states); 752c1d04e0SMax Reitz 768a22f02aSStefan Hajnoczi static QLIST_HEAD(, BlockDriver) bdrv_drivers = 778a22f02aSStefan Hajnoczi QLIST_HEAD_INITIALIZER(bdrv_drivers); 78ea2384d3Sbellard 795b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename, 805b363937SMax Reitz const char *reference, 815b363937SMax Reitz QDict *options, int flags, 82f3930ed0SKevin Wolf BlockDriverState *parent, 83bd86fb99SMax Reitz const BdrvChildClass *child_class, 84272c02eaSMax Reitz BdrvChildRole child_role, 855b363937SMax Reitz Error **errp); 86f3930ed0SKevin Wolf 87bfb8aa6dSKevin Wolf static bool bdrv_recurse_has_child(BlockDriverState *bs, 88bfb8aa6dSKevin Wolf BlockDriverState *child); 89bfb8aa6dSKevin Wolf 900978623eSVladimir Sementsov-Ogievskiy static void bdrv_replace_child_noperm(BdrvChild *child, 910978623eSVladimir Sementsov-Ogievskiy BlockDriverState *new_bs); 92e9238278SVladimir Sementsov-Ogievskiy static void bdrv_remove_file_or_backing_child(BlockDriverState *bs, 93e9238278SVladimir Sementsov-Ogievskiy BdrvChild *child, 94e9238278SVladimir Sementsov-Ogievskiy Transaction *tran); 95160333e1SVladimir Sementsov-Ogievskiy static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs, 96160333e1SVladimir Sementsov-Ogievskiy Transaction *tran); 970978623eSVladimir Sementsov-Ogievskiy 9872373e40SVladimir Sementsov-Ogievskiy static int bdrv_reopen_prepare(BDRVReopenState *reopen_state, 9972373e40SVladimir Sementsov-Ogievskiy BlockReopenQueue *queue, 100ecd30d2dSAlberto Garcia Transaction *change_child_tran, Error **errp); 10153e96d1eSVladimir Sementsov-Ogievskiy static void bdrv_reopen_commit(BDRVReopenState *reopen_state); 10253e96d1eSVladimir Sementsov-Ogievskiy static void bdrv_reopen_abort(BDRVReopenState *reopen_state); 10353e96d1eSVladimir Sementsov-Ogievskiy 104eb852011SMarkus Armbruster /* If non-zero, use only whitelisted block drivers */ 105eb852011SMarkus Armbruster static int use_bdrv_whitelist; 106eb852011SMarkus Armbruster 1079e0b22f4SStefan Hajnoczi #ifdef _WIN32 1089e0b22f4SStefan Hajnoczi static int is_windows_drive_prefix(const char *filename) 1099e0b22f4SStefan Hajnoczi { 1109e0b22f4SStefan Hajnoczi return (((filename[0] >= 'a' && filename[0] <= 'z') || 1119e0b22f4SStefan Hajnoczi (filename[0] >= 'A' && filename[0] <= 'Z')) && 1129e0b22f4SStefan Hajnoczi filename[1] == ':'); 1139e0b22f4SStefan Hajnoczi } 1149e0b22f4SStefan Hajnoczi 1159e0b22f4SStefan Hajnoczi int is_windows_drive(const char *filename) 1169e0b22f4SStefan Hajnoczi { 1179e0b22f4SStefan Hajnoczi if (is_windows_drive_prefix(filename) && 1189e0b22f4SStefan Hajnoczi filename[2] == '\0') 1199e0b22f4SStefan Hajnoczi return 1; 1209e0b22f4SStefan Hajnoczi if (strstart(filename, "\\\\.\\", NULL) || 1219e0b22f4SStefan Hajnoczi strstart(filename, "//./", NULL)) 1229e0b22f4SStefan Hajnoczi return 1; 1239e0b22f4SStefan Hajnoczi return 0; 1249e0b22f4SStefan Hajnoczi } 1259e0b22f4SStefan Hajnoczi #endif 1269e0b22f4SStefan Hajnoczi 127339064d5SKevin Wolf size_t bdrv_opt_mem_align(BlockDriverState *bs) 128339064d5SKevin Wolf { 129339064d5SKevin Wolf if (!bs || !bs->drv) { 130459b4e66SDenis V. Lunev /* page size or 4k (hdd sector size) should be on the safe side */ 131038adc2fSWei Yang return MAX(4096, qemu_real_host_page_size); 132339064d5SKevin Wolf } 133339064d5SKevin Wolf 134339064d5SKevin Wolf return bs->bl.opt_mem_alignment; 135339064d5SKevin Wolf } 136339064d5SKevin Wolf 1374196d2f0SDenis V. Lunev size_t bdrv_min_mem_align(BlockDriverState *bs) 1384196d2f0SDenis V. Lunev { 1394196d2f0SDenis V. Lunev if (!bs || !bs->drv) { 140459b4e66SDenis V. Lunev /* page size or 4k (hdd sector size) should be on the safe side */ 141038adc2fSWei Yang return MAX(4096, qemu_real_host_page_size); 1424196d2f0SDenis V. Lunev } 1434196d2f0SDenis V. Lunev 1444196d2f0SDenis V. Lunev return bs->bl.min_mem_alignment; 1454196d2f0SDenis V. Lunev } 1464196d2f0SDenis V. Lunev 1479e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */ 1485c98415bSMax Reitz int path_has_protocol(const char *path) 1499e0b22f4SStefan Hajnoczi { 150947995c0SPaolo Bonzini const char *p; 151947995c0SPaolo Bonzini 1529e0b22f4SStefan Hajnoczi #ifdef _WIN32 1539e0b22f4SStefan Hajnoczi if (is_windows_drive(path) || 1549e0b22f4SStefan Hajnoczi is_windows_drive_prefix(path)) { 1559e0b22f4SStefan Hajnoczi return 0; 1569e0b22f4SStefan Hajnoczi } 157947995c0SPaolo Bonzini p = path + strcspn(path, ":/\\"); 158947995c0SPaolo Bonzini #else 159947995c0SPaolo Bonzini p = path + strcspn(path, ":/"); 1609e0b22f4SStefan Hajnoczi #endif 1619e0b22f4SStefan Hajnoczi 162947995c0SPaolo Bonzini return *p == ':'; 1639e0b22f4SStefan Hajnoczi } 1649e0b22f4SStefan Hajnoczi 16583f64091Sbellard int path_is_absolute(const char *path) 16683f64091Sbellard { 16721664424Sbellard #ifdef _WIN32 16821664424Sbellard /* specific case for names like: "\\.\d:" */ 169f53f4da9SPaolo Bonzini if (is_windows_drive(path) || is_windows_drive_prefix(path)) { 17021664424Sbellard return 1; 171f53f4da9SPaolo Bonzini } 172f53f4da9SPaolo Bonzini return (*path == '/' || *path == '\\'); 1733b9f94e1Sbellard #else 174f53f4da9SPaolo Bonzini return (*path == '/'); 1753b9f94e1Sbellard #endif 17683f64091Sbellard } 17783f64091Sbellard 178009b03aaSMax Reitz /* if filename is absolute, just return its duplicate. Otherwise, build a 17983f64091Sbellard path to it by considering it is relative to base_path. URL are 18083f64091Sbellard supported. */ 181009b03aaSMax Reitz char *path_combine(const char *base_path, const char *filename) 18283f64091Sbellard { 183009b03aaSMax Reitz const char *protocol_stripped = NULL; 18483f64091Sbellard const char *p, *p1; 185009b03aaSMax Reitz char *result; 18683f64091Sbellard int len; 18783f64091Sbellard 18883f64091Sbellard if (path_is_absolute(filename)) { 189009b03aaSMax Reitz return g_strdup(filename); 190009b03aaSMax Reitz } 1910d54a6feSMax Reitz 1920d54a6feSMax Reitz if (path_has_protocol(base_path)) { 1930d54a6feSMax Reitz protocol_stripped = strchr(base_path, ':'); 1940d54a6feSMax Reitz if (protocol_stripped) { 1950d54a6feSMax Reitz protocol_stripped++; 1960d54a6feSMax Reitz } 1970d54a6feSMax Reitz } 1980d54a6feSMax Reitz p = protocol_stripped ?: base_path; 1990d54a6feSMax Reitz 2003b9f94e1Sbellard p1 = strrchr(base_path, '/'); 2013b9f94e1Sbellard #ifdef _WIN32 2023b9f94e1Sbellard { 2033b9f94e1Sbellard const char *p2; 2043b9f94e1Sbellard p2 = strrchr(base_path, '\\'); 205009b03aaSMax Reitz if (!p1 || p2 > p1) { 2063b9f94e1Sbellard p1 = p2; 2073b9f94e1Sbellard } 20883f64091Sbellard } 209009b03aaSMax Reitz #endif 210009b03aaSMax Reitz if (p1) { 211009b03aaSMax Reitz p1++; 212009b03aaSMax Reitz } else { 213009b03aaSMax Reitz p1 = base_path; 214009b03aaSMax Reitz } 215009b03aaSMax Reitz if (p1 > p) { 216009b03aaSMax Reitz p = p1; 217009b03aaSMax Reitz } 218009b03aaSMax Reitz len = p - base_path; 219009b03aaSMax Reitz 220009b03aaSMax Reitz result = g_malloc(len + strlen(filename) + 1); 221009b03aaSMax Reitz memcpy(result, base_path, len); 222009b03aaSMax Reitz strcpy(result + len, filename); 223009b03aaSMax Reitz 224009b03aaSMax Reitz return result; 225009b03aaSMax Reitz } 226009b03aaSMax Reitz 22703c320d8SMax Reitz /* 22803c320d8SMax Reitz * Helper function for bdrv_parse_filename() implementations to remove optional 22903c320d8SMax Reitz * protocol prefixes (especially "file:") from a filename and for putting the 23003c320d8SMax Reitz * stripped filename into the options QDict if there is such a prefix. 23103c320d8SMax Reitz */ 23203c320d8SMax Reitz void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix, 23303c320d8SMax Reitz QDict *options) 23403c320d8SMax Reitz { 23503c320d8SMax Reitz if (strstart(filename, prefix, &filename)) { 23603c320d8SMax Reitz /* Stripping the explicit protocol prefix may result in a protocol 23703c320d8SMax Reitz * prefix being (wrongly) detected (if the filename contains a colon) */ 23803c320d8SMax Reitz if (path_has_protocol(filename)) { 23918cf67c5SMarkus Armbruster GString *fat_filename; 24003c320d8SMax Reitz 24103c320d8SMax Reitz /* This means there is some colon before the first slash; therefore, 24203c320d8SMax Reitz * this cannot be an absolute path */ 24303c320d8SMax Reitz assert(!path_is_absolute(filename)); 24403c320d8SMax Reitz 24503c320d8SMax Reitz /* And we can thus fix the protocol detection issue by prefixing it 24603c320d8SMax Reitz * by "./" */ 24718cf67c5SMarkus Armbruster fat_filename = g_string_new("./"); 24818cf67c5SMarkus Armbruster g_string_append(fat_filename, filename); 24903c320d8SMax Reitz 25018cf67c5SMarkus Armbruster assert(!path_has_protocol(fat_filename->str)); 25103c320d8SMax Reitz 25218cf67c5SMarkus Armbruster qdict_put(options, "filename", 25318cf67c5SMarkus Armbruster qstring_from_gstring(fat_filename)); 25403c320d8SMax Reitz } else { 25503c320d8SMax Reitz /* If no protocol prefix was detected, we can use the shortened 25603c320d8SMax Reitz * filename as-is */ 25703c320d8SMax Reitz qdict_put_str(options, "filename", filename); 25803c320d8SMax Reitz } 25903c320d8SMax Reitz } 26003c320d8SMax Reitz } 26103c320d8SMax Reitz 26203c320d8SMax Reitz 2639c5e6594SKevin Wolf /* Returns whether the image file is opened as read-only. Note that this can 2649c5e6594SKevin Wolf * return false and writing to the image file is still not possible because the 2659c5e6594SKevin Wolf * image is inactivated. */ 26693ed524eSJeff Cody bool bdrv_is_read_only(BlockDriverState *bs) 26793ed524eSJeff Cody { 268975da073SVladimir Sementsov-Ogievskiy return !(bs->open_flags & BDRV_O_RDWR); 26993ed524eSJeff Cody } 27093ed524eSJeff Cody 27154a32bfeSKevin Wolf int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only, 27254a32bfeSKevin Wolf bool ignore_allow_rdw, Error **errp) 273fe5241bfSJeff Cody { 274e2b8247aSJeff Cody /* Do not set read_only if copy_on_read is enabled */ 275e2b8247aSJeff Cody if (bs->copy_on_read && read_only) { 276e2b8247aSJeff Cody error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled", 277e2b8247aSJeff Cody bdrv_get_device_or_node_name(bs)); 278e2b8247aSJeff Cody return -EINVAL; 279e2b8247aSJeff Cody } 280e2b8247aSJeff Cody 281d6fcdf06SJeff Cody /* Do not clear read_only if it is prohibited */ 28254a32bfeSKevin Wolf if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) && 28354a32bfeSKevin Wolf !ignore_allow_rdw) 28454a32bfeSKevin Wolf { 285d6fcdf06SJeff Cody error_setg(errp, "Node '%s' is read only", 286d6fcdf06SJeff Cody bdrv_get_device_or_node_name(bs)); 287d6fcdf06SJeff Cody return -EPERM; 288d6fcdf06SJeff Cody } 289d6fcdf06SJeff Cody 29045803a03SJeff Cody return 0; 29145803a03SJeff Cody } 29245803a03SJeff Cody 293eaa2410fSKevin Wolf /* 294eaa2410fSKevin Wolf * Called by a driver that can only provide a read-only image. 295eaa2410fSKevin Wolf * 296eaa2410fSKevin Wolf * Returns 0 if the node is already read-only or it could switch the node to 297eaa2410fSKevin Wolf * read-only because BDRV_O_AUTO_RDONLY is set. 298eaa2410fSKevin Wolf * 299eaa2410fSKevin Wolf * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set 300eaa2410fSKevin Wolf * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg 301eaa2410fSKevin Wolf * is not NULL, it is used as the error message for the Error object. 302eaa2410fSKevin Wolf */ 303eaa2410fSKevin Wolf int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg, 304eaa2410fSKevin Wolf Error **errp) 30545803a03SJeff Cody { 30645803a03SJeff Cody int ret = 0; 30745803a03SJeff Cody 308eaa2410fSKevin Wolf if (!(bs->open_flags & BDRV_O_RDWR)) { 309eaa2410fSKevin Wolf return 0; 310eaa2410fSKevin Wolf } 311eaa2410fSKevin Wolf if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) { 312eaa2410fSKevin Wolf goto fail; 313eaa2410fSKevin Wolf } 314eaa2410fSKevin Wolf 315eaa2410fSKevin Wolf ret = bdrv_can_set_read_only(bs, true, false, NULL); 31645803a03SJeff Cody if (ret < 0) { 317eaa2410fSKevin Wolf goto fail; 31845803a03SJeff Cody } 31945803a03SJeff Cody 320eeae6a59SKevin Wolf bs->open_flags &= ~BDRV_O_RDWR; 321eeae6a59SKevin Wolf 322e2b8247aSJeff Cody return 0; 323eaa2410fSKevin Wolf 324eaa2410fSKevin Wolf fail: 325eaa2410fSKevin Wolf error_setg(errp, "%s", errmsg ?: "Image is read-only"); 326eaa2410fSKevin Wolf return -EACCES; 327fe5241bfSJeff Cody } 328fe5241bfSJeff Cody 329645ae7d8SMax Reitz /* 330645ae7d8SMax Reitz * If @backing is empty, this function returns NULL without setting 331645ae7d8SMax Reitz * @errp. In all other cases, NULL will only be returned with @errp 332645ae7d8SMax Reitz * set. 333645ae7d8SMax Reitz * 334645ae7d8SMax Reitz * Therefore, a return value of NULL without @errp set means that 335645ae7d8SMax Reitz * there is no backing file; if @errp is set, there is one but its 336645ae7d8SMax Reitz * absolute filename cannot be generated. 337645ae7d8SMax Reitz */ 338645ae7d8SMax Reitz char *bdrv_get_full_backing_filename_from_filename(const char *backed, 3390a82855aSMax Reitz const char *backing, 3409f07429eSMax Reitz Error **errp) 3410a82855aSMax Reitz { 342645ae7d8SMax Reitz if (backing[0] == '\0') { 343645ae7d8SMax Reitz return NULL; 344645ae7d8SMax Reitz } else if (path_has_protocol(backing) || path_is_absolute(backing)) { 345645ae7d8SMax Reitz return g_strdup(backing); 3469f07429eSMax Reitz } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) { 3479f07429eSMax Reitz error_setg(errp, "Cannot use relative backing file names for '%s'", 3489f07429eSMax Reitz backed); 349645ae7d8SMax Reitz return NULL; 3500a82855aSMax Reitz } else { 351645ae7d8SMax Reitz return path_combine(backed, backing); 3520a82855aSMax Reitz } 3530a82855aSMax Reitz } 3540a82855aSMax Reitz 3559f4793d8SMax Reitz /* 3569f4793d8SMax Reitz * If @filename is empty or NULL, this function returns NULL without 3579f4793d8SMax Reitz * setting @errp. In all other cases, NULL will only be returned with 3589f4793d8SMax Reitz * @errp set. 3599f4793d8SMax Reitz */ 3609f4793d8SMax Reitz static char *bdrv_make_absolute_filename(BlockDriverState *relative_to, 3619f4793d8SMax Reitz const char *filename, Error **errp) 3629f4793d8SMax Reitz { 3638df68616SMax Reitz char *dir, *full_name; 3649f4793d8SMax Reitz 3658df68616SMax Reitz if (!filename || filename[0] == '\0') { 3668df68616SMax Reitz return NULL; 3678df68616SMax Reitz } else if (path_has_protocol(filename) || path_is_absolute(filename)) { 3688df68616SMax Reitz return g_strdup(filename); 3698df68616SMax Reitz } 3709f4793d8SMax Reitz 3718df68616SMax Reitz dir = bdrv_dirname(relative_to, errp); 3728df68616SMax Reitz if (!dir) { 3738df68616SMax Reitz return NULL; 3748df68616SMax Reitz } 3759f4793d8SMax Reitz 3768df68616SMax Reitz full_name = g_strconcat(dir, filename, NULL); 3778df68616SMax Reitz g_free(dir); 3788df68616SMax Reitz return full_name; 3799f4793d8SMax Reitz } 3809f4793d8SMax Reitz 3816b6833c1SMax Reitz char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp) 382dc5a1371SPaolo Bonzini { 3839f4793d8SMax Reitz return bdrv_make_absolute_filename(bs, bs->backing_file, errp); 384dc5a1371SPaolo Bonzini } 385dc5a1371SPaolo Bonzini 3860eb7217eSStefan Hajnoczi void bdrv_register(BlockDriver *bdrv) 3870eb7217eSStefan Hajnoczi { 388a15f08dcSPhilippe Mathieu-Daudé assert(bdrv->format_name); 3898a22f02aSStefan Hajnoczi QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list); 390ea2384d3Sbellard } 391b338082bSbellard 392e4e9986bSMarkus Armbruster BlockDriverState *bdrv_new(void) 393e4e9986bSMarkus Armbruster { 394e4e9986bSMarkus Armbruster BlockDriverState *bs; 395e4e9986bSMarkus Armbruster int i; 396e4e9986bSMarkus Armbruster 3975839e53bSMarkus Armbruster bs = g_new0(BlockDriverState, 1); 398e4654d2dSFam Zheng QLIST_INIT(&bs->dirty_bitmaps); 399fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 400fbe40ff7SFam Zheng QLIST_INIT(&bs->op_blockers[i]); 401fbe40ff7SFam Zheng } 4023783fa3dSPaolo Bonzini qemu_co_mutex_init(&bs->reqs_lock); 4032119882cSPaolo Bonzini qemu_mutex_init(&bs->dirty_bitmap_mutex); 4049fcb0251SFam Zheng bs->refcnt = 1; 405dcd04228SStefan Hajnoczi bs->aio_context = qemu_get_aio_context(); 406d7d512f6SPaolo Bonzini 4073ff2f67aSEvgeny Yakovlev qemu_co_queue_init(&bs->flush_queue); 4083ff2f67aSEvgeny Yakovlev 4090bc329fbSHanna Reitz qemu_co_mutex_init(&bs->bsc_modify_lock); 4100bc329fbSHanna Reitz bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1); 4110bc329fbSHanna Reitz 4120f12264eSKevin Wolf for (i = 0; i < bdrv_drain_all_count; i++) { 4130f12264eSKevin Wolf bdrv_drained_begin(bs); 4140f12264eSKevin Wolf } 4150f12264eSKevin Wolf 4162c1d04e0SMax Reitz QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list); 4172c1d04e0SMax Reitz 418b338082bSbellard return bs; 419b338082bSbellard } 420b338082bSbellard 42188d88798SMarc Mari static BlockDriver *bdrv_do_find_format(const char *format_name) 422ea2384d3Sbellard { 423ea2384d3Sbellard BlockDriver *drv1; 42488d88798SMarc Mari 4258a22f02aSStefan Hajnoczi QLIST_FOREACH(drv1, &bdrv_drivers, list) { 4268a22f02aSStefan Hajnoczi if (!strcmp(drv1->format_name, format_name)) { 427ea2384d3Sbellard return drv1; 428ea2384d3Sbellard } 4298a22f02aSStefan Hajnoczi } 43088d88798SMarc Mari 431ea2384d3Sbellard return NULL; 432ea2384d3Sbellard } 433ea2384d3Sbellard 43488d88798SMarc Mari BlockDriver *bdrv_find_format(const char *format_name) 43588d88798SMarc Mari { 43688d88798SMarc Mari BlockDriver *drv1; 43788d88798SMarc Mari int i; 43888d88798SMarc Mari 43988d88798SMarc Mari drv1 = bdrv_do_find_format(format_name); 44088d88798SMarc Mari if (drv1) { 44188d88798SMarc Mari return drv1; 44288d88798SMarc Mari } 44388d88798SMarc Mari 44488d88798SMarc Mari /* The driver isn't registered, maybe we need to load a module */ 44588d88798SMarc Mari for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { 44688d88798SMarc Mari if (!strcmp(block_driver_modules[i].format_name, format_name)) { 44788d88798SMarc Mari block_module_load_one(block_driver_modules[i].library_name); 44888d88798SMarc Mari break; 44988d88798SMarc Mari } 45088d88798SMarc Mari } 45188d88798SMarc Mari 45288d88798SMarc Mari return bdrv_do_find_format(format_name); 45388d88798SMarc Mari } 45488d88798SMarc Mari 4559ac404c5SAndrey Shinkevich static int bdrv_format_is_whitelisted(const char *format_name, bool read_only) 456eb852011SMarkus Armbruster { 457b64ec4e4SFam Zheng static const char *whitelist_rw[] = { 458b64ec4e4SFam Zheng CONFIG_BDRV_RW_WHITELIST 459859aef02SPaolo Bonzini NULL 460b64ec4e4SFam Zheng }; 461b64ec4e4SFam Zheng static const char *whitelist_ro[] = { 462b64ec4e4SFam Zheng CONFIG_BDRV_RO_WHITELIST 463859aef02SPaolo Bonzini NULL 464eb852011SMarkus Armbruster }; 465eb852011SMarkus Armbruster const char **p; 466eb852011SMarkus Armbruster 467b64ec4e4SFam Zheng if (!whitelist_rw[0] && !whitelist_ro[0]) { 468eb852011SMarkus Armbruster return 1; /* no whitelist, anything goes */ 469b64ec4e4SFam Zheng } 470eb852011SMarkus Armbruster 471b64ec4e4SFam Zheng for (p = whitelist_rw; *p; p++) { 4729ac404c5SAndrey Shinkevich if (!strcmp(format_name, *p)) { 473eb852011SMarkus Armbruster return 1; 474eb852011SMarkus Armbruster } 475eb852011SMarkus Armbruster } 476b64ec4e4SFam Zheng if (read_only) { 477b64ec4e4SFam Zheng for (p = whitelist_ro; *p; p++) { 4789ac404c5SAndrey Shinkevich if (!strcmp(format_name, *p)) { 479b64ec4e4SFam Zheng return 1; 480b64ec4e4SFam Zheng } 481b64ec4e4SFam Zheng } 482b64ec4e4SFam Zheng } 483eb852011SMarkus Armbruster return 0; 484eb852011SMarkus Armbruster } 485eb852011SMarkus Armbruster 4869ac404c5SAndrey Shinkevich int bdrv_is_whitelisted(BlockDriver *drv, bool read_only) 4879ac404c5SAndrey Shinkevich { 4889ac404c5SAndrey Shinkevich return bdrv_format_is_whitelisted(drv->format_name, read_only); 4899ac404c5SAndrey Shinkevich } 4909ac404c5SAndrey Shinkevich 491e6ff69bfSDaniel P. Berrange bool bdrv_uses_whitelist(void) 492e6ff69bfSDaniel P. Berrange { 493e6ff69bfSDaniel P. Berrange return use_bdrv_whitelist; 494e6ff69bfSDaniel P. Berrange } 495e6ff69bfSDaniel P. Berrange 4965b7e1542SZhi Yong Wu typedef struct CreateCo { 4975b7e1542SZhi Yong Wu BlockDriver *drv; 4985b7e1542SZhi Yong Wu char *filename; 49983d0521aSChunyan Liu QemuOpts *opts; 5005b7e1542SZhi Yong Wu int ret; 501cc84d90fSMax Reitz Error *err; 5025b7e1542SZhi Yong Wu } CreateCo; 5035b7e1542SZhi Yong Wu 5045b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque) 5055b7e1542SZhi Yong Wu { 506cc84d90fSMax Reitz Error *local_err = NULL; 507cc84d90fSMax Reitz int ret; 508cc84d90fSMax Reitz 5095b7e1542SZhi Yong Wu CreateCo *cco = opaque; 5105b7e1542SZhi Yong Wu assert(cco->drv); 5115b7e1542SZhi Yong Wu 512b92902dfSMaxim Levitsky ret = cco->drv->bdrv_co_create_opts(cco->drv, 513b92902dfSMaxim Levitsky cco->filename, cco->opts, &local_err); 514cc84d90fSMax Reitz error_propagate(&cco->err, local_err); 515cc84d90fSMax Reitz cco->ret = ret; 5165b7e1542SZhi Yong Wu } 5175b7e1542SZhi Yong Wu 5180e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename, 51983d0521aSChunyan Liu QemuOpts *opts, Error **errp) 520ea2384d3Sbellard { 5215b7e1542SZhi Yong Wu int ret; 5220e7e1989SKevin Wolf 5235b7e1542SZhi Yong Wu Coroutine *co; 5245b7e1542SZhi Yong Wu CreateCo cco = { 5255b7e1542SZhi Yong Wu .drv = drv, 5265b7e1542SZhi Yong Wu .filename = g_strdup(filename), 52783d0521aSChunyan Liu .opts = opts, 5285b7e1542SZhi Yong Wu .ret = NOT_DONE, 529cc84d90fSMax Reitz .err = NULL, 5305b7e1542SZhi Yong Wu }; 5315b7e1542SZhi Yong Wu 532efc75e2aSStefan Hajnoczi if (!drv->bdrv_co_create_opts) { 533cc84d90fSMax Reitz error_setg(errp, "Driver '%s' does not support image creation", drv->format_name); 53480168bffSLuiz Capitulino ret = -ENOTSUP; 53580168bffSLuiz Capitulino goto out; 5365b7e1542SZhi Yong Wu } 5375b7e1542SZhi Yong Wu 5385b7e1542SZhi Yong Wu if (qemu_in_coroutine()) { 5395b7e1542SZhi Yong Wu /* Fast-path if already in coroutine context */ 5405b7e1542SZhi Yong Wu bdrv_create_co_entry(&cco); 5415b7e1542SZhi Yong Wu } else { 5420b8b8753SPaolo Bonzini co = qemu_coroutine_create(bdrv_create_co_entry, &cco); 5430b8b8753SPaolo Bonzini qemu_coroutine_enter(co); 5445b7e1542SZhi Yong Wu while (cco.ret == NOT_DONE) { 545b47ec2c4SPaolo Bonzini aio_poll(qemu_get_aio_context(), true); 5465b7e1542SZhi Yong Wu } 5475b7e1542SZhi Yong Wu } 5485b7e1542SZhi Yong Wu 5495b7e1542SZhi Yong Wu ret = cco.ret; 550cc84d90fSMax Reitz if (ret < 0) { 55184d18f06SMarkus Armbruster if (cco.err) { 552cc84d90fSMax Reitz error_propagate(errp, cco.err); 553cc84d90fSMax Reitz } else { 554cc84d90fSMax Reitz error_setg_errno(errp, -ret, "Could not create image"); 555cc84d90fSMax Reitz } 556cc84d90fSMax Reitz } 5575b7e1542SZhi Yong Wu 55880168bffSLuiz Capitulino out: 55980168bffSLuiz Capitulino g_free(cco.filename); 5605b7e1542SZhi Yong Wu return ret; 561ea2384d3Sbellard } 562ea2384d3Sbellard 563fd17146cSMax Reitz /** 564fd17146cSMax Reitz * Helper function for bdrv_create_file_fallback(): Resize @blk to at 565fd17146cSMax Reitz * least the given @minimum_size. 566fd17146cSMax Reitz * 567fd17146cSMax Reitz * On success, return @blk's actual length. 568fd17146cSMax Reitz * Otherwise, return -errno. 569fd17146cSMax Reitz */ 570fd17146cSMax Reitz static int64_t create_file_fallback_truncate(BlockBackend *blk, 571fd17146cSMax Reitz int64_t minimum_size, Error **errp) 572fd17146cSMax Reitz { 573fd17146cSMax Reitz Error *local_err = NULL; 574fd17146cSMax Reitz int64_t size; 575fd17146cSMax Reitz int ret; 576fd17146cSMax Reitz 5778c6242b6SKevin Wolf ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0, 5788c6242b6SKevin Wolf &local_err); 579fd17146cSMax Reitz if (ret < 0 && ret != -ENOTSUP) { 580fd17146cSMax Reitz error_propagate(errp, local_err); 581fd17146cSMax Reitz return ret; 582fd17146cSMax Reitz } 583fd17146cSMax Reitz 584fd17146cSMax Reitz size = blk_getlength(blk); 585fd17146cSMax Reitz if (size < 0) { 586fd17146cSMax Reitz error_free(local_err); 587fd17146cSMax Reitz error_setg_errno(errp, -size, 588fd17146cSMax Reitz "Failed to inquire the new image file's length"); 589fd17146cSMax Reitz return size; 590fd17146cSMax Reitz } 591fd17146cSMax Reitz 592fd17146cSMax Reitz if (size < minimum_size) { 593fd17146cSMax Reitz /* Need to grow the image, but we failed to do that */ 594fd17146cSMax Reitz error_propagate(errp, local_err); 595fd17146cSMax Reitz return -ENOTSUP; 596fd17146cSMax Reitz } 597fd17146cSMax Reitz 598fd17146cSMax Reitz error_free(local_err); 599fd17146cSMax Reitz local_err = NULL; 600fd17146cSMax Reitz 601fd17146cSMax Reitz return size; 602fd17146cSMax Reitz } 603fd17146cSMax Reitz 604fd17146cSMax Reitz /** 605fd17146cSMax Reitz * Helper function for bdrv_create_file_fallback(): Zero the first 606fd17146cSMax Reitz * sector to remove any potentially pre-existing image header. 607fd17146cSMax Reitz */ 608fd17146cSMax Reitz static int create_file_fallback_zero_first_sector(BlockBackend *blk, 609fd17146cSMax Reitz int64_t current_size, 610fd17146cSMax Reitz Error **errp) 611fd17146cSMax Reitz { 612fd17146cSMax Reitz int64_t bytes_to_clear; 613fd17146cSMax Reitz int ret; 614fd17146cSMax Reitz 615fd17146cSMax Reitz bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE); 616fd17146cSMax Reitz if (bytes_to_clear) { 617fd17146cSMax Reitz ret = blk_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP); 618fd17146cSMax Reitz if (ret < 0) { 619fd17146cSMax Reitz error_setg_errno(errp, -ret, 620fd17146cSMax Reitz "Failed to clear the new image's first sector"); 621fd17146cSMax Reitz return ret; 622fd17146cSMax Reitz } 623fd17146cSMax Reitz } 624fd17146cSMax Reitz 625fd17146cSMax Reitz return 0; 626fd17146cSMax Reitz } 627fd17146cSMax Reitz 6285a5e7f8cSMaxim Levitsky /** 6295a5e7f8cSMaxim Levitsky * Simple implementation of bdrv_co_create_opts for protocol drivers 6305a5e7f8cSMaxim Levitsky * which only support creation via opening a file 6315a5e7f8cSMaxim Levitsky * (usually existing raw storage device) 6325a5e7f8cSMaxim Levitsky */ 6335a5e7f8cSMaxim Levitsky int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv, 6345a5e7f8cSMaxim Levitsky const char *filename, 6355a5e7f8cSMaxim Levitsky QemuOpts *opts, 6365a5e7f8cSMaxim Levitsky Error **errp) 637fd17146cSMax Reitz { 638fd17146cSMax Reitz BlockBackend *blk; 639eeea1faaSMax Reitz QDict *options; 640fd17146cSMax Reitz int64_t size = 0; 641fd17146cSMax Reitz char *buf = NULL; 642fd17146cSMax Reitz PreallocMode prealloc; 643fd17146cSMax Reitz Error *local_err = NULL; 644fd17146cSMax Reitz int ret; 645fd17146cSMax Reitz 646fd17146cSMax Reitz size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0); 647fd17146cSMax Reitz buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC); 648fd17146cSMax Reitz prealloc = qapi_enum_parse(&PreallocMode_lookup, buf, 649fd17146cSMax Reitz PREALLOC_MODE_OFF, &local_err); 650fd17146cSMax Reitz g_free(buf); 651fd17146cSMax Reitz if (local_err) { 652fd17146cSMax Reitz error_propagate(errp, local_err); 653fd17146cSMax Reitz return -EINVAL; 654fd17146cSMax Reitz } 655fd17146cSMax Reitz 656fd17146cSMax Reitz if (prealloc != PREALLOC_MODE_OFF) { 657fd17146cSMax Reitz error_setg(errp, "Unsupported preallocation mode '%s'", 658fd17146cSMax Reitz PreallocMode_str(prealloc)); 659fd17146cSMax Reitz return -ENOTSUP; 660fd17146cSMax Reitz } 661fd17146cSMax Reitz 662eeea1faaSMax Reitz options = qdict_new(); 663fd17146cSMax Reitz qdict_put_str(options, "driver", drv->format_name); 664fd17146cSMax Reitz 665fd17146cSMax Reitz blk = blk_new_open(filename, NULL, options, 666fd17146cSMax Reitz BDRV_O_RDWR | BDRV_O_RESIZE, errp); 667fd17146cSMax Reitz if (!blk) { 668fd17146cSMax Reitz error_prepend(errp, "Protocol driver '%s' does not support image " 669fd17146cSMax Reitz "creation, and opening the image failed: ", 670fd17146cSMax Reitz drv->format_name); 671fd17146cSMax Reitz return -EINVAL; 672fd17146cSMax Reitz } 673fd17146cSMax Reitz 674fd17146cSMax Reitz size = create_file_fallback_truncate(blk, size, errp); 675fd17146cSMax Reitz if (size < 0) { 676fd17146cSMax Reitz ret = size; 677fd17146cSMax Reitz goto out; 678fd17146cSMax Reitz } 679fd17146cSMax Reitz 680fd17146cSMax Reitz ret = create_file_fallback_zero_first_sector(blk, size, errp); 681fd17146cSMax Reitz if (ret < 0) { 682fd17146cSMax Reitz goto out; 683fd17146cSMax Reitz } 684fd17146cSMax Reitz 685fd17146cSMax Reitz ret = 0; 686fd17146cSMax Reitz out: 687fd17146cSMax Reitz blk_unref(blk); 688fd17146cSMax Reitz return ret; 689fd17146cSMax Reitz } 690fd17146cSMax Reitz 691c282e1fdSChunyan Liu int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp) 69284a12e66SChristoph Hellwig { 693729222afSStefano Garzarella QemuOpts *protocol_opts; 69484a12e66SChristoph Hellwig BlockDriver *drv; 695729222afSStefano Garzarella QDict *qdict; 696729222afSStefano Garzarella int ret; 69784a12e66SChristoph Hellwig 698b65a5e12SMax Reitz drv = bdrv_find_protocol(filename, true, errp); 69984a12e66SChristoph Hellwig if (drv == NULL) { 70016905d71SStefan Hajnoczi return -ENOENT; 70184a12e66SChristoph Hellwig } 70284a12e66SChristoph Hellwig 703729222afSStefano Garzarella if (!drv->create_opts) { 704729222afSStefano Garzarella error_setg(errp, "Driver '%s' does not support image creation", 705729222afSStefano Garzarella drv->format_name); 706729222afSStefano Garzarella return -ENOTSUP; 707729222afSStefano Garzarella } 708729222afSStefano Garzarella 709729222afSStefano Garzarella /* 710729222afSStefano Garzarella * 'opts' contains a QemuOptsList with a combination of format and protocol 711729222afSStefano Garzarella * default values. 712729222afSStefano Garzarella * 713729222afSStefano Garzarella * The format properly removes its options, but the default values remain 714729222afSStefano Garzarella * in 'opts->list'. So if the protocol has options with the same name 715729222afSStefano Garzarella * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values 716729222afSStefano Garzarella * of the format, since for overlapping options, the format wins. 717729222afSStefano Garzarella * 718729222afSStefano Garzarella * To avoid this issue, lets convert QemuOpts to QDict, in this way we take 719729222afSStefano Garzarella * only the set options, and then convert it back to QemuOpts, using the 720729222afSStefano Garzarella * create_opts of the protocol. So the new QemuOpts, will contain only the 721729222afSStefano Garzarella * protocol defaults. 722729222afSStefano Garzarella */ 723729222afSStefano Garzarella qdict = qemu_opts_to_qdict(opts, NULL); 724729222afSStefano Garzarella protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp); 725729222afSStefano Garzarella if (protocol_opts == NULL) { 726729222afSStefano Garzarella ret = -EINVAL; 727729222afSStefano Garzarella goto out; 728729222afSStefano Garzarella } 729729222afSStefano Garzarella 730729222afSStefano Garzarella ret = bdrv_create(drv, filename, protocol_opts, errp); 731729222afSStefano Garzarella out: 732729222afSStefano Garzarella qemu_opts_del(protocol_opts); 733729222afSStefano Garzarella qobject_unref(qdict); 734729222afSStefano Garzarella return ret; 73584a12e66SChristoph Hellwig } 73684a12e66SChristoph Hellwig 737e1d7f8bbSDaniel Henrique Barboza int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp) 738e1d7f8bbSDaniel Henrique Barboza { 739e1d7f8bbSDaniel Henrique Barboza Error *local_err = NULL; 740e1d7f8bbSDaniel Henrique Barboza int ret; 741e1d7f8bbSDaniel Henrique Barboza 742e1d7f8bbSDaniel Henrique Barboza assert(bs != NULL); 743e1d7f8bbSDaniel Henrique Barboza 744e1d7f8bbSDaniel Henrique Barboza if (!bs->drv) { 745e1d7f8bbSDaniel Henrique Barboza error_setg(errp, "Block node '%s' is not opened", bs->filename); 746e1d7f8bbSDaniel Henrique Barboza return -ENOMEDIUM; 747e1d7f8bbSDaniel Henrique Barboza } 748e1d7f8bbSDaniel Henrique Barboza 749e1d7f8bbSDaniel Henrique Barboza if (!bs->drv->bdrv_co_delete_file) { 750e1d7f8bbSDaniel Henrique Barboza error_setg(errp, "Driver '%s' does not support image deletion", 751e1d7f8bbSDaniel Henrique Barboza bs->drv->format_name); 752e1d7f8bbSDaniel Henrique Barboza return -ENOTSUP; 753e1d7f8bbSDaniel Henrique Barboza } 754e1d7f8bbSDaniel Henrique Barboza 755e1d7f8bbSDaniel Henrique Barboza ret = bs->drv->bdrv_co_delete_file(bs, &local_err); 756e1d7f8bbSDaniel Henrique Barboza if (ret < 0) { 757e1d7f8bbSDaniel Henrique Barboza error_propagate(errp, local_err); 758e1d7f8bbSDaniel Henrique Barboza } 759e1d7f8bbSDaniel Henrique Barboza 760e1d7f8bbSDaniel Henrique Barboza return ret; 761e1d7f8bbSDaniel Henrique Barboza } 762e1d7f8bbSDaniel Henrique Barboza 763a890f08eSMaxim Levitsky void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs) 764a890f08eSMaxim Levitsky { 765a890f08eSMaxim Levitsky Error *local_err = NULL; 766a890f08eSMaxim Levitsky int ret; 767a890f08eSMaxim Levitsky 768a890f08eSMaxim Levitsky if (!bs) { 769a890f08eSMaxim Levitsky return; 770a890f08eSMaxim Levitsky } 771a890f08eSMaxim Levitsky 772a890f08eSMaxim Levitsky ret = bdrv_co_delete_file(bs, &local_err); 773a890f08eSMaxim Levitsky /* 774a890f08eSMaxim Levitsky * ENOTSUP will happen if the block driver doesn't support 775a890f08eSMaxim Levitsky * the 'bdrv_co_delete_file' interface. This is a predictable 776a890f08eSMaxim Levitsky * scenario and shouldn't be reported back to the user. 777a890f08eSMaxim Levitsky */ 778a890f08eSMaxim Levitsky if (ret == -ENOTSUP) { 779a890f08eSMaxim Levitsky error_free(local_err); 780a890f08eSMaxim Levitsky } else if (ret < 0) { 781a890f08eSMaxim Levitsky error_report_err(local_err); 782a890f08eSMaxim Levitsky } 783a890f08eSMaxim Levitsky } 784a890f08eSMaxim Levitsky 785892b7de8SEkaterina Tumanova /** 786892b7de8SEkaterina Tumanova * Try to get @bs's logical and physical block size. 787892b7de8SEkaterina Tumanova * On success, store them in @bsz struct and return 0. 788892b7de8SEkaterina Tumanova * On failure return -errno. 789892b7de8SEkaterina Tumanova * @bs must not be empty. 790892b7de8SEkaterina Tumanova */ 791892b7de8SEkaterina Tumanova int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz) 792892b7de8SEkaterina Tumanova { 793892b7de8SEkaterina Tumanova BlockDriver *drv = bs->drv; 79493393e69SMax Reitz BlockDriverState *filtered = bdrv_filter_bs(bs); 795892b7de8SEkaterina Tumanova 796892b7de8SEkaterina Tumanova if (drv && drv->bdrv_probe_blocksizes) { 797892b7de8SEkaterina Tumanova return drv->bdrv_probe_blocksizes(bs, bsz); 79893393e69SMax Reitz } else if (filtered) { 79993393e69SMax Reitz return bdrv_probe_blocksizes(filtered, bsz); 800892b7de8SEkaterina Tumanova } 801892b7de8SEkaterina Tumanova 802892b7de8SEkaterina Tumanova return -ENOTSUP; 803892b7de8SEkaterina Tumanova } 804892b7de8SEkaterina Tumanova 805892b7de8SEkaterina Tumanova /** 806892b7de8SEkaterina Tumanova * Try to get @bs's geometry (cyls, heads, sectors). 807892b7de8SEkaterina Tumanova * On success, store them in @geo struct and return 0. 808892b7de8SEkaterina Tumanova * On failure return -errno. 809892b7de8SEkaterina Tumanova * @bs must not be empty. 810892b7de8SEkaterina Tumanova */ 811892b7de8SEkaterina Tumanova int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo) 812892b7de8SEkaterina Tumanova { 813892b7de8SEkaterina Tumanova BlockDriver *drv = bs->drv; 81493393e69SMax Reitz BlockDriverState *filtered = bdrv_filter_bs(bs); 815892b7de8SEkaterina Tumanova 816892b7de8SEkaterina Tumanova if (drv && drv->bdrv_probe_geometry) { 817892b7de8SEkaterina Tumanova return drv->bdrv_probe_geometry(bs, geo); 81893393e69SMax Reitz } else if (filtered) { 81993393e69SMax Reitz return bdrv_probe_geometry(filtered, geo); 820892b7de8SEkaterina Tumanova } 821892b7de8SEkaterina Tumanova 822892b7de8SEkaterina Tumanova return -ENOTSUP; 823892b7de8SEkaterina Tumanova } 824892b7de8SEkaterina Tumanova 825eba25057SJim Meyering /* 826eba25057SJim Meyering * Create a uniquely-named empty temporary file. 827eba25057SJim Meyering * Return 0 upon success, otherwise a negative errno value. 828eba25057SJim Meyering */ 829eba25057SJim Meyering int get_tmp_filename(char *filename, int size) 830eba25057SJim Meyering { 831d5249393Sbellard #ifdef _WIN32 8323b9f94e1Sbellard char temp_dir[MAX_PATH]; 833eba25057SJim Meyering /* GetTempFileName requires that its output buffer (4th param) 834eba25057SJim Meyering have length MAX_PATH or greater. */ 835eba25057SJim Meyering assert(size >= MAX_PATH); 836eba25057SJim Meyering return (GetTempPath(MAX_PATH, temp_dir) 837eba25057SJim Meyering && GetTempFileName(temp_dir, "qem", 0, filename) 838eba25057SJim Meyering ? 0 : -GetLastError()); 839d5249393Sbellard #else 840ea2384d3Sbellard int fd; 8417ccfb2ebSblueswir1 const char *tmpdir; 8420badc1eeSaurel32 tmpdir = getenv("TMPDIR"); 84369bef793SAmit Shah if (!tmpdir) { 84469bef793SAmit Shah tmpdir = "/var/tmp"; 84569bef793SAmit Shah } 846eba25057SJim Meyering if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) { 847eba25057SJim Meyering return -EOVERFLOW; 848ea2384d3Sbellard } 849eba25057SJim Meyering fd = mkstemp(filename); 850fe235a06SDunrong Huang if (fd < 0) { 851fe235a06SDunrong Huang return -errno; 852fe235a06SDunrong Huang } 853fe235a06SDunrong Huang if (close(fd) != 0) { 854fe235a06SDunrong Huang unlink(filename); 855eba25057SJim Meyering return -errno; 856eba25057SJim Meyering } 857eba25057SJim Meyering return 0; 858d5249393Sbellard #endif 859eba25057SJim Meyering } 860ea2384d3Sbellard 861f3a5d3f8SChristoph Hellwig /* 862f3a5d3f8SChristoph Hellwig * Detect host devices. By convention, /dev/cdrom[N] is always 863f3a5d3f8SChristoph Hellwig * recognized as a host CDROM. 864f3a5d3f8SChristoph Hellwig */ 865f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename) 866f3a5d3f8SChristoph Hellwig { 867508c7cb3SChristoph Hellwig int score_max = 0, score; 868508c7cb3SChristoph Hellwig BlockDriver *drv = NULL, *d; 869f3a5d3f8SChristoph Hellwig 8708a22f02aSStefan Hajnoczi QLIST_FOREACH(d, &bdrv_drivers, list) { 871508c7cb3SChristoph Hellwig if (d->bdrv_probe_device) { 872508c7cb3SChristoph Hellwig score = d->bdrv_probe_device(filename); 873508c7cb3SChristoph Hellwig if (score > score_max) { 874508c7cb3SChristoph Hellwig score_max = score; 875508c7cb3SChristoph Hellwig drv = d; 876f3a5d3f8SChristoph Hellwig } 877508c7cb3SChristoph Hellwig } 878f3a5d3f8SChristoph Hellwig } 879f3a5d3f8SChristoph Hellwig 880508c7cb3SChristoph Hellwig return drv; 881f3a5d3f8SChristoph Hellwig } 882f3a5d3f8SChristoph Hellwig 88388d88798SMarc Mari static BlockDriver *bdrv_do_find_protocol(const char *protocol) 88488d88798SMarc Mari { 88588d88798SMarc Mari BlockDriver *drv1; 88688d88798SMarc Mari 88788d88798SMarc Mari QLIST_FOREACH(drv1, &bdrv_drivers, list) { 88888d88798SMarc Mari if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) { 88988d88798SMarc Mari return drv1; 89088d88798SMarc Mari } 89188d88798SMarc Mari } 89288d88798SMarc Mari 89388d88798SMarc Mari return NULL; 89488d88798SMarc Mari } 89588d88798SMarc Mari 89698289620SKevin Wolf BlockDriver *bdrv_find_protocol(const char *filename, 897b65a5e12SMax Reitz bool allow_protocol_prefix, 898b65a5e12SMax Reitz Error **errp) 89984a12e66SChristoph Hellwig { 90084a12e66SChristoph Hellwig BlockDriver *drv1; 90184a12e66SChristoph Hellwig char protocol[128]; 90284a12e66SChristoph Hellwig int len; 90384a12e66SChristoph Hellwig const char *p; 90488d88798SMarc Mari int i; 90584a12e66SChristoph Hellwig 90666f82ceeSKevin Wolf /* TODO Drivers without bdrv_file_open must be specified explicitly */ 90766f82ceeSKevin Wolf 90839508e7aSChristoph Hellwig /* 90939508e7aSChristoph Hellwig * XXX(hch): we really should not let host device detection 91039508e7aSChristoph Hellwig * override an explicit protocol specification, but moving this 91139508e7aSChristoph Hellwig * later breaks access to device names with colons in them. 91239508e7aSChristoph Hellwig * Thanks to the brain-dead persistent naming schemes on udev- 91339508e7aSChristoph Hellwig * based Linux systems those actually are quite common. 91439508e7aSChristoph Hellwig */ 91584a12e66SChristoph Hellwig drv1 = find_hdev_driver(filename); 91639508e7aSChristoph Hellwig if (drv1) { 91784a12e66SChristoph Hellwig return drv1; 91884a12e66SChristoph Hellwig } 91939508e7aSChristoph Hellwig 92098289620SKevin Wolf if (!path_has_protocol(filename) || !allow_protocol_prefix) { 921ef810437SMax Reitz return &bdrv_file; 92239508e7aSChristoph Hellwig } 92398289620SKevin Wolf 9249e0b22f4SStefan Hajnoczi p = strchr(filename, ':'); 9259e0b22f4SStefan Hajnoczi assert(p != NULL); 92684a12e66SChristoph Hellwig len = p - filename; 92784a12e66SChristoph Hellwig if (len > sizeof(protocol) - 1) 92884a12e66SChristoph Hellwig len = sizeof(protocol) - 1; 92984a12e66SChristoph Hellwig memcpy(protocol, filename, len); 93084a12e66SChristoph Hellwig protocol[len] = '\0'; 93188d88798SMarc Mari 93288d88798SMarc Mari drv1 = bdrv_do_find_protocol(protocol); 93388d88798SMarc Mari if (drv1) { 93484a12e66SChristoph Hellwig return drv1; 93584a12e66SChristoph Hellwig } 93688d88798SMarc Mari 93788d88798SMarc Mari for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { 93888d88798SMarc Mari if (block_driver_modules[i].protocol_name && 93988d88798SMarc Mari !strcmp(block_driver_modules[i].protocol_name, protocol)) { 94088d88798SMarc Mari block_module_load_one(block_driver_modules[i].library_name); 94188d88798SMarc Mari break; 94288d88798SMarc Mari } 94384a12e66SChristoph Hellwig } 944b65a5e12SMax Reitz 94588d88798SMarc Mari drv1 = bdrv_do_find_protocol(protocol); 94688d88798SMarc Mari if (!drv1) { 947b65a5e12SMax Reitz error_setg(errp, "Unknown protocol '%s'", protocol); 94888d88798SMarc Mari } 94988d88798SMarc Mari return drv1; 95084a12e66SChristoph Hellwig } 95184a12e66SChristoph Hellwig 952c6684249SMarkus Armbruster /* 953c6684249SMarkus Armbruster * Guess image format by probing its contents. 954c6684249SMarkus Armbruster * This is not a good idea when your image is raw (CVE-2008-2004), but 955c6684249SMarkus Armbruster * we do it anyway for backward compatibility. 956c6684249SMarkus Armbruster * 957c6684249SMarkus Armbruster * @buf contains the image's first @buf_size bytes. 9587cddd372SKevin Wolf * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE, 9597cddd372SKevin Wolf * but can be smaller if the image file is smaller) 960c6684249SMarkus Armbruster * @filename is its filename. 961c6684249SMarkus Armbruster * 962c6684249SMarkus Armbruster * For all block drivers, call the bdrv_probe() method to get its 963c6684249SMarkus Armbruster * probing score. 964c6684249SMarkus Armbruster * Return the first block driver with the highest probing score. 965c6684249SMarkus Armbruster */ 96638f3ef57SKevin Wolf BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size, 967c6684249SMarkus Armbruster const char *filename) 968c6684249SMarkus Armbruster { 969c6684249SMarkus Armbruster int score_max = 0, score; 970c6684249SMarkus Armbruster BlockDriver *drv = NULL, *d; 971c6684249SMarkus Armbruster 972c6684249SMarkus Armbruster QLIST_FOREACH(d, &bdrv_drivers, list) { 973c6684249SMarkus Armbruster if (d->bdrv_probe) { 974c6684249SMarkus Armbruster score = d->bdrv_probe(buf, buf_size, filename); 975c6684249SMarkus Armbruster if (score > score_max) { 976c6684249SMarkus Armbruster score_max = score; 977c6684249SMarkus Armbruster drv = d; 978c6684249SMarkus Armbruster } 979c6684249SMarkus Armbruster } 980c6684249SMarkus Armbruster } 981c6684249SMarkus Armbruster 982c6684249SMarkus Armbruster return drv; 983c6684249SMarkus Armbruster } 984c6684249SMarkus Armbruster 9855696c6e3SKevin Wolf static int find_image_format(BlockBackend *file, const char *filename, 98634b5d2c6SMax Reitz BlockDriver **pdrv, Error **errp) 987ea2384d3Sbellard { 988c6684249SMarkus Armbruster BlockDriver *drv; 9897cddd372SKevin Wolf uint8_t buf[BLOCK_PROBE_BUF_SIZE]; 990f500a6d3SKevin Wolf int ret = 0; 991f8ea0b00SNicholas Bellinger 99208a00559SKevin Wolf /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ 9935696c6e3SKevin Wolf if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) { 994ef810437SMax Reitz *pdrv = &bdrv_raw; 995c98ac35dSStefan Weil return ret; 9961a396859SNicholas A. Bellinger } 997f8ea0b00SNicholas Bellinger 9985696c6e3SKevin Wolf ret = blk_pread(file, 0, buf, sizeof(buf)); 999ea2384d3Sbellard if (ret < 0) { 100034b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not read image for determining its " 100134b5d2c6SMax Reitz "format"); 1002c98ac35dSStefan Weil *pdrv = NULL; 1003c98ac35dSStefan Weil return ret; 1004ea2384d3Sbellard } 1005ea2384d3Sbellard 1006c6684249SMarkus Armbruster drv = bdrv_probe_all(buf, ret, filename); 1007c98ac35dSStefan Weil if (!drv) { 100834b5d2c6SMax Reitz error_setg(errp, "Could not determine image format: No compatible " 100934b5d2c6SMax Reitz "driver found"); 1010c98ac35dSStefan Weil ret = -ENOENT; 1011c98ac35dSStefan Weil } 1012c98ac35dSStefan Weil *pdrv = drv; 1013c98ac35dSStefan Weil return ret; 1014ea2384d3Sbellard } 1015ea2384d3Sbellard 101651762288SStefan Hajnoczi /** 101751762288SStefan Hajnoczi * Set the current 'total_sectors' value 101865a9bb25SMarkus Armbruster * Return 0 on success, -errno on error. 101951762288SStefan Hajnoczi */ 10203d9f2d2aSKevin Wolf int refresh_total_sectors(BlockDriverState *bs, int64_t hint) 102151762288SStefan Hajnoczi { 102251762288SStefan Hajnoczi BlockDriver *drv = bs->drv; 102351762288SStefan Hajnoczi 1024d470ad42SMax Reitz if (!drv) { 1025d470ad42SMax Reitz return -ENOMEDIUM; 1026d470ad42SMax Reitz } 1027d470ad42SMax Reitz 1028396759adSNicholas Bellinger /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */ 1029b192af8aSDimitris Aragiorgis if (bdrv_is_sg(bs)) 1030396759adSNicholas Bellinger return 0; 1031396759adSNicholas Bellinger 103251762288SStefan Hajnoczi /* query actual device if possible, otherwise just trust the hint */ 103351762288SStefan Hajnoczi if (drv->bdrv_getlength) { 103451762288SStefan Hajnoczi int64_t length = drv->bdrv_getlength(bs); 103551762288SStefan Hajnoczi if (length < 0) { 103651762288SStefan Hajnoczi return length; 103751762288SStefan Hajnoczi } 10387e382003SFam Zheng hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE); 103951762288SStefan Hajnoczi } 104051762288SStefan Hajnoczi 104151762288SStefan Hajnoczi bs->total_sectors = hint; 10428b117001SVladimir Sementsov-Ogievskiy 10438b117001SVladimir Sementsov-Ogievskiy if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) { 10448b117001SVladimir Sementsov-Ogievskiy return -EFBIG; 10458b117001SVladimir Sementsov-Ogievskiy } 10468b117001SVladimir Sementsov-Ogievskiy 104751762288SStefan Hajnoczi return 0; 104851762288SStefan Hajnoczi } 104951762288SStefan Hajnoczi 1050c3993cdcSStefan Hajnoczi /** 1051cddff5baSKevin Wolf * Combines a QDict of new block driver @options with any missing options taken 1052cddff5baSKevin Wolf * from @old_options, so that leaving out an option defaults to its old value. 1053cddff5baSKevin Wolf */ 1054cddff5baSKevin Wolf static void bdrv_join_options(BlockDriverState *bs, QDict *options, 1055cddff5baSKevin Wolf QDict *old_options) 1056cddff5baSKevin Wolf { 1057cddff5baSKevin Wolf if (bs->drv && bs->drv->bdrv_join_options) { 1058cddff5baSKevin Wolf bs->drv->bdrv_join_options(options, old_options); 1059cddff5baSKevin Wolf } else { 1060cddff5baSKevin Wolf qdict_join(options, old_options, false); 1061cddff5baSKevin Wolf } 1062cddff5baSKevin Wolf } 1063cddff5baSKevin Wolf 1064543770bdSAlberto Garcia static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts, 1065543770bdSAlberto Garcia int open_flags, 1066543770bdSAlberto Garcia Error **errp) 1067543770bdSAlberto Garcia { 1068543770bdSAlberto Garcia Error *local_err = NULL; 1069543770bdSAlberto Garcia char *value = qemu_opt_get_del(opts, "detect-zeroes"); 1070543770bdSAlberto Garcia BlockdevDetectZeroesOptions detect_zeroes = 1071543770bdSAlberto Garcia qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value, 1072543770bdSAlberto Garcia BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err); 1073543770bdSAlberto Garcia g_free(value); 1074543770bdSAlberto Garcia if (local_err) { 1075543770bdSAlberto Garcia error_propagate(errp, local_err); 1076543770bdSAlberto Garcia return detect_zeroes; 1077543770bdSAlberto Garcia } 1078543770bdSAlberto Garcia 1079543770bdSAlberto Garcia if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP && 1080543770bdSAlberto Garcia !(open_flags & BDRV_O_UNMAP)) 1081543770bdSAlberto Garcia { 1082543770bdSAlberto Garcia error_setg(errp, "setting detect-zeroes to unmap is not allowed " 1083543770bdSAlberto Garcia "without setting discard operation to unmap"); 1084543770bdSAlberto Garcia } 1085543770bdSAlberto Garcia 1086543770bdSAlberto Garcia return detect_zeroes; 1087543770bdSAlberto Garcia } 1088543770bdSAlberto Garcia 1089cddff5baSKevin Wolf /** 1090f80f2673SAarushi Mehta * Set open flags for aio engine 1091f80f2673SAarushi Mehta * 1092f80f2673SAarushi Mehta * Return 0 on success, -1 if the engine specified is invalid 1093f80f2673SAarushi Mehta */ 1094f80f2673SAarushi Mehta int bdrv_parse_aio(const char *mode, int *flags) 1095f80f2673SAarushi Mehta { 1096f80f2673SAarushi Mehta if (!strcmp(mode, "threads")) { 1097f80f2673SAarushi Mehta /* do nothing, default */ 1098f80f2673SAarushi Mehta } else if (!strcmp(mode, "native")) { 1099f80f2673SAarushi Mehta *flags |= BDRV_O_NATIVE_AIO; 1100f80f2673SAarushi Mehta #ifdef CONFIG_LINUX_IO_URING 1101f80f2673SAarushi Mehta } else if (!strcmp(mode, "io_uring")) { 1102f80f2673SAarushi Mehta *flags |= BDRV_O_IO_URING; 1103f80f2673SAarushi Mehta #endif 1104f80f2673SAarushi Mehta } else { 1105f80f2673SAarushi Mehta return -1; 1106f80f2673SAarushi Mehta } 1107f80f2673SAarushi Mehta 1108f80f2673SAarushi Mehta return 0; 1109f80f2673SAarushi Mehta } 1110f80f2673SAarushi Mehta 1111f80f2673SAarushi Mehta /** 11129e8f1835SPaolo Bonzini * Set open flags for a given discard mode 11139e8f1835SPaolo Bonzini * 11149e8f1835SPaolo Bonzini * Return 0 on success, -1 if the discard mode was invalid. 11159e8f1835SPaolo Bonzini */ 11169e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags) 11179e8f1835SPaolo Bonzini { 11189e8f1835SPaolo Bonzini *flags &= ~BDRV_O_UNMAP; 11199e8f1835SPaolo Bonzini 11209e8f1835SPaolo Bonzini if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) { 11219e8f1835SPaolo Bonzini /* do nothing */ 11229e8f1835SPaolo Bonzini } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) { 11239e8f1835SPaolo Bonzini *flags |= BDRV_O_UNMAP; 11249e8f1835SPaolo Bonzini } else { 11259e8f1835SPaolo Bonzini return -1; 11269e8f1835SPaolo Bonzini } 11279e8f1835SPaolo Bonzini 11289e8f1835SPaolo Bonzini return 0; 11299e8f1835SPaolo Bonzini } 11309e8f1835SPaolo Bonzini 11319e8f1835SPaolo Bonzini /** 1132c3993cdcSStefan Hajnoczi * Set open flags for a given cache mode 1133c3993cdcSStefan Hajnoczi * 1134c3993cdcSStefan Hajnoczi * Return 0 on success, -1 if the cache mode was invalid. 1135c3993cdcSStefan Hajnoczi */ 113653e8ae01SKevin Wolf int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough) 1137c3993cdcSStefan Hajnoczi { 1138c3993cdcSStefan Hajnoczi *flags &= ~BDRV_O_CACHE_MASK; 1139c3993cdcSStefan Hajnoczi 1140c3993cdcSStefan Hajnoczi if (!strcmp(mode, "off") || !strcmp(mode, "none")) { 114153e8ae01SKevin Wolf *writethrough = false; 114253e8ae01SKevin Wolf *flags |= BDRV_O_NOCACHE; 114392196b2fSStefan Hajnoczi } else if (!strcmp(mode, "directsync")) { 114453e8ae01SKevin Wolf *writethrough = true; 114592196b2fSStefan Hajnoczi *flags |= BDRV_O_NOCACHE; 1146c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writeback")) { 114753e8ae01SKevin Wolf *writethrough = false; 1148c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "unsafe")) { 114953e8ae01SKevin Wolf *writethrough = false; 1150c3993cdcSStefan Hajnoczi *flags |= BDRV_O_NO_FLUSH; 1151c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writethrough")) { 115253e8ae01SKevin Wolf *writethrough = true; 1153c3993cdcSStefan Hajnoczi } else { 1154c3993cdcSStefan Hajnoczi return -1; 1155c3993cdcSStefan Hajnoczi } 1156c3993cdcSStefan Hajnoczi 1157c3993cdcSStefan Hajnoczi return 0; 1158c3993cdcSStefan Hajnoczi } 1159c3993cdcSStefan Hajnoczi 1160b5411555SKevin Wolf static char *bdrv_child_get_parent_desc(BdrvChild *c) 1161b5411555SKevin Wolf { 1162b5411555SKevin Wolf BlockDriverState *parent = c->opaque; 11632c0a3acbSVladimir Sementsov-Ogievskiy return g_strdup_printf("node '%s'", bdrv_get_node_name(parent)); 1164b5411555SKevin Wolf } 1165b5411555SKevin Wolf 116620018e12SKevin Wolf static void bdrv_child_cb_drained_begin(BdrvChild *child) 116720018e12SKevin Wolf { 116820018e12SKevin Wolf BlockDriverState *bs = child->opaque; 11696cd5c9d7SKevin Wolf bdrv_do_drained_begin_quiesce(bs, NULL, false); 117020018e12SKevin Wolf } 117120018e12SKevin Wolf 117289bd0305SKevin Wolf static bool bdrv_child_cb_drained_poll(BdrvChild *child) 117389bd0305SKevin Wolf { 117489bd0305SKevin Wolf BlockDriverState *bs = child->opaque; 11756cd5c9d7SKevin Wolf return bdrv_drain_poll(bs, false, NULL, false); 117689bd0305SKevin Wolf } 117789bd0305SKevin Wolf 1178e037c09cSMax Reitz static void bdrv_child_cb_drained_end(BdrvChild *child, 1179e037c09cSMax Reitz int *drained_end_counter) 118020018e12SKevin Wolf { 118120018e12SKevin Wolf BlockDriverState *bs = child->opaque; 1182e037c09cSMax Reitz bdrv_drained_end_no_poll(bs, drained_end_counter); 118320018e12SKevin Wolf } 118420018e12SKevin Wolf 118538701b6aSKevin Wolf static int bdrv_child_cb_inactivate(BdrvChild *child) 118638701b6aSKevin Wolf { 118738701b6aSKevin Wolf BlockDriverState *bs = child->opaque; 118838701b6aSKevin Wolf assert(bs->open_flags & BDRV_O_INACTIVE); 118938701b6aSKevin Wolf return 0; 119038701b6aSKevin Wolf } 119138701b6aSKevin Wolf 11925d231849SKevin Wolf static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild *child, AioContext *ctx, 11935d231849SKevin Wolf GSList **ignore, Error **errp) 11945d231849SKevin Wolf { 11955d231849SKevin Wolf BlockDriverState *bs = child->opaque; 11965d231849SKevin Wolf return bdrv_can_set_aio_context(bs, ctx, ignore, errp); 11975d231849SKevin Wolf } 11985d231849SKevin Wolf 119953a7d041SKevin Wolf static void bdrv_child_cb_set_aio_ctx(BdrvChild *child, AioContext *ctx, 120053a7d041SKevin Wolf GSList **ignore) 120153a7d041SKevin Wolf { 120253a7d041SKevin Wolf BlockDriverState *bs = child->opaque; 120353a7d041SKevin Wolf return bdrv_set_aio_context_ignore(bs, ctx, ignore); 120453a7d041SKevin Wolf } 120553a7d041SKevin Wolf 12060b50cc88SKevin Wolf /* 120773176beeSKevin Wolf * Returns the options and flags that a temporary snapshot should get, based on 120873176beeSKevin Wolf * the originally requested flags (the originally requested image will have 120973176beeSKevin Wolf * flags like a backing file) 1210b1e6fc08SKevin Wolf */ 121173176beeSKevin Wolf static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options, 121273176beeSKevin Wolf int parent_flags, QDict *parent_options) 1213b1e6fc08SKevin Wolf { 121473176beeSKevin Wolf *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY; 121573176beeSKevin Wolf 121673176beeSKevin Wolf /* For temporary files, unconditional cache=unsafe is fine */ 121773176beeSKevin Wolf qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off"); 121873176beeSKevin Wolf qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on"); 121941869044SKevin Wolf 12203f48686fSKevin Wolf /* Copy the read-only and discard options from the parent */ 1221f87a0e29SAlberto Garcia qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); 12223f48686fSKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD); 1223f87a0e29SAlberto Garcia 122441869044SKevin Wolf /* aio=native doesn't work for cache.direct=off, so disable it for the 122541869044SKevin Wolf * temporary snapshot */ 122641869044SKevin Wolf *child_flags &= ~BDRV_O_NATIVE_AIO; 1227b1e6fc08SKevin Wolf } 1228b1e6fc08SKevin Wolf 1229db95dbbaSKevin Wolf static void bdrv_backing_attach(BdrvChild *c) 1230db95dbbaSKevin Wolf { 1231db95dbbaSKevin Wolf BlockDriverState *parent = c->opaque; 1232db95dbbaSKevin Wolf BlockDriverState *backing_hd = c->bs; 1233db95dbbaSKevin Wolf 1234db95dbbaSKevin Wolf assert(!parent->backing_blocker); 1235db95dbbaSKevin Wolf error_setg(&parent->backing_blocker, 1236db95dbbaSKevin Wolf "node is used as backing hd of '%s'", 1237db95dbbaSKevin Wolf bdrv_get_device_or_node_name(parent)); 1238db95dbbaSKevin Wolf 1239f30c66baSMax Reitz bdrv_refresh_filename(backing_hd); 1240f30c66baSMax Reitz 1241db95dbbaSKevin Wolf parent->open_flags &= ~BDRV_O_NO_BACKING; 1242db95dbbaSKevin Wolf 1243db95dbbaSKevin Wolf bdrv_op_block_all(backing_hd, parent->backing_blocker); 1244db95dbbaSKevin Wolf /* Otherwise we won't be able to commit or stream */ 1245db95dbbaSKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET, 1246db95dbbaSKevin Wolf parent->backing_blocker); 1247db95dbbaSKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM, 1248db95dbbaSKevin Wolf parent->backing_blocker); 1249db95dbbaSKevin Wolf /* 1250db95dbbaSKevin Wolf * We do backup in 3 ways: 1251db95dbbaSKevin Wolf * 1. drive backup 1252db95dbbaSKevin Wolf * The target bs is new opened, and the source is top BDS 1253db95dbbaSKevin Wolf * 2. blockdev backup 1254db95dbbaSKevin Wolf * Both the source and the target are top BDSes. 1255db95dbbaSKevin Wolf * 3. internal backup(used for block replication) 1256db95dbbaSKevin Wolf * Both the source and the target are backing file 1257db95dbbaSKevin Wolf * 1258db95dbbaSKevin Wolf * In case 1 and 2, neither the source nor the target is the backing file. 1259db95dbbaSKevin Wolf * In case 3, we will block the top BDS, so there is only one block job 1260db95dbbaSKevin Wolf * for the top BDS and its backing chain. 1261db95dbbaSKevin Wolf */ 1262db95dbbaSKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE, 1263db95dbbaSKevin Wolf parent->backing_blocker); 1264db95dbbaSKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET, 1265db95dbbaSKevin Wolf parent->backing_blocker); 1266ca2f1234SMax Reitz } 1267d736f119SKevin Wolf 1268db95dbbaSKevin Wolf static void bdrv_backing_detach(BdrvChild *c) 1269db95dbbaSKevin Wolf { 1270db95dbbaSKevin Wolf BlockDriverState *parent = c->opaque; 1271db95dbbaSKevin Wolf 1272db95dbbaSKevin Wolf assert(parent->backing_blocker); 1273db95dbbaSKevin Wolf bdrv_op_unblock_all(c->bs, parent->backing_blocker); 1274db95dbbaSKevin Wolf error_free(parent->backing_blocker); 1275db95dbbaSKevin Wolf parent->backing_blocker = NULL; 127648e08288SMax Reitz } 1277d736f119SKevin Wolf 12786858eba0SKevin Wolf static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base, 12796858eba0SKevin Wolf const char *filename, Error **errp) 12806858eba0SKevin Wolf { 12816858eba0SKevin Wolf BlockDriverState *parent = c->opaque; 1282e94d3dbaSAlberto Garcia bool read_only = bdrv_is_read_only(parent); 12836858eba0SKevin Wolf int ret; 12846858eba0SKevin Wolf 1285e94d3dbaSAlberto Garcia if (read_only) { 1286e94d3dbaSAlberto Garcia ret = bdrv_reopen_set_read_only(parent, false, errp); 128761f09ceaSKevin Wolf if (ret < 0) { 128861f09ceaSKevin Wolf return ret; 128961f09ceaSKevin Wolf } 129061f09ceaSKevin Wolf } 129161f09ceaSKevin Wolf 12926858eba0SKevin Wolf ret = bdrv_change_backing_file(parent, filename, 1293e54ee1b3SEric Blake base->drv ? base->drv->format_name : "", 1294e54ee1b3SEric Blake false); 12956858eba0SKevin Wolf if (ret < 0) { 129664730694SKevin Wolf error_setg_errno(errp, -ret, "Could not update backing file link"); 12976858eba0SKevin Wolf } 12986858eba0SKevin Wolf 1299e94d3dbaSAlberto Garcia if (read_only) { 1300e94d3dbaSAlberto Garcia bdrv_reopen_set_read_only(parent, true, NULL); 130161f09ceaSKevin Wolf } 130261f09ceaSKevin Wolf 13036858eba0SKevin Wolf return ret; 13046858eba0SKevin Wolf } 13056858eba0SKevin Wolf 1306fae8bd39SMax Reitz /* 1307fae8bd39SMax Reitz * Returns the options and flags that a generic child of a BDS should 1308fae8bd39SMax Reitz * get, based on the given options and flags for the parent BDS. 1309fae8bd39SMax Reitz */ 131000ff7ffdSMax Reitz static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format, 1311fae8bd39SMax Reitz int *child_flags, QDict *child_options, 1312fae8bd39SMax Reitz int parent_flags, QDict *parent_options) 1313fae8bd39SMax Reitz { 1314fae8bd39SMax Reitz int flags = parent_flags; 1315fae8bd39SMax Reitz 1316fae8bd39SMax Reitz /* 1317fae8bd39SMax Reitz * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL. 1318fae8bd39SMax Reitz * Generally, the question to answer is: Should this child be 1319fae8bd39SMax Reitz * format-probed by default? 1320fae8bd39SMax Reitz */ 1321fae8bd39SMax Reitz 1322fae8bd39SMax Reitz /* 1323fae8bd39SMax Reitz * Pure and non-filtered data children of non-format nodes should 1324fae8bd39SMax Reitz * be probed by default (even when the node itself has BDRV_O_PROTOCOL 1325fae8bd39SMax Reitz * set). This only affects a very limited set of drivers (namely 1326fae8bd39SMax Reitz * quorum and blkverify when this comment was written). 1327fae8bd39SMax Reitz * Force-clear BDRV_O_PROTOCOL then. 1328fae8bd39SMax Reitz */ 1329fae8bd39SMax Reitz if (!parent_is_format && 1330fae8bd39SMax Reitz (role & BDRV_CHILD_DATA) && 1331fae8bd39SMax Reitz !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED))) 1332fae8bd39SMax Reitz { 1333fae8bd39SMax Reitz flags &= ~BDRV_O_PROTOCOL; 1334fae8bd39SMax Reitz } 1335fae8bd39SMax Reitz 1336fae8bd39SMax Reitz /* 1337fae8bd39SMax Reitz * All children of format nodes (except for COW children) and all 1338fae8bd39SMax Reitz * metadata children in general should never be format-probed. 1339fae8bd39SMax Reitz * Force-set BDRV_O_PROTOCOL then. 1340fae8bd39SMax Reitz */ 1341fae8bd39SMax Reitz if ((parent_is_format && !(role & BDRV_CHILD_COW)) || 1342fae8bd39SMax Reitz (role & BDRV_CHILD_METADATA)) 1343fae8bd39SMax Reitz { 1344fae8bd39SMax Reitz flags |= BDRV_O_PROTOCOL; 1345fae8bd39SMax Reitz } 1346fae8bd39SMax Reitz 1347fae8bd39SMax Reitz /* 1348fae8bd39SMax Reitz * If the cache mode isn't explicitly set, inherit direct and no-flush from 1349fae8bd39SMax Reitz * the parent. 1350fae8bd39SMax Reitz */ 1351fae8bd39SMax Reitz qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); 1352fae8bd39SMax Reitz qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); 1353fae8bd39SMax Reitz qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE); 1354fae8bd39SMax Reitz 1355fae8bd39SMax Reitz if (role & BDRV_CHILD_COW) { 1356fae8bd39SMax Reitz /* backing files are opened read-only by default */ 1357fae8bd39SMax Reitz qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on"); 1358fae8bd39SMax Reitz qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off"); 1359fae8bd39SMax Reitz } else { 1360fae8bd39SMax Reitz /* Inherit the read-only option from the parent if it's not set */ 1361fae8bd39SMax Reitz qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); 1362fae8bd39SMax Reitz qdict_copy_default(child_options, parent_options, 1363fae8bd39SMax Reitz BDRV_OPT_AUTO_READ_ONLY); 1364fae8bd39SMax Reitz } 1365fae8bd39SMax Reitz 1366fae8bd39SMax Reitz /* 1367fae8bd39SMax Reitz * bdrv_co_pdiscard() respects unmap policy for the parent, so we 1368fae8bd39SMax Reitz * can default to enable it on lower layers regardless of the 1369fae8bd39SMax Reitz * parent option. 1370fae8bd39SMax Reitz */ 1371fae8bd39SMax Reitz qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap"); 1372fae8bd39SMax Reitz 1373fae8bd39SMax Reitz /* Clear flags that only apply to the top layer */ 1374fae8bd39SMax Reitz flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ); 1375fae8bd39SMax Reitz 1376fae8bd39SMax Reitz if (role & BDRV_CHILD_METADATA) { 1377fae8bd39SMax Reitz flags &= ~BDRV_O_NO_IO; 1378fae8bd39SMax Reitz } 1379fae8bd39SMax Reitz if (role & BDRV_CHILD_COW) { 1380fae8bd39SMax Reitz flags &= ~BDRV_O_TEMPORARY; 1381fae8bd39SMax Reitz } 1382fae8bd39SMax Reitz 1383fae8bd39SMax Reitz *child_flags = flags; 1384fae8bd39SMax Reitz } 1385fae8bd39SMax Reitz 1386ca2f1234SMax Reitz static void bdrv_child_cb_attach(BdrvChild *child) 1387ca2f1234SMax Reitz { 1388ca2f1234SMax Reitz BlockDriverState *bs = child->opaque; 1389ca2f1234SMax Reitz 1390a225369bSHanna Reitz QLIST_INSERT_HEAD(&bs->children, child, next); 1391a225369bSHanna Reitz 1392ca2f1234SMax Reitz if (child->role & BDRV_CHILD_COW) { 1393ca2f1234SMax Reitz bdrv_backing_attach(child); 1394ca2f1234SMax Reitz } 1395ca2f1234SMax Reitz 1396ca2f1234SMax Reitz bdrv_apply_subtree_drain(child, bs); 1397ca2f1234SMax Reitz } 1398ca2f1234SMax Reitz 139948e08288SMax Reitz static void bdrv_child_cb_detach(BdrvChild *child) 140048e08288SMax Reitz { 140148e08288SMax Reitz BlockDriverState *bs = child->opaque; 140248e08288SMax Reitz 140348e08288SMax Reitz if (child->role & BDRV_CHILD_COW) { 140448e08288SMax Reitz bdrv_backing_detach(child); 140548e08288SMax Reitz } 140648e08288SMax Reitz 140748e08288SMax Reitz bdrv_unapply_subtree_drain(child, bs); 1408a225369bSHanna Reitz 1409a225369bSHanna Reitz QLIST_REMOVE(child, next); 141048e08288SMax Reitz } 141148e08288SMax Reitz 141243483550SMax Reitz static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base, 141343483550SMax Reitz const char *filename, Error **errp) 141443483550SMax Reitz { 141543483550SMax Reitz if (c->role & BDRV_CHILD_COW) { 141643483550SMax Reitz return bdrv_backing_update_filename(c, base, filename, errp); 141743483550SMax Reitz } 141843483550SMax Reitz return 0; 141943483550SMax Reitz } 142043483550SMax Reitz 1421fb62b588SVladimir Sementsov-Ogievskiy AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c) 14223ca1f322SVladimir Sementsov-Ogievskiy { 14233ca1f322SVladimir Sementsov-Ogievskiy BlockDriverState *bs = c->opaque; 14243ca1f322SVladimir Sementsov-Ogievskiy 14253ca1f322SVladimir Sementsov-Ogievskiy return bdrv_get_aio_context(bs); 14263ca1f322SVladimir Sementsov-Ogievskiy } 14273ca1f322SVladimir Sementsov-Ogievskiy 142843483550SMax Reitz const BdrvChildClass child_of_bds = { 142943483550SMax Reitz .parent_is_bds = true, 143043483550SMax Reitz .get_parent_desc = bdrv_child_get_parent_desc, 143143483550SMax Reitz .inherit_options = bdrv_inherited_options, 143243483550SMax Reitz .drained_begin = bdrv_child_cb_drained_begin, 143343483550SMax Reitz .drained_poll = bdrv_child_cb_drained_poll, 143443483550SMax Reitz .drained_end = bdrv_child_cb_drained_end, 143543483550SMax Reitz .attach = bdrv_child_cb_attach, 143643483550SMax Reitz .detach = bdrv_child_cb_detach, 143743483550SMax Reitz .inactivate = bdrv_child_cb_inactivate, 143843483550SMax Reitz .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx, 143943483550SMax Reitz .set_aio_ctx = bdrv_child_cb_set_aio_ctx, 144043483550SMax Reitz .update_filename = bdrv_child_cb_update_filename, 1441fb62b588SVladimir Sementsov-Ogievskiy .get_parent_aio_context = child_of_bds_get_parent_aio_context, 144243483550SMax Reitz }; 144343483550SMax Reitz 14443ca1f322SVladimir Sementsov-Ogievskiy AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c) 14453ca1f322SVladimir Sementsov-Ogievskiy { 14463ca1f322SVladimir Sementsov-Ogievskiy return c->klass->get_parent_aio_context(c); 14473ca1f322SVladimir Sementsov-Ogievskiy } 14483ca1f322SVladimir Sementsov-Ogievskiy 14497b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags) 14507b272452SKevin Wolf { 145161de4c68SKevin Wolf int open_flags = flags; 14527b272452SKevin Wolf 14537b272452SKevin Wolf /* 14547b272452SKevin Wolf * Clear flags that are internal to the block layer before opening the 14557b272452SKevin Wolf * image. 14567b272452SKevin Wolf */ 145720cca275SKevin Wolf open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL); 14587b272452SKevin Wolf 14597b272452SKevin Wolf return open_flags; 14607b272452SKevin Wolf } 14617b272452SKevin Wolf 146291a097e7SKevin Wolf static void update_flags_from_options(int *flags, QemuOpts *opts) 146391a097e7SKevin Wolf { 14642a3d4331SAlberto Garcia *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY); 146591a097e7SKevin Wolf 146657f9db9aSAlberto Garcia if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) { 146791a097e7SKevin Wolf *flags |= BDRV_O_NO_FLUSH; 146891a097e7SKevin Wolf } 146991a097e7SKevin Wolf 147057f9db9aSAlberto Garcia if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) { 147191a097e7SKevin Wolf *flags |= BDRV_O_NOCACHE; 147291a097e7SKevin Wolf } 1473f87a0e29SAlberto Garcia 147457f9db9aSAlberto Garcia if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) { 1475f87a0e29SAlberto Garcia *flags |= BDRV_O_RDWR; 1476f87a0e29SAlberto Garcia } 1477f87a0e29SAlberto Garcia 1478e35bdc12SKevin Wolf if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) { 1479e35bdc12SKevin Wolf *flags |= BDRV_O_AUTO_RDONLY; 1480e35bdc12SKevin Wolf } 148191a097e7SKevin Wolf } 148291a097e7SKevin Wolf 148391a097e7SKevin Wolf static void update_options_from_flags(QDict *options, int flags) 148491a097e7SKevin Wolf { 148591a097e7SKevin Wolf if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) { 148646f5ac20SEric Blake qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE); 148791a097e7SKevin Wolf } 148891a097e7SKevin Wolf if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) { 148946f5ac20SEric Blake qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH, 149046f5ac20SEric Blake flags & BDRV_O_NO_FLUSH); 149191a097e7SKevin Wolf } 1492f87a0e29SAlberto Garcia if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) { 149346f5ac20SEric Blake qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR)); 1494f87a0e29SAlberto Garcia } 1495e35bdc12SKevin Wolf if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) { 1496e35bdc12SKevin Wolf qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY, 1497e35bdc12SKevin Wolf flags & BDRV_O_AUTO_RDONLY); 1498e35bdc12SKevin Wolf } 149991a097e7SKevin Wolf } 150091a097e7SKevin Wolf 1501636ea370SKevin Wolf static void bdrv_assign_node_name(BlockDriverState *bs, 15026913c0c2SBenoît Canet const char *node_name, 15036913c0c2SBenoît Canet Error **errp) 15046913c0c2SBenoît Canet { 150515489c76SJeff Cody char *gen_node_name = NULL; 15066913c0c2SBenoît Canet 150715489c76SJeff Cody if (!node_name) { 150815489c76SJeff Cody node_name = gen_node_name = id_generate(ID_BLOCK); 150915489c76SJeff Cody } else if (!id_wellformed(node_name)) { 151015489c76SJeff Cody /* 151115489c76SJeff Cody * Check for empty string or invalid characters, but not if it is 151215489c76SJeff Cody * generated (generated names use characters not available to the user) 151315489c76SJeff Cody */ 1514785ec4b1SConnor Kuehl error_setg(errp, "Invalid node-name: '%s'", node_name); 1515636ea370SKevin Wolf return; 15166913c0c2SBenoît Canet } 15176913c0c2SBenoît Canet 15180c5e94eeSBenoît Canet /* takes care of avoiding namespaces collisions */ 15197f06d47eSMarkus Armbruster if (blk_by_name(node_name)) { 15200c5e94eeSBenoît Canet error_setg(errp, "node-name=%s is conflicting with a device id", 15210c5e94eeSBenoît Canet node_name); 152215489c76SJeff Cody goto out; 15230c5e94eeSBenoît Canet } 15240c5e94eeSBenoît Canet 15256913c0c2SBenoît Canet /* takes care of avoiding duplicates node names */ 15266913c0c2SBenoît Canet if (bdrv_find_node(node_name)) { 1527785ec4b1SConnor Kuehl error_setg(errp, "Duplicate nodes with node-name='%s'", node_name); 152815489c76SJeff Cody goto out; 15296913c0c2SBenoît Canet } 15306913c0c2SBenoît Canet 1531824808ddSKevin Wolf /* Make sure that the node name isn't truncated */ 1532824808ddSKevin Wolf if (strlen(node_name) >= sizeof(bs->node_name)) { 1533824808ddSKevin Wolf error_setg(errp, "Node name too long"); 1534824808ddSKevin Wolf goto out; 1535824808ddSKevin Wolf } 1536824808ddSKevin Wolf 15376913c0c2SBenoît Canet /* copy node name into the bs and insert it into the graph list */ 15386913c0c2SBenoît Canet pstrcpy(bs->node_name, sizeof(bs->node_name), node_name); 15396913c0c2SBenoît Canet QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list); 154015489c76SJeff Cody out: 154115489c76SJeff Cody g_free(gen_node_name); 15426913c0c2SBenoît Canet } 15436913c0c2SBenoît Canet 154401a56501SKevin Wolf static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv, 154501a56501SKevin Wolf const char *node_name, QDict *options, 154601a56501SKevin Wolf int open_flags, Error **errp) 154701a56501SKevin Wolf { 154801a56501SKevin Wolf Error *local_err = NULL; 15490f12264eSKevin Wolf int i, ret; 155001a56501SKevin Wolf 155101a56501SKevin Wolf bdrv_assign_node_name(bs, node_name, &local_err); 155201a56501SKevin Wolf if (local_err) { 155301a56501SKevin Wolf error_propagate(errp, local_err); 155401a56501SKevin Wolf return -EINVAL; 155501a56501SKevin Wolf } 155601a56501SKevin Wolf 155701a56501SKevin Wolf bs->drv = drv; 155801a56501SKevin Wolf bs->opaque = g_malloc0(drv->instance_size); 155901a56501SKevin Wolf 156001a56501SKevin Wolf if (drv->bdrv_file_open) { 156101a56501SKevin Wolf assert(!drv->bdrv_needs_filename || bs->filename[0]); 156201a56501SKevin Wolf ret = drv->bdrv_file_open(bs, options, open_flags, &local_err); 1563680c7f96SKevin Wolf } else if (drv->bdrv_open) { 156401a56501SKevin Wolf ret = drv->bdrv_open(bs, options, open_flags, &local_err); 1565680c7f96SKevin Wolf } else { 1566680c7f96SKevin Wolf ret = 0; 156701a56501SKevin Wolf } 156801a56501SKevin Wolf 156901a56501SKevin Wolf if (ret < 0) { 157001a56501SKevin Wolf if (local_err) { 157101a56501SKevin Wolf error_propagate(errp, local_err); 157201a56501SKevin Wolf } else if (bs->filename[0]) { 157301a56501SKevin Wolf error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename); 157401a56501SKevin Wolf } else { 157501a56501SKevin Wolf error_setg_errno(errp, -ret, "Could not open image"); 157601a56501SKevin Wolf } 1577180ca19aSManos Pitsidianakis goto open_failed; 157801a56501SKevin Wolf } 157901a56501SKevin Wolf 158001a56501SKevin Wolf ret = refresh_total_sectors(bs, bs->total_sectors); 158101a56501SKevin Wolf if (ret < 0) { 158201a56501SKevin Wolf error_setg_errno(errp, -ret, "Could not refresh total sector count"); 1583180ca19aSManos Pitsidianakis return ret; 158401a56501SKevin Wolf } 158501a56501SKevin Wolf 15861e4c797cSVladimir Sementsov-Ogievskiy bdrv_refresh_limits(bs, NULL, &local_err); 158701a56501SKevin Wolf if (local_err) { 158801a56501SKevin Wolf error_propagate(errp, local_err); 1589180ca19aSManos Pitsidianakis return -EINVAL; 159001a56501SKevin Wolf } 159101a56501SKevin Wolf 159201a56501SKevin Wolf assert(bdrv_opt_mem_align(bs) != 0); 159301a56501SKevin Wolf assert(bdrv_min_mem_align(bs) != 0); 159401a56501SKevin Wolf assert(is_power_of_2(bs->bl.request_alignment)); 159501a56501SKevin Wolf 15960f12264eSKevin Wolf for (i = 0; i < bs->quiesce_counter; i++) { 15970f12264eSKevin Wolf if (drv->bdrv_co_drain_begin) { 15980f12264eSKevin Wolf drv->bdrv_co_drain_begin(bs); 15990f12264eSKevin Wolf } 16000f12264eSKevin Wolf } 16010f12264eSKevin Wolf 160201a56501SKevin Wolf return 0; 1603180ca19aSManos Pitsidianakis open_failed: 1604180ca19aSManos Pitsidianakis bs->drv = NULL; 1605180ca19aSManos Pitsidianakis if (bs->file != NULL) { 1606180ca19aSManos Pitsidianakis bdrv_unref_child(bs, bs->file); 1607180ca19aSManos Pitsidianakis bs->file = NULL; 1608180ca19aSManos Pitsidianakis } 160901a56501SKevin Wolf g_free(bs->opaque); 161001a56501SKevin Wolf bs->opaque = NULL; 161101a56501SKevin Wolf return ret; 161201a56501SKevin Wolf } 161301a56501SKevin Wolf 1614621d1737SVladimir Sementsov-Ogievskiy /* 1615621d1737SVladimir Sementsov-Ogievskiy * Create and open a block node. 1616621d1737SVladimir Sementsov-Ogievskiy * 1617621d1737SVladimir Sementsov-Ogievskiy * @options is a QDict of options to pass to the block drivers, or NULL for an 1618621d1737SVladimir Sementsov-Ogievskiy * empty set of options. The reference to the QDict belongs to the block layer 1619621d1737SVladimir Sementsov-Ogievskiy * after the call (even on failure), so if the caller intends to reuse the 1620621d1737SVladimir Sementsov-Ogievskiy * dictionary, it needs to use qobject_ref() before calling bdrv_open. 1621621d1737SVladimir Sementsov-Ogievskiy */ 1622621d1737SVladimir Sementsov-Ogievskiy BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv, 1623621d1737SVladimir Sementsov-Ogievskiy const char *node_name, 1624621d1737SVladimir Sementsov-Ogievskiy QDict *options, int flags, 1625621d1737SVladimir Sementsov-Ogievskiy Error **errp) 1626680c7f96SKevin Wolf { 1627680c7f96SKevin Wolf BlockDriverState *bs; 1628680c7f96SKevin Wolf int ret; 1629680c7f96SKevin Wolf 1630680c7f96SKevin Wolf bs = bdrv_new(); 1631680c7f96SKevin Wolf bs->open_flags = flags; 1632621d1737SVladimir Sementsov-Ogievskiy bs->options = options ?: qdict_new(); 1633621d1737SVladimir Sementsov-Ogievskiy bs->explicit_options = qdict_clone_shallow(bs->options); 1634680c7f96SKevin Wolf bs->opaque = NULL; 1635680c7f96SKevin Wolf 1636680c7f96SKevin Wolf update_options_from_flags(bs->options, flags); 1637680c7f96SKevin Wolf 1638680c7f96SKevin Wolf ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp); 1639680c7f96SKevin Wolf if (ret < 0) { 1640cb3e7f08SMarc-André Lureau qobject_unref(bs->explicit_options); 1641180ca19aSManos Pitsidianakis bs->explicit_options = NULL; 1642cb3e7f08SMarc-André Lureau qobject_unref(bs->options); 1643180ca19aSManos Pitsidianakis bs->options = NULL; 1644680c7f96SKevin Wolf bdrv_unref(bs); 1645680c7f96SKevin Wolf return NULL; 1646680c7f96SKevin Wolf } 1647680c7f96SKevin Wolf 1648680c7f96SKevin Wolf return bs; 1649680c7f96SKevin Wolf } 1650680c7f96SKevin Wolf 1651621d1737SVladimir Sementsov-Ogievskiy /* Create and open a block node. */ 1652621d1737SVladimir Sementsov-Ogievskiy BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name, 1653621d1737SVladimir Sementsov-Ogievskiy int flags, Error **errp) 1654621d1737SVladimir Sementsov-Ogievskiy { 1655621d1737SVladimir Sementsov-Ogievskiy return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp); 1656621d1737SVladimir Sementsov-Ogievskiy } 1657621d1737SVladimir Sementsov-Ogievskiy 1658c5f3014bSKevin Wolf QemuOptsList bdrv_runtime_opts = { 165918edf289SKevin Wolf .name = "bdrv_common", 166018edf289SKevin Wolf .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head), 166118edf289SKevin Wolf .desc = { 166218edf289SKevin Wolf { 166318edf289SKevin Wolf .name = "node-name", 166418edf289SKevin Wolf .type = QEMU_OPT_STRING, 166518edf289SKevin Wolf .help = "Node name of the block device node", 166618edf289SKevin Wolf }, 166762392ebbSKevin Wolf { 166862392ebbSKevin Wolf .name = "driver", 166962392ebbSKevin Wolf .type = QEMU_OPT_STRING, 167062392ebbSKevin Wolf .help = "Block driver to use for the node", 167162392ebbSKevin Wolf }, 167291a097e7SKevin Wolf { 167391a097e7SKevin Wolf .name = BDRV_OPT_CACHE_DIRECT, 167491a097e7SKevin Wolf .type = QEMU_OPT_BOOL, 167591a097e7SKevin Wolf .help = "Bypass software writeback cache on the host", 167691a097e7SKevin Wolf }, 167791a097e7SKevin Wolf { 167891a097e7SKevin Wolf .name = BDRV_OPT_CACHE_NO_FLUSH, 167991a097e7SKevin Wolf .type = QEMU_OPT_BOOL, 168091a097e7SKevin Wolf .help = "Ignore flush requests", 168191a097e7SKevin Wolf }, 1682f87a0e29SAlberto Garcia { 1683f87a0e29SAlberto Garcia .name = BDRV_OPT_READ_ONLY, 1684f87a0e29SAlberto Garcia .type = QEMU_OPT_BOOL, 1685f87a0e29SAlberto Garcia .help = "Node is opened in read-only mode", 1686f87a0e29SAlberto Garcia }, 1687692e01a2SKevin Wolf { 1688e35bdc12SKevin Wolf .name = BDRV_OPT_AUTO_READ_ONLY, 1689e35bdc12SKevin Wolf .type = QEMU_OPT_BOOL, 1690e35bdc12SKevin Wolf .help = "Node can become read-only if opening read-write fails", 1691e35bdc12SKevin Wolf }, 1692e35bdc12SKevin Wolf { 1693692e01a2SKevin Wolf .name = "detect-zeroes", 1694692e01a2SKevin Wolf .type = QEMU_OPT_STRING, 1695692e01a2SKevin Wolf .help = "try to optimize zero writes (off, on, unmap)", 1696692e01a2SKevin Wolf }, 1697818584a4SKevin Wolf { 1698415bbca8SAlberto Garcia .name = BDRV_OPT_DISCARD, 1699818584a4SKevin Wolf .type = QEMU_OPT_STRING, 1700818584a4SKevin Wolf .help = "discard operation (ignore/off, unmap/on)", 1701818584a4SKevin Wolf }, 17025a9347c6SFam Zheng { 17035a9347c6SFam Zheng .name = BDRV_OPT_FORCE_SHARE, 17045a9347c6SFam Zheng .type = QEMU_OPT_BOOL, 17055a9347c6SFam Zheng .help = "always accept other writers (default: off)", 17065a9347c6SFam Zheng }, 170718edf289SKevin Wolf { /* end of list */ } 170818edf289SKevin Wolf }, 170918edf289SKevin Wolf }; 171018edf289SKevin Wolf 17115a5e7f8cSMaxim Levitsky QemuOptsList bdrv_create_opts_simple = { 17125a5e7f8cSMaxim Levitsky .name = "simple-create-opts", 17135a5e7f8cSMaxim Levitsky .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head), 1714fd17146cSMax Reitz .desc = { 1715fd17146cSMax Reitz { 1716fd17146cSMax Reitz .name = BLOCK_OPT_SIZE, 1717fd17146cSMax Reitz .type = QEMU_OPT_SIZE, 1718fd17146cSMax Reitz .help = "Virtual disk size" 1719fd17146cSMax Reitz }, 1720fd17146cSMax Reitz { 1721fd17146cSMax Reitz .name = BLOCK_OPT_PREALLOC, 1722fd17146cSMax Reitz .type = QEMU_OPT_STRING, 1723fd17146cSMax Reitz .help = "Preallocation mode (allowed values: off)" 1724fd17146cSMax Reitz }, 1725fd17146cSMax Reitz { /* end of list */ } 1726fd17146cSMax Reitz } 1727fd17146cSMax Reitz }; 1728fd17146cSMax Reitz 1729b6ce07aaSKevin Wolf /* 173057915332SKevin Wolf * Common part for opening disk images and files 1731b6ad491aSKevin Wolf * 1732b6ad491aSKevin Wolf * Removes all processed options from *options. 173357915332SKevin Wolf */ 17345696c6e3SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file, 173582dc8b41SKevin Wolf QDict *options, Error **errp) 173657915332SKevin Wolf { 173757915332SKevin Wolf int ret, open_flags; 1738035fccdfSKevin Wolf const char *filename; 173962392ebbSKevin Wolf const char *driver_name = NULL; 17406913c0c2SBenoît Canet const char *node_name = NULL; 1741818584a4SKevin Wolf const char *discard; 174218edf289SKevin Wolf QemuOpts *opts; 174362392ebbSKevin Wolf BlockDriver *drv; 174434b5d2c6SMax Reitz Error *local_err = NULL; 1745307261b2SVladimir Sementsov-Ogievskiy bool ro; 174657915332SKevin Wolf 17476405875cSPaolo Bonzini assert(bs->file == NULL); 1748707ff828SKevin Wolf assert(options != NULL && bs->options != options); 174957915332SKevin Wolf 175062392ebbSKevin Wolf opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 1751af175e85SMarkus Armbruster if (!qemu_opts_absorb_qdict(opts, options, errp)) { 175262392ebbSKevin Wolf ret = -EINVAL; 175362392ebbSKevin Wolf goto fail_opts; 175462392ebbSKevin Wolf } 175562392ebbSKevin Wolf 17569b7e8691SAlberto Garcia update_flags_from_options(&bs->open_flags, opts); 17579b7e8691SAlberto Garcia 175862392ebbSKevin Wolf driver_name = qemu_opt_get(opts, "driver"); 175962392ebbSKevin Wolf drv = bdrv_find_format(driver_name); 176062392ebbSKevin Wolf assert(drv != NULL); 176162392ebbSKevin Wolf 17625a9347c6SFam Zheng bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false); 17635a9347c6SFam Zheng 17645a9347c6SFam Zheng if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) { 17655a9347c6SFam Zheng error_setg(errp, 17665a9347c6SFam Zheng BDRV_OPT_FORCE_SHARE 17675a9347c6SFam Zheng "=on can only be used with read-only images"); 17685a9347c6SFam Zheng ret = -EINVAL; 17695a9347c6SFam Zheng goto fail_opts; 17705a9347c6SFam Zheng } 17715a9347c6SFam Zheng 177245673671SKevin Wolf if (file != NULL) { 1773f30c66baSMax Reitz bdrv_refresh_filename(blk_bs(file)); 17745696c6e3SKevin Wolf filename = blk_bs(file)->filename; 177545673671SKevin Wolf } else { 1776129c7d1cSMarkus Armbruster /* 1777129c7d1cSMarkus Armbruster * Caution: while qdict_get_try_str() is fine, getting 1778129c7d1cSMarkus Armbruster * non-string types would require more care. When @options 1779129c7d1cSMarkus Armbruster * come from -blockdev or blockdev_add, its members are typed 1780129c7d1cSMarkus Armbruster * according to the QAPI schema, but when they come from 1781129c7d1cSMarkus Armbruster * -drive, they're all QString. 1782129c7d1cSMarkus Armbruster */ 178345673671SKevin Wolf filename = qdict_get_try_str(options, "filename"); 178445673671SKevin Wolf } 178545673671SKevin Wolf 17864a008240SMax Reitz if (drv->bdrv_needs_filename && (!filename || !filename[0])) { 1787765003dbSKevin Wolf error_setg(errp, "The '%s' block driver requires a file name", 1788765003dbSKevin Wolf drv->format_name); 178918edf289SKevin Wolf ret = -EINVAL; 179018edf289SKevin Wolf goto fail_opts; 179118edf289SKevin Wolf } 179218edf289SKevin Wolf 179382dc8b41SKevin Wolf trace_bdrv_open_common(bs, filename ?: "", bs->open_flags, 179482dc8b41SKevin Wolf drv->format_name); 179562392ebbSKevin Wolf 1796307261b2SVladimir Sementsov-Ogievskiy ro = bdrv_is_read_only(bs); 1797307261b2SVladimir Sementsov-Ogievskiy 1798307261b2SVladimir Sementsov-Ogievskiy if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) { 1799307261b2SVladimir Sementsov-Ogievskiy if (!ro && bdrv_is_whitelisted(drv, true)) { 18008be25de6SKevin Wolf ret = bdrv_apply_auto_read_only(bs, NULL, NULL); 18018be25de6SKevin Wolf } else { 18028be25de6SKevin Wolf ret = -ENOTSUP; 18038be25de6SKevin Wolf } 18048be25de6SKevin Wolf if (ret < 0) { 18058f94a6e4SKevin Wolf error_setg(errp, 1806307261b2SVladimir Sementsov-Ogievskiy !ro && bdrv_is_whitelisted(drv, true) 18078f94a6e4SKevin Wolf ? "Driver '%s' can only be used for read-only devices" 18088f94a6e4SKevin Wolf : "Driver '%s' is not whitelisted", 18098f94a6e4SKevin Wolf drv->format_name); 181018edf289SKevin Wolf goto fail_opts; 1811b64ec4e4SFam Zheng } 18128be25de6SKevin Wolf } 181357915332SKevin Wolf 1814d3faa13eSPaolo Bonzini /* bdrv_new() and bdrv_close() make it so */ 1815d73415a3SStefan Hajnoczi assert(qatomic_read(&bs->copy_on_read) == 0); 1816d3faa13eSPaolo Bonzini 181782dc8b41SKevin Wolf if (bs->open_flags & BDRV_O_COPY_ON_READ) { 1818307261b2SVladimir Sementsov-Ogievskiy if (!ro) { 181953fec9d3SStefan Hajnoczi bdrv_enable_copy_on_read(bs); 18200ebd24e0SKevin Wolf } else { 18210ebd24e0SKevin Wolf error_setg(errp, "Can't use copy-on-read on read-only device"); 182218edf289SKevin Wolf ret = -EINVAL; 182318edf289SKevin Wolf goto fail_opts; 18240ebd24e0SKevin Wolf } 182553fec9d3SStefan Hajnoczi } 182653fec9d3SStefan Hajnoczi 1827415bbca8SAlberto Garcia discard = qemu_opt_get(opts, BDRV_OPT_DISCARD); 1828818584a4SKevin Wolf if (discard != NULL) { 1829818584a4SKevin Wolf if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) { 1830818584a4SKevin Wolf error_setg(errp, "Invalid discard option"); 1831818584a4SKevin Wolf ret = -EINVAL; 1832818584a4SKevin Wolf goto fail_opts; 1833818584a4SKevin Wolf } 1834818584a4SKevin Wolf } 1835818584a4SKevin Wolf 1836543770bdSAlberto Garcia bs->detect_zeroes = 1837543770bdSAlberto Garcia bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err); 1838692e01a2SKevin Wolf if (local_err) { 1839692e01a2SKevin Wolf error_propagate(errp, local_err); 1840692e01a2SKevin Wolf ret = -EINVAL; 1841692e01a2SKevin Wolf goto fail_opts; 1842692e01a2SKevin Wolf } 1843692e01a2SKevin Wolf 1844c2ad1b0cSKevin Wolf if (filename != NULL) { 184557915332SKevin Wolf pstrcpy(bs->filename, sizeof(bs->filename), filename); 1846c2ad1b0cSKevin Wolf } else { 1847c2ad1b0cSKevin Wolf bs->filename[0] = '\0'; 1848c2ad1b0cSKevin Wolf } 184991af7014SMax Reitz pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename); 185057915332SKevin Wolf 185166f82ceeSKevin Wolf /* Open the image, either directly or using a protocol */ 185282dc8b41SKevin Wolf open_flags = bdrv_open_flags(bs, bs->open_flags); 185301a56501SKevin Wolf node_name = qemu_opt_get(opts, "node-name"); 185466f82ceeSKevin Wolf 185501a56501SKevin Wolf assert(!drv->bdrv_file_open || file == NULL); 185601a56501SKevin Wolf ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp); 185757915332SKevin Wolf if (ret < 0) { 185801a56501SKevin Wolf goto fail_opts; 185934b5d2c6SMax Reitz } 186018edf289SKevin Wolf 186118edf289SKevin Wolf qemu_opts_del(opts); 186257915332SKevin Wolf return 0; 186357915332SKevin Wolf 186418edf289SKevin Wolf fail_opts: 186518edf289SKevin Wolf qemu_opts_del(opts); 186657915332SKevin Wolf return ret; 186757915332SKevin Wolf } 186857915332SKevin Wolf 18695e5c4f63SKevin Wolf static QDict *parse_json_filename(const char *filename, Error **errp) 18705e5c4f63SKevin Wolf { 18715e5c4f63SKevin Wolf QObject *options_obj; 18725e5c4f63SKevin Wolf QDict *options; 18735e5c4f63SKevin Wolf int ret; 18745e5c4f63SKevin Wolf 18755e5c4f63SKevin Wolf ret = strstart(filename, "json:", &filename); 18765e5c4f63SKevin Wolf assert(ret); 18775e5c4f63SKevin Wolf 18785577fff7SMarkus Armbruster options_obj = qobject_from_json(filename, errp); 18795e5c4f63SKevin Wolf if (!options_obj) { 18805577fff7SMarkus Armbruster error_prepend(errp, "Could not parse the JSON options: "); 18815577fff7SMarkus Armbruster return NULL; 18825577fff7SMarkus Armbruster } 18835e5c4f63SKevin Wolf 18847dc847ebSMax Reitz options = qobject_to(QDict, options_obj); 1885ca6b6e1eSMarkus Armbruster if (!options) { 1886cb3e7f08SMarc-André Lureau qobject_unref(options_obj); 18875e5c4f63SKevin Wolf error_setg(errp, "Invalid JSON object given"); 18885e5c4f63SKevin Wolf return NULL; 18895e5c4f63SKevin Wolf } 18905e5c4f63SKevin Wolf 18915e5c4f63SKevin Wolf qdict_flatten(options); 18925e5c4f63SKevin Wolf 18935e5c4f63SKevin Wolf return options; 18945e5c4f63SKevin Wolf } 18955e5c4f63SKevin Wolf 1896de3b53f0SKevin Wolf static void parse_json_protocol(QDict *options, const char **pfilename, 1897de3b53f0SKevin Wolf Error **errp) 1898de3b53f0SKevin Wolf { 1899de3b53f0SKevin Wolf QDict *json_options; 1900de3b53f0SKevin Wolf Error *local_err = NULL; 1901de3b53f0SKevin Wolf 1902de3b53f0SKevin Wolf /* Parse json: pseudo-protocol */ 1903de3b53f0SKevin Wolf if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) { 1904de3b53f0SKevin Wolf return; 1905de3b53f0SKevin Wolf } 1906de3b53f0SKevin Wolf 1907de3b53f0SKevin Wolf json_options = parse_json_filename(*pfilename, &local_err); 1908de3b53f0SKevin Wolf if (local_err) { 1909de3b53f0SKevin Wolf error_propagate(errp, local_err); 1910de3b53f0SKevin Wolf return; 1911de3b53f0SKevin Wolf } 1912de3b53f0SKevin Wolf 1913de3b53f0SKevin Wolf /* Options given in the filename have lower priority than options 1914de3b53f0SKevin Wolf * specified directly */ 1915de3b53f0SKevin Wolf qdict_join(options, json_options, false); 1916cb3e7f08SMarc-André Lureau qobject_unref(json_options); 1917de3b53f0SKevin Wolf *pfilename = NULL; 1918de3b53f0SKevin Wolf } 1919de3b53f0SKevin Wolf 192057915332SKevin Wolf /* 1921f54120ffSKevin Wolf * Fills in default options for opening images and converts the legacy 1922f54120ffSKevin Wolf * filename/flags pair to option QDict entries. 192353a29513SMax Reitz * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a 192453a29513SMax Reitz * block driver has been specified explicitly. 1925f54120ffSKevin Wolf */ 1926de3b53f0SKevin Wolf static int bdrv_fill_options(QDict **options, const char *filename, 1927053e1578SMax Reitz int *flags, Error **errp) 1928f54120ffSKevin Wolf { 1929f54120ffSKevin Wolf const char *drvname; 193053a29513SMax Reitz bool protocol = *flags & BDRV_O_PROTOCOL; 1931f54120ffSKevin Wolf bool parse_filename = false; 1932053e1578SMax Reitz BlockDriver *drv = NULL; 1933f54120ffSKevin Wolf Error *local_err = NULL; 1934f54120ffSKevin Wolf 1935129c7d1cSMarkus Armbruster /* 1936129c7d1cSMarkus Armbruster * Caution: while qdict_get_try_str() is fine, getting non-string 1937129c7d1cSMarkus Armbruster * types would require more care. When @options come from 1938129c7d1cSMarkus Armbruster * -blockdev or blockdev_add, its members are typed according to 1939129c7d1cSMarkus Armbruster * the QAPI schema, but when they come from -drive, they're all 1940129c7d1cSMarkus Armbruster * QString. 1941129c7d1cSMarkus Armbruster */ 194253a29513SMax Reitz drvname = qdict_get_try_str(*options, "driver"); 1943053e1578SMax Reitz if (drvname) { 1944053e1578SMax Reitz drv = bdrv_find_format(drvname); 1945053e1578SMax Reitz if (!drv) { 1946053e1578SMax Reitz error_setg(errp, "Unknown driver '%s'", drvname); 1947053e1578SMax Reitz return -ENOENT; 1948053e1578SMax Reitz } 194953a29513SMax Reitz /* If the user has explicitly specified the driver, this choice should 195053a29513SMax Reitz * override the BDRV_O_PROTOCOL flag */ 1951053e1578SMax Reitz protocol = drv->bdrv_file_open; 195253a29513SMax Reitz } 195353a29513SMax Reitz 195453a29513SMax Reitz if (protocol) { 195553a29513SMax Reitz *flags |= BDRV_O_PROTOCOL; 195653a29513SMax Reitz } else { 195753a29513SMax Reitz *flags &= ~BDRV_O_PROTOCOL; 195853a29513SMax Reitz } 195953a29513SMax Reitz 196091a097e7SKevin Wolf /* Translate cache options from flags into options */ 196191a097e7SKevin Wolf update_options_from_flags(*options, *flags); 196291a097e7SKevin Wolf 1963f54120ffSKevin Wolf /* Fetch the file name from the options QDict if necessary */ 196417b005f1SKevin Wolf if (protocol && filename) { 1965f54120ffSKevin Wolf if (!qdict_haskey(*options, "filename")) { 196646f5ac20SEric Blake qdict_put_str(*options, "filename", filename); 1967f54120ffSKevin Wolf parse_filename = true; 1968f54120ffSKevin Wolf } else { 1969f54120ffSKevin Wolf error_setg(errp, "Can't specify 'file' and 'filename' options at " 1970f54120ffSKevin Wolf "the same time"); 1971f54120ffSKevin Wolf return -EINVAL; 1972f54120ffSKevin Wolf } 1973f54120ffSKevin Wolf } 1974f54120ffSKevin Wolf 1975f54120ffSKevin Wolf /* Find the right block driver */ 1976129c7d1cSMarkus Armbruster /* See cautionary note on accessing @options above */ 1977f54120ffSKevin Wolf filename = qdict_get_try_str(*options, "filename"); 1978f54120ffSKevin Wolf 197917b005f1SKevin Wolf if (!drvname && protocol) { 1980f54120ffSKevin Wolf if (filename) { 1981b65a5e12SMax Reitz drv = bdrv_find_protocol(filename, parse_filename, errp); 1982f54120ffSKevin Wolf if (!drv) { 1983f54120ffSKevin Wolf return -EINVAL; 1984f54120ffSKevin Wolf } 1985f54120ffSKevin Wolf 1986f54120ffSKevin Wolf drvname = drv->format_name; 198746f5ac20SEric Blake qdict_put_str(*options, "driver", drvname); 1988f54120ffSKevin Wolf } else { 1989f54120ffSKevin Wolf error_setg(errp, "Must specify either driver or file"); 1990f54120ffSKevin Wolf return -EINVAL; 1991f54120ffSKevin Wolf } 199217b005f1SKevin Wolf } 199317b005f1SKevin Wolf 199417b005f1SKevin Wolf assert(drv || !protocol); 1995f54120ffSKevin Wolf 1996f54120ffSKevin Wolf /* Driver-specific filename parsing */ 199717b005f1SKevin Wolf if (drv && drv->bdrv_parse_filename && parse_filename) { 1998f54120ffSKevin Wolf drv->bdrv_parse_filename(filename, *options, &local_err); 1999f54120ffSKevin Wolf if (local_err) { 2000f54120ffSKevin Wolf error_propagate(errp, local_err); 2001f54120ffSKevin Wolf return -EINVAL; 2002f54120ffSKevin Wolf } 2003f54120ffSKevin Wolf 2004f54120ffSKevin Wolf if (!drv->bdrv_needs_filename) { 2005f54120ffSKevin Wolf qdict_del(*options, "filename"); 2006f54120ffSKevin Wolf } 2007f54120ffSKevin Wolf } 2008f54120ffSKevin Wolf 2009f54120ffSKevin Wolf return 0; 2010f54120ffSKevin Wolf } 2011f54120ffSKevin Wolf 2012148eb13cSKevin Wolf typedef struct BlockReopenQueueEntry { 2013148eb13cSKevin Wolf bool prepared; 201469b736e7SKevin Wolf bool perms_checked; 2015148eb13cSKevin Wolf BDRVReopenState state; 2016859443b0SVladimir Sementsov-Ogievskiy QTAILQ_ENTRY(BlockReopenQueueEntry) entry; 2017148eb13cSKevin Wolf } BlockReopenQueueEntry; 2018148eb13cSKevin Wolf 2019148eb13cSKevin Wolf /* 2020148eb13cSKevin Wolf * Return the flags that @bs will have after the reopens in @q have 2021148eb13cSKevin Wolf * successfully completed. If @q is NULL (or @bs is not contained in @q), 2022148eb13cSKevin Wolf * return the current flags. 2023148eb13cSKevin Wolf */ 2024148eb13cSKevin Wolf static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs) 2025148eb13cSKevin Wolf { 2026148eb13cSKevin Wolf BlockReopenQueueEntry *entry; 2027148eb13cSKevin Wolf 2028148eb13cSKevin Wolf if (q != NULL) { 2029859443b0SVladimir Sementsov-Ogievskiy QTAILQ_FOREACH(entry, q, entry) { 2030148eb13cSKevin Wolf if (entry->state.bs == bs) { 2031148eb13cSKevin Wolf return entry->state.flags; 2032148eb13cSKevin Wolf } 2033148eb13cSKevin Wolf } 2034148eb13cSKevin Wolf } 2035148eb13cSKevin Wolf 2036148eb13cSKevin Wolf return bs->open_flags; 2037148eb13cSKevin Wolf } 2038148eb13cSKevin Wolf 2039148eb13cSKevin Wolf /* Returns whether the image file can be written to after the reopen queue @q 2040148eb13cSKevin Wolf * has been successfully applied, or right now if @q is NULL. */ 2041cc022140SMax Reitz static bool bdrv_is_writable_after_reopen(BlockDriverState *bs, 2042cc022140SMax Reitz BlockReopenQueue *q) 2043148eb13cSKevin Wolf { 2044148eb13cSKevin Wolf int flags = bdrv_reopen_get_flags(q, bs); 2045148eb13cSKevin Wolf 2046148eb13cSKevin Wolf return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR; 2047148eb13cSKevin Wolf } 2048148eb13cSKevin Wolf 2049cc022140SMax Reitz /* 2050cc022140SMax Reitz * Return whether the BDS can be written to. This is not necessarily 2051cc022140SMax Reitz * the same as !bdrv_is_read_only(bs), as inactivated images may not 2052cc022140SMax Reitz * be written to but do not count as read-only images. 2053cc022140SMax Reitz */ 2054cc022140SMax Reitz bool bdrv_is_writable(BlockDriverState *bs) 2055cc022140SMax Reitz { 2056cc022140SMax Reitz return bdrv_is_writable_after_reopen(bs, NULL); 2057cc022140SMax Reitz } 2058cc022140SMax Reitz 20593bf416baSVladimir Sementsov-Ogievskiy static char *bdrv_child_user_desc(BdrvChild *c) 20603bf416baSVladimir Sementsov-Ogievskiy { 20613bf416baSVladimir Sementsov-Ogievskiy return c->klass->get_parent_desc(c); 20623bf416baSVladimir Sementsov-Ogievskiy } 20633bf416baSVladimir Sementsov-Ogievskiy 206430ebb9aaSVladimir Sementsov-Ogievskiy /* 206530ebb9aaSVladimir Sementsov-Ogievskiy * Check that @a allows everything that @b needs. @a and @b must reference same 206630ebb9aaSVladimir Sementsov-Ogievskiy * child node. 206730ebb9aaSVladimir Sementsov-Ogievskiy */ 20683bf416baSVladimir Sementsov-Ogievskiy static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp) 20693bf416baSVladimir Sementsov-Ogievskiy { 207030ebb9aaSVladimir Sementsov-Ogievskiy const char *child_bs_name; 207130ebb9aaSVladimir Sementsov-Ogievskiy g_autofree char *a_user = NULL; 207230ebb9aaSVladimir Sementsov-Ogievskiy g_autofree char *b_user = NULL; 207330ebb9aaSVladimir Sementsov-Ogievskiy g_autofree char *perms = NULL; 207430ebb9aaSVladimir Sementsov-Ogievskiy 207530ebb9aaSVladimir Sementsov-Ogievskiy assert(a->bs); 207630ebb9aaSVladimir Sementsov-Ogievskiy assert(a->bs == b->bs); 20773bf416baSVladimir Sementsov-Ogievskiy 20783bf416baSVladimir Sementsov-Ogievskiy if ((b->perm & a->shared_perm) == b->perm) { 20793bf416baSVladimir Sementsov-Ogievskiy return true; 20803bf416baSVladimir Sementsov-Ogievskiy } 20813bf416baSVladimir Sementsov-Ogievskiy 208230ebb9aaSVladimir Sementsov-Ogievskiy child_bs_name = bdrv_get_node_name(b->bs); 208330ebb9aaSVladimir Sementsov-Ogievskiy a_user = bdrv_child_user_desc(a); 208430ebb9aaSVladimir Sementsov-Ogievskiy b_user = bdrv_child_user_desc(b); 208530ebb9aaSVladimir Sementsov-Ogievskiy perms = bdrv_perm_names(b->perm & ~a->shared_perm); 208630ebb9aaSVladimir Sementsov-Ogievskiy 208730ebb9aaSVladimir Sementsov-Ogievskiy error_setg(errp, "Permission conflict on node '%s': permissions '%s' are " 208830ebb9aaSVladimir Sementsov-Ogievskiy "both required by %s (uses node '%s' as '%s' child) and " 208930ebb9aaSVladimir Sementsov-Ogievskiy "unshared by %s (uses node '%s' as '%s' child).", 209030ebb9aaSVladimir Sementsov-Ogievskiy child_bs_name, perms, 209130ebb9aaSVladimir Sementsov-Ogievskiy b_user, child_bs_name, b->name, 209230ebb9aaSVladimir Sementsov-Ogievskiy a_user, child_bs_name, a->name); 20933bf416baSVladimir Sementsov-Ogievskiy 20943bf416baSVladimir Sementsov-Ogievskiy return false; 20953bf416baSVladimir Sementsov-Ogievskiy } 20963bf416baSVladimir Sementsov-Ogievskiy 20979397c14fSVladimir Sementsov-Ogievskiy static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp) 20983bf416baSVladimir Sementsov-Ogievskiy { 20993bf416baSVladimir Sementsov-Ogievskiy BdrvChild *a, *b; 21003bf416baSVladimir Sementsov-Ogievskiy 21013bf416baSVladimir Sementsov-Ogievskiy /* 21023bf416baSVladimir Sementsov-Ogievskiy * During the loop we'll look at each pair twice. That's correct because 21033bf416baSVladimir Sementsov-Ogievskiy * bdrv_a_allow_b() is asymmetric and we should check each pair in both 21043bf416baSVladimir Sementsov-Ogievskiy * directions. 21053bf416baSVladimir Sementsov-Ogievskiy */ 21063bf416baSVladimir Sementsov-Ogievskiy QLIST_FOREACH(a, &bs->parents, next_parent) { 21073bf416baSVladimir Sementsov-Ogievskiy QLIST_FOREACH(b, &bs->parents, next_parent) { 21089397c14fSVladimir Sementsov-Ogievskiy if (a == b) { 21093bf416baSVladimir Sementsov-Ogievskiy continue; 21103bf416baSVladimir Sementsov-Ogievskiy } 21113bf416baSVladimir Sementsov-Ogievskiy 21123bf416baSVladimir Sementsov-Ogievskiy if (!bdrv_a_allow_b(a, b, errp)) { 21133bf416baSVladimir Sementsov-Ogievskiy return true; 21143bf416baSVladimir Sementsov-Ogievskiy } 21153bf416baSVladimir Sementsov-Ogievskiy } 21163bf416baSVladimir Sementsov-Ogievskiy } 21173bf416baSVladimir Sementsov-Ogievskiy 21183bf416baSVladimir Sementsov-Ogievskiy return false; 21193bf416baSVladimir Sementsov-Ogievskiy } 21203bf416baSVladimir Sementsov-Ogievskiy 2121ffd1a5a2SFam Zheng static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs, 2122e5d8a406SMax Reitz BdrvChild *c, BdrvChildRole role, 2123e5d8a406SMax Reitz BlockReopenQueue *reopen_queue, 2124ffd1a5a2SFam Zheng uint64_t parent_perm, uint64_t parent_shared, 2125ffd1a5a2SFam Zheng uint64_t *nperm, uint64_t *nshared) 2126ffd1a5a2SFam Zheng { 21270b3ca76eSAlberto Garcia assert(bs->drv && bs->drv->bdrv_child_perm); 2128e5d8a406SMax Reitz bs->drv->bdrv_child_perm(bs, c, role, reopen_queue, 2129ffd1a5a2SFam Zheng parent_perm, parent_shared, 2130ffd1a5a2SFam Zheng nperm, nshared); 2131e0995dc3SKevin Wolf /* TODO Take force_share from reopen_queue */ 2132ffd1a5a2SFam Zheng if (child_bs && child_bs->force_share) { 2133ffd1a5a2SFam Zheng *nshared = BLK_PERM_ALL; 2134ffd1a5a2SFam Zheng } 2135ffd1a5a2SFam Zheng } 2136ffd1a5a2SFam Zheng 2137bd57f8f7SVladimir Sementsov-Ogievskiy /* 2138bd57f8f7SVladimir Sementsov-Ogievskiy * Adds the whole subtree of @bs (including @bs itself) to the @list (except for 2139bd57f8f7SVladimir Sementsov-Ogievskiy * nodes that are already in the @list, of course) so that final list is 2140bd57f8f7SVladimir Sementsov-Ogievskiy * topologically sorted. Return the result (GSList @list object is updated, so 2141bd57f8f7SVladimir Sementsov-Ogievskiy * don't use old reference after function call). 2142bd57f8f7SVladimir Sementsov-Ogievskiy * 2143bd57f8f7SVladimir Sementsov-Ogievskiy * On function start @list must be already topologically sorted and for any node 2144bd57f8f7SVladimir Sementsov-Ogievskiy * in the @list the whole subtree of the node must be in the @list as well. The 2145bd57f8f7SVladimir Sementsov-Ogievskiy * simplest way to satisfy this criteria: use only result of 2146bd57f8f7SVladimir Sementsov-Ogievskiy * bdrv_topological_dfs() or NULL as @list parameter. 2147bd57f8f7SVladimir Sementsov-Ogievskiy */ 2148bd57f8f7SVladimir Sementsov-Ogievskiy static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found, 2149bd57f8f7SVladimir Sementsov-Ogievskiy BlockDriverState *bs) 2150bd57f8f7SVladimir Sementsov-Ogievskiy { 2151bd57f8f7SVladimir Sementsov-Ogievskiy BdrvChild *child; 2152bd57f8f7SVladimir Sementsov-Ogievskiy g_autoptr(GHashTable) local_found = NULL; 2153bd57f8f7SVladimir Sementsov-Ogievskiy 2154bd57f8f7SVladimir Sementsov-Ogievskiy if (!found) { 2155bd57f8f7SVladimir Sementsov-Ogievskiy assert(!list); 2156bd57f8f7SVladimir Sementsov-Ogievskiy found = local_found = g_hash_table_new(NULL, NULL); 2157bd57f8f7SVladimir Sementsov-Ogievskiy } 2158bd57f8f7SVladimir Sementsov-Ogievskiy 2159bd57f8f7SVladimir Sementsov-Ogievskiy if (g_hash_table_contains(found, bs)) { 2160bd57f8f7SVladimir Sementsov-Ogievskiy return list; 2161bd57f8f7SVladimir Sementsov-Ogievskiy } 2162bd57f8f7SVladimir Sementsov-Ogievskiy g_hash_table_add(found, bs); 2163bd57f8f7SVladimir Sementsov-Ogievskiy 2164bd57f8f7SVladimir Sementsov-Ogievskiy QLIST_FOREACH(child, &bs->children, next) { 2165bd57f8f7SVladimir Sementsov-Ogievskiy list = bdrv_topological_dfs(list, found, child->bs); 2166bd57f8f7SVladimir Sementsov-Ogievskiy } 2167bd57f8f7SVladimir Sementsov-Ogievskiy 2168bd57f8f7SVladimir Sementsov-Ogievskiy return g_slist_prepend(list, bs); 2169bd57f8f7SVladimir Sementsov-Ogievskiy } 2170bd57f8f7SVladimir Sementsov-Ogievskiy 2171ecb776bdSVladimir Sementsov-Ogievskiy typedef struct BdrvChildSetPermState { 2172ecb776bdSVladimir Sementsov-Ogievskiy BdrvChild *child; 2173ecb776bdSVladimir Sementsov-Ogievskiy uint64_t old_perm; 2174ecb776bdSVladimir Sementsov-Ogievskiy uint64_t old_shared_perm; 2175ecb776bdSVladimir Sementsov-Ogievskiy } BdrvChildSetPermState; 2176b0defa83SVladimir Sementsov-Ogievskiy 2177b0defa83SVladimir Sementsov-Ogievskiy static void bdrv_child_set_perm_abort(void *opaque) 2178b0defa83SVladimir Sementsov-Ogievskiy { 2179ecb776bdSVladimir Sementsov-Ogievskiy BdrvChildSetPermState *s = opaque; 2180ecb776bdSVladimir Sementsov-Ogievskiy 2181ecb776bdSVladimir Sementsov-Ogievskiy s->child->perm = s->old_perm; 2182ecb776bdSVladimir Sementsov-Ogievskiy s->child->shared_perm = s->old_shared_perm; 2183b0defa83SVladimir Sementsov-Ogievskiy } 2184b0defa83SVladimir Sementsov-Ogievskiy 2185b0defa83SVladimir Sementsov-Ogievskiy static TransactionActionDrv bdrv_child_set_pem_drv = { 2186b0defa83SVladimir Sementsov-Ogievskiy .abort = bdrv_child_set_perm_abort, 2187ecb776bdSVladimir Sementsov-Ogievskiy .clean = g_free, 2188b0defa83SVladimir Sementsov-Ogievskiy }; 2189b0defa83SVladimir Sementsov-Ogievskiy 2190ecb776bdSVladimir Sementsov-Ogievskiy static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, 2191b0defa83SVladimir Sementsov-Ogievskiy uint64_t shared, Transaction *tran) 2192b0defa83SVladimir Sementsov-Ogievskiy { 2193ecb776bdSVladimir Sementsov-Ogievskiy BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1); 2194ecb776bdSVladimir Sementsov-Ogievskiy 2195ecb776bdSVladimir Sementsov-Ogievskiy *s = (BdrvChildSetPermState) { 2196ecb776bdSVladimir Sementsov-Ogievskiy .child = c, 2197ecb776bdSVladimir Sementsov-Ogievskiy .old_perm = c->perm, 2198ecb776bdSVladimir Sementsov-Ogievskiy .old_shared_perm = c->shared_perm, 2199ecb776bdSVladimir Sementsov-Ogievskiy }; 2200b0defa83SVladimir Sementsov-Ogievskiy 2201b0defa83SVladimir Sementsov-Ogievskiy c->perm = perm; 2202b0defa83SVladimir Sementsov-Ogievskiy c->shared_perm = shared; 2203b0defa83SVladimir Sementsov-Ogievskiy 2204ecb776bdSVladimir Sementsov-Ogievskiy tran_add(tran, &bdrv_child_set_pem_drv, s); 2205b0defa83SVladimir Sementsov-Ogievskiy } 2206b0defa83SVladimir Sementsov-Ogievskiy 22072513ef59SVladimir Sementsov-Ogievskiy static void bdrv_drv_set_perm_commit(void *opaque) 22082513ef59SVladimir Sementsov-Ogievskiy { 22092513ef59SVladimir Sementsov-Ogievskiy BlockDriverState *bs = opaque; 22102513ef59SVladimir Sementsov-Ogievskiy uint64_t cumulative_perms, cumulative_shared_perms; 22112513ef59SVladimir Sementsov-Ogievskiy 22122513ef59SVladimir Sementsov-Ogievskiy if (bs->drv->bdrv_set_perm) { 22132513ef59SVladimir Sementsov-Ogievskiy bdrv_get_cumulative_perm(bs, &cumulative_perms, 22142513ef59SVladimir Sementsov-Ogievskiy &cumulative_shared_perms); 22152513ef59SVladimir Sementsov-Ogievskiy bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms); 22162513ef59SVladimir Sementsov-Ogievskiy } 22172513ef59SVladimir Sementsov-Ogievskiy } 22182513ef59SVladimir Sementsov-Ogievskiy 22192513ef59SVladimir Sementsov-Ogievskiy static void bdrv_drv_set_perm_abort(void *opaque) 22202513ef59SVladimir Sementsov-Ogievskiy { 22212513ef59SVladimir Sementsov-Ogievskiy BlockDriverState *bs = opaque; 22222513ef59SVladimir Sementsov-Ogievskiy 22232513ef59SVladimir Sementsov-Ogievskiy if (bs->drv->bdrv_abort_perm_update) { 22242513ef59SVladimir Sementsov-Ogievskiy bs->drv->bdrv_abort_perm_update(bs); 22252513ef59SVladimir Sementsov-Ogievskiy } 22262513ef59SVladimir Sementsov-Ogievskiy } 22272513ef59SVladimir Sementsov-Ogievskiy 22282513ef59SVladimir Sementsov-Ogievskiy TransactionActionDrv bdrv_drv_set_perm_drv = { 22292513ef59SVladimir Sementsov-Ogievskiy .abort = bdrv_drv_set_perm_abort, 22302513ef59SVladimir Sementsov-Ogievskiy .commit = bdrv_drv_set_perm_commit, 22312513ef59SVladimir Sementsov-Ogievskiy }; 22322513ef59SVladimir Sementsov-Ogievskiy 22332513ef59SVladimir Sementsov-Ogievskiy static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm, 22342513ef59SVladimir Sementsov-Ogievskiy uint64_t shared_perm, Transaction *tran, 22352513ef59SVladimir Sementsov-Ogievskiy Error **errp) 22362513ef59SVladimir Sementsov-Ogievskiy { 22372513ef59SVladimir Sementsov-Ogievskiy if (!bs->drv) { 22382513ef59SVladimir Sementsov-Ogievskiy return 0; 22392513ef59SVladimir Sementsov-Ogievskiy } 22402513ef59SVladimir Sementsov-Ogievskiy 22412513ef59SVladimir Sementsov-Ogievskiy if (bs->drv->bdrv_check_perm) { 22422513ef59SVladimir Sementsov-Ogievskiy int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp); 22432513ef59SVladimir Sementsov-Ogievskiy if (ret < 0) { 22442513ef59SVladimir Sementsov-Ogievskiy return ret; 22452513ef59SVladimir Sementsov-Ogievskiy } 22462513ef59SVladimir Sementsov-Ogievskiy } 22472513ef59SVladimir Sementsov-Ogievskiy 22482513ef59SVladimir Sementsov-Ogievskiy if (tran) { 22492513ef59SVladimir Sementsov-Ogievskiy tran_add(tran, &bdrv_drv_set_perm_drv, bs); 22502513ef59SVladimir Sementsov-Ogievskiy } 22512513ef59SVladimir Sementsov-Ogievskiy 22522513ef59SVladimir Sementsov-Ogievskiy return 0; 22532513ef59SVladimir Sementsov-Ogievskiy } 22542513ef59SVladimir Sementsov-Ogievskiy 22550978623eSVladimir Sementsov-Ogievskiy typedef struct BdrvReplaceChildState { 22560978623eSVladimir Sementsov-Ogievskiy BdrvChild *child; 22570978623eSVladimir Sementsov-Ogievskiy BlockDriverState *old_bs; 22580978623eSVladimir Sementsov-Ogievskiy } BdrvReplaceChildState; 22590978623eSVladimir Sementsov-Ogievskiy 22600978623eSVladimir Sementsov-Ogievskiy static void bdrv_replace_child_commit(void *opaque) 22610978623eSVladimir Sementsov-Ogievskiy { 22620978623eSVladimir Sementsov-Ogievskiy BdrvReplaceChildState *s = opaque; 22630978623eSVladimir Sementsov-Ogievskiy 22640978623eSVladimir Sementsov-Ogievskiy bdrv_unref(s->old_bs); 22650978623eSVladimir Sementsov-Ogievskiy } 22660978623eSVladimir Sementsov-Ogievskiy 22670978623eSVladimir Sementsov-Ogievskiy static void bdrv_replace_child_abort(void *opaque) 22680978623eSVladimir Sementsov-Ogievskiy { 22690978623eSVladimir Sementsov-Ogievskiy BdrvReplaceChildState *s = opaque; 22700978623eSVladimir Sementsov-Ogievskiy BlockDriverState *new_bs = s->child->bs; 22710978623eSVladimir Sementsov-Ogievskiy 22720978623eSVladimir Sementsov-Ogievskiy /* old_bs reference is transparently moved from @s to @s->child */ 22730978623eSVladimir Sementsov-Ogievskiy bdrv_replace_child_noperm(s->child, s->old_bs); 22740978623eSVladimir Sementsov-Ogievskiy bdrv_unref(new_bs); 22750978623eSVladimir Sementsov-Ogievskiy } 22760978623eSVladimir Sementsov-Ogievskiy 22770978623eSVladimir Sementsov-Ogievskiy static TransactionActionDrv bdrv_replace_child_drv = { 22780978623eSVladimir Sementsov-Ogievskiy .commit = bdrv_replace_child_commit, 22790978623eSVladimir Sementsov-Ogievskiy .abort = bdrv_replace_child_abort, 22800978623eSVladimir Sementsov-Ogievskiy .clean = g_free, 22810978623eSVladimir Sementsov-Ogievskiy }; 22820978623eSVladimir Sementsov-Ogievskiy 22830978623eSVladimir Sementsov-Ogievskiy /* 22844bf021dbSVladimir Sementsov-Ogievskiy * bdrv_replace_child_tran 22850978623eSVladimir Sementsov-Ogievskiy * 22860978623eSVladimir Sementsov-Ogievskiy * Note: real unref of old_bs is done only on commit. 22874bf021dbSVladimir Sementsov-Ogievskiy * 22884bf021dbSVladimir Sementsov-Ogievskiy * The function doesn't update permissions, caller is responsible for this. 22890978623eSVladimir Sementsov-Ogievskiy */ 22904bf021dbSVladimir Sementsov-Ogievskiy static void bdrv_replace_child_tran(BdrvChild *child, BlockDriverState *new_bs, 22910978623eSVladimir Sementsov-Ogievskiy Transaction *tran) 22920978623eSVladimir Sementsov-Ogievskiy { 22930978623eSVladimir Sementsov-Ogievskiy BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1); 22940978623eSVladimir Sementsov-Ogievskiy *s = (BdrvReplaceChildState) { 22950978623eSVladimir Sementsov-Ogievskiy .child = child, 22960978623eSVladimir Sementsov-Ogievskiy .old_bs = child->bs, 22970978623eSVladimir Sementsov-Ogievskiy }; 22980978623eSVladimir Sementsov-Ogievskiy tran_add(tran, &bdrv_replace_child_drv, s); 22990978623eSVladimir Sementsov-Ogievskiy 23000978623eSVladimir Sementsov-Ogievskiy if (new_bs) { 23010978623eSVladimir Sementsov-Ogievskiy bdrv_ref(new_bs); 23020978623eSVladimir Sementsov-Ogievskiy } 23030978623eSVladimir Sementsov-Ogievskiy bdrv_replace_child_noperm(child, new_bs); 23040978623eSVladimir Sementsov-Ogievskiy /* old_bs reference is transparently moved from @child to @s */ 23050978623eSVladimir Sementsov-Ogievskiy } 23060978623eSVladimir Sementsov-Ogievskiy 230733a610c3SKevin Wolf /* 2308c20555e1SVladimir Sementsov-Ogievskiy * Refresh permissions in @bs subtree. The function is intended to be called 2309c20555e1SVladimir Sementsov-Ogievskiy * after some graph modification that was done without permission update. 231033a610c3SKevin Wolf */ 2311c20555e1SVladimir Sementsov-Ogievskiy static int bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q, 2312b1d2bbebSVladimir Sementsov-Ogievskiy Transaction *tran, Error **errp) 231333a610c3SKevin Wolf { 231433a610c3SKevin Wolf BlockDriver *drv = bs->drv; 231533a610c3SKevin Wolf BdrvChild *c; 231633a610c3SKevin Wolf int ret; 2317c20555e1SVladimir Sementsov-Ogievskiy uint64_t cumulative_perms, cumulative_shared_perms; 2318c20555e1SVladimir Sementsov-Ogievskiy 2319c20555e1SVladimir Sementsov-Ogievskiy bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms); 232033a610c3SKevin Wolf 232133a610c3SKevin Wolf /* Write permissions never work with read-only images */ 232233a610c3SKevin Wolf if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && 2323cc022140SMax Reitz !bdrv_is_writable_after_reopen(bs, q)) 232433a610c3SKevin Wolf { 2325481e0eeeSMax Reitz if (!bdrv_is_writable_after_reopen(bs, NULL)) { 232633a610c3SKevin Wolf error_setg(errp, "Block node is read-only"); 2327481e0eeeSMax Reitz } else { 2328c20555e1SVladimir Sementsov-Ogievskiy error_setg(errp, "Read-only block node '%s' cannot support " 2329c20555e1SVladimir Sementsov-Ogievskiy "read-write users", bdrv_get_node_name(bs)); 2330481e0eeeSMax Reitz } 2331481e0eeeSMax Reitz 233233a610c3SKevin Wolf return -EPERM; 233333a610c3SKevin Wolf } 233433a610c3SKevin Wolf 23359c60a5d1SKevin Wolf /* 23369c60a5d1SKevin Wolf * Unaligned requests will automatically be aligned to bl.request_alignment 23379c60a5d1SKevin Wolf * and without RESIZE we can't extend requests to write to space beyond the 23389c60a5d1SKevin Wolf * end of the image, so it's required that the image size is aligned. 23399c60a5d1SKevin Wolf */ 23409c60a5d1SKevin Wolf if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && 23419c60a5d1SKevin Wolf !(cumulative_perms & BLK_PERM_RESIZE)) 23429c60a5d1SKevin Wolf { 23439c60a5d1SKevin Wolf if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) { 23449c60a5d1SKevin Wolf error_setg(errp, "Cannot get 'write' permission without 'resize': " 23459c60a5d1SKevin Wolf "Image size is not a multiple of request " 23469c60a5d1SKevin Wolf "alignment"); 23479c60a5d1SKevin Wolf return -EPERM; 23489c60a5d1SKevin Wolf } 23499c60a5d1SKevin Wolf } 23509c60a5d1SKevin Wolf 235133a610c3SKevin Wolf /* Check this node */ 235233a610c3SKevin Wolf if (!drv) { 235333a610c3SKevin Wolf return 0; 235433a610c3SKevin Wolf } 235533a610c3SKevin Wolf 2356b1d2bbebSVladimir Sementsov-Ogievskiy ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran, 23572513ef59SVladimir Sementsov-Ogievskiy errp); 23589530a25bSVladimir Sementsov-Ogievskiy if (ret < 0) { 23599530a25bSVladimir Sementsov-Ogievskiy return ret; 23609530a25bSVladimir Sementsov-Ogievskiy } 236133a610c3SKevin Wolf 236278e421c9SKevin Wolf /* Drivers that never have children can omit .bdrv_child_perm() */ 236333a610c3SKevin Wolf if (!drv->bdrv_child_perm) { 236478e421c9SKevin Wolf assert(QLIST_EMPTY(&bs->children)); 236533a610c3SKevin Wolf return 0; 236633a610c3SKevin Wolf } 236733a610c3SKevin Wolf 236833a610c3SKevin Wolf /* Check all children */ 236933a610c3SKevin Wolf QLIST_FOREACH(c, &bs->children, next) { 237033a610c3SKevin Wolf uint64_t cur_perm, cur_shared; 23719eab1544SMax Reitz 2372e5d8a406SMax Reitz bdrv_child_perm(bs, c->bs, c, c->role, q, 237333a610c3SKevin Wolf cumulative_perms, cumulative_shared_perms, 237433a610c3SKevin Wolf &cur_perm, &cur_shared); 2375ecb776bdSVladimir Sementsov-Ogievskiy bdrv_child_set_perm(c, cur_perm, cur_shared, tran); 2376b1d2bbebSVladimir Sementsov-Ogievskiy } 2377b1d2bbebSVladimir Sementsov-Ogievskiy 2378b1d2bbebSVladimir Sementsov-Ogievskiy return 0; 2379b1d2bbebSVladimir Sementsov-Ogievskiy } 2380b1d2bbebSVladimir Sementsov-Ogievskiy 238125409807SVladimir Sementsov-Ogievskiy static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q, 2382b1d2bbebSVladimir Sementsov-Ogievskiy Transaction *tran, Error **errp) 2383b1d2bbebSVladimir Sementsov-Ogievskiy { 2384b1d2bbebSVladimir Sementsov-Ogievskiy int ret; 2385b1d2bbebSVladimir Sementsov-Ogievskiy BlockDriverState *bs; 2386b1d2bbebSVladimir Sementsov-Ogievskiy 2387b1d2bbebSVladimir Sementsov-Ogievskiy for ( ; list; list = list->next) { 2388b1d2bbebSVladimir Sementsov-Ogievskiy bs = list->data; 2389b1d2bbebSVladimir Sementsov-Ogievskiy 23909397c14fSVladimir Sementsov-Ogievskiy if (bdrv_parent_perms_conflict(bs, errp)) { 2391b1d2bbebSVladimir Sementsov-Ogievskiy return -EINVAL; 2392b1d2bbebSVladimir Sementsov-Ogievskiy } 2393b1d2bbebSVladimir Sementsov-Ogievskiy 2394c20555e1SVladimir Sementsov-Ogievskiy ret = bdrv_node_refresh_perm(bs, q, tran, errp); 2395b1d2bbebSVladimir Sementsov-Ogievskiy if (ret < 0) { 2396b1d2bbebSVladimir Sementsov-Ogievskiy return ret; 2397b1d2bbebSVladimir Sementsov-Ogievskiy } 2398bd57f8f7SVladimir Sementsov-Ogievskiy } 23993ef45e02SVladimir Sementsov-Ogievskiy 2400bd57f8f7SVladimir Sementsov-Ogievskiy return 0; 2401bd57f8f7SVladimir Sementsov-Ogievskiy } 2402bd57f8f7SVladimir Sementsov-Ogievskiy 2403c7a0f2beSKevin Wolf void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm, 240433a610c3SKevin Wolf uint64_t *shared_perm) 240533a610c3SKevin Wolf { 240633a610c3SKevin Wolf BdrvChild *c; 240733a610c3SKevin Wolf uint64_t cumulative_perms = 0; 240833a610c3SKevin Wolf uint64_t cumulative_shared_perms = BLK_PERM_ALL; 240933a610c3SKevin Wolf 241033a610c3SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 241133a610c3SKevin Wolf cumulative_perms |= c->perm; 241233a610c3SKevin Wolf cumulative_shared_perms &= c->shared_perm; 241333a610c3SKevin Wolf } 241433a610c3SKevin Wolf 241533a610c3SKevin Wolf *perm = cumulative_perms; 241633a610c3SKevin Wolf *shared_perm = cumulative_shared_perms; 241733a610c3SKevin Wolf } 241833a610c3SKevin Wolf 24195176196cSFam Zheng char *bdrv_perm_names(uint64_t perm) 2420d083319fSKevin Wolf { 2421d083319fSKevin Wolf struct perm_name { 2422d083319fSKevin Wolf uint64_t perm; 2423d083319fSKevin Wolf const char *name; 2424d083319fSKevin Wolf } permissions[] = { 2425d083319fSKevin Wolf { BLK_PERM_CONSISTENT_READ, "consistent read" }, 2426d083319fSKevin Wolf { BLK_PERM_WRITE, "write" }, 2427d083319fSKevin Wolf { BLK_PERM_WRITE_UNCHANGED, "write unchanged" }, 2428d083319fSKevin Wolf { BLK_PERM_RESIZE, "resize" }, 2429d083319fSKevin Wolf { BLK_PERM_GRAPH_MOD, "change children" }, 2430d083319fSKevin Wolf { 0, NULL } 2431d083319fSKevin Wolf }; 2432d083319fSKevin Wolf 2433e2a7423aSAlberto Garcia GString *result = g_string_sized_new(30); 2434d083319fSKevin Wolf struct perm_name *p; 2435d083319fSKevin Wolf 2436d083319fSKevin Wolf for (p = permissions; p->name; p++) { 2437d083319fSKevin Wolf if (perm & p->perm) { 2438e2a7423aSAlberto Garcia if (result->len > 0) { 2439e2a7423aSAlberto Garcia g_string_append(result, ", "); 2440e2a7423aSAlberto Garcia } 2441e2a7423aSAlberto Garcia g_string_append(result, p->name); 2442d083319fSKevin Wolf } 2443d083319fSKevin Wolf } 2444d083319fSKevin Wolf 2445e2a7423aSAlberto Garcia return g_string_free(result, FALSE); 2446d083319fSKevin Wolf } 2447d083319fSKevin Wolf 244833a610c3SKevin Wolf 2449071b474fSVladimir Sementsov-Ogievskiy static int bdrv_refresh_perms(BlockDriverState *bs, Error **errp) 2450bb87e4d1SVladimir Sementsov-Ogievskiy { 2451bb87e4d1SVladimir Sementsov-Ogievskiy int ret; 2452b1d2bbebSVladimir Sementsov-Ogievskiy Transaction *tran = tran_new(); 2453b1d2bbebSVladimir Sementsov-Ogievskiy g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs); 2454bb87e4d1SVladimir Sementsov-Ogievskiy 2455b1d2bbebSVladimir Sementsov-Ogievskiy ret = bdrv_list_refresh_perms(list, NULL, tran, errp); 2456b1d2bbebSVladimir Sementsov-Ogievskiy tran_finalize(tran, ret); 2457b1d2bbebSVladimir Sementsov-Ogievskiy 2458bb87e4d1SVladimir Sementsov-Ogievskiy return ret; 2459bb87e4d1SVladimir Sementsov-Ogievskiy } 2460bb87e4d1SVladimir Sementsov-Ogievskiy 246133a610c3SKevin Wolf int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared, 246233a610c3SKevin Wolf Error **errp) 246333a610c3SKevin Wolf { 24641046779eSMax Reitz Error *local_err = NULL; 246583928dc4SVladimir Sementsov-Ogievskiy Transaction *tran = tran_new(); 246633a610c3SKevin Wolf int ret; 246733a610c3SKevin Wolf 2468ecb776bdSVladimir Sementsov-Ogievskiy bdrv_child_set_perm(c, perm, shared, tran); 246983928dc4SVladimir Sementsov-Ogievskiy 247083928dc4SVladimir Sementsov-Ogievskiy ret = bdrv_refresh_perms(c->bs, &local_err); 247183928dc4SVladimir Sementsov-Ogievskiy 247283928dc4SVladimir Sementsov-Ogievskiy tran_finalize(tran, ret); 247383928dc4SVladimir Sementsov-Ogievskiy 247433a610c3SKevin Wolf if (ret < 0) { 2475071b474fSVladimir Sementsov-Ogievskiy if ((perm & ~c->perm) || (c->shared_perm & ~shared)) { 2476071b474fSVladimir Sementsov-Ogievskiy /* tighten permissions */ 24771046779eSMax Reitz error_propagate(errp, local_err); 24781046779eSMax Reitz } else { 24791046779eSMax Reitz /* 24801046779eSMax Reitz * Our caller may intend to only loosen restrictions and 24811046779eSMax Reitz * does not expect this function to fail. Errors are not 24821046779eSMax Reitz * fatal in such a case, so we can just hide them from our 24831046779eSMax Reitz * caller. 24841046779eSMax Reitz */ 24851046779eSMax Reitz error_free(local_err); 24861046779eSMax Reitz ret = 0; 24871046779eSMax Reitz } 248833a610c3SKevin Wolf } 248933a610c3SKevin Wolf 249083928dc4SVladimir Sementsov-Ogievskiy return ret; 2491d5e6f437SKevin Wolf } 2492d5e6f437SKevin Wolf 2493c1087f12SMax Reitz int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp) 2494c1087f12SMax Reitz { 2495c1087f12SMax Reitz uint64_t parent_perms, parent_shared; 2496c1087f12SMax Reitz uint64_t perms, shared; 2497c1087f12SMax Reitz 2498c1087f12SMax Reitz bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared); 2499e5d8a406SMax Reitz bdrv_child_perm(bs, c->bs, c, c->role, NULL, 2500bf8e925eSMax Reitz parent_perms, parent_shared, &perms, &shared); 2501c1087f12SMax Reitz 2502c1087f12SMax Reitz return bdrv_child_try_set_perm(c, perms, shared, errp); 2503c1087f12SMax Reitz } 2504c1087f12SMax Reitz 250587278af1SMax Reitz /* 250687278af1SMax Reitz * Default implementation for .bdrv_child_perm() for block filters: 250787278af1SMax Reitz * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the 250887278af1SMax Reitz * filtered child. 250987278af1SMax Reitz */ 251087278af1SMax Reitz static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c, 2511bf8e925eSMax Reitz BdrvChildRole role, 2512e0995dc3SKevin Wolf BlockReopenQueue *reopen_queue, 25136a1b9ee1SKevin Wolf uint64_t perm, uint64_t shared, 25146a1b9ee1SKevin Wolf uint64_t *nperm, uint64_t *nshared) 25156a1b9ee1SKevin Wolf { 25166a1b9ee1SKevin Wolf *nperm = perm & DEFAULT_PERM_PASSTHROUGH; 25176a1b9ee1SKevin Wolf *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED; 25186a1b9ee1SKevin Wolf } 25196a1b9ee1SKevin Wolf 252070082db4SMax Reitz static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c, 252170082db4SMax Reitz BdrvChildRole role, 252270082db4SMax Reitz BlockReopenQueue *reopen_queue, 252370082db4SMax Reitz uint64_t perm, uint64_t shared, 252470082db4SMax Reitz uint64_t *nperm, uint64_t *nshared) 252570082db4SMax Reitz { 2526e5d8a406SMax Reitz assert(role & BDRV_CHILD_COW); 252770082db4SMax Reitz 252870082db4SMax Reitz /* 252970082db4SMax Reitz * We want consistent read from backing files if the parent needs it. 253070082db4SMax Reitz * No other operations are performed on backing files. 253170082db4SMax Reitz */ 253270082db4SMax Reitz perm &= BLK_PERM_CONSISTENT_READ; 253370082db4SMax Reitz 253470082db4SMax Reitz /* 253570082db4SMax Reitz * If the parent can deal with changing data, we're okay with a 253670082db4SMax Reitz * writable and resizable backing file. 253770082db4SMax Reitz * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? 253870082db4SMax Reitz */ 253970082db4SMax Reitz if (shared & BLK_PERM_WRITE) { 254070082db4SMax Reitz shared = BLK_PERM_WRITE | BLK_PERM_RESIZE; 254170082db4SMax Reitz } else { 254270082db4SMax Reitz shared = 0; 254370082db4SMax Reitz } 254470082db4SMax Reitz 254570082db4SMax Reitz shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD | 254670082db4SMax Reitz BLK_PERM_WRITE_UNCHANGED; 254770082db4SMax Reitz 254870082db4SMax Reitz if (bs->open_flags & BDRV_O_INACTIVE) { 254970082db4SMax Reitz shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE; 255070082db4SMax Reitz } 255170082db4SMax Reitz 255270082db4SMax Reitz *nperm = perm; 255370082db4SMax Reitz *nshared = shared; 255470082db4SMax Reitz } 255570082db4SMax Reitz 25566f838a4bSMax Reitz static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c, 2557bf8e925eSMax Reitz BdrvChildRole role, 2558e0995dc3SKevin Wolf BlockReopenQueue *reopen_queue, 25596b1a044aSKevin Wolf uint64_t perm, uint64_t shared, 25606b1a044aSKevin Wolf uint64_t *nperm, uint64_t *nshared) 25616b1a044aSKevin Wolf { 25626f838a4bSMax Reitz int flags; 25636b1a044aSKevin Wolf 2564e5d8a406SMax Reitz assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)); 25655fbfabd3SKevin Wolf 25666f838a4bSMax Reitz flags = bdrv_reopen_get_flags(reopen_queue, bs); 25676f838a4bSMax Reitz 25686f838a4bSMax Reitz /* 25696f838a4bSMax Reitz * Apart from the modifications below, the same permissions are 25706f838a4bSMax Reitz * forwarded and left alone as for filters 25716f838a4bSMax Reitz */ 2572e5d8a406SMax Reitz bdrv_filter_default_perms(bs, c, role, reopen_queue, 2573bd86fb99SMax Reitz perm, shared, &perm, &shared); 25746b1a044aSKevin Wolf 2575f889054fSMax Reitz if (role & BDRV_CHILD_METADATA) { 25766b1a044aSKevin Wolf /* Format drivers may touch metadata even if the guest doesn't write */ 2577cc022140SMax Reitz if (bdrv_is_writable_after_reopen(bs, reopen_queue)) { 25786b1a044aSKevin Wolf perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE; 25796b1a044aSKevin Wolf } 25806b1a044aSKevin Wolf 25816f838a4bSMax Reitz /* 2582f889054fSMax Reitz * bs->file always needs to be consistent because of the 2583f889054fSMax Reitz * metadata. We can never allow other users to resize or write 2584f889054fSMax Reitz * to it. 25856f838a4bSMax Reitz */ 25865fbfabd3SKevin Wolf if (!(flags & BDRV_O_NO_IO)) { 25876b1a044aSKevin Wolf perm |= BLK_PERM_CONSISTENT_READ; 25885fbfabd3SKevin Wolf } 25896b1a044aSKevin Wolf shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE); 2590f889054fSMax Reitz } 2591f889054fSMax Reitz 2592f889054fSMax Reitz if (role & BDRV_CHILD_DATA) { 2593f889054fSMax Reitz /* 2594f889054fSMax Reitz * Technically, everything in this block is a subset of the 2595f889054fSMax Reitz * BDRV_CHILD_METADATA path taken above, and so this could 2596f889054fSMax Reitz * be an "else if" branch. However, that is not obvious, and 2597f889054fSMax Reitz * this function is not performance critical, therefore we let 2598f889054fSMax Reitz * this be an independent "if". 2599f889054fSMax Reitz */ 2600f889054fSMax Reitz 2601f889054fSMax Reitz /* 2602f889054fSMax Reitz * We cannot allow other users to resize the file because the 2603f889054fSMax Reitz * format driver might have some assumptions about the size 2604f889054fSMax Reitz * (e.g. because it is stored in metadata, or because the file 2605f889054fSMax Reitz * is split into fixed-size data files). 2606f889054fSMax Reitz */ 2607f889054fSMax Reitz shared &= ~BLK_PERM_RESIZE; 2608f889054fSMax Reitz 2609f889054fSMax Reitz /* 2610f889054fSMax Reitz * WRITE_UNCHANGED often cannot be performed as such on the 2611f889054fSMax Reitz * data file. For example, the qcow2 driver may still need to 2612f889054fSMax Reitz * write copied clusters on copy-on-read. 2613f889054fSMax Reitz */ 2614f889054fSMax Reitz if (perm & BLK_PERM_WRITE_UNCHANGED) { 2615f889054fSMax Reitz perm |= BLK_PERM_WRITE; 2616f889054fSMax Reitz } 2617f889054fSMax Reitz 2618f889054fSMax Reitz /* 2619f889054fSMax Reitz * If the data file is written to, the format driver may 2620f889054fSMax Reitz * expect to be able to resize it by writing beyond the EOF. 2621f889054fSMax Reitz */ 2622f889054fSMax Reitz if (perm & BLK_PERM_WRITE) { 2623f889054fSMax Reitz perm |= BLK_PERM_RESIZE; 2624f889054fSMax Reitz } 2625f889054fSMax Reitz } 262633f2663bSMax Reitz 262733f2663bSMax Reitz if (bs->open_flags & BDRV_O_INACTIVE) { 262833f2663bSMax Reitz shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE; 262933f2663bSMax Reitz } 263033f2663bSMax Reitz 263133f2663bSMax Reitz *nperm = perm; 263233f2663bSMax Reitz *nshared = shared; 26336f838a4bSMax Reitz } 26346f838a4bSMax Reitz 26352519f549SMax Reitz void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c, 2636e5d8a406SMax Reitz BdrvChildRole role, BlockReopenQueue *reopen_queue, 26372519f549SMax Reitz uint64_t perm, uint64_t shared, 26382519f549SMax Reitz uint64_t *nperm, uint64_t *nshared) 26392519f549SMax Reitz { 26402519f549SMax Reitz if (role & BDRV_CHILD_FILTERED) { 26412519f549SMax Reitz assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA | 26422519f549SMax Reitz BDRV_CHILD_COW))); 2643e5d8a406SMax Reitz bdrv_filter_default_perms(bs, c, role, reopen_queue, 26442519f549SMax Reitz perm, shared, nperm, nshared); 26452519f549SMax Reitz } else if (role & BDRV_CHILD_COW) { 26462519f549SMax Reitz assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA))); 2647e5d8a406SMax Reitz bdrv_default_perms_for_cow(bs, c, role, reopen_queue, 26482519f549SMax Reitz perm, shared, nperm, nshared); 26492519f549SMax Reitz } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) { 2650e5d8a406SMax Reitz bdrv_default_perms_for_storage(bs, c, role, reopen_queue, 26512519f549SMax Reitz perm, shared, nperm, nshared); 26522519f549SMax Reitz } else { 26532519f549SMax Reitz g_assert_not_reached(); 26542519f549SMax Reitz } 26552519f549SMax Reitz } 26562519f549SMax Reitz 26577b1d9c4dSMax Reitz uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm) 26587b1d9c4dSMax Reitz { 26597b1d9c4dSMax Reitz static const uint64_t permissions[] = { 26607b1d9c4dSMax Reitz [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ, 26617b1d9c4dSMax Reitz [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE, 26627b1d9c4dSMax Reitz [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED, 26637b1d9c4dSMax Reitz [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE, 26647b1d9c4dSMax Reitz [BLOCK_PERMISSION_GRAPH_MOD] = BLK_PERM_GRAPH_MOD, 26657b1d9c4dSMax Reitz }; 26667b1d9c4dSMax Reitz 26677b1d9c4dSMax Reitz QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX); 26687b1d9c4dSMax Reitz QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1); 26697b1d9c4dSMax Reitz 26707b1d9c4dSMax Reitz assert(qapi_perm < BLOCK_PERMISSION__MAX); 26717b1d9c4dSMax Reitz 26727b1d9c4dSMax Reitz return permissions[qapi_perm]; 26737b1d9c4dSMax Reitz } 26747b1d9c4dSMax Reitz 26758ee03995SKevin Wolf static void bdrv_replace_child_noperm(BdrvChild *child, 26768ee03995SKevin Wolf BlockDriverState *new_bs) 2677e9740bc6SKevin Wolf { 2678e9740bc6SKevin Wolf BlockDriverState *old_bs = child->bs; 2679debc2927SMax Reitz int new_bs_quiesce_counter; 2680debc2927SMax Reitz int drain_saldo; 2681e9740bc6SKevin Wolf 26822cad1ebeSAlberto Garcia assert(!child->frozen); 2683bfb8aa6dSKevin Wolf assert(old_bs != new_bs); 26842cad1ebeSAlberto Garcia 2685bb2614e9SFam Zheng if (old_bs && new_bs) { 2686bb2614e9SFam Zheng assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs)); 2687bb2614e9SFam Zheng } 2688debc2927SMax Reitz 2689debc2927SMax Reitz new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0); 2690debc2927SMax Reitz drain_saldo = new_bs_quiesce_counter - child->parent_quiesce_counter; 2691debc2927SMax Reitz 2692debc2927SMax Reitz /* 2693debc2927SMax Reitz * If the new child node is drained but the old one was not, flush 2694debc2927SMax Reitz * all outstanding requests to the old child node. 2695debc2927SMax Reitz */ 2696bd86fb99SMax Reitz while (drain_saldo > 0 && child->klass->drained_begin) { 2697debc2927SMax Reitz bdrv_parent_drained_begin_single(child, true); 2698debc2927SMax Reitz drain_saldo--; 2699debc2927SMax Reitz } 2700debc2927SMax Reitz 2701e9740bc6SKevin Wolf if (old_bs) { 2702d736f119SKevin Wolf /* Detach first so that the recursive drain sections coming from @child 2703d736f119SKevin Wolf * are already gone and we only end the drain sections that came from 2704d736f119SKevin Wolf * elsewhere. */ 2705bd86fb99SMax Reitz if (child->klass->detach) { 2706bd86fb99SMax Reitz child->klass->detach(child); 2707d736f119SKevin Wolf } 270836fe1331SKevin Wolf QLIST_REMOVE(child, next_parent); 2709e9740bc6SKevin Wolf } 2710e9740bc6SKevin Wolf 2711e9740bc6SKevin Wolf child->bs = new_bs; 271236fe1331SKevin Wolf 271336fe1331SKevin Wolf if (new_bs) { 271436fe1331SKevin Wolf QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent); 2715debc2927SMax Reitz 2716debc2927SMax Reitz /* 2717debc2927SMax Reitz * Detaching the old node may have led to the new node's 2718debc2927SMax Reitz * quiesce_counter having been decreased. Not a problem, we 2719debc2927SMax Reitz * just need to recognize this here and then invoke 2720debc2927SMax Reitz * drained_end appropriately more often. 2721debc2927SMax Reitz */ 2722debc2927SMax Reitz assert(new_bs->quiesce_counter <= new_bs_quiesce_counter); 2723debc2927SMax Reitz drain_saldo += new_bs->quiesce_counter - new_bs_quiesce_counter; 272433a610c3SKevin Wolf 2725d736f119SKevin Wolf /* Attach only after starting new drained sections, so that recursive 2726d736f119SKevin Wolf * drain sections coming from @child don't get an extra .drained_begin 2727d736f119SKevin Wolf * callback. */ 2728bd86fb99SMax Reitz if (child->klass->attach) { 2729bd86fb99SMax Reitz child->klass->attach(child); 2730db95dbbaSKevin Wolf } 273136fe1331SKevin Wolf } 2732debc2927SMax Reitz 2733debc2927SMax Reitz /* 2734debc2927SMax Reitz * If the old child node was drained but the new one is not, allow 2735debc2927SMax Reitz * requests to come in only after the new node has been attached. 2736debc2927SMax Reitz */ 2737bd86fb99SMax Reitz while (drain_saldo < 0 && child->klass->drained_end) { 2738debc2927SMax Reitz bdrv_parent_drained_end_single(child); 2739debc2927SMax Reitz drain_saldo++; 2740debc2927SMax Reitz } 2741e9740bc6SKevin Wolf } 2742e9740bc6SKevin Wolf 2743*04c9c3a5SHanna Reitz /** 2744*04c9c3a5SHanna Reitz * Free the given @child. 2745*04c9c3a5SHanna Reitz * 2746*04c9c3a5SHanna Reitz * The child must be empty (i.e. `child->bs == NULL`) and it must be 2747*04c9c3a5SHanna Reitz * unused (i.e. not in a children list). 2748*04c9c3a5SHanna Reitz */ 2749*04c9c3a5SHanna Reitz static void bdrv_child_free(BdrvChild *child) 2750548a74c0SVladimir Sementsov-Ogievskiy { 2751548a74c0SVladimir Sementsov-Ogievskiy assert(!child->bs); 2752a225369bSHanna Reitz assert(!child->next.le_prev); /* not in children list */ 2753*04c9c3a5SHanna Reitz 2754*04c9c3a5SHanna Reitz g_free(child->name); 2755*04c9c3a5SHanna Reitz g_free(child); 2756548a74c0SVladimir Sementsov-Ogievskiy } 2757548a74c0SVladimir Sementsov-Ogievskiy 2758548a74c0SVladimir Sementsov-Ogievskiy typedef struct BdrvAttachChildCommonState { 2759548a74c0SVladimir Sementsov-Ogievskiy BdrvChild **child; 2760548a74c0SVladimir Sementsov-Ogievskiy AioContext *old_parent_ctx; 2761548a74c0SVladimir Sementsov-Ogievskiy AioContext *old_child_ctx; 2762548a74c0SVladimir Sementsov-Ogievskiy } BdrvAttachChildCommonState; 2763548a74c0SVladimir Sementsov-Ogievskiy 2764548a74c0SVladimir Sementsov-Ogievskiy static void bdrv_attach_child_common_abort(void *opaque) 2765548a74c0SVladimir Sementsov-Ogievskiy { 2766548a74c0SVladimir Sementsov-Ogievskiy BdrvAttachChildCommonState *s = opaque; 2767548a74c0SVladimir Sementsov-Ogievskiy BdrvChild *child = *s->child; 2768548a74c0SVladimir Sementsov-Ogievskiy BlockDriverState *bs = child->bs; 2769548a74c0SVladimir Sementsov-Ogievskiy 2770548a74c0SVladimir Sementsov-Ogievskiy bdrv_replace_child_noperm(child, NULL); 2771548a74c0SVladimir Sementsov-Ogievskiy 2772548a74c0SVladimir Sementsov-Ogievskiy if (bdrv_get_aio_context(bs) != s->old_child_ctx) { 2773548a74c0SVladimir Sementsov-Ogievskiy bdrv_try_set_aio_context(bs, s->old_child_ctx, &error_abort); 2774548a74c0SVladimir Sementsov-Ogievskiy } 2775548a74c0SVladimir Sementsov-Ogievskiy 2776548a74c0SVladimir Sementsov-Ogievskiy if (bdrv_child_get_parent_aio_context(child) != s->old_parent_ctx) { 2777548a74c0SVladimir Sementsov-Ogievskiy GSList *ignore = g_slist_prepend(NULL, child); 2778548a74c0SVladimir Sementsov-Ogievskiy 2779548a74c0SVladimir Sementsov-Ogievskiy child->klass->can_set_aio_ctx(child, s->old_parent_ctx, &ignore, 2780548a74c0SVladimir Sementsov-Ogievskiy &error_abort); 2781548a74c0SVladimir Sementsov-Ogievskiy g_slist_free(ignore); 2782548a74c0SVladimir Sementsov-Ogievskiy ignore = g_slist_prepend(NULL, child); 2783548a74c0SVladimir Sementsov-Ogievskiy child->klass->set_aio_ctx(child, s->old_parent_ctx, &ignore); 2784548a74c0SVladimir Sementsov-Ogievskiy 2785548a74c0SVladimir Sementsov-Ogievskiy g_slist_free(ignore); 2786548a74c0SVladimir Sementsov-Ogievskiy } 2787548a74c0SVladimir Sementsov-Ogievskiy 2788548a74c0SVladimir Sementsov-Ogievskiy bdrv_unref(bs); 2789*04c9c3a5SHanna Reitz bdrv_child_free(child); 2790548a74c0SVladimir Sementsov-Ogievskiy *s->child = NULL; 2791548a74c0SVladimir Sementsov-Ogievskiy } 2792548a74c0SVladimir Sementsov-Ogievskiy 2793548a74c0SVladimir Sementsov-Ogievskiy static TransactionActionDrv bdrv_attach_child_common_drv = { 2794548a74c0SVladimir Sementsov-Ogievskiy .abort = bdrv_attach_child_common_abort, 2795548a74c0SVladimir Sementsov-Ogievskiy .clean = g_free, 2796548a74c0SVladimir Sementsov-Ogievskiy }; 2797548a74c0SVladimir Sementsov-Ogievskiy 2798548a74c0SVladimir Sementsov-Ogievskiy /* 2799548a74c0SVladimir Sementsov-Ogievskiy * Common part of attaching bdrv child to bs or to blk or to job 2800f8d2ad78SVladimir Sementsov-Ogievskiy * 2801f8d2ad78SVladimir Sementsov-Ogievskiy * Resulting new child is returned through @child. 2802f8d2ad78SVladimir Sementsov-Ogievskiy * At start *@child must be NULL. 2803f8d2ad78SVladimir Sementsov-Ogievskiy * @child is saved to a new entry of @tran, so that *@child could be reverted to 2804f8d2ad78SVladimir Sementsov-Ogievskiy * NULL on abort(). So referenced variable must live at least until transaction 2805f8d2ad78SVladimir Sementsov-Ogievskiy * end. 28067ec390d5SVladimir Sementsov-Ogievskiy * 28077ec390d5SVladimir Sementsov-Ogievskiy * Function doesn't update permissions, caller is responsible for this. 2808548a74c0SVladimir Sementsov-Ogievskiy */ 2809548a74c0SVladimir Sementsov-Ogievskiy static int bdrv_attach_child_common(BlockDriverState *child_bs, 2810548a74c0SVladimir Sementsov-Ogievskiy const char *child_name, 2811548a74c0SVladimir Sementsov-Ogievskiy const BdrvChildClass *child_class, 2812548a74c0SVladimir Sementsov-Ogievskiy BdrvChildRole child_role, 2813548a74c0SVladimir Sementsov-Ogievskiy uint64_t perm, uint64_t shared_perm, 2814548a74c0SVladimir Sementsov-Ogievskiy void *opaque, BdrvChild **child, 2815548a74c0SVladimir Sementsov-Ogievskiy Transaction *tran, Error **errp) 2816548a74c0SVladimir Sementsov-Ogievskiy { 2817548a74c0SVladimir Sementsov-Ogievskiy BdrvChild *new_child; 2818548a74c0SVladimir Sementsov-Ogievskiy AioContext *parent_ctx; 2819548a74c0SVladimir Sementsov-Ogievskiy AioContext *child_ctx = bdrv_get_aio_context(child_bs); 2820548a74c0SVladimir Sementsov-Ogievskiy 2821548a74c0SVladimir Sementsov-Ogievskiy assert(child); 2822548a74c0SVladimir Sementsov-Ogievskiy assert(*child == NULL); 2823da261b69SVladimir Sementsov-Ogievskiy assert(child_class->get_parent_desc); 2824548a74c0SVladimir Sementsov-Ogievskiy 2825548a74c0SVladimir Sementsov-Ogievskiy new_child = g_new(BdrvChild, 1); 2826548a74c0SVladimir Sementsov-Ogievskiy *new_child = (BdrvChild) { 2827548a74c0SVladimir Sementsov-Ogievskiy .bs = NULL, 2828548a74c0SVladimir Sementsov-Ogievskiy .name = g_strdup(child_name), 2829548a74c0SVladimir Sementsov-Ogievskiy .klass = child_class, 2830548a74c0SVladimir Sementsov-Ogievskiy .role = child_role, 2831548a74c0SVladimir Sementsov-Ogievskiy .perm = perm, 2832548a74c0SVladimir Sementsov-Ogievskiy .shared_perm = shared_perm, 2833548a74c0SVladimir Sementsov-Ogievskiy .opaque = opaque, 2834548a74c0SVladimir Sementsov-Ogievskiy }; 2835548a74c0SVladimir Sementsov-Ogievskiy 2836548a74c0SVladimir Sementsov-Ogievskiy /* 2837548a74c0SVladimir Sementsov-Ogievskiy * If the AioContexts don't match, first try to move the subtree of 2838548a74c0SVladimir Sementsov-Ogievskiy * child_bs into the AioContext of the new parent. If this doesn't work, 2839548a74c0SVladimir Sementsov-Ogievskiy * try moving the parent into the AioContext of child_bs instead. 2840548a74c0SVladimir Sementsov-Ogievskiy */ 2841548a74c0SVladimir Sementsov-Ogievskiy parent_ctx = bdrv_child_get_parent_aio_context(new_child); 2842548a74c0SVladimir Sementsov-Ogievskiy if (child_ctx != parent_ctx) { 2843548a74c0SVladimir Sementsov-Ogievskiy Error *local_err = NULL; 2844548a74c0SVladimir Sementsov-Ogievskiy int ret = bdrv_try_set_aio_context(child_bs, parent_ctx, &local_err); 2845548a74c0SVladimir Sementsov-Ogievskiy 2846548a74c0SVladimir Sementsov-Ogievskiy if (ret < 0 && child_class->can_set_aio_ctx) { 2847548a74c0SVladimir Sementsov-Ogievskiy GSList *ignore = g_slist_prepend(NULL, new_child); 2848548a74c0SVladimir Sementsov-Ogievskiy if (child_class->can_set_aio_ctx(new_child, child_ctx, &ignore, 2849548a74c0SVladimir Sementsov-Ogievskiy NULL)) 2850548a74c0SVladimir Sementsov-Ogievskiy { 2851548a74c0SVladimir Sementsov-Ogievskiy error_free(local_err); 2852548a74c0SVladimir Sementsov-Ogievskiy ret = 0; 2853548a74c0SVladimir Sementsov-Ogievskiy g_slist_free(ignore); 2854548a74c0SVladimir Sementsov-Ogievskiy ignore = g_slist_prepend(NULL, new_child); 2855548a74c0SVladimir Sementsov-Ogievskiy child_class->set_aio_ctx(new_child, child_ctx, &ignore); 2856548a74c0SVladimir Sementsov-Ogievskiy } 2857548a74c0SVladimir Sementsov-Ogievskiy g_slist_free(ignore); 2858548a74c0SVladimir Sementsov-Ogievskiy } 2859548a74c0SVladimir Sementsov-Ogievskiy 2860548a74c0SVladimir Sementsov-Ogievskiy if (ret < 0) { 2861548a74c0SVladimir Sementsov-Ogievskiy error_propagate(errp, local_err); 2862*04c9c3a5SHanna Reitz bdrv_child_free(new_child); 2863548a74c0SVladimir Sementsov-Ogievskiy return ret; 2864548a74c0SVladimir Sementsov-Ogievskiy } 2865548a74c0SVladimir Sementsov-Ogievskiy } 2866548a74c0SVladimir Sementsov-Ogievskiy 2867548a74c0SVladimir Sementsov-Ogievskiy bdrv_ref(child_bs); 2868548a74c0SVladimir Sementsov-Ogievskiy bdrv_replace_child_noperm(new_child, child_bs); 2869548a74c0SVladimir Sementsov-Ogievskiy 2870548a74c0SVladimir Sementsov-Ogievskiy *child = new_child; 2871548a74c0SVladimir Sementsov-Ogievskiy 2872548a74c0SVladimir Sementsov-Ogievskiy BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1); 2873548a74c0SVladimir Sementsov-Ogievskiy *s = (BdrvAttachChildCommonState) { 2874548a74c0SVladimir Sementsov-Ogievskiy .child = child, 2875548a74c0SVladimir Sementsov-Ogievskiy .old_parent_ctx = parent_ctx, 2876548a74c0SVladimir Sementsov-Ogievskiy .old_child_ctx = child_ctx, 2877548a74c0SVladimir Sementsov-Ogievskiy }; 2878548a74c0SVladimir Sementsov-Ogievskiy tran_add(tran, &bdrv_attach_child_common_drv, s); 2879548a74c0SVladimir Sementsov-Ogievskiy 2880548a74c0SVladimir Sementsov-Ogievskiy return 0; 2881548a74c0SVladimir Sementsov-Ogievskiy } 2882548a74c0SVladimir Sementsov-Ogievskiy 2883f8d2ad78SVladimir Sementsov-Ogievskiy /* 2884f8d2ad78SVladimir Sementsov-Ogievskiy * Variable referenced by @child must live at least until transaction end. 2885f8d2ad78SVladimir Sementsov-Ogievskiy * (see bdrv_attach_child_common() doc for details) 28867ec390d5SVladimir Sementsov-Ogievskiy * 28877ec390d5SVladimir Sementsov-Ogievskiy * Function doesn't update permissions, caller is responsible for this. 2888f8d2ad78SVladimir Sementsov-Ogievskiy */ 2889aa5a04c7SVladimir Sementsov-Ogievskiy static int bdrv_attach_child_noperm(BlockDriverState *parent_bs, 2890aa5a04c7SVladimir Sementsov-Ogievskiy BlockDriverState *child_bs, 2891aa5a04c7SVladimir Sementsov-Ogievskiy const char *child_name, 2892aa5a04c7SVladimir Sementsov-Ogievskiy const BdrvChildClass *child_class, 2893aa5a04c7SVladimir Sementsov-Ogievskiy BdrvChildRole child_role, 2894aa5a04c7SVladimir Sementsov-Ogievskiy BdrvChild **child, 2895aa5a04c7SVladimir Sementsov-Ogievskiy Transaction *tran, 2896aa5a04c7SVladimir Sementsov-Ogievskiy Error **errp) 2897aa5a04c7SVladimir Sementsov-Ogievskiy { 2898aa5a04c7SVladimir Sementsov-Ogievskiy int ret; 2899aa5a04c7SVladimir Sementsov-Ogievskiy uint64_t perm, shared_perm; 2900aa5a04c7SVladimir Sementsov-Ogievskiy 2901aa5a04c7SVladimir Sementsov-Ogievskiy assert(parent_bs->drv); 2902aa5a04c7SVladimir Sementsov-Ogievskiy 2903bfb8aa6dSKevin Wolf if (bdrv_recurse_has_child(child_bs, parent_bs)) { 2904bfb8aa6dSKevin Wolf error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle", 2905bfb8aa6dSKevin Wolf child_bs->node_name, child_name, parent_bs->node_name); 2906bfb8aa6dSKevin Wolf return -EINVAL; 2907bfb8aa6dSKevin Wolf } 2908bfb8aa6dSKevin Wolf 2909aa5a04c7SVladimir Sementsov-Ogievskiy bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm); 2910aa5a04c7SVladimir Sementsov-Ogievskiy bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL, 2911aa5a04c7SVladimir Sementsov-Ogievskiy perm, shared_perm, &perm, &shared_perm); 2912aa5a04c7SVladimir Sementsov-Ogievskiy 2913aa5a04c7SVladimir Sementsov-Ogievskiy ret = bdrv_attach_child_common(child_bs, child_name, child_class, 2914aa5a04c7SVladimir Sementsov-Ogievskiy child_role, perm, shared_perm, parent_bs, 2915aa5a04c7SVladimir Sementsov-Ogievskiy child, tran, errp); 2916aa5a04c7SVladimir Sementsov-Ogievskiy if (ret < 0) { 2917aa5a04c7SVladimir Sementsov-Ogievskiy return ret; 2918aa5a04c7SVladimir Sementsov-Ogievskiy } 2919aa5a04c7SVladimir Sementsov-Ogievskiy 2920aa5a04c7SVladimir Sementsov-Ogievskiy return 0; 2921aa5a04c7SVladimir Sementsov-Ogievskiy } 2922aa5a04c7SVladimir Sementsov-Ogievskiy 2923548a74c0SVladimir Sementsov-Ogievskiy static void bdrv_detach_child(BdrvChild *child) 2924548a74c0SVladimir Sementsov-Ogievskiy { 29254954aaceSVladimir Sementsov-Ogievskiy BlockDriverState *old_bs = child->bs; 29264954aaceSVladimir Sementsov-Ogievskiy 29274954aaceSVladimir Sementsov-Ogievskiy bdrv_replace_child_noperm(child, NULL); 2928*04c9c3a5SHanna Reitz bdrv_child_free(child); 29294954aaceSVladimir Sementsov-Ogievskiy 29304954aaceSVladimir Sementsov-Ogievskiy if (old_bs) { 29314954aaceSVladimir Sementsov-Ogievskiy /* 29324954aaceSVladimir Sementsov-Ogievskiy * Update permissions for old node. We're just taking a parent away, so 29334954aaceSVladimir Sementsov-Ogievskiy * we're loosening restrictions. Errors of permission update are not 29344954aaceSVladimir Sementsov-Ogievskiy * fatal in this case, ignore them. 29354954aaceSVladimir Sementsov-Ogievskiy */ 29364954aaceSVladimir Sementsov-Ogievskiy bdrv_refresh_perms(old_bs, NULL); 29374954aaceSVladimir Sementsov-Ogievskiy 29384954aaceSVladimir Sementsov-Ogievskiy /* 29394954aaceSVladimir Sementsov-Ogievskiy * When the parent requiring a non-default AioContext is removed, the 29404954aaceSVladimir Sementsov-Ogievskiy * node moves back to the main AioContext 29414954aaceSVladimir Sementsov-Ogievskiy */ 29424954aaceSVladimir Sementsov-Ogievskiy bdrv_try_set_aio_context(old_bs, qemu_get_aio_context(), NULL); 29434954aaceSVladimir Sementsov-Ogievskiy } 2944548a74c0SVladimir Sementsov-Ogievskiy } 2945548a74c0SVladimir Sementsov-Ogievskiy 2946b441dc71SAlberto Garcia /* 2947b441dc71SAlberto Garcia * This function steals the reference to child_bs from the caller. 2948b441dc71SAlberto Garcia * That reference is later dropped by bdrv_root_unref_child(). 2949b441dc71SAlberto Garcia * 2950b441dc71SAlberto Garcia * On failure NULL is returned, errp is set and the reference to 2951b441dc71SAlberto Garcia * child_bs is also dropped. 2952132ada80SKevin Wolf * 2953132ada80SKevin Wolf * The caller must hold the AioContext lock @child_bs, but not that of @ctx 2954132ada80SKevin Wolf * (unless @child_bs is already in @ctx). 2955b441dc71SAlberto Garcia */ 2956f21d96d0SKevin Wolf BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs, 2957260fecf1SKevin Wolf const char *child_name, 2958bd86fb99SMax Reitz const BdrvChildClass *child_class, 2959258b7765SMax Reitz BdrvChildRole child_role, 2960d5e6f437SKevin Wolf uint64_t perm, uint64_t shared_perm, 2961d5e6f437SKevin Wolf void *opaque, Error **errp) 2962df581792SKevin Wolf { 2963d5e6f437SKevin Wolf int ret; 2964548a74c0SVladimir Sementsov-Ogievskiy BdrvChild *child = NULL; 2965548a74c0SVladimir Sementsov-Ogievskiy Transaction *tran = tran_new(); 2966d5e6f437SKevin Wolf 2967548a74c0SVladimir Sementsov-Ogievskiy ret = bdrv_attach_child_common(child_bs, child_name, child_class, 2968548a74c0SVladimir Sementsov-Ogievskiy child_role, perm, shared_perm, opaque, 2969548a74c0SVladimir Sementsov-Ogievskiy &child, tran, errp); 2970d5e6f437SKevin Wolf if (ret < 0) { 2971e878bb12SKevin Wolf goto out; 2972d5e6f437SKevin Wolf } 2973d5e6f437SKevin Wolf 2974548a74c0SVladimir Sementsov-Ogievskiy ret = bdrv_refresh_perms(child_bs, errp); 2975df581792SKevin Wolf 2976e878bb12SKevin Wolf out: 2977e878bb12SKevin Wolf tran_finalize(tran, ret); 2978f8d2ad78SVladimir Sementsov-Ogievskiy /* child is unset on failure by bdrv_attach_child_common_abort() */ 2979f8d2ad78SVladimir Sementsov-Ogievskiy assert((ret < 0) == !child); 2980f8d2ad78SVladimir Sementsov-Ogievskiy 29817a26df20SVladimir Sementsov-Ogievskiy bdrv_unref(child_bs); 2982b4b059f6SKevin Wolf return child; 2983df581792SKevin Wolf } 2984df581792SKevin Wolf 2985b441dc71SAlberto Garcia /* 2986b441dc71SAlberto Garcia * This function transfers the reference to child_bs from the caller 2987b441dc71SAlberto Garcia * to parent_bs. That reference is later dropped by parent_bs on 2988b441dc71SAlberto Garcia * bdrv_close() or if someone calls bdrv_unref_child(). 2989b441dc71SAlberto Garcia * 2990b441dc71SAlberto Garcia * On failure NULL is returned, errp is set and the reference to 2991b441dc71SAlberto Garcia * child_bs is also dropped. 2992132ada80SKevin Wolf * 2993132ada80SKevin Wolf * If @parent_bs and @child_bs are in different AioContexts, the caller must 2994132ada80SKevin Wolf * hold the AioContext lock for @child_bs, but not for @parent_bs. 2995b441dc71SAlberto Garcia */ 299698292c61SWen Congyang BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs, 2997f21d96d0SKevin Wolf BlockDriverState *child_bs, 2998f21d96d0SKevin Wolf const char *child_name, 2999bd86fb99SMax Reitz const BdrvChildClass *child_class, 3000258b7765SMax Reitz BdrvChildRole child_role, 30018b2ff529SKevin Wolf Error **errp) 3002f21d96d0SKevin Wolf { 3003aa5a04c7SVladimir Sementsov-Ogievskiy int ret; 3004aa5a04c7SVladimir Sementsov-Ogievskiy BdrvChild *child = NULL; 3005aa5a04c7SVladimir Sementsov-Ogievskiy Transaction *tran = tran_new(); 3006d5e6f437SKevin Wolf 3007aa5a04c7SVladimir Sementsov-Ogievskiy ret = bdrv_attach_child_noperm(parent_bs, child_bs, child_name, child_class, 3008aa5a04c7SVladimir Sementsov-Ogievskiy child_role, &child, tran, errp); 3009aa5a04c7SVladimir Sementsov-Ogievskiy if (ret < 0) { 3010aa5a04c7SVladimir Sementsov-Ogievskiy goto out; 3011d5e6f437SKevin Wolf } 3012d5e6f437SKevin Wolf 3013aa5a04c7SVladimir Sementsov-Ogievskiy ret = bdrv_refresh_perms(parent_bs, errp); 3014aa5a04c7SVladimir Sementsov-Ogievskiy if (ret < 0) { 3015aa5a04c7SVladimir Sementsov-Ogievskiy goto out; 3016aa5a04c7SVladimir Sementsov-Ogievskiy } 3017aa5a04c7SVladimir Sementsov-Ogievskiy 3018aa5a04c7SVladimir Sementsov-Ogievskiy out: 3019aa5a04c7SVladimir Sementsov-Ogievskiy tran_finalize(tran, ret); 3020f8d2ad78SVladimir Sementsov-Ogievskiy /* child is unset on failure by bdrv_attach_child_common_abort() */ 3021f8d2ad78SVladimir Sementsov-Ogievskiy assert((ret < 0) == !child); 3022aa5a04c7SVladimir Sementsov-Ogievskiy 3023aa5a04c7SVladimir Sementsov-Ogievskiy bdrv_unref(child_bs); 3024aa5a04c7SVladimir Sementsov-Ogievskiy 3025f21d96d0SKevin Wolf return child; 3026f21d96d0SKevin Wolf } 3027f21d96d0SKevin Wolf 30287b99a266SMax Reitz /* Callers must ensure that child->frozen is false. */ 3029f21d96d0SKevin Wolf void bdrv_root_unref_child(BdrvChild *child) 303033a60407SKevin Wolf { 3031779020cbSKevin Wolf BlockDriverState *child_bs; 3032779020cbSKevin Wolf 3033f21d96d0SKevin Wolf child_bs = child->bs; 3034f21d96d0SKevin Wolf bdrv_detach_child(child); 3035f21d96d0SKevin Wolf bdrv_unref(child_bs); 3036f21d96d0SKevin Wolf } 3037f21d96d0SKevin Wolf 3038332b3a17SVladimir Sementsov-Ogievskiy typedef struct BdrvSetInheritsFrom { 3039332b3a17SVladimir Sementsov-Ogievskiy BlockDriverState *bs; 3040332b3a17SVladimir Sementsov-Ogievskiy BlockDriverState *old_inherits_from; 3041332b3a17SVladimir Sementsov-Ogievskiy } BdrvSetInheritsFrom; 3042332b3a17SVladimir Sementsov-Ogievskiy 3043332b3a17SVladimir Sementsov-Ogievskiy static void bdrv_set_inherits_from_abort(void *opaque) 3044332b3a17SVladimir Sementsov-Ogievskiy { 3045332b3a17SVladimir Sementsov-Ogievskiy BdrvSetInheritsFrom *s = opaque; 3046332b3a17SVladimir Sementsov-Ogievskiy 3047332b3a17SVladimir Sementsov-Ogievskiy s->bs->inherits_from = s->old_inherits_from; 3048332b3a17SVladimir Sementsov-Ogievskiy } 3049332b3a17SVladimir Sementsov-Ogievskiy 3050332b3a17SVladimir Sementsov-Ogievskiy static TransactionActionDrv bdrv_set_inherits_from_drv = { 3051332b3a17SVladimir Sementsov-Ogievskiy .abort = bdrv_set_inherits_from_abort, 3052332b3a17SVladimir Sementsov-Ogievskiy .clean = g_free, 3053332b3a17SVladimir Sementsov-Ogievskiy }; 3054332b3a17SVladimir Sementsov-Ogievskiy 3055332b3a17SVladimir Sementsov-Ogievskiy /* @tran is allowed to be NULL. In this case no rollback is possible */ 3056332b3a17SVladimir Sementsov-Ogievskiy static void bdrv_set_inherits_from(BlockDriverState *bs, 3057332b3a17SVladimir Sementsov-Ogievskiy BlockDriverState *new_inherits_from, 3058332b3a17SVladimir Sementsov-Ogievskiy Transaction *tran) 3059332b3a17SVladimir Sementsov-Ogievskiy { 3060332b3a17SVladimir Sementsov-Ogievskiy if (tran) { 3061332b3a17SVladimir Sementsov-Ogievskiy BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1); 3062332b3a17SVladimir Sementsov-Ogievskiy 3063332b3a17SVladimir Sementsov-Ogievskiy *s = (BdrvSetInheritsFrom) { 3064332b3a17SVladimir Sementsov-Ogievskiy .bs = bs, 3065332b3a17SVladimir Sementsov-Ogievskiy .old_inherits_from = bs->inherits_from, 3066332b3a17SVladimir Sementsov-Ogievskiy }; 3067332b3a17SVladimir Sementsov-Ogievskiy 3068332b3a17SVladimir Sementsov-Ogievskiy tran_add(tran, &bdrv_set_inherits_from_drv, s); 3069332b3a17SVladimir Sementsov-Ogievskiy } 3070332b3a17SVladimir Sementsov-Ogievskiy 3071332b3a17SVladimir Sementsov-Ogievskiy bs->inherits_from = new_inherits_from; 3072332b3a17SVladimir Sementsov-Ogievskiy } 3073332b3a17SVladimir Sementsov-Ogievskiy 30743cf746b3SMax Reitz /** 30753cf746b3SMax Reitz * Clear all inherits_from pointers from children and grandchildren of 30763cf746b3SMax Reitz * @root that point to @root, where necessary. 3077332b3a17SVladimir Sementsov-Ogievskiy * @tran is allowed to be NULL. In this case no rollback is possible 30783cf746b3SMax Reitz */ 3079332b3a17SVladimir Sementsov-Ogievskiy static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child, 3080332b3a17SVladimir Sementsov-Ogievskiy Transaction *tran) 3081f21d96d0SKevin Wolf { 30824e4bf5c4SKevin Wolf BdrvChild *c; 30834e4bf5c4SKevin Wolf 30843cf746b3SMax Reitz if (child->bs->inherits_from == root) { 30853cf746b3SMax Reitz /* 30863cf746b3SMax Reitz * Remove inherits_from only when the last reference between root and 30873cf746b3SMax Reitz * child->bs goes away. 30883cf746b3SMax Reitz */ 30893cf746b3SMax Reitz QLIST_FOREACH(c, &root->children, next) { 30904e4bf5c4SKevin Wolf if (c != child && c->bs == child->bs) { 30914e4bf5c4SKevin Wolf break; 30924e4bf5c4SKevin Wolf } 30934e4bf5c4SKevin Wolf } 30944e4bf5c4SKevin Wolf if (c == NULL) { 3095332b3a17SVladimir Sementsov-Ogievskiy bdrv_set_inherits_from(child->bs, NULL, tran); 309633a60407SKevin Wolf } 30974e4bf5c4SKevin Wolf } 309833a60407SKevin Wolf 30993cf746b3SMax Reitz QLIST_FOREACH(c, &child->bs->children, next) { 3100332b3a17SVladimir Sementsov-Ogievskiy bdrv_unset_inherits_from(root, c, tran); 31013cf746b3SMax Reitz } 31023cf746b3SMax Reitz } 31033cf746b3SMax Reitz 31047b99a266SMax Reitz /* Callers must ensure that child->frozen is false. */ 31053cf746b3SMax Reitz void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child) 31063cf746b3SMax Reitz { 31073cf746b3SMax Reitz if (child == NULL) { 31083cf746b3SMax Reitz return; 31093cf746b3SMax Reitz } 31103cf746b3SMax Reitz 3111332b3a17SVladimir Sementsov-Ogievskiy bdrv_unset_inherits_from(parent, child, NULL); 3112f21d96d0SKevin Wolf bdrv_root_unref_child(child); 311333a60407SKevin Wolf } 311433a60407SKevin Wolf 31155c8cab48SKevin Wolf 31165c8cab48SKevin Wolf static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load) 31175c8cab48SKevin Wolf { 31185c8cab48SKevin Wolf BdrvChild *c; 31195c8cab48SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 3120bd86fb99SMax Reitz if (c->klass->change_media) { 3121bd86fb99SMax Reitz c->klass->change_media(c, load); 31225c8cab48SKevin Wolf } 31235c8cab48SKevin Wolf } 31245c8cab48SKevin Wolf } 31255c8cab48SKevin Wolf 31260065c455SAlberto Garcia /* Return true if you can reach parent going through child->inherits_from 31270065c455SAlberto Garcia * recursively. If parent or child are NULL, return false */ 31280065c455SAlberto Garcia static bool bdrv_inherits_from_recursive(BlockDriverState *child, 31290065c455SAlberto Garcia BlockDriverState *parent) 31300065c455SAlberto Garcia { 31310065c455SAlberto Garcia while (child && child != parent) { 31320065c455SAlberto Garcia child = child->inherits_from; 31330065c455SAlberto Garcia } 31340065c455SAlberto Garcia 31350065c455SAlberto Garcia return child != NULL; 31360065c455SAlberto Garcia } 31370065c455SAlberto Garcia 31385db15a57SKevin Wolf /* 313925191e5fSMax Reitz * Return the BdrvChildRole for @bs's backing child. bs->backing is 314025191e5fSMax Reitz * mostly used for COW backing children (role = COW), but also for 314125191e5fSMax Reitz * filtered children (role = FILTERED | PRIMARY). 314225191e5fSMax Reitz */ 314325191e5fSMax Reitz static BdrvChildRole bdrv_backing_role(BlockDriverState *bs) 314425191e5fSMax Reitz { 314525191e5fSMax Reitz if (bs->drv && bs->drv->is_filter) { 314625191e5fSMax Reitz return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY; 314725191e5fSMax Reitz } else { 314825191e5fSMax Reitz return BDRV_CHILD_COW; 314925191e5fSMax Reitz } 315025191e5fSMax Reitz } 315125191e5fSMax Reitz 315225191e5fSMax Reitz /* 3153e9238278SVladimir Sementsov-Ogievskiy * Sets the bs->backing or bs->file link of a BDS. A new reference is created; 3154e9238278SVladimir Sementsov-Ogievskiy * callers which don't need their own reference any more must call bdrv_unref(). 31557ec390d5SVladimir Sementsov-Ogievskiy * 31567ec390d5SVladimir Sementsov-Ogievskiy * Function doesn't update permissions, caller is responsible for this. 31575db15a57SKevin Wolf */ 3158e9238278SVladimir Sementsov-Ogievskiy static int bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs, 3159e9238278SVladimir Sementsov-Ogievskiy BlockDriverState *child_bs, 3160e9238278SVladimir Sementsov-Ogievskiy bool is_backing, 3161160333e1SVladimir Sementsov-Ogievskiy Transaction *tran, Error **errp) 31628d24cce1SFam Zheng { 3163a1e708fcSVladimir Sementsov-Ogievskiy int ret = 0; 3164e9238278SVladimir Sementsov-Ogievskiy bool update_inherits_from = 3165e9238278SVladimir Sementsov-Ogievskiy bdrv_inherits_from_recursive(child_bs, parent_bs); 3166e9238278SVladimir Sementsov-Ogievskiy BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file; 3167e9238278SVladimir Sementsov-Ogievskiy BdrvChildRole role; 31680065c455SAlberto Garcia 3169e9238278SVladimir Sementsov-Ogievskiy if (!parent_bs->drv) { 3170e9238278SVladimir Sementsov-Ogievskiy /* 3171e9238278SVladimir Sementsov-Ogievskiy * Node without drv is an object without a class :/. TODO: finally fix 3172e9238278SVladimir Sementsov-Ogievskiy * qcow2 driver to never clear bs->drv and implement format corruption 3173e9238278SVladimir Sementsov-Ogievskiy * handling in other way. 3174e9238278SVladimir Sementsov-Ogievskiy */ 3175e9238278SVladimir Sementsov-Ogievskiy error_setg(errp, "Node corrupted"); 3176e9238278SVladimir Sementsov-Ogievskiy return -EINVAL; 3177e9238278SVladimir Sementsov-Ogievskiy } 3178e9238278SVladimir Sementsov-Ogievskiy 3179e9238278SVladimir Sementsov-Ogievskiy if (child && child->frozen) { 3180e9238278SVladimir Sementsov-Ogievskiy error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'", 3181e9238278SVladimir Sementsov-Ogievskiy child->name, parent_bs->node_name, child->bs->node_name); 3182a1e708fcSVladimir Sementsov-Ogievskiy return -EPERM; 31832cad1ebeSAlberto Garcia } 31842cad1ebeSAlberto Garcia 318525f78d9eSVladimir Sementsov-Ogievskiy if (is_backing && !parent_bs->drv->is_filter && 318625f78d9eSVladimir Sementsov-Ogievskiy !parent_bs->drv->supports_backing) 318725f78d9eSVladimir Sementsov-Ogievskiy { 318825f78d9eSVladimir Sementsov-Ogievskiy error_setg(errp, "Driver '%s' of node '%s' does not support backing " 318925f78d9eSVladimir Sementsov-Ogievskiy "files", parent_bs->drv->format_name, parent_bs->node_name); 319025f78d9eSVladimir Sementsov-Ogievskiy return -EINVAL; 319125f78d9eSVladimir Sementsov-Ogievskiy } 319225f78d9eSVladimir Sementsov-Ogievskiy 3193e9238278SVladimir Sementsov-Ogievskiy if (parent_bs->drv->is_filter) { 3194e9238278SVladimir Sementsov-Ogievskiy role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY; 3195e9238278SVladimir Sementsov-Ogievskiy } else if (is_backing) { 3196e9238278SVladimir Sementsov-Ogievskiy role = BDRV_CHILD_COW; 3197e9238278SVladimir Sementsov-Ogievskiy } else { 3198e9238278SVladimir Sementsov-Ogievskiy /* 3199e9238278SVladimir Sementsov-Ogievskiy * We only can use same role as it is in existing child. We don't have 3200e9238278SVladimir Sementsov-Ogievskiy * infrastructure to determine role of file child in generic way 3201e9238278SVladimir Sementsov-Ogievskiy */ 3202e9238278SVladimir Sementsov-Ogievskiy if (!child) { 3203e9238278SVladimir Sementsov-Ogievskiy error_setg(errp, "Cannot set file child to format node without " 3204e9238278SVladimir Sementsov-Ogievskiy "file child"); 3205e9238278SVladimir Sementsov-Ogievskiy return -EINVAL; 3206e9238278SVladimir Sementsov-Ogievskiy } 3207e9238278SVladimir Sementsov-Ogievskiy role = child->role; 3208826b6ca0SFam Zheng } 3209826b6ca0SFam Zheng 3210e9238278SVladimir Sementsov-Ogievskiy if (child) { 3211e9238278SVladimir Sementsov-Ogievskiy bdrv_unset_inherits_from(parent_bs, child, tran); 3212e9238278SVladimir Sementsov-Ogievskiy bdrv_remove_file_or_backing_child(parent_bs, child, tran); 3213e9238278SVladimir Sementsov-Ogievskiy } 3214e9238278SVladimir Sementsov-Ogievskiy 3215e9238278SVladimir Sementsov-Ogievskiy if (!child_bs) { 32168d24cce1SFam Zheng goto out; 32178d24cce1SFam Zheng } 321812fa4af6SKevin Wolf 3219e9238278SVladimir Sementsov-Ogievskiy ret = bdrv_attach_child_noperm(parent_bs, child_bs, 3220e9238278SVladimir Sementsov-Ogievskiy is_backing ? "backing" : "file", 3221e9238278SVladimir Sementsov-Ogievskiy &child_of_bds, role, 3222e9238278SVladimir Sementsov-Ogievskiy is_backing ? &parent_bs->backing : 3223e9238278SVladimir Sementsov-Ogievskiy &parent_bs->file, 3224e9238278SVladimir Sementsov-Ogievskiy tran, errp); 3225160333e1SVladimir Sementsov-Ogievskiy if (ret < 0) { 3226160333e1SVladimir Sementsov-Ogievskiy return ret; 3227a1e708fcSVladimir Sementsov-Ogievskiy } 3228a1e708fcSVladimir Sementsov-Ogievskiy 3229160333e1SVladimir Sementsov-Ogievskiy 3230160333e1SVladimir Sementsov-Ogievskiy /* 3231e9238278SVladimir Sementsov-Ogievskiy * If inherits_from pointed recursively to bs then let's update it to 3232160333e1SVladimir Sementsov-Ogievskiy * point directly to bs (else it will become NULL). 3233160333e1SVladimir Sementsov-Ogievskiy */ 3234a1e708fcSVladimir Sementsov-Ogievskiy if (update_inherits_from) { 3235e9238278SVladimir Sementsov-Ogievskiy bdrv_set_inherits_from(child_bs, parent_bs, tran); 32360065c455SAlberto Garcia } 3237826b6ca0SFam Zheng 32388d24cce1SFam Zheng out: 3239e9238278SVladimir Sementsov-Ogievskiy bdrv_refresh_limits(parent_bs, tran, NULL); 3240160333e1SVladimir Sementsov-Ogievskiy 3241160333e1SVladimir Sementsov-Ogievskiy return 0; 3242160333e1SVladimir Sementsov-Ogievskiy } 3243160333e1SVladimir Sementsov-Ogievskiy 3244e9238278SVladimir Sementsov-Ogievskiy static int bdrv_set_backing_noperm(BlockDriverState *bs, 3245e9238278SVladimir Sementsov-Ogievskiy BlockDriverState *backing_hd, 3246e9238278SVladimir Sementsov-Ogievskiy Transaction *tran, Error **errp) 3247e9238278SVladimir Sementsov-Ogievskiy { 3248e9238278SVladimir Sementsov-Ogievskiy return bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp); 3249e9238278SVladimir Sementsov-Ogievskiy } 3250e9238278SVladimir Sementsov-Ogievskiy 3251160333e1SVladimir Sementsov-Ogievskiy int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd, 3252160333e1SVladimir Sementsov-Ogievskiy Error **errp) 3253160333e1SVladimir Sementsov-Ogievskiy { 3254160333e1SVladimir Sementsov-Ogievskiy int ret; 3255160333e1SVladimir Sementsov-Ogievskiy Transaction *tran = tran_new(); 3256160333e1SVladimir Sementsov-Ogievskiy 3257160333e1SVladimir Sementsov-Ogievskiy ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp); 3258160333e1SVladimir Sementsov-Ogievskiy if (ret < 0) { 3259160333e1SVladimir Sementsov-Ogievskiy goto out; 3260160333e1SVladimir Sementsov-Ogievskiy } 3261160333e1SVladimir Sementsov-Ogievskiy 3262160333e1SVladimir Sementsov-Ogievskiy ret = bdrv_refresh_perms(bs, errp); 3263160333e1SVladimir Sementsov-Ogievskiy out: 3264160333e1SVladimir Sementsov-Ogievskiy tran_finalize(tran, ret); 3265a1e708fcSVladimir Sementsov-Ogievskiy 3266a1e708fcSVladimir Sementsov-Ogievskiy return ret; 32678d24cce1SFam Zheng } 32688d24cce1SFam Zheng 326931ca6d07SKevin Wolf /* 327031ca6d07SKevin Wolf * Opens the backing file for a BlockDriverState if not yet open 327131ca6d07SKevin Wolf * 3272d9b7b057SKevin Wolf * bdref_key specifies the key for the image's BlockdevRef in the options QDict. 3273d9b7b057SKevin Wolf * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict 3274d9b7b057SKevin Wolf * itself, all options starting with "${bdref_key}." are considered part of the 3275d9b7b057SKevin Wolf * BlockdevRef. 3276d9b7b057SKevin Wolf * 3277d9b7b057SKevin Wolf * TODO Can this be unified with bdrv_open_image()? 327831ca6d07SKevin Wolf */ 3279d9b7b057SKevin Wolf int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options, 3280d9b7b057SKevin Wolf const char *bdref_key, Error **errp) 32819156df12SPaolo Bonzini { 32826b6833c1SMax Reitz char *backing_filename = NULL; 3283d9b7b057SKevin Wolf char *bdref_key_dot; 3284d9b7b057SKevin Wolf const char *reference = NULL; 3285317fc44eSKevin Wolf int ret = 0; 3286998c2019SMax Reitz bool implicit_backing = false; 32878d24cce1SFam Zheng BlockDriverState *backing_hd; 3288d9b7b057SKevin Wolf QDict *options; 3289d9b7b057SKevin Wolf QDict *tmp_parent_options = NULL; 329034b5d2c6SMax Reitz Error *local_err = NULL; 32919156df12SPaolo Bonzini 3292760e0063SKevin Wolf if (bs->backing != NULL) { 32931ba4b6a5SBenoît Canet goto free_exit; 32949156df12SPaolo Bonzini } 32959156df12SPaolo Bonzini 329631ca6d07SKevin Wolf /* NULL means an empty set of options */ 3297d9b7b057SKevin Wolf if (parent_options == NULL) { 3298d9b7b057SKevin Wolf tmp_parent_options = qdict_new(); 3299d9b7b057SKevin Wolf parent_options = tmp_parent_options; 330031ca6d07SKevin Wolf } 330131ca6d07SKevin Wolf 33029156df12SPaolo Bonzini bs->open_flags &= ~BDRV_O_NO_BACKING; 3303d9b7b057SKevin Wolf 3304d9b7b057SKevin Wolf bdref_key_dot = g_strdup_printf("%s.", bdref_key); 3305d9b7b057SKevin Wolf qdict_extract_subqdict(parent_options, &options, bdref_key_dot); 3306d9b7b057SKevin Wolf g_free(bdref_key_dot); 3307d9b7b057SKevin Wolf 3308129c7d1cSMarkus Armbruster /* 3309129c7d1cSMarkus Armbruster * Caution: while qdict_get_try_str() is fine, getting non-string 3310129c7d1cSMarkus Armbruster * types would require more care. When @parent_options come from 3311129c7d1cSMarkus Armbruster * -blockdev or blockdev_add, its members are typed according to 3312129c7d1cSMarkus Armbruster * the QAPI schema, but when they come from -drive, they're all 3313129c7d1cSMarkus Armbruster * QString. 3314129c7d1cSMarkus Armbruster */ 3315d9b7b057SKevin Wolf reference = qdict_get_try_str(parent_options, bdref_key); 3316d9b7b057SKevin Wolf if (reference || qdict_haskey(options, "file.filename")) { 33176b6833c1SMax Reitz /* keep backing_filename NULL */ 33181cb6f506SKevin Wolf } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { 3319cb3e7f08SMarc-André Lureau qobject_unref(options); 33201ba4b6a5SBenoît Canet goto free_exit; 3321dbecebddSFam Zheng } else { 3322998c2019SMax Reitz if (qdict_size(options) == 0) { 3323998c2019SMax Reitz /* If the user specifies options that do not modify the 3324998c2019SMax Reitz * backing file's behavior, we might still consider it the 3325998c2019SMax Reitz * implicit backing file. But it's easier this way, and 3326998c2019SMax Reitz * just specifying some of the backing BDS's options is 3327998c2019SMax Reitz * only possible with -drive anyway (otherwise the QAPI 3328998c2019SMax Reitz * schema forces the user to specify everything). */ 3329998c2019SMax Reitz implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file); 3330998c2019SMax Reitz } 3331998c2019SMax Reitz 33326b6833c1SMax Reitz backing_filename = bdrv_get_full_backing_filename(bs, &local_err); 33339f07429eSMax Reitz if (local_err) { 33349f07429eSMax Reitz ret = -EINVAL; 33359f07429eSMax Reitz error_propagate(errp, local_err); 3336cb3e7f08SMarc-André Lureau qobject_unref(options); 33379f07429eSMax Reitz goto free_exit; 33389f07429eSMax Reitz } 33399156df12SPaolo Bonzini } 33409156df12SPaolo Bonzini 33418ee79e70SKevin Wolf if (!bs->drv || !bs->drv->supports_backing) { 33428ee79e70SKevin Wolf ret = -EINVAL; 33438ee79e70SKevin Wolf error_setg(errp, "Driver doesn't support backing files"); 3344cb3e7f08SMarc-André Lureau qobject_unref(options); 33458ee79e70SKevin Wolf goto free_exit; 33468ee79e70SKevin Wolf } 33478ee79e70SKevin Wolf 33486bff597bSPeter Krempa if (!reference && 33496bff597bSPeter Krempa bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) { 335046f5ac20SEric Blake qdict_put_str(options, "driver", bs->backing_format); 33519156df12SPaolo Bonzini } 33529156df12SPaolo Bonzini 33536b6833c1SMax Reitz backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs, 335425191e5fSMax Reitz &child_of_bds, bdrv_backing_role(bs), errp); 33555b363937SMax Reitz if (!backing_hd) { 33569156df12SPaolo Bonzini bs->open_flags |= BDRV_O_NO_BACKING; 3357e43bfd9cSMarkus Armbruster error_prepend(errp, "Could not open backing file: "); 33585b363937SMax Reitz ret = -EINVAL; 33591ba4b6a5SBenoît Canet goto free_exit; 33609156df12SPaolo Bonzini } 3361df581792SKevin Wolf 3362998c2019SMax Reitz if (implicit_backing) { 3363998c2019SMax Reitz bdrv_refresh_filename(backing_hd); 3364998c2019SMax Reitz pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file), 3365998c2019SMax Reitz backing_hd->filename); 3366998c2019SMax Reitz } 3367998c2019SMax Reitz 33685db15a57SKevin Wolf /* Hook up the backing file link; drop our reference, bs owns the 33695db15a57SKevin Wolf * backing_hd reference now */ 3370dc9c10a1SVladimir Sementsov-Ogievskiy ret = bdrv_set_backing_hd(bs, backing_hd, errp); 33715db15a57SKevin Wolf bdrv_unref(backing_hd); 3372dc9c10a1SVladimir Sementsov-Ogievskiy if (ret < 0) { 337312fa4af6SKevin Wolf goto free_exit; 337412fa4af6SKevin Wolf } 3375d80ac658SPeter Feiner 3376d9b7b057SKevin Wolf qdict_del(parent_options, bdref_key); 3377d9b7b057SKevin Wolf 33781ba4b6a5SBenoît Canet free_exit: 33791ba4b6a5SBenoît Canet g_free(backing_filename); 3380cb3e7f08SMarc-André Lureau qobject_unref(tmp_parent_options); 33811ba4b6a5SBenoît Canet return ret; 33829156df12SPaolo Bonzini } 33839156df12SPaolo Bonzini 33842d6b86afSKevin Wolf static BlockDriverState * 33852d6b86afSKevin Wolf bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key, 3386bd86fb99SMax Reitz BlockDriverState *parent, const BdrvChildClass *child_class, 3387272c02eaSMax Reitz BdrvChildRole child_role, bool allow_none, Error **errp) 3388da557aacSMax Reitz { 33892d6b86afSKevin Wolf BlockDriverState *bs = NULL; 3390da557aacSMax Reitz QDict *image_options; 3391da557aacSMax Reitz char *bdref_key_dot; 3392da557aacSMax Reitz const char *reference; 3393da557aacSMax Reitz 3394bd86fb99SMax Reitz assert(child_class != NULL); 3395f67503e5SMax Reitz 3396da557aacSMax Reitz bdref_key_dot = g_strdup_printf("%s.", bdref_key); 3397da557aacSMax Reitz qdict_extract_subqdict(options, &image_options, bdref_key_dot); 3398da557aacSMax Reitz g_free(bdref_key_dot); 3399da557aacSMax Reitz 3400129c7d1cSMarkus Armbruster /* 3401129c7d1cSMarkus Armbruster * Caution: while qdict_get_try_str() is fine, getting non-string 3402129c7d1cSMarkus Armbruster * types would require more care. When @options come from 3403129c7d1cSMarkus Armbruster * -blockdev or blockdev_add, its members are typed according to 3404129c7d1cSMarkus Armbruster * the QAPI schema, but when they come from -drive, they're all 3405129c7d1cSMarkus Armbruster * QString. 3406129c7d1cSMarkus Armbruster */ 3407da557aacSMax Reitz reference = qdict_get_try_str(options, bdref_key); 3408da557aacSMax Reitz if (!filename && !reference && !qdict_size(image_options)) { 3409b4b059f6SKevin Wolf if (!allow_none) { 3410da557aacSMax Reitz error_setg(errp, "A block device must be specified for \"%s\"", 3411da557aacSMax Reitz bdref_key); 3412da557aacSMax Reitz } 3413cb3e7f08SMarc-André Lureau qobject_unref(image_options); 3414da557aacSMax Reitz goto done; 3415da557aacSMax Reitz } 3416da557aacSMax Reitz 34175b363937SMax Reitz bs = bdrv_open_inherit(filename, reference, image_options, 0, 3418272c02eaSMax Reitz parent, child_class, child_role, errp); 34195b363937SMax Reitz if (!bs) { 3420df581792SKevin Wolf goto done; 3421df581792SKevin Wolf } 3422df581792SKevin Wolf 3423da557aacSMax Reitz done: 3424da557aacSMax Reitz qdict_del(options, bdref_key); 34252d6b86afSKevin Wolf return bs; 34262d6b86afSKevin Wolf } 34272d6b86afSKevin Wolf 34282d6b86afSKevin Wolf /* 34292d6b86afSKevin Wolf * Opens a disk image whose options are given as BlockdevRef in another block 34302d6b86afSKevin Wolf * device's options. 34312d6b86afSKevin Wolf * 34322d6b86afSKevin Wolf * If allow_none is true, no image will be opened if filename is false and no 34332d6b86afSKevin Wolf * BlockdevRef is given. NULL will be returned, but errp remains unset. 34342d6b86afSKevin Wolf * 34352d6b86afSKevin Wolf * bdrev_key specifies the key for the image's BlockdevRef in the options QDict. 34362d6b86afSKevin Wolf * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict 34372d6b86afSKevin Wolf * itself, all options starting with "${bdref_key}." are considered part of the 34382d6b86afSKevin Wolf * BlockdevRef. 34392d6b86afSKevin Wolf * 34402d6b86afSKevin Wolf * The BlockdevRef will be removed from the options QDict. 34412d6b86afSKevin Wolf */ 34422d6b86afSKevin Wolf BdrvChild *bdrv_open_child(const char *filename, 34432d6b86afSKevin Wolf QDict *options, const char *bdref_key, 34442d6b86afSKevin Wolf BlockDriverState *parent, 3445bd86fb99SMax Reitz const BdrvChildClass *child_class, 3446258b7765SMax Reitz BdrvChildRole child_role, 34472d6b86afSKevin Wolf bool allow_none, Error **errp) 34482d6b86afSKevin Wolf { 34492d6b86afSKevin Wolf BlockDriverState *bs; 34502d6b86afSKevin Wolf 3451bd86fb99SMax Reitz bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class, 3452272c02eaSMax Reitz child_role, allow_none, errp); 34532d6b86afSKevin Wolf if (bs == NULL) { 34542d6b86afSKevin Wolf return NULL; 34552d6b86afSKevin Wolf } 34562d6b86afSKevin Wolf 3457258b7765SMax Reitz return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role, 3458258b7765SMax Reitz errp); 3459b4b059f6SKevin Wolf } 3460b4b059f6SKevin Wolf 3461bd86fb99SMax Reitz /* 3462bd86fb99SMax Reitz * TODO Future callers may need to specify parent/child_class in order for 3463bd86fb99SMax Reitz * option inheritance to work. Existing callers use it for the root node. 3464bd86fb99SMax Reitz */ 3465e1d74bc6SKevin Wolf BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp) 3466e1d74bc6SKevin Wolf { 3467e1d74bc6SKevin Wolf BlockDriverState *bs = NULL; 3468e1d74bc6SKevin Wolf QObject *obj = NULL; 3469e1d74bc6SKevin Wolf QDict *qdict = NULL; 3470e1d74bc6SKevin Wolf const char *reference = NULL; 3471e1d74bc6SKevin Wolf Visitor *v = NULL; 3472e1d74bc6SKevin Wolf 3473e1d74bc6SKevin Wolf if (ref->type == QTYPE_QSTRING) { 3474e1d74bc6SKevin Wolf reference = ref->u.reference; 3475e1d74bc6SKevin Wolf } else { 3476e1d74bc6SKevin Wolf BlockdevOptions *options = &ref->u.definition; 3477e1d74bc6SKevin Wolf assert(ref->type == QTYPE_QDICT); 3478e1d74bc6SKevin Wolf 3479e1d74bc6SKevin Wolf v = qobject_output_visitor_new(&obj); 34801f584248SMarkus Armbruster visit_type_BlockdevOptions(v, NULL, &options, &error_abort); 3481e1d74bc6SKevin Wolf visit_complete(v, &obj); 3482e1d74bc6SKevin Wolf 34837dc847ebSMax Reitz qdict = qobject_to(QDict, obj); 3484e1d74bc6SKevin Wolf qdict_flatten(qdict); 3485e1d74bc6SKevin Wolf 3486e1d74bc6SKevin Wolf /* bdrv_open_inherit() defaults to the values in bdrv_flags (for 3487e1d74bc6SKevin Wolf * compatibility with other callers) rather than what we want as the 3488e1d74bc6SKevin Wolf * real defaults. Apply the defaults here instead. */ 3489e1d74bc6SKevin Wolf qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off"); 3490e1d74bc6SKevin Wolf qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off"); 3491e1d74bc6SKevin Wolf qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off"); 3492e35bdc12SKevin Wolf qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off"); 3493e35bdc12SKevin Wolf 3494e1d74bc6SKevin Wolf } 3495e1d74bc6SKevin Wolf 3496272c02eaSMax Reitz bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp); 3497e1d74bc6SKevin Wolf obj = NULL; 3498cb3e7f08SMarc-André Lureau qobject_unref(obj); 3499e1d74bc6SKevin Wolf visit_free(v); 3500e1d74bc6SKevin Wolf return bs; 3501e1d74bc6SKevin Wolf } 3502e1d74bc6SKevin Wolf 350366836189SMax Reitz static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs, 350466836189SMax Reitz int flags, 350566836189SMax Reitz QDict *snapshot_options, 350666836189SMax Reitz Error **errp) 3507b998875dSKevin Wolf { 3508b998875dSKevin Wolf /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */ 35091ba4b6a5SBenoît Canet char *tmp_filename = g_malloc0(PATH_MAX + 1); 3510b998875dSKevin Wolf int64_t total_size; 351183d0521aSChunyan Liu QemuOpts *opts = NULL; 3512ff6ed714SEric Blake BlockDriverState *bs_snapshot = NULL; 3513b998875dSKevin Wolf int ret; 3514b998875dSKevin Wolf 3515b998875dSKevin Wolf /* if snapshot, we create a temporary backing file and open it 3516b998875dSKevin Wolf instead of opening 'filename' directly */ 3517b998875dSKevin Wolf 3518b998875dSKevin Wolf /* Get the required size from the image */ 3519f187743aSKevin Wolf total_size = bdrv_getlength(bs); 3520f187743aSKevin Wolf if (total_size < 0) { 3521f187743aSKevin Wolf error_setg_errno(errp, -total_size, "Could not get image size"); 35221ba4b6a5SBenoît Canet goto out; 3523f187743aSKevin Wolf } 3524b998875dSKevin Wolf 3525b998875dSKevin Wolf /* Create the temporary image */ 35261ba4b6a5SBenoît Canet ret = get_tmp_filename(tmp_filename, PATH_MAX + 1); 3527b998875dSKevin Wolf if (ret < 0) { 3528b998875dSKevin Wolf error_setg_errno(errp, -ret, "Could not get temporary filename"); 35291ba4b6a5SBenoît Canet goto out; 3530b998875dSKevin Wolf } 3531b998875dSKevin Wolf 3532ef810437SMax Reitz opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0, 3533c282e1fdSChunyan Liu &error_abort); 353439101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort); 3535e43bfd9cSMarkus Armbruster ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp); 353683d0521aSChunyan Liu qemu_opts_del(opts); 3537b998875dSKevin Wolf if (ret < 0) { 3538e43bfd9cSMarkus Armbruster error_prepend(errp, "Could not create temporary overlay '%s': ", 3539e43bfd9cSMarkus Armbruster tmp_filename); 35401ba4b6a5SBenoît Canet goto out; 3541b998875dSKevin Wolf } 3542b998875dSKevin Wolf 354373176beeSKevin Wolf /* Prepare options QDict for the temporary file */ 354446f5ac20SEric Blake qdict_put_str(snapshot_options, "file.driver", "file"); 354546f5ac20SEric Blake qdict_put_str(snapshot_options, "file.filename", tmp_filename); 354646f5ac20SEric Blake qdict_put_str(snapshot_options, "driver", "qcow2"); 3547b998875dSKevin Wolf 35485b363937SMax Reitz bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp); 354973176beeSKevin Wolf snapshot_options = NULL; 35505b363937SMax Reitz if (!bs_snapshot) { 35511ba4b6a5SBenoît Canet goto out; 3552b998875dSKevin Wolf } 3553b998875dSKevin Wolf 3554934aee14SVladimir Sementsov-Ogievskiy ret = bdrv_append(bs_snapshot, bs, errp); 3555934aee14SVladimir Sementsov-Ogievskiy if (ret < 0) { 3556ff6ed714SEric Blake bs_snapshot = NULL; 3557b2c2832cSKevin Wolf goto out; 3558b2c2832cSKevin Wolf } 35591ba4b6a5SBenoît Canet 35601ba4b6a5SBenoît Canet out: 3561cb3e7f08SMarc-André Lureau qobject_unref(snapshot_options); 35621ba4b6a5SBenoît Canet g_free(tmp_filename); 3563ff6ed714SEric Blake return bs_snapshot; 3564b998875dSKevin Wolf } 3565b998875dSKevin Wolf 3566da557aacSMax Reitz /* 3567b6ce07aaSKevin Wolf * Opens a disk image (raw, qcow2, vmdk, ...) 3568de9c0cecSKevin Wolf * 3569de9c0cecSKevin Wolf * options is a QDict of options to pass to the block drivers, or NULL for an 3570de9c0cecSKevin Wolf * empty set of options. The reference to the QDict belongs to the block layer 3571de9c0cecSKevin Wolf * after the call (even on failure), so if the caller intends to reuse the 3572cb3e7f08SMarc-André Lureau * dictionary, it needs to use qobject_ref() before calling bdrv_open. 3573f67503e5SMax Reitz * 3574f67503e5SMax Reitz * If *pbs is NULL, a new BDS will be created with a pointer to it stored there. 3575f67503e5SMax Reitz * If it is not NULL, the referenced BDS will be reused. 3576ddf5636dSMax Reitz * 3577ddf5636dSMax Reitz * The reference parameter may be used to specify an existing block device which 3578ddf5636dSMax Reitz * should be opened. If specified, neither options nor a filename may be given, 3579ddf5636dSMax Reitz * nor can an existing BDS be reused (that is, *pbs has to be NULL). 3580b6ce07aaSKevin Wolf */ 35815b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename, 35825b363937SMax Reitz const char *reference, 35835b363937SMax Reitz QDict *options, int flags, 3584f3930ed0SKevin Wolf BlockDriverState *parent, 3585bd86fb99SMax Reitz const BdrvChildClass *child_class, 3586272c02eaSMax Reitz BdrvChildRole child_role, 35875b363937SMax Reitz Error **errp) 3588ea2384d3Sbellard { 3589b6ce07aaSKevin Wolf int ret; 35905696c6e3SKevin Wolf BlockBackend *file = NULL; 35919a4f4c31SKevin Wolf BlockDriverState *bs; 3592ce343771SMax Reitz BlockDriver *drv = NULL; 35932f624b80SAlberto Garcia BdrvChild *child; 359474fe54f2SKevin Wolf const char *drvname; 35953e8c2e57SAlberto Garcia const char *backing; 359634b5d2c6SMax Reitz Error *local_err = NULL; 359773176beeSKevin Wolf QDict *snapshot_options = NULL; 3598b1e6fc08SKevin Wolf int snapshot_flags = 0; 359933e3963eSbellard 3600bd86fb99SMax Reitz assert(!child_class || !flags); 3601bd86fb99SMax Reitz assert(!child_class == !parent); 3602f67503e5SMax Reitz 3603ddf5636dSMax Reitz if (reference) { 3604ddf5636dSMax Reitz bool options_non_empty = options ? qdict_size(options) : false; 3605cb3e7f08SMarc-André Lureau qobject_unref(options); 3606ddf5636dSMax Reitz 3607ddf5636dSMax Reitz if (filename || options_non_empty) { 3608ddf5636dSMax Reitz error_setg(errp, "Cannot reference an existing block device with " 3609ddf5636dSMax Reitz "additional options or a new filename"); 36105b363937SMax Reitz return NULL; 3611ddf5636dSMax Reitz } 3612ddf5636dSMax Reitz 3613ddf5636dSMax Reitz bs = bdrv_lookup_bs(reference, reference, errp); 3614ddf5636dSMax Reitz if (!bs) { 36155b363937SMax Reitz return NULL; 3616ddf5636dSMax Reitz } 361776b22320SKevin Wolf 3618ddf5636dSMax Reitz bdrv_ref(bs); 36195b363937SMax Reitz return bs; 3620ddf5636dSMax Reitz } 3621ddf5636dSMax Reitz 3622e4e9986bSMarkus Armbruster bs = bdrv_new(); 3623f67503e5SMax Reitz 3624de9c0cecSKevin Wolf /* NULL means an empty set of options */ 3625de9c0cecSKevin Wolf if (options == NULL) { 3626de9c0cecSKevin Wolf options = qdict_new(); 3627de9c0cecSKevin Wolf } 3628de9c0cecSKevin Wolf 3629145f598eSKevin Wolf /* json: syntax counts as explicit options, as if in the QDict */ 3630de3b53f0SKevin Wolf parse_json_protocol(options, &filename, &local_err); 3631de3b53f0SKevin Wolf if (local_err) { 3632de3b53f0SKevin Wolf goto fail; 3633de3b53f0SKevin Wolf } 3634de3b53f0SKevin Wolf 3635145f598eSKevin Wolf bs->explicit_options = qdict_clone_shallow(options); 3636145f598eSKevin Wolf 3637bd86fb99SMax Reitz if (child_class) { 36383cdc69d3SMax Reitz bool parent_is_format; 36393cdc69d3SMax Reitz 36403cdc69d3SMax Reitz if (parent->drv) { 36413cdc69d3SMax Reitz parent_is_format = parent->drv->is_format; 36423cdc69d3SMax Reitz } else { 36433cdc69d3SMax Reitz /* 36443cdc69d3SMax Reitz * parent->drv is not set yet because this node is opened for 36453cdc69d3SMax Reitz * (potential) format probing. That means that @parent is going 36463cdc69d3SMax Reitz * to be a format node. 36473cdc69d3SMax Reitz */ 36483cdc69d3SMax Reitz parent_is_format = true; 36493cdc69d3SMax Reitz } 36503cdc69d3SMax Reitz 3651bddcec37SKevin Wolf bs->inherits_from = parent; 36523cdc69d3SMax Reitz child_class->inherit_options(child_role, parent_is_format, 36533cdc69d3SMax Reitz &flags, options, 36548e2160e2SKevin Wolf parent->open_flags, parent->options); 3655f3930ed0SKevin Wolf } 3656f3930ed0SKevin Wolf 3657de3b53f0SKevin Wolf ret = bdrv_fill_options(&options, filename, &flags, &local_err); 3658dfde483eSPhilippe Mathieu-Daudé if (ret < 0) { 3659462f5bcfSKevin Wolf goto fail; 3660462f5bcfSKevin Wolf } 3661462f5bcfSKevin Wolf 3662129c7d1cSMarkus Armbruster /* 3663129c7d1cSMarkus Armbruster * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags. 3664129c7d1cSMarkus Armbruster * Caution: getting a boolean member of @options requires care. 3665129c7d1cSMarkus Armbruster * When @options come from -blockdev or blockdev_add, members are 3666129c7d1cSMarkus Armbruster * typed according to the QAPI schema, but when they come from 3667129c7d1cSMarkus Armbruster * -drive, they're all QString. 3668129c7d1cSMarkus Armbruster */ 3669f87a0e29SAlberto Garcia if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") && 3670f87a0e29SAlberto Garcia !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) { 3671f87a0e29SAlberto Garcia flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR); 3672f87a0e29SAlberto Garcia } else { 3673f87a0e29SAlberto Garcia flags &= ~BDRV_O_RDWR; 367414499ea5SAlberto Garcia } 367514499ea5SAlberto Garcia 367614499ea5SAlberto Garcia if (flags & BDRV_O_SNAPSHOT) { 367714499ea5SAlberto Garcia snapshot_options = qdict_new(); 367814499ea5SAlberto Garcia bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options, 367914499ea5SAlberto Garcia flags, options); 3680f87a0e29SAlberto Garcia /* Let bdrv_backing_options() override "read-only" */ 3681f87a0e29SAlberto Garcia qdict_del(options, BDRV_OPT_READ_ONLY); 368200ff7ffdSMax Reitz bdrv_inherited_options(BDRV_CHILD_COW, true, 368300ff7ffdSMax Reitz &flags, options, flags, options); 368414499ea5SAlberto Garcia } 368514499ea5SAlberto Garcia 368662392ebbSKevin Wolf bs->open_flags = flags; 368762392ebbSKevin Wolf bs->options = options; 368862392ebbSKevin Wolf options = qdict_clone_shallow(options); 368962392ebbSKevin Wolf 369076c591b0SKevin Wolf /* Find the right image format driver */ 3691129c7d1cSMarkus Armbruster /* See cautionary note on accessing @options above */ 369276c591b0SKevin Wolf drvname = qdict_get_try_str(options, "driver"); 369376c591b0SKevin Wolf if (drvname) { 369476c591b0SKevin Wolf drv = bdrv_find_format(drvname); 369576c591b0SKevin Wolf if (!drv) { 369676c591b0SKevin Wolf error_setg(errp, "Unknown driver: '%s'", drvname); 369776c591b0SKevin Wolf goto fail; 369876c591b0SKevin Wolf } 369976c591b0SKevin Wolf } 370076c591b0SKevin Wolf 370176c591b0SKevin Wolf assert(drvname || !(flags & BDRV_O_PROTOCOL)); 370276c591b0SKevin Wolf 3703129c7d1cSMarkus Armbruster /* See cautionary note on accessing @options above */ 37043e8c2e57SAlberto Garcia backing = qdict_get_try_str(options, "backing"); 3705e59a0cf1SMax Reitz if (qobject_to(QNull, qdict_get(options, "backing")) != NULL || 3706e59a0cf1SMax Reitz (backing && *backing == '\0')) 3707e59a0cf1SMax Reitz { 37084f7be280SMax Reitz if (backing) { 37094f7be280SMax Reitz warn_report("Use of \"backing\": \"\" is deprecated; " 37104f7be280SMax Reitz "use \"backing\": null instead"); 37114f7be280SMax Reitz } 37123e8c2e57SAlberto Garcia flags |= BDRV_O_NO_BACKING; 3713ae0f57f0SKevin Wolf qdict_del(bs->explicit_options, "backing"); 3714ae0f57f0SKevin Wolf qdict_del(bs->options, "backing"); 37153e8c2e57SAlberto Garcia qdict_del(options, "backing"); 37163e8c2e57SAlberto Garcia } 37173e8c2e57SAlberto Garcia 37185696c6e3SKevin Wolf /* Open image file without format layer. This BlockBackend is only used for 37194e4bf5c4SKevin Wolf * probing, the block drivers will do their own bdrv_open_child() for the 37204e4bf5c4SKevin Wolf * same BDS, which is why we put the node name back into options. */ 3721f4788adcSKevin Wolf if ((flags & BDRV_O_PROTOCOL) == 0) { 37225696c6e3SKevin Wolf BlockDriverState *file_bs; 37235696c6e3SKevin Wolf 37245696c6e3SKevin Wolf file_bs = bdrv_open_child_bs(filename, options, "file", bs, 372558944401SMax Reitz &child_of_bds, BDRV_CHILD_IMAGE, 372658944401SMax Reitz true, &local_err); 37271fdd6933SKevin Wolf if (local_err) { 37288bfea15dSKevin Wolf goto fail; 3729f500a6d3SKevin Wolf } 37305696c6e3SKevin Wolf if (file_bs != NULL) { 3731dacaa162SKevin Wolf /* Not requesting BLK_PERM_CONSISTENT_READ because we're only 3732dacaa162SKevin Wolf * looking at the header to guess the image format. This works even 3733dacaa162SKevin Wolf * in cases where a guest would not see a consistent state. */ 3734d861ab3aSKevin Wolf file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL); 3735d7086422SKevin Wolf blk_insert_bs(file, file_bs, &local_err); 37365696c6e3SKevin Wolf bdrv_unref(file_bs); 3737d7086422SKevin Wolf if (local_err) { 3738d7086422SKevin Wolf goto fail; 3739d7086422SKevin Wolf } 37405696c6e3SKevin Wolf 374146f5ac20SEric Blake qdict_put_str(options, "file", bdrv_get_node_name(file_bs)); 37424e4bf5c4SKevin Wolf } 3743f4788adcSKevin Wolf } 3744f500a6d3SKevin Wolf 374576c591b0SKevin Wolf /* Image format probing */ 374638f3ef57SKevin Wolf bs->probed = !drv; 374776c591b0SKevin Wolf if (!drv && file) { 3748cf2ab8fcSKevin Wolf ret = find_image_format(file, filename, &drv, &local_err); 374917b005f1SKevin Wolf if (ret < 0) { 375017b005f1SKevin Wolf goto fail; 375117b005f1SKevin Wolf } 375262392ebbSKevin Wolf /* 375362392ebbSKevin Wolf * This option update would logically belong in bdrv_fill_options(), 375462392ebbSKevin Wolf * but we first need to open bs->file for the probing to work, while 375562392ebbSKevin Wolf * opening bs->file already requires the (mostly) final set of options 375662392ebbSKevin Wolf * so that cache mode etc. can be inherited. 375762392ebbSKevin Wolf * 375862392ebbSKevin Wolf * Adding the driver later is somewhat ugly, but it's not an option 375962392ebbSKevin Wolf * that would ever be inherited, so it's correct. We just need to make 376062392ebbSKevin Wolf * sure to update both bs->options (which has the full effective 376162392ebbSKevin Wolf * options for bs) and options (which has file.* already removed). 376262392ebbSKevin Wolf */ 376346f5ac20SEric Blake qdict_put_str(bs->options, "driver", drv->format_name); 376446f5ac20SEric Blake qdict_put_str(options, "driver", drv->format_name); 376576c591b0SKevin Wolf } else if (!drv) { 37662a05cbe4SMax Reitz error_setg(errp, "Must specify either driver or file"); 37678bfea15dSKevin Wolf goto fail; 37682a05cbe4SMax Reitz } 3769f500a6d3SKevin Wolf 377053a29513SMax Reitz /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */ 377153a29513SMax Reitz assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open); 377253a29513SMax Reitz /* file must be NULL if a protocol BDS is about to be created 377353a29513SMax Reitz * (the inverse results in an error message from bdrv_open_common()) */ 377453a29513SMax Reitz assert(!(flags & BDRV_O_PROTOCOL) || !file); 377553a29513SMax Reitz 3776b6ce07aaSKevin Wolf /* Open the image */ 377782dc8b41SKevin Wolf ret = bdrv_open_common(bs, file, options, &local_err); 3778b6ce07aaSKevin Wolf if (ret < 0) { 37798bfea15dSKevin Wolf goto fail; 37806987307cSChristoph Hellwig } 37816987307cSChristoph Hellwig 37824e4bf5c4SKevin Wolf if (file) { 37835696c6e3SKevin Wolf blk_unref(file); 3784f500a6d3SKevin Wolf file = NULL; 3785f500a6d3SKevin Wolf } 3786f500a6d3SKevin Wolf 3787b6ce07aaSKevin Wolf /* If there is a backing file, use it */ 37889156df12SPaolo Bonzini if ((flags & BDRV_O_NO_BACKING) == 0) { 3789d9b7b057SKevin Wolf ret = bdrv_open_backing_file(bs, options, "backing", &local_err); 3790b6ce07aaSKevin Wolf if (ret < 0) { 3791b6ad491aSKevin Wolf goto close_and_fail; 3792b6ce07aaSKevin Wolf } 3793b6ce07aaSKevin Wolf } 3794b6ce07aaSKevin Wolf 379550196d7aSAlberto Garcia /* Remove all children options and references 379650196d7aSAlberto Garcia * from bs->options and bs->explicit_options */ 37972f624b80SAlberto Garcia QLIST_FOREACH(child, &bs->children, next) { 37982f624b80SAlberto Garcia char *child_key_dot; 37992f624b80SAlberto Garcia child_key_dot = g_strdup_printf("%s.", child->name); 38002f624b80SAlberto Garcia qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot); 38012f624b80SAlberto Garcia qdict_extract_subqdict(bs->options, NULL, child_key_dot); 380250196d7aSAlberto Garcia qdict_del(bs->explicit_options, child->name); 380350196d7aSAlberto Garcia qdict_del(bs->options, child->name); 38042f624b80SAlberto Garcia g_free(child_key_dot); 38052f624b80SAlberto Garcia } 38062f624b80SAlberto Garcia 3807b6ad491aSKevin Wolf /* Check if any unknown options were used */ 38087ad2757fSPaolo Bonzini if (qdict_size(options) != 0) { 3809b6ad491aSKevin Wolf const QDictEntry *entry = qdict_first(options); 38105acd9d81SMax Reitz if (flags & BDRV_O_PROTOCOL) { 38115acd9d81SMax Reitz error_setg(errp, "Block protocol '%s' doesn't support the option " 38125acd9d81SMax Reitz "'%s'", drv->format_name, entry->key); 38135acd9d81SMax Reitz } else { 3814d0e46a55SMax Reitz error_setg(errp, 3815d0e46a55SMax Reitz "Block format '%s' does not support the option '%s'", 3816d0e46a55SMax Reitz drv->format_name, entry->key); 38175acd9d81SMax Reitz } 3818b6ad491aSKevin Wolf 3819b6ad491aSKevin Wolf goto close_and_fail; 3820b6ad491aSKevin Wolf } 3821b6ad491aSKevin Wolf 38225c8cab48SKevin Wolf bdrv_parent_cb_change_media(bs, true); 3823b6ce07aaSKevin Wolf 3824cb3e7f08SMarc-André Lureau qobject_unref(options); 38258961be33SAlberto Garcia options = NULL; 3826dd62f1caSKevin Wolf 3827dd62f1caSKevin Wolf /* For snapshot=on, create a temporary qcow2 overlay. bs points to the 3828dd62f1caSKevin Wolf * temporary snapshot afterwards. */ 3829dd62f1caSKevin Wolf if (snapshot_flags) { 383066836189SMax Reitz BlockDriverState *snapshot_bs; 383166836189SMax Reitz snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags, 383266836189SMax Reitz snapshot_options, &local_err); 383373176beeSKevin Wolf snapshot_options = NULL; 3834dd62f1caSKevin Wolf if (local_err) { 3835dd62f1caSKevin Wolf goto close_and_fail; 3836dd62f1caSKevin Wolf } 383766836189SMax Reitz /* We are not going to return bs but the overlay on top of it 383866836189SMax Reitz * (snapshot_bs); thus, we have to drop the strong reference to bs 38395b363937SMax Reitz * (which we obtained by calling bdrv_new()). bs will not be deleted, 38405b363937SMax Reitz * though, because the overlay still has a reference to it. */ 384166836189SMax Reitz bdrv_unref(bs); 384266836189SMax Reitz bs = snapshot_bs; 384366836189SMax Reitz } 384466836189SMax Reitz 38455b363937SMax Reitz return bs; 3846b6ce07aaSKevin Wolf 38478bfea15dSKevin Wolf fail: 38485696c6e3SKevin Wolf blk_unref(file); 3849cb3e7f08SMarc-André Lureau qobject_unref(snapshot_options); 3850cb3e7f08SMarc-André Lureau qobject_unref(bs->explicit_options); 3851cb3e7f08SMarc-André Lureau qobject_unref(bs->options); 3852cb3e7f08SMarc-André Lureau qobject_unref(options); 3853de9c0cecSKevin Wolf bs->options = NULL; 3854998cbd6aSManos Pitsidianakis bs->explicit_options = NULL; 3855f67503e5SMax Reitz bdrv_unref(bs); 385634b5d2c6SMax Reitz error_propagate(errp, local_err); 38575b363937SMax Reitz return NULL; 3858de9c0cecSKevin Wolf 3859b6ad491aSKevin Wolf close_and_fail: 3860f67503e5SMax Reitz bdrv_unref(bs); 3861cb3e7f08SMarc-André Lureau qobject_unref(snapshot_options); 3862cb3e7f08SMarc-André Lureau qobject_unref(options); 386334b5d2c6SMax Reitz error_propagate(errp, local_err); 38645b363937SMax Reitz return NULL; 3865b6ce07aaSKevin Wolf } 3866b6ce07aaSKevin Wolf 38675b363937SMax Reitz BlockDriverState *bdrv_open(const char *filename, const char *reference, 38685b363937SMax Reitz QDict *options, int flags, Error **errp) 3869f3930ed0SKevin Wolf { 38705b363937SMax Reitz return bdrv_open_inherit(filename, reference, options, flags, NULL, 3871272c02eaSMax Reitz NULL, 0, errp); 3872f3930ed0SKevin Wolf } 3873f3930ed0SKevin Wolf 3874faf116b4SAlberto Garcia /* Return true if the NULL-terminated @list contains @str */ 3875faf116b4SAlberto Garcia static bool is_str_in_list(const char *str, const char *const *list) 3876faf116b4SAlberto Garcia { 3877faf116b4SAlberto Garcia if (str && list) { 3878faf116b4SAlberto Garcia int i; 3879faf116b4SAlberto Garcia for (i = 0; list[i] != NULL; i++) { 3880faf116b4SAlberto Garcia if (!strcmp(str, list[i])) { 3881faf116b4SAlberto Garcia return true; 3882faf116b4SAlberto Garcia } 3883faf116b4SAlberto Garcia } 3884faf116b4SAlberto Garcia } 3885faf116b4SAlberto Garcia return false; 3886faf116b4SAlberto Garcia } 3887faf116b4SAlberto Garcia 3888faf116b4SAlberto Garcia /* 3889faf116b4SAlberto Garcia * Check that every option set in @bs->options is also set in 3890faf116b4SAlberto Garcia * @new_opts. 3891faf116b4SAlberto Garcia * 3892faf116b4SAlberto Garcia * Options listed in the common_options list and in 3893faf116b4SAlberto Garcia * @bs->drv->mutable_opts are skipped. 3894faf116b4SAlberto Garcia * 3895faf116b4SAlberto Garcia * Return 0 on success, otherwise return -EINVAL and set @errp. 3896faf116b4SAlberto Garcia */ 3897faf116b4SAlberto Garcia static int bdrv_reset_options_allowed(BlockDriverState *bs, 3898faf116b4SAlberto Garcia const QDict *new_opts, Error **errp) 3899faf116b4SAlberto Garcia { 3900faf116b4SAlberto Garcia const QDictEntry *e; 3901faf116b4SAlberto Garcia /* These options are common to all block drivers and are handled 3902faf116b4SAlberto Garcia * in bdrv_reopen_prepare() so they can be left out of @new_opts */ 3903faf116b4SAlberto Garcia const char *const common_options[] = { 3904faf116b4SAlberto Garcia "node-name", "discard", "cache.direct", "cache.no-flush", 3905faf116b4SAlberto Garcia "read-only", "auto-read-only", "detect-zeroes", NULL 3906faf116b4SAlberto Garcia }; 3907faf116b4SAlberto Garcia 3908faf116b4SAlberto Garcia for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) { 3909faf116b4SAlberto Garcia if (!qdict_haskey(new_opts, e->key) && 3910faf116b4SAlberto Garcia !is_str_in_list(e->key, common_options) && 3911faf116b4SAlberto Garcia !is_str_in_list(e->key, bs->drv->mutable_opts)) { 3912faf116b4SAlberto Garcia error_setg(errp, "Option '%s' cannot be reset " 3913faf116b4SAlberto Garcia "to its default value", e->key); 3914faf116b4SAlberto Garcia return -EINVAL; 3915faf116b4SAlberto Garcia } 3916faf116b4SAlberto Garcia } 3917faf116b4SAlberto Garcia 3918faf116b4SAlberto Garcia return 0; 3919faf116b4SAlberto Garcia } 3920faf116b4SAlberto Garcia 3921e971aa12SJeff Cody /* 3922cb828c31SAlberto Garcia * Returns true if @child can be reached recursively from @bs 3923cb828c31SAlberto Garcia */ 3924cb828c31SAlberto Garcia static bool bdrv_recurse_has_child(BlockDriverState *bs, 3925cb828c31SAlberto Garcia BlockDriverState *child) 3926cb828c31SAlberto Garcia { 3927cb828c31SAlberto Garcia BdrvChild *c; 3928cb828c31SAlberto Garcia 3929cb828c31SAlberto Garcia if (bs == child) { 3930cb828c31SAlberto Garcia return true; 3931cb828c31SAlberto Garcia } 3932cb828c31SAlberto Garcia 3933cb828c31SAlberto Garcia QLIST_FOREACH(c, &bs->children, next) { 3934cb828c31SAlberto Garcia if (bdrv_recurse_has_child(c->bs, child)) { 3935cb828c31SAlberto Garcia return true; 3936cb828c31SAlberto Garcia } 3937cb828c31SAlberto Garcia } 3938cb828c31SAlberto Garcia 3939cb828c31SAlberto Garcia return false; 3940cb828c31SAlberto Garcia } 3941cb828c31SAlberto Garcia 3942cb828c31SAlberto Garcia /* 3943e971aa12SJeff Cody * Adds a BlockDriverState to a simple queue for an atomic, transactional 3944e971aa12SJeff Cody * reopen of multiple devices. 3945e971aa12SJeff Cody * 3946859443b0SVladimir Sementsov-Ogievskiy * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT 3947e971aa12SJeff Cody * already performed, or alternatively may be NULL a new BlockReopenQueue will 3948e971aa12SJeff Cody * be created and initialized. This newly created BlockReopenQueue should be 3949e971aa12SJeff Cody * passed back in for subsequent calls that are intended to be of the same 3950e971aa12SJeff Cody * atomic 'set'. 3951e971aa12SJeff Cody * 3952e971aa12SJeff Cody * bs is the BlockDriverState to add to the reopen queue. 3953e971aa12SJeff Cody * 39544d2cb092SKevin Wolf * options contains the changed options for the associated bs 39554d2cb092SKevin Wolf * (the BlockReopenQueue takes ownership) 39564d2cb092SKevin Wolf * 3957e971aa12SJeff Cody * flags contains the open flags for the associated bs 3958e971aa12SJeff Cody * 3959e971aa12SJeff Cody * returns a pointer to bs_queue, which is either the newly allocated 3960e971aa12SJeff Cody * bs_queue, or the existing bs_queue being used. 3961e971aa12SJeff Cody * 39621a63a907SKevin Wolf * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple(). 3963e971aa12SJeff Cody */ 396428518102SKevin Wolf static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, 39654d2cb092SKevin Wolf BlockDriverState *bs, 396628518102SKevin Wolf QDict *options, 3967bd86fb99SMax Reitz const BdrvChildClass *klass, 3968272c02eaSMax Reitz BdrvChildRole role, 39693cdc69d3SMax Reitz bool parent_is_format, 397028518102SKevin Wolf QDict *parent_options, 3971077e8e20SAlberto Garcia int parent_flags, 3972077e8e20SAlberto Garcia bool keep_old_opts) 3973e971aa12SJeff Cody { 3974e971aa12SJeff Cody assert(bs != NULL); 3975e971aa12SJeff Cody 3976e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry; 397767251a31SKevin Wolf BdrvChild *child; 39789aa09dddSAlberto Garcia QDict *old_options, *explicit_options, *options_copy; 39799aa09dddSAlberto Garcia int flags; 39809aa09dddSAlberto Garcia QemuOpts *opts; 398167251a31SKevin Wolf 39821a63a907SKevin Wolf /* Make sure that the caller remembered to use a drained section. This is 39831a63a907SKevin Wolf * important to avoid graph changes between the recursive queuing here and 39841a63a907SKevin Wolf * bdrv_reopen_multiple(). */ 39851a63a907SKevin Wolf assert(bs->quiesce_counter > 0); 39861a63a907SKevin Wolf 3987e971aa12SJeff Cody if (bs_queue == NULL) { 3988e971aa12SJeff Cody bs_queue = g_new0(BlockReopenQueue, 1); 3989859443b0SVladimir Sementsov-Ogievskiy QTAILQ_INIT(bs_queue); 3990e971aa12SJeff Cody } 3991e971aa12SJeff Cody 39924d2cb092SKevin Wolf if (!options) { 39934d2cb092SKevin Wolf options = qdict_new(); 39944d2cb092SKevin Wolf } 39954d2cb092SKevin Wolf 39965b7ba05fSAlberto Garcia /* Check if this BlockDriverState is already in the queue */ 3997859443b0SVladimir Sementsov-Ogievskiy QTAILQ_FOREACH(bs_entry, bs_queue, entry) { 39985b7ba05fSAlberto Garcia if (bs == bs_entry->state.bs) { 39995b7ba05fSAlberto Garcia break; 40005b7ba05fSAlberto Garcia } 40015b7ba05fSAlberto Garcia } 40025b7ba05fSAlberto Garcia 400328518102SKevin Wolf /* 400428518102SKevin Wolf * Precedence of options: 400528518102SKevin Wolf * 1. Explicitly passed in options (highest) 40069aa09dddSAlberto Garcia * 2. Retained from explicitly set options of bs 40079aa09dddSAlberto Garcia * 3. Inherited from parent node 40089aa09dddSAlberto Garcia * 4. Retained from effective options of bs 400928518102SKevin Wolf */ 401028518102SKevin Wolf 4011145f598eSKevin Wolf /* Old explicitly set values (don't overwrite by inherited value) */ 4012077e8e20SAlberto Garcia if (bs_entry || keep_old_opts) { 4013077e8e20SAlberto Garcia old_options = qdict_clone_shallow(bs_entry ? 4014077e8e20SAlberto Garcia bs_entry->state.explicit_options : 4015077e8e20SAlberto Garcia bs->explicit_options); 4016145f598eSKevin Wolf bdrv_join_options(bs, options, old_options); 4017cb3e7f08SMarc-André Lureau qobject_unref(old_options); 4018077e8e20SAlberto Garcia } 4019145f598eSKevin Wolf 4020145f598eSKevin Wolf explicit_options = qdict_clone_shallow(options); 4021145f598eSKevin Wolf 402228518102SKevin Wolf /* Inherit from parent node */ 402328518102SKevin Wolf if (parent_options) { 40249aa09dddSAlberto Garcia flags = 0; 40253cdc69d3SMax Reitz klass->inherit_options(role, parent_is_format, &flags, options, 4026272c02eaSMax Reitz parent_flags, parent_options); 40279aa09dddSAlberto Garcia } else { 40289aa09dddSAlberto Garcia flags = bdrv_get_flags(bs); 402928518102SKevin Wolf } 403028518102SKevin Wolf 4031077e8e20SAlberto Garcia if (keep_old_opts) { 403228518102SKevin Wolf /* Old values are used for options that aren't set yet */ 40334d2cb092SKevin Wolf old_options = qdict_clone_shallow(bs->options); 4034cddff5baSKevin Wolf bdrv_join_options(bs, options, old_options); 4035cb3e7f08SMarc-André Lureau qobject_unref(old_options); 4036077e8e20SAlberto Garcia } 40374d2cb092SKevin Wolf 40389aa09dddSAlberto Garcia /* We have the final set of options so let's update the flags */ 40399aa09dddSAlberto Garcia options_copy = qdict_clone_shallow(options); 40409aa09dddSAlberto Garcia opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 40419aa09dddSAlberto Garcia qemu_opts_absorb_qdict(opts, options_copy, NULL); 40429aa09dddSAlberto Garcia update_flags_from_options(&flags, opts); 40439aa09dddSAlberto Garcia qemu_opts_del(opts); 40449aa09dddSAlberto Garcia qobject_unref(options_copy); 40459aa09dddSAlberto Garcia 4046fd452021SKevin Wolf /* bdrv_open_inherit() sets and clears some additional flags internally */ 4047f1f25a2eSKevin Wolf flags &= ~BDRV_O_PROTOCOL; 4048fd452021SKevin Wolf if (flags & BDRV_O_RDWR) { 4049fd452021SKevin Wolf flags |= BDRV_O_ALLOW_RDWR; 4050fd452021SKevin Wolf } 4051f1f25a2eSKevin Wolf 40521857c97bSKevin Wolf if (!bs_entry) { 40531857c97bSKevin Wolf bs_entry = g_new0(BlockReopenQueueEntry, 1); 4054859443b0SVladimir Sementsov-Ogievskiy QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry); 40551857c97bSKevin Wolf } else { 4056cb3e7f08SMarc-André Lureau qobject_unref(bs_entry->state.options); 4057cb3e7f08SMarc-André Lureau qobject_unref(bs_entry->state.explicit_options); 40581857c97bSKevin Wolf } 40591857c97bSKevin Wolf 40601857c97bSKevin Wolf bs_entry->state.bs = bs; 40611857c97bSKevin Wolf bs_entry->state.options = options; 40621857c97bSKevin Wolf bs_entry->state.explicit_options = explicit_options; 40631857c97bSKevin Wolf bs_entry->state.flags = flags; 40641857c97bSKevin Wolf 40658546632eSAlberto Garcia /* 40668546632eSAlberto Garcia * If keep_old_opts is false then it means that unspecified 40678546632eSAlberto Garcia * options must be reset to their original value. We don't allow 40688546632eSAlberto Garcia * resetting 'backing' but we need to know if the option is 40698546632eSAlberto Garcia * missing in order to decide if we have to return an error. 40708546632eSAlberto Garcia */ 40718546632eSAlberto Garcia if (!keep_old_opts) { 40728546632eSAlberto Garcia bs_entry->state.backing_missing = 40738546632eSAlberto Garcia !qdict_haskey(options, "backing") && 40748546632eSAlberto Garcia !qdict_haskey(options, "backing.driver"); 40758546632eSAlberto Garcia } 40768546632eSAlberto Garcia 407767251a31SKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 40788546632eSAlberto Garcia QDict *new_child_options = NULL; 40798546632eSAlberto Garcia bool child_keep_old = keep_old_opts; 408067251a31SKevin Wolf 40814c9dfe5dSKevin Wolf /* reopen can only change the options of block devices that were 40824c9dfe5dSKevin Wolf * implicitly created and inherited options. For other (referenced) 40834c9dfe5dSKevin Wolf * block devices, a syntax like "backing.foo" results in an error. */ 408467251a31SKevin Wolf if (child->bs->inherits_from != bs) { 408567251a31SKevin Wolf continue; 408667251a31SKevin Wolf } 408767251a31SKevin Wolf 40888546632eSAlberto Garcia /* Check if the options contain a child reference */ 40898546632eSAlberto Garcia if (qdict_haskey(options, child->name)) { 40908546632eSAlberto Garcia const char *childref = qdict_get_try_str(options, child->name); 40918546632eSAlberto Garcia /* 40928546632eSAlberto Garcia * The current child must not be reopened if the child 40938546632eSAlberto Garcia * reference is null or points to a different node. 40948546632eSAlberto Garcia */ 40958546632eSAlberto Garcia if (g_strcmp0(childref, child->bs->node_name)) { 40968546632eSAlberto Garcia continue; 40978546632eSAlberto Garcia } 40988546632eSAlberto Garcia /* 40998546632eSAlberto Garcia * If the child reference points to the current child then 41008546632eSAlberto Garcia * reopen it with its existing set of options (note that 41018546632eSAlberto Garcia * it can still inherit new options from the parent). 41028546632eSAlberto Garcia */ 41038546632eSAlberto Garcia child_keep_old = true; 41048546632eSAlberto Garcia } else { 41058546632eSAlberto Garcia /* Extract child options ("child-name.*") */ 41068546632eSAlberto Garcia char *child_key_dot = g_strdup_printf("%s.", child->name); 41072f624b80SAlberto Garcia qdict_extract_subqdict(explicit_options, NULL, child_key_dot); 41084c9dfe5dSKevin Wolf qdict_extract_subqdict(options, &new_child_options, child_key_dot); 41094c9dfe5dSKevin Wolf g_free(child_key_dot); 41108546632eSAlberto Garcia } 41114c9dfe5dSKevin Wolf 41129aa09dddSAlberto Garcia bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 41133cdc69d3SMax Reitz child->klass, child->role, bs->drv->is_format, 41143cdc69d3SMax Reitz options, flags, child_keep_old); 4115e971aa12SJeff Cody } 4116e971aa12SJeff Cody 4117e971aa12SJeff Cody return bs_queue; 4118e971aa12SJeff Cody } 4119e971aa12SJeff Cody 412028518102SKevin Wolf BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, 412128518102SKevin Wolf BlockDriverState *bs, 4122077e8e20SAlberto Garcia QDict *options, bool keep_old_opts) 412328518102SKevin Wolf { 41243cdc69d3SMax Reitz return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false, 41253cdc69d3SMax Reitz NULL, 0, keep_old_opts); 412628518102SKevin Wolf } 412728518102SKevin Wolf 4128ab5b5228SAlberto Garcia void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue) 4129ab5b5228SAlberto Garcia { 4130ab5b5228SAlberto Garcia if (bs_queue) { 4131ab5b5228SAlberto Garcia BlockReopenQueueEntry *bs_entry, *next; 4132ab5b5228SAlberto Garcia QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { 4133ab5b5228SAlberto Garcia qobject_unref(bs_entry->state.explicit_options); 4134ab5b5228SAlberto Garcia qobject_unref(bs_entry->state.options); 4135ab5b5228SAlberto Garcia g_free(bs_entry); 4136ab5b5228SAlberto Garcia } 4137ab5b5228SAlberto Garcia g_free(bs_queue); 4138ab5b5228SAlberto Garcia } 4139ab5b5228SAlberto Garcia } 4140ab5b5228SAlberto Garcia 4141e971aa12SJeff Cody /* 4142e971aa12SJeff Cody * Reopen multiple BlockDriverStates atomically & transactionally. 4143e971aa12SJeff Cody * 4144e971aa12SJeff Cody * The queue passed in (bs_queue) must have been built up previous 4145e971aa12SJeff Cody * via bdrv_reopen_queue(). 4146e971aa12SJeff Cody * 4147e971aa12SJeff Cody * Reopens all BDS specified in the queue, with the appropriate 4148e971aa12SJeff Cody * flags. All devices are prepared for reopen, and failure of any 414950d6a8a3SStefan Weil * device will cause all device changes to be abandoned, and intermediate 4150e971aa12SJeff Cody * data cleaned up. 4151e971aa12SJeff Cody * 4152e971aa12SJeff Cody * If all devices prepare successfully, then the changes are committed 4153e971aa12SJeff Cody * to all devices. 4154e971aa12SJeff Cody * 41551a63a907SKevin Wolf * All affected nodes must be drained between bdrv_reopen_queue() and 41561a63a907SKevin Wolf * bdrv_reopen_multiple(). 41576cf42ca2SKevin Wolf * 41586cf42ca2SKevin Wolf * To be called from the main thread, with all other AioContexts unlocked. 4159e971aa12SJeff Cody */ 41605019aeceSAlberto Garcia int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp) 4161e971aa12SJeff Cody { 4162e971aa12SJeff Cody int ret = -1; 4163e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry, *next; 41646cf42ca2SKevin Wolf AioContext *ctx; 416572373e40SVladimir Sementsov-Ogievskiy Transaction *tran = tran_new(); 416672373e40SVladimir Sementsov-Ogievskiy g_autoptr(GHashTable) found = NULL; 416772373e40SVladimir Sementsov-Ogievskiy g_autoptr(GSList) refresh_list = NULL; 4168e971aa12SJeff Cody 41696cf42ca2SKevin Wolf assert(qemu_get_current_aio_context() == qemu_get_aio_context()); 4170e971aa12SJeff Cody assert(bs_queue != NULL); 4171e971aa12SJeff Cody 4172859443b0SVladimir Sementsov-Ogievskiy QTAILQ_FOREACH(bs_entry, bs_queue, entry) { 41736cf42ca2SKevin Wolf ctx = bdrv_get_aio_context(bs_entry->state.bs); 41746cf42ca2SKevin Wolf aio_context_acquire(ctx); 4175a2aabf88SVladimir Sementsov-Ogievskiy ret = bdrv_flush(bs_entry->state.bs); 41766cf42ca2SKevin Wolf aio_context_release(ctx); 4177a2aabf88SVladimir Sementsov-Ogievskiy if (ret < 0) { 4178a2aabf88SVladimir Sementsov-Ogievskiy error_setg_errno(errp, -ret, "Error flushing drive"); 4179e3fc91aaSKevin Wolf goto abort; 4180a2aabf88SVladimir Sementsov-Ogievskiy } 4181a2aabf88SVladimir Sementsov-Ogievskiy } 4182a2aabf88SVladimir Sementsov-Ogievskiy 4183a2aabf88SVladimir Sementsov-Ogievskiy QTAILQ_FOREACH(bs_entry, bs_queue, entry) { 41841a63a907SKevin Wolf assert(bs_entry->state.bs->quiesce_counter > 0); 41856cf42ca2SKevin Wolf ctx = bdrv_get_aio_context(bs_entry->state.bs); 41866cf42ca2SKevin Wolf aio_context_acquire(ctx); 418772373e40SVladimir Sementsov-Ogievskiy ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp); 41886cf42ca2SKevin Wolf aio_context_release(ctx); 418972373e40SVladimir Sementsov-Ogievskiy if (ret < 0) { 419072373e40SVladimir Sementsov-Ogievskiy goto abort; 4191e971aa12SJeff Cody } 4192e971aa12SJeff Cody bs_entry->prepared = true; 4193e971aa12SJeff Cody } 4194e971aa12SJeff Cody 419572373e40SVladimir Sementsov-Ogievskiy found = g_hash_table_new(NULL, NULL); 4196859443b0SVladimir Sementsov-Ogievskiy QTAILQ_FOREACH(bs_entry, bs_queue, entry) { 419769b736e7SKevin Wolf BDRVReopenState *state = &bs_entry->state; 419872373e40SVladimir Sementsov-Ogievskiy 419972373e40SVladimir Sementsov-Ogievskiy refresh_list = bdrv_topological_dfs(refresh_list, found, state->bs); 420072373e40SVladimir Sementsov-Ogievskiy if (state->old_backing_bs) { 420172373e40SVladimir Sementsov-Ogievskiy refresh_list = bdrv_topological_dfs(refresh_list, found, 420272373e40SVladimir Sementsov-Ogievskiy state->old_backing_bs); 420372373e40SVladimir Sementsov-Ogievskiy } 4204ecd30d2dSAlberto Garcia if (state->old_file_bs) { 4205ecd30d2dSAlberto Garcia refresh_list = bdrv_topological_dfs(refresh_list, found, 4206ecd30d2dSAlberto Garcia state->old_file_bs); 4207ecd30d2dSAlberto Garcia } 420872373e40SVladimir Sementsov-Ogievskiy } 420972373e40SVladimir Sementsov-Ogievskiy 421072373e40SVladimir Sementsov-Ogievskiy /* 421172373e40SVladimir Sementsov-Ogievskiy * Note that file-posix driver rely on permission update done during reopen 421272373e40SVladimir Sementsov-Ogievskiy * (even if no permission changed), because it wants "new" permissions for 421372373e40SVladimir Sementsov-Ogievskiy * reconfiguring the fd and that's why it does it in raw_check_perm(), not 421472373e40SVladimir Sementsov-Ogievskiy * in raw_reopen_prepare() which is called with "old" permissions. 421572373e40SVladimir Sementsov-Ogievskiy */ 421672373e40SVladimir Sementsov-Ogievskiy ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp); 421769b736e7SKevin Wolf if (ret < 0) { 421872373e40SVladimir Sementsov-Ogievskiy goto abort; 421969b736e7SKevin Wolf } 422069b736e7SKevin Wolf 4221fcd6a4f4SVladimir Sementsov-Ogievskiy /* 4222fcd6a4f4SVladimir Sementsov-Ogievskiy * If we reach this point, we have success and just need to apply the 4223fcd6a4f4SVladimir Sementsov-Ogievskiy * changes. 4224fcd6a4f4SVladimir Sementsov-Ogievskiy * 4225fcd6a4f4SVladimir Sementsov-Ogievskiy * Reverse order is used to comfort qcow2 driver: on commit it need to write 4226fcd6a4f4SVladimir Sementsov-Ogievskiy * IN_USE flag to the image, to mark bitmaps in the image as invalid. But 4227fcd6a4f4SVladimir Sementsov-Ogievskiy * children are usually goes after parents in reopen-queue, so go from last 4228fcd6a4f4SVladimir Sementsov-Ogievskiy * to first element. 4229e971aa12SJeff Cody */ 4230fcd6a4f4SVladimir Sementsov-Ogievskiy QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) { 42316cf42ca2SKevin Wolf ctx = bdrv_get_aio_context(bs_entry->state.bs); 42326cf42ca2SKevin Wolf aio_context_acquire(ctx); 4233e971aa12SJeff Cody bdrv_reopen_commit(&bs_entry->state); 42346cf42ca2SKevin Wolf aio_context_release(ctx); 4235e971aa12SJeff Cody } 4236e971aa12SJeff Cody 423772373e40SVladimir Sementsov-Ogievskiy tran_commit(tran); 4238e971aa12SJeff Cody 423917e1e2beSPeter Krempa QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) { 424017e1e2beSPeter Krempa BlockDriverState *bs = bs_entry->state.bs; 424117e1e2beSPeter Krempa 424272373e40SVladimir Sementsov-Ogievskiy if (bs->drv->bdrv_reopen_commit_post) { 42436cf42ca2SKevin Wolf ctx = bdrv_get_aio_context(bs); 42446cf42ca2SKevin Wolf aio_context_acquire(ctx); 424517e1e2beSPeter Krempa bs->drv->bdrv_reopen_commit_post(&bs_entry->state); 42466cf42ca2SKevin Wolf aio_context_release(ctx); 424717e1e2beSPeter Krempa } 424817e1e2beSPeter Krempa } 424972373e40SVladimir Sementsov-Ogievskiy 425072373e40SVladimir Sementsov-Ogievskiy ret = 0; 425172373e40SVladimir Sementsov-Ogievskiy goto cleanup; 425272373e40SVladimir Sementsov-Ogievskiy 425372373e40SVladimir Sementsov-Ogievskiy abort: 425472373e40SVladimir Sementsov-Ogievskiy tran_abort(tran); 4255859443b0SVladimir Sementsov-Ogievskiy QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { 42561bab38e7SAlberto Garcia if (bs_entry->prepared) { 42576cf42ca2SKevin Wolf ctx = bdrv_get_aio_context(bs_entry->state.bs); 42586cf42ca2SKevin Wolf aio_context_acquire(ctx); 4259e971aa12SJeff Cody bdrv_reopen_abort(&bs_entry->state); 42606cf42ca2SKevin Wolf aio_context_release(ctx); 42611bab38e7SAlberto Garcia } 42624c8350feSAlberto Garcia } 426372373e40SVladimir Sementsov-Ogievskiy 426472373e40SVladimir Sementsov-Ogievskiy cleanup: 4265ab5b5228SAlberto Garcia bdrv_reopen_queue_free(bs_queue); 426640840e41SAlberto Garcia 4267e971aa12SJeff Cody return ret; 4268e971aa12SJeff Cody } 4269e971aa12SJeff Cody 42706cf42ca2SKevin Wolf int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts, 42716cf42ca2SKevin Wolf Error **errp) 42726cf42ca2SKevin Wolf { 42736cf42ca2SKevin Wolf AioContext *ctx = bdrv_get_aio_context(bs); 42746cf42ca2SKevin Wolf BlockReopenQueue *queue; 42756cf42ca2SKevin Wolf int ret; 42766cf42ca2SKevin Wolf 42776cf42ca2SKevin Wolf bdrv_subtree_drained_begin(bs); 42786cf42ca2SKevin Wolf if (ctx != qemu_get_aio_context()) { 42796cf42ca2SKevin Wolf aio_context_release(ctx); 42806cf42ca2SKevin Wolf } 42816cf42ca2SKevin Wolf 42826cf42ca2SKevin Wolf queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts); 42836cf42ca2SKevin Wolf ret = bdrv_reopen_multiple(queue, errp); 42846cf42ca2SKevin Wolf 42856cf42ca2SKevin Wolf if (ctx != qemu_get_aio_context()) { 42866cf42ca2SKevin Wolf aio_context_acquire(ctx); 42876cf42ca2SKevin Wolf } 42886cf42ca2SKevin Wolf bdrv_subtree_drained_end(bs); 42896cf42ca2SKevin Wolf 42906cf42ca2SKevin Wolf return ret; 42916cf42ca2SKevin Wolf } 42926cf42ca2SKevin Wolf 42936e1000a8SAlberto Garcia int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only, 42946e1000a8SAlberto Garcia Error **errp) 42956e1000a8SAlberto Garcia { 42966e1000a8SAlberto Garcia QDict *opts = qdict_new(); 42976e1000a8SAlberto Garcia 42986e1000a8SAlberto Garcia qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only); 42996e1000a8SAlberto Garcia 43006cf42ca2SKevin Wolf return bdrv_reopen(bs, opts, true, errp); 43016e1000a8SAlberto Garcia } 43026e1000a8SAlberto Garcia 4303e971aa12SJeff Cody /* 4304cb828c31SAlberto Garcia * Take a BDRVReopenState and check if the value of 'backing' in the 4305cb828c31SAlberto Garcia * reopen_state->options QDict is valid or not. 4306cb828c31SAlberto Garcia * 4307cb828c31SAlberto Garcia * If 'backing' is missing from the QDict then return 0. 4308cb828c31SAlberto Garcia * 4309cb828c31SAlberto Garcia * If 'backing' contains the node name of the backing file of 4310cb828c31SAlberto Garcia * reopen_state->bs then return 0. 4311cb828c31SAlberto Garcia * 4312cb828c31SAlberto Garcia * If 'backing' contains a different node name (or is null) then check 4313cb828c31SAlberto Garcia * whether the current backing file can be replaced with the new one. 4314cb828c31SAlberto Garcia * If that's the case then reopen_state->replace_backing_bs is set to 4315cb828c31SAlberto Garcia * true and reopen_state->new_backing_bs contains a pointer to the new 4316cb828c31SAlberto Garcia * backing BlockDriverState (or NULL). 4317cb828c31SAlberto Garcia * 4318cb828c31SAlberto Garcia * Return 0 on success, otherwise return < 0 and set @errp. 4319cb828c31SAlberto Garcia */ 4320ecd30d2dSAlberto Garcia static int bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state, 4321ecd30d2dSAlberto Garcia bool is_backing, Transaction *tran, 4322cb828c31SAlberto Garcia Error **errp) 4323cb828c31SAlberto Garcia { 4324cb828c31SAlberto Garcia BlockDriverState *bs = reopen_state->bs; 4325ecd30d2dSAlberto Garcia BlockDriverState *new_child_bs; 4326ecd30d2dSAlberto Garcia BlockDriverState *old_child_bs = is_backing ? child_bs(bs->backing) : 4327ecd30d2dSAlberto Garcia child_bs(bs->file); 4328ecd30d2dSAlberto Garcia const char *child_name = is_backing ? "backing" : "file"; 4329cb828c31SAlberto Garcia QObject *value; 4330cb828c31SAlberto Garcia const char *str; 4331cb828c31SAlberto Garcia 4332ecd30d2dSAlberto Garcia value = qdict_get(reopen_state->options, child_name); 4333cb828c31SAlberto Garcia if (value == NULL) { 4334cb828c31SAlberto Garcia return 0; 4335cb828c31SAlberto Garcia } 4336cb828c31SAlberto Garcia 4337cb828c31SAlberto Garcia switch (qobject_type(value)) { 4338cb828c31SAlberto Garcia case QTYPE_QNULL: 4339ecd30d2dSAlberto Garcia assert(is_backing); /* The 'file' option does not allow a null value */ 4340ecd30d2dSAlberto Garcia new_child_bs = NULL; 4341cb828c31SAlberto Garcia break; 4342cb828c31SAlberto Garcia case QTYPE_QSTRING: 4343410f44f5SMarkus Armbruster str = qstring_get_str(qobject_to(QString, value)); 4344ecd30d2dSAlberto Garcia new_child_bs = bdrv_lookup_bs(NULL, str, errp); 4345ecd30d2dSAlberto Garcia if (new_child_bs == NULL) { 4346cb828c31SAlberto Garcia return -EINVAL; 4347ecd30d2dSAlberto Garcia } else if (bdrv_recurse_has_child(new_child_bs, bs)) { 4348ecd30d2dSAlberto Garcia error_setg(errp, "Making '%s' a %s child of '%s' would create a " 4349ecd30d2dSAlberto Garcia "cycle", str, child_name, bs->node_name); 4350cb828c31SAlberto Garcia return -EINVAL; 4351cb828c31SAlberto Garcia } 4352cb828c31SAlberto Garcia break; 4353cb828c31SAlberto Garcia default: 4354ecd30d2dSAlberto Garcia /* 4355ecd30d2dSAlberto Garcia * The options QDict has been flattened, so 'backing' and 'file' 4356ecd30d2dSAlberto Garcia * do not allow any other data type here. 4357ecd30d2dSAlberto Garcia */ 4358cb828c31SAlberto Garcia g_assert_not_reached(); 4359cb828c31SAlberto Garcia } 4360cb828c31SAlberto Garcia 4361ecd30d2dSAlberto Garcia if (old_child_bs == new_child_bs) { 4362cbfdb98cSVladimir Sementsov-Ogievskiy return 0; 4363cbfdb98cSVladimir Sementsov-Ogievskiy } 4364cbfdb98cSVladimir Sementsov-Ogievskiy 4365ecd30d2dSAlberto Garcia if (old_child_bs) { 4366ecd30d2dSAlberto Garcia if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) { 4367ecd30d2dSAlberto Garcia return 0; 4368ecd30d2dSAlberto Garcia } 4369ecd30d2dSAlberto Garcia 4370ecd30d2dSAlberto Garcia if (old_child_bs->implicit) { 4371ecd30d2dSAlberto Garcia error_setg(errp, "Cannot replace implicit %s child of %s", 4372ecd30d2dSAlberto Garcia child_name, bs->node_name); 4373cbfdb98cSVladimir Sementsov-Ogievskiy return -EPERM; 4374cbfdb98cSVladimir Sementsov-Ogievskiy } 4375cbfdb98cSVladimir Sementsov-Ogievskiy } 4376cbfdb98cSVladimir Sementsov-Ogievskiy 4377ecd30d2dSAlberto Garcia if (bs->drv->is_filter && !old_child_bs) { 4378cb828c31SAlberto Garcia /* 437925f78d9eSVladimir Sementsov-Ogievskiy * Filters always have a file or a backing child, so we are trying to 438025f78d9eSVladimir Sementsov-Ogievskiy * change wrong child 43811d42f48cSMax Reitz */ 43821d42f48cSMax Reitz error_setg(errp, "'%s' is a %s filter node that does not support a " 4383ecd30d2dSAlberto Garcia "%s child", bs->node_name, bs->drv->format_name, child_name); 43841d42f48cSMax Reitz return -EINVAL; 43851d42f48cSMax Reitz } 43861d42f48cSMax Reitz 4387ecd30d2dSAlberto Garcia if (is_backing) { 4388ecd30d2dSAlberto Garcia reopen_state->old_backing_bs = old_child_bs; 4389ecd30d2dSAlberto Garcia } else { 4390ecd30d2dSAlberto Garcia reopen_state->old_file_bs = old_child_bs; 4391ecd30d2dSAlberto Garcia } 4392ecd30d2dSAlberto Garcia 4393ecd30d2dSAlberto Garcia return bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing, 4394ecd30d2dSAlberto Garcia tran, errp); 4395cb828c31SAlberto Garcia } 4396cb828c31SAlberto Garcia 4397cb828c31SAlberto Garcia /* 4398e971aa12SJeff Cody * Prepares a BlockDriverState for reopen. All changes are staged in the 4399e971aa12SJeff Cody * 'opaque' field of the BDRVReopenState, which is used and allocated by 4400e971aa12SJeff Cody * the block driver layer .bdrv_reopen_prepare() 4401e971aa12SJeff Cody * 4402e971aa12SJeff Cody * bs is the BlockDriverState to reopen 4403e971aa12SJeff Cody * flags are the new open flags 4404e971aa12SJeff Cody * queue is the reopen queue 4405e971aa12SJeff Cody * 4406e971aa12SJeff Cody * Returns 0 on success, non-zero on error. On error errp will be set 4407e971aa12SJeff Cody * as well. 4408e971aa12SJeff Cody * 4409e971aa12SJeff Cody * On failure, bdrv_reopen_abort() will be called to clean up any data. 4410e971aa12SJeff Cody * It is the responsibility of the caller to then call the abort() or 4411e971aa12SJeff Cody * commit() for any other BDS that have been left in a prepare() state 4412e971aa12SJeff Cody * 4413e971aa12SJeff Cody */ 441453e96d1eSVladimir Sementsov-Ogievskiy static int bdrv_reopen_prepare(BDRVReopenState *reopen_state, 441572373e40SVladimir Sementsov-Ogievskiy BlockReopenQueue *queue, 4416ecd30d2dSAlberto Garcia Transaction *change_child_tran, Error **errp) 4417e971aa12SJeff Cody { 4418e971aa12SJeff Cody int ret = -1; 4419e6d79c41SAlberto Garcia int old_flags; 4420e971aa12SJeff Cody Error *local_err = NULL; 4421e971aa12SJeff Cody BlockDriver *drv; 4422ccf9dc07SKevin Wolf QemuOpts *opts; 44234c8350feSAlberto Garcia QDict *orig_reopen_opts; 4424593b3071SAlberto Garcia char *discard = NULL; 44253d8ce171SJeff Cody bool read_only; 44269ad08c44SMax Reitz bool drv_prepared = false; 4427e971aa12SJeff Cody 4428e971aa12SJeff Cody assert(reopen_state != NULL); 4429e971aa12SJeff Cody assert(reopen_state->bs->drv != NULL); 4430e971aa12SJeff Cody drv = reopen_state->bs->drv; 4431e971aa12SJeff Cody 44324c8350feSAlberto Garcia /* This function and each driver's bdrv_reopen_prepare() remove 44334c8350feSAlberto Garcia * entries from reopen_state->options as they are processed, so 44344c8350feSAlberto Garcia * we need to make a copy of the original QDict. */ 44354c8350feSAlberto Garcia orig_reopen_opts = qdict_clone_shallow(reopen_state->options); 44364c8350feSAlberto Garcia 4437ccf9dc07SKevin Wolf /* Process generic block layer options */ 4438ccf9dc07SKevin Wolf opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 4439af175e85SMarkus Armbruster if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) { 4440ccf9dc07SKevin Wolf ret = -EINVAL; 4441ccf9dc07SKevin Wolf goto error; 4442ccf9dc07SKevin Wolf } 4443ccf9dc07SKevin Wolf 4444e6d79c41SAlberto Garcia /* This was already called in bdrv_reopen_queue_child() so the flags 4445e6d79c41SAlberto Garcia * are up-to-date. This time we simply want to remove the options from 4446e6d79c41SAlberto Garcia * QemuOpts in order to indicate that they have been processed. */ 4447e6d79c41SAlberto Garcia old_flags = reopen_state->flags; 444891a097e7SKevin Wolf update_flags_from_options(&reopen_state->flags, opts); 4449e6d79c41SAlberto Garcia assert(old_flags == reopen_state->flags); 445091a097e7SKevin Wolf 4451415bbca8SAlberto Garcia discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD); 4452593b3071SAlberto Garcia if (discard != NULL) { 4453593b3071SAlberto Garcia if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) { 4454593b3071SAlberto Garcia error_setg(errp, "Invalid discard option"); 4455593b3071SAlberto Garcia ret = -EINVAL; 4456593b3071SAlberto Garcia goto error; 4457593b3071SAlberto Garcia } 4458593b3071SAlberto Garcia } 4459593b3071SAlberto Garcia 4460543770bdSAlberto Garcia reopen_state->detect_zeroes = 4461543770bdSAlberto Garcia bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err); 4462543770bdSAlberto Garcia if (local_err) { 4463543770bdSAlberto Garcia error_propagate(errp, local_err); 4464543770bdSAlberto Garcia ret = -EINVAL; 4465543770bdSAlberto Garcia goto error; 4466543770bdSAlberto Garcia } 4467543770bdSAlberto Garcia 446857f9db9aSAlberto Garcia /* All other options (including node-name and driver) must be unchanged. 446957f9db9aSAlberto Garcia * Put them back into the QDict, so that they are checked at the end 447057f9db9aSAlberto Garcia * of this function. */ 447157f9db9aSAlberto Garcia qemu_opts_to_qdict(opts, reopen_state->options); 4472ccf9dc07SKevin Wolf 44733d8ce171SJeff Cody /* If we are to stay read-only, do not allow permission change 44743d8ce171SJeff Cody * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is 44753d8ce171SJeff Cody * not set, or if the BDS still has copy_on_read enabled */ 44763d8ce171SJeff Cody read_only = !(reopen_state->flags & BDRV_O_RDWR); 447754a32bfeSKevin Wolf ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err); 44783d8ce171SJeff Cody if (local_err) { 44793d8ce171SJeff Cody error_propagate(errp, local_err); 4480e971aa12SJeff Cody goto error; 4481e971aa12SJeff Cody } 4482e971aa12SJeff Cody 4483e971aa12SJeff Cody if (drv->bdrv_reopen_prepare) { 4484faf116b4SAlberto Garcia /* 4485faf116b4SAlberto Garcia * If a driver-specific option is missing, it means that we 4486faf116b4SAlberto Garcia * should reset it to its default value. 4487faf116b4SAlberto Garcia * But not all options allow that, so we need to check it first. 4488faf116b4SAlberto Garcia */ 4489faf116b4SAlberto Garcia ret = bdrv_reset_options_allowed(reopen_state->bs, 4490faf116b4SAlberto Garcia reopen_state->options, errp); 4491faf116b4SAlberto Garcia if (ret) { 4492faf116b4SAlberto Garcia goto error; 4493faf116b4SAlberto Garcia } 4494faf116b4SAlberto Garcia 4495e971aa12SJeff Cody ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); 4496e971aa12SJeff Cody if (ret) { 4497e971aa12SJeff Cody if (local_err != NULL) { 4498e971aa12SJeff Cody error_propagate(errp, local_err); 4499e971aa12SJeff Cody } else { 4500f30c66baSMax Reitz bdrv_refresh_filename(reopen_state->bs); 4501d8b6895fSLuiz Capitulino error_setg(errp, "failed while preparing to reopen image '%s'", 4502e971aa12SJeff Cody reopen_state->bs->filename); 4503e971aa12SJeff Cody } 4504e971aa12SJeff Cody goto error; 4505e971aa12SJeff Cody } 4506e971aa12SJeff Cody } else { 4507e971aa12SJeff Cody /* It is currently mandatory to have a bdrv_reopen_prepare() 4508e971aa12SJeff Cody * handler for each supported drv. */ 450981e5f78aSAlberto Garcia error_setg(errp, "Block format '%s' used by node '%s' " 451081e5f78aSAlberto Garcia "does not support reopening files", drv->format_name, 451181e5f78aSAlberto Garcia bdrv_get_device_or_node_name(reopen_state->bs)); 4512e971aa12SJeff Cody ret = -1; 4513e971aa12SJeff Cody goto error; 4514e971aa12SJeff Cody } 4515e971aa12SJeff Cody 45169ad08c44SMax Reitz drv_prepared = true; 45179ad08c44SMax Reitz 4518bacd9b87SAlberto Garcia /* 4519bacd9b87SAlberto Garcia * We must provide the 'backing' option if the BDS has a backing 4520bacd9b87SAlberto Garcia * file or if the image file has a backing file name as part of 4521bacd9b87SAlberto Garcia * its metadata. Otherwise the 'backing' option can be omitted. 4522bacd9b87SAlberto Garcia */ 4523bacd9b87SAlberto Garcia if (drv->supports_backing && reopen_state->backing_missing && 45241d42f48cSMax Reitz (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) { 45258546632eSAlberto Garcia error_setg(errp, "backing is missing for '%s'", 45268546632eSAlberto Garcia reopen_state->bs->node_name); 45278546632eSAlberto Garcia ret = -EINVAL; 45288546632eSAlberto Garcia goto error; 45298546632eSAlberto Garcia } 45308546632eSAlberto Garcia 4531cb828c31SAlberto Garcia /* 4532cb828c31SAlberto Garcia * Allow changing the 'backing' option. The new value can be 4533cb828c31SAlberto Garcia * either a reference to an existing node (using its node name) 4534cb828c31SAlberto Garcia * or NULL to simply detach the current backing file. 4535cb828c31SAlberto Garcia */ 4536ecd30d2dSAlberto Garcia ret = bdrv_reopen_parse_file_or_backing(reopen_state, true, 4537ecd30d2dSAlberto Garcia change_child_tran, errp); 4538cb828c31SAlberto Garcia if (ret < 0) { 4539cb828c31SAlberto Garcia goto error; 4540cb828c31SAlberto Garcia } 4541cb828c31SAlberto Garcia qdict_del(reopen_state->options, "backing"); 4542cb828c31SAlberto Garcia 4543ecd30d2dSAlberto Garcia /* Allow changing the 'file' option. In this case NULL is not allowed */ 4544ecd30d2dSAlberto Garcia ret = bdrv_reopen_parse_file_or_backing(reopen_state, false, 4545ecd30d2dSAlberto Garcia change_child_tran, errp); 4546ecd30d2dSAlberto Garcia if (ret < 0) { 4547ecd30d2dSAlberto Garcia goto error; 4548ecd30d2dSAlberto Garcia } 4549ecd30d2dSAlberto Garcia qdict_del(reopen_state->options, "file"); 4550ecd30d2dSAlberto Garcia 45514d2cb092SKevin Wolf /* Options that are not handled are only okay if they are unchanged 45524d2cb092SKevin Wolf * compared to the old state. It is expected that some options are only 45534d2cb092SKevin Wolf * used for the initial open, but not reopen (e.g. filename) */ 45544d2cb092SKevin Wolf if (qdict_size(reopen_state->options)) { 45554d2cb092SKevin Wolf const QDictEntry *entry = qdict_first(reopen_state->options); 45564d2cb092SKevin Wolf 45574d2cb092SKevin Wolf do { 455854fd1b0dSMax Reitz QObject *new = entry->value; 455954fd1b0dSMax Reitz QObject *old = qdict_get(reopen_state->bs->options, entry->key); 45604d2cb092SKevin Wolf 4561db905283SAlberto Garcia /* Allow child references (child_name=node_name) as long as they 4562db905283SAlberto Garcia * point to the current child (i.e. everything stays the same). */ 4563db905283SAlberto Garcia if (qobject_type(new) == QTYPE_QSTRING) { 4564db905283SAlberto Garcia BdrvChild *child; 4565db905283SAlberto Garcia QLIST_FOREACH(child, &reopen_state->bs->children, next) { 4566db905283SAlberto Garcia if (!strcmp(child->name, entry->key)) { 4567db905283SAlberto Garcia break; 4568db905283SAlberto Garcia } 4569db905283SAlberto Garcia } 4570db905283SAlberto Garcia 4571db905283SAlberto Garcia if (child) { 4572410f44f5SMarkus Armbruster if (!strcmp(child->bs->node_name, 4573410f44f5SMarkus Armbruster qstring_get_str(qobject_to(QString, new)))) { 4574db905283SAlberto Garcia continue; /* Found child with this name, skip option */ 4575db905283SAlberto Garcia } 4576db905283SAlberto Garcia } 4577db905283SAlberto Garcia } 4578db905283SAlberto Garcia 457954fd1b0dSMax Reitz /* 458054fd1b0dSMax Reitz * TODO: When using -drive to specify blockdev options, all values 458154fd1b0dSMax Reitz * will be strings; however, when using -blockdev, blockdev-add or 458254fd1b0dSMax Reitz * filenames using the json:{} pseudo-protocol, they will be 458354fd1b0dSMax Reitz * correctly typed. 458454fd1b0dSMax Reitz * In contrast, reopening options are (currently) always strings 458554fd1b0dSMax Reitz * (because you can only specify them through qemu-io; all other 458654fd1b0dSMax Reitz * callers do not specify any options). 458754fd1b0dSMax Reitz * Therefore, when using anything other than -drive to create a BDS, 458854fd1b0dSMax Reitz * this cannot detect non-string options as unchanged, because 458954fd1b0dSMax Reitz * qobject_is_equal() always returns false for objects of different 459054fd1b0dSMax Reitz * type. In the future, this should be remedied by correctly typing 459154fd1b0dSMax Reitz * all options. For now, this is not too big of an issue because 459254fd1b0dSMax Reitz * the user can simply omit options which cannot be changed anyway, 459354fd1b0dSMax Reitz * so they will stay unchanged. 459454fd1b0dSMax Reitz */ 459554fd1b0dSMax Reitz if (!qobject_is_equal(new, old)) { 45964d2cb092SKevin Wolf error_setg(errp, "Cannot change the option '%s'", entry->key); 45974d2cb092SKevin Wolf ret = -EINVAL; 45984d2cb092SKevin Wolf goto error; 45994d2cb092SKevin Wolf } 46004d2cb092SKevin Wolf } while ((entry = qdict_next(reopen_state->options, entry))); 46014d2cb092SKevin Wolf } 46024d2cb092SKevin Wolf 4603e971aa12SJeff Cody ret = 0; 4604e971aa12SJeff Cody 46054c8350feSAlberto Garcia /* Restore the original reopen_state->options QDict */ 46064c8350feSAlberto Garcia qobject_unref(reopen_state->options); 46074c8350feSAlberto Garcia reopen_state->options = qobject_ref(orig_reopen_opts); 46084c8350feSAlberto Garcia 4609e971aa12SJeff Cody error: 46109ad08c44SMax Reitz if (ret < 0 && drv_prepared) { 46119ad08c44SMax Reitz /* drv->bdrv_reopen_prepare() has succeeded, so we need to 46129ad08c44SMax Reitz * call drv->bdrv_reopen_abort() before signaling an error 46139ad08c44SMax Reitz * (bdrv_reopen_multiple() will not call bdrv_reopen_abort() 46149ad08c44SMax Reitz * when the respective bdrv_reopen_prepare() has failed) */ 46159ad08c44SMax Reitz if (drv->bdrv_reopen_abort) { 46169ad08c44SMax Reitz drv->bdrv_reopen_abort(reopen_state); 46179ad08c44SMax Reitz } 46189ad08c44SMax Reitz } 4619ccf9dc07SKevin Wolf qemu_opts_del(opts); 46204c8350feSAlberto Garcia qobject_unref(orig_reopen_opts); 4621593b3071SAlberto Garcia g_free(discard); 4622e971aa12SJeff Cody return ret; 4623e971aa12SJeff Cody } 4624e971aa12SJeff Cody 4625e971aa12SJeff Cody /* 4626e971aa12SJeff Cody * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and 4627e971aa12SJeff Cody * makes them final by swapping the staging BlockDriverState contents into 4628e971aa12SJeff Cody * the active BlockDriverState contents. 4629e971aa12SJeff Cody */ 463053e96d1eSVladimir Sementsov-Ogievskiy static void bdrv_reopen_commit(BDRVReopenState *reopen_state) 4631e971aa12SJeff Cody { 4632e971aa12SJeff Cody BlockDriver *drv; 463350bf65baSVladimir Sementsov-Ogievskiy BlockDriverState *bs; 463450196d7aSAlberto Garcia BdrvChild *child; 4635e971aa12SJeff Cody 4636e971aa12SJeff Cody assert(reopen_state != NULL); 463750bf65baSVladimir Sementsov-Ogievskiy bs = reopen_state->bs; 463850bf65baSVladimir Sementsov-Ogievskiy drv = bs->drv; 4639e971aa12SJeff Cody assert(drv != NULL); 4640e971aa12SJeff Cody 4641e971aa12SJeff Cody /* If there are any driver level actions to take */ 4642e971aa12SJeff Cody if (drv->bdrv_reopen_commit) { 4643e971aa12SJeff Cody drv->bdrv_reopen_commit(reopen_state); 4644e971aa12SJeff Cody } 4645e971aa12SJeff Cody 4646e971aa12SJeff Cody /* set BDS specific flags now */ 4647cb3e7f08SMarc-André Lureau qobject_unref(bs->explicit_options); 46484c8350feSAlberto Garcia qobject_unref(bs->options); 4649ab5b5228SAlberto Garcia qobject_ref(reopen_state->explicit_options); 4650ab5b5228SAlberto Garcia qobject_ref(reopen_state->options); 4651145f598eSKevin Wolf 465250bf65baSVladimir Sementsov-Ogievskiy bs->explicit_options = reopen_state->explicit_options; 46534c8350feSAlberto Garcia bs->options = reopen_state->options; 465450bf65baSVladimir Sementsov-Ogievskiy bs->open_flags = reopen_state->flags; 4655543770bdSAlberto Garcia bs->detect_zeroes = reopen_state->detect_zeroes; 4656355ef4acSKevin Wolf 465750196d7aSAlberto Garcia /* Remove child references from bs->options and bs->explicit_options. 465850196d7aSAlberto Garcia * Child options were already removed in bdrv_reopen_queue_child() */ 465950196d7aSAlberto Garcia QLIST_FOREACH(child, &bs->children, next) { 466050196d7aSAlberto Garcia qdict_del(bs->explicit_options, child->name); 466150196d7aSAlberto Garcia qdict_del(bs->options, child->name); 466250196d7aSAlberto Garcia } 46633d0e8743SVladimir Sementsov-Ogievskiy /* backing is probably removed, so it's not handled by previous loop */ 46643d0e8743SVladimir Sementsov-Ogievskiy qdict_del(bs->explicit_options, "backing"); 46653d0e8743SVladimir Sementsov-Ogievskiy qdict_del(bs->options, "backing"); 46663d0e8743SVladimir Sementsov-Ogievskiy 46671e4c797cSVladimir Sementsov-Ogievskiy bdrv_refresh_limits(bs, NULL, NULL); 4668e971aa12SJeff Cody } 4669e971aa12SJeff Cody 4670e971aa12SJeff Cody /* 4671e971aa12SJeff Cody * Abort the reopen, and delete and free the staged changes in 4672e971aa12SJeff Cody * reopen_state 4673e971aa12SJeff Cody */ 467453e96d1eSVladimir Sementsov-Ogievskiy static void bdrv_reopen_abort(BDRVReopenState *reopen_state) 4675e971aa12SJeff Cody { 4676e971aa12SJeff Cody BlockDriver *drv; 4677e971aa12SJeff Cody 4678e971aa12SJeff Cody assert(reopen_state != NULL); 4679e971aa12SJeff Cody drv = reopen_state->bs->drv; 4680e971aa12SJeff Cody assert(drv != NULL); 4681e971aa12SJeff Cody 4682e971aa12SJeff Cody if (drv->bdrv_reopen_abort) { 4683e971aa12SJeff Cody drv->bdrv_reopen_abort(reopen_state); 4684e971aa12SJeff Cody } 4685e971aa12SJeff Cody } 4686e971aa12SJeff Cody 4687e971aa12SJeff Cody 468864dff520SMax Reitz static void bdrv_close(BlockDriverState *bs) 4689fc01f7e7Sbellard { 469033384421SMax Reitz BdrvAioNotifier *ban, *ban_next; 469150a3efb0SAlberto Garcia BdrvChild *child, *next; 469233384421SMax Reitz 469330f55fb8SMax Reitz assert(!bs->refcnt); 469499b7e775SAlberto Garcia 4695fc27291dSPaolo Bonzini bdrv_drained_begin(bs); /* complete I/O */ 469658fda173SStefan Hajnoczi bdrv_flush(bs); 469753ec73e2SFam Zheng bdrv_drain(bs); /* in case flush left pending I/O */ 4698fc27291dSPaolo Bonzini 46993cbc002cSPaolo Bonzini if (bs->drv) { 47003c005293SVladimir Sementsov-Ogievskiy if (bs->drv->bdrv_close) { 47017b99a266SMax Reitz /* Must unfreeze all children, so bdrv_unref_child() works */ 47029a7dedbcSKevin Wolf bs->drv->bdrv_close(bs); 47033c005293SVladimir Sementsov-Ogievskiy } 47049a4f4c31SKevin Wolf bs->drv = NULL; 470550a3efb0SAlberto Garcia } 47069a7dedbcSKevin Wolf 47076e93e7c4SKevin Wolf QLIST_FOREACH_SAFE(child, &bs->children, next, next) { 4708dd4118c7SAlberto Garcia bdrv_unref_child(bs, child); 47096e93e7c4SKevin Wolf } 47106e93e7c4SKevin Wolf 4711dd4118c7SAlberto Garcia bs->backing = NULL; 4712dd4118c7SAlberto Garcia bs->file = NULL; 47137267c094SAnthony Liguori g_free(bs->opaque); 4714ea2384d3Sbellard bs->opaque = NULL; 4715d73415a3SStefan Hajnoczi qatomic_set(&bs->copy_on_read, 0); 4716a275fa42SPaolo Bonzini bs->backing_file[0] = '\0'; 4717a275fa42SPaolo Bonzini bs->backing_format[0] = '\0'; 47186405875cSPaolo Bonzini bs->total_sectors = 0; 471954115412SEric Blake bs->encrypted = false; 472054115412SEric Blake bs->sg = false; 4721cb3e7f08SMarc-André Lureau qobject_unref(bs->options); 4722cb3e7f08SMarc-André Lureau qobject_unref(bs->explicit_options); 4723de9c0cecSKevin Wolf bs->options = NULL; 4724998cbd6aSManos Pitsidianakis bs->explicit_options = NULL; 4725cb3e7f08SMarc-André Lureau qobject_unref(bs->full_open_options); 472691af7014SMax Reitz bs->full_open_options = NULL; 47270bc329fbSHanna Reitz g_free(bs->block_status_cache); 47280bc329fbSHanna Reitz bs->block_status_cache = NULL; 472966f82ceeSKevin Wolf 4730cca43ae1SVladimir Sementsov-Ogievskiy bdrv_release_named_dirty_bitmaps(bs); 4731cca43ae1SVladimir Sementsov-Ogievskiy assert(QLIST_EMPTY(&bs->dirty_bitmaps)); 4732cca43ae1SVladimir Sementsov-Ogievskiy 473333384421SMax Reitz QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 473433384421SMax Reitz g_free(ban); 473533384421SMax Reitz } 473633384421SMax Reitz QLIST_INIT(&bs->aio_notifiers); 4737fc27291dSPaolo Bonzini bdrv_drained_end(bs); 47381a6d3bd2SGreg Kurz 47391a6d3bd2SGreg Kurz /* 47401a6d3bd2SGreg Kurz * If we're still inside some bdrv_drain_all_begin()/end() sections, end 47411a6d3bd2SGreg Kurz * them now since this BDS won't exist anymore when bdrv_drain_all_end() 47421a6d3bd2SGreg Kurz * gets called. 47431a6d3bd2SGreg Kurz */ 47441a6d3bd2SGreg Kurz if (bs->quiesce_counter) { 47451a6d3bd2SGreg Kurz bdrv_drain_all_end_quiesce(bs); 47461a6d3bd2SGreg Kurz } 4747b338082bSbellard } 4748b338082bSbellard 47492bc93fedSMORITA Kazutaka void bdrv_close_all(void) 47502bc93fedSMORITA Kazutaka { 4751b3b5299dSKevin Wolf assert(job_next(NULL) == NULL); 47522bc93fedSMORITA Kazutaka 4753ca9bd24cSMax Reitz /* Drop references from requests still in flight, such as canceled block 4754ca9bd24cSMax Reitz * jobs whose AIO context has not been polled yet */ 4755ca9bd24cSMax Reitz bdrv_drain_all(); 4756ca9bd24cSMax Reitz 4757ca9bd24cSMax Reitz blk_remove_all_bs(); 4758ca9bd24cSMax Reitz blockdev_close_all_bdrv_states(); 4759ca9bd24cSMax Reitz 4760a1a2af07SKevin Wolf assert(QTAILQ_EMPTY(&all_bdrv_states)); 47612bc93fedSMORITA Kazutaka } 47622bc93fedSMORITA Kazutaka 4763d0ac0380SKevin Wolf static bool should_update_child(BdrvChild *c, BlockDriverState *to) 4764dd62f1caSKevin Wolf { 47652f30b7c3SVladimir Sementsov-Ogievskiy GQueue *queue; 47662f30b7c3SVladimir Sementsov-Ogievskiy GHashTable *found; 47672f30b7c3SVladimir Sementsov-Ogievskiy bool ret; 4768dd62f1caSKevin Wolf 4769bd86fb99SMax Reitz if (c->klass->stay_at_node) { 4770d0ac0380SKevin Wolf return false; 477126de9438SKevin Wolf } 4772d0ac0380SKevin Wolf 4773ec9f10feSMax Reitz /* If the child @c belongs to the BDS @to, replacing the current 4774ec9f10feSMax Reitz * c->bs by @to would mean to create a loop. 4775ec9f10feSMax Reitz * 4776ec9f10feSMax Reitz * Such a case occurs when appending a BDS to a backing chain. 4777ec9f10feSMax Reitz * For instance, imagine the following chain: 4778ec9f10feSMax Reitz * 4779ec9f10feSMax Reitz * guest device -> node A -> further backing chain... 4780ec9f10feSMax Reitz * 4781ec9f10feSMax Reitz * Now we create a new BDS B which we want to put on top of this 4782ec9f10feSMax Reitz * chain, so we first attach A as its backing node: 4783ec9f10feSMax Reitz * 4784ec9f10feSMax Reitz * node B 4785ec9f10feSMax Reitz * | 4786ec9f10feSMax Reitz * v 4787ec9f10feSMax Reitz * guest device -> node A -> further backing chain... 4788ec9f10feSMax Reitz * 4789ec9f10feSMax Reitz * Finally we want to replace A by B. When doing that, we want to 4790ec9f10feSMax Reitz * replace all pointers to A by pointers to B -- except for the 4791ec9f10feSMax Reitz * pointer from B because (1) that would create a loop, and (2) 4792ec9f10feSMax Reitz * that pointer should simply stay intact: 4793ec9f10feSMax Reitz * 4794ec9f10feSMax Reitz * guest device -> node B 4795ec9f10feSMax Reitz * | 4796ec9f10feSMax Reitz * v 4797ec9f10feSMax Reitz * node A -> further backing chain... 4798ec9f10feSMax Reitz * 4799ec9f10feSMax Reitz * In general, when replacing a node A (c->bs) by a node B (@to), 4800ec9f10feSMax Reitz * if A is a child of B, that means we cannot replace A by B there 4801ec9f10feSMax Reitz * because that would create a loop. Silently detaching A from B 4802ec9f10feSMax Reitz * is also not really an option. So overall just leaving A in 48032f30b7c3SVladimir Sementsov-Ogievskiy * place there is the most sensible choice. 48042f30b7c3SVladimir Sementsov-Ogievskiy * 48052f30b7c3SVladimir Sementsov-Ogievskiy * We would also create a loop in any cases where @c is only 48062f30b7c3SVladimir Sementsov-Ogievskiy * indirectly referenced by @to. Prevent this by returning false 48072f30b7c3SVladimir Sementsov-Ogievskiy * if @c is found (by breadth-first search) anywhere in the whole 48082f30b7c3SVladimir Sementsov-Ogievskiy * subtree of @to. 48092f30b7c3SVladimir Sementsov-Ogievskiy */ 48102f30b7c3SVladimir Sementsov-Ogievskiy 48112f30b7c3SVladimir Sementsov-Ogievskiy ret = true; 48122f30b7c3SVladimir Sementsov-Ogievskiy found = g_hash_table_new(NULL, NULL); 48132f30b7c3SVladimir Sementsov-Ogievskiy g_hash_table_add(found, to); 48142f30b7c3SVladimir Sementsov-Ogievskiy queue = g_queue_new(); 48152f30b7c3SVladimir Sementsov-Ogievskiy g_queue_push_tail(queue, to); 48162f30b7c3SVladimir Sementsov-Ogievskiy 48172f30b7c3SVladimir Sementsov-Ogievskiy while (!g_queue_is_empty(queue)) { 48182f30b7c3SVladimir Sementsov-Ogievskiy BlockDriverState *v = g_queue_pop_head(queue); 48192f30b7c3SVladimir Sementsov-Ogievskiy BdrvChild *c2; 48202f30b7c3SVladimir Sementsov-Ogievskiy 48212f30b7c3SVladimir Sementsov-Ogievskiy QLIST_FOREACH(c2, &v->children, next) { 48222f30b7c3SVladimir Sementsov-Ogievskiy if (c2 == c) { 48232f30b7c3SVladimir Sementsov-Ogievskiy ret = false; 48242f30b7c3SVladimir Sementsov-Ogievskiy break; 48252f30b7c3SVladimir Sementsov-Ogievskiy } 48262f30b7c3SVladimir Sementsov-Ogievskiy 48272f30b7c3SVladimir Sementsov-Ogievskiy if (g_hash_table_contains(found, c2->bs)) { 48282f30b7c3SVladimir Sementsov-Ogievskiy continue; 48292f30b7c3SVladimir Sementsov-Ogievskiy } 48302f30b7c3SVladimir Sementsov-Ogievskiy 48312f30b7c3SVladimir Sementsov-Ogievskiy g_queue_push_tail(queue, c2->bs); 48322f30b7c3SVladimir Sementsov-Ogievskiy g_hash_table_add(found, c2->bs); 48339bd910e2SMax Reitz } 48349bd910e2SMax Reitz } 48359bd910e2SMax Reitz 48362f30b7c3SVladimir Sementsov-Ogievskiy g_queue_free(queue); 48372f30b7c3SVladimir Sementsov-Ogievskiy g_hash_table_destroy(found); 48382f30b7c3SVladimir Sementsov-Ogievskiy 48392f30b7c3SVladimir Sementsov-Ogievskiy return ret; 4840d0ac0380SKevin Wolf } 4841d0ac0380SKevin Wolf 484246541ee5SVladimir Sementsov-Ogievskiy typedef struct BdrvRemoveFilterOrCowChild { 484346541ee5SVladimir Sementsov-Ogievskiy BdrvChild *child; 484446541ee5SVladimir Sementsov-Ogievskiy bool is_backing; 484546541ee5SVladimir Sementsov-Ogievskiy } BdrvRemoveFilterOrCowChild; 484646541ee5SVladimir Sementsov-Ogievskiy 484746541ee5SVladimir Sementsov-Ogievskiy static void bdrv_remove_filter_or_cow_child_abort(void *opaque) 484846541ee5SVladimir Sementsov-Ogievskiy { 484946541ee5SVladimir Sementsov-Ogievskiy BdrvRemoveFilterOrCowChild *s = opaque; 485046541ee5SVladimir Sementsov-Ogievskiy BlockDriverState *parent_bs = s->child->opaque; 485146541ee5SVladimir Sementsov-Ogievskiy 485246541ee5SVladimir Sementsov-Ogievskiy if (s->is_backing) { 485346541ee5SVladimir Sementsov-Ogievskiy parent_bs->backing = s->child; 485446541ee5SVladimir Sementsov-Ogievskiy } else { 485546541ee5SVladimir Sementsov-Ogievskiy parent_bs->file = s->child; 485646541ee5SVladimir Sementsov-Ogievskiy } 485746541ee5SVladimir Sementsov-Ogievskiy 485846541ee5SVladimir Sementsov-Ogievskiy /* 48594bf021dbSVladimir Sementsov-Ogievskiy * We don't have to restore child->bs here to undo bdrv_replace_child_tran() 486046541ee5SVladimir Sementsov-Ogievskiy * because that function is transactionable and it registered own completion 486146541ee5SVladimir Sementsov-Ogievskiy * entries in @tran, so .abort() for bdrv_replace_child_safe() will be 486246541ee5SVladimir Sementsov-Ogievskiy * called automatically. 486346541ee5SVladimir Sementsov-Ogievskiy */ 486446541ee5SVladimir Sementsov-Ogievskiy } 486546541ee5SVladimir Sementsov-Ogievskiy 486646541ee5SVladimir Sementsov-Ogievskiy static void bdrv_remove_filter_or_cow_child_commit(void *opaque) 486746541ee5SVladimir Sementsov-Ogievskiy { 486846541ee5SVladimir Sementsov-Ogievskiy BdrvRemoveFilterOrCowChild *s = opaque; 486946541ee5SVladimir Sementsov-Ogievskiy 487046541ee5SVladimir Sementsov-Ogievskiy bdrv_child_free(s->child); 487146541ee5SVladimir Sementsov-Ogievskiy } 487246541ee5SVladimir Sementsov-Ogievskiy 487346541ee5SVladimir Sementsov-Ogievskiy static TransactionActionDrv bdrv_remove_filter_or_cow_child_drv = { 487446541ee5SVladimir Sementsov-Ogievskiy .abort = bdrv_remove_filter_or_cow_child_abort, 487546541ee5SVladimir Sementsov-Ogievskiy .commit = bdrv_remove_filter_or_cow_child_commit, 487646541ee5SVladimir Sementsov-Ogievskiy .clean = g_free, 487746541ee5SVladimir Sementsov-Ogievskiy }; 487846541ee5SVladimir Sementsov-Ogievskiy 487946541ee5SVladimir Sementsov-Ogievskiy /* 48805b995019SVladimir Sementsov-Ogievskiy * A function to remove backing or file child of @bs. 48817ec390d5SVladimir Sementsov-Ogievskiy * Function doesn't update permissions, caller is responsible for this. 488246541ee5SVladimir Sementsov-Ogievskiy */ 48835b995019SVladimir Sementsov-Ogievskiy static void bdrv_remove_file_or_backing_child(BlockDriverState *bs, 48845b995019SVladimir Sementsov-Ogievskiy BdrvChild *child, 488546541ee5SVladimir Sementsov-Ogievskiy Transaction *tran) 488646541ee5SVladimir Sementsov-Ogievskiy { 488746541ee5SVladimir Sementsov-Ogievskiy BdrvRemoveFilterOrCowChild *s; 48885b995019SVladimir Sementsov-Ogievskiy 48895b995019SVladimir Sementsov-Ogievskiy assert(child == bs->backing || child == bs->file); 489046541ee5SVladimir Sementsov-Ogievskiy 489146541ee5SVladimir Sementsov-Ogievskiy if (!child) { 489246541ee5SVladimir Sementsov-Ogievskiy return; 489346541ee5SVladimir Sementsov-Ogievskiy } 489446541ee5SVladimir Sementsov-Ogievskiy 489546541ee5SVladimir Sementsov-Ogievskiy if (child->bs) { 48964bf021dbSVladimir Sementsov-Ogievskiy bdrv_replace_child_tran(child, NULL, tran); 489746541ee5SVladimir Sementsov-Ogievskiy } 489846541ee5SVladimir Sementsov-Ogievskiy 489946541ee5SVladimir Sementsov-Ogievskiy s = g_new(BdrvRemoveFilterOrCowChild, 1); 490046541ee5SVladimir Sementsov-Ogievskiy *s = (BdrvRemoveFilterOrCowChild) { 490146541ee5SVladimir Sementsov-Ogievskiy .child = child, 490246541ee5SVladimir Sementsov-Ogievskiy .is_backing = (child == bs->backing), 490346541ee5SVladimir Sementsov-Ogievskiy }; 490446541ee5SVladimir Sementsov-Ogievskiy tran_add(tran, &bdrv_remove_filter_or_cow_child_drv, s); 490546541ee5SVladimir Sementsov-Ogievskiy 490646541ee5SVladimir Sementsov-Ogievskiy if (s->is_backing) { 490746541ee5SVladimir Sementsov-Ogievskiy bs->backing = NULL; 490846541ee5SVladimir Sementsov-Ogievskiy } else { 490946541ee5SVladimir Sementsov-Ogievskiy bs->file = NULL; 491046541ee5SVladimir Sementsov-Ogievskiy } 491146541ee5SVladimir Sementsov-Ogievskiy } 491246541ee5SVladimir Sementsov-Ogievskiy 49135b995019SVladimir Sementsov-Ogievskiy /* 49145b995019SVladimir Sementsov-Ogievskiy * A function to remove backing-chain child of @bs if exists: cow child for 49155b995019SVladimir Sementsov-Ogievskiy * format nodes (always .backing) and filter child for filters (may be .file or 49165b995019SVladimir Sementsov-Ogievskiy * .backing) 49175b995019SVladimir Sementsov-Ogievskiy */ 49185b995019SVladimir Sementsov-Ogievskiy static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs, 49195b995019SVladimir Sementsov-Ogievskiy Transaction *tran) 49205b995019SVladimir Sementsov-Ogievskiy { 49215b995019SVladimir Sementsov-Ogievskiy bdrv_remove_file_or_backing_child(bs, bdrv_filter_or_cow_child(bs), tran); 49225b995019SVladimir Sementsov-Ogievskiy } 49235b995019SVladimir Sementsov-Ogievskiy 4924117caba9SVladimir Sementsov-Ogievskiy static int bdrv_replace_node_noperm(BlockDriverState *from, 4925117caba9SVladimir Sementsov-Ogievskiy BlockDriverState *to, 4926117caba9SVladimir Sementsov-Ogievskiy bool auto_skip, Transaction *tran, 4927117caba9SVladimir Sementsov-Ogievskiy Error **errp) 4928117caba9SVladimir Sementsov-Ogievskiy { 4929117caba9SVladimir Sementsov-Ogievskiy BdrvChild *c, *next; 4930117caba9SVladimir Sementsov-Ogievskiy 4931117caba9SVladimir Sementsov-Ogievskiy QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) { 4932117caba9SVladimir Sementsov-Ogievskiy assert(c->bs == from); 4933117caba9SVladimir Sementsov-Ogievskiy if (!should_update_child(c, to)) { 4934117caba9SVladimir Sementsov-Ogievskiy if (auto_skip) { 4935117caba9SVladimir Sementsov-Ogievskiy continue; 4936117caba9SVladimir Sementsov-Ogievskiy } 4937117caba9SVladimir Sementsov-Ogievskiy error_setg(errp, "Should not change '%s' link to '%s'", 4938117caba9SVladimir Sementsov-Ogievskiy c->name, from->node_name); 4939117caba9SVladimir Sementsov-Ogievskiy return -EINVAL; 4940117caba9SVladimir Sementsov-Ogievskiy } 4941117caba9SVladimir Sementsov-Ogievskiy if (c->frozen) { 4942117caba9SVladimir Sementsov-Ogievskiy error_setg(errp, "Cannot change '%s' link to '%s'", 4943117caba9SVladimir Sementsov-Ogievskiy c->name, from->node_name); 4944117caba9SVladimir Sementsov-Ogievskiy return -EPERM; 4945117caba9SVladimir Sementsov-Ogievskiy } 49464bf021dbSVladimir Sementsov-Ogievskiy bdrv_replace_child_tran(c, to, tran); 4947117caba9SVladimir Sementsov-Ogievskiy } 4948117caba9SVladimir Sementsov-Ogievskiy 4949117caba9SVladimir Sementsov-Ogievskiy return 0; 4950117caba9SVladimir Sementsov-Ogievskiy } 4951117caba9SVladimir Sementsov-Ogievskiy 4952313274bbSVladimir Sementsov-Ogievskiy /* 4953313274bbSVladimir Sementsov-Ogievskiy * With auto_skip=true bdrv_replace_node_common skips updating from parents 4954313274bbSVladimir Sementsov-Ogievskiy * if it creates a parent-child relation loop or if parent is block-job. 4955313274bbSVladimir Sementsov-Ogievskiy * 4956313274bbSVladimir Sementsov-Ogievskiy * With auto_skip=false the error is returned if from has a parent which should 4957313274bbSVladimir Sementsov-Ogievskiy * not be updated. 49583108a15cSVladimir Sementsov-Ogievskiy * 49593108a15cSVladimir Sementsov-Ogievskiy * With @detach_subchain=true @to must be in a backing chain of @from. In this 49603108a15cSVladimir Sementsov-Ogievskiy * case backing link of the cow-parent of @to is removed. 4961313274bbSVladimir Sementsov-Ogievskiy */ 4962a1e708fcSVladimir Sementsov-Ogievskiy static int bdrv_replace_node_common(BlockDriverState *from, 4963313274bbSVladimir Sementsov-Ogievskiy BlockDriverState *to, 49643108a15cSVladimir Sementsov-Ogievskiy bool auto_skip, bool detach_subchain, 49653108a15cSVladimir Sementsov-Ogievskiy Error **errp) 4966d0ac0380SKevin Wolf { 49673bb0e298SVladimir Sementsov-Ogievskiy Transaction *tran = tran_new(); 49683bb0e298SVladimir Sementsov-Ogievskiy g_autoptr(GHashTable) found = NULL; 49693bb0e298SVladimir Sementsov-Ogievskiy g_autoptr(GSList) refresh_list = NULL; 49702d369d6eSMiroslav Rezanina BlockDriverState *to_cow_parent = NULL; 4971234ac1a9SKevin Wolf int ret; 4972d0ac0380SKevin Wolf 49733108a15cSVladimir Sementsov-Ogievskiy if (detach_subchain) { 49743108a15cSVladimir Sementsov-Ogievskiy assert(bdrv_chain_contains(from, to)); 49753108a15cSVladimir Sementsov-Ogievskiy assert(from != to); 49763108a15cSVladimir Sementsov-Ogievskiy for (to_cow_parent = from; 49773108a15cSVladimir Sementsov-Ogievskiy bdrv_filter_or_cow_bs(to_cow_parent) != to; 49783108a15cSVladimir Sementsov-Ogievskiy to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent)) 49793108a15cSVladimir Sementsov-Ogievskiy { 49803108a15cSVladimir Sementsov-Ogievskiy ; 49813108a15cSVladimir Sementsov-Ogievskiy } 49823108a15cSVladimir Sementsov-Ogievskiy } 49833108a15cSVladimir Sementsov-Ogievskiy 4984234ac1a9SKevin Wolf /* Make sure that @from doesn't go away until we have successfully attached 4985234ac1a9SKevin Wolf * all of its parents to @to. */ 4986234ac1a9SKevin Wolf bdrv_ref(from); 4987234ac1a9SKevin Wolf 4988f871abd6SKevin Wolf assert(qemu_get_current_aio_context() == qemu_get_aio_context()); 498930dd65f3SKevin Wolf assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to)); 4990f871abd6SKevin Wolf bdrv_drained_begin(from); 4991f871abd6SKevin Wolf 49923bb0e298SVladimir Sementsov-Ogievskiy /* 49933bb0e298SVladimir Sementsov-Ogievskiy * Do the replacement without permission update. 49943bb0e298SVladimir Sementsov-Ogievskiy * Replacement may influence the permissions, we should calculate new 49953bb0e298SVladimir Sementsov-Ogievskiy * permissions based on new graph. If we fail, we'll roll-back the 49963bb0e298SVladimir Sementsov-Ogievskiy * replacement. 49973bb0e298SVladimir Sementsov-Ogievskiy */ 4998117caba9SVladimir Sementsov-Ogievskiy ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp); 4999117caba9SVladimir Sementsov-Ogievskiy if (ret < 0) { 5000313274bbSVladimir Sementsov-Ogievskiy goto out; 5001313274bbSVladimir Sementsov-Ogievskiy } 5002234ac1a9SKevin Wolf 50033108a15cSVladimir Sementsov-Ogievskiy if (detach_subchain) { 50043108a15cSVladimir Sementsov-Ogievskiy bdrv_remove_filter_or_cow_child(to_cow_parent, tran); 50053108a15cSVladimir Sementsov-Ogievskiy } 50063108a15cSVladimir Sementsov-Ogievskiy 50073bb0e298SVladimir Sementsov-Ogievskiy found = g_hash_table_new(NULL, NULL); 50083bb0e298SVladimir Sementsov-Ogievskiy 50093bb0e298SVladimir Sementsov-Ogievskiy refresh_list = bdrv_topological_dfs(refresh_list, found, to); 50103bb0e298SVladimir Sementsov-Ogievskiy refresh_list = bdrv_topological_dfs(refresh_list, found, from); 50113bb0e298SVladimir Sementsov-Ogievskiy 50123bb0e298SVladimir Sementsov-Ogievskiy ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp); 5013234ac1a9SKevin Wolf if (ret < 0) { 5014234ac1a9SKevin Wolf goto out; 5015234ac1a9SKevin Wolf } 5016234ac1a9SKevin Wolf 5017a1e708fcSVladimir Sementsov-Ogievskiy ret = 0; 5018a1e708fcSVladimir Sementsov-Ogievskiy 5019234ac1a9SKevin Wolf out: 50203bb0e298SVladimir Sementsov-Ogievskiy tran_finalize(tran, ret); 50213bb0e298SVladimir Sementsov-Ogievskiy 5022f871abd6SKevin Wolf bdrv_drained_end(from); 5023234ac1a9SKevin Wolf bdrv_unref(from); 5024a1e708fcSVladimir Sementsov-Ogievskiy 5025a1e708fcSVladimir Sementsov-Ogievskiy return ret; 5026dd62f1caSKevin Wolf } 5027dd62f1caSKevin Wolf 5028a1e708fcSVladimir Sementsov-Ogievskiy int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to, 5029313274bbSVladimir Sementsov-Ogievskiy Error **errp) 5030313274bbSVladimir Sementsov-Ogievskiy { 50313108a15cSVladimir Sementsov-Ogievskiy return bdrv_replace_node_common(from, to, true, false, errp); 50323108a15cSVladimir Sementsov-Ogievskiy } 50333108a15cSVladimir Sementsov-Ogievskiy 50343108a15cSVladimir Sementsov-Ogievskiy int bdrv_drop_filter(BlockDriverState *bs, Error **errp) 50353108a15cSVladimir Sementsov-Ogievskiy { 50363108a15cSVladimir Sementsov-Ogievskiy return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true, 50373108a15cSVladimir Sementsov-Ogievskiy errp); 5038313274bbSVladimir Sementsov-Ogievskiy } 5039313274bbSVladimir Sementsov-Ogievskiy 50408802d1fdSJeff Cody /* 50418802d1fdSJeff Cody * Add new bs contents at the top of an image chain while the chain is 50428802d1fdSJeff Cody * live, while keeping required fields on the top layer. 50438802d1fdSJeff Cody * 50448802d1fdSJeff Cody * This will modify the BlockDriverState fields, and swap contents 50458802d1fdSJeff Cody * between bs_new and bs_top. Both bs_new and bs_top are modified. 50468802d1fdSJeff Cody * 50472272edcfSVladimir Sementsov-Ogievskiy * bs_new must not be attached to a BlockBackend and must not have backing 50482272edcfSVladimir Sementsov-Ogievskiy * child. 5049f6801b83SJeff Cody * 50508802d1fdSJeff Cody * This function does not create any image files. 50518802d1fdSJeff Cody */ 5052a1e708fcSVladimir Sementsov-Ogievskiy int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top, 5053b2c2832cSKevin Wolf Error **errp) 50548802d1fdSJeff Cody { 50552272edcfSVladimir Sementsov-Ogievskiy int ret; 50562272edcfSVladimir Sementsov-Ogievskiy Transaction *tran = tran_new(); 50572272edcfSVladimir Sementsov-Ogievskiy 50582272edcfSVladimir Sementsov-Ogievskiy assert(!bs_new->backing); 50592272edcfSVladimir Sementsov-Ogievskiy 50602272edcfSVladimir Sementsov-Ogievskiy ret = bdrv_attach_child_noperm(bs_new, bs_top, "backing", 50612272edcfSVladimir Sementsov-Ogievskiy &child_of_bds, bdrv_backing_role(bs_new), 50622272edcfSVladimir Sementsov-Ogievskiy &bs_new->backing, tran, errp); 5063a1e708fcSVladimir Sementsov-Ogievskiy if (ret < 0) { 50642272edcfSVladimir Sementsov-Ogievskiy goto out; 5065b2c2832cSKevin Wolf } 5066dd62f1caSKevin Wolf 50672272edcfSVladimir Sementsov-Ogievskiy ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp); 5068a1e708fcSVladimir Sementsov-Ogievskiy if (ret < 0) { 50692272edcfSVladimir Sementsov-Ogievskiy goto out; 5070234ac1a9SKevin Wolf } 5071dd62f1caSKevin Wolf 50722272edcfSVladimir Sementsov-Ogievskiy ret = bdrv_refresh_perms(bs_new, errp); 50732272edcfSVladimir Sementsov-Ogievskiy out: 50742272edcfSVladimir Sementsov-Ogievskiy tran_finalize(tran, ret); 50752272edcfSVladimir Sementsov-Ogievskiy 50761e4c797cSVladimir Sementsov-Ogievskiy bdrv_refresh_limits(bs_top, NULL, NULL); 50772272edcfSVladimir Sementsov-Ogievskiy 50782272edcfSVladimir Sementsov-Ogievskiy return ret; 50798802d1fdSJeff Cody } 50808802d1fdSJeff Cody 5081bd8f4c42SVladimir Sementsov-Ogievskiy /* Not for empty child */ 5082bd8f4c42SVladimir Sementsov-Ogievskiy int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs, 5083bd8f4c42SVladimir Sementsov-Ogievskiy Error **errp) 5084bd8f4c42SVladimir Sementsov-Ogievskiy { 5085bd8f4c42SVladimir Sementsov-Ogievskiy int ret; 5086bd8f4c42SVladimir Sementsov-Ogievskiy Transaction *tran = tran_new(); 5087bd8f4c42SVladimir Sementsov-Ogievskiy g_autoptr(GHashTable) found = NULL; 5088bd8f4c42SVladimir Sementsov-Ogievskiy g_autoptr(GSList) refresh_list = NULL; 5089bd8f4c42SVladimir Sementsov-Ogievskiy BlockDriverState *old_bs = child->bs; 5090bd8f4c42SVladimir Sementsov-Ogievskiy 5091bd8f4c42SVladimir Sementsov-Ogievskiy bdrv_ref(old_bs); 5092bd8f4c42SVladimir Sementsov-Ogievskiy bdrv_drained_begin(old_bs); 5093bd8f4c42SVladimir Sementsov-Ogievskiy bdrv_drained_begin(new_bs); 5094bd8f4c42SVladimir Sementsov-Ogievskiy 5095bd8f4c42SVladimir Sementsov-Ogievskiy bdrv_replace_child_tran(child, new_bs, tran); 5096bd8f4c42SVladimir Sementsov-Ogievskiy 5097bd8f4c42SVladimir Sementsov-Ogievskiy found = g_hash_table_new(NULL, NULL); 5098bd8f4c42SVladimir Sementsov-Ogievskiy refresh_list = bdrv_topological_dfs(refresh_list, found, old_bs); 5099bd8f4c42SVladimir Sementsov-Ogievskiy refresh_list = bdrv_topological_dfs(refresh_list, found, new_bs); 5100bd8f4c42SVladimir Sementsov-Ogievskiy 5101bd8f4c42SVladimir Sementsov-Ogievskiy ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp); 5102bd8f4c42SVladimir Sementsov-Ogievskiy 5103bd8f4c42SVladimir Sementsov-Ogievskiy tran_finalize(tran, ret); 5104bd8f4c42SVladimir Sementsov-Ogievskiy 5105bd8f4c42SVladimir Sementsov-Ogievskiy bdrv_drained_end(old_bs); 5106bd8f4c42SVladimir Sementsov-Ogievskiy bdrv_drained_end(new_bs); 5107bd8f4c42SVladimir Sementsov-Ogievskiy bdrv_unref(old_bs); 5108bd8f4c42SVladimir Sementsov-Ogievskiy 5109bd8f4c42SVladimir Sementsov-Ogievskiy return ret; 5110bd8f4c42SVladimir Sementsov-Ogievskiy } 5111bd8f4c42SVladimir Sementsov-Ogievskiy 51124f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs) 5113b338082bSbellard { 51143718d8abSFam Zheng assert(bdrv_op_blocker_is_empty(bs)); 51154f6fd349SFam Zheng assert(!bs->refcnt); 511618846deeSMarkus Armbruster 51171b7bdbc1SStefan Hajnoczi /* remove from list, if necessary */ 511863eaaae0SKevin Wolf if (bs->node_name[0] != '\0') { 511963eaaae0SKevin Wolf QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list); 512063eaaae0SKevin Wolf } 51212c1d04e0SMax Reitz QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list); 51222c1d04e0SMax Reitz 512330c321f9SAnton Kuchin bdrv_close(bs); 512430c321f9SAnton Kuchin 51257267c094SAnthony Liguori g_free(bs); 5126fc01f7e7Sbellard } 5127fc01f7e7Sbellard 512896796faeSVladimir Sementsov-Ogievskiy 512996796faeSVladimir Sementsov-Ogievskiy /* 513096796faeSVladimir Sementsov-Ogievskiy * Replace @bs by newly created block node. 513196796faeSVladimir Sementsov-Ogievskiy * 513296796faeSVladimir Sementsov-Ogievskiy * @options is a QDict of options to pass to the block drivers, or NULL for an 513396796faeSVladimir Sementsov-Ogievskiy * empty set of options. The reference to the QDict belongs to the block layer 513496796faeSVladimir Sementsov-Ogievskiy * after the call (even on failure), so if the caller intends to reuse the 513596796faeSVladimir Sementsov-Ogievskiy * dictionary, it needs to use qobject_ref() before calling bdrv_open. 513696796faeSVladimir Sementsov-Ogievskiy */ 513796796faeSVladimir Sementsov-Ogievskiy BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options, 51388872ef78SAndrey Shinkevich int flags, Error **errp) 51398872ef78SAndrey Shinkevich { 5140f053b7e8SVladimir Sementsov-Ogievskiy ERRP_GUARD(); 5141f053b7e8SVladimir Sementsov-Ogievskiy int ret; 5142b11c8739SVladimir Sementsov-Ogievskiy BlockDriverState *new_node_bs = NULL; 5143b11c8739SVladimir Sementsov-Ogievskiy const char *drvname, *node_name; 5144b11c8739SVladimir Sementsov-Ogievskiy BlockDriver *drv; 51458872ef78SAndrey Shinkevich 5146b11c8739SVladimir Sementsov-Ogievskiy drvname = qdict_get_try_str(options, "driver"); 5147b11c8739SVladimir Sementsov-Ogievskiy if (!drvname) { 5148b11c8739SVladimir Sementsov-Ogievskiy error_setg(errp, "driver is not specified"); 5149b11c8739SVladimir Sementsov-Ogievskiy goto fail; 5150b11c8739SVladimir Sementsov-Ogievskiy } 5151b11c8739SVladimir Sementsov-Ogievskiy 5152b11c8739SVladimir Sementsov-Ogievskiy drv = bdrv_find_format(drvname); 5153b11c8739SVladimir Sementsov-Ogievskiy if (!drv) { 5154b11c8739SVladimir Sementsov-Ogievskiy error_setg(errp, "Unknown driver: '%s'", drvname); 5155b11c8739SVladimir Sementsov-Ogievskiy goto fail; 5156b11c8739SVladimir Sementsov-Ogievskiy } 5157b11c8739SVladimir Sementsov-Ogievskiy 5158b11c8739SVladimir Sementsov-Ogievskiy node_name = qdict_get_try_str(options, "node-name"); 5159b11c8739SVladimir Sementsov-Ogievskiy 5160b11c8739SVladimir Sementsov-Ogievskiy new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags, 5161b11c8739SVladimir Sementsov-Ogievskiy errp); 5162b11c8739SVladimir Sementsov-Ogievskiy options = NULL; /* bdrv_new_open_driver() eats options */ 5163b11c8739SVladimir Sementsov-Ogievskiy if (!new_node_bs) { 51648872ef78SAndrey Shinkevich error_prepend(errp, "Could not create node: "); 5165b11c8739SVladimir Sementsov-Ogievskiy goto fail; 51668872ef78SAndrey Shinkevich } 51678872ef78SAndrey Shinkevich 51688872ef78SAndrey Shinkevich bdrv_drained_begin(bs); 5169f053b7e8SVladimir Sementsov-Ogievskiy ret = bdrv_replace_node(bs, new_node_bs, errp); 51708872ef78SAndrey Shinkevich bdrv_drained_end(bs); 51718872ef78SAndrey Shinkevich 5172f053b7e8SVladimir Sementsov-Ogievskiy if (ret < 0) { 5173f053b7e8SVladimir Sementsov-Ogievskiy error_prepend(errp, "Could not replace node: "); 5174b11c8739SVladimir Sementsov-Ogievskiy goto fail; 51758872ef78SAndrey Shinkevich } 51768872ef78SAndrey Shinkevich 51778872ef78SAndrey Shinkevich return new_node_bs; 5178b11c8739SVladimir Sementsov-Ogievskiy 5179b11c8739SVladimir Sementsov-Ogievskiy fail: 5180b11c8739SVladimir Sementsov-Ogievskiy qobject_unref(options); 5181b11c8739SVladimir Sementsov-Ogievskiy bdrv_unref(new_node_bs); 5182b11c8739SVladimir Sementsov-Ogievskiy return NULL; 51838872ef78SAndrey Shinkevich } 51848872ef78SAndrey Shinkevich 5185e97fc193Saliguori /* 5186e97fc193Saliguori * Run consistency checks on an image 5187e97fc193Saliguori * 5188e076f338SKevin Wolf * Returns 0 if the check could be completed (it doesn't mean that the image is 5189a1c7273bSStefan Weil * free of errors) or -errno when an internal error occurred. The results of the 5190e076f338SKevin Wolf * check are stored in res. 5191e97fc193Saliguori */ 519221c2283eSVladimir Sementsov-Ogievskiy int coroutine_fn bdrv_co_check(BlockDriverState *bs, 51932fd61638SPaolo Bonzini BdrvCheckResult *res, BdrvCheckMode fix) 5194e97fc193Saliguori { 5195908bcd54SMax Reitz if (bs->drv == NULL) { 5196908bcd54SMax Reitz return -ENOMEDIUM; 5197908bcd54SMax Reitz } 51982fd61638SPaolo Bonzini if (bs->drv->bdrv_co_check == NULL) { 5199e97fc193Saliguori return -ENOTSUP; 5200e97fc193Saliguori } 5201e97fc193Saliguori 5202e076f338SKevin Wolf memset(res, 0, sizeof(*res)); 52032fd61638SPaolo Bonzini return bs->drv->bdrv_co_check(bs, res, fix); 52042fd61638SPaolo Bonzini } 52052fd61638SPaolo Bonzini 5206756e6736SKevin Wolf /* 5207756e6736SKevin Wolf * Return values: 5208756e6736SKevin Wolf * 0 - success 5209756e6736SKevin Wolf * -EINVAL - backing format specified, but no file 5210756e6736SKevin Wolf * -ENOSPC - can't update the backing file because no space is left in the 5211756e6736SKevin Wolf * image file header 5212756e6736SKevin Wolf * -ENOTSUP - format driver doesn't support changing the backing file 5213756e6736SKevin Wolf */ 5214e54ee1b3SEric Blake int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file, 5215497a30dbSEric Blake const char *backing_fmt, bool require) 5216756e6736SKevin Wolf { 5217756e6736SKevin Wolf BlockDriver *drv = bs->drv; 5218469ef350SPaolo Bonzini int ret; 5219756e6736SKevin Wolf 5220d470ad42SMax Reitz if (!drv) { 5221d470ad42SMax Reitz return -ENOMEDIUM; 5222d470ad42SMax Reitz } 5223d470ad42SMax Reitz 52245f377794SPaolo Bonzini /* Backing file format doesn't make sense without a backing file */ 52255f377794SPaolo Bonzini if (backing_fmt && !backing_file) { 52265f377794SPaolo Bonzini return -EINVAL; 52275f377794SPaolo Bonzini } 52285f377794SPaolo Bonzini 5229497a30dbSEric Blake if (require && backing_file && !backing_fmt) { 5230497a30dbSEric Blake return -EINVAL; 5231e54ee1b3SEric Blake } 5232e54ee1b3SEric Blake 5233756e6736SKevin Wolf if (drv->bdrv_change_backing_file != NULL) { 5234469ef350SPaolo Bonzini ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); 5235756e6736SKevin Wolf } else { 5236469ef350SPaolo Bonzini ret = -ENOTSUP; 5237756e6736SKevin Wolf } 5238469ef350SPaolo Bonzini 5239469ef350SPaolo Bonzini if (ret == 0) { 5240469ef350SPaolo Bonzini pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); 5241469ef350SPaolo Bonzini pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); 5242998c2019SMax Reitz pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file), 5243998c2019SMax Reitz backing_file ?: ""); 5244469ef350SPaolo Bonzini } 5245469ef350SPaolo Bonzini return ret; 5246756e6736SKevin Wolf } 5247756e6736SKevin Wolf 52486ebdcee2SJeff Cody /* 5249dcf3f9b2SMax Reitz * Finds the first non-filter node above bs in the chain between 5250dcf3f9b2SMax Reitz * active and bs. The returned node is either an immediate parent of 5251dcf3f9b2SMax Reitz * bs, or there are only filter nodes between the two. 52526ebdcee2SJeff Cody * 52536ebdcee2SJeff Cody * Returns NULL if bs is not found in active's image chain, 52546ebdcee2SJeff Cody * or if active == bs. 52554caf0fcdSJeff Cody * 52564caf0fcdSJeff Cody * Returns the bottommost base image if bs == NULL. 52576ebdcee2SJeff Cody */ 52586ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active, 52596ebdcee2SJeff Cody BlockDriverState *bs) 52606ebdcee2SJeff Cody { 5261dcf3f9b2SMax Reitz bs = bdrv_skip_filters(bs); 5262dcf3f9b2SMax Reitz active = bdrv_skip_filters(active); 5263dcf3f9b2SMax Reitz 5264dcf3f9b2SMax Reitz while (active) { 5265dcf3f9b2SMax Reitz BlockDriverState *next = bdrv_backing_chain_next(active); 5266dcf3f9b2SMax Reitz if (bs == next) { 5267dcf3f9b2SMax Reitz return active; 5268dcf3f9b2SMax Reitz } 5269dcf3f9b2SMax Reitz active = next; 52706ebdcee2SJeff Cody } 52716ebdcee2SJeff Cody 5272dcf3f9b2SMax Reitz return NULL; 52736ebdcee2SJeff Cody } 52746ebdcee2SJeff Cody 52754caf0fcdSJeff Cody /* Given a BDS, searches for the base layer. */ 52764caf0fcdSJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs) 52774caf0fcdSJeff Cody { 52784caf0fcdSJeff Cody return bdrv_find_overlay(bs, NULL); 52796ebdcee2SJeff Cody } 52806ebdcee2SJeff Cody 52816ebdcee2SJeff Cody /* 52827b99a266SMax Reitz * Return true if at least one of the COW (backing) and filter links 52837b99a266SMax Reitz * between @bs and @base is frozen. @errp is set if that's the case. 52840f0998f6SAlberto Garcia * @base must be reachable from @bs, or NULL. 52852cad1ebeSAlberto Garcia */ 52862cad1ebeSAlberto Garcia bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base, 52872cad1ebeSAlberto Garcia Error **errp) 52882cad1ebeSAlberto Garcia { 52892cad1ebeSAlberto Garcia BlockDriverState *i; 52907b99a266SMax Reitz BdrvChild *child; 52912cad1ebeSAlberto Garcia 52927b99a266SMax Reitz for (i = bs; i != base; i = child_bs(child)) { 52937b99a266SMax Reitz child = bdrv_filter_or_cow_child(i); 52947b99a266SMax Reitz 52957b99a266SMax Reitz if (child && child->frozen) { 52962cad1ebeSAlberto Garcia error_setg(errp, "Cannot change '%s' link from '%s' to '%s'", 52977b99a266SMax Reitz child->name, i->node_name, child->bs->node_name); 52982cad1ebeSAlberto Garcia return true; 52992cad1ebeSAlberto Garcia } 53002cad1ebeSAlberto Garcia } 53012cad1ebeSAlberto Garcia 53022cad1ebeSAlberto Garcia return false; 53032cad1ebeSAlberto Garcia } 53042cad1ebeSAlberto Garcia 53052cad1ebeSAlberto Garcia /* 53067b99a266SMax Reitz * Freeze all COW (backing) and filter links between @bs and @base. 53072cad1ebeSAlberto Garcia * If any of the links is already frozen the operation is aborted and 53082cad1ebeSAlberto Garcia * none of the links are modified. 53090f0998f6SAlberto Garcia * @base must be reachable from @bs, or NULL. 53102cad1ebeSAlberto Garcia * Returns 0 on success. On failure returns < 0 and sets @errp. 53112cad1ebeSAlberto Garcia */ 53122cad1ebeSAlberto Garcia int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base, 53132cad1ebeSAlberto Garcia Error **errp) 53142cad1ebeSAlberto Garcia { 53152cad1ebeSAlberto Garcia BlockDriverState *i; 53167b99a266SMax Reitz BdrvChild *child; 53172cad1ebeSAlberto Garcia 53182cad1ebeSAlberto Garcia if (bdrv_is_backing_chain_frozen(bs, base, errp)) { 53192cad1ebeSAlberto Garcia return -EPERM; 53202cad1ebeSAlberto Garcia } 53212cad1ebeSAlberto Garcia 53227b99a266SMax Reitz for (i = bs; i != base; i = child_bs(child)) { 53237b99a266SMax Reitz child = bdrv_filter_or_cow_child(i); 53247b99a266SMax Reitz if (child && child->bs->never_freeze) { 5325e5182c1cSMax Reitz error_setg(errp, "Cannot freeze '%s' link to '%s'", 53267b99a266SMax Reitz child->name, child->bs->node_name); 5327e5182c1cSMax Reitz return -EPERM; 5328e5182c1cSMax Reitz } 5329e5182c1cSMax Reitz } 5330e5182c1cSMax Reitz 53317b99a266SMax Reitz for (i = bs; i != base; i = child_bs(child)) { 53327b99a266SMax Reitz child = bdrv_filter_or_cow_child(i); 53337b99a266SMax Reitz if (child) { 53347b99a266SMax Reitz child->frozen = true; 53352cad1ebeSAlberto Garcia } 53360f0998f6SAlberto Garcia } 53372cad1ebeSAlberto Garcia 53382cad1ebeSAlberto Garcia return 0; 53392cad1ebeSAlberto Garcia } 53402cad1ebeSAlberto Garcia 53412cad1ebeSAlberto Garcia /* 53427b99a266SMax Reitz * Unfreeze all COW (backing) and filter links between @bs and @base. 53437b99a266SMax Reitz * The caller must ensure that all links are frozen before using this 53447b99a266SMax Reitz * function. 53450f0998f6SAlberto Garcia * @base must be reachable from @bs, or NULL. 53462cad1ebeSAlberto Garcia */ 53472cad1ebeSAlberto Garcia void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base) 53482cad1ebeSAlberto Garcia { 53492cad1ebeSAlberto Garcia BlockDriverState *i; 53507b99a266SMax Reitz BdrvChild *child; 53512cad1ebeSAlberto Garcia 53527b99a266SMax Reitz for (i = bs; i != base; i = child_bs(child)) { 53537b99a266SMax Reitz child = bdrv_filter_or_cow_child(i); 53547b99a266SMax Reitz if (child) { 53557b99a266SMax Reitz assert(child->frozen); 53567b99a266SMax Reitz child->frozen = false; 53572cad1ebeSAlberto Garcia } 53582cad1ebeSAlberto Garcia } 53590f0998f6SAlberto Garcia } 53602cad1ebeSAlberto Garcia 53612cad1ebeSAlberto Garcia /* 53626ebdcee2SJeff Cody * Drops images above 'base' up to and including 'top', and sets the image 53636ebdcee2SJeff Cody * above 'top' to have base as its backing file. 53646ebdcee2SJeff Cody * 53656ebdcee2SJeff Cody * Requires that the overlay to 'top' is opened r/w, so that the backing file 53666ebdcee2SJeff Cody * information in 'bs' can be properly updated. 53676ebdcee2SJeff Cody * 53686ebdcee2SJeff Cody * E.g., this will convert the following chain: 53696ebdcee2SJeff Cody * bottom <- base <- intermediate <- top <- active 53706ebdcee2SJeff Cody * 53716ebdcee2SJeff Cody * to 53726ebdcee2SJeff Cody * 53736ebdcee2SJeff Cody * bottom <- base <- active 53746ebdcee2SJeff Cody * 53756ebdcee2SJeff Cody * It is allowed for bottom==base, in which case it converts: 53766ebdcee2SJeff Cody * 53776ebdcee2SJeff Cody * base <- intermediate <- top <- active 53786ebdcee2SJeff Cody * 53796ebdcee2SJeff Cody * to 53806ebdcee2SJeff Cody * 53816ebdcee2SJeff Cody * base <- active 53826ebdcee2SJeff Cody * 538354e26900SJeff Cody * If backing_file_str is non-NULL, it will be used when modifying top's 538454e26900SJeff Cody * overlay image metadata. 538554e26900SJeff Cody * 53866ebdcee2SJeff Cody * Error conditions: 53876ebdcee2SJeff Cody * if active == top, that is considered an error 53886ebdcee2SJeff Cody * 53896ebdcee2SJeff Cody */ 5390bde70715SKevin Wolf int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base, 5391bde70715SKevin Wolf const char *backing_file_str) 53926ebdcee2SJeff Cody { 53936bd858b3SAlberto Garcia BlockDriverState *explicit_top = top; 53946bd858b3SAlberto Garcia bool update_inherits_from; 5395d669ed6aSVladimir Sementsov-Ogievskiy BdrvChild *c; 539612fa4af6SKevin Wolf Error *local_err = NULL; 53976ebdcee2SJeff Cody int ret = -EIO; 5398d669ed6aSVladimir Sementsov-Ogievskiy g_autoptr(GSList) updated_children = NULL; 5399d669ed6aSVladimir Sementsov-Ogievskiy GSList *p; 54006ebdcee2SJeff Cody 54016858eba0SKevin Wolf bdrv_ref(top); 5402637d54a5SMax Reitz bdrv_subtree_drained_begin(top); 54036858eba0SKevin Wolf 54046ebdcee2SJeff Cody if (!top->drv || !base->drv) { 54056ebdcee2SJeff Cody goto exit; 54066ebdcee2SJeff Cody } 54076ebdcee2SJeff Cody 54085db15a57SKevin Wolf /* Make sure that base is in the backing chain of top */ 54095db15a57SKevin Wolf if (!bdrv_chain_contains(top, base)) { 54106ebdcee2SJeff Cody goto exit; 54116ebdcee2SJeff Cody } 54126ebdcee2SJeff Cody 54136bd858b3SAlberto Garcia /* If 'base' recursively inherits from 'top' then we should set 54146bd858b3SAlberto Garcia * base->inherits_from to top->inherits_from after 'top' and all 54156bd858b3SAlberto Garcia * other intermediate nodes have been dropped. 54166bd858b3SAlberto Garcia * If 'top' is an implicit node (e.g. "commit_top") we should skip 54176bd858b3SAlberto Garcia * it because no one inherits from it. We use explicit_top for that. */ 5418dcf3f9b2SMax Reitz explicit_top = bdrv_skip_implicit_filters(explicit_top); 54196bd858b3SAlberto Garcia update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top); 54206bd858b3SAlberto Garcia 54216ebdcee2SJeff Cody /* success - we can delete the intermediate states, and link top->base */ 5422bde70715SKevin Wolf /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once 5423bde70715SKevin Wolf * we've figured out how they should work. */ 5424f30c66baSMax Reitz if (!backing_file_str) { 5425f30c66baSMax Reitz bdrv_refresh_filename(base); 5426f30c66baSMax Reitz backing_file_str = base->filename; 5427f30c66baSMax Reitz } 542812fa4af6SKevin Wolf 5429d669ed6aSVladimir Sementsov-Ogievskiy QLIST_FOREACH(c, &top->parents, next_parent) { 5430d669ed6aSVladimir Sementsov-Ogievskiy updated_children = g_slist_prepend(updated_children, c); 5431d669ed6aSVladimir Sementsov-Ogievskiy } 5432d669ed6aSVladimir Sementsov-Ogievskiy 54333108a15cSVladimir Sementsov-Ogievskiy /* 54343108a15cSVladimir Sementsov-Ogievskiy * It seems correct to pass detach_subchain=true here, but it triggers 54353108a15cSVladimir Sementsov-Ogievskiy * one more yet not fixed bug, when due to nested aio_poll loop we switch to 54363108a15cSVladimir Sementsov-Ogievskiy * another drained section, which modify the graph (for example, removing 54373108a15cSVladimir Sementsov-Ogievskiy * the child, which we keep in updated_children list). So, it's a TODO. 54383108a15cSVladimir Sementsov-Ogievskiy * 54393108a15cSVladimir Sementsov-Ogievskiy * Note, bug triggered if pass detach_subchain=true here and run 54403108a15cSVladimir Sementsov-Ogievskiy * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash. 54413108a15cSVladimir Sementsov-Ogievskiy * That's a FIXME. 54423108a15cSVladimir Sementsov-Ogievskiy */ 54433108a15cSVladimir Sementsov-Ogievskiy bdrv_replace_node_common(top, base, false, false, &local_err); 5444d669ed6aSVladimir Sementsov-Ogievskiy if (local_err) { 544512fa4af6SKevin Wolf error_report_err(local_err); 544612fa4af6SKevin Wolf goto exit; 544712fa4af6SKevin Wolf } 544861f09ceaSKevin Wolf 5449d669ed6aSVladimir Sementsov-Ogievskiy for (p = updated_children; p; p = p->next) { 5450d669ed6aSVladimir Sementsov-Ogievskiy c = p->data; 5451d669ed6aSVladimir Sementsov-Ogievskiy 5452bd86fb99SMax Reitz if (c->klass->update_filename) { 5453bd86fb99SMax Reitz ret = c->klass->update_filename(c, base, backing_file_str, 545461f09ceaSKevin Wolf &local_err); 545561f09ceaSKevin Wolf if (ret < 0) { 5456d669ed6aSVladimir Sementsov-Ogievskiy /* 5457d669ed6aSVladimir Sementsov-Ogievskiy * TODO: Actually, we want to rollback all previous iterations 5458d669ed6aSVladimir Sementsov-Ogievskiy * of this loop, and (which is almost impossible) previous 5459d669ed6aSVladimir Sementsov-Ogievskiy * bdrv_replace_node()... 5460d669ed6aSVladimir Sementsov-Ogievskiy * 5461d669ed6aSVladimir Sementsov-Ogievskiy * Note, that c->klass->update_filename may lead to permission 5462d669ed6aSVladimir Sementsov-Ogievskiy * update, so it's a bad idea to call it inside permission 5463d669ed6aSVladimir Sementsov-Ogievskiy * update transaction of bdrv_replace_node. 5464d669ed6aSVladimir Sementsov-Ogievskiy */ 546561f09ceaSKevin Wolf error_report_err(local_err); 546661f09ceaSKevin Wolf goto exit; 546761f09ceaSKevin Wolf } 546861f09ceaSKevin Wolf } 546961f09ceaSKevin Wolf } 54706ebdcee2SJeff Cody 54716bd858b3SAlberto Garcia if (update_inherits_from) { 54726bd858b3SAlberto Garcia base->inherits_from = explicit_top->inherits_from; 54736bd858b3SAlberto Garcia } 54746bd858b3SAlberto Garcia 54756ebdcee2SJeff Cody ret = 0; 54766ebdcee2SJeff Cody exit: 5477637d54a5SMax Reitz bdrv_subtree_drained_end(top); 54786858eba0SKevin Wolf bdrv_unref(top); 54796ebdcee2SJeff Cody return ret; 54806ebdcee2SJeff Cody } 54816ebdcee2SJeff Cody 548283f64091Sbellard /** 5483081e4650SMax Reitz * Implementation of BlockDriver.bdrv_get_allocated_file_size() that 5484081e4650SMax Reitz * sums the size of all data-bearing children. (This excludes backing 5485081e4650SMax Reitz * children.) 5486081e4650SMax Reitz */ 5487081e4650SMax Reitz static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs) 5488081e4650SMax Reitz { 5489081e4650SMax Reitz BdrvChild *child; 5490081e4650SMax Reitz int64_t child_size, sum = 0; 5491081e4650SMax Reitz 5492081e4650SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 5493081e4650SMax Reitz if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA | 5494081e4650SMax Reitz BDRV_CHILD_FILTERED)) 5495081e4650SMax Reitz { 5496081e4650SMax Reitz child_size = bdrv_get_allocated_file_size(child->bs); 5497081e4650SMax Reitz if (child_size < 0) { 5498081e4650SMax Reitz return child_size; 5499081e4650SMax Reitz } 5500081e4650SMax Reitz sum += child_size; 5501081e4650SMax Reitz } 5502081e4650SMax Reitz } 5503081e4650SMax Reitz 5504081e4650SMax Reitz return sum; 5505081e4650SMax Reitz } 5506081e4650SMax Reitz 5507081e4650SMax Reitz /** 55084a1d5e1fSFam Zheng * Length of a allocated file in bytes. Sparse files are counted by actual 55094a1d5e1fSFam Zheng * allocated space. Return < 0 if error or unknown. 55104a1d5e1fSFam Zheng */ 55114a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs) 55124a1d5e1fSFam Zheng { 55134a1d5e1fSFam Zheng BlockDriver *drv = bs->drv; 55144a1d5e1fSFam Zheng if (!drv) { 55154a1d5e1fSFam Zheng return -ENOMEDIUM; 55164a1d5e1fSFam Zheng } 55174a1d5e1fSFam Zheng if (drv->bdrv_get_allocated_file_size) { 55184a1d5e1fSFam Zheng return drv->bdrv_get_allocated_file_size(bs); 55194a1d5e1fSFam Zheng } 5520081e4650SMax Reitz 5521081e4650SMax Reitz if (drv->bdrv_file_open) { 5522081e4650SMax Reitz /* 5523081e4650SMax Reitz * Protocol drivers default to -ENOTSUP (most of their data is 5524081e4650SMax Reitz * not stored in any of their children (if they even have any), 5525081e4650SMax Reitz * so there is no generic way to figure it out). 5526081e4650SMax Reitz */ 55274a1d5e1fSFam Zheng return -ENOTSUP; 5528081e4650SMax Reitz } else if (drv->is_filter) { 5529081e4650SMax Reitz /* Filter drivers default to the size of their filtered child */ 5530081e4650SMax Reitz return bdrv_get_allocated_file_size(bdrv_filter_bs(bs)); 5531081e4650SMax Reitz } else { 5532081e4650SMax Reitz /* Other drivers default to summing their children's sizes */ 5533081e4650SMax Reitz return bdrv_sum_allocated_file_size(bs); 5534081e4650SMax Reitz } 55354a1d5e1fSFam Zheng } 55364a1d5e1fSFam Zheng 553790880ff1SStefan Hajnoczi /* 553890880ff1SStefan Hajnoczi * bdrv_measure: 553990880ff1SStefan Hajnoczi * @drv: Format driver 554090880ff1SStefan Hajnoczi * @opts: Creation options for new image 554190880ff1SStefan Hajnoczi * @in_bs: Existing image containing data for new image (may be NULL) 554290880ff1SStefan Hajnoczi * @errp: Error object 554390880ff1SStefan Hajnoczi * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo()) 554490880ff1SStefan Hajnoczi * or NULL on error 554590880ff1SStefan Hajnoczi * 554690880ff1SStefan Hajnoczi * Calculate file size required to create a new image. 554790880ff1SStefan Hajnoczi * 554890880ff1SStefan Hajnoczi * If @in_bs is given then space for allocated clusters and zero clusters 554990880ff1SStefan Hajnoczi * from that image are included in the calculation. If @opts contains a 555090880ff1SStefan Hajnoczi * backing file that is shared by @in_bs then backing clusters may be omitted 555190880ff1SStefan Hajnoczi * from the calculation. 555290880ff1SStefan Hajnoczi * 555390880ff1SStefan Hajnoczi * If @in_bs is NULL then the calculation includes no allocated clusters 555490880ff1SStefan Hajnoczi * unless a preallocation option is given in @opts. 555590880ff1SStefan Hajnoczi * 555690880ff1SStefan Hajnoczi * Note that @in_bs may use a different BlockDriver from @drv. 555790880ff1SStefan Hajnoczi * 555890880ff1SStefan Hajnoczi * If an error occurs the @errp pointer is set. 555990880ff1SStefan Hajnoczi */ 556090880ff1SStefan Hajnoczi BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts, 556190880ff1SStefan Hajnoczi BlockDriverState *in_bs, Error **errp) 556290880ff1SStefan Hajnoczi { 556390880ff1SStefan Hajnoczi if (!drv->bdrv_measure) { 556490880ff1SStefan Hajnoczi error_setg(errp, "Block driver '%s' does not support size measurement", 556590880ff1SStefan Hajnoczi drv->format_name); 556690880ff1SStefan Hajnoczi return NULL; 556790880ff1SStefan Hajnoczi } 556890880ff1SStefan Hajnoczi 556990880ff1SStefan Hajnoczi return drv->bdrv_measure(opts, in_bs, errp); 557090880ff1SStefan Hajnoczi } 557190880ff1SStefan Hajnoczi 55724a1d5e1fSFam Zheng /** 557365a9bb25SMarkus Armbruster * Return number of sectors on success, -errno on error. 557483f64091Sbellard */ 557565a9bb25SMarkus Armbruster int64_t bdrv_nb_sectors(BlockDriverState *bs) 557683f64091Sbellard { 557783f64091Sbellard BlockDriver *drv = bs->drv; 557865a9bb25SMarkus Armbruster 557983f64091Sbellard if (!drv) 558019cb3738Sbellard return -ENOMEDIUM; 558151762288SStefan Hajnoczi 5582b94a2610SKevin Wolf if (drv->has_variable_length) { 5583b94a2610SKevin Wolf int ret = refresh_total_sectors(bs, bs->total_sectors); 5584b94a2610SKevin Wolf if (ret < 0) { 5585b94a2610SKevin Wolf return ret; 5586fc01f7e7Sbellard } 558746a4e4e6SStefan Hajnoczi } 558865a9bb25SMarkus Armbruster return bs->total_sectors; 558965a9bb25SMarkus Armbruster } 559065a9bb25SMarkus Armbruster 559165a9bb25SMarkus Armbruster /** 559265a9bb25SMarkus Armbruster * Return length in bytes on success, -errno on error. 559365a9bb25SMarkus Armbruster * The length is always a multiple of BDRV_SECTOR_SIZE. 559465a9bb25SMarkus Armbruster */ 559565a9bb25SMarkus Armbruster int64_t bdrv_getlength(BlockDriverState *bs) 559665a9bb25SMarkus Armbruster { 559765a9bb25SMarkus Armbruster int64_t ret = bdrv_nb_sectors(bs); 559865a9bb25SMarkus Armbruster 5599122860baSEric Blake if (ret < 0) { 5600122860baSEric Blake return ret; 5601122860baSEric Blake } 5602122860baSEric Blake if (ret > INT64_MAX / BDRV_SECTOR_SIZE) { 5603122860baSEric Blake return -EFBIG; 5604122860baSEric Blake } 5605122860baSEric Blake return ret * BDRV_SECTOR_SIZE; 560646a4e4e6SStefan Hajnoczi } 5607fc01f7e7Sbellard 560819cb3738Sbellard /* return 0 as number of sectors if no device present or error */ 560996b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) 5610fc01f7e7Sbellard { 561165a9bb25SMarkus Armbruster int64_t nb_sectors = bdrv_nb_sectors(bs); 561265a9bb25SMarkus Armbruster 561365a9bb25SMarkus Armbruster *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors; 5614fc01f7e7Sbellard } 5615cf98951bSbellard 561654115412SEric Blake bool bdrv_is_sg(BlockDriverState *bs) 5617985a03b0Sths { 5618985a03b0Sths return bs->sg; 5619985a03b0Sths } 5620985a03b0Sths 5621ae23f786SMax Reitz /** 5622ae23f786SMax Reitz * Return whether the given node supports compressed writes. 5623ae23f786SMax Reitz */ 5624ae23f786SMax Reitz bool bdrv_supports_compressed_writes(BlockDriverState *bs) 5625ae23f786SMax Reitz { 5626ae23f786SMax Reitz BlockDriverState *filtered; 5627ae23f786SMax Reitz 5628ae23f786SMax Reitz if (!bs->drv || !block_driver_can_compress(bs->drv)) { 5629ae23f786SMax Reitz return false; 5630ae23f786SMax Reitz } 5631ae23f786SMax Reitz 5632ae23f786SMax Reitz filtered = bdrv_filter_bs(bs); 5633ae23f786SMax Reitz if (filtered) { 5634ae23f786SMax Reitz /* 5635ae23f786SMax Reitz * Filters can only forward compressed writes, so we have to 5636ae23f786SMax Reitz * check the child. 5637ae23f786SMax Reitz */ 5638ae23f786SMax Reitz return bdrv_supports_compressed_writes(filtered); 5639ae23f786SMax Reitz } 5640ae23f786SMax Reitz 5641ae23f786SMax Reitz return true; 5642ae23f786SMax Reitz } 5643ae23f786SMax Reitz 5644f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs) 5645ea2384d3Sbellard { 5646f8d6bba1SMarkus Armbruster return bs->drv ? bs->drv->format_name : NULL; 5647ea2384d3Sbellard } 5648ea2384d3Sbellard 5649ada42401SStefan Hajnoczi static int qsort_strcmp(const void *a, const void *b) 5650ada42401SStefan Hajnoczi { 5651ceff5bd7SMax Reitz return strcmp(*(char *const *)a, *(char *const *)b); 5652ada42401SStefan Hajnoczi } 5653ada42401SStefan Hajnoczi 5654ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name), 56559ac404c5SAndrey Shinkevich void *opaque, bool read_only) 5656ea2384d3Sbellard { 5657ea2384d3Sbellard BlockDriver *drv; 5658e855e4fbSJeff Cody int count = 0; 5659ada42401SStefan Hajnoczi int i; 5660e855e4fbSJeff Cody const char **formats = NULL; 5661ea2384d3Sbellard 56628a22f02aSStefan Hajnoczi QLIST_FOREACH(drv, &bdrv_drivers, list) { 5663e855e4fbSJeff Cody if (drv->format_name) { 5664e855e4fbSJeff Cody bool found = false; 5665e855e4fbSJeff Cody int i = count; 56669ac404c5SAndrey Shinkevich 56679ac404c5SAndrey Shinkevich if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) { 56689ac404c5SAndrey Shinkevich continue; 56699ac404c5SAndrey Shinkevich } 56709ac404c5SAndrey Shinkevich 5671e855e4fbSJeff Cody while (formats && i && !found) { 5672e855e4fbSJeff Cody found = !strcmp(formats[--i], drv->format_name); 5673e855e4fbSJeff Cody } 5674e855e4fbSJeff Cody 5675e855e4fbSJeff Cody if (!found) { 56765839e53bSMarkus Armbruster formats = g_renew(const char *, formats, count + 1); 5677e855e4fbSJeff Cody formats[count++] = drv->format_name; 5678ea2384d3Sbellard } 5679ea2384d3Sbellard } 5680e855e4fbSJeff Cody } 5681ada42401SStefan Hajnoczi 5682eb0df69fSMax Reitz for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) { 5683eb0df69fSMax Reitz const char *format_name = block_driver_modules[i].format_name; 5684eb0df69fSMax Reitz 5685eb0df69fSMax Reitz if (format_name) { 5686eb0df69fSMax Reitz bool found = false; 5687eb0df69fSMax Reitz int j = count; 5688eb0df69fSMax Reitz 56899ac404c5SAndrey Shinkevich if (use_bdrv_whitelist && 56909ac404c5SAndrey Shinkevich !bdrv_format_is_whitelisted(format_name, read_only)) { 56919ac404c5SAndrey Shinkevich continue; 56929ac404c5SAndrey Shinkevich } 56939ac404c5SAndrey Shinkevich 5694eb0df69fSMax Reitz while (formats && j && !found) { 5695eb0df69fSMax Reitz found = !strcmp(formats[--j], format_name); 5696eb0df69fSMax Reitz } 5697eb0df69fSMax Reitz 5698eb0df69fSMax Reitz if (!found) { 5699eb0df69fSMax Reitz formats = g_renew(const char *, formats, count + 1); 5700eb0df69fSMax Reitz formats[count++] = format_name; 5701eb0df69fSMax Reitz } 5702eb0df69fSMax Reitz } 5703eb0df69fSMax Reitz } 5704eb0df69fSMax Reitz 5705ada42401SStefan Hajnoczi qsort(formats, count, sizeof(formats[0]), qsort_strcmp); 5706ada42401SStefan Hajnoczi 5707ada42401SStefan Hajnoczi for (i = 0; i < count; i++) { 5708ada42401SStefan Hajnoczi it(opaque, formats[i]); 5709ada42401SStefan Hajnoczi } 5710ada42401SStefan Hajnoczi 5711e855e4fbSJeff Cody g_free(formats); 5712e855e4fbSJeff Cody } 5713ea2384d3Sbellard 5714dc364f4cSBenoît Canet /* This function is to find a node in the bs graph */ 5715dc364f4cSBenoît Canet BlockDriverState *bdrv_find_node(const char *node_name) 5716dc364f4cSBenoît Canet { 5717dc364f4cSBenoît Canet BlockDriverState *bs; 5718dc364f4cSBenoît Canet 5719dc364f4cSBenoît Canet assert(node_name); 5720dc364f4cSBenoît Canet 5721dc364f4cSBenoît Canet QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 5722dc364f4cSBenoît Canet if (!strcmp(node_name, bs->node_name)) { 5723dc364f4cSBenoît Canet return bs; 5724dc364f4cSBenoît Canet } 5725dc364f4cSBenoît Canet } 5726dc364f4cSBenoît Canet return NULL; 5727dc364f4cSBenoît Canet } 5728dc364f4cSBenoît Canet 5729c13163fbSBenoît Canet /* Put this QMP function here so it can access the static graph_bdrv_states. */ 5730facda544SPeter Krempa BlockDeviceInfoList *bdrv_named_nodes_list(bool flat, 5731facda544SPeter Krempa Error **errp) 5732c13163fbSBenoît Canet { 57339812e712SEric Blake BlockDeviceInfoList *list; 5734c13163fbSBenoît Canet BlockDriverState *bs; 5735c13163fbSBenoît Canet 5736c13163fbSBenoît Canet list = NULL; 5737c13163fbSBenoît Canet QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 5738facda544SPeter Krempa BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp); 5739d5a8ee60SAlberto Garcia if (!info) { 5740d5a8ee60SAlberto Garcia qapi_free_BlockDeviceInfoList(list); 5741d5a8ee60SAlberto Garcia return NULL; 5742d5a8ee60SAlberto Garcia } 57439812e712SEric Blake QAPI_LIST_PREPEND(list, info); 5744c13163fbSBenoît Canet } 5745c13163fbSBenoît Canet 5746c13163fbSBenoît Canet return list; 5747c13163fbSBenoît Canet } 5748c13163fbSBenoît Canet 57495d3b4e99SVladimir Sementsov-Ogievskiy typedef struct XDbgBlockGraphConstructor { 57505d3b4e99SVladimir Sementsov-Ogievskiy XDbgBlockGraph *graph; 57515d3b4e99SVladimir Sementsov-Ogievskiy GHashTable *graph_nodes; 57525d3b4e99SVladimir Sementsov-Ogievskiy } XDbgBlockGraphConstructor; 57535d3b4e99SVladimir Sementsov-Ogievskiy 57545d3b4e99SVladimir Sementsov-Ogievskiy static XDbgBlockGraphConstructor *xdbg_graph_new(void) 57555d3b4e99SVladimir Sementsov-Ogievskiy { 57565d3b4e99SVladimir Sementsov-Ogievskiy XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1); 57575d3b4e99SVladimir Sementsov-Ogievskiy 57585d3b4e99SVladimir Sementsov-Ogievskiy gr->graph = g_new0(XDbgBlockGraph, 1); 57595d3b4e99SVladimir Sementsov-Ogievskiy gr->graph_nodes = g_hash_table_new(NULL, NULL); 57605d3b4e99SVladimir Sementsov-Ogievskiy 57615d3b4e99SVladimir Sementsov-Ogievskiy return gr; 57625d3b4e99SVladimir Sementsov-Ogievskiy } 57635d3b4e99SVladimir Sementsov-Ogievskiy 57645d3b4e99SVladimir Sementsov-Ogievskiy static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr) 57655d3b4e99SVladimir Sementsov-Ogievskiy { 57665d3b4e99SVladimir Sementsov-Ogievskiy XDbgBlockGraph *graph = gr->graph; 57675d3b4e99SVladimir Sementsov-Ogievskiy 57685d3b4e99SVladimir Sementsov-Ogievskiy g_hash_table_destroy(gr->graph_nodes); 57695d3b4e99SVladimir Sementsov-Ogievskiy g_free(gr); 57705d3b4e99SVladimir Sementsov-Ogievskiy 57715d3b4e99SVladimir Sementsov-Ogievskiy return graph; 57725d3b4e99SVladimir Sementsov-Ogievskiy } 57735d3b4e99SVladimir Sementsov-Ogievskiy 57745d3b4e99SVladimir Sementsov-Ogievskiy static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node) 57755d3b4e99SVladimir Sementsov-Ogievskiy { 57765d3b4e99SVladimir Sementsov-Ogievskiy uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node); 57775d3b4e99SVladimir Sementsov-Ogievskiy 57785d3b4e99SVladimir Sementsov-Ogievskiy if (ret != 0) { 57795d3b4e99SVladimir Sementsov-Ogievskiy return ret; 57805d3b4e99SVladimir Sementsov-Ogievskiy } 57815d3b4e99SVladimir Sementsov-Ogievskiy 57825d3b4e99SVladimir Sementsov-Ogievskiy /* 57835d3b4e99SVladimir Sementsov-Ogievskiy * Start counting from 1, not 0, because 0 interferes with not-found (NULL) 57845d3b4e99SVladimir Sementsov-Ogievskiy * answer of g_hash_table_lookup. 57855d3b4e99SVladimir Sementsov-Ogievskiy */ 57865d3b4e99SVladimir Sementsov-Ogievskiy ret = g_hash_table_size(gr->graph_nodes) + 1; 57875d3b4e99SVladimir Sementsov-Ogievskiy g_hash_table_insert(gr->graph_nodes, node, (void *)ret); 57885d3b4e99SVladimir Sementsov-Ogievskiy 57895d3b4e99SVladimir Sementsov-Ogievskiy return ret; 57905d3b4e99SVladimir Sementsov-Ogievskiy } 57915d3b4e99SVladimir Sementsov-Ogievskiy 57925d3b4e99SVladimir Sementsov-Ogievskiy static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node, 57935d3b4e99SVladimir Sementsov-Ogievskiy XDbgBlockGraphNodeType type, const char *name) 57945d3b4e99SVladimir Sementsov-Ogievskiy { 57955d3b4e99SVladimir Sementsov-Ogievskiy XDbgBlockGraphNode *n; 57965d3b4e99SVladimir Sementsov-Ogievskiy 57975d3b4e99SVladimir Sementsov-Ogievskiy n = g_new0(XDbgBlockGraphNode, 1); 57985d3b4e99SVladimir Sementsov-Ogievskiy 57995d3b4e99SVladimir Sementsov-Ogievskiy n->id = xdbg_graph_node_num(gr, node); 58005d3b4e99SVladimir Sementsov-Ogievskiy n->type = type; 58015d3b4e99SVladimir Sementsov-Ogievskiy n->name = g_strdup(name); 58025d3b4e99SVladimir Sementsov-Ogievskiy 58039812e712SEric Blake QAPI_LIST_PREPEND(gr->graph->nodes, n); 58045d3b4e99SVladimir Sementsov-Ogievskiy } 58055d3b4e99SVladimir Sementsov-Ogievskiy 58065d3b4e99SVladimir Sementsov-Ogievskiy static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent, 58075d3b4e99SVladimir Sementsov-Ogievskiy const BdrvChild *child) 58085d3b4e99SVladimir Sementsov-Ogievskiy { 5809cdb1cec8SMax Reitz BlockPermission qapi_perm; 58105d3b4e99SVladimir Sementsov-Ogievskiy XDbgBlockGraphEdge *edge; 58115d3b4e99SVladimir Sementsov-Ogievskiy 58125d3b4e99SVladimir Sementsov-Ogievskiy edge = g_new0(XDbgBlockGraphEdge, 1); 58135d3b4e99SVladimir Sementsov-Ogievskiy 58145d3b4e99SVladimir Sementsov-Ogievskiy edge->parent = xdbg_graph_node_num(gr, parent); 58155d3b4e99SVladimir Sementsov-Ogievskiy edge->child = xdbg_graph_node_num(gr, child->bs); 58165d3b4e99SVladimir Sementsov-Ogievskiy edge->name = g_strdup(child->name); 58175d3b4e99SVladimir Sementsov-Ogievskiy 5818cdb1cec8SMax Reitz for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) { 5819cdb1cec8SMax Reitz uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm); 5820cdb1cec8SMax Reitz 5821cdb1cec8SMax Reitz if (flag & child->perm) { 58229812e712SEric Blake QAPI_LIST_PREPEND(edge->perm, qapi_perm); 58235d3b4e99SVladimir Sementsov-Ogievskiy } 5824cdb1cec8SMax Reitz if (flag & child->shared_perm) { 58259812e712SEric Blake QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm); 58265d3b4e99SVladimir Sementsov-Ogievskiy } 58275d3b4e99SVladimir Sementsov-Ogievskiy } 58285d3b4e99SVladimir Sementsov-Ogievskiy 58299812e712SEric Blake QAPI_LIST_PREPEND(gr->graph->edges, edge); 58305d3b4e99SVladimir Sementsov-Ogievskiy } 58315d3b4e99SVladimir Sementsov-Ogievskiy 58325d3b4e99SVladimir Sementsov-Ogievskiy 58335d3b4e99SVladimir Sementsov-Ogievskiy XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp) 58345d3b4e99SVladimir Sementsov-Ogievskiy { 58355d3b4e99SVladimir Sementsov-Ogievskiy BlockBackend *blk; 58365d3b4e99SVladimir Sementsov-Ogievskiy BlockJob *job; 58375d3b4e99SVladimir Sementsov-Ogievskiy BlockDriverState *bs; 58385d3b4e99SVladimir Sementsov-Ogievskiy BdrvChild *child; 58395d3b4e99SVladimir Sementsov-Ogievskiy XDbgBlockGraphConstructor *gr = xdbg_graph_new(); 58405d3b4e99SVladimir Sementsov-Ogievskiy 58415d3b4e99SVladimir Sementsov-Ogievskiy for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) { 58425d3b4e99SVladimir Sementsov-Ogievskiy char *allocated_name = NULL; 58435d3b4e99SVladimir Sementsov-Ogievskiy const char *name = blk_name(blk); 58445d3b4e99SVladimir Sementsov-Ogievskiy 58455d3b4e99SVladimir Sementsov-Ogievskiy if (!*name) { 58465d3b4e99SVladimir Sementsov-Ogievskiy name = allocated_name = blk_get_attached_dev_id(blk); 58475d3b4e99SVladimir Sementsov-Ogievskiy } 58485d3b4e99SVladimir Sementsov-Ogievskiy xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND, 58495d3b4e99SVladimir Sementsov-Ogievskiy name); 58505d3b4e99SVladimir Sementsov-Ogievskiy g_free(allocated_name); 58515d3b4e99SVladimir Sementsov-Ogievskiy if (blk_root(blk)) { 58525d3b4e99SVladimir Sementsov-Ogievskiy xdbg_graph_add_edge(gr, blk, blk_root(blk)); 58535d3b4e99SVladimir Sementsov-Ogievskiy } 58545d3b4e99SVladimir Sementsov-Ogievskiy } 58555d3b4e99SVladimir Sementsov-Ogievskiy 58565d3b4e99SVladimir Sementsov-Ogievskiy for (job = block_job_next(NULL); job; job = block_job_next(job)) { 58575d3b4e99SVladimir Sementsov-Ogievskiy GSList *el; 58585d3b4e99SVladimir Sementsov-Ogievskiy 58595d3b4e99SVladimir Sementsov-Ogievskiy xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB, 58605d3b4e99SVladimir Sementsov-Ogievskiy job->job.id); 58615d3b4e99SVladimir Sementsov-Ogievskiy for (el = job->nodes; el; el = el->next) { 58625d3b4e99SVladimir Sementsov-Ogievskiy xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data); 58635d3b4e99SVladimir Sementsov-Ogievskiy } 58645d3b4e99SVladimir Sementsov-Ogievskiy } 58655d3b4e99SVladimir Sementsov-Ogievskiy 58665d3b4e99SVladimir Sementsov-Ogievskiy QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 58675d3b4e99SVladimir Sementsov-Ogievskiy xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER, 58685d3b4e99SVladimir Sementsov-Ogievskiy bs->node_name); 58695d3b4e99SVladimir Sementsov-Ogievskiy QLIST_FOREACH(child, &bs->children, next) { 58705d3b4e99SVladimir Sementsov-Ogievskiy xdbg_graph_add_edge(gr, bs, child); 58715d3b4e99SVladimir Sementsov-Ogievskiy } 58725d3b4e99SVladimir Sementsov-Ogievskiy } 58735d3b4e99SVladimir Sementsov-Ogievskiy 58745d3b4e99SVladimir Sementsov-Ogievskiy return xdbg_graph_finalize(gr); 58755d3b4e99SVladimir Sementsov-Ogievskiy } 58765d3b4e99SVladimir Sementsov-Ogievskiy 587712d3ba82SBenoît Canet BlockDriverState *bdrv_lookup_bs(const char *device, 587812d3ba82SBenoît Canet const char *node_name, 587912d3ba82SBenoît Canet Error **errp) 588012d3ba82SBenoît Canet { 58817f06d47eSMarkus Armbruster BlockBackend *blk; 58827f06d47eSMarkus Armbruster BlockDriverState *bs; 588312d3ba82SBenoît Canet 588412d3ba82SBenoît Canet if (device) { 58857f06d47eSMarkus Armbruster blk = blk_by_name(device); 588612d3ba82SBenoît Canet 58877f06d47eSMarkus Armbruster if (blk) { 58889f4ed6fbSAlberto Garcia bs = blk_bs(blk); 58899f4ed6fbSAlberto Garcia if (!bs) { 58905433c24fSMax Reitz error_setg(errp, "Device '%s' has no medium", device); 58915433c24fSMax Reitz } 58925433c24fSMax Reitz 58939f4ed6fbSAlberto Garcia return bs; 589412d3ba82SBenoît Canet } 5895dd67fa50SBenoît Canet } 589612d3ba82SBenoît Canet 5897dd67fa50SBenoît Canet if (node_name) { 589812d3ba82SBenoît Canet bs = bdrv_find_node(node_name); 589912d3ba82SBenoît Canet 5900dd67fa50SBenoît Canet if (bs) { 5901dd67fa50SBenoît Canet return bs; 5902dd67fa50SBenoît Canet } 590312d3ba82SBenoît Canet } 590412d3ba82SBenoît Canet 5905785ec4b1SConnor Kuehl error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'", 5906dd67fa50SBenoît Canet device ? device : "", 5907dd67fa50SBenoît Canet node_name ? node_name : ""); 5908dd67fa50SBenoît Canet return NULL; 590912d3ba82SBenoît Canet } 591012d3ba82SBenoît Canet 59115a6684d2SJeff Cody /* If 'base' is in the same chain as 'top', return true. Otherwise, 59125a6684d2SJeff Cody * return false. If either argument is NULL, return false. */ 59135a6684d2SJeff Cody bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base) 59145a6684d2SJeff Cody { 59155a6684d2SJeff Cody while (top && top != base) { 5916dcf3f9b2SMax Reitz top = bdrv_filter_or_cow_bs(top); 59175a6684d2SJeff Cody } 59185a6684d2SJeff Cody 59195a6684d2SJeff Cody return top != NULL; 59205a6684d2SJeff Cody } 59215a6684d2SJeff Cody 592204df765aSFam Zheng BlockDriverState *bdrv_next_node(BlockDriverState *bs) 592304df765aSFam Zheng { 592404df765aSFam Zheng if (!bs) { 592504df765aSFam Zheng return QTAILQ_FIRST(&graph_bdrv_states); 592604df765aSFam Zheng } 592704df765aSFam Zheng return QTAILQ_NEXT(bs, node_list); 592804df765aSFam Zheng } 592904df765aSFam Zheng 59300f12264eSKevin Wolf BlockDriverState *bdrv_next_all_states(BlockDriverState *bs) 59310f12264eSKevin Wolf { 59320f12264eSKevin Wolf if (!bs) { 59330f12264eSKevin Wolf return QTAILQ_FIRST(&all_bdrv_states); 59340f12264eSKevin Wolf } 59350f12264eSKevin Wolf return QTAILQ_NEXT(bs, bs_list); 59360f12264eSKevin Wolf } 59370f12264eSKevin Wolf 593820a9e77dSFam Zheng const char *bdrv_get_node_name(const BlockDriverState *bs) 593920a9e77dSFam Zheng { 594020a9e77dSFam Zheng return bs->node_name; 594120a9e77dSFam Zheng } 594220a9e77dSFam Zheng 59431f0c461bSKevin Wolf const char *bdrv_get_parent_name(const BlockDriverState *bs) 59444c265bf9SKevin Wolf { 59454c265bf9SKevin Wolf BdrvChild *c; 59464c265bf9SKevin Wolf const char *name; 59474c265bf9SKevin Wolf 59484c265bf9SKevin Wolf /* If multiple parents have a name, just pick the first one. */ 59494c265bf9SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 5950bd86fb99SMax Reitz if (c->klass->get_name) { 5951bd86fb99SMax Reitz name = c->klass->get_name(c); 59524c265bf9SKevin Wolf if (name && *name) { 59534c265bf9SKevin Wolf return name; 59544c265bf9SKevin Wolf } 59554c265bf9SKevin Wolf } 59564c265bf9SKevin Wolf } 59574c265bf9SKevin Wolf 59584c265bf9SKevin Wolf return NULL; 59594c265bf9SKevin Wolf } 59604c265bf9SKevin Wolf 59617f06d47eSMarkus Armbruster /* TODO check what callers really want: bs->node_name or blk_name() */ 5962bfb197e0SMarkus Armbruster const char *bdrv_get_device_name(const BlockDriverState *bs) 5963ea2384d3Sbellard { 59644c265bf9SKevin Wolf return bdrv_get_parent_name(bs) ?: ""; 5965ea2384d3Sbellard } 5966ea2384d3Sbellard 59679b2aa84fSAlberto Garcia /* This can be used to identify nodes that might not have a device 59689b2aa84fSAlberto Garcia * name associated. Since node and device names live in the same 59699b2aa84fSAlberto Garcia * namespace, the result is unambiguous. The exception is if both are 59709b2aa84fSAlberto Garcia * absent, then this returns an empty (non-null) string. */ 59719b2aa84fSAlberto Garcia const char *bdrv_get_device_or_node_name(const BlockDriverState *bs) 59729b2aa84fSAlberto Garcia { 59734c265bf9SKevin Wolf return bdrv_get_parent_name(bs) ?: bs->node_name; 59749b2aa84fSAlberto Garcia } 59759b2aa84fSAlberto Garcia 5976c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs) 5977c8433287SMarkus Armbruster { 5978c8433287SMarkus Armbruster return bs->open_flags; 5979c8433287SMarkus Armbruster } 5980c8433287SMarkus Armbruster 59813ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs) 59823ac21627SPeter Lieven { 59833ac21627SPeter Lieven return 1; 59843ac21627SPeter Lieven } 59853ac21627SPeter Lieven 5986f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs) 5987f2feebbdSKevin Wolf { 598893393e69SMax Reitz BlockDriverState *filtered; 598993393e69SMax Reitz 5990d470ad42SMax Reitz if (!bs->drv) { 5991d470ad42SMax Reitz return 0; 5992d470ad42SMax Reitz } 5993f2feebbdSKevin Wolf 599411212d8fSPaolo Bonzini /* If BS is a copy on write image, it is initialized to 599511212d8fSPaolo Bonzini the contents of the base image, which may not be zeroes. */ 599634778172SMax Reitz if (bdrv_cow_child(bs)) { 599711212d8fSPaolo Bonzini return 0; 599811212d8fSPaolo Bonzini } 5999336c1c12SKevin Wolf if (bs->drv->bdrv_has_zero_init) { 6000336c1c12SKevin Wolf return bs->drv->bdrv_has_zero_init(bs); 6001f2feebbdSKevin Wolf } 600293393e69SMax Reitz 600393393e69SMax Reitz filtered = bdrv_filter_bs(bs); 600493393e69SMax Reitz if (filtered) { 600593393e69SMax Reitz return bdrv_has_zero_init(filtered); 60065a612c00SManos Pitsidianakis } 6007f2feebbdSKevin Wolf 60083ac21627SPeter Lieven /* safe default */ 60093ac21627SPeter Lieven return 0; 6010f2feebbdSKevin Wolf } 6011f2feebbdSKevin Wolf 60124ce78691SPeter Lieven bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs) 60134ce78691SPeter Lieven { 60142f0342efSDenis V. Lunev if (!(bs->open_flags & BDRV_O_UNMAP)) { 60154ce78691SPeter Lieven return false; 60164ce78691SPeter Lieven } 60174ce78691SPeter Lieven 6018e24d813bSEric Blake return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP; 60194ce78691SPeter Lieven } 60204ce78691SPeter Lieven 602183f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs, 602283f64091Sbellard char *filename, int filename_size) 602383f64091Sbellard { 602483f64091Sbellard pstrcpy(filename, filename_size, bs->backing_file); 602583f64091Sbellard } 602683f64091Sbellard 6027faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) 6028faea38e7Sbellard { 60298b117001SVladimir Sementsov-Ogievskiy int ret; 6030faea38e7Sbellard BlockDriver *drv = bs->drv; 60315a612c00SManos Pitsidianakis /* if bs->drv == NULL, bs is closed, so there's nothing to do here */ 60325a612c00SManos Pitsidianakis if (!drv) { 603319cb3738Sbellard return -ENOMEDIUM; 60345a612c00SManos Pitsidianakis } 60355a612c00SManos Pitsidianakis if (!drv->bdrv_get_info) { 603693393e69SMax Reitz BlockDriverState *filtered = bdrv_filter_bs(bs); 603793393e69SMax Reitz if (filtered) { 603893393e69SMax Reitz return bdrv_get_info(filtered, bdi); 60395a612c00SManos Pitsidianakis } 6040faea38e7Sbellard return -ENOTSUP; 60415a612c00SManos Pitsidianakis } 6042faea38e7Sbellard memset(bdi, 0, sizeof(*bdi)); 60438b117001SVladimir Sementsov-Ogievskiy ret = drv->bdrv_get_info(bs, bdi); 60448b117001SVladimir Sementsov-Ogievskiy if (ret < 0) { 60458b117001SVladimir Sementsov-Ogievskiy return ret; 60468b117001SVladimir Sementsov-Ogievskiy } 60478b117001SVladimir Sementsov-Ogievskiy 60488b117001SVladimir Sementsov-Ogievskiy if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) { 60498b117001SVladimir Sementsov-Ogievskiy return -EINVAL; 60508b117001SVladimir Sementsov-Ogievskiy } 60518b117001SVladimir Sementsov-Ogievskiy 60528b117001SVladimir Sementsov-Ogievskiy return 0; 6053faea38e7Sbellard } 6054faea38e7Sbellard 60551bf6e9caSAndrey Shinkevich ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs, 60561bf6e9caSAndrey Shinkevich Error **errp) 6057eae041feSMax Reitz { 6058eae041feSMax Reitz BlockDriver *drv = bs->drv; 6059eae041feSMax Reitz if (drv && drv->bdrv_get_specific_info) { 60601bf6e9caSAndrey Shinkevich return drv->bdrv_get_specific_info(bs, errp); 6061eae041feSMax Reitz } 6062eae041feSMax Reitz return NULL; 6063eae041feSMax Reitz } 6064eae041feSMax Reitz 6065d9245599SAnton Nefedov BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs) 6066d9245599SAnton Nefedov { 6067d9245599SAnton Nefedov BlockDriver *drv = bs->drv; 6068d9245599SAnton Nefedov if (!drv || !drv->bdrv_get_specific_stats) { 6069d9245599SAnton Nefedov return NULL; 6070d9245599SAnton Nefedov } 6071d9245599SAnton Nefedov return drv->bdrv_get_specific_stats(bs); 6072d9245599SAnton Nefedov } 6073d9245599SAnton Nefedov 6074a31939e6SEric Blake void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event) 60758b9b0cc2SKevin Wolf { 6076bf736fe3SKevin Wolf if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) { 60778b9b0cc2SKevin Wolf return; 60788b9b0cc2SKevin Wolf } 60798b9b0cc2SKevin Wolf 6080bf736fe3SKevin Wolf bs->drv->bdrv_debug_event(bs, event); 608141c695c7SKevin Wolf } 60828b9b0cc2SKevin Wolf 6083d10529a2SVladimir Sementsov-Ogievskiy static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs) 608441c695c7SKevin Wolf { 608541c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { 6086f706a92fSMax Reitz bs = bdrv_primary_bs(bs); 608741c695c7SKevin Wolf } 608841c695c7SKevin Wolf 608941c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { 6090d10529a2SVladimir Sementsov-Ogievskiy assert(bs->drv->bdrv_debug_remove_breakpoint); 6091d10529a2SVladimir Sementsov-Ogievskiy return bs; 6092d10529a2SVladimir Sementsov-Ogievskiy } 6093d10529a2SVladimir Sementsov-Ogievskiy 6094d10529a2SVladimir Sementsov-Ogievskiy return NULL; 6095d10529a2SVladimir Sementsov-Ogievskiy } 6096d10529a2SVladimir Sementsov-Ogievskiy 6097d10529a2SVladimir Sementsov-Ogievskiy int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, 6098d10529a2SVladimir Sementsov-Ogievskiy const char *tag) 6099d10529a2SVladimir Sementsov-Ogievskiy { 6100d10529a2SVladimir Sementsov-Ogievskiy bs = bdrv_find_debug_node(bs); 6101d10529a2SVladimir Sementsov-Ogievskiy if (bs) { 610241c695c7SKevin Wolf return bs->drv->bdrv_debug_breakpoint(bs, event, tag); 610341c695c7SKevin Wolf } 610441c695c7SKevin Wolf 610541c695c7SKevin Wolf return -ENOTSUP; 610641c695c7SKevin Wolf } 610741c695c7SKevin Wolf 61084cc70e93SFam Zheng int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag) 61094cc70e93SFam Zheng { 6110d10529a2SVladimir Sementsov-Ogievskiy bs = bdrv_find_debug_node(bs); 6111d10529a2SVladimir Sementsov-Ogievskiy if (bs) { 61124cc70e93SFam Zheng return bs->drv->bdrv_debug_remove_breakpoint(bs, tag); 61134cc70e93SFam Zheng } 61144cc70e93SFam Zheng 61154cc70e93SFam Zheng return -ENOTSUP; 61164cc70e93SFam Zheng } 61174cc70e93SFam Zheng 611841c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag) 611941c695c7SKevin Wolf { 6120938789eaSMax Reitz while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) { 6121f706a92fSMax Reitz bs = bdrv_primary_bs(bs); 612241c695c7SKevin Wolf } 612341c695c7SKevin Wolf 612441c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_resume) { 612541c695c7SKevin Wolf return bs->drv->bdrv_debug_resume(bs, tag); 612641c695c7SKevin Wolf } 612741c695c7SKevin Wolf 612841c695c7SKevin Wolf return -ENOTSUP; 612941c695c7SKevin Wolf } 613041c695c7SKevin Wolf 613141c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) 613241c695c7SKevin Wolf { 613341c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { 6134f706a92fSMax Reitz bs = bdrv_primary_bs(bs); 613541c695c7SKevin Wolf } 613641c695c7SKevin Wolf 613741c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { 613841c695c7SKevin Wolf return bs->drv->bdrv_debug_is_suspended(bs, tag); 613941c695c7SKevin Wolf } 614041c695c7SKevin Wolf 614141c695c7SKevin Wolf return false; 61428b9b0cc2SKevin Wolf } 61438b9b0cc2SKevin Wolf 6144b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol. If it is 6145b1b1d783SJeff Cody * relative, it must be relative to the chain. So, passing in bs->filename 6146b1b1d783SJeff Cody * from a BDS as backing_file should not be done, as that may be relative to 6147b1b1d783SJeff Cody * the CWD rather than the chain. */ 6148e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, 6149e8a6bb9cSMarcelo Tosatti const char *backing_file) 6150e8a6bb9cSMarcelo Tosatti { 6151b1b1d783SJeff Cody char *filename_full = NULL; 6152b1b1d783SJeff Cody char *backing_file_full = NULL; 6153b1b1d783SJeff Cody char *filename_tmp = NULL; 6154b1b1d783SJeff Cody int is_protocol = 0; 61550b877d09SMax Reitz bool filenames_refreshed = false; 6156b1b1d783SJeff Cody BlockDriverState *curr_bs = NULL; 6157b1b1d783SJeff Cody BlockDriverState *retval = NULL; 6158dcf3f9b2SMax Reitz BlockDriverState *bs_below; 6159b1b1d783SJeff Cody 6160b1b1d783SJeff Cody if (!bs || !bs->drv || !backing_file) { 6161e8a6bb9cSMarcelo Tosatti return NULL; 6162e8a6bb9cSMarcelo Tosatti } 6163e8a6bb9cSMarcelo Tosatti 6164b1b1d783SJeff Cody filename_full = g_malloc(PATH_MAX); 6165b1b1d783SJeff Cody backing_file_full = g_malloc(PATH_MAX); 6166b1b1d783SJeff Cody 6167b1b1d783SJeff Cody is_protocol = path_has_protocol(backing_file); 6168b1b1d783SJeff Cody 6169dcf3f9b2SMax Reitz /* 6170dcf3f9b2SMax Reitz * Being largely a legacy function, skip any filters here 6171dcf3f9b2SMax Reitz * (because filters do not have normal filenames, so they cannot 6172dcf3f9b2SMax Reitz * match anyway; and allowing json:{} filenames is a bit out of 6173dcf3f9b2SMax Reitz * scope). 6174dcf3f9b2SMax Reitz */ 6175dcf3f9b2SMax Reitz for (curr_bs = bdrv_skip_filters(bs); 6176dcf3f9b2SMax Reitz bdrv_cow_child(curr_bs) != NULL; 6177dcf3f9b2SMax Reitz curr_bs = bs_below) 6178dcf3f9b2SMax Reitz { 6179dcf3f9b2SMax Reitz bs_below = bdrv_backing_chain_next(curr_bs); 6180b1b1d783SJeff Cody 61810b877d09SMax Reitz if (bdrv_backing_overridden(curr_bs)) { 61820b877d09SMax Reitz /* 61830b877d09SMax Reitz * If the backing file was overridden, we can only compare 61840b877d09SMax Reitz * directly against the backing node's filename. 61850b877d09SMax Reitz */ 61860b877d09SMax Reitz 61870b877d09SMax Reitz if (!filenames_refreshed) { 61880b877d09SMax Reitz /* 61890b877d09SMax Reitz * This will automatically refresh all of the 61900b877d09SMax Reitz * filenames in the rest of the backing chain, so we 61910b877d09SMax Reitz * only need to do this once. 61920b877d09SMax Reitz */ 61930b877d09SMax Reitz bdrv_refresh_filename(bs_below); 61940b877d09SMax Reitz filenames_refreshed = true; 61950b877d09SMax Reitz } 61960b877d09SMax Reitz 61970b877d09SMax Reitz if (strcmp(backing_file, bs_below->filename) == 0) { 61980b877d09SMax Reitz retval = bs_below; 61990b877d09SMax Reitz break; 62000b877d09SMax Reitz } 62010b877d09SMax Reitz } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) { 62020b877d09SMax Reitz /* 62030b877d09SMax Reitz * If either of the filename paths is actually a protocol, then 62040b877d09SMax Reitz * compare unmodified paths; otherwise make paths relative. 62050b877d09SMax Reitz */ 62066b6833c1SMax Reitz char *backing_file_full_ret; 62076b6833c1SMax Reitz 6208b1b1d783SJeff Cody if (strcmp(backing_file, curr_bs->backing_file) == 0) { 6209dcf3f9b2SMax Reitz retval = bs_below; 6210b1b1d783SJeff Cody break; 6211b1b1d783SJeff Cody } 6212418661e0SJeff Cody /* Also check against the full backing filename for the image */ 62136b6833c1SMax Reitz backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs, 62146b6833c1SMax Reitz NULL); 62156b6833c1SMax Reitz if (backing_file_full_ret) { 62166b6833c1SMax Reitz bool equal = strcmp(backing_file, backing_file_full_ret) == 0; 62176b6833c1SMax Reitz g_free(backing_file_full_ret); 62186b6833c1SMax Reitz if (equal) { 6219dcf3f9b2SMax Reitz retval = bs_below; 6220418661e0SJeff Cody break; 6221418661e0SJeff Cody } 6222418661e0SJeff Cody } 6223e8a6bb9cSMarcelo Tosatti } else { 6224b1b1d783SJeff Cody /* If not an absolute filename path, make it relative to the current 6225b1b1d783SJeff Cody * image's filename path */ 62262d9158ceSMax Reitz filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file, 62272d9158ceSMax Reitz NULL); 62282d9158ceSMax Reitz /* We are going to compare canonicalized absolute pathnames */ 62292d9158ceSMax Reitz if (!filename_tmp || !realpath(filename_tmp, filename_full)) { 62302d9158ceSMax Reitz g_free(filename_tmp); 6231b1b1d783SJeff Cody continue; 6232b1b1d783SJeff Cody } 62332d9158ceSMax Reitz g_free(filename_tmp); 6234b1b1d783SJeff Cody 6235b1b1d783SJeff Cody /* We need to make sure the backing filename we are comparing against 6236b1b1d783SJeff Cody * is relative to the current image filename (or absolute) */ 62372d9158ceSMax Reitz filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL); 62382d9158ceSMax Reitz if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) { 62392d9158ceSMax Reitz g_free(filename_tmp); 6240b1b1d783SJeff Cody continue; 6241b1b1d783SJeff Cody } 62422d9158ceSMax Reitz g_free(filename_tmp); 6243b1b1d783SJeff Cody 6244b1b1d783SJeff Cody if (strcmp(backing_file_full, filename_full) == 0) { 6245dcf3f9b2SMax Reitz retval = bs_below; 6246b1b1d783SJeff Cody break; 6247b1b1d783SJeff Cody } 6248e8a6bb9cSMarcelo Tosatti } 6249e8a6bb9cSMarcelo Tosatti } 6250e8a6bb9cSMarcelo Tosatti 6251b1b1d783SJeff Cody g_free(filename_full); 6252b1b1d783SJeff Cody g_free(backing_file_full); 6253b1b1d783SJeff Cody return retval; 6254e8a6bb9cSMarcelo Tosatti } 6255e8a6bb9cSMarcelo Tosatti 6256ea2384d3Sbellard void bdrv_init(void) 6257ea2384d3Sbellard { 6258e5f05f8cSKevin Wolf #ifdef CONFIG_BDRV_WHITELIST_TOOLS 6259e5f05f8cSKevin Wolf use_bdrv_whitelist = 1; 6260e5f05f8cSKevin Wolf #endif 62615efa9d5aSAnthony Liguori module_call_init(MODULE_INIT_BLOCK); 6262ea2384d3Sbellard } 6263ce1a14dcSpbrook 6264eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void) 6265eb852011SMarkus Armbruster { 6266eb852011SMarkus Armbruster use_bdrv_whitelist = 1; 6267eb852011SMarkus Armbruster bdrv_init(); 6268eb852011SMarkus Armbruster } 6269eb852011SMarkus Armbruster 627021c2283eSVladimir Sementsov-Ogievskiy int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp) 62710f15423cSAnthony Liguori { 62724417ab7aSKevin Wolf BdrvChild *child, *parent; 62735a8a30dbSKevin Wolf Error *local_err = NULL; 62745a8a30dbSKevin Wolf int ret; 62759c98f145SVladimir Sementsov-Ogievskiy BdrvDirtyBitmap *bm; 62765a8a30dbSKevin Wolf 62773456a8d1SKevin Wolf if (!bs->drv) { 62785416645fSVladimir Sementsov-Ogievskiy return -ENOMEDIUM; 62790f15423cSAnthony Liguori } 62803456a8d1SKevin Wolf 628116e977d5SVladimir Sementsov-Ogievskiy QLIST_FOREACH(child, &bs->children, next) { 62822b148f39SPaolo Bonzini bdrv_co_invalidate_cache(child->bs, &local_err); 62835a8a30dbSKevin Wolf if (local_err) { 62845a8a30dbSKevin Wolf error_propagate(errp, local_err); 62855416645fSVladimir Sementsov-Ogievskiy return -EINVAL; 62863456a8d1SKevin Wolf } 62870d1c5c91SFam Zheng } 62880d1c5c91SFam Zheng 6289dafe0960SKevin Wolf /* 6290dafe0960SKevin Wolf * Update permissions, they may differ for inactive nodes. 6291dafe0960SKevin Wolf * 6292dafe0960SKevin Wolf * Note that the required permissions of inactive images are always a 6293dafe0960SKevin Wolf * subset of the permissions required after activating the image. This 6294dafe0960SKevin Wolf * allows us to just get the permissions upfront without restricting 6295dafe0960SKevin Wolf * drv->bdrv_invalidate_cache(). 6296dafe0960SKevin Wolf * 6297dafe0960SKevin Wolf * It also means that in error cases, we don't have to try and revert to 6298dafe0960SKevin Wolf * the old permissions (which is an operation that could fail, too). We can 6299dafe0960SKevin Wolf * just keep the extended permissions for the next time that an activation 6300dafe0960SKevin Wolf * of the image is tried. 6301dafe0960SKevin Wolf */ 63027bb4941aSKevin Wolf if (bs->open_flags & BDRV_O_INACTIVE) { 630316e977d5SVladimir Sementsov-Ogievskiy bs->open_flags &= ~BDRV_O_INACTIVE; 6304071b474fSVladimir Sementsov-Ogievskiy ret = bdrv_refresh_perms(bs, errp); 6305dafe0960SKevin Wolf if (ret < 0) { 6306dafe0960SKevin Wolf bs->open_flags |= BDRV_O_INACTIVE; 63075416645fSVladimir Sementsov-Ogievskiy return ret; 6308dafe0960SKevin Wolf } 6309dafe0960SKevin Wolf 63102b148f39SPaolo Bonzini if (bs->drv->bdrv_co_invalidate_cache) { 63112b148f39SPaolo Bonzini bs->drv->bdrv_co_invalidate_cache(bs, &local_err); 63120d1c5c91SFam Zheng if (local_err) { 63130d1c5c91SFam Zheng bs->open_flags |= BDRV_O_INACTIVE; 63140d1c5c91SFam Zheng error_propagate(errp, local_err); 63155416645fSVladimir Sementsov-Ogievskiy return -EINVAL; 63160d1c5c91SFam Zheng } 63170d1c5c91SFam Zheng } 63183456a8d1SKevin Wolf 6319ef9041a7SVladimir Sementsov-Ogievskiy FOR_EACH_DIRTY_BITMAP(bs, bm) { 6320c4e4b0faSJohn Snow bdrv_dirty_bitmap_skip_store(bm, false); 63219c98f145SVladimir Sementsov-Ogievskiy } 63229c98f145SVladimir Sementsov-Ogievskiy 63235a8a30dbSKevin Wolf ret = refresh_total_sectors(bs, bs->total_sectors); 63245a8a30dbSKevin Wolf if (ret < 0) { 632504c01a5cSKevin Wolf bs->open_flags |= BDRV_O_INACTIVE; 63265a8a30dbSKevin Wolf error_setg_errno(errp, -ret, "Could not refresh total sector count"); 63275416645fSVladimir Sementsov-Ogievskiy return ret; 63285a8a30dbSKevin Wolf } 63297bb4941aSKevin Wolf } 63304417ab7aSKevin Wolf 63314417ab7aSKevin Wolf QLIST_FOREACH(parent, &bs->parents, next_parent) { 6332bd86fb99SMax Reitz if (parent->klass->activate) { 6333bd86fb99SMax Reitz parent->klass->activate(parent, &local_err); 63344417ab7aSKevin Wolf if (local_err) { 633578fc3b3aSKevin Wolf bs->open_flags |= BDRV_O_INACTIVE; 63364417ab7aSKevin Wolf error_propagate(errp, local_err); 63375416645fSVladimir Sementsov-Ogievskiy return -EINVAL; 63384417ab7aSKevin Wolf } 63394417ab7aSKevin Wolf } 63404417ab7aSKevin Wolf } 63415416645fSVladimir Sementsov-Ogievskiy 63425416645fSVladimir Sementsov-Ogievskiy return 0; 63430f15423cSAnthony Liguori } 63440f15423cSAnthony Liguori 63455a8a30dbSKevin Wolf void bdrv_invalidate_cache_all(Error **errp) 63460f15423cSAnthony Liguori { 63477c8eece4SKevin Wolf BlockDriverState *bs; 634888be7b4bSKevin Wolf BdrvNextIterator it; 63490f15423cSAnthony Liguori 635088be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 6351ed78cda3SStefan Hajnoczi AioContext *aio_context = bdrv_get_aio_context(bs); 63525416645fSVladimir Sementsov-Ogievskiy int ret; 6353ed78cda3SStefan Hajnoczi 6354ed78cda3SStefan Hajnoczi aio_context_acquire(aio_context); 63555416645fSVladimir Sementsov-Ogievskiy ret = bdrv_invalidate_cache(bs, errp); 6356ed78cda3SStefan Hajnoczi aio_context_release(aio_context); 63575416645fSVladimir Sementsov-Ogievskiy if (ret < 0) { 63585e003f17SMax Reitz bdrv_next_cleanup(&it); 63595a8a30dbSKevin Wolf return; 63605a8a30dbSKevin Wolf } 63610f15423cSAnthony Liguori } 63620f15423cSAnthony Liguori } 63630f15423cSAnthony Liguori 63649e37271fSKevin Wolf static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active) 63659e37271fSKevin Wolf { 63669e37271fSKevin Wolf BdrvChild *parent; 63679e37271fSKevin Wolf 63689e37271fSKevin Wolf QLIST_FOREACH(parent, &bs->parents, next_parent) { 6369bd86fb99SMax Reitz if (parent->klass->parent_is_bds) { 63709e37271fSKevin Wolf BlockDriverState *parent_bs = parent->opaque; 63719e37271fSKevin Wolf if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) { 63729e37271fSKevin Wolf return true; 63739e37271fSKevin Wolf } 63749e37271fSKevin Wolf } 63759e37271fSKevin Wolf } 63769e37271fSKevin Wolf 63779e37271fSKevin Wolf return false; 63789e37271fSKevin Wolf } 63799e37271fSKevin Wolf 63809e37271fSKevin Wolf static int bdrv_inactivate_recurse(BlockDriverState *bs) 638176b1c7feSKevin Wolf { 6382cfa1a572SKevin Wolf BdrvChild *child, *parent; 638376b1c7feSKevin Wolf int ret; 6384a13de40aSVladimir Sementsov-Ogievskiy uint64_t cumulative_perms, cumulative_shared_perms; 638576b1c7feSKevin Wolf 6386d470ad42SMax Reitz if (!bs->drv) { 6387d470ad42SMax Reitz return -ENOMEDIUM; 6388d470ad42SMax Reitz } 6389d470ad42SMax Reitz 63909e37271fSKevin Wolf /* Make sure that we don't inactivate a child before its parent. 63919e37271fSKevin Wolf * It will be covered by recursion from the yet active parent. */ 63929e37271fSKevin Wolf if (bdrv_has_bds_parent(bs, true)) { 63939e37271fSKevin Wolf return 0; 63949e37271fSKevin Wolf } 63959e37271fSKevin Wolf 63969e37271fSKevin Wolf assert(!(bs->open_flags & BDRV_O_INACTIVE)); 63979e37271fSKevin Wolf 63989e37271fSKevin Wolf /* Inactivate this node */ 63999e37271fSKevin Wolf if (bs->drv->bdrv_inactivate) { 640076b1c7feSKevin Wolf ret = bs->drv->bdrv_inactivate(bs); 640176b1c7feSKevin Wolf if (ret < 0) { 640276b1c7feSKevin Wolf return ret; 640376b1c7feSKevin Wolf } 640476b1c7feSKevin Wolf } 640576b1c7feSKevin Wolf 6406cfa1a572SKevin Wolf QLIST_FOREACH(parent, &bs->parents, next_parent) { 6407bd86fb99SMax Reitz if (parent->klass->inactivate) { 6408bd86fb99SMax Reitz ret = parent->klass->inactivate(parent); 6409cfa1a572SKevin Wolf if (ret < 0) { 6410cfa1a572SKevin Wolf return ret; 6411cfa1a572SKevin Wolf } 6412cfa1a572SKevin Wolf } 6413cfa1a572SKevin Wolf } 64149c5e6594SKevin Wolf 6415a13de40aSVladimir Sementsov-Ogievskiy bdrv_get_cumulative_perm(bs, &cumulative_perms, 6416a13de40aSVladimir Sementsov-Ogievskiy &cumulative_shared_perms); 6417a13de40aSVladimir Sementsov-Ogievskiy if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) { 6418a13de40aSVladimir Sementsov-Ogievskiy /* Our inactive parents still need write access. Inactivation failed. */ 6419a13de40aSVladimir Sementsov-Ogievskiy return -EPERM; 6420a13de40aSVladimir Sementsov-Ogievskiy } 6421a13de40aSVladimir Sementsov-Ogievskiy 64227d5b5261SStefan Hajnoczi bs->open_flags |= BDRV_O_INACTIVE; 64237d5b5261SStefan Hajnoczi 6424bb87e4d1SVladimir Sementsov-Ogievskiy /* 6425bb87e4d1SVladimir Sementsov-Ogievskiy * Update permissions, they may differ for inactive nodes. 6426bb87e4d1SVladimir Sementsov-Ogievskiy * We only tried to loosen restrictions, so errors are not fatal, ignore 6427bb87e4d1SVladimir Sementsov-Ogievskiy * them. 6428bb87e4d1SVladimir Sementsov-Ogievskiy */ 6429071b474fSVladimir Sementsov-Ogievskiy bdrv_refresh_perms(bs, NULL); 64309e37271fSKevin Wolf 64319e37271fSKevin Wolf /* Recursively inactivate children */ 643238701b6aSKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 64339e37271fSKevin Wolf ret = bdrv_inactivate_recurse(child->bs); 643438701b6aSKevin Wolf if (ret < 0) { 643538701b6aSKevin Wolf return ret; 643638701b6aSKevin Wolf } 643738701b6aSKevin Wolf } 643838701b6aSKevin Wolf 643976b1c7feSKevin Wolf return 0; 644076b1c7feSKevin Wolf } 644176b1c7feSKevin Wolf 644276b1c7feSKevin Wolf int bdrv_inactivate_all(void) 644376b1c7feSKevin Wolf { 644479720af6SMax Reitz BlockDriverState *bs = NULL; 644588be7b4bSKevin Wolf BdrvNextIterator it; 6446aad0b7a0SFam Zheng int ret = 0; 6447bd6458e4SPaolo Bonzini GSList *aio_ctxs = NULL, *ctx; 644876b1c7feSKevin Wolf 644988be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 6450bd6458e4SPaolo Bonzini AioContext *aio_context = bdrv_get_aio_context(bs); 6451bd6458e4SPaolo Bonzini 6452bd6458e4SPaolo Bonzini if (!g_slist_find(aio_ctxs, aio_context)) { 6453bd6458e4SPaolo Bonzini aio_ctxs = g_slist_prepend(aio_ctxs, aio_context); 6454bd6458e4SPaolo Bonzini aio_context_acquire(aio_context); 6455bd6458e4SPaolo Bonzini } 6456aad0b7a0SFam Zheng } 645776b1c7feSKevin Wolf 645888be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 64599e37271fSKevin Wolf /* Nodes with BDS parents are covered by recursion from the last 64609e37271fSKevin Wolf * parent that gets inactivated. Don't inactivate them a second 64619e37271fSKevin Wolf * time if that has already happened. */ 64629e37271fSKevin Wolf if (bdrv_has_bds_parent(bs, false)) { 64639e37271fSKevin Wolf continue; 64649e37271fSKevin Wolf } 64659e37271fSKevin Wolf ret = bdrv_inactivate_recurse(bs); 646676b1c7feSKevin Wolf if (ret < 0) { 64675e003f17SMax Reitz bdrv_next_cleanup(&it); 6468aad0b7a0SFam Zheng goto out; 6469aad0b7a0SFam Zheng } 647076b1c7feSKevin Wolf } 647176b1c7feSKevin Wolf 6472aad0b7a0SFam Zheng out: 6473bd6458e4SPaolo Bonzini for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) { 6474bd6458e4SPaolo Bonzini AioContext *aio_context = ctx->data; 6475bd6458e4SPaolo Bonzini aio_context_release(aio_context); 6476aad0b7a0SFam Zheng } 6477bd6458e4SPaolo Bonzini g_slist_free(aio_ctxs); 6478aad0b7a0SFam Zheng 6479aad0b7a0SFam Zheng return ret; 648076b1c7feSKevin Wolf } 648176b1c7feSKevin Wolf 6482f9f05dc5SKevin Wolf /**************************************************************/ 648319cb3738Sbellard /* removable device support */ 648419cb3738Sbellard 648519cb3738Sbellard /** 648619cb3738Sbellard * Return TRUE if the media is present 648719cb3738Sbellard */ 6488e031f750SMax Reitz bool bdrv_is_inserted(BlockDriverState *bs) 648919cb3738Sbellard { 649019cb3738Sbellard BlockDriver *drv = bs->drv; 649128d7a789SMax Reitz BdrvChild *child; 6492a1aff5bfSMarkus Armbruster 6493e031f750SMax Reitz if (!drv) { 6494e031f750SMax Reitz return false; 6495e031f750SMax Reitz } 649628d7a789SMax Reitz if (drv->bdrv_is_inserted) { 6497a1aff5bfSMarkus Armbruster return drv->bdrv_is_inserted(bs); 649819cb3738Sbellard } 649928d7a789SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 650028d7a789SMax Reitz if (!bdrv_is_inserted(child->bs)) { 650128d7a789SMax Reitz return false; 650228d7a789SMax Reitz } 650328d7a789SMax Reitz } 650428d7a789SMax Reitz return true; 650528d7a789SMax Reitz } 650619cb3738Sbellard 650719cb3738Sbellard /** 650819cb3738Sbellard * If eject_flag is TRUE, eject the media. Otherwise, close the tray 650919cb3738Sbellard */ 6510f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag) 651119cb3738Sbellard { 651219cb3738Sbellard BlockDriver *drv = bs->drv; 651319cb3738Sbellard 6514822e1cd1SMarkus Armbruster if (drv && drv->bdrv_eject) { 6515822e1cd1SMarkus Armbruster drv->bdrv_eject(bs, eject_flag); 651619cb3738Sbellard } 651719cb3738Sbellard } 651819cb3738Sbellard 651919cb3738Sbellard /** 652019cb3738Sbellard * Lock or unlock the media (if it is locked, the user won't be able 652119cb3738Sbellard * to eject it manually). 652219cb3738Sbellard */ 6523025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked) 652419cb3738Sbellard { 652519cb3738Sbellard BlockDriver *drv = bs->drv; 652619cb3738Sbellard 6527025e849aSMarkus Armbruster trace_bdrv_lock_medium(bs, locked); 6528b8c6d095SStefan Hajnoczi 6529025e849aSMarkus Armbruster if (drv && drv->bdrv_lock_medium) { 6530025e849aSMarkus Armbruster drv->bdrv_lock_medium(bs, locked); 653119cb3738Sbellard } 653219cb3738Sbellard } 6533985a03b0Sths 65349fcb0251SFam Zheng /* Get a reference to bs */ 65359fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs) 65369fcb0251SFam Zheng { 65379fcb0251SFam Zheng bs->refcnt++; 65389fcb0251SFam Zheng } 65399fcb0251SFam Zheng 65409fcb0251SFam Zheng /* Release a previously grabbed reference to bs. 65419fcb0251SFam Zheng * If after releasing, reference count is zero, the BlockDriverState is 65429fcb0251SFam Zheng * deleted. */ 65439fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs) 65449fcb0251SFam Zheng { 65459a4d5ca6SJeff Cody if (!bs) { 65469a4d5ca6SJeff Cody return; 65479a4d5ca6SJeff Cody } 65489fcb0251SFam Zheng assert(bs->refcnt > 0); 65499fcb0251SFam Zheng if (--bs->refcnt == 0) { 65509fcb0251SFam Zheng bdrv_delete(bs); 65519fcb0251SFam Zheng } 65529fcb0251SFam Zheng } 65539fcb0251SFam Zheng 6554fbe40ff7SFam Zheng struct BdrvOpBlocker { 6555fbe40ff7SFam Zheng Error *reason; 6556fbe40ff7SFam Zheng QLIST_ENTRY(BdrvOpBlocker) list; 6557fbe40ff7SFam Zheng }; 6558fbe40ff7SFam Zheng 6559fbe40ff7SFam Zheng bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp) 6560fbe40ff7SFam Zheng { 6561fbe40ff7SFam Zheng BdrvOpBlocker *blocker; 6562fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 6563fbe40ff7SFam Zheng if (!QLIST_EMPTY(&bs->op_blockers[op])) { 6564fbe40ff7SFam Zheng blocker = QLIST_FIRST(&bs->op_blockers[op]); 65654b576648SMarkus Armbruster error_propagate_prepend(errp, error_copy(blocker->reason), 65664b576648SMarkus Armbruster "Node '%s' is busy: ", 6567e43bfd9cSMarkus Armbruster bdrv_get_device_or_node_name(bs)); 6568fbe40ff7SFam Zheng return true; 6569fbe40ff7SFam Zheng } 6570fbe40ff7SFam Zheng return false; 6571fbe40ff7SFam Zheng } 6572fbe40ff7SFam Zheng 6573fbe40ff7SFam Zheng void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason) 6574fbe40ff7SFam Zheng { 6575fbe40ff7SFam Zheng BdrvOpBlocker *blocker; 6576fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 6577fbe40ff7SFam Zheng 65785839e53bSMarkus Armbruster blocker = g_new0(BdrvOpBlocker, 1); 6579fbe40ff7SFam Zheng blocker->reason = reason; 6580fbe40ff7SFam Zheng QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list); 6581fbe40ff7SFam Zheng } 6582fbe40ff7SFam Zheng 6583fbe40ff7SFam Zheng void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason) 6584fbe40ff7SFam Zheng { 6585fbe40ff7SFam Zheng BdrvOpBlocker *blocker, *next; 6586fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 6587fbe40ff7SFam Zheng QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) { 6588fbe40ff7SFam Zheng if (blocker->reason == reason) { 6589fbe40ff7SFam Zheng QLIST_REMOVE(blocker, list); 6590fbe40ff7SFam Zheng g_free(blocker); 6591fbe40ff7SFam Zheng } 6592fbe40ff7SFam Zheng } 6593fbe40ff7SFam Zheng } 6594fbe40ff7SFam Zheng 6595fbe40ff7SFam Zheng void bdrv_op_block_all(BlockDriverState *bs, Error *reason) 6596fbe40ff7SFam Zheng { 6597fbe40ff7SFam Zheng int i; 6598fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 6599fbe40ff7SFam Zheng bdrv_op_block(bs, i, reason); 6600fbe40ff7SFam Zheng } 6601fbe40ff7SFam Zheng } 6602fbe40ff7SFam Zheng 6603fbe40ff7SFam Zheng void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason) 6604fbe40ff7SFam Zheng { 6605fbe40ff7SFam Zheng int i; 6606fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 6607fbe40ff7SFam Zheng bdrv_op_unblock(bs, i, reason); 6608fbe40ff7SFam Zheng } 6609fbe40ff7SFam Zheng } 6610fbe40ff7SFam Zheng 6611fbe40ff7SFam Zheng bool bdrv_op_blocker_is_empty(BlockDriverState *bs) 6612fbe40ff7SFam Zheng { 6613fbe40ff7SFam Zheng int i; 6614fbe40ff7SFam Zheng 6615fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 6616fbe40ff7SFam Zheng if (!QLIST_EMPTY(&bs->op_blockers[i])) { 6617fbe40ff7SFam Zheng return false; 6618fbe40ff7SFam Zheng } 6619fbe40ff7SFam Zheng } 6620fbe40ff7SFam Zheng return true; 6621fbe40ff7SFam Zheng } 6622fbe40ff7SFam Zheng 6623d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt, 6624f88e1a42SJes Sorensen const char *base_filename, const char *base_fmt, 66259217283dSFam Zheng char *options, uint64_t img_size, int flags, bool quiet, 66269217283dSFam Zheng Error **errp) 6627f88e1a42SJes Sorensen { 662883d0521aSChunyan Liu QemuOptsList *create_opts = NULL; 662983d0521aSChunyan Liu QemuOpts *opts = NULL; 663083d0521aSChunyan Liu const char *backing_fmt, *backing_file; 663183d0521aSChunyan Liu int64_t size; 6632f88e1a42SJes Sorensen BlockDriver *drv, *proto_drv; 6633cc84d90fSMax Reitz Error *local_err = NULL; 6634f88e1a42SJes Sorensen int ret = 0; 6635f88e1a42SJes Sorensen 6636f88e1a42SJes Sorensen /* Find driver and parse its options */ 6637f88e1a42SJes Sorensen drv = bdrv_find_format(fmt); 6638f88e1a42SJes Sorensen if (!drv) { 663971c79813SLuiz Capitulino error_setg(errp, "Unknown file format '%s'", fmt); 6640d92ada22SLuiz Capitulino return; 6641f88e1a42SJes Sorensen } 6642f88e1a42SJes Sorensen 6643b65a5e12SMax Reitz proto_drv = bdrv_find_protocol(filename, true, errp); 6644f88e1a42SJes Sorensen if (!proto_drv) { 6645d92ada22SLuiz Capitulino return; 6646f88e1a42SJes Sorensen } 6647f88e1a42SJes Sorensen 6648c6149724SMax Reitz if (!drv->create_opts) { 6649c6149724SMax Reitz error_setg(errp, "Format driver '%s' does not support image creation", 6650c6149724SMax Reitz drv->format_name); 6651c6149724SMax Reitz return; 6652c6149724SMax Reitz } 6653c6149724SMax Reitz 66545a5e7f8cSMaxim Levitsky if (!proto_drv->create_opts) { 66555a5e7f8cSMaxim Levitsky error_setg(errp, "Protocol driver '%s' does not support image creation", 66565a5e7f8cSMaxim Levitsky proto_drv->format_name); 66575a5e7f8cSMaxim Levitsky return; 66585a5e7f8cSMaxim Levitsky } 66595a5e7f8cSMaxim Levitsky 6660f6dc1c31SKevin Wolf /* Create parameter list */ 6661c282e1fdSChunyan Liu create_opts = qemu_opts_append(create_opts, drv->create_opts); 6662c282e1fdSChunyan Liu create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); 6663f88e1a42SJes Sorensen 666483d0521aSChunyan Liu opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); 6665f88e1a42SJes Sorensen 6666f88e1a42SJes Sorensen /* Parse -o options */ 6667f88e1a42SJes Sorensen if (options) { 6668a5f9b9dfSMarkus Armbruster if (!qemu_opts_do_parse(opts, options, NULL, errp)) { 6669f88e1a42SJes Sorensen goto out; 6670f88e1a42SJes Sorensen } 6671f88e1a42SJes Sorensen } 6672f88e1a42SJes Sorensen 6673f6dc1c31SKevin Wolf if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) { 6674f6dc1c31SKevin Wolf qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort); 6675f6dc1c31SKevin Wolf } else if (img_size != UINT64_C(-1)) { 6676f6dc1c31SKevin Wolf error_setg(errp, "The image size must be specified only once"); 6677f6dc1c31SKevin Wolf goto out; 6678f6dc1c31SKevin Wolf } 6679f6dc1c31SKevin Wolf 6680f88e1a42SJes Sorensen if (base_filename) { 6681235e59cfSMarkus Armbruster if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, 66823882578bSMarkus Armbruster NULL)) { 668371c79813SLuiz Capitulino error_setg(errp, "Backing file not supported for file format '%s'", 668471c79813SLuiz Capitulino fmt); 6685f88e1a42SJes Sorensen goto out; 6686f88e1a42SJes Sorensen } 6687f88e1a42SJes Sorensen } 6688f88e1a42SJes Sorensen 6689f88e1a42SJes Sorensen if (base_fmt) { 66903882578bSMarkus Armbruster if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) { 669171c79813SLuiz Capitulino error_setg(errp, "Backing file format not supported for file " 669271c79813SLuiz Capitulino "format '%s'", fmt); 6693f88e1a42SJes Sorensen goto out; 6694f88e1a42SJes Sorensen } 6695f88e1a42SJes Sorensen } 6696f88e1a42SJes Sorensen 669783d0521aSChunyan Liu backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); 669883d0521aSChunyan Liu if (backing_file) { 669983d0521aSChunyan Liu if (!strcmp(filename, backing_file)) { 670071c79813SLuiz Capitulino error_setg(errp, "Error: Trying to create an image with the " 670171c79813SLuiz Capitulino "same filename as the backing file"); 6702792da93aSJes Sorensen goto out; 6703792da93aSJes Sorensen } 6704975a7bd2SConnor Kuehl if (backing_file[0] == '\0') { 6705975a7bd2SConnor Kuehl error_setg(errp, "Expected backing file name, got empty string"); 6706975a7bd2SConnor Kuehl goto out; 6707975a7bd2SConnor Kuehl } 6708792da93aSJes Sorensen } 6709792da93aSJes Sorensen 671083d0521aSChunyan Liu backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT); 6711f88e1a42SJes Sorensen 67126e6e55f5SJohn Snow /* The size for the image must always be specified, unless we have a backing 67136e6e55f5SJohn Snow * file and we have not been forbidden from opening it. */ 6714a8b42a1cSEric Blake size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size); 67156e6e55f5SJohn Snow if (backing_file && !(flags & BDRV_O_NO_BACKING)) { 671666f6b814SMax Reitz BlockDriverState *bs; 6717645ae7d8SMax Reitz char *full_backing; 671863090dacSPaolo Bonzini int back_flags; 6719e6641719SMax Reitz QDict *backing_options = NULL; 672063090dacSPaolo Bonzini 6721645ae7d8SMax Reitz full_backing = 672229168018SMax Reitz bdrv_get_full_backing_filename_from_filename(filename, backing_file, 672329168018SMax Reitz &local_err); 672429168018SMax Reitz if (local_err) { 672529168018SMax Reitz goto out; 672629168018SMax Reitz } 6727645ae7d8SMax Reitz assert(full_backing); 672829168018SMax Reitz 6729d5b23994SMax Reitz /* 6730d5b23994SMax Reitz * No need to do I/O here, which allows us to open encrypted 6731d5b23994SMax Reitz * backing images without needing the secret 6732d5b23994SMax Reitz */ 673361de4c68SKevin Wolf back_flags = flags; 6734bfd18d1eSKevin Wolf back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); 6735d5b23994SMax Reitz back_flags |= BDRV_O_NO_IO; 6736f88e1a42SJes Sorensen 6737e6641719SMax Reitz backing_options = qdict_new(); 6738cc954f01SFam Zheng if (backing_fmt) { 673946f5ac20SEric Blake qdict_put_str(backing_options, "driver", backing_fmt); 6740e6641719SMax Reitz } 6741cc954f01SFam Zheng qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true); 6742e6641719SMax Reitz 67435b363937SMax Reitz bs = bdrv_open(full_backing, NULL, backing_options, back_flags, 67445b363937SMax Reitz &local_err); 674529168018SMax Reitz g_free(full_backing); 6746add8200dSEric Blake if (!bs) { 6747add8200dSEric Blake error_append_hint(&local_err, "Could not open backing image.\n"); 6748f88e1a42SJes Sorensen goto out; 67496e6e55f5SJohn Snow } else { 6750d9f059aaSEric Blake if (!backing_fmt) { 6751497a30dbSEric Blake error_setg(&local_err, 6752497a30dbSEric Blake "Backing file specified without backing format"); 6753497a30dbSEric Blake error_append_hint(&local_err, "Detected format of %s.", 6754d9f059aaSEric Blake bs->drv->format_name); 6755497a30dbSEric Blake goto out; 6756d9f059aaSEric Blake } 67576e6e55f5SJohn Snow if (size == -1) { 67586e6e55f5SJohn Snow /* Opened BS, have no size */ 675952bf1e72SMarkus Armbruster size = bdrv_getlength(bs); 676052bf1e72SMarkus Armbruster if (size < 0) { 676152bf1e72SMarkus Armbruster error_setg_errno(errp, -size, "Could not get size of '%s'", 676252bf1e72SMarkus Armbruster backing_file); 676352bf1e72SMarkus Armbruster bdrv_unref(bs); 676452bf1e72SMarkus Armbruster goto out; 676552bf1e72SMarkus Armbruster } 676639101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort); 67676e6e55f5SJohn Snow } 676866f6b814SMax Reitz bdrv_unref(bs); 67696e6e55f5SJohn Snow } 6770d9f059aaSEric Blake /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */ 6771d9f059aaSEric Blake } else if (backing_file && !backing_fmt) { 6772497a30dbSEric Blake error_setg(&local_err, 6773497a30dbSEric Blake "Backing file specified without backing format"); 6774497a30dbSEric Blake goto out; 6775d9f059aaSEric Blake } 67766e6e55f5SJohn Snow 67776e6e55f5SJohn Snow if (size == -1) { 677871c79813SLuiz Capitulino error_setg(errp, "Image creation needs a size parameter"); 6779f88e1a42SJes Sorensen goto out; 6780f88e1a42SJes Sorensen } 6781f88e1a42SJes Sorensen 6782f382d43aSMiroslav Rezanina if (!quiet) { 6783f88e1a42SJes Sorensen printf("Formatting '%s', fmt=%s ", filename, fmt); 678443c5d8f8SFam Zheng qemu_opts_print(opts, " "); 6785f88e1a42SJes Sorensen puts(""); 67864e2f4418SEric Blake fflush(stdout); 6787f382d43aSMiroslav Rezanina } 678883d0521aSChunyan Liu 6789c282e1fdSChunyan Liu ret = bdrv_create(drv, filename, opts, &local_err); 679083d0521aSChunyan Liu 6791cc84d90fSMax Reitz if (ret == -EFBIG) { 6792cc84d90fSMax Reitz /* This is generally a better message than whatever the driver would 6793cc84d90fSMax Reitz * deliver (especially because of the cluster_size_hint), since that 6794cc84d90fSMax Reitz * is most probably not much different from "image too large". */ 6795f3f4d2c0SKevin Wolf const char *cluster_size_hint = ""; 679683d0521aSChunyan Liu if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) { 6797f3f4d2c0SKevin Wolf cluster_size_hint = " (try using a larger cluster size)"; 6798f3f4d2c0SKevin Wolf } 6799cc84d90fSMax Reitz error_setg(errp, "The image size is too large for file format '%s'" 6800cc84d90fSMax Reitz "%s", fmt, cluster_size_hint); 6801cc84d90fSMax Reitz error_free(local_err); 6802cc84d90fSMax Reitz local_err = NULL; 6803f88e1a42SJes Sorensen } 6804f88e1a42SJes Sorensen 6805f88e1a42SJes Sorensen out: 680683d0521aSChunyan Liu qemu_opts_del(opts); 680783d0521aSChunyan Liu qemu_opts_free(create_opts); 6808cc84d90fSMax Reitz error_propagate(errp, local_err); 6809cc84d90fSMax Reitz } 681085d126f3SStefan Hajnoczi 681185d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs) 681285d126f3SStefan Hajnoczi { 681333f2a757SStefan Hajnoczi return bs ? bs->aio_context : qemu_get_aio_context(); 6814dcd04228SStefan Hajnoczi } 6815dcd04228SStefan Hajnoczi 6816e336fd4cSKevin Wolf AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs) 6817e336fd4cSKevin Wolf { 6818e336fd4cSKevin Wolf Coroutine *self = qemu_coroutine_self(); 6819e336fd4cSKevin Wolf AioContext *old_ctx = qemu_coroutine_get_aio_context(self); 6820e336fd4cSKevin Wolf AioContext *new_ctx; 6821e336fd4cSKevin Wolf 6822e336fd4cSKevin Wolf /* 6823e336fd4cSKevin Wolf * Increase bs->in_flight to ensure that this operation is completed before 6824e336fd4cSKevin Wolf * moving the node to a different AioContext. Read new_ctx only afterwards. 6825e336fd4cSKevin Wolf */ 6826e336fd4cSKevin Wolf bdrv_inc_in_flight(bs); 6827e336fd4cSKevin Wolf 6828e336fd4cSKevin Wolf new_ctx = bdrv_get_aio_context(bs); 6829e336fd4cSKevin Wolf aio_co_reschedule_self(new_ctx); 6830e336fd4cSKevin Wolf return old_ctx; 6831e336fd4cSKevin Wolf } 6832e336fd4cSKevin Wolf 6833e336fd4cSKevin Wolf void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx) 6834e336fd4cSKevin Wolf { 6835e336fd4cSKevin Wolf aio_co_reschedule_self(old_ctx); 6836e336fd4cSKevin Wolf bdrv_dec_in_flight(bs); 6837e336fd4cSKevin Wolf } 6838e336fd4cSKevin Wolf 683918c6ac1cSKevin Wolf void coroutine_fn bdrv_co_lock(BlockDriverState *bs) 684018c6ac1cSKevin Wolf { 684118c6ac1cSKevin Wolf AioContext *ctx = bdrv_get_aio_context(bs); 684218c6ac1cSKevin Wolf 684318c6ac1cSKevin Wolf /* In the main thread, bs->aio_context won't change concurrently */ 684418c6ac1cSKevin Wolf assert(qemu_get_current_aio_context() == qemu_get_aio_context()); 684518c6ac1cSKevin Wolf 684618c6ac1cSKevin Wolf /* 684718c6ac1cSKevin Wolf * We're in coroutine context, so we already hold the lock of the main 684818c6ac1cSKevin Wolf * loop AioContext. Don't lock it twice to avoid deadlocks. 684918c6ac1cSKevin Wolf */ 685018c6ac1cSKevin Wolf assert(qemu_in_coroutine()); 685118c6ac1cSKevin Wolf if (ctx != qemu_get_aio_context()) { 685218c6ac1cSKevin Wolf aio_context_acquire(ctx); 685318c6ac1cSKevin Wolf } 685418c6ac1cSKevin Wolf } 685518c6ac1cSKevin Wolf 685618c6ac1cSKevin Wolf void coroutine_fn bdrv_co_unlock(BlockDriverState *bs) 685718c6ac1cSKevin Wolf { 685818c6ac1cSKevin Wolf AioContext *ctx = bdrv_get_aio_context(bs); 685918c6ac1cSKevin Wolf 686018c6ac1cSKevin Wolf assert(qemu_in_coroutine()); 686118c6ac1cSKevin Wolf if (ctx != qemu_get_aio_context()) { 686218c6ac1cSKevin Wolf aio_context_release(ctx); 686318c6ac1cSKevin Wolf } 686418c6ac1cSKevin Wolf } 686518c6ac1cSKevin Wolf 6866052a7572SFam Zheng void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co) 6867052a7572SFam Zheng { 6868052a7572SFam Zheng aio_co_enter(bdrv_get_aio_context(bs), co); 6869052a7572SFam Zheng } 6870052a7572SFam Zheng 6871e8a095daSStefan Hajnoczi static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban) 6872e8a095daSStefan Hajnoczi { 6873e8a095daSStefan Hajnoczi QLIST_REMOVE(ban, list); 6874e8a095daSStefan Hajnoczi g_free(ban); 6875e8a095daSStefan Hajnoczi } 6876e8a095daSStefan Hajnoczi 6877a3a683c3SKevin Wolf static void bdrv_detach_aio_context(BlockDriverState *bs) 6878dcd04228SStefan Hajnoczi { 6879e8a095daSStefan Hajnoczi BdrvAioNotifier *baf, *baf_tmp; 688033384421SMax Reitz 6881e8a095daSStefan Hajnoczi assert(!bs->walking_aio_notifiers); 6882e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = true; 6883e8a095daSStefan Hajnoczi QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) { 6884e8a095daSStefan Hajnoczi if (baf->deleted) { 6885e8a095daSStefan Hajnoczi bdrv_do_remove_aio_context_notifier(baf); 6886e8a095daSStefan Hajnoczi } else { 688733384421SMax Reitz baf->detach_aio_context(baf->opaque); 688833384421SMax Reitz } 6889e8a095daSStefan Hajnoczi } 6890e8a095daSStefan Hajnoczi /* Never mind iterating again to check for ->deleted. bdrv_close() will 6891e8a095daSStefan Hajnoczi * remove remaining aio notifiers if we aren't called again. 6892e8a095daSStefan Hajnoczi */ 6893e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = false; 689433384421SMax Reitz 68951bffe1aeSKevin Wolf if (bs->drv && bs->drv->bdrv_detach_aio_context) { 6896dcd04228SStefan Hajnoczi bs->drv->bdrv_detach_aio_context(bs); 6897dcd04228SStefan Hajnoczi } 6898dcd04228SStefan Hajnoczi 6899e64f25f3SKevin Wolf if (bs->quiesce_counter) { 6900e64f25f3SKevin Wolf aio_enable_external(bs->aio_context); 6901e64f25f3SKevin Wolf } 6902dcd04228SStefan Hajnoczi bs->aio_context = NULL; 6903dcd04228SStefan Hajnoczi } 6904dcd04228SStefan Hajnoczi 6905a3a683c3SKevin Wolf static void bdrv_attach_aio_context(BlockDriverState *bs, 6906dcd04228SStefan Hajnoczi AioContext *new_context) 6907dcd04228SStefan Hajnoczi { 6908e8a095daSStefan Hajnoczi BdrvAioNotifier *ban, *ban_tmp; 690933384421SMax Reitz 6910e64f25f3SKevin Wolf if (bs->quiesce_counter) { 6911e64f25f3SKevin Wolf aio_disable_external(new_context); 6912e64f25f3SKevin Wolf } 6913e64f25f3SKevin Wolf 6914dcd04228SStefan Hajnoczi bs->aio_context = new_context; 6915dcd04228SStefan Hajnoczi 69161bffe1aeSKevin Wolf if (bs->drv && bs->drv->bdrv_attach_aio_context) { 6917dcd04228SStefan Hajnoczi bs->drv->bdrv_attach_aio_context(bs, new_context); 6918dcd04228SStefan Hajnoczi } 691933384421SMax Reitz 6920e8a095daSStefan Hajnoczi assert(!bs->walking_aio_notifiers); 6921e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = true; 6922e8a095daSStefan Hajnoczi QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) { 6923e8a095daSStefan Hajnoczi if (ban->deleted) { 6924e8a095daSStefan Hajnoczi bdrv_do_remove_aio_context_notifier(ban); 6925e8a095daSStefan Hajnoczi } else { 692633384421SMax Reitz ban->attached_aio_context(new_context, ban->opaque); 692733384421SMax Reitz } 6928dcd04228SStefan Hajnoczi } 6929e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = false; 6930e8a095daSStefan Hajnoczi } 6931dcd04228SStefan Hajnoczi 693242a65f02SKevin Wolf /* 693342a65f02SKevin Wolf * Changes the AioContext used for fd handlers, timers, and BHs by this 693442a65f02SKevin Wolf * BlockDriverState and all its children and parents. 693542a65f02SKevin Wolf * 693643eaaaefSMax Reitz * Must be called from the main AioContext. 693743eaaaefSMax Reitz * 693842a65f02SKevin Wolf * The caller must own the AioContext lock for the old AioContext of bs, but it 693942a65f02SKevin Wolf * must not own the AioContext lock for new_context (unless new_context is the 694042a65f02SKevin Wolf * same as the current context of bs). 694142a65f02SKevin Wolf * 694242a65f02SKevin Wolf * @ignore will accumulate all visited BdrvChild object. The caller is 694342a65f02SKevin Wolf * responsible for freeing the list afterwards. 694442a65f02SKevin Wolf */ 694553a7d041SKevin Wolf void bdrv_set_aio_context_ignore(BlockDriverState *bs, 694653a7d041SKevin Wolf AioContext *new_context, GSList **ignore) 6947dcd04228SStefan Hajnoczi { 6948e037c09cSMax Reitz AioContext *old_context = bdrv_get_aio_context(bs); 6949722d8e73SSergio Lopez GSList *children_to_process = NULL; 6950722d8e73SSergio Lopez GSList *parents_to_process = NULL; 6951722d8e73SSergio Lopez GSList *entry; 6952722d8e73SSergio Lopez BdrvChild *child, *parent; 69530d83708aSKevin Wolf 695443eaaaefSMax Reitz g_assert(qemu_get_current_aio_context() == qemu_get_aio_context()); 695543eaaaefSMax Reitz 6956e037c09cSMax Reitz if (old_context == new_context) { 695757830a49SDenis Plotnikov return; 695857830a49SDenis Plotnikov } 695957830a49SDenis Plotnikov 6960d70d5954SKevin Wolf bdrv_drained_begin(bs); 69610d83708aSKevin Wolf 69620d83708aSKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 696353a7d041SKevin Wolf if (g_slist_find(*ignore, child)) { 696453a7d041SKevin Wolf continue; 696553a7d041SKevin Wolf } 696653a7d041SKevin Wolf *ignore = g_slist_prepend(*ignore, child); 6967722d8e73SSergio Lopez children_to_process = g_slist_prepend(children_to_process, child); 696853a7d041SKevin Wolf } 6969722d8e73SSergio Lopez 6970722d8e73SSergio Lopez QLIST_FOREACH(parent, &bs->parents, next_parent) { 6971722d8e73SSergio Lopez if (g_slist_find(*ignore, parent)) { 697253a7d041SKevin Wolf continue; 697353a7d041SKevin Wolf } 6974722d8e73SSergio Lopez *ignore = g_slist_prepend(*ignore, parent); 6975722d8e73SSergio Lopez parents_to_process = g_slist_prepend(parents_to_process, parent); 697653a7d041SKevin Wolf } 69770d83708aSKevin Wolf 6978722d8e73SSergio Lopez for (entry = children_to_process; 6979722d8e73SSergio Lopez entry != NULL; 6980722d8e73SSergio Lopez entry = g_slist_next(entry)) { 6981722d8e73SSergio Lopez child = entry->data; 6982722d8e73SSergio Lopez bdrv_set_aio_context_ignore(child->bs, new_context, ignore); 6983722d8e73SSergio Lopez } 6984722d8e73SSergio Lopez g_slist_free(children_to_process); 6985722d8e73SSergio Lopez 6986722d8e73SSergio Lopez for (entry = parents_to_process; 6987722d8e73SSergio Lopez entry != NULL; 6988722d8e73SSergio Lopez entry = g_slist_next(entry)) { 6989722d8e73SSergio Lopez parent = entry->data; 6990722d8e73SSergio Lopez assert(parent->klass->set_aio_ctx); 6991722d8e73SSergio Lopez parent->klass->set_aio_ctx(parent, new_context, ignore); 6992722d8e73SSergio Lopez } 6993722d8e73SSergio Lopez g_slist_free(parents_to_process); 6994722d8e73SSergio Lopez 6995dcd04228SStefan Hajnoczi bdrv_detach_aio_context(bs); 6996dcd04228SStefan Hajnoczi 6997e037c09cSMax Reitz /* Acquire the new context, if necessary */ 699843eaaaefSMax Reitz if (qemu_get_aio_context() != new_context) { 6999dcd04228SStefan Hajnoczi aio_context_acquire(new_context); 7000e037c09cSMax Reitz } 7001e037c09cSMax Reitz 7002dcd04228SStefan Hajnoczi bdrv_attach_aio_context(bs, new_context); 7003e037c09cSMax Reitz 7004e037c09cSMax Reitz /* 7005e037c09cSMax Reitz * If this function was recursively called from 7006e037c09cSMax Reitz * bdrv_set_aio_context_ignore(), there may be nodes in the 7007e037c09cSMax Reitz * subtree that have not yet been moved to the new AioContext. 7008e037c09cSMax Reitz * Release the old one so bdrv_drained_end() can poll them. 7009e037c09cSMax Reitz */ 701043eaaaefSMax Reitz if (qemu_get_aio_context() != old_context) { 7011e037c09cSMax Reitz aio_context_release(old_context); 7012e037c09cSMax Reitz } 7013e037c09cSMax Reitz 7014d70d5954SKevin Wolf bdrv_drained_end(bs); 7015e037c09cSMax Reitz 701643eaaaefSMax Reitz if (qemu_get_aio_context() != old_context) { 7017e037c09cSMax Reitz aio_context_acquire(old_context); 7018e037c09cSMax Reitz } 701943eaaaefSMax Reitz if (qemu_get_aio_context() != new_context) { 7020dcd04228SStefan Hajnoczi aio_context_release(new_context); 702185d126f3SStefan Hajnoczi } 7022e037c09cSMax Reitz } 7023d616b224SStefan Hajnoczi 70245d231849SKevin Wolf static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx, 70255d231849SKevin Wolf GSList **ignore, Error **errp) 70265d231849SKevin Wolf { 70275d231849SKevin Wolf if (g_slist_find(*ignore, c)) { 70285d231849SKevin Wolf return true; 70295d231849SKevin Wolf } 70305d231849SKevin Wolf *ignore = g_slist_prepend(*ignore, c); 70315d231849SKevin Wolf 7032bd86fb99SMax Reitz /* 7033bd86fb99SMax Reitz * A BdrvChildClass that doesn't handle AioContext changes cannot 7034bd86fb99SMax Reitz * tolerate any AioContext changes 7035bd86fb99SMax Reitz */ 7036bd86fb99SMax Reitz if (!c->klass->can_set_aio_ctx) { 70375d231849SKevin Wolf char *user = bdrv_child_user_desc(c); 70385d231849SKevin Wolf error_setg(errp, "Changing iothreads is not supported by %s", user); 70395d231849SKevin Wolf g_free(user); 70405d231849SKevin Wolf return false; 70415d231849SKevin Wolf } 7042bd86fb99SMax Reitz if (!c->klass->can_set_aio_ctx(c, ctx, ignore, errp)) { 70435d231849SKevin Wolf assert(!errp || *errp); 70445d231849SKevin Wolf return false; 70455d231849SKevin Wolf } 70465d231849SKevin Wolf return true; 70475d231849SKevin Wolf } 70485d231849SKevin Wolf 70495d231849SKevin Wolf bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx, 70505d231849SKevin Wolf GSList **ignore, Error **errp) 70515d231849SKevin Wolf { 70525d231849SKevin Wolf if (g_slist_find(*ignore, c)) { 70535d231849SKevin Wolf return true; 70545d231849SKevin Wolf } 70555d231849SKevin Wolf *ignore = g_slist_prepend(*ignore, c); 70565d231849SKevin Wolf return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp); 70575d231849SKevin Wolf } 70585d231849SKevin Wolf 70595d231849SKevin Wolf /* @ignore will accumulate all visited BdrvChild object. The caller is 70605d231849SKevin Wolf * responsible for freeing the list afterwards. */ 70615d231849SKevin Wolf bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx, 70625d231849SKevin Wolf GSList **ignore, Error **errp) 70635d231849SKevin Wolf { 70645d231849SKevin Wolf BdrvChild *c; 70655d231849SKevin Wolf 70665d231849SKevin Wolf if (bdrv_get_aio_context(bs) == ctx) { 70675d231849SKevin Wolf return true; 70685d231849SKevin Wolf } 70695d231849SKevin Wolf 70705d231849SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 70715d231849SKevin Wolf if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) { 70725d231849SKevin Wolf return false; 70735d231849SKevin Wolf } 70745d231849SKevin Wolf } 70755d231849SKevin Wolf QLIST_FOREACH(c, &bs->children, next) { 70765d231849SKevin Wolf if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) { 70775d231849SKevin Wolf return false; 70785d231849SKevin Wolf } 70795d231849SKevin Wolf } 70805d231849SKevin Wolf 70815d231849SKevin Wolf return true; 70825d231849SKevin Wolf } 70835d231849SKevin Wolf 70845d231849SKevin Wolf int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx, 70855d231849SKevin Wolf BdrvChild *ignore_child, Error **errp) 70865d231849SKevin Wolf { 70875d231849SKevin Wolf GSList *ignore; 70885d231849SKevin Wolf bool ret; 70895d231849SKevin Wolf 70905d231849SKevin Wolf ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL; 70915d231849SKevin Wolf ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp); 70925d231849SKevin Wolf g_slist_free(ignore); 70935d231849SKevin Wolf 70945d231849SKevin Wolf if (!ret) { 70955d231849SKevin Wolf return -EPERM; 70965d231849SKevin Wolf } 70975d231849SKevin Wolf 709853a7d041SKevin Wolf ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL; 709953a7d041SKevin Wolf bdrv_set_aio_context_ignore(bs, ctx, &ignore); 710053a7d041SKevin Wolf g_slist_free(ignore); 710153a7d041SKevin Wolf 71025d231849SKevin Wolf return 0; 71035d231849SKevin Wolf } 71045d231849SKevin Wolf 71055d231849SKevin Wolf int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx, 71065d231849SKevin Wolf Error **errp) 71075d231849SKevin Wolf { 71085d231849SKevin Wolf return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp); 71095d231849SKevin Wolf } 71105d231849SKevin Wolf 711133384421SMax Reitz void bdrv_add_aio_context_notifier(BlockDriverState *bs, 711233384421SMax Reitz void (*attached_aio_context)(AioContext *new_context, void *opaque), 711333384421SMax Reitz void (*detach_aio_context)(void *opaque), void *opaque) 711433384421SMax Reitz { 711533384421SMax Reitz BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1); 711633384421SMax Reitz *ban = (BdrvAioNotifier){ 711733384421SMax Reitz .attached_aio_context = attached_aio_context, 711833384421SMax Reitz .detach_aio_context = detach_aio_context, 711933384421SMax Reitz .opaque = opaque 712033384421SMax Reitz }; 712133384421SMax Reitz 712233384421SMax Reitz QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list); 712333384421SMax Reitz } 712433384421SMax Reitz 712533384421SMax Reitz void bdrv_remove_aio_context_notifier(BlockDriverState *bs, 712633384421SMax Reitz void (*attached_aio_context)(AioContext *, 712733384421SMax Reitz void *), 712833384421SMax Reitz void (*detach_aio_context)(void *), 712933384421SMax Reitz void *opaque) 713033384421SMax Reitz { 713133384421SMax Reitz BdrvAioNotifier *ban, *ban_next; 713233384421SMax Reitz 713333384421SMax Reitz QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 713433384421SMax Reitz if (ban->attached_aio_context == attached_aio_context && 713533384421SMax Reitz ban->detach_aio_context == detach_aio_context && 7136e8a095daSStefan Hajnoczi ban->opaque == opaque && 7137e8a095daSStefan Hajnoczi ban->deleted == false) 713833384421SMax Reitz { 7139e8a095daSStefan Hajnoczi if (bs->walking_aio_notifiers) { 7140e8a095daSStefan Hajnoczi ban->deleted = true; 7141e8a095daSStefan Hajnoczi } else { 7142e8a095daSStefan Hajnoczi bdrv_do_remove_aio_context_notifier(ban); 7143e8a095daSStefan Hajnoczi } 714433384421SMax Reitz return; 714533384421SMax Reitz } 714633384421SMax Reitz } 714733384421SMax Reitz 714833384421SMax Reitz abort(); 714933384421SMax Reitz } 715033384421SMax Reitz 715177485434SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts, 7152d1402b50SMax Reitz BlockDriverAmendStatusCB *status_cb, void *cb_opaque, 7153a3579bfaSMaxim Levitsky bool force, 7154d1402b50SMax Reitz Error **errp) 71556f176b48SMax Reitz { 7156d470ad42SMax Reitz if (!bs->drv) { 7157d1402b50SMax Reitz error_setg(errp, "Node is ejected"); 7158d470ad42SMax Reitz return -ENOMEDIUM; 7159d470ad42SMax Reitz } 7160c282e1fdSChunyan Liu if (!bs->drv->bdrv_amend_options) { 7161d1402b50SMax Reitz error_setg(errp, "Block driver '%s' does not support option amendment", 7162d1402b50SMax Reitz bs->drv->format_name); 71636f176b48SMax Reitz return -ENOTSUP; 71646f176b48SMax Reitz } 7165a3579bfaSMaxim Levitsky return bs->drv->bdrv_amend_options(bs, opts, status_cb, 7166a3579bfaSMaxim Levitsky cb_opaque, force, errp); 71676f176b48SMax Reitz } 7168f6186f49SBenoît Canet 71695d69b5abSMax Reitz /* 71705d69b5abSMax Reitz * This function checks whether the given @to_replace is allowed to be 71715d69b5abSMax Reitz * replaced by a node that always shows the same data as @bs. This is 71725d69b5abSMax Reitz * used for example to verify whether the mirror job can replace 71735d69b5abSMax Reitz * @to_replace by the target mirrored from @bs. 71745d69b5abSMax Reitz * To be replaceable, @bs and @to_replace may either be guaranteed to 71755d69b5abSMax Reitz * always show the same data (because they are only connected through 71765d69b5abSMax Reitz * filters), or some driver may allow replacing one of its children 71775d69b5abSMax Reitz * because it can guarantee that this child's data is not visible at 71785d69b5abSMax Reitz * all (for example, for dissenting quorum children that have no other 71795d69b5abSMax Reitz * parents). 71805d69b5abSMax Reitz */ 71815d69b5abSMax Reitz bool bdrv_recurse_can_replace(BlockDriverState *bs, 71825d69b5abSMax Reitz BlockDriverState *to_replace) 71835d69b5abSMax Reitz { 718493393e69SMax Reitz BlockDriverState *filtered; 718593393e69SMax Reitz 71865d69b5abSMax Reitz if (!bs || !bs->drv) { 71875d69b5abSMax Reitz return false; 71885d69b5abSMax Reitz } 71895d69b5abSMax Reitz 71905d69b5abSMax Reitz if (bs == to_replace) { 71915d69b5abSMax Reitz return true; 71925d69b5abSMax Reitz } 71935d69b5abSMax Reitz 71945d69b5abSMax Reitz /* See what the driver can do */ 71955d69b5abSMax Reitz if (bs->drv->bdrv_recurse_can_replace) { 71965d69b5abSMax Reitz return bs->drv->bdrv_recurse_can_replace(bs, to_replace); 71975d69b5abSMax Reitz } 71985d69b5abSMax Reitz 71995d69b5abSMax Reitz /* For filters without an own implementation, we can recurse on our own */ 720093393e69SMax Reitz filtered = bdrv_filter_bs(bs); 720193393e69SMax Reitz if (filtered) { 720293393e69SMax Reitz return bdrv_recurse_can_replace(filtered, to_replace); 72035d69b5abSMax Reitz } 72045d69b5abSMax Reitz 72055d69b5abSMax Reitz /* Safe default */ 72065d69b5abSMax Reitz return false; 72075d69b5abSMax Reitz } 72085d69b5abSMax Reitz 7209810803a8SMax Reitz /* 7210810803a8SMax Reitz * Check whether the given @node_name can be replaced by a node that 7211810803a8SMax Reitz * has the same data as @parent_bs. If so, return @node_name's BDS; 7212810803a8SMax Reitz * NULL otherwise. 7213810803a8SMax Reitz * 7214810803a8SMax Reitz * @node_name must be a (recursive) *child of @parent_bs (or this 7215810803a8SMax Reitz * function will return NULL). 7216810803a8SMax Reitz * 7217810803a8SMax Reitz * The result (whether the node can be replaced or not) is only valid 7218810803a8SMax Reitz * for as long as no graph or permission changes occur. 7219810803a8SMax Reitz */ 7220e12f3784SWen Congyang BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs, 7221e12f3784SWen Congyang const char *node_name, Error **errp) 722209158f00SBenoît Canet { 722309158f00SBenoît Canet BlockDriverState *to_replace_bs = bdrv_find_node(node_name); 72245a7e7a0bSStefan Hajnoczi AioContext *aio_context; 72255a7e7a0bSStefan Hajnoczi 722609158f00SBenoît Canet if (!to_replace_bs) { 7227785ec4b1SConnor Kuehl error_setg(errp, "Failed to find node with node-name='%s'", node_name); 722809158f00SBenoît Canet return NULL; 722909158f00SBenoît Canet } 723009158f00SBenoît Canet 72315a7e7a0bSStefan Hajnoczi aio_context = bdrv_get_aio_context(to_replace_bs); 72325a7e7a0bSStefan Hajnoczi aio_context_acquire(aio_context); 72335a7e7a0bSStefan Hajnoczi 723409158f00SBenoît Canet if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) { 72355a7e7a0bSStefan Hajnoczi to_replace_bs = NULL; 72365a7e7a0bSStefan Hajnoczi goto out; 723709158f00SBenoît Canet } 723809158f00SBenoît Canet 723909158f00SBenoît Canet /* We don't want arbitrary node of the BDS chain to be replaced only the top 724009158f00SBenoît Canet * most non filter in order to prevent data corruption. 724109158f00SBenoît Canet * Another benefit is that this tests exclude backing files which are 724209158f00SBenoît Canet * blocked by the backing blockers. 724309158f00SBenoît Canet */ 7244810803a8SMax Reitz if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) { 7245810803a8SMax Reitz error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', " 7246810803a8SMax Reitz "because it cannot be guaranteed that doing so would not " 7247810803a8SMax Reitz "lead to an abrupt change of visible data", 7248810803a8SMax Reitz node_name, parent_bs->node_name); 72495a7e7a0bSStefan Hajnoczi to_replace_bs = NULL; 72505a7e7a0bSStefan Hajnoczi goto out; 725109158f00SBenoît Canet } 725209158f00SBenoît Canet 72535a7e7a0bSStefan Hajnoczi out: 72545a7e7a0bSStefan Hajnoczi aio_context_release(aio_context); 725509158f00SBenoît Canet return to_replace_bs; 725609158f00SBenoît Canet } 7257448ad91dSMing Lei 725897e2f021SMax Reitz /** 725997e2f021SMax Reitz * Iterates through the list of runtime option keys that are said to 726097e2f021SMax Reitz * be "strong" for a BDS. An option is called "strong" if it changes 726197e2f021SMax Reitz * a BDS's data. For example, the null block driver's "size" and 726297e2f021SMax Reitz * "read-zeroes" options are strong, but its "latency-ns" option is 726397e2f021SMax Reitz * not. 726497e2f021SMax Reitz * 726597e2f021SMax Reitz * If a key returned by this function ends with a dot, all options 726697e2f021SMax Reitz * starting with that prefix are strong. 726797e2f021SMax Reitz */ 726897e2f021SMax Reitz static const char *const *strong_options(BlockDriverState *bs, 726997e2f021SMax Reitz const char *const *curopt) 727097e2f021SMax Reitz { 727197e2f021SMax Reitz static const char *const global_options[] = { 727297e2f021SMax Reitz "driver", "filename", NULL 727397e2f021SMax Reitz }; 727497e2f021SMax Reitz 727597e2f021SMax Reitz if (!curopt) { 727697e2f021SMax Reitz return &global_options[0]; 727797e2f021SMax Reitz } 727897e2f021SMax Reitz 727997e2f021SMax Reitz curopt++; 728097e2f021SMax Reitz if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) { 728197e2f021SMax Reitz curopt = bs->drv->strong_runtime_opts; 728297e2f021SMax Reitz } 728397e2f021SMax Reitz 728497e2f021SMax Reitz return (curopt && *curopt) ? curopt : NULL; 728597e2f021SMax Reitz } 728697e2f021SMax Reitz 728797e2f021SMax Reitz /** 728897e2f021SMax Reitz * Copies all strong runtime options from bs->options to the given 728997e2f021SMax Reitz * QDict. The set of strong option keys is determined by invoking 729097e2f021SMax Reitz * strong_options(). 729197e2f021SMax Reitz * 729297e2f021SMax Reitz * Returns true iff any strong option was present in bs->options (and 729397e2f021SMax Reitz * thus copied to the target QDict) with the exception of "filename" 729497e2f021SMax Reitz * and "driver". The caller is expected to use this value to decide 729597e2f021SMax Reitz * whether the existence of strong options prevents the generation of 729697e2f021SMax Reitz * a plain filename. 729797e2f021SMax Reitz */ 729897e2f021SMax Reitz static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs) 729997e2f021SMax Reitz { 730097e2f021SMax Reitz bool found_any = false; 730197e2f021SMax Reitz const char *const *option_name = NULL; 730297e2f021SMax Reitz 730397e2f021SMax Reitz if (!bs->drv) { 730497e2f021SMax Reitz return false; 730597e2f021SMax Reitz } 730697e2f021SMax Reitz 730797e2f021SMax Reitz while ((option_name = strong_options(bs, option_name))) { 730897e2f021SMax Reitz bool option_given = false; 730997e2f021SMax Reitz 731097e2f021SMax Reitz assert(strlen(*option_name) > 0); 731197e2f021SMax Reitz if ((*option_name)[strlen(*option_name) - 1] != '.') { 731297e2f021SMax Reitz QObject *entry = qdict_get(bs->options, *option_name); 731397e2f021SMax Reitz if (!entry) { 731497e2f021SMax Reitz continue; 731597e2f021SMax Reitz } 731697e2f021SMax Reitz 731797e2f021SMax Reitz qdict_put_obj(d, *option_name, qobject_ref(entry)); 731897e2f021SMax Reitz option_given = true; 731997e2f021SMax Reitz } else { 732097e2f021SMax Reitz const QDictEntry *entry; 732197e2f021SMax Reitz for (entry = qdict_first(bs->options); entry; 732297e2f021SMax Reitz entry = qdict_next(bs->options, entry)) 732397e2f021SMax Reitz { 732497e2f021SMax Reitz if (strstart(qdict_entry_key(entry), *option_name, NULL)) { 732597e2f021SMax Reitz qdict_put_obj(d, qdict_entry_key(entry), 732697e2f021SMax Reitz qobject_ref(qdict_entry_value(entry))); 732797e2f021SMax Reitz option_given = true; 732897e2f021SMax Reitz } 732997e2f021SMax Reitz } 733097e2f021SMax Reitz } 733197e2f021SMax Reitz 733297e2f021SMax Reitz /* While "driver" and "filename" need to be included in a JSON filename, 733397e2f021SMax Reitz * their existence does not prohibit generation of a plain filename. */ 733497e2f021SMax Reitz if (!found_any && option_given && 733597e2f021SMax Reitz strcmp(*option_name, "driver") && strcmp(*option_name, "filename")) 733697e2f021SMax Reitz { 733797e2f021SMax Reitz found_any = true; 733897e2f021SMax Reitz } 733997e2f021SMax Reitz } 734097e2f021SMax Reitz 734162a01a27SMax Reitz if (!qdict_haskey(d, "driver")) { 734262a01a27SMax Reitz /* Drivers created with bdrv_new_open_driver() may not have a 734362a01a27SMax Reitz * @driver option. Add it here. */ 734462a01a27SMax Reitz qdict_put_str(d, "driver", bs->drv->format_name); 734562a01a27SMax Reitz } 734662a01a27SMax Reitz 734797e2f021SMax Reitz return found_any; 734897e2f021SMax Reitz } 734997e2f021SMax Reitz 735090993623SMax Reitz /* Note: This function may return false positives; it may return true 735190993623SMax Reitz * even if opening the backing file specified by bs's image header 735290993623SMax Reitz * would result in exactly bs->backing. */ 73530b877d09SMax Reitz bool bdrv_backing_overridden(BlockDriverState *bs) 735490993623SMax Reitz { 735590993623SMax Reitz if (bs->backing) { 735690993623SMax Reitz return strcmp(bs->auto_backing_file, 735790993623SMax Reitz bs->backing->bs->filename); 735890993623SMax Reitz } else { 735990993623SMax Reitz /* No backing BDS, so if the image header reports any backing 736090993623SMax Reitz * file, it must have been suppressed */ 736190993623SMax Reitz return bs->auto_backing_file[0] != '\0'; 736290993623SMax Reitz } 736390993623SMax Reitz } 736490993623SMax Reitz 736591af7014SMax Reitz /* Updates the following BDS fields: 736691af7014SMax Reitz * - exact_filename: A filename which may be used for opening a block device 736791af7014SMax Reitz * which (mostly) equals the given BDS (even without any 736891af7014SMax Reitz * other options; so reading and writing must return the same 736991af7014SMax Reitz * results, but caching etc. may be different) 737091af7014SMax Reitz * - full_open_options: Options which, when given when opening a block device 737191af7014SMax Reitz * (without a filename), result in a BDS (mostly) 737291af7014SMax Reitz * equalling the given one 737391af7014SMax Reitz * - filename: If exact_filename is set, it is copied here. Otherwise, 737491af7014SMax Reitz * full_open_options is converted to a JSON object, prefixed with 737591af7014SMax Reitz * "json:" (for use through the JSON pseudo protocol) and put here. 737691af7014SMax Reitz */ 737791af7014SMax Reitz void bdrv_refresh_filename(BlockDriverState *bs) 737891af7014SMax Reitz { 737991af7014SMax Reitz BlockDriver *drv = bs->drv; 7380e24518e3SMax Reitz BdrvChild *child; 738152f72d6fSMax Reitz BlockDriverState *primary_child_bs; 738291af7014SMax Reitz QDict *opts; 738390993623SMax Reitz bool backing_overridden; 7384998b3a1eSMax Reitz bool generate_json_filename; /* Whether our default implementation should 7385998b3a1eSMax Reitz fill exact_filename (false) or not (true) */ 738691af7014SMax Reitz 738791af7014SMax Reitz if (!drv) { 738891af7014SMax Reitz return; 738991af7014SMax Reitz } 739091af7014SMax Reitz 7391e24518e3SMax Reitz /* This BDS's file name may depend on any of its children's file names, so 7392e24518e3SMax Reitz * refresh those first */ 7393e24518e3SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 7394e24518e3SMax Reitz bdrv_refresh_filename(child->bs); 739591af7014SMax Reitz } 739691af7014SMax Reitz 7397bb808d5fSMax Reitz if (bs->implicit) { 7398bb808d5fSMax Reitz /* For implicit nodes, just copy everything from the single child */ 7399bb808d5fSMax Reitz child = QLIST_FIRST(&bs->children); 7400bb808d5fSMax Reitz assert(QLIST_NEXT(child, next) == NULL); 7401bb808d5fSMax Reitz 7402bb808d5fSMax Reitz pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), 7403bb808d5fSMax Reitz child->bs->exact_filename); 7404bb808d5fSMax Reitz pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename); 7405bb808d5fSMax Reitz 7406cb895614SPan Nengyuan qobject_unref(bs->full_open_options); 7407bb808d5fSMax Reitz bs->full_open_options = qobject_ref(child->bs->full_open_options); 7408bb808d5fSMax Reitz 7409bb808d5fSMax Reitz return; 7410bb808d5fSMax Reitz } 7411bb808d5fSMax Reitz 741290993623SMax Reitz backing_overridden = bdrv_backing_overridden(bs); 741390993623SMax Reitz 741490993623SMax Reitz if (bs->open_flags & BDRV_O_NO_IO) { 741590993623SMax Reitz /* Without I/O, the backing file does not change anything. 741690993623SMax Reitz * Therefore, in such a case (primarily qemu-img), we can 741790993623SMax Reitz * pretend the backing file has not been overridden even if 741890993623SMax Reitz * it technically has been. */ 741990993623SMax Reitz backing_overridden = false; 742090993623SMax Reitz } 742190993623SMax Reitz 742297e2f021SMax Reitz /* Gather the options QDict */ 742397e2f021SMax Reitz opts = qdict_new(); 7424998b3a1eSMax Reitz generate_json_filename = append_strong_runtime_options(opts, bs); 7425998b3a1eSMax Reitz generate_json_filename |= backing_overridden; 742697e2f021SMax Reitz 742797e2f021SMax Reitz if (drv->bdrv_gather_child_options) { 742897e2f021SMax Reitz /* Some block drivers may not want to present all of their children's 742997e2f021SMax Reitz * options, or name them differently from BdrvChild.name */ 743097e2f021SMax Reitz drv->bdrv_gather_child_options(bs, opts, backing_overridden); 743197e2f021SMax Reitz } else { 743297e2f021SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 743325191e5fSMax Reitz if (child == bs->backing && !backing_overridden) { 743497e2f021SMax Reitz /* We can skip the backing BDS if it has not been overridden */ 743597e2f021SMax Reitz continue; 743697e2f021SMax Reitz } 743797e2f021SMax Reitz 743897e2f021SMax Reitz qdict_put(opts, child->name, 743997e2f021SMax Reitz qobject_ref(child->bs->full_open_options)); 744097e2f021SMax Reitz } 744197e2f021SMax Reitz 744297e2f021SMax Reitz if (backing_overridden && !bs->backing) { 744397e2f021SMax Reitz /* Force no backing file */ 744497e2f021SMax Reitz qdict_put_null(opts, "backing"); 744597e2f021SMax Reitz } 744697e2f021SMax Reitz } 744797e2f021SMax Reitz 744897e2f021SMax Reitz qobject_unref(bs->full_open_options); 744997e2f021SMax Reitz bs->full_open_options = opts; 745097e2f021SMax Reitz 745152f72d6fSMax Reitz primary_child_bs = bdrv_primary_bs(bs); 745252f72d6fSMax Reitz 7453998b3a1eSMax Reitz if (drv->bdrv_refresh_filename) { 7454998b3a1eSMax Reitz /* Obsolete information is of no use here, so drop the old file name 7455998b3a1eSMax Reitz * information before refreshing it */ 7456998b3a1eSMax Reitz bs->exact_filename[0] = '\0'; 7457998b3a1eSMax Reitz 7458998b3a1eSMax Reitz drv->bdrv_refresh_filename(bs); 745952f72d6fSMax Reitz } else if (primary_child_bs) { 746052f72d6fSMax Reitz /* 746152f72d6fSMax Reitz * Try to reconstruct valid information from the underlying 746252f72d6fSMax Reitz * file -- this only works for format nodes (filter nodes 746352f72d6fSMax Reitz * cannot be probed and as such must be selected by the user 746452f72d6fSMax Reitz * either through an options dict, or through a special 746552f72d6fSMax Reitz * filename which the filter driver must construct in its 746652f72d6fSMax Reitz * .bdrv_refresh_filename() implementation). 746752f72d6fSMax Reitz */ 7468998b3a1eSMax Reitz 7469998b3a1eSMax Reitz bs->exact_filename[0] = '\0'; 7470998b3a1eSMax Reitz 7471fb695c74SMax Reitz /* 7472fb695c74SMax Reitz * We can use the underlying file's filename if: 7473fb695c74SMax Reitz * - it has a filename, 747452f72d6fSMax Reitz * - the current BDS is not a filter, 7475fb695c74SMax Reitz * - the file is a protocol BDS, and 7476fb695c74SMax Reitz * - opening that file (as this BDS's format) will automatically create 7477fb695c74SMax Reitz * the BDS tree we have right now, that is: 7478fb695c74SMax Reitz * - the user did not significantly change this BDS's behavior with 7479fb695c74SMax Reitz * some explicit (strong) options 7480fb695c74SMax Reitz * - no non-file child of this BDS has been overridden by the user 7481fb695c74SMax Reitz * Both of these conditions are represented by generate_json_filename. 7482fb695c74SMax Reitz */ 748352f72d6fSMax Reitz if (primary_child_bs->exact_filename[0] && 748452f72d6fSMax Reitz primary_child_bs->drv->bdrv_file_open && 748552f72d6fSMax Reitz !drv->is_filter && !generate_json_filename) 7486fb695c74SMax Reitz { 748752f72d6fSMax Reitz strcpy(bs->exact_filename, primary_child_bs->exact_filename); 7488998b3a1eSMax Reitz } 7489998b3a1eSMax Reitz } 7490998b3a1eSMax Reitz 749191af7014SMax Reitz if (bs->exact_filename[0]) { 749291af7014SMax Reitz pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename); 749397e2f021SMax Reitz } else { 7494eab3a467SMarkus Armbruster GString *json = qobject_to_json(QOBJECT(bs->full_open_options)); 74955c86bdf1SEric Blake if (snprintf(bs->filename, sizeof(bs->filename), "json:%s", 7496eab3a467SMarkus Armbruster json->str) >= sizeof(bs->filename)) { 74975c86bdf1SEric Blake /* Give user a hint if we truncated things. */ 74985c86bdf1SEric Blake strcpy(bs->filename + sizeof(bs->filename) - 4, "..."); 74995c86bdf1SEric Blake } 7500eab3a467SMarkus Armbruster g_string_free(json, true); 750191af7014SMax Reitz } 750291af7014SMax Reitz } 7503e06018adSWen Congyang 75041e89d0f9SMax Reitz char *bdrv_dirname(BlockDriverState *bs, Error **errp) 75051e89d0f9SMax Reitz { 75061e89d0f9SMax Reitz BlockDriver *drv = bs->drv; 750752f72d6fSMax Reitz BlockDriverState *child_bs; 75081e89d0f9SMax Reitz 75091e89d0f9SMax Reitz if (!drv) { 75101e89d0f9SMax Reitz error_setg(errp, "Node '%s' is ejected", bs->node_name); 75111e89d0f9SMax Reitz return NULL; 75121e89d0f9SMax Reitz } 75131e89d0f9SMax Reitz 75141e89d0f9SMax Reitz if (drv->bdrv_dirname) { 75151e89d0f9SMax Reitz return drv->bdrv_dirname(bs, errp); 75161e89d0f9SMax Reitz } 75171e89d0f9SMax Reitz 751852f72d6fSMax Reitz child_bs = bdrv_primary_bs(bs); 751952f72d6fSMax Reitz if (child_bs) { 752052f72d6fSMax Reitz return bdrv_dirname(child_bs, errp); 75211e89d0f9SMax Reitz } 75221e89d0f9SMax Reitz 75231e89d0f9SMax Reitz bdrv_refresh_filename(bs); 75241e89d0f9SMax Reitz if (bs->exact_filename[0] != '\0') { 75251e89d0f9SMax Reitz return path_combine(bs->exact_filename, ""); 75261e89d0f9SMax Reitz } 75271e89d0f9SMax Reitz 75281e89d0f9SMax Reitz error_setg(errp, "Cannot generate a base directory for %s nodes", 75291e89d0f9SMax Reitz drv->format_name); 75301e89d0f9SMax Reitz return NULL; 75311e89d0f9SMax Reitz } 75321e89d0f9SMax Reitz 7533e06018adSWen Congyang /* 7534e06018adSWen Congyang * Hot add/remove a BDS's child. So the user can take a child offline when 7535e06018adSWen Congyang * it is broken and take a new child online 7536e06018adSWen Congyang */ 7537e06018adSWen Congyang void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs, 7538e06018adSWen Congyang Error **errp) 7539e06018adSWen Congyang { 7540e06018adSWen Congyang 7541e06018adSWen Congyang if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) { 7542e06018adSWen Congyang error_setg(errp, "The node %s does not support adding a child", 7543e06018adSWen Congyang bdrv_get_device_or_node_name(parent_bs)); 7544e06018adSWen Congyang return; 7545e06018adSWen Congyang } 7546e06018adSWen Congyang 7547e06018adSWen Congyang if (!QLIST_EMPTY(&child_bs->parents)) { 7548e06018adSWen Congyang error_setg(errp, "The node %s already has a parent", 7549e06018adSWen Congyang child_bs->node_name); 7550e06018adSWen Congyang return; 7551e06018adSWen Congyang } 7552e06018adSWen Congyang 7553e06018adSWen Congyang parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp); 7554e06018adSWen Congyang } 7555e06018adSWen Congyang 7556e06018adSWen Congyang void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp) 7557e06018adSWen Congyang { 7558e06018adSWen Congyang BdrvChild *tmp; 7559e06018adSWen Congyang 7560e06018adSWen Congyang if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) { 7561e06018adSWen Congyang error_setg(errp, "The node %s does not support removing a child", 7562e06018adSWen Congyang bdrv_get_device_or_node_name(parent_bs)); 7563e06018adSWen Congyang return; 7564e06018adSWen Congyang } 7565e06018adSWen Congyang 7566e06018adSWen Congyang QLIST_FOREACH(tmp, &parent_bs->children, next) { 7567e06018adSWen Congyang if (tmp == child) { 7568e06018adSWen Congyang break; 7569e06018adSWen Congyang } 7570e06018adSWen Congyang } 7571e06018adSWen Congyang 7572e06018adSWen Congyang if (!tmp) { 7573e06018adSWen Congyang error_setg(errp, "The node %s does not have a child named %s", 7574e06018adSWen Congyang bdrv_get_device_or_node_name(parent_bs), 7575e06018adSWen Congyang bdrv_get_device_or_node_name(child->bs)); 7576e06018adSWen Congyang return; 7577e06018adSWen Congyang } 7578e06018adSWen Congyang 7579e06018adSWen Congyang parent_bs->drv->bdrv_del_child(parent_bs, child, errp); 7580e06018adSWen Congyang } 75816f7a3b53SMax Reitz 75826f7a3b53SMax Reitz int bdrv_make_empty(BdrvChild *c, Error **errp) 75836f7a3b53SMax Reitz { 75846f7a3b53SMax Reitz BlockDriver *drv = c->bs->drv; 75856f7a3b53SMax Reitz int ret; 75866f7a3b53SMax Reitz 75876f7a3b53SMax Reitz assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)); 75886f7a3b53SMax Reitz 75896f7a3b53SMax Reitz if (!drv->bdrv_make_empty) { 75906f7a3b53SMax Reitz error_setg(errp, "%s does not support emptying nodes", 75916f7a3b53SMax Reitz drv->format_name); 75926f7a3b53SMax Reitz return -ENOTSUP; 75936f7a3b53SMax Reitz } 75946f7a3b53SMax Reitz 75956f7a3b53SMax Reitz ret = drv->bdrv_make_empty(c->bs); 75966f7a3b53SMax Reitz if (ret < 0) { 75976f7a3b53SMax Reitz error_setg_errno(errp, -ret, "Failed to empty %s", 75986f7a3b53SMax Reitz c->bs->filename); 75996f7a3b53SMax Reitz return ret; 76006f7a3b53SMax Reitz } 76016f7a3b53SMax Reitz 76026f7a3b53SMax Reitz return 0; 76036f7a3b53SMax Reitz } 76049a6fc887SMax Reitz 76059a6fc887SMax Reitz /* 76069a6fc887SMax Reitz * Return the child that @bs acts as an overlay for, and from which data may be 76079a6fc887SMax Reitz * copied in COW or COR operations. Usually this is the backing file. 76089a6fc887SMax Reitz */ 76099a6fc887SMax Reitz BdrvChild *bdrv_cow_child(BlockDriverState *bs) 76109a6fc887SMax Reitz { 76119a6fc887SMax Reitz if (!bs || !bs->drv) { 76129a6fc887SMax Reitz return NULL; 76139a6fc887SMax Reitz } 76149a6fc887SMax Reitz 76159a6fc887SMax Reitz if (bs->drv->is_filter) { 76169a6fc887SMax Reitz return NULL; 76179a6fc887SMax Reitz } 76189a6fc887SMax Reitz 76199a6fc887SMax Reitz if (!bs->backing) { 76209a6fc887SMax Reitz return NULL; 76219a6fc887SMax Reitz } 76229a6fc887SMax Reitz 76239a6fc887SMax Reitz assert(bs->backing->role & BDRV_CHILD_COW); 76249a6fc887SMax Reitz return bs->backing; 76259a6fc887SMax Reitz } 76269a6fc887SMax Reitz 76279a6fc887SMax Reitz /* 76289a6fc887SMax Reitz * If @bs acts as a filter for exactly one of its children, return 76299a6fc887SMax Reitz * that child. 76309a6fc887SMax Reitz */ 76319a6fc887SMax Reitz BdrvChild *bdrv_filter_child(BlockDriverState *bs) 76329a6fc887SMax Reitz { 76339a6fc887SMax Reitz BdrvChild *c; 76349a6fc887SMax Reitz 76359a6fc887SMax Reitz if (!bs || !bs->drv) { 76369a6fc887SMax Reitz return NULL; 76379a6fc887SMax Reitz } 76389a6fc887SMax Reitz 76399a6fc887SMax Reitz if (!bs->drv->is_filter) { 76409a6fc887SMax Reitz return NULL; 76419a6fc887SMax Reitz } 76429a6fc887SMax Reitz 76439a6fc887SMax Reitz /* Only one of @backing or @file may be used */ 76449a6fc887SMax Reitz assert(!(bs->backing && bs->file)); 76459a6fc887SMax Reitz 76469a6fc887SMax Reitz c = bs->backing ?: bs->file; 76479a6fc887SMax Reitz if (!c) { 76489a6fc887SMax Reitz return NULL; 76499a6fc887SMax Reitz } 76509a6fc887SMax Reitz 76519a6fc887SMax Reitz assert(c->role & BDRV_CHILD_FILTERED); 76529a6fc887SMax Reitz return c; 76539a6fc887SMax Reitz } 76549a6fc887SMax Reitz 76559a6fc887SMax Reitz /* 76569a6fc887SMax Reitz * Return either the result of bdrv_cow_child() or bdrv_filter_child(), 76579a6fc887SMax Reitz * whichever is non-NULL. 76589a6fc887SMax Reitz * 76599a6fc887SMax Reitz * Return NULL if both are NULL. 76609a6fc887SMax Reitz */ 76619a6fc887SMax Reitz BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs) 76629a6fc887SMax Reitz { 76639a6fc887SMax Reitz BdrvChild *cow_child = bdrv_cow_child(bs); 76649a6fc887SMax Reitz BdrvChild *filter_child = bdrv_filter_child(bs); 76659a6fc887SMax Reitz 76669a6fc887SMax Reitz /* Filter nodes cannot have COW backing files */ 76679a6fc887SMax Reitz assert(!(cow_child && filter_child)); 76689a6fc887SMax Reitz 76699a6fc887SMax Reitz return cow_child ?: filter_child; 76709a6fc887SMax Reitz } 76719a6fc887SMax Reitz 76729a6fc887SMax Reitz /* 76739a6fc887SMax Reitz * Return the primary child of this node: For filters, that is the 76749a6fc887SMax Reitz * filtered child. For other nodes, that is usually the child storing 76759a6fc887SMax Reitz * metadata. 76769a6fc887SMax Reitz * (A generally more helpful description is that this is (usually) the 76779a6fc887SMax Reitz * child that has the same filename as @bs.) 76789a6fc887SMax Reitz * 76799a6fc887SMax Reitz * Drivers do not necessarily have a primary child; for example quorum 76809a6fc887SMax Reitz * does not. 76819a6fc887SMax Reitz */ 76829a6fc887SMax Reitz BdrvChild *bdrv_primary_child(BlockDriverState *bs) 76839a6fc887SMax Reitz { 76849a6fc887SMax Reitz BdrvChild *c, *found = NULL; 76859a6fc887SMax Reitz 76869a6fc887SMax Reitz QLIST_FOREACH(c, &bs->children, next) { 76879a6fc887SMax Reitz if (c->role & BDRV_CHILD_PRIMARY) { 76889a6fc887SMax Reitz assert(!found); 76899a6fc887SMax Reitz found = c; 76909a6fc887SMax Reitz } 76919a6fc887SMax Reitz } 76929a6fc887SMax Reitz 76939a6fc887SMax Reitz return found; 76949a6fc887SMax Reitz } 7695d38d7eb8SMax Reitz 7696d38d7eb8SMax Reitz static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs, 7697d38d7eb8SMax Reitz bool stop_on_explicit_filter) 7698d38d7eb8SMax Reitz { 7699d38d7eb8SMax Reitz BdrvChild *c; 7700d38d7eb8SMax Reitz 7701d38d7eb8SMax Reitz if (!bs) { 7702d38d7eb8SMax Reitz return NULL; 7703d38d7eb8SMax Reitz } 7704d38d7eb8SMax Reitz 7705d38d7eb8SMax Reitz while (!(stop_on_explicit_filter && !bs->implicit)) { 7706d38d7eb8SMax Reitz c = bdrv_filter_child(bs); 7707d38d7eb8SMax Reitz if (!c) { 7708d38d7eb8SMax Reitz /* 7709d38d7eb8SMax Reitz * A filter that is embedded in a working block graph must 7710d38d7eb8SMax Reitz * have a child. Assert this here so this function does 7711d38d7eb8SMax Reitz * not return a filter node that is not expected by the 7712d38d7eb8SMax Reitz * caller. 7713d38d7eb8SMax Reitz */ 7714d38d7eb8SMax Reitz assert(!bs->drv || !bs->drv->is_filter); 7715d38d7eb8SMax Reitz break; 7716d38d7eb8SMax Reitz } 7717d38d7eb8SMax Reitz bs = c->bs; 7718d38d7eb8SMax Reitz } 7719d38d7eb8SMax Reitz /* 7720d38d7eb8SMax Reitz * Note that this treats nodes with bs->drv == NULL as not being 7721d38d7eb8SMax Reitz * filters (bs->drv == NULL should be replaced by something else 7722d38d7eb8SMax Reitz * anyway). 7723d38d7eb8SMax Reitz * The advantage of this behavior is that this function will thus 7724d38d7eb8SMax Reitz * always return a non-NULL value (given a non-NULL @bs). 7725d38d7eb8SMax Reitz */ 7726d38d7eb8SMax Reitz 7727d38d7eb8SMax Reitz return bs; 7728d38d7eb8SMax Reitz } 7729d38d7eb8SMax Reitz 7730d38d7eb8SMax Reitz /* 7731d38d7eb8SMax Reitz * Return the first BDS that has not been added implicitly or that 7732d38d7eb8SMax Reitz * does not have a filtered child down the chain starting from @bs 7733d38d7eb8SMax Reitz * (including @bs itself). 7734d38d7eb8SMax Reitz */ 7735d38d7eb8SMax Reitz BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs) 7736d38d7eb8SMax Reitz { 7737d38d7eb8SMax Reitz return bdrv_do_skip_filters(bs, true); 7738d38d7eb8SMax Reitz } 7739d38d7eb8SMax Reitz 7740d38d7eb8SMax Reitz /* 7741d38d7eb8SMax Reitz * Return the first BDS that does not have a filtered child down the 7742d38d7eb8SMax Reitz * chain starting from @bs (including @bs itself). 7743d38d7eb8SMax Reitz */ 7744d38d7eb8SMax Reitz BlockDriverState *bdrv_skip_filters(BlockDriverState *bs) 7745d38d7eb8SMax Reitz { 7746d38d7eb8SMax Reitz return bdrv_do_skip_filters(bs, false); 7747d38d7eb8SMax Reitz } 7748d38d7eb8SMax Reitz 7749d38d7eb8SMax Reitz /* 7750d38d7eb8SMax Reitz * For a backing chain, return the first non-filter backing image of 7751d38d7eb8SMax Reitz * the first non-filter image. 7752d38d7eb8SMax Reitz */ 7753d38d7eb8SMax Reitz BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs) 7754d38d7eb8SMax Reitz { 7755d38d7eb8SMax Reitz return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs))); 7756d38d7eb8SMax Reitz } 77570bc329fbSHanna Reitz 77580bc329fbSHanna Reitz /** 77590bc329fbSHanna Reitz * Check whether [offset, offset + bytes) overlaps with the cached 77600bc329fbSHanna Reitz * block-status data region. 77610bc329fbSHanna Reitz * 77620bc329fbSHanna Reitz * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`, 77630bc329fbSHanna Reitz * which is what bdrv_bsc_is_data()'s interface needs. 77640bc329fbSHanna Reitz * Otherwise, *pnum is not touched. 77650bc329fbSHanna Reitz */ 77660bc329fbSHanna Reitz static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs, 77670bc329fbSHanna Reitz int64_t offset, int64_t bytes, 77680bc329fbSHanna Reitz int64_t *pnum) 77690bc329fbSHanna Reitz { 77700bc329fbSHanna Reitz BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache); 77710bc329fbSHanna Reitz bool overlaps; 77720bc329fbSHanna Reitz 77730bc329fbSHanna Reitz overlaps = 77740bc329fbSHanna Reitz qatomic_read(&bsc->valid) && 77750bc329fbSHanna Reitz ranges_overlap(offset, bytes, bsc->data_start, 77760bc329fbSHanna Reitz bsc->data_end - bsc->data_start); 77770bc329fbSHanna Reitz 77780bc329fbSHanna Reitz if (overlaps && pnum) { 77790bc329fbSHanna Reitz *pnum = bsc->data_end - offset; 77800bc329fbSHanna Reitz } 77810bc329fbSHanna Reitz 77820bc329fbSHanna Reitz return overlaps; 77830bc329fbSHanna Reitz } 77840bc329fbSHanna Reitz 77850bc329fbSHanna Reitz /** 77860bc329fbSHanna Reitz * See block_int.h for this function's documentation. 77870bc329fbSHanna Reitz */ 77880bc329fbSHanna Reitz bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum) 77890bc329fbSHanna Reitz { 77900bc329fbSHanna Reitz RCU_READ_LOCK_GUARD(); 77910bc329fbSHanna Reitz 77920bc329fbSHanna Reitz return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum); 77930bc329fbSHanna Reitz } 77940bc329fbSHanna Reitz 77950bc329fbSHanna Reitz /** 77960bc329fbSHanna Reitz * See block_int.h for this function's documentation. 77970bc329fbSHanna Reitz */ 77980bc329fbSHanna Reitz void bdrv_bsc_invalidate_range(BlockDriverState *bs, 77990bc329fbSHanna Reitz int64_t offset, int64_t bytes) 78000bc329fbSHanna Reitz { 78010bc329fbSHanna Reitz RCU_READ_LOCK_GUARD(); 78020bc329fbSHanna Reitz 78030bc329fbSHanna Reitz if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) { 78040bc329fbSHanna Reitz qatomic_set(&bs->block_status_cache->valid, false); 78050bc329fbSHanna Reitz } 78060bc329fbSHanna Reitz } 78070bc329fbSHanna Reitz 78080bc329fbSHanna Reitz /** 78090bc329fbSHanna Reitz * See block_int.h for this function's documentation. 78100bc329fbSHanna Reitz */ 78110bc329fbSHanna Reitz void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes) 78120bc329fbSHanna Reitz { 78130bc329fbSHanna Reitz BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1); 78140bc329fbSHanna Reitz BdrvBlockStatusCache *old_bsc; 78150bc329fbSHanna Reitz 78160bc329fbSHanna Reitz *new_bsc = (BdrvBlockStatusCache) { 78170bc329fbSHanna Reitz .valid = true, 78180bc329fbSHanna Reitz .data_start = offset, 78190bc329fbSHanna Reitz .data_end = offset + bytes, 78200bc329fbSHanna Reitz }; 78210bc329fbSHanna Reitz 78220bc329fbSHanna Reitz QEMU_LOCK_GUARD(&bs->bsc_modify_lock); 78230bc329fbSHanna Reitz 78240bc329fbSHanna Reitz old_bsc = qatomic_rcu_read(&bs->block_status_cache); 78250bc329fbSHanna Reitz qatomic_rcu_set(&bs->block_status_cache, new_bsc); 78260bc329fbSHanna Reitz if (old_bsc) { 78270bc329fbSHanna Reitz g_free_rcu(old_bsc, rcu); 78280bc329fbSHanna Reitz } 78290bc329fbSHanna Reitz } 7830