1fc01f7e7Sbellard /* 2fc01f7e7Sbellard * QEMU System Emulator block driver 3fc01f7e7Sbellard * 4fc01f7e7Sbellard * Copyright (c) 2003 Fabrice Bellard 5fc01f7e7Sbellard * 6fc01f7e7Sbellard * Permission is hereby granted, free of charge, to any person obtaining a copy 7fc01f7e7Sbellard * of this software and associated documentation files (the "Software"), to deal 8fc01f7e7Sbellard * in the Software without restriction, including without limitation the rights 9fc01f7e7Sbellard * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10fc01f7e7Sbellard * copies of the Software, and to permit persons to whom the Software is 11fc01f7e7Sbellard * furnished to do so, subject to the following conditions: 12fc01f7e7Sbellard * 13fc01f7e7Sbellard * The above copyright notice and this permission notice shall be included in 14fc01f7e7Sbellard * all copies or substantial portions of the Software. 15fc01f7e7Sbellard * 16fc01f7e7Sbellard * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17fc01f7e7Sbellard * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18fc01f7e7Sbellard * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19fc01f7e7Sbellard * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20fc01f7e7Sbellard * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21fc01f7e7Sbellard * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22fc01f7e7Sbellard * THE SOFTWARE. 23fc01f7e7Sbellard */ 24e688df6bSMarkus Armbruster 25d38ea87aSPeter Maydell #include "qemu/osdep.h" 260ab8ed18SDaniel P. Berrange #include "block/trace.h" 27737e150eSPaolo Bonzini #include "block/block_int.h" 28737e150eSPaolo Bonzini #include "block/blockjob.h" 29cd7fca95SKevin Wolf #include "block/nbd.h" 30*609f45eaSMax Reitz #include "block/qdict.h" 31d49b6836SMarkus Armbruster #include "qemu/error-report.h" 3288d88798SMarc Mari #include "module_block.h" 331de7afc9SPaolo Bonzini #include "qemu/module.h" 34e688df6bSMarkus Armbruster #include "qapi/error.h" 35452fcdbcSMarkus Armbruster #include "qapi/qmp/qdict.h" 367b1b5d19SPaolo Bonzini #include "qapi/qmp/qjson.h" 37e59a0cf1SMax Reitz #include "qapi/qmp/qnull.h" 38fc81fa1eSMarkus Armbruster #include "qapi/qmp/qstring.h" 39e1d74bc6SKevin Wolf #include "qapi/qobject-output-visitor.h" 40e1d74bc6SKevin Wolf #include "qapi/qapi-visit-block-core.h" 41bfb197e0SMarkus Armbruster #include "sysemu/block-backend.h" 429c17d615SPaolo Bonzini #include "sysemu/sysemu.h" 431de7afc9SPaolo Bonzini #include "qemu/notify.h" 44922a01a0SMarkus Armbruster #include "qemu/option.h" 4510817bf0SDaniel P. Berrange #include "qemu/coroutine.h" 46c13163fbSBenoît Canet #include "block/qapi.h" 471de7afc9SPaolo Bonzini #include "qemu/timer.h" 48f348b6d1SVeronia Bahaa #include "qemu/cutils.h" 49f348b6d1SVeronia Bahaa #include "qemu/id.h" 50fc01f7e7Sbellard 5171e72a19SJuan Quintela #ifdef CONFIG_BSD 527674e7bfSbellard #include <sys/ioctl.h> 5372cf2d4fSBlue Swirl #include <sys/queue.h> 54c5e97233Sblueswir1 #ifndef __DragonFly__ 557674e7bfSbellard #include <sys/disk.h> 567674e7bfSbellard #endif 57c5e97233Sblueswir1 #endif 587674e7bfSbellard 5949dc768dSaliguori #ifdef _WIN32 6049dc768dSaliguori #include <windows.h> 6149dc768dSaliguori #endif 6249dc768dSaliguori 631c9805a3SStefan Hajnoczi #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */ 641c9805a3SStefan Hajnoczi 65dc364f4cSBenoît Canet static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states = 66dc364f4cSBenoît Canet QTAILQ_HEAD_INITIALIZER(graph_bdrv_states); 67dc364f4cSBenoît Canet 682c1d04e0SMax Reitz static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states = 692c1d04e0SMax Reitz QTAILQ_HEAD_INITIALIZER(all_bdrv_states); 702c1d04e0SMax Reitz 718a22f02aSStefan Hajnoczi static QLIST_HEAD(, BlockDriver) bdrv_drivers = 728a22f02aSStefan Hajnoczi QLIST_HEAD_INITIALIZER(bdrv_drivers); 73ea2384d3Sbellard 745b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename, 755b363937SMax Reitz const char *reference, 765b363937SMax Reitz QDict *options, int flags, 77f3930ed0SKevin Wolf BlockDriverState *parent, 785b363937SMax Reitz const BdrvChildRole *child_role, 795b363937SMax Reitz Error **errp); 80f3930ed0SKevin Wolf 81eb852011SMarkus Armbruster /* If non-zero, use only whitelisted block drivers */ 82eb852011SMarkus Armbruster static int use_bdrv_whitelist; 83eb852011SMarkus Armbruster 849e0b22f4SStefan Hajnoczi #ifdef _WIN32 859e0b22f4SStefan Hajnoczi static int is_windows_drive_prefix(const char *filename) 869e0b22f4SStefan Hajnoczi { 879e0b22f4SStefan Hajnoczi return (((filename[0] >= 'a' && filename[0] <= 'z') || 889e0b22f4SStefan Hajnoczi (filename[0] >= 'A' && filename[0] <= 'Z')) && 899e0b22f4SStefan Hajnoczi filename[1] == ':'); 909e0b22f4SStefan Hajnoczi } 919e0b22f4SStefan Hajnoczi 929e0b22f4SStefan Hajnoczi int is_windows_drive(const char *filename) 939e0b22f4SStefan Hajnoczi { 949e0b22f4SStefan Hajnoczi if (is_windows_drive_prefix(filename) && 959e0b22f4SStefan Hajnoczi filename[2] == '\0') 969e0b22f4SStefan Hajnoczi return 1; 979e0b22f4SStefan Hajnoczi if (strstart(filename, "\\\\.\\", NULL) || 989e0b22f4SStefan Hajnoczi strstart(filename, "//./", NULL)) 999e0b22f4SStefan Hajnoczi return 1; 1009e0b22f4SStefan Hajnoczi return 0; 1019e0b22f4SStefan Hajnoczi } 1029e0b22f4SStefan Hajnoczi #endif 1039e0b22f4SStefan Hajnoczi 104339064d5SKevin Wolf size_t bdrv_opt_mem_align(BlockDriverState *bs) 105339064d5SKevin Wolf { 106339064d5SKevin Wolf if (!bs || !bs->drv) { 107459b4e66SDenis V. Lunev /* page size or 4k (hdd sector size) should be on the safe side */ 108459b4e66SDenis V. Lunev return MAX(4096, getpagesize()); 109339064d5SKevin Wolf } 110339064d5SKevin Wolf 111339064d5SKevin Wolf return bs->bl.opt_mem_alignment; 112339064d5SKevin Wolf } 113339064d5SKevin Wolf 1144196d2f0SDenis V. Lunev size_t bdrv_min_mem_align(BlockDriverState *bs) 1154196d2f0SDenis V. Lunev { 1164196d2f0SDenis V. Lunev if (!bs || !bs->drv) { 117459b4e66SDenis V. Lunev /* page size or 4k (hdd sector size) should be on the safe side */ 118459b4e66SDenis V. Lunev return MAX(4096, getpagesize()); 1194196d2f0SDenis V. Lunev } 1204196d2f0SDenis V. Lunev 1214196d2f0SDenis V. Lunev return bs->bl.min_mem_alignment; 1224196d2f0SDenis V. Lunev } 1234196d2f0SDenis V. Lunev 1249e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */ 1255c98415bSMax Reitz int path_has_protocol(const char *path) 1269e0b22f4SStefan Hajnoczi { 127947995c0SPaolo Bonzini const char *p; 128947995c0SPaolo Bonzini 1299e0b22f4SStefan Hajnoczi #ifdef _WIN32 1309e0b22f4SStefan Hajnoczi if (is_windows_drive(path) || 1319e0b22f4SStefan Hajnoczi is_windows_drive_prefix(path)) { 1329e0b22f4SStefan Hajnoczi return 0; 1339e0b22f4SStefan Hajnoczi } 134947995c0SPaolo Bonzini p = path + strcspn(path, ":/\\"); 135947995c0SPaolo Bonzini #else 136947995c0SPaolo Bonzini p = path + strcspn(path, ":/"); 1379e0b22f4SStefan Hajnoczi #endif 1389e0b22f4SStefan Hajnoczi 139947995c0SPaolo Bonzini return *p == ':'; 1409e0b22f4SStefan Hajnoczi } 1419e0b22f4SStefan Hajnoczi 14283f64091Sbellard int path_is_absolute(const char *path) 14383f64091Sbellard { 14421664424Sbellard #ifdef _WIN32 14521664424Sbellard /* specific case for names like: "\\.\d:" */ 146f53f4da9SPaolo Bonzini if (is_windows_drive(path) || is_windows_drive_prefix(path)) { 14721664424Sbellard return 1; 148f53f4da9SPaolo Bonzini } 149f53f4da9SPaolo Bonzini return (*path == '/' || *path == '\\'); 1503b9f94e1Sbellard #else 151f53f4da9SPaolo Bonzini return (*path == '/'); 1523b9f94e1Sbellard #endif 15383f64091Sbellard } 15483f64091Sbellard 15583f64091Sbellard /* if filename is absolute, just copy it to dest. Otherwise, build a 15683f64091Sbellard path to it by considering it is relative to base_path. URL are 15783f64091Sbellard supported. */ 15883f64091Sbellard void path_combine(char *dest, int dest_size, 15983f64091Sbellard const char *base_path, 16083f64091Sbellard const char *filename) 16183f64091Sbellard { 16283f64091Sbellard const char *p, *p1; 16383f64091Sbellard int len; 16483f64091Sbellard 16583f64091Sbellard if (dest_size <= 0) 16683f64091Sbellard return; 16783f64091Sbellard if (path_is_absolute(filename)) { 16883f64091Sbellard pstrcpy(dest, dest_size, filename); 16983f64091Sbellard } else { 1700d54a6feSMax Reitz const char *protocol_stripped = NULL; 1710d54a6feSMax Reitz 1720d54a6feSMax Reitz if (path_has_protocol(base_path)) { 1730d54a6feSMax Reitz protocol_stripped = strchr(base_path, ':'); 1740d54a6feSMax Reitz if (protocol_stripped) { 1750d54a6feSMax Reitz protocol_stripped++; 1760d54a6feSMax Reitz } 1770d54a6feSMax Reitz } 1780d54a6feSMax Reitz p = protocol_stripped ?: base_path; 1790d54a6feSMax Reitz 1803b9f94e1Sbellard p1 = strrchr(base_path, '/'); 1813b9f94e1Sbellard #ifdef _WIN32 1823b9f94e1Sbellard { 1833b9f94e1Sbellard const char *p2; 1843b9f94e1Sbellard p2 = strrchr(base_path, '\\'); 1853b9f94e1Sbellard if (!p1 || p2 > p1) 1863b9f94e1Sbellard p1 = p2; 1873b9f94e1Sbellard } 1883b9f94e1Sbellard #endif 18983f64091Sbellard if (p1) 19083f64091Sbellard p1++; 19183f64091Sbellard else 19283f64091Sbellard p1 = base_path; 19383f64091Sbellard if (p1 > p) 19483f64091Sbellard p = p1; 19583f64091Sbellard len = p - base_path; 19683f64091Sbellard if (len > dest_size - 1) 19783f64091Sbellard len = dest_size - 1; 19883f64091Sbellard memcpy(dest, base_path, len); 19983f64091Sbellard dest[len] = '\0'; 20083f64091Sbellard pstrcat(dest, dest_size, filename); 20183f64091Sbellard } 20283f64091Sbellard } 20383f64091Sbellard 20403c320d8SMax Reitz /* 20503c320d8SMax Reitz * Helper function for bdrv_parse_filename() implementations to remove optional 20603c320d8SMax Reitz * protocol prefixes (especially "file:") from a filename and for putting the 20703c320d8SMax Reitz * stripped filename into the options QDict if there is such a prefix. 20803c320d8SMax Reitz */ 20903c320d8SMax Reitz void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix, 21003c320d8SMax Reitz QDict *options) 21103c320d8SMax Reitz { 21203c320d8SMax Reitz if (strstart(filename, prefix, &filename)) { 21303c320d8SMax Reitz /* Stripping the explicit protocol prefix may result in a protocol 21403c320d8SMax Reitz * prefix being (wrongly) detected (if the filename contains a colon) */ 21503c320d8SMax Reitz if (path_has_protocol(filename)) { 21603c320d8SMax Reitz QString *fat_filename; 21703c320d8SMax Reitz 21803c320d8SMax Reitz /* This means there is some colon before the first slash; therefore, 21903c320d8SMax Reitz * this cannot be an absolute path */ 22003c320d8SMax Reitz assert(!path_is_absolute(filename)); 22103c320d8SMax Reitz 22203c320d8SMax Reitz /* And we can thus fix the protocol detection issue by prefixing it 22303c320d8SMax Reitz * by "./" */ 22403c320d8SMax Reitz fat_filename = qstring_from_str("./"); 22503c320d8SMax Reitz qstring_append(fat_filename, filename); 22603c320d8SMax Reitz 22703c320d8SMax Reitz assert(!path_has_protocol(qstring_get_str(fat_filename))); 22803c320d8SMax Reitz 22903c320d8SMax Reitz qdict_put(options, "filename", fat_filename); 23003c320d8SMax Reitz } else { 23103c320d8SMax Reitz /* If no protocol prefix was detected, we can use the shortened 23203c320d8SMax Reitz * filename as-is */ 23303c320d8SMax Reitz qdict_put_str(options, "filename", filename); 23403c320d8SMax Reitz } 23503c320d8SMax Reitz } 23603c320d8SMax Reitz } 23703c320d8SMax Reitz 23803c320d8SMax Reitz 2399c5e6594SKevin Wolf /* Returns whether the image file is opened as read-only. Note that this can 2409c5e6594SKevin Wolf * return false and writing to the image file is still not possible because the 2419c5e6594SKevin Wolf * image is inactivated. */ 24293ed524eSJeff Cody bool bdrv_is_read_only(BlockDriverState *bs) 24393ed524eSJeff Cody { 24493ed524eSJeff Cody return bs->read_only; 24593ed524eSJeff Cody } 24693ed524eSJeff Cody 24754a32bfeSKevin Wolf int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only, 24854a32bfeSKevin Wolf bool ignore_allow_rdw, Error **errp) 249fe5241bfSJeff Cody { 250e2b8247aSJeff Cody /* Do not set read_only if copy_on_read is enabled */ 251e2b8247aSJeff Cody if (bs->copy_on_read && read_only) { 252e2b8247aSJeff Cody error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled", 253e2b8247aSJeff Cody bdrv_get_device_or_node_name(bs)); 254e2b8247aSJeff Cody return -EINVAL; 255e2b8247aSJeff Cody } 256e2b8247aSJeff Cody 257d6fcdf06SJeff Cody /* Do not clear read_only if it is prohibited */ 25854a32bfeSKevin Wolf if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) && 25954a32bfeSKevin Wolf !ignore_allow_rdw) 26054a32bfeSKevin Wolf { 261d6fcdf06SJeff Cody error_setg(errp, "Node '%s' is read only", 262d6fcdf06SJeff Cody bdrv_get_device_or_node_name(bs)); 263d6fcdf06SJeff Cody return -EPERM; 264d6fcdf06SJeff Cody } 265d6fcdf06SJeff Cody 26645803a03SJeff Cody return 0; 26745803a03SJeff Cody } 26845803a03SJeff Cody 269398e6ad0SKevin Wolf /* TODO Remove (deprecated since 2.11) 270398e6ad0SKevin Wolf * Block drivers are not supposed to automatically change bs->read_only. 271398e6ad0SKevin Wolf * Instead, they should just check whether they can provide what the user 272398e6ad0SKevin Wolf * explicitly requested and error out if read-write is requested, but they can 273398e6ad0SKevin Wolf * only provide read-only access. */ 27445803a03SJeff Cody int bdrv_set_read_only(BlockDriverState *bs, bool read_only, Error **errp) 27545803a03SJeff Cody { 27645803a03SJeff Cody int ret = 0; 27745803a03SJeff Cody 27854a32bfeSKevin Wolf ret = bdrv_can_set_read_only(bs, read_only, false, errp); 27945803a03SJeff Cody if (ret < 0) { 28045803a03SJeff Cody return ret; 28145803a03SJeff Cody } 28245803a03SJeff Cody 283fe5241bfSJeff Cody bs->read_only = read_only; 284e2b8247aSJeff Cody return 0; 285fe5241bfSJeff Cody } 286fe5241bfSJeff Cody 2870a82855aSMax Reitz void bdrv_get_full_backing_filename_from_filename(const char *backed, 2880a82855aSMax Reitz const char *backing, 2899f07429eSMax Reitz char *dest, size_t sz, 2909f07429eSMax Reitz Error **errp) 2910a82855aSMax Reitz { 2929f07429eSMax Reitz if (backing[0] == '\0' || path_has_protocol(backing) || 2939f07429eSMax Reitz path_is_absolute(backing)) 2949f07429eSMax Reitz { 2950a82855aSMax Reitz pstrcpy(dest, sz, backing); 2969f07429eSMax Reitz } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) { 2979f07429eSMax Reitz error_setg(errp, "Cannot use relative backing file names for '%s'", 2989f07429eSMax Reitz backed); 2990a82855aSMax Reitz } else { 3000a82855aSMax Reitz path_combine(dest, sz, backed, backing); 3010a82855aSMax Reitz } 3020a82855aSMax Reitz } 3030a82855aSMax Reitz 3049f07429eSMax Reitz void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz, 3059f07429eSMax Reitz Error **errp) 306dc5a1371SPaolo Bonzini { 3079f07429eSMax Reitz char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename; 3089f07429eSMax Reitz 3099f07429eSMax Reitz bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file, 3109f07429eSMax Reitz dest, sz, errp); 311dc5a1371SPaolo Bonzini } 312dc5a1371SPaolo Bonzini 3130eb7217eSStefan Hajnoczi void bdrv_register(BlockDriver *bdrv) 3140eb7217eSStefan Hajnoczi { 3158a22f02aSStefan Hajnoczi QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list); 316ea2384d3Sbellard } 317b338082bSbellard 318e4e9986bSMarkus Armbruster BlockDriverState *bdrv_new(void) 319e4e9986bSMarkus Armbruster { 320e4e9986bSMarkus Armbruster BlockDriverState *bs; 321e4e9986bSMarkus Armbruster int i; 322e4e9986bSMarkus Armbruster 3235839e53bSMarkus Armbruster bs = g_new0(BlockDriverState, 1); 324e4654d2dSFam Zheng QLIST_INIT(&bs->dirty_bitmaps); 325fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 326fbe40ff7SFam Zheng QLIST_INIT(&bs->op_blockers[i]); 327fbe40ff7SFam Zheng } 328d616b224SStefan Hajnoczi notifier_with_return_list_init(&bs->before_write_notifiers); 3293783fa3dSPaolo Bonzini qemu_co_mutex_init(&bs->reqs_lock); 3302119882cSPaolo Bonzini qemu_mutex_init(&bs->dirty_bitmap_mutex); 3319fcb0251SFam Zheng bs->refcnt = 1; 332dcd04228SStefan Hajnoczi bs->aio_context = qemu_get_aio_context(); 333d7d512f6SPaolo Bonzini 3343ff2f67aSEvgeny Yakovlev qemu_co_queue_init(&bs->flush_queue); 3353ff2f67aSEvgeny Yakovlev 3362c1d04e0SMax Reitz QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list); 3372c1d04e0SMax Reitz 338b338082bSbellard return bs; 339b338082bSbellard } 340b338082bSbellard 34188d88798SMarc Mari static BlockDriver *bdrv_do_find_format(const char *format_name) 342ea2384d3Sbellard { 343ea2384d3Sbellard BlockDriver *drv1; 34488d88798SMarc Mari 3458a22f02aSStefan Hajnoczi QLIST_FOREACH(drv1, &bdrv_drivers, list) { 3468a22f02aSStefan Hajnoczi if (!strcmp(drv1->format_name, format_name)) { 347ea2384d3Sbellard return drv1; 348ea2384d3Sbellard } 3498a22f02aSStefan Hajnoczi } 35088d88798SMarc Mari 351ea2384d3Sbellard return NULL; 352ea2384d3Sbellard } 353ea2384d3Sbellard 35488d88798SMarc Mari BlockDriver *bdrv_find_format(const char *format_name) 35588d88798SMarc Mari { 35688d88798SMarc Mari BlockDriver *drv1; 35788d88798SMarc Mari int i; 35888d88798SMarc Mari 35988d88798SMarc Mari drv1 = bdrv_do_find_format(format_name); 36088d88798SMarc Mari if (drv1) { 36188d88798SMarc Mari return drv1; 36288d88798SMarc Mari } 36388d88798SMarc Mari 36488d88798SMarc Mari /* The driver isn't registered, maybe we need to load a module */ 36588d88798SMarc Mari for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { 36688d88798SMarc Mari if (!strcmp(block_driver_modules[i].format_name, format_name)) { 36788d88798SMarc Mari block_module_load_one(block_driver_modules[i].library_name); 36888d88798SMarc Mari break; 36988d88798SMarc Mari } 37088d88798SMarc Mari } 37188d88798SMarc Mari 37288d88798SMarc Mari return bdrv_do_find_format(format_name); 37388d88798SMarc Mari } 37488d88798SMarc Mari 375e8eb8637SKevin Wolf int bdrv_is_whitelisted(BlockDriver *drv, bool read_only) 376eb852011SMarkus Armbruster { 377b64ec4e4SFam Zheng static const char *whitelist_rw[] = { 378b64ec4e4SFam Zheng CONFIG_BDRV_RW_WHITELIST 379b64ec4e4SFam Zheng }; 380b64ec4e4SFam Zheng static const char *whitelist_ro[] = { 381b64ec4e4SFam Zheng CONFIG_BDRV_RO_WHITELIST 382eb852011SMarkus Armbruster }; 383eb852011SMarkus Armbruster const char **p; 384eb852011SMarkus Armbruster 385b64ec4e4SFam Zheng if (!whitelist_rw[0] && !whitelist_ro[0]) { 386eb852011SMarkus Armbruster return 1; /* no whitelist, anything goes */ 387b64ec4e4SFam Zheng } 388eb852011SMarkus Armbruster 389b64ec4e4SFam Zheng for (p = whitelist_rw; *p; p++) { 390eb852011SMarkus Armbruster if (!strcmp(drv->format_name, *p)) { 391eb852011SMarkus Armbruster return 1; 392eb852011SMarkus Armbruster } 393eb852011SMarkus Armbruster } 394b64ec4e4SFam Zheng if (read_only) { 395b64ec4e4SFam Zheng for (p = whitelist_ro; *p; p++) { 396b64ec4e4SFam Zheng if (!strcmp(drv->format_name, *p)) { 397b64ec4e4SFam Zheng return 1; 398b64ec4e4SFam Zheng } 399b64ec4e4SFam Zheng } 400b64ec4e4SFam Zheng } 401eb852011SMarkus Armbruster return 0; 402eb852011SMarkus Armbruster } 403eb852011SMarkus Armbruster 404e6ff69bfSDaniel P. Berrange bool bdrv_uses_whitelist(void) 405e6ff69bfSDaniel P. Berrange { 406e6ff69bfSDaniel P. Berrange return use_bdrv_whitelist; 407e6ff69bfSDaniel P. Berrange } 408e6ff69bfSDaniel P. Berrange 4095b7e1542SZhi Yong Wu typedef struct CreateCo { 4105b7e1542SZhi Yong Wu BlockDriver *drv; 4115b7e1542SZhi Yong Wu char *filename; 41283d0521aSChunyan Liu QemuOpts *opts; 4135b7e1542SZhi Yong Wu int ret; 414cc84d90fSMax Reitz Error *err; 4155b7e1542SZhi Yong Wu } CreateCo; 4165b7e1542SZhi Yong Wu 4175b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque) 4185b7e1542SZhi Yong Wu { 419cc84d90fSMax Reitz Error *local_err = NULL; 420cc84d90fSMax Reitz int ret; 421cc84d90fSMax Reitz 4225b7e1542SZhi Yong Wu CreateCo *cco = opaque; 4235b7e1542SZhi Yong Wu assert(cco->drv); 4245b7e1542SZhi Yong Wu 425efc75e2aSStefan Hajnoczi ret = cco->drv->bdrv_co_create_opts(cco->filename, cco->opts, &local_err); 426cc84d90fSMax Reitz error_propagate(&cco->err, local_err); 427cc84d90fSMax Reitz cco->ret = ret; 4285b7e1542SZhi Yong Wu } 4295b7e1542SZhi Yong Wu 4300e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename, 43183d0521aSChunyan Liu QemuOpts *opts, Error **errp) 432ea2384d3Sbellard { 4335b7e1542SZhi Yong Wu int ret; 4340e7e1989SKevin Wolf 4355b7e1542SZhi Yong Wu Coroutine *co; 4365b7e1542SZhi Yong Wu CreateCo cco = { 4375b7e1542SZhi Yong Wu .drv = drv, 4385b7e1542SZhi Yong Wu .filename = g_strdup(filename), 43983d0521aSChunyan Liu .opts = opts, 4405b7e1542SZhi Yong Wu .ret = NOT_DONE, 441cc84d90fSMax Reitz .err = NULL, 4425b7e1542SZhi Yong Wu }; 4435b7e1542SZhi Yong Wu 444efc75e2aSStefan Hajnoczi if (!drv->bdrv_co_create_opts) { 445cc84d90fSMax Reitz error_setg(errp, "Driver '%s' does not support image creation", drv->format_name); 44680168bffSLuiz Capitulino ret = -ENOTSUP; 44780168bffSLuiz Capitulino goto out; 4485b7e1542SZhi Yong Wu } 4495b7e1542SZhi Yong Wu 4505b7e1542SZhi Yong Wu if (qemu_in_coroutine()) { 4515b7e1542SZhi Yong Wu /* Fast-path if already in coroutine context */ 4525b7e1542SZhi Yong Wu bdrv_create_co_entry(&cco); 4535b7e1542SZhi Yong Wu } else { 4540b8b8753SPaolo Bonzini co = qemu_coroutine_create(bdrv_create_co_entry, &cco); 4550b8b8753SPaolo Bonzini qemu_coroutine_enter(co); 4565b7e1542SZhi Yong Wu while (cco.ret == NOT_DONE) { 457b47ec2c4SPaolo Bonzini aio_poll(qemu_get_aio_context(), true); 4585b7e1542SZhi Yong Wu } 4595b7e1542SZhi Yong Wu } 4605b7e1542SZhi Yong Wu 4615b7e1542SZhi Yong Wu ret = cco.ret; 462cc84d90fSMax Reitz if (ret < 0) { 46384d18f06SMarkus Armbruster if (cco.err) { 464cc84d90fSMax Reitz error_propagate(errp, cco.err); 465cc84d90fSMax Reitz } else { 466cc84d90fSMax Reitz error_setg_errno(errp, -ret, "Could not create image"); 467cc84d90fSMax Reitz } 468cc84d90fSMax Reitz } 4695b7e1542SZhi Yong Wu 47080168bffSLuiz Capitulino out: 47180168bffSLuiz Capitulino g_free(cco.filename); 4725b7e1542SZhi Yong Wu return ret; 473ea2384d3Sbellard } 474ea2384d3Sbellard 475c282e1fdSChunyan Liu int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp) 47684a12e66SChristoph Hellwig { 47784a12e66SChristoph Hellwig BlockDriver *drv; 478cc84d90fSMax Reitz Error *local_err = NULL; 479cc84d90fSMax Reitz int ret; 48084a12e66SChristoph Hellwig 481b65a5e12SMax Reitz drv = bdrv_find_protocol(filename, true, errp); 48284a12e66SChristoph Hellwig if (drv == NULL) { 48316905d71SStefan Hajnoczi return -ENOENT; 48484a12e66SChristoph Hellwig } 48584a12e66SChristoph Hellwig 486c282e1fdSChunyan Liu ret = bdrv_create(drv, filename, opts, &local_err); 487cc84d90fSMax Reitz error_propagate(errp, local_err); 488cc84d90fSMax Reitz return ret; 48984a12e66SChristoph Hellwig } 49084a12e66SChristoph Hellwig 491892b7de8SEkaterina Tumanova /** 492892b7de8SEkaterina Tumanova * Try to get @bs's logical and physical block size. 493892b7de8SEkaterina Tumanova * On success, store them in @bsz struct and return 0. 494892b7de8SEkaterina Tumanova * On failure return -errno. 495892b7de8SEkaterina Tumanova * @bs must not be empty. 496892b7de8SEkaterina Tumanova */ 497892b7de8SEkaterina Tumanova int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz) 498892b7de8SEkaterina Tumanova { 499892b7de8SEkaterina Tumanova BlockDriver *drv = bs->drv; 500892b7de8SEkaterina Tumanova 501892b7de8SEkaterina Tumanova if (drv && drv->bdrv_probe_blocksizes) { 502892b7de8SEkaterina Tumanova return drv->bdrv_probe_blocksizes(bs, bsz); 5035a612c00SManos Pitsidianakis } else if (drv && drv->is_filter && bs->file) { 5045a612c00SManos Pitsidianakis return bdrv_probe_blocksizes(bs->file->bs, bsz); 505892b7de8SEkaterina Tumanova } 506892b7de8SEkaterina Tumanova 507892b7de8SEkaterina Tumanova return -ENOTSUP; 508892b7de8SEkaterina Tumanova } 509892b7de8SEkaterina Tumanova 510892b7de8SEkaterina Tumanova /** 511892b7de8SEkaterina Tumanova * Try to get @bs's geometry (cyls, heads, sectors). 512892b7de8SEkaterina Tumanova * On success, store them in @geo struct and return 0. 513892b7de8SEkaterina Tumanova * On failure return -errno. 514892b7de8SEkaterina Tumanova * @bs must not be empty. 515892b7de8SEkaterina Tumanova */ 516892b7de8SEkaterina Tumanova int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo) 517892b7de8SEkaterina Tumanova { 518892b7de8SEkaterina Tumanova BlockDriver *drv = bs->drv; 519892b7de8SEkaterina Tumanova 520892b7de8SEkaterina Tumanova if (drv && drv->bdrv_probe_geometry) { 521892b7de8SEkaterina Tumanova return drv->bdrv_probe_geometry(bs, geo); 5225a612c00SManos Pitsidianakis } else if (drv && drv->is_filter && bs->file) { 5235a612c00SManos Pitsidianakis return bdrv_probe_geometry(bs->file->bs, geo); 524892b7de8SEkaterina Tumanova } 525892b7de8SEkaterina Tumanova 526892b7de8SEkaterina Tumanova return -ENOTSUP; 527892b7de8SEkaterina Tumanova } 528892b7de8SEkaterina Tumanova 529eba25057SJim Meyering /* 530eba25057SJim Meyering * Create a uniquely-named empty temporary file. 531eba25057SJim Meyering * Return 0 upon success, otherwise a negative errno value. 532eba25057SJim Meyering */ 533eba25057SJim Meyering int get_tmp_filename(char *filename, int size) 534eba25057SJim Meyering { 535d5249393Sbellard #ifdef _WIN32 5363b9f94e1Sbellard char temp_dir[MAX_PATH]; 537eba25057SJim Meyering /* GetTempFileName requires that its output buffer (4th param) 538eba25057SJim Meyering have length MAX_PATH or greater. */ 539eba25057SJim Meyering assert(size >= MAX_PATH); 540eba25057SJim Meyering return (GetTempPath(MAX_PATH, temp_dir) 541eba25057SJim Meyering && GetTempFileName(temp_dir, "qem", 0, filename) 542eba25057SJim Meyering ? 0 : -GetLastError()); 543d5249393Sbellard #else 544ea2384d3Sbellard int fd; 5457ccfb2ebSblueswir1 const char *tmpdir; 5460badc1eeSaurel32 tmpdir = getenv("TMPDIR"); 54769bef793SAmit Shah if (!tmpdir) { 54869bef793SAmit Shah tmpdir = "/var/tmp"; 54969bef793SAmit Shah } 550eba25057SJim Meyering if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) { 551eba25057SJim Meyering return -EOVERFLOW; 552ea2384d3Sbellard } 553eba25057SJim Meyering fd = mkstemp(filename); 554fe235a06SDunrong Huang if (fd < 0) { 555fe235a06SDunrong Huang return -errno; 556fe235a06SDunrong Huang } 557fe235a06SDunrong Huang if (close(fd) != 0) { 558fe235a06SDunrong Huang unlink(filename); 559eba25057SJim Meyering return -errno; 560eba25057SJim Meyering } 561eba25057SJim Meyering return 0; 562d5249393Sbellard #endif 563eba25057SJim Meyering } 564ea2384d3Sbellard 565f3a5d3f8SChristoph Hellwig /* 566f3a5d3f8SChristoph Hellwig * Detect host devices. By convention, /dev/cdrom[N] is always 567f3a5d3f8SChristoph Hellwig * recognized as a host CDROM. 568f3a5d3f8SChristoph Hellwig */ 569f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename) 570f3a5d3f8SChristoph Hellwig { 571508c7cb3SChristoph Hellwig int score_max = 0, score; 572508c7cb3SChristoph Hellwig BlockDriver *drv = NULL, *d; 573f3a5d3f8SChristoph Hellwig 5748a22f02aSStefan Hajnoczi QLIST_FOREACH(d, &bdrv_drivers, list) { 575508c7cb3SChristoph Hellwig if (d->bdrv_probe_device) { 576508c7cb3SChristoph Hellwig score = d->bdrv_probe_device(filename); 577508c7cb3SChristoph Hellwig if (score > score_max) { 578508c7cb3SChristoph Hellwig score_max = score; 579508c7cb3SChristoph Hellwig drv = d; 580f3a5d3f8SChristoph Hellwig } 581508c7cb3SChristoph Hellwig } 582f3a5d3f8SChristoph Hellwig } 583f3a5d3f8SChristoph Hellwig 584508c7cb3SChristoph Hellwig return drv; 585f3a5d3f8SChristoph Hellwig } 586f3a5d3f8SChristoph Hellwig 58788d88798SMarc Mari static BlockDriver *bdrv_do_find_protocol(const char *protocol) 58888d88798SMarc Mari { 58988d88798SMarc Mari BlockDriver *drv1; 59088d88798SMarc Mari 59188d88798SMarc Mari QLIST_FOREACH(drv1, &bdrv_drivers, list) { 59288d88798SMarc Mari if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) { 59388d88798SMarc Mari return drv1; 59488d88798SMarc Mari } 59588d88798SMarc Mari } 59688d88798SMarc Mari 59788d88798SMarc Mari return NULL; 59888d88798SMarc Mari } 59988d88798SMarc Mari 60098289620SKevin Wolf BlockDriver *bdrv_find_protocol(const char *filename, 601b65a5e12SMax Reitz bool allow_protocol_prefix, 602b65a5e12SMax Reitz Error **errp) 60384a12e66SChristoph Hellwig { 60484a12e66SChristoph Hellwig BlockDriver *drv1; 60584a12e66SChristoph Hellwig char protocol[128]; 60684a12e66SChristoph Hellwig int len; 60784a12e66SChristoph Hellwig const char *p; 60888d88798SMarc Mari int i; 60984a12e66SChristoph Hellwig 61066f82ceeSKevin Wolf /* TODO Drivers without bdrv_file_open must be specified explicitly */ 61166f82ceeSKevin Wolf 61239508e7aSChristoph Hellwig /* 61339508e7aSChristoph Hellwig * XXX(hch): we really should not let host device detection 61439508e7aSChristoph Hellwig * override an explicit protocol specification, but moving this 61539508e7aSChristoph Hellwig * later breaks access to device names with colons in them. 61639508e7aSChristoph Hellwig * Thanks to the brain-dead persistent naming schemes on udev- 61739508e7aSChristoph Hellwig * based Linux systems those actually are quite common. 61839508e7aSChristoph Hellwig */ 61984a12e66SChristoph Hellwig drv1 = find_hdev_driver(filename); 62039508e7aSChristoph Hellwig if (drv1) { 62184a12e66SChristoph Hellwig return drv1; 62284a12e66SChristoph Hellwig } 62339508e7aSChristoph Hellwig 62498289620SKevin Wolf if (!path_has_protocol(filename) || !allow_protocol_prefix) { 625ef810437SMax Reitz return &bdrv_file; 62639508e7aSChristoph Hellwig } 62798289620SKevin Wolf 6289e0b22f4SStefan Hajnoczi p = strchr(filename, ':'); 6299e0b22f4SStefan Hajnoczi assert(p != NULL); 63084a12e66SChristoph Hellwig len = p - filename; 63184a12e66SChristoph Hellwig if (len > sizeof(protocol) - 1) 63284a12e66SChristoph Hellwig len = sizeof(protocol) - 1; 63384a12e66SChristoph Hellwig memcpy(protocol, filename, len); 63484a12e66SChristoph Hellwig protocol[len] = '\0'; 63588d88798SMarc Mari 63688d88798SMarc Mari drv1 = bdrv_do_find_protocol(protocol); 63788d88798SMarc Mari if (drv1) { 63884a12e66SChristoph Hellwig return drv1; 63984a12e66SChristoph Hellwig } 64088d88798SMarc Mari 64188d88798SMarc Mari for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { 64288d88798SMarc Mari if (block_driver_modules[i].protocol_name && 64388d88798SMarc Mari !strcmp(block_driver_modules[i].protocol_name, protocol)) { 64488d88798SMarc Mari block_module_load_one(block_driver_modules[i].library_name); 64588d88798SMarc Mari break; 64688d88798SMarc Mari } 64784a12e66SChristoph Hellwig } 648b65a5e12SMax Reitz 64988d88798SMarc Mari drv1 = bdrv_do_find_protocol(protocol); 65088d88798SMarc Mari if (!drv1) { 651b65a5e12SMax Reitz error_setg(errp, "Unknown protocol '%s'", protocol); 65288d88798SMarc Mari } 65388d88798SMarc Mari return drv1; 65484a12e66SChristoph Hellwig } 65584a12e66SChristoph Hellwig 656c6684249SMarkus Armbruster /* 657c6684249SMarkus Armbruster * Guess image format by probing its contents. 658c6684249SMarkus Armbruster * This is not a good idea when your image is raw (CVE-2008-2004), but 659c6684249SMarkus Armbruster * we do it anyway for backward compatibility. 660c6684249SMarkus Armbruster * 661c6684249SMarkus Armbruster * @buf contains the image's first @buf_size bytes. 6627cddd372SKevin Wolf * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE, 6637cddd372SKevin Wolf * but can be smaller if the image file is smaller) 664c6684249SMarkus Armbruster * @filename is its filename. 665c6684249SMarkus Armbruster * 666c6684249SMarkus Armbruster * For all block drivers, call the bdrv_probe() method to get its 667c6684249SMarkus Armbruster * probing score. 668c6684249SMarkus Armbruster * Return the first block driver with the highest probing score. 669c6684249SMarkus Armbruster */ 67038f3ef57SKevin Wolf BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size, 671c6684249SMarkus Armbruster const char *filename) 672c6684249SMarkus Armbruster { 673c6684249SMarkus Armbruster int score_max = 0, score; 674c6684249SMarkus Armbruster BlockDriver *drv = NULL, *d; 675c6684249SMarkus Armbruster 676c6684249SMarkus Armbruster QLIST_FOREACH(d, &bdrv_drivers, list) { 677c6684249SMarkus Armbruster if (d->bdrv_probe) { 678c6684249SMarkus Armbruster score = d->bdrv_probe(buf, buf_size, filename); 679c6684249SMarkus Armbruster if (score > score_max) { 680c6684249SMarkus Armbruster score_max = score; 681c6684249SMarkus Armbruster drv = d; 682c6684249SMarkus Armbruster } 683c6684249SMarkus Armbruster } 684c6684249SMarkus Armbruster } 685c6684249SMarkus Armbruster 686c6684249SMarkus Armbruster return drv; 687c6684249SMarkus Armbruster } 688c6684249SMarkus Armbruster 6895696c6e3SKevin Wolf static int find_image_format(BlockBackend *file, const char *filename, 69034b5d2c6SMax Reitz BlockDriver **pdrv, Error **errp) 691ea2384d3Sbellard { 692c6684249SMarkus Armbruster BlockDriver *drv; 6937cddd372SKevin Wolf uint8_t buf[BLOCK_PROBE_BUF_SIZE]; 694f500a6d3SKevin Wolf int ret = 0; 695f8ea0b00SNicholas Bellinger 69608a00559SKevin Wolf /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ 6975696c6e3SKevin Wolf if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) { 698ef810437SMax Reitz *pdrv = &bdrv_raw; 699c98ac35dSStefan Weil return ret; 7001a396859SNicholas A. Bellinger } 701f8ea0b00SNicholas Bellinger 7025696c6e3SKevin Wolf ret = blk_pread(file, 0, buf, sizeof(buf)); 703ea2384d3Sbellard if (ret < 0) { 70434b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not read image for determining its " 70534b5d2c6SMax Reitz "format"); 706c98ac35dSStefan Weil *pdrv = NULL; 707c98ac35dSStefan Weil return ret; 708ea2384d3Sbellard } 709ea2384d3Sbellard 710c6684249SMarkus Armbruster drv = bdrv_probe_all(buf, ret, filename); 711c98ac35dSStefan Weil if (!drv) { 71234b5d2c6SMax Reitz error_setg(errp, "Could not determine image format: No compatible " 71334b5d2c6SMax Reitz "driver found"); 714c98ac35dSStefan Weil ret = -ENOENT; 715c98ac35dSStefan Weil } 716c98ac35dSStefan Weil *pdrv = drv; 717c98ac35dSStefan Weil return ret; 718ea2384d3Sbellard } 719ea2384d3Sbellard 72051762288SStefan Hajnoczi /** 72151762288SStefan Hajnoczi * Set the current 'total_sectors' value 72265a9bb25SMarkus Armbruster * Return 0 on success, -errno on error. 72351762288SStefan Hajnoczi */ 72451762288SStefan Hajnoczi static int refresh_total_sectors(BlockDriverState *bs, int64_t hint) 72551762288SStefan Hajnoczi { 72651762288SStefan Hajnoczi BlockDriver *drv = bs->drv; 72751762288SStefan Hajnoczi 728d470ad42SMax Reitz if (!drv) { 729d470ad42SMax Reitz return -ENOMEDIUM; 730d470ad42SMax Reitz } 731d470ad42SMax Reitz 732396759adSNicholas Bellinger /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */ 733b192af8aSDimitris Aragiorgis if (bdrv_is_sg(bs)) 734396759adSNicholas Bellinger return 0; 735396759adSNicholas Bellinger 73651762288SStefan Hajnoczi /* query actual device if possible, otherwise just trust the hint */ 73751762288SStefan Hajnoczi if (drv->bdrv_getlength) { 73851762288SStefan Hajnoczi int64_t length = drv->bdrv_getlength(bs); 73951762288SStefan Hajnoczi if (length < 0) { 74051762288SStefan Hajnoczi return length; 74151762288SStefan Hajnoczi } 7427e382003SFam Zheng hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE); 74351762288SStefan Hajnoczi } 74451762288SStefan Hajnoczi 74551762288SStefan Hajnoczi bs->total_sectors = hint; 74651762288SStefan Hajnoczi return 0; 74751762288SStefan Hajnoczi } 74851762288SStefan Hajnoczi 749c3993cdcSStefan Hajnoczi /** 750cddff5baSKevin Wolf * Combines a QDict of new block driver @options with any missing options taken 751cddff5baSKevin Wolf * from @old_options, so that leaving out an option defaults to its old value. 752cddff5baSKevin Wolf */ 753cddff5baSKevin Wolf static void bdrv_join_options(BlockDriverState *bs, QDict *options, 754cddff5baSKevin Wolf QDict *old_options) 755cddff5baSKevin Wolf { 756cddff5baSKevin Wolf if (bs->drv && bs->drv->bdrv_join_options) { 757cddff5baSKevin Wolf bs->drv->bdrv_join_options(options, old_options); 758cddff5baSKevin Wolf } else { 759cddff5baSKevin Wolf qdict_join(options, old_options, false); 760cddff5baSKevin Wolf } 761cddff5baSKevin Wolf } 762cddff5baSKevin Wolf 763cddff5baSKevin Wolf /** 7649e8f1835SPaolo Bonzini * Set open flags for a given discard mode 7659e8f1835SPaolo Bonzini * 7669e8f1835SPaolo Bonzini * Return 0 on success, -1 if the discard mode was invalid. 7679e8f1835SPaolo Bonzini */ 7689e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags) 7699e8f1835SPaolo Bonzini { 7709e8f1835SPaolo Bonzini *flags &= ~BDRV_O_UNMAP; 7719e8f1835SPaolo Bonzini 7729e8f1835SPaolo Bonzini if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) { 7739e8f1835SPaolo Bonzini /* do nothing */ 7749e8f1835SPaolo Bonzini } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) { 7759e8f1835SPaolo Bonzini *flags |= BDRV_O_UNMAP; 7769e8f1835SPaolo Bonzini } else { 7779e8f1835SPaolo Bonzini return -1; 7789e8f1835SPaolo Bonzini } 7799e8f1835SPaolo Bonzini 7809e8f1835SPaolo Bonzini return 0; 7819e8f1835SPaolo Bonzini } 7829e8f1835SPaolo Bonzini 7839e8f1835SPaolo Bonzini /** 784c3993cdcSStefan Hajnoczi * Set open flags for a given cache mode 785c3993cdcSStefan Hajnoczi * 786c3993cdcSStefan Hajnoczi * Return 0 on success, -1 if the cache mode was invalid. 787c3993cdcSStefan Hajnoczi */ 78853e8ae01SKevin Wolf int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough) 789c3993cdcSStefan Hajnoczi { 790c3993cdcSStefan Hajnoczi *flags &= ~BDRV_O_CACHE_MASK; 791c3993cdcSStefan Hajnoczi 792c3993cdcSStefan Hajnoczi if (!strcmp(mode, "off") || !strcmp(mode, "none")) { 79353e8ae01SKevin Wolf *writethrough = false; 79453e8ae01SKevin Wolf *flags |= BDRV_O_NOCACHE; 79592196b2fSStefan Hajnoczi } else if (!strcmp(mode, "directsync")) { 79653e8ae01SKevin Wolf *writethrough = true; 79792196b2fSStefan Hajnoczi *flags |= BDRV_O_NOCACHE; 798c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writeback")) { 79953e8ae01SKevin Wolf *writethrough = false; 800c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "unsafe")) { 80153e8ae01SKevin Wolf *writethrough = false; 802c3993cdcSStefan Hajnoczi *flags |= BDRV_O_NO_FLUSH; 803c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writethrough")) { 80453e8ae01SKevin Wolf *writethrough = true; 805c3993cdcSStefan Hajnoczi } else { 806c3993cdcSStefan Hajnoczi return -1; 807c3993cdcSStefan Hajnoczi } 808c3993cdcSStefan Hajnoczi 809c3993cdcSStefan Hajnoczi return 0; 810c3993cdcSStefan Hajnoczi } 811c3993cdcSStefan Hajnoczi 812b5411555SKevin Wolf static char *bdrv_child_get_parent_desc(BdrvChild *c) 813b5411555SKevin Wolf { 814b5411555SKevin Wolf BlockDriverState *parent = c->opaque; 815b5411555SKevin Wolf return g_strdup(bdrv_get_device_or_node_name(parent)); 816b5411555SKevin Wolf } 817b5411555SKevin Wolf 81820018e12SKevin Wolf static void bdrv_child_cb_drained_begin(BdrvChild *child) 81920018e12SKevin Wolf { 82020018e12SKevin Wolf BlockDriverState *bs = child->opaque; 82120018e12SKevin Wolf bdrv_drained_begin(bs); 82220018e12SKevin Wolf } 82320018e12SKevin Wolf 82420018e12SKevin Wolf static void bdrv_child_cb_drained_end(BdrvChild *child) 82520018e12SKevin Wolf { 82620018e12SKevin Wolf BlockDriverState *bs = child->opaque; 82720018e12SKevin Wolf bdrv_drained_end(bs); 82820018e12SKevin Wolf } 82920018e12SKevin Wolf 830d736f119SKevin Wolf static void bdrv_child_cb_attach(BdrvChild *child) 831d736f119SKevin Wolf { 832d736f119SKevin Wolf BlockDriverState *bs = child->opaque; 833d736f119SKevin Wolf bdrv_apply_subtree_drain(child, bs); 834d736f119SKevin Wolf } 835d736f119SKevin Wolf 836d736f119SKevin Wolf static void bdrv_child_cb_detach(BdrvChild *child) 837d736f119SKevin Wolf { 838d736f119SKevin Wolf BlockDriverState *bs = child->opaque; 839d736f119SKevin Wolf bdrv_unapply_subtree_drain(child, bs); 840d736f119SKevin Wolf } 841d736f119SKevin Wolf 84238701b6aSKevin Wolf static int bdrv_child_cb_inactivate(BdrvChild *child) 84338701b6aSKevin Wolf { 84438701b6aSKevin Wolf BlockDriverState *bs = child->opaque; 84538701b6aSKevin Wolf assert(bs->open_flags & BDRV_O_INACTIVE); 84638701b6aSKevin Wolf return 0; 84738701b6aSKevin Wolf } 84838701b6aSKevin Wolf 8490b50cc88SKevin Wolf /* 85073176beeSKevin Wolf * Returns the options and flags that a temporary snapshot should get, based on 85173176beeSKevin Wolf * the originally requested flags (the originally requested image will have 85273176beeSKevin Wolf * flags like a backing file) 853b1e6fc08SKevin Wolf */ 85473176beeSKevin Wolf static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options, 85573176beeSKevin Wolf int parent_flags, QDict *parent_options) 856b1e6fc08SKevin Wolf { 85773176beeSKevin Wolf *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY; 85873176beeSKevin Wolf 85973176beeSKevin Wolf /* For temporary files, unconditional cache=unsafe is fine */ 86073176beeSKevin Wolf qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off"); 86173176beeSKevin Wolf qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on"); 86241869044SKevin Wolf 863f87a0e29SAlberto Garcia /* Copy the read-only option from the parent */ 864f87a0e29SAlberto Garcia qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); 865f87a0e29SAlberto Garcia 86641869044SKevin Wolf /* aio=native doesn't work for cache.direct=off, so disable it for the 86741869044SKevin Wolf * temporary snapshot */ 86841869044SKevin Wolf *child_flags &= ~BDRV_O_NATIVE_AIO; 869b1e6fc08SKevin Wolf } 870b1e6fc08SKevin Wolf 871b1e6fc08SKevin Wolf /* 8728e2160e2SKevin Wolf * Returns the options and flags that bs->file should get if a protocol driver 8738e2160e2SKevin Wolf * is expected, based on the given options and flags for the parent BDS 8740b50cc88SKevin Wolf */ 8758e2160e2SKevin Wolf static void bdrv_inherited_options(int *child_flags, QDict *child_options, 8768e2160e2SKevin Wolf int parent_flags, QDict *parent_options) 8770b50cc88SKevin Wolf { 8788e2160e2SKevin Wolf int flags = parent_flags; 8798e2160e2SKevin Wolf 8800b50cc88SKevin Wolf /* Enable protocol handling, disable format probing for bs->file */ 8810b50cc88SKevin Wolf flags |= BDRV_O_PROTOCOL; 8820b50cc88SKevin Wolf 88391a097e7SKevin Wolf /* If the cache mode isn't explicitly set, inherit direct and no-flush from 88491a097e7SKevin Wolf * the parent. */ 88591a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); 88691a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); 8875a9347c6SFam Zheng qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE); 88891a097e7SKevin Wolf 889f87a0e29SAlberto Garcia /* Inherit the read-only option from the parent if it's not set */ 890f87a0e29SAlberto Garcia qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); 891f87a0e29SAlberto Garcia 8920b50cc88SKevin Wolf /* Our block drivers take care to send flushes and respect unmap policy, 89391a097e7SKevin Wolf * so we can default to enable both on lower layers regardless of the 89491a097e7SKevin Wolf * corresponding parent options. */ 895818584a4SKevin Wolf qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap"); 8960b50cc88SKevin Wolf 8970b50cc88SKevin Wolf /* Clear flags that only apply to the top layer */ 898abb06c5aSDaniel P. Berrange flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ | 899abb06c5aSDaniel P. Berrange BDRV_O_NO_IO); 9000b50cc88SKevin Wolf 9018e2160e2SKevin Wolf *child_flags = flags; 9020b50cc88SKevin Wolf } 9030b50cc88SKevin Wolf 904f3930ed0SKevin Wolf const BdrvChildRole child_file = { 905b5411555SKevin Wolf .get_parent_desc = bdrv_child_get_parent_desc, 9068e2160e2SKevin Wolf .inherit_options = bdrv_inherited_options, 90720018e12SKevin Wolf .drained_begin = bdrv_child_cb_drained_begin, 90820018e12SKevin Wolf .drained_end = bdrv_child_cb_drained_end, 909d736f119SKevin Wolf .attach = bdrv_child_cb_attach, 910d736f119SKevin Wolf .detach = bdrv_child_cb_detach, 91138701b6aSKevin Wolf .inactivate = bdrv_child_cb_inactivate, 912f3930ed0SKevin Wolf }; 913f3930ed0SKevin Wolf 914f3930ed0SKevin Wolf /* 9158e2160e2SKevin Wolf * Returns the options and flags that bs->file should get if the use of formats 9168e2160e2SKevin Wolf * (and not only protocols) is permitted for it, based on the given options and 9178e2160e2SKevin Wolf * flags for the parent BDS 918f3930ed0SKevin Wolf */ 9198e2160e2SKevin Wolf static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options, 9208e2160e2SKevin Wolf int parent_flags, QDict *parent_options) 921f3930ed0SKevin Wolf { 9228e2160e2SKevin Wolf child_file.inherit_options(child_flags, child_options, 9238e2160e2SKevin Wolf parent_flags, parent_options); 9248e2160e2SKevin Wolf 925abb06c5aSDaniel P. Berrange *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO); 926f3930ed0SKevin Wolf } 927f3930ed0SKevin Wolf 928f3930ed0SKevin Wolf const BdrvChildRole child_format = { 929b5411555SKevin Wolf .get_parent_desc = bdrv_child_get_parent_desc, 9308e2160e2SKevin Wolf .inherit_options = bdrv_inherited_fmt_options, 93120018e12SKevin Wolf .drained_begin = bdrv_child_cb_drained_begin, 93220018e12SKevin Wolf .drained_end = bdrv_child_cb_drained_end, 933d736f119SKevin Wolf .attach = bdrv_child_cb_attach, 934d736f119SKevin Wolf .detach = bdrv_child_cb_detach, 93538701b6aSKevin Wolf .inactivate = bdrv_child_cb_inactivate, 936f3930ed0SKevin Wolf }; 937f3930ed0SKevin Wolf 938db95dbbaSKevin Wolf static void bdrv_backing_attach(BdrvChild *c) 939db95dbbaSKevin Wolf { 940db95dbbaSKevin Wolf BlockDriverState *parent = c->opaque; 941db95dbbaSKevin Wolf BlockDriverState *backing_hd = c->bs; 942db95dbbaSKevin Wolf 943db95dbbaSKevin Wolf assert(!parent->backing_blocker); 944db95dbbaSKevin Wolf error_setg(&parent->backing_blocker, 945db95dbbaSKevin Wolf "node is used as backing hd of '%s'", 946db95dbbaSKevin Wolf bdrv_get_device_or_node_name(parent)); 947db95dbbaSKevin Wolf 948db95dbbaSKevin Wolf parent->open_flags &= ~BDRV_O_NO_BACKING; 949db95dbbaSKevin Wolf pstrcpy(parent->backing_file, sizeof(parent->backing_file), 950db95dbbaSKevin Wolf backing_hd->filename); 951db95dbbaSKevin Wolf pstrcpy(parent->backing_format, sizeof(parent->backing_format), 952db95dbbaSKevin Wolf backing_hd->drv ? backing_hd->drv->format_name : ""); 953db95dbbaSKevin Wolf 954db95dbbaSKevin Wolf bdrv_op_block_all(backing_hd, parent->backing_blocker); 955db95dbbaSKevin Wolf /* Otherwise we won't be able to commit or stream */ 956db95dbbaSKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET, 957db95dbbaSKevin Wolf parent->backing_blocker); 958db95dbbaSKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM, 959db95dbbaSKevin Wolf parent->backing_blocker); 960db95dbbaSKevin Wolf /* 961db95dbbaSKevin Wolf * We do backup in 3 ways: 962db95dbbaSKevin Wolf * 1. drive backup 963db95dbbaSKevin Wolf * The target bs is new opened, and the source is top BDS 964db95dbbaSKevin Wolf * 2. blockdev backup 965db95dbbaSKevin Wolf * Both the source and the target are top BDSes. 966db95dbbaSKevin Wolf * 3. internal backup(used for block replication) 967db95dbbaSKevin Wolf * Both the source and the target are backing file 968db95dbbaSKevin Wolf * 969db95dbbaSKevin Wolf * In case 1 and 2, neither the source nor the target is the backing file. 970db95dbbaSKevin Wolf * In case 3, we will block the top BDS, so there is only one block job 971db95dbbaSKevin Wolf * for the top BDS and its backing chain. 972db95dbbaSKevin Wolf */ 973db95dbbaSKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE, 974db95dbbaSKevin Wolf parent->backing_blocker); 975db95dbbaSKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET, 976db95dbbaSKevin Wolf parent->backing_blocker); 977d736f119SKevin Wolf 978d736f119SKevin Wolf bdrv_child_cb_attach(c); 979db95dbbaSKevin Wolf } 980db95dbbaSKevin Wolf 981db95dbbaSKevin Wolf static void bdrv_backing_detach(BdrvChild *c) 982db95dbbaSKevin Wolf { 983db95dbbaSKevin Wolf BlockDriverState *parent = c->opaque; 984db95dbbaSKevin Wolf 985db95dbbaSKevin Wolf assert(parent->backing_blocker); 986db95dbbaSKevin Wolf bdrv_op_unblock_all(c->bs, parent->backing_blocker); 987db95dbbaSKevin Wolf error_free(parent->backing_blocker); 988db95dbbaSKevin Wolf parent->backing_blocker = NULL; 989d736f119SKevin Wolf 990d736f119SKevin Wolf bdrv_child_cb_detach(c); 991db95dbbaSKevin Wolf } 992db95dbbaSKevin Wolf 993317fc44eSKevin Wolf /* 9948e2160e2SKevin Wolf * Returns the options and flags that bs->backing should get, based on the 9958e2160e2SKevin Wolf * given options and flags for the parent BDS 996317fc44eSKevin Wolf */ 9978e2160e2SKevin Wolf static void bdrv_backing_options(int *child_flags, QDict *child_options, 9988e2160e2SKevin Wolf int parent_flags, QDict *parent_options) 999317fc44eSKevin Wolf { 10008e2160e2SKevin Wolf int flags = parent_flags; 10018e2160e2SKevin Wolf 1002b8816a43SKevin Wolf /* The cache mode is inherited unmodified for backing files; except WCE, 1003b8816a43SKevin Wolf * which is only applied on the top level (BlockBackend) */ 100491a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); 100591a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); 10065a9347c6SFam Zheng qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE); 100791a097e7SKevin Wolf 1008317fc44eSKevin Wolf /* backing files always opened read-only */ 1009f87a0e29SAlberto Garcia qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on"); 1010f87a0e29SAlberto Garcia flags &= ~BDRV_O_COPY_ON_READ; 1011317fc44eSKevin Wolf 1012317fc44eSKevin Wolf /* snapshot=on is handled on the top layer */ 10138bfea15dSKevin Wolf flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY); 1014317fc44eSKevin Wolf 10158e2160e2SKevin Wolf *child_flags = flags; 1016317fc44eSKevin Wolf } 1017317fc44eSKevin Wolf 10186858eba0SKevin Wolf static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base, 10196858eba0SKevin Wolf const char *filename, Error **errp) 10206858eba0SKevin Wolf { 10216858eba0SKevin Wolf BlockDriverState *parent = c->opaque; 102261f09ceaSKevin Wolf int orig_flags = bdrv_get_flags(parent); 10236858eba0SKevin Wolf int ret; 10246858eba0SKevin Wolf 102561f09ceaSKevin Wolf if (!(orig_flags & BDRV_O_RDWR)) { 102661f09ceaSKevin Wolf ret = bdrv_reopen(parent, orig_flags | BDRV_O_RDWR, errp); 102761f09ceaSKevin Wolf if (ret < 0) { 102861f09ceaSKevin Wolf return ret; 102961f09ceaSKevin Wolf } 103061f09ceaSKevin Wolf } 103161f09ceaSKevin Wolf 10326858eba0SKevin Wolf ret = bdrv_change_backing_file(parent, filename, 10336858eba0SKevin Wolf base->drv ? base->drv->format_name : ""); 10346858eba0SKevin Wolf if (ret < 0) { 103564730694SKevin Wolf error_setg_errno(errp, -ret, "Could not update backing file link"); 10366858eba0SKevin Wolf } 10376858eba0SKevin Wolf 103861f09ceaSKevin Wolf if (!(orig_flags & BDRV_O_RDWR)) { 103961f09ceaSKevin Wolf bdrv_reopen(parent, orig_flags, NULL); 104061f09ceaSKevin Wolf } 104161f09ceaSKevin Wolf 10426858eba0SKevin Wolf return ret; 10436858eba0SKevin Wolf } 10446858eba0SKevin Wolf 104591ef3825SKevin Wolf const BdrvChildRole child_backing = { 1046b5411555SKevin Wolf .get_parent_desc = bdrv_child_get_parent_desc, 1047db95dbbaSKevin Wolf .attach = bdrv_backing_attach, 1048db95dbbaSKevin Wolf .detach = bdrv_backing_detach, 10498e2160e2SKevin Wolf .inherit_options = bdrv_backing_options, 105020018e12SKevin Wolf .drained_begin = bdrv_child_cb_drained_begin, 105120018e12SKevin Wolf .drained_end = bdrv_child_cb_drained_end, 105238701b6aSKevin Wolf .inactivate = bdrv_child_cb_inactivate, 10536858eba0SKevin Wolf .update_filename = bdrv_backing_update_filename, 1054f3930ed0SKevin Wolf }; 1055f3930ed0SKevin Wolf 10567b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags) 10577b272452SKevin Wolf { 105861de4c68SKevin Wolf int open_flags = flags; 10597b272452SKevin Wolf 10607b272452SKevin Wolf /* 10617b272452SKevin Wolf * Clear flags that are internal to the block layer before opening the 10627b272452SKevin Wolf * image. 10637b272452SKevin Wolf */ 106420cca275SKevin Wolf open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL); 10657b272452SKevin Wolf 10667b272452SKevin Wolf /* 10677b272452SKevin Wolf * Snapshots should be writable. 10687b272452SKevin Wolf */ 10698bfea15dSKevin Wolf if (flags & BDRV_O_TEMPORARY) { 10707b272452SKevin Wolf open_flags |= BDRV_O_RDWR; 10717b272452SKevin Wolf } 10727b272452SKevin Wolf 10737b272452SKevin Wolf return open_flags; 10747b272452SKevin Wolf } 10757b272452SKevin Wolf 107691a097e7SKevin Wolf static void update_flags_from_options(int *flags, QemuOpts *opts) 107791a097e7SKevin Wolf { 107891a097e7SKevin Wolf *flags &= ~BDRV_O_CACHE_MASK; 107991a097e7SKevin Wolf 108091a097e7SKevin Wolf assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH)); 108191a097e7SKevin Wolf if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) { 108291a097e7SKevin Wolf *flags |= BDRV_O_NO_FLUSH; 108391a097e7SKevin Wolf } 108491a097e7SKevin Wolf 108591a097e7SKevin Wolf assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT)); 108691a097e7SKevin Wolf if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) { 108791a097e7SKevin Wolf *flags |= BDRV_O_NOCACHE; 108891a097e7SKevin Wolf } 1089f87a0e29SAlberto Garcia 1090f87a0e29SAlberto Garcia *flags &= ~BDRV_O_RDWR; 1091f87a0e29SAlberto Garcia 1092f87a0e29SAlberto Garcia assert(qemu_opt_find(opts, BDRV_OPT_READ_ONLY)); 1093f87a0e29SAlberto Garcia if (!qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false)) { 1094f87a0e29SAlberto Garcia *flags |= BDRV_O_RDWR; 1095f87a0e29SAlberto Garcia } 1096f87a0e29SAlberto Garcia 109791a097e7SKevin Wolf } 109891a097e7SKevin Wolf 109991a097e7SKevin Wolf static void update_options_from_flags(QDict *options, int flags) 110091a097e7SKevin Wolf { 110191a097e7SKevin Wolf if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) { 110246f5ac20SEric Blake qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE); 110391a097e7SKevin Wolf } 110491a097e7SKevin Wolf if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) { 110546f5ac20SEric Blake qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH, 110646f5ac20SEric Blake flags & BDRV_O_NO_FLUSH); 110791a097e7SKevin Wolf } 1108f87a0e29SAlberto Garcia if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) { 110946f5ac20SEric Blake qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR)); 1110f87a0e29SAlberto Garcia } 111191a097e7SKevin Wolf } 111291a097e7SKevin Wolf 1113636ea370SKevin Wolf static void bdrv_assign_node_name(BlockDriverState *bs, 11146913c0c2SBenoît Canet const char *node_name, 11156913c0c2SBenoît Canet Error **errp) 11166913c0c2SBenoît Canet { 111715489c76SJeff Cody char *gen_node_name = NULL; 11186913c0c2SBenoît Canet 111915489c76SJeff Cody if (!node_name) { 112015489c76SJeff Cody node_name = gen_node_name = id_generate(ID_BLOCK); 112115489c76SJeff Cody } else if (!id_wellformed(node_name)) { 112215489c76SJeff Cody /* 112315489c76SJeff Cody * Check for empty string or invalid characters, but not if it is 112415489c76SJeff Cody * generated (generated names use characters not available to the user) 112515489c76SJeff Cody */ 11269aebf3b8SKevin Wolf error_setg(errp, "Invalid node name"); 1127636ea370SKevin Wolf return; 11286913c0c2SBenoît Canet } 11296913c0c2SBenoît Canet 11300c5e94eeSBenoît Canet /* takes care of avoiding namespaces collisions */ 11317f06d47eSMarkus Armbruster if (blk_by_name(node_name)) { 11320c5e94eeSBenoît Canet error_setg(errp, "node-name=%s is conflicting with a device id", 11330c5e94eeSBenoît Canet node_name); 113415489c76SJeff Cody goto out; 11350c5e94eeSBenoît Canet } 11360c5e94eeSBenoît Canet 11376913c0c2SBenoît Canet /* takes care of avoiding duplicates node names */ 11386913c0c2SBenoît Canet if (bdrv_find_node(node_name)) { 11396913c0c2SBenoît Canet error_setg(errp, "Duplicate node name"); 114015489c76SJeff Cody goto out; 11416913c0c2SBenoît Canet } 11426913c0c2SBenoît Canet 11436913c0c2SBenoît Canet /* copy node name into the bs and insert it into the graph list */ 11446913c0c2SBenoît Canet pstrcpy(bs->node_name, sizeof(bs->node_name), node_name); 11456913c0c2SBenoît Canet QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list); 114615489c76SJeff Cody out: 114715489c76SJeff Cody g_free(gen_node_name); 11486913c0c2SBenoît Canet } 11496913c0c2SBenoît Canet 115001a56501SKevin Wolf static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv, 115101a56501SKevin Wolf const char *node_name, QDict *options, 115201a56501SKevin Wolf int open_flags, Error **errp) 115301a56501SKevin Wolf { 115401a56501SKevin Wolf Error *local_err = NULL; 115501a56501SKevin Wolf int ret; 115601a56501SKevin Wolf 115701a56501SKevin Wolf bdrv_assign_node_name(bs, node_name, &local_err); 115801a56501SKevin Wolf if (local_err) { 115901a56501SKevin Wolf error_propagate(errp, local_err); 116001a56501SKevin Wolf return -EINVAL; 116101a56501SKevin Wolf } 116201a56501SKevin Wolf 116301a56501SKevin Wolf bs->drv = drv; 1164680c7f96SKevin Wolf bs->read_only = !(bs->open_flags & BDRV_O_RDWR); 116501a56501SKevin Wolf bs->opaque = g_malloc0(drv->instance_size); 116601a56501SKevin Wolf 116701a56501SKevin Wolf if (drv->bdrv_file_open) { 116801a56501SKevin Wolf assert(!drv->bdrv_needs_filename || bs->filename[0]); 116901a56501SKevin Wolf ret = drv->bdrv_file_open(bs, options, open_flags, &local_err); 1170680c7f96SKevin Wolf } else if (drv->bdrv_open) { 117101a56501SKevin Wolf ret = drv->bdrv_open(bs, options, open_flags, &local_err); 1172680c7f96SKevin Wolf } else { 1173680c7f96SKevin Wolf ret = 0; 117401a56501SKevin Wolf } 117501a56501SKevin Wolf 117601a56501SKevin Wolf if (ret < 0) { 117701a56501SKevin Wolf if (local_err) { 117801a56501SKevin Wolf error_propagate(errp, local_err); 117901a56501SKevin Wolf } else if (bs->filename[0]) { 118001a56501SKevin Wolf error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename); 118101a56501SKevin Wolf } else { 118201a56501SKevin Wolf error_setg_errno(errp, -ret, "Could not open image"); 118301a56501SKevin Wolf } 1184180ca19aSManos Pitsidianakis goto open_failed; 118501a56501SKevin Wolf } 118601a56501SKevin Wolf 118701a56501SKevin Wolf ret = refresh_total_sectors(bs, bs->total_sectors); 118801a56501SKevin Wolf if (ret < 0) { 118901a56501SKevin Wolf error_setg_errno(errp, -ret, "Could not refresh total sector count"); 1190180ca19aSManos Pitsidianakis return ret; 119101a56501SKevin Wolf } 119201a56501SKevin Wolf 119301a56501SKevin Wolf bdrv_refresh_limits(bs, &local_err); 119401a56501SKevin Wolf if (local_err) { 119501a56501SKevin Wolf error_propagate(errp, local_err); 1196180ca19aSManos Pitsidianakis return -EINVAL; 119701a56501SKevin Wolf } 119801a56501SKevin Wolf 119901a56501SKevin Wolf assert(bdrv_opt_mem_align(bs) != 0); 120001a56501SKevin Wolf assert(bdrv_min_mem_align(bs) != 0); 120101a56501SKevin Wolf assert(is_power_of_2(bs->bl.request_alignment)); 120201a56501SKevin Wolf 120301a56501SKevin Wolf return 0; 1204180ca19aSManos Pitsidianakis open_failed: 1205180ca19aSManos Pitsidianakis bs->drv = NULL; 1206180ca19aSManos Pitsidianakis if (bs->file != NULL) { 1207180ca19aSManos Pitsidianakis bdrv_unref_child(bs, bs->file); 1208180ca19aSManos Pitsidianakis bs->file = NULL; 1209180ca19aSManos Pitsidianakis } 121001a56501SKevin Wolf g_free(bs->opaque); 121101a56501SKevin Wolf bs->opaque = NULL; 121201a56501SKevin Wolf return ret; 121301a56501SKevin Wolf } 121401a56501SKevin Wolf 1215680c7f96SKevin Wolf BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name, 1216680c7f96SKevin Wolf int flags, Error **errp) 1217680c7f96SKevin Wolf { 1218680c7f96SKevin Wolf BlockDriverState *bs; 1219680c7f96SKevin Wolf int ret; 1220680c7f96SKevin Wolf 1221680c7f96SKevin Wolf bs = bdrv_new(); 1222680c7f96SKevin Wolf bs->open_flags = flags; 1223680c7f96SKevin Wolf bs->explicit_options = qdict_new(); 1224680c7f96SKevin Wolf bs->options = qdict_new(); 1225680c7f96SKevin Wolf bs->opaque = NULL; 1226680c7f96SKevin Wolf 1227680c7f96SKevin Wolf update_options_from_flags(bs->options, flags); 1228680c7f96SKevin Wolf 1229680c7f96SKevin Wolf ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp); 1230680c7f96SKevin Wolf if (ret < 0) { 1231cb3e7f08SMarc-André Lureau qobject_unref(bs->explicit_options); 1232180ca19aSManos Pitsidianakis bs->explicit_options = NULL; 1233cb3e7f08SMarc-André Lureau qobject_unref(bs->options); 1234180ca19aSManos Pitsidianakis bs->options = NULL; 1235680c7f96SKevin Wolf bdrv_unref(bs); 1236680c7f96SKevin Wolf return NULL; 1237680c7f96SKevin Wolf } 1238680c7f96SKevin Wolf 1239680c7f96SKevin Wolf return bs; 1240680c7f96SKevin Wolf } 1241680c7f96SKevin Wolf 1242c5f3014bSKevin Wolf QemuOptsList bdrv_runtime_opts = { 124318edf289SKevin Wolf .name = "bdrv_common", 124418edf289SKevin Wolf .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head), 124518edf289SKevin Wolf .desc = { 124618edf289SKevin Wolf { 124718edf289SKevin Wolf .name = "node-name", 124818edf289SKevin Wolf .type = QEMU_OPT_STRING, 124918edf289SKevin Wolf .help = "Node name of the block device node", 125018edf289SKevin Wolf }, 125162392ebbSKevin Wolf { 125262392ebbSKevin Wolf .name = "driver", 125362392ebbSKevin Wolf .type = QEMU_OPT_STRING, 125462392ebbSKevin Wolf .help = "Block driver to use for the node", 125562392ebbSKevin Wolf }, 125691a097e7SKevin Wolf { 125791a097e7SKevin Wolf .name = BDRV_OPT_CACHE_DIRECT, 125891a097e7SKevin Wolf .type = QEMU_OPT_BOOL, 125991a097e7SKevin Wolf .help = "Bypass software writeback cache on the host", 126091a097e7SKevin Wolf }, 126191a097e7SKevin Wolf { 126291a097e7SKevin Wolf .name = BDRV_OPT_CACHE_NO_FLUSH, 126391a097e7SKevin Wolf .type = QEMU_OPT_BOOL, 126491a097e7SKevin Wolf .help = "Ignore flush requests", 126591a097e7SKevin Wolf }, 1266f87a0e29SAlberto Garcia { 1267f87a0e29SAlberto Garcia .name = BDRV_OPT_READ_ONLY, 1268f87a0e29SAlberto Garcia .type = QEMU_OPT_BOOL, 1269f87a0e29SAlberto Garcia .help = "Node is opened in read-only mode", 1270f87a0e29SAlberto Garcia }, 1271692e01a2SKevin Wolf { 1272692e01a2SKevin Wolf .name = "detect-zeroes", 1273692e01a2SKevin Wolf .type = QEMU_OPT_STRING, 1274692e01a2SKevin Wolf .help = "try to optimize zero writes (off, on, unmap)", 1275692e01a2SKevin Wolf }, 1276818584a4SKevin Wolf { 1277818584a4SKevin Wolf .name = "discard", 1278818584a4SKevin Wolf .type = QEMU_OPT_STRING, 1279818584a4SKevin Wolf .help = "discard operation (ignore/off, unmap/on)", 1280818584a4SKevin Wolf }, 12815a9347c6SFam Zheng { 12825a9347c6SFam Zheng .name = BDRV_OPT_FORCE_SHARE, 12835a9347c6SFam Zheng .type = QEMU_OPT_BOOL, 12845a9347c6SFam Zheng .help = "always accept other writers (default: off)", 12855a9347c6SFam Zheng }, 128618edf289SKevin Wolf { /* end of list */ } 128718edf289SKevin Wolf }, 128818edf289SKevin Wolf }; 128918edf289SKevin Wolf 1290b6ce07aaSKevin Wolf /* 129157915332SKevin Wolf * Common part for opening disk images and files 1292b6ad491aSKevin Wolf * 1293b6ad491aSKevin Wolf * Removes all processed options from *options. 129457915332SKevin Wolf */ 12955696c6e3SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file, 129682dc8b41SKevin Wolf QDict *options, Error **errp) 129757915332SKevin Wolf { 129857915332SKevin Wolf int ret, open_flags; 1299035fccdfSKevin Wolf const char *filename; 130062392ebbSKevin Wolf const char *driver_name = NULL; 13016913c0c2SBenoît Canet const char *node_name = NULL; 1302818584a4SKevin Wolf const char *discard; 1303692e01a2SKevin Wolf const char *detect_zeroes; 130418edf289SKevin Wolf QemuOpts *opts; 130562392ebbSKevin Wolf BlockDriver *drv; 130634b5d2c6SMax Reitz Error *local_err = NULL; 130757915332SKevin Wolf 13086405875cSPaolo Bonzini assert(bs->file == NULL); 1309707ff828SKevin Wolf assert(options != NULL && bs->options != options); 131057915332SKevin Wolf 131162392ebbSKevin Wolf opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 131262392ebbSKevin Wolf qemu_opts_absorb_qdict(opts, options, &local_err); 131362392ebbSKevin Wolf if (local_err) { 131462392ebbSKevin Wolf error_propagate(errp, local_err); 131562392ebbSKevin Wolf ret = -EINVAL; 131662392ebbSKevin Wolf goto fail_opts; 131762392ebbSKevin Wolf } 131862392ebbSKevin Wolf 13199b7e8691SAlberto Garcia update_flags_from_options(&bs->open_flags, opts); 13209b7e8691SAlberto Garcia 132162392ebbSKevin Wolf driver_name = qemu_opt_get(opts, "driver"); 132262392ebbSKevin Wolf drv = bdrv_find_format(driver_name); 132362392ebbSKevin Wolf assert(drv != NULL); 132462392ebbSKevin Wolf 13255a9347c6SFam Zheng bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false); 13265a9347c6SFam Zheng 13275a9347c6SFam Zheng if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) { 13285a9347c6SFam Zheng error_setg(errp, 13295a9347c6SFam Zheng BDRV_OPT_FORCE_SHARE 13305a9347c6SFam Zheng "=on can only be used with read-only images"); 13315a9347c6SFam Zheng ret = -EINVAL; 13325a9347c6SFam Zheng goto fail_opts; 13335a9347c6SFam Zheng } 13345a9347c6SFam Zheng 133545673671SKevin Wolf if (file != NULL) { 13365696c6e3SKevin Wolf filename = blk_bs(file)->filename; 133745673671SKevin Wolf } else { 1338129c7d1cSMarkus Armbruster /* 1339129c7d1cSMarkus Armbruster * Caution: while qdict_get_try_str() is fine, getting 1340129c7d1cSMarkus Armbruster * non-string types would require more care. When @options 1341129c7d1cSMarkus Armbruster * come from -blockdev or blockdev_add, its members are typed 1342129c7d1cSMarkus Armbruster * according to the QAPI schema, but when they come from 1343129c7d1cSMarkus Armbruster * -drive, they're all QString. 1344129c7d1cSMarkus Armbruster */ 134545673671SKevin Wolf filename = qdict_get_try_str(options, "filename"); 134645673671SKevin Wolf } 134745673671SKevin Wolf 13484a008240SMax Reitz if (drv->bdrv_needs_filename && (!filename || !filename[0])) { 1349765003dbSKevin Wolf error_setg(errp, "The '%s' block driver requires a file name", 1350765003dbSKevin Wolf drv->format_name); 135118edf289SKevin Wolf ret = -EINVAL; 135218edf289SKevin Wolf goto fail_opts; 135318edf289SKevin Wolf } 135418edf289SKevin Wolf 135582dc8b41SKevin Wolf trace_bdrv_open_common(bs, filename ?: "", bs->open_flags, 135682dc8b41SKevin Wolf drv->format_name); 135762392ebbSKevin Wolf 135882dc8b41SKevin Wolf bs->read_only = !(bs->open_flags & BDRV_O_RDWR); 1359b64ec4e4SFam Zheng 1360b64ec4e4SFam Zheng if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) { 13618f94a6e4SKevin Wolf error_setg(errp, 13628f94a6e4SKevin Wolf !bs->read_only && bdrv_is_whitelisted(drv, true) 13638f94a6e4SKevin Wolf ? "Driver '%s' can only be used for read-only devices" 13648f94a6e4SKevin Wolf : "Driver '%s' is not whitelisted", 13658f94a6e4SKevin Wolf drv->format_name); 136618edf289SKevin Wolf ret = -ENOTSUP; 136718edf289SKevin Wolf goto fail_opts; 1368b64ec4e4SFam Zheng } 136957915332SKevin Wolf 1370d3faa13eSPaolo Bonzini /* bdrv_new() and bdrv_close() make it so */ 1371d3faa13eSPaolo Bonzini assert(atomic_read(&bs->copy_on_read) == 0); 1372d3faa13eSPaolo Bonzini 137382dc8b41SKevin Wolf if (bs->open_flags & BDRV_O_COPY_ON_READ) { 13740ebd24e0SKevin Wolf if (!bs->read_only) { 137553fec9d3SStefan Hajnoczi bdrv_enable_copy_on_read(bs); 13760ebd24e0SKevin Wolf } else { 13770ebd24e0SKevin Wolf error_setg(errp, "Can't use copy-on-read on read-only device"); 137818edf289SKevin Wolf ret = -EINVAL; 137918edf289SKevin Wolf goto fail_opts; 13800ebd24e0SKevin Wolf } 138153fec9d3SStefan Hajnoczi } 138253fec9d3SStefan Hajnoczi 1383818584a4SKevin Wolf discard = qemu_opt_get(opts, "discard"); 1384818584a4SKevin Wolf if (discard != NULL) { 1385818584a4SKevin Wolf if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) { 1386818584a4SKevin Wolf error_setg(errp, "Invalid discard option"); 1387818584a4SKevin Wolf ret = -EINVAL; 1388818584a4SKevin Wolf goto fail_opts; 1389818584a4SKevin Wolf } 1390818584a4SKevin Wolf } 1391818584a4SKevin Wolf 1392692e01a2SKevin Wolf detect_zeroes = qemu_opt_get(opts, "detect-zeroes"); 1393692e01a2SKevin Wolf if (detect_zeroes) { 1394692e01a2SKevin Wolf BlockdevDetectZeroesOptions value = 1395f7abe0ecSMarc-André Lureau qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, 1396692e01a2SKevin Wolf detect_zeroes, 1397692e01a2SKevin Wolf BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, 1398692e01a2SKevin Wolf &local_err); 1399692e01a2SKevin Wolf if (local_err) { 1400692e01a2SKevin Wolf error_propagate(errp, local_err); 1401692e01a2SKevin Wolf ret = -EINVAL; 1402692e01a2SKevin Wolf goto fail_opts; 1403692e01a2SKevin Wolf } 1404692e01a2SKevin Wolf 1405692e01a2SKevin Wolf if (value == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP && 1406692e01a2SKevin Wolf !(bs->open_flags & BDRV_O_UNMAP)) 1407692e01a2SKevin Wolf { 1408692e01a2SKevin Wolf error_setg(errp, "setting detect-zeroes to unmap is not allowed " 1409692e01a2SKevin Wolf "without setting discard operation to unmap"); 1410692e01a2SKevin Wolf ret = -EINVAL; 1411692e01a2SKevin Wolf goto fail_opts; 1412692e01a2SKevin Wolf } 1413692e01a2SKevin Wolf 1414692e01a2SKevin Wolf bs->detect_zeroes = value; 1415692e01a2SKevin Wolf } 1416692e01a2SKevin Wolf 1417c2ad1b0cSKevin Wolf if (filename != NULL) { 141857915332SKevin Wolf pstrcpy(bs->filename, sizeof(bs->filename), filename); 1419c2ad1b0cSKevin Wolf } else { 1420c2ad1b0cSKevin Wolf bs->filename[0] = '\0'; 1421c2ad1b0cSKevin Wolf } 142291af7014SMax Reitz pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename); 142357915332SKevin Wolf 142466f82ceeSKevin Wolf /* Open the image, either directly or using a protocol */ 142582dc8b41SKevin Wolf open_flags = bdrv_open_flags(bs, bs->open_flags); 142601a56501SKevin Wolf node_name = qemu_opt_get(opts, "node-name"); 142766f82ceeSKevin Wolf 142801a56501SKevin Wolf assert(!drv->bdrv_file_open || file == NULL); 142901a56501SKevin Wolf ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp); 143057915332SKevin Wolf if (ret < 0) { 143101a56501SKevin Wolf goto fail_opts; 143234b5d2c6SMax Reitz } 143318edf289SKevin Wolf 143418edf289SKevin Wolf qemu_opts_del(opts); 143557915332SKevin Wolf return 0; 143657915332SKevin Wolf 143718edf289SKevin Wolf fail_opts: 143818edf289SKevin Wolf qemu_opts_del(opts); 143957915332SKevin Wolf return ret; 144057915332SKevin Wolf } 144157915332SKevin Wolf 14425e5c4f63SKevin Wolf static QDict *parse_json_filename(const char *filename, Error **errp) 14435e5c4f63SKevin Wolf { 14445e5c4f63SKevin Wolf QObject *options_obj; 14455e5c4f63SKevin Wolf QDict *options; 14465e5c4f63SKevin Wolf int ret; 14475e5c4f63SKevin Wolf 14485e5c4f63SKevin Wolf ret = strstart(filename, "json:", &filename); 14495e5c4f63SKevin Wolf assert(ret); 14505e5c4f63SKevin Wolf 14515577fff7SMarkus Armbruster options_obj = qobject_from_json(filename, errp); 14525e5c4f63SKevin Wolf if (!options_obj) { 14535577fff7SMarkus Armbruster /* Work around qobject_from_json() lossage TODO fix that */ 14545577fff7SMarkus Armbruster if (errp && !*errp) { 14555e5c4f63SKevin Wolf error_setg(errp, "Could not parse the JSON options"); 14565e5c4f63SKevin Wolf return NULL; 14575e5c4f63SKevin Wolf } 14585577fff7SMarkus Armbruster error_prepend(errp, "Could not parse the JSON options: "); 14595577fff7SMarkus Armbruster return NULL; 14605577fff7SMarkus Armbruster } 14615e5c4f63SKevin Wolf 14627dc847ebSMax Reitz options = qobject_to(QDict, options_obj); 1463ca6b6e1eSMarkus Armbruster if (!options) { 1464cb3e7f08SMarc-André Lureau qobject_unref(options_obj); 14655e5c4f63SKevin Wolf error_setg(errp, "Invalid JSON object given"); 14665e5c4f63SKevin Wolf return NULL; 14675e5c4f63SKevin Wolf } 14685e5c4f63SKevin Wolf 14695e5c4f63SKevin Wolf qdict_flatten(options); 14705e5c4f63SKevin Wolf 14715e5c4f63SKevin Wolf return options; 14725e5c4f63SKevin Wolf } 14735e5c4f63SKevin Wolf 1474de3b53f0SKevin Wolf static void parse_json_protocol(QDict *options, const char **pfilename, 1475de3b53f0SKevin Wolf Error **errp) 1476de3b53f0SKevin Wolf { 1477de3b53f0SKevin Wolf QDict *json_options; 1478de3b53f0SKevin Wolf Error *local_err = NULL; 1479de3b53f0SKevin Wolf 1480de3b53f0SKevin Wolf /* Parse json: pseudo-protocol */ 1481de3b53f0SKevin Wolf if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) { 1482de3b53f0SKevin Wolf return; 1483de3b53f0SKevin Wolf } 1484de3b53f0SKevin Wolf 1485de3b53f0SKevin Wolf json_options = parse_json_filename(*pfilename, &local_err); 1486de3b53f0SKevin Wolf if (local_err) { 1487de3b53f0SKevin Wolf error_propagate(errp, local_err); 1488de3b53f0SKevin Wolf return; 1489de3b53f0SKevin Wolf } 1490de3b53f0SKevin Wolf 1491de3b53f0SKevin Wolf /* Options given in the filename have lower priority than options 1492de3b53f0SKevin Wolf * specified directly */ 1493de3b53f0SKevin Wolf qdict_join(options, json_options, false); 1494cb3e7f08SMarc-André Lureau qobject_unref(json_options); 1495de3b53f0SKevin Wolf *pfilename = NULL; 1496de3b53f0SKevin Wolf } 1497de3b53f0SKevin Wolf 149857915332SKevin Wolf /* 1499f54120ffSKevin Wolf * Fills in default options for opening images and converts the legacy 1500f54120ffSKevin Wolf * filename/flags pair to option QDict entries. 150153a29513SMax Reitz * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a 150253a29513SMax Reitz * block driver has been specified explicitly. 1503f54120ffSKevin Wolf */ 1504de3b53f0SKevin Wolf static int bdrv_fill_options(QDict **options, const char *filename, 1505053e1578SMax Reitz int *flags, Error **errp) 1506f54120ffSKevin Wolf { 1507f54120ffSKevin Wolf const char *drvname; 150853a29513SMax Reitz bool protocol = *flags & BDRV_O_PROTOCOL; 1509f54120ffSKevin Wolf bool parse_filename = false; 1510053e1578SMax Reitz BlockDriver *drv = NULL; 1511f54120ffSKevin Wolf Error *local_err = NULL; 1512f54120ffSKevin Wolf 1513129c7d1cSMarkus Armbruster /* 1514129c7d1cSMarkus Armbruster * Caution: while qdict_get_try_str() is fine, getting non-string 1515129c7d1cSMarkus Armbruster * types would require more care. When @options come from 1516129c7d1cSMarkus Armbruster * -blockdev or blockdev_add, its members are typed according to 1517129c7d1cSMarkus Armbruster * the QAPI schema, but when they come from -drive, they're all 1518129c7d1cSMarkus Armbruster * QString. 1519129c7d1cSMarkus Armbruster */ 152053a29513SMax Reitz drvname = qdict_get_try_str(*options, "driver"); 1521053e1578SMax Reitz if (drvname) { 1522053e1578SMax Reitz drv = bdrv_find_format(drvname); 1523053e1578SMax Reitz if (!drv) { 1524053e1578SMax Reitz error_setg(errp, "Unknown driver '%s'", drvname); 1525053e1578SMax Reitz return -ENOENT; 1526053e1578SMax Reitz } 152753a29513SMax Reitz /* If the user has explicitly specified the driver, this choice should 152853a29513SMax Reitz * override the BDRV_O_PROTOCOL flag */ 1529053e1578SMax Reitz protocol = drv->bdrv_file_open; 153053a29513SMax Reitz } 153153a29513SMax Reitz 153253a29513SMax Reitz if (protocol) { 153353a29513SMax Reitz *flags |= BDRV_O_PROTOCOL; 153453a29513SMax Reitz } else { 153553a29513SMax Reitz *flags &= ~BDRV_O_PROTOCOL; 153653a29513SMax Reitz } 153753a29513SMax Reitz 153891a097e7SKevin Wolf /* Translate cache options from flags into options */ 153991a097e7SKevin Wolf update_options_from_flags(*options, *flags); 154091a097e7SKevin Wolf 1541f54120ffSKevin Wolf /* Fetch the file name from the options QDict if necessary */ 154217b005f1SKevin Wolf if (protocol && filename) { 1543f54120ffSKevin Wolf if (!qdict_haskey(*options, "filename")) { 154446f5ac20SEric Blake qdict_put_str(*options, "filename", filename); 1545f54120ffSKevin Wolf parse_filename = true; 1546f54120ffSKevin Wolf } else { 1547f54120ffSKevin Wolf error_setg(errp, "Can't specify 'file' and 'filename' options at " 1548f54120ffSKevin Wolf "the same time"); 1549f54120ffSKevin Wolf return -EINVAL; 1550f54120ffSKevin Wolf } 1551f54120ffSKevin Wolf } 1552f54120ffSKevin Wolf 1553f54120ffSKevin Wolf /* Find the right block driver */ 1554129c7d1cSMarkus Armbruster /* See cautionary note on accessing @options above */ 1555f54120ffSKevin Wolf filename = qdict_get_try_str(*options, "filename"); 1556f54120ffSKevin Wolf 155717b005f1SKevin Wolf if (!drvname && protocol) { 1558f54120ffSKevin Wolf if (filename) { 1559b65a5e12SMax Reitz drv = bdrv_find_protocol(filename, parse_filename, errp); 1560f54120ffSKevin Wolf if (!drv) { 1561f54120ffSKevin Wolf return -EINVAL; 1562f54120ffSKevin Wolf } 1563f54120ffSKevin Wolf 1564f54120ffSKevin Wolf drvname = drv->format_name; 156546f5ac20SEric Blake qdict_put_str(*options, "driver", drvname); 1566f54120ffSKevin Wolf } else { 1567f54120ffSKevin Wolf error_setg(errp, "Must specify either driver or file"); 1568f54120ffSKevin Wolf return -EINVAL; 1569f54120ffSKevin Wolf } 157017b005f1SKevin Wolf } 157117b005f1SKevin Wolf 157217b005f1SKevin Wolf assert(drv || !protocol); 1573f54120ffSKevin Wolf 1574f54120ffSKevin Wolf /* Driver-specific filename parsing */ 157517b005f1SKevin Wolf if (drv && drv->bdrv_parse_filename && parse_filename) { 1576f54120ffSKevin Wolf drv->bdrv_parse_filename(filename, *options, &local_err); 1577f54120ffSKevin Wolf if (local_err) { 1578f54120ffSKevin Wolf error_propagate(errp, local_err); 1579f54120ffSKevin Wolf return -EINVAL; 1580f54120ffSKevin Wolf } 1581f54120ffSKevin Wolf 1582f54120ffSKevin Wolf if (!drv->bdrv_needs_filename) { 1583f54120ffSKevin Wolf qdict_del(*options, "filename"); 1584f54120ffSKevin Wolf } 1585f54120ffSKevin Wolf } 1586f54120ffSKevin Wolf 1587f54120ffSKevin Wolf return 0; 1588f54120ffSKevin Wolf } 1589f54120ffSKevin Wolf 15903121fb45SKevin Wolf static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q, 15913121fb45SKevin Wolf uint64_t perm, uint64_t shared, 1592c1cef672SFam Zheng GSList *ignore_children, Error **errp); 1593c1cef672SFam Zheng static void bdrv_child_abort_perm_update(BdrvChild *c); 1594c1cef672SFam Zheng static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared); 1595c1cef672SFam Zheng 1596148eb13cSKevin Wolf typedef struct BlockReopenQueueEntry { 1597148eb13cSKevin Wolf bool prepared; 1598148eb13cSKevin Wolf BDRVReopenState state; 1599148eb13cSKevin Wolf QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry; 1600148eb13cSKevin Wolf } BlockReopenQueueEntry; 1601148eb13cSKevin Wolf 1602148eb13cSKevin Wolf /* 1603148eb13cSKevin Wolf * Return the flags that @bs will have after the reopens in @q have 1604148eb13cSKevin Wolf * successfully completed. If @q is NULL (or @bs is not contained in @q), 1605148eb13cSKevin Wolf * return the current flags. 1606148eb13cSKevin Wolf */ 1607148eb13cSKevin Wolf static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs) 1608148eb13cSKevin Wolf { 1609148eb13cSKevin Wolf BlockReopenQueueEntry *entry; 1610148eb13cSKevin Wolf 1611148eb13cSKevin Wolf if (q != NULL) { 1612148eb13cSKevin Wolf QSIMPLEQ_FOREACH(entry, q, entry) { 1613148eb13cSKevin Wolf if (entry->state.bs == bs) { 1614148eb13cSKevin Wolf return entry->state.flags; 1615148eb13cSKevin Wolf } 1616148eb13cSKevin Wolf } 1617148eb13cSKevin Wolf } 1618148eb13cSKevin Wolf 1619148eb13cSKevin Wolf return bs->open_flags; 1620148eb13cSKevin Wolf } 1621148eb13cSKevin Wolf 1622148eb13cSKevin Wolf /* Returns whether the image file can be written to after the reopen queue @q 1623148eb13cSKevin Wolf * has been successfully applied, or right now if @q is NULL. */ 1624cc022140SMax Reitz static bool bdrv_is_writable_after_reopen(BlockDriverState *bs, 1625cc022140SMax Reitz BlockReopenQueue *q) 1626148eb13cSKevin Wolf { 1627148eb13cSKevin Wolf int flags = bdrv_reopen_get_flags(q, bs); 1628148eb13cSKevin Wolf 1629148eb13cSKevin Wolf return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR; 1630148eb13cSKevin Wolf } 1631148eb13cSKevin Wolf 1632cc022140SMax Reitz /* 1633cc022140SMax Reitz * Return whether the BDS can be written to. This is not necessarily 1634cc022140SMax Reitz * the same as !bdrv_is_read_only(bs), as inactivated images may not 1635cc022140SMax Reitz * be written to but do not count as read-only images. 1636cc022140SMax Reitz */ 1637cc022140SMax Reitz bool bdrv_is_writable(BlockDriverState *bs) 1638cc022140SMax Reitz { 1639cc022140SMax Reitz return bdrv_is_writable_after_reopen(bs, NULL); 1640cc022140SMax Reitz } 1641cc022140SMax Reitz 1642ffd1a5a2SFam Zheng static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs, 1643e0995dc3SKevin Wolf BdrvChild *c, const BdrvChildRole *role, 1644e0995dc3SKevin Wolf BlockReopenQueue *reopen_queue, 1645ffd1a5a2SFam Zheng uint64_t parent_perm, uint64_t parent_shared, 1646ffd1a5a2SFam Zheng uint64_t *nperm, uint64_t *nshared) 1647ffd1a5a2SFam Zheng { 1648ffd1a5a2SFam Zheng if (bs->drv && bs->drv->bdrv_child_perm) { 1649e0995dc3SKevin Wolf bs->drv->bdrv_child_perm(bs, c, role, reopen_queue, 1650ffd1a5a2SFam Zheng parent_perm, parent_shared, 1651ffd1a5a2SFam Zheng nperm, nshared); 1652ffd1a5a2SFam Zheng } 1653e0995dc3SKevin Wolf /* TODO Take force_share from reopen_queue */ 1654ffd1a5a2SFam Zheng if (child_bs && child_bs->force_share) { 1655ffd1a5a2SFam Zheng *nshared = BLK_PERM_ALL; 1656ffd1a5a2SFam Zheng } 1657ffd1a5a2SFam Zheng } 1658ffd1a5a2SFam Zheng 165933a610c3SKevin Wolf /* 166033a610c3SKevin Wolf * Check whether permissions on this node can be changed in a way that 166133a610c3SKevin Wolf * @cumulative_perms and @cumulative_shared_perms are the new cumulative 166233a610c3SKevin Wolf * permissions of all its parents. This involves checking whether all necessary 166333a610c3SKevin Wolf * permission changes to child nodes can be performed. 166433a610c3SKevin Wolf * 166533a610c3SKevin Wolf * A call to this function must always be followed by a call to bdrv_set_perm() 166633a610c3SKevin Wolf * or bdrv_abort_perm_update(). 166733a610c3SKevin Wolf */ 16683121fb45SKevin Wolf static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q, 16693121fb45SKevin Wolf uint64_t cumulative_perms, 167046181129SKevin Wolf uint64_t cumulative_shared_perms, 167146181129SKevin Wolf GSList *ignore_children, Error **errp) 167233a610c3SKevin Wolf { 167333a610c3SKevin Wolf BlockDriver *drv = bs->drv; 167433a610c3SKevin Wolf BdrvChild *c; 167533a610c3SKevin Wolf int ret; 167633a610c3SKevin Wolf 167733a610c3SKevin Wolf /* Write permissions never work with read-only images */ 167833a610c3SKevin Wolf if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && 1679cc022140SMax Reitz !bdrv_is_writable_after_reopen(bs, q)) 168033a610c3SKevin Wolf { 168133a610c3SKevin Wolf error_setg(errp, "Block node is read-only"); 168233a610c3SKevin Wolf return -EPERM; 168333a610c3SKevin Wolf } 168433a610c3SKevin Wolf 168533a610c3SKevin Wolf /* Check this node */ 168633a610c3SKevin Wolf if (!drv) { 168733a610c3SKevin Wolf return 0; 168833a610c3SKevin Wolf } 168933a610c3SKevin Wolf 169033a610c3SKevin Wolf if (drv->bdrv_check_perm) { 169133a610c3SKevin Wolf return drv->bdrv_check_perm(bs, cumulative_perms, 169233a610c3SKevin Wolf cumulative_shared_perms, errp); 169333a610c3SKevin Wolf } 169433a610c3SKevin Wolf 169578e421c9SKevin Wolf /* Drivers that never have children can omit .bdrv_child_perm() */ 169633a610c3SKevin Wolf if (!drv->bdrv_child_perm) { 169778e421c9SKevin Wolf assert(QLIST_EMPTY(&bs->children)); 169833a610c3SKevin Wolf return 0; 169933a610c3SKevin Wolf } 170033a610c3SKevin Wolf 170133a610c3SKevin Wolf /* Check all children */ 170233a610c3SKevin Wolf QLIST_FOREACH(c, &bs->children, next) { 170333a610c3SKevin Wolf uint64_t cur_perm, cur_shared; 17043121fb45SKevin Wolf bdrv_child_perm(bs, c->bs, c, c->role, q, 170533a610c3SKevin Wolf cumulative_perms, cumulative_shared_perms, 170633a610c3SKevin Wolf &cur_perm, &cur_shared); 17073121fb45SKevin Wolf ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared, 17083121fb45SKevin Wolf ignore_children, errp); 170933a610c3SKevin Wolf if (ret < 0) { 171033a610c3SKevin Wolf return ret; 171133a610c3SKevin Wolf } 171233a610c3SKevin Wolf } 171333a610c3SKevin Wolf 171433a610c3SKevin Wolf return 0; 171533a610c3SKevin Wolf } 171633a610c3SKevin Wolf 171733a610c3SKevin Wolf /* 171833a610c3SKevin Wolf * Notifies drivers that after a previous bdrv_check_perm() call, the 171933a610c3SKevin Wolf * permission update is not performed and any preparations made for it (e.g. 172033a610c3SKevin Wolf * taken file locks) need to be undone. 172133a610c3SKevin Wolf * 172233a610c3SKevin Wolf * This function recursively notifies all child nodes. 172333a610c3SKevin Wolf */ 172433a610c3SKevin Wolf static void bdrv_abort_perm_update(BlockDriverState *bs) 172533a610c3SKevin Wolf { 172633a610c3SKevin Wolf BlockDriver *drv = bs->drv; 172733a610c3SKevin Wolf BdrvChild *c; 172833a610c3SKevin Wolf 172933a610c3SKevin Wolf if (!drv) { 173033a610c3SKevin Wolf return; 173133a610c3SKevin Wolf } 173233a610c3SKevin Wolf 173333a610c3SKevin Wolf if (drv->bdrv_abort_perm_update) { 173433a610c3SKevin Wolf drv->bdrv_abort_perm_update(bs); 173533a610c3SKevin Wolf } 173633a610c3SKevin Wolf 173733a610c3SKevin Wolf QLIST_FOREACH(c, &bs->children, next) { 173833a610c3SKevin Wolf bdrv_child_abort_perm_update(c); 173933a610c3SKevin Wolf } 174033a610c3SKevin Wolf } 174133a610c3SKevin Wolf 174233a610c3SKevin Wolf static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms, 174333a610c3SKevin Wolf uint64_t cumulative_shared_perms) 174433a610c3SKevin Wolf { 174533a610c3SKevin Wolf BlockDriver *drv = bs->drv; 174633a610c3SKevin Wolf BdrvChild *c; 174733a610c3SKevin Wolf 174833a610c3SKevin Wolf if (!drv) { 174933a610c3SKevin Wolf return; 175033a610c3SKevin Wolf } 175133a610c3SKevin Wolf 175233a610c3SKevin Wolf /* Update this node */ 175333a610c3SKevin Wolf if (drv->bdrv_set_perm) { 175433a610c3SKevin Wolf drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms); 175533a610c3SKevin Wolf } 175633a610c3SKevin Wolf 175778e421c9SKevin Wolf /* Drivers that never have children can omit .bdrv_child_perm() */ 175833a610c3SKevin Wolf if (!drv->bdrv_child_perm) { 175978e421c9SKevin Wolf assert(QLIST_EMPTY(&bs->children)); 176033a610c3SKevin Wolf return; 176133a610c3SKevin Wolf } 176233a610c3SKevin Wolf 176333a610c3SKevin Wolf /* Update all children */ 176433a610c3SKevin Wolf QLIST_FOREACH(c, &bs->children, next) { 176533a610c3SKevin Wolf uint64_t cur_perm, cur_shared; 1766e0995dc3SKevin Wolf bdrv_child_perm(bs, c->bs, c, c->role, NULL, 176733a610c3SKevin Wolf cumulative_perms, cumulative_shared_perms, 176833a610c3SKevin Wolf &cur_perm, &cur_shared); 176933a610c3SKevin Wolf bdrv_child_set_perm(c, cur_perm, cur_shared); 177033a610c3SKevin Wolf } 177133a610c3SKevin Wolf } 177233a610c3SKevin Wolf 177333a610c3SKevin Wolf static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm, 177433a610c3SKevin Wolf uint64_t *shared_perm) 177533a610c3SKevin Wolf { 177633a610c3SKevin Wolf BdrvChild *c; 177733a610c3SKevin Wolf uint64_t cumulative_perms = 0; 177833a610c3SKevin Wolf uint64_t cumulative_shared_perms = BLK_PERM_ALL; 177933a610c3SKevin Wolf 178033a610c3SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 178133a610c3SKevin Wolf cumulative_perms |= c->perm; 178233a610c3SKevin Wolf cumulative_shared_perms &= c->shared_perm; 178333a610c3SKevin Wolf } 178433a610c3SKevin Wolf 178533a610c3SKevin Wolf *perm = cumulative_perms; 178633a610c3SKevin Wolf *shared_perm = cumulative_shared_perms; 178733a610c3SKevin Wolf } 178833a610c3SKevin Wolf 1789d083319fSKevin Wolf static char *bdrv_child_user_desc(BdrvChild *c) 1790d083319fSKevin Wolf { 1791d083319fSKevin Wolf if (c->role->get_parent_desc) { 1792d083319fSKevin Wolf return c->role->get_parent_desc(c); 1793d083319fSKevin Wolf } 1794d083319fSKevin Wolf 1795d083319fSKevin Wolf return g_strdup("another user"); 1796d083319fSKevin Wolf } 1797d083319fSKevin Wolf 17985176196cSFam Zheng char *bdrv_perm_names(uint64_t perm) 1799d083319fSKevin Wolf { 1800d083319fSKevin Wolf struct perm_name { 1801d083319fSKevin Wolf uint64_t perm; 1802d083319fSKevin Wolf const char *name; 1803d083319fSKevin Wolf } permissions[] = { 1804d083319fSKevin Wolf { BLK_PERM_CONSISTENT_READ, "consistent read" }, 1805d083319fSKevin Wolf { BLK_PERM_WRITE, "write" }, 1806d083319fSKevin Wolf { BLK_PERM_WRITE_UNCHANGED, "write unchanged" }, 1807d083319fSKevin Wolf { BLK_PERM_RESIZE, "resize" }, 1808d083319fSKevin Wolf { BLK_PERM_GRAPH_MOD, "change children" }, 1809d083319fSKevin Wolf { 0, NULL } 1810d083319fSKevin Wolf }; 1811d083319fSKevin Wolf 1812d083319fSKevin Wolf char *result = g_strdup(""); 1813d083319fSKevin Wolf struct perm_name *p; 1814d083319fSKevin Wolf 1815d083319fSKevin Wolf for (p = permissions; p->name; p++) { 1816d083319fSKevin Wolf if (perm & p->perm) { 1817d083319fSKevin Wolf char *old = result; 1818d083319fSKevin Wolf result = g_strdup_printf("%s%s%s", old, *old ? ", " : "", p->name); 1819d083319fSKevin Wolf g_free(old); 1820d083319fSKevin Wolf } 1821d083319fSKevin Wolf } 1822d083319fSKevin Wolf 1823d083319fSKevin Wolf return result; 1824d083319fSKevin Wolf } 1825d083319fSKevin Wolf 182633a610c3SKevin Wolf /* 182733a610c3SKevin Wolf * Checks whether a new reference to @bs can be added if the new user requires 182846181129SKevin Wolf * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is 182946181129SKevin Wolf * set, the BdrvChild objects in this list are ignored in the calculations; 183046181129SKevin Wolf * this allows checking permission updates for an existing reference. 183133a610c3SKevin Wolf * 183233a610c3SKevin Wolf * Needs to be followed by a call to either bdrv_set_perm() or 183333a610c3SKevin Wolf * bdrv_abort_perm_update(). */ 18343121fb45SKevin Wolf static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q, 18353121fb45SKevin Wolf uint64_t new_used_perm, 1836d5e6f437SKevin Wolf uint64_t new_shared_perm, 183746181129SKevin Wolf GSList *ignore_children, Error **errp) 1838d5e6f437SKevin Wolf { 1839d5e6f437SKevin Wolf BdrvChild *c; 184033a610c3SKevin Wolf uint64_t cumulative_perms = new_used_perm; 184133a610c3SKevin Wolf uint64_t cumulative_shared_perms = new_shared_perm; 1842d5e6f437SKevin Wolf 1843d5e6f437SKevin Wolf /* There is no reason why anyone couldn't tolerate write_unchanged */ 1844d5e6f437SKevin Wolf assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED); 1845d5e6f437SKevin Wolf 1846d5e6f437SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 184746181129SKevin Wolf if (g_slist_find(ignore_children, c)) { 1848d5e6f437SKevin Wolf continue; 1849d5e6f437SKevin Wolf } 1850d5e6f437SKevin Wolf 1851d083319fSKevin Wolf if ((new_used_perm & c->shared_perm) != new_used_perm) { 1852d083319fSKevin Wolf char *user = bdrv_child_user_desc(c); 1853d083319fSKevin Wolf char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm); 1854d083319fSKevin Wolf error_setg(errp, "Conflicts with use by %s as '%s', which does not " 1855d083319fSKevin Wolf "allow '%s' on %s", 1856d083319fSKevin Wolf user, c->name, perm_names, bdrv_get_node_name(c->bs)); 1857d083319fSKevin Wolf g_free(user); 1858d083319fSKevin Wolf g_free(perm_names); 1859d083319fSKevin Wolf return -EPERM; 1860d5e6f437SKevin Wolf } 1861d083319fSKevin Wolf 1862d083319fSKevin Wolf if ((c->perm & new_shared_perm) != c->perm) { 1863d083319fSKevin Wolf char *user = bdrv_child_user_desc(c); 1864d083319fSKevin Wolf char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm); 1865d083319fSKevin Wolf error_setg(errp, "Conflicts with use by %s as '%s', which uses " 1866d083319fSKevin Wolf "'%s' on %s", 1867d083319fSKevin Wolf user, c->name, perm_names, bdrv_get_node_name(c->bs)); 1868d083319fSKevin Wolf g_free(user); 1869d083319fSKevin Wolf g_free(perm_names); 1870d5e6f437SKevin Wolf return -EPERM; 1871d5e6f437SKevin Wolf } 187233a610c3SKevin Wolf 187333a610c3SKevin Wolf cumulative_perms |= c->perm; 187433a610c3SKevin Wolf cumulative_shared_perms &= c->shared_perm; 1875d5e6f437SKevin Wolf } 1876d5e6f437SKevin Wolf 18773121fb45SKevin Wolf return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms, 187846181129SKevin Wolf ignore_children, errp); 187933a610c3SKevin Wolf } 188033a610c3SKevin Wolf 188133a610c3SKevin Wolf /* Needs to be followed by a call to either bdrv_child_set_perm() or 188233a610c3SKevin Wolf * bdrv_child_abort_perm_update(). */ 18833121fb45SKevin Wolf static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q, 18843121fb45SKevin Wolf uint64_t perm, uint64_t shared, 188546181129SKevin Wolf GSList *ignore_children, Error **errp) 188633a610c3SKevin Wolf { 188746181129SKevin Wolf int ret; 188846181129SKevin Wolf 188946181129SKevin Wolf ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c); 18903121fb45SKevin Wolf ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children, errp); 189146181129SKevin Wolf g_slist_free(ignore_children); 189246181129SKevin Wolf 189346181129SKevin Wolf return ret; 189433a610c3SKevin Wolf } 189533a610c3SKevin Wolf 1896c1cef672SFam Zheng static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared) 189733a610c3SKevin Wolf { 189833a610c3SKevin Wolf uint64_t cumulative_perms, cumulative_shared_perms; 189933a610c3SKevin Wolf 190033a610c3SKevin Wolf c->perm = perm; 190133a610c3SKevin Wolf c->shared_perm = shared; 190233a610c3SKevin Wolf 190333a610c3SKevin Wolf bdrv_get_cumulative_perm(c->bs, &cumulative_perms, 190433a610c3SKevin Wolf &cumulative_shared_perms); 190533a610c3SKevin Wolf bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms); 190633a610c3SKevin Wolf } 190733a610c3SKevin Wolf 1908c1cef672SFam Zheng static void bdrv_child_abort_perm_update(BdrvChild *c) 190933a610c3SKevin Wolf { 191033a610c3SKevin Wolf bdrv_abort_perm_update(c->bs); 191133a610c3SKevin Wolf } 191233a610c3SKevin Wolf 191333a610c3SKevin Wolf int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared, 191433a610c3SKevin Wolf Error **errp) 191533a610c3SKevin Wolf { 191633a610c3SKevin Wolf int ret; 191733a610c3SKevin Wolf 19183121fb45SKevin Wolf ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL, errp); 191933a610c3SKevin Wolf if (ret < 0) { 192033a610c3SKevin Wolf bdrv_child_abort_perm_update(c); 192133a610c3SKevin Wolf return ret; 192233a610c3SKevin Wolf } 192333a610c3SKevin Wolf 192433a610c3SKevin Wolf bdrv_child_set_perm(c, perm, shared); 192533a610c3SKevin Wolf 1926d5e6f437SKevin Wolf return 0; 1927d5e6f437SKevin Wolf } 1928d5e6f437SKevin Wolf 19296a1b9ee1SKevin Wolf #define DEFAULT_PERM_PASSTHROUGH (BLK_PERM_CONSISTENT_READ \ 19306a1b9ee1SKevin Wolf | BLK_PERM_WRITE \ 19316a1b9ee1SKevin Wolf | BLK_PERM_WRITE_UNCHANGED \ 19326a1b9ee1SKevin Wolf | BLK_PERM_RESIZE) 19336a1b9ee1SKevin Wolf #define DEFAULT_PERM_UNCHANGED (BLK_PERM_ALL & ~DEFAULT_PERM_PASSTHROUGH) 19346a1b9ee1SKevin Wolf 19356a1b9ee1SKevin Wolf void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c, 19366a1b9ee1SKevin Wolf const BdrvChildRole *role, 1937e0995dc3SKevin Wolf BlockReopenQueue *reopen_queue, 19386a1b9ee1SKevin Wolf uint64_t perm, uint64_t shared, 19396a1b9ee1SKevin Wolf uint64_t *nperm, uint64_t *nshared) 19406a1b9ee1SKevin Wolf { 19416a1b9ee1SKevin Wolf if (c == NULL) { 19426a1b9ee1SKevin Wolf *nperm = perm & DEFAULT_PERM_PASSTHROUGH; 19436a1b9ee1SKevin Wolf *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED; 19446a1b9ee1SKevin Wolf return; 19456a1b9ee1SKevin Wolf } 19466a1b9ee1SKevin Wolf 19476a1b9ee1SKevin Wolf *nperm = (perm & DEFAULT_PERM_PASSTHROUGH) | 19486a1b9ee1SKevin Wolf (c->perm & DEFAULT_PERM_UNCHANGED); 19496a1b9ee1SKevin Wolf *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | 19506a1b9ee1SKevin Wolf (c->shared_perm & DEFAULT_PERM_UNCHANGED); 19516a1b9ee1SKevin Wolf } 19526a1b9ee1SKevin Wolf 19536b1a044aSKevin Wolf void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c, 19546b1a044aSKevin Wolf const BdrvChildRole *role, 1955e0995dc3SKevin Wolf BlockReopenQueue *reopen_queue, 19566b1a044aSKevin Wolf uint64_t perm, uint64_t shared, 19576b1a044aSKevin Wolf uint64_t *nperm, uint64_t *nshared) 19586b1a044aSKevin Wolf { 19596b1a044aSKevin Wolf bool backing = (role == &child_backing); 19606b1a044aSKevin Wolf assert(role == &child_backing || role == &child_file); 19616b1a044aSKevin Wolf 19626b1a044aSKevin Wolf if (!backing) { 19635fbfabd3SKevin Wolf int flags = bdrv_reopen_get_flags(reopen_queue, bs); 19645fbfabd3SKevin Wolf 19656b1a044aSKevin Wolf /* Apart from the modifications below, the same permissions are 19666b1a044aSKevin Wolf * forwarded and left alone as for filters */ 1967e0995dc3SKevin Wolf bdrv_filter_default_perms(bs, c, role, reopen_queue, perm, shared, 1968e0995dc3SKevin Wolf &perm, &shared); 19696b1a044aSKevin Wolf 19706b1a044aSKevin Wolf /* Format drivers may touch metadata even if the guest doesn't write */ 1971cc022140SMax Reitz if (bdrv_is_writable_after_reopen(bs, reopen_queue)) { 19726b1a044aSKevin Wolf perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE; 19736b1a044aSKevin Wolf } 19746b1a044aSKevin Wolf 19756b1a044aSKevin Wolf /* bs->file always needs to be consistent because of the metadata. We 19766b1a044aSKevin Wolf * can never allow other users to resize or write to it. */ 19775fbfabd3SKevin Wolf if (!(flags & BDRV_O_NO_IO)) { 19786b1a044aSKevin Wolf perm |= BLK_PERM_CONSISTENT_READ; 19795fbfabd3SKevin Wolf } 19806b1a044aSKevin Wolf shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE); 19816b1a044aSKevin Wolf } else { 19826b1a044aSKevin Wolf /* We want consistent read from backing files if the parent needs it. 19836b1a044aSKevin Wolf * No other operations are performed on backing files. */ 19846b1a044aSKevin Wolf perm &= BLK_PERM_CONSISTENT_READ; 19856b1a044aSKevin Wolf 19866b1a044aSKevin Wolf /* If the parent can deal with changing data, we're okay with a 19876b1a044aSKevin Wolf * writable and resizable backing file. */ 19886b1a044aSKevin Wolf /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */ 19896b1a044aSKevin Wolf if (shared & BLK_PERM_WRITE) { 19906b1a044aSKevin Wolf shared = BLK_PERM_WRITE | BLK_PERM_RESIZE; 19916b1a044aSKevin Wolf } else { 19926b1a044aSKevin Wolf shared = 0; 19936b1a044aSKevin Wolf } 19946b1a044aSKevin Wolf 19956b1a044aSKevin Wolf shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD | 19966b1a044aSKevin Wolf BLK_PERM_WRITE_UNCHANGED; 19976b1a044aSKevin Wolf } 19986b1a044aSKevin Wolf 19999c5e6594SKevin Wolf if (bs->open_flags & BDRV_O_INACTIVE) { 20009c5e6594SKevin Wolf shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE; 20019c5e6594SKevin Wolf } 20029c5e6594SKevin Wolf 20036b1a044aSKevin Wolf *nperm = perm; 20046b1a044aSKevin Wolf *nshared = shared; 20056b1a044aSKevin Wolf } 20066b1a044aSKevin Wolf 20078ee03995SKevin Wolf static void bdrv_replace_child_noperm(BdrvChild *child, 20088ee03995SKevin Wolf BlockDriverState *new_bs) 2009e9740bc6SKevin Wolf { 2010e9740bc6SKevin Wolf BlockDriverState *old_bs = child->bs; 20110152bf40SKevin Wolf int i; 2012e9740bc6SKevin Wolf 2013bb2614e9SFam Zheng if (old_bs && new_bs) { 2014bb2614e9SFam Zheng assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs)); 2015bb2614e9SFam Zheng } 2016e9740bc6SKevin Wolf if (old_bs) { 2017d736f119SKevin Wolf /* Detach first so that the recursive drain sections coming from @child 2018d736f119SKevin Wolf * are already gone and we only end the drain sections that came from 2019d736f119SKevin Wolf * elsewhere. */ 2020d736f119SKevin Wolf if (child->role->detach) { 2021d736f119SKevin Wolf child->role->detach(child); 2022d736f119SKevin Wolf } 202336fe1331SKevin Wolf if (old_bs->quiesce_counter && child->role->drained_end) { 20240152bf40SKevin Wolf for (i = 0; i < old_bs->quiesce_counter; i++) { 202536fe1331SKevin Wolf child->role->drained_end(child); 2026e9740bc6SKevin Wolf } 20270152bf40SKevin Wolf } 202836fe1331SKevin Wolf QLIST_REMOVE(child, next_parent); 2029e9740bc6SKevin Wolf } 2030e9740bc6SKevin Wolf 2031e9740bc6SKevin Wolf child->bs = new_bs; 203236fe1331SKevin Wolf 203336fe1331SKevin Wolf if (new_bs) { 203436fe1331SKevin Wolf QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent); 203536fe1331SKevin Wolf if (new_bs->quiesce_counter && child->role->drained_begin) { 20360152bf40SKevin Wolf for (i = 0; i < new_bs->quiesce_counter; i++) { 203736fe1331SKevin Wolf child->role->drained_begin(child); 203836fe1331SKevin Wolf } 20390152bf40SKevin Wolf } 204033a610c3SKevin Wolf 2041d736f119SKevin Wolf /* Attach only after starting new drained sections, so that recursive 2042d736f119SKevin Wolf * drain sections coming from @child don't get an extra .drained_begin 2043d736f119SKevin Wolf * callback. */ 2044db95dbbaSKevin Wolf if (child->role->attach) { 2045db95dbbaSKevin Wolf child->role->attach(child); 2046db95dbbaSKevin Wolf } 204736fe1331SKevin Wolf } 2048e9740bc6SKevin Wolf } 2049e9740bc6SKevin Wolf 2050466787fbSKevin Wolf /* 2051466787fbSKevin Wolf * Updates @child to change its reference to point to @new_bs, including 2052466787fbSKevin Wolf * checking and applying the necessary permisson updates both to the old node 2053466787fbSKevin Wolf * and to @new_bs. 2054466787fbSKevin Wolf * 2055466787fbSKevin Wolf * NULL is passed as @new_bs for removing the reference before freeing @child. 2056466787fbSKevin Wolf * 2057466787fbSKevin Wolf * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this 2058466787fbSKevin Wolf * function uses bdrv_set_perm() to update the permissions according to the new 2059466787fbSKevin Wolf * reference that @new_bs gets. 2060466787fbSKevin Wolf */ 2061466787fbSKevin Wolf static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs) 20628ee03995SKevin Wolf { 20638ee03995SKevin Wolf BlockDriverState *old_bs = child->bs; 20648ee03995SKevin Wolf uint64_t perm, shared_perm; 20658ee03995SKevin Wolf 20668aecf1d1SKevin Wolf bdrv_replace_child_noperm(child, new_bs); 20678aecf1d1SKevin Wolf 20688ee03995SKevin Wolf if (old_bs) { 20698ee03995SKevin Wolf /* Update permissions for old node. This is guaranteed to succeed 20708ee03995SKevin Wolf * because we're just taking a parent away, so we're loosening 20718ee03995SKevin Wolf * restrictions. */ 20728ee03995SKevin Wolf bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm); 20733121fb45SKevin Wolf bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL, &error_abort); 20748ee03995SKevin Wolf bdrv_set_perm(old_bs, perm, shared_perm); 20758ee03995SKevin Wolf } 20768ee03995SKevin Wolf 20778ee03995SKevin Wolf if (new_bs) { 2078f54120ffSKevin Wolf bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm); 2079f54120ffSKevin Wolf bdrv_set_perm(new_bs, perm, shared_perm); 2080f54120ffSKevin Wolf } 2081f54120ffSKevin Wolf } 2082f54120ffSKevin Wolf 2083f21d96d0SKevin Wolf BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs, 2084260fecf1SKevin Wolf const char *child_name, 208536fe1331SKevin Wolf const BdrvChildRole *child_role, 2086d5e6f437SKevin Wolf uint64_t perm, uint64_t shared_perm, 2087d5e6f437SKevin Wolf void *opaque, Error **errp) 2088df581792SKevin Wolf { 2089d5e6f437SKevin Wolf BdrvChild *child; 2090d5e6f437SKevin Wolf int ret; 2091d5e6f437SKevin Wolf 20923121fb45SKevin Wolf ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, errp); 2093d5e6f437SKevin Wolf if (ret < 0) { 209433a610c3SKevin Wolf bdrv_abort_perm_update(child_bs); 2095d5e6f437SKevin Wolf return NULL; 2096d5e6f437SKevin Wolf } 2097d5e6f437SKevin Wolf 2098d5e6f437SKevin Wolf child = g_new(BdrvChild, 1); 2099df581792SKevin Wolf *child = (BdrvChild) { 2100e9740bc6SKevin Wolf .bs = NULL, 2101260fecf1SKevin Wolf .name = g_strdup(child_name), 2102df581792SKevin Wolf .role = child_role, 2103d5e6f437SKevin Wolf .perm = perm, 2104d5e6f437SKevin Wolf .shared_perm = shared_perm, 210536fe1331SKevin Wolf .opaque = opaque, 2106df581792SKevin Wolf }; 2107df581792SKevin Wolf 210833a610c3SKevin Wolf /* This performs the matching bdrv_set_perm() for the above check. */ 2109466787fbSKevin Wolf bdrv_replace_child(child, child_bs); 2110b4b059f6SKevin Wolf 2111b4b059f6SKevin Wolf return child; 2112df581792SKevin Wolf } 2113df581792SKevin Wolf 211498292c61SWen Congyang BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs, 2115f21d96d0SKevin Wolf BlockDriverState *child_bs, 2116f21d96d0SKevin Wolf const char *child_name, 21178b2ff529SKevin Wolf const BdrvChildRole *child_role, 21188b2ff529SKevin Wolf Error **errp) 2119f21d96d0SKevin Wolf { 2120d5e6f437SKevin Wolf BdrvChild *child; 2121f68c598bSKevin Wolf uint64_t perm, shared_perm; 2122d5e6f437SKevin Wolf 2123f68c598bSKevin Wolf bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm); 2124f68c598bSKevin Wolf 2125f68c598bSKevin Wolf assert(parent_bs->drv); 2126bb2614e9SFam Zheng assert(bdrv_get_aio_context(parent_bs) == bdrv_get_aio_context(child_bs)); 2127e0995dc3SKevin Wolf bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL, 2128f68c598bSKevin Wolf perm, shared_perm, &perm, &shared_perm); 2129f68c598bSKevin Wolf 2130d5e6f437SKevin Wolf child = bdrv_root_attach_child(child_bs, child_name, child_role, 2131f68c598bSKevin Wolf perm, shared_perm, parent_bs, errp); 2132d5e6f437SKevin Wolf if (child == NULL) { 2133d5e6f437SKevin Wolf return NULL; 2134d5e6f437SKevin Wolf } 2135d5e6f437SKevin Wolf 2136f21d96d0SKevin Wolf QLIST_INSERT_HEAD(&parent_bs->children, child, next); 2137f21d96d0SKevin Wolf return child; 2138f21d96d0SKevin Wolf } 2139f21d96d0SKevin Wolf 21403f09bfbcSKevin Wolf static void bdrv_detach_child(BdrvChild *child) 214133a60407SKevin Wolf { 2142f21d96d0SKevin Wolf if (child->next.le_prev) { 214333a60407SKevin Wolf QLIST_REMOVE(child, next); 2144f21d96d0SKevin Wolf child->next.le_prev = NULL; 2145f21d96d0SKevin Wolf } 2146e9740bc6SKevin Wolf 2147466787fbSKevin Wolf bdrv_replace_child(child, NULL); 2148e9740bc6SKevin Wolf 2149260fecf1SKevin Wolf g_free(child->name); 215033a60407SKevin Wolf g_free(child); 215133a60407SKevin Wolf } 215233a60407SKevin Wolf 2153f21d96d0SKevin Wolf void bdrv_root_unref_child(BdrvChild *child) 215433a60407SKevin Wolf { 2155779020cbSKevin Wolf BlockDriverState *child_bs; 2156779020cbSKevin Wolf 2157f21d96d0SKevin Wolf child_bs = child->bs; 2158f21d96d0SKevin Wolf bdrv_detach_child(child); 2159f21d96d0SKevin Wolf bdrv_unref(child_bs); 2160f21d96d0SKevin Wolf } 2161f21d96d0SKevin Wolf 2162f21d96d0SKevin Wolf void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child) 2163f21d96d0SKevin Wolf { 2164779020cbSKevin Wolf if (child == NULL) { 2165779020cbSKevin Wolf return; 2166779020cbSKevin Wolf } 216733a60407SKevin Wolf 216833a60407SKevin Wolf if (child->bs->inherits_from == parent) { 21694e4bf5c4SKevin Wolf BdrvChild *c; 21704e4bf5c4SKevin Wolf 21714e4bf5c4SKevin Wolf /* Remove inherits_from only when the last reference between parent and 21724e4bf5c4SKevin Wolf * child->bs goes away. */ 21734e4bf5c4SKevin Wolf QLIST_FOREACH(c, &parent->children, next) { 21744e4bf5c4SKevin Wolf if (c != child && c->bs == child->bs) { 21754e4bf5c4SKevin Wolf break; 21764e4bf5c4SKevin Wolf } 21774e4bf5c4SKevin Wolf } 21784e4bf5c4SKevin Wolf if (c == NULL) { 217933a60407SKevin Wolf child->bs->inherits_from = NULL; 218033a60407SKevin Wolf } 21814e4bf5c4SKevin Wolf } 218233a60407SKevin Wolf 2183f21d96d0SKevin Wolf bdrv_root_unref_child(child); 218433a60407SKevin Wolf } 218533a60407SKevin Wolf 21865c8cab48SKevin Wolf 21875c8cab48SKevin Wolf static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load) 21885c8cab48SKevin Wolf { 21895c8cab48SKevin Wolf BdrvChild *c; 21905c8cab48SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 21915c8cab48SKevin Wolf if (c->role->change_media) { 21925c8cab48SKevin Wolf c->role->change_media(c, load); 21935c8cab48SKevin Wolf } 21945c8cab48SKevin Wolf } 21955c8cab48SKevin Wolf } 21965c8cab48SKevin Wolf 21975c8cab48SKevin Wolf static void bdrv_parent_cb_resize(BlockDriverState *bs) 21985c8cab48SKevin Wolf { 21995c8cab48SKevin Wolf BdrvChild *c; 22005c8cab48SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 22015c8cab48SKevin Wolf if (c->role->resize) { 22025c8cab48SKevin Wolf c->role->resize(c); 22035c8cab48SKevin Wolf } 22045c8cab48SKevin Wolf } 22055c8cab48SKevin Wolf } 22065c8cab48SKevin Wolf 22075db15a57SKevin Wolf /* 22085db15a57SKevin Wolf * Sets the backing file link of a BDS. A new reference is created; callers 22095db15a57SKevin Wolf * which don't need their own reference any more must call bdrv_unref(). 22105db15a57SKevin Wolf */ 221112fa4af6SKevin Wolf void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd, 221212fa4af6SKevin Wolf Error **errp) 22138d24cce1SFam Zheng { 22145db15a57SKevin Wolf if (backing_hd) { 22155db15a57SKevin Wolf bdrv_ref(backing_hd); 22165db15a57SKevin Wolf } 22178d24cce1SFam Zheng 2218760e0063SKevin Wolf if (bs->backing) { 22195db15a57SKevin Wolf bdrv_unref_child(bs, bs->backing); 2220826b6ca0SFam Zheng } 2221826b6ca0SFam Zheng 22228d24cce1SFam Zheng if (!backing_hd) { 2223760e0063SKevin Wolf bs->backing = NULL; 22248d24cce1SFam Zheng goto out; 22258d24cce1SFam Zheng } 222612fa4af6SKevin Wolf 22278b2ff529SKevin Wolf bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing, 222812fa4af6SKevin Wolf errp); 222912fa4af6SKevin Wolf if (!bs->backing) { 223012fa4af6SKevin Wolf bdrv_unref(backing_hd); 223112fa4af6SKevin Wolf } 2232826b6ca0SFam Zheng 22339e7e940cSKevin Wolf bdrv_refresh_filename(bs); 22349e7e940cSKevin Wolf 22358d24cce1SFam Zheng out: 22363baca891SKevin Wolf bdrv_refresh_limits(bs, NULL); 22378d24cce1SFam Zheng } 22388d24cce1SFam Zheng 223931ca6d07SKevin Wolf /* 224031ca6d07SKevin Wolf * Opens the backing file for a BlockDriverState if not yet open 224131ca6d07SKevin Wolf * 2242d9b7b057SKevin Wolf * bdref_key specifies the key for the image's BlockdevRef in the options QDict. 2243d9b7b057SKevin Wolf * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict 2244d9b7b057SKevin Wolf * itself, all options starting with "${bdref_key}." are considered part of the 2245d9b7b057SKevin Wolf * BlockdevRef. 2246d9b7b057SKevin Wolf * 2247d9b7b057SKevin Wolf * TODO Can this be unified with bdrv_open_image()? 224831ca6d07SKevin Wolf */ 2249d9b7b057SKevin Wolf int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options, 2250d9b7b057SKevin Wolf const char *bdref_key, Error **errp) 22519156df12SPaolo Bonzini { 22521ba4b6a5SBenoît Canet char *backing_filename = g_malloc0(PATH_MAX); 2253d9b7b057SKevin Wolf char *bdref_key_dot; 2254d9b7b057SKevin Wolf const char *reference = NULL; 2255317fc44eSKevin Wolf int ret = 0; 22568d24cce1SFam Zheng BlockDriverState *backing_hd; 2257d9b7b057SKevin Wolf QDict *options; 2258d9b7b057SKevin Wolf QDict *tmp_parent_options = NULL; 225934b5d2c6SMax Reitz Error *local_err = NULL; 22609156df12SPaolo Bonzini 2261760e0063SKevin Wolf if (bs->backing != NULL) { 22621ba4b6a5SBenoît Canet goto free_exit; 22639156df12SPaolo Bonzini } 22649156df12SPaolo Bonzini 226531ca6d07SKevin Wolf /* NULL means an empty set of options */ 2266d9b7b057SKevin Wolf if (parent_options == NULL) { 2267d9b7b057SKevin Wolf tmp_parent_options = qdict_new(); 2268d9b7b057SKevin Wolf parent_options = tmp_parent_options; 226931ca6d07SKevin Wolf } 227031ca6d07SKevin Wolf 22719156df12SPaolo Bonzini bs->open_flags &= ~BDRV_O_NO_BACKING; 2272d9b7b057SKevin Wolf 2273d9b7b057SKevin Wolf bdref_key_dot = g_strdup_printf("%s.", bdref_key); 2274d9b7b057SKevin Wolf qdict_extract_subqdict(parent_options, &options, bdref_key_dot); 2275d9b7b057SKevin Wolf g_free(bdref_key_dot); 2276d9b7b057SKevin Wolf 2277129c7d1cSMarkus Armbruster /* 2278129c7d1cSMarkus Armbruster * Caution: while qdict_get_try_str() is fine, getting non-string 2279129c7d1cSMarkus Armbruster * types would require more care. When @parent_options come from 2280129c7d1cSMarkus Armbruster * -blockdev or blockdev_add, its members are typed according to 2281129c7d1cSMarkus Armbruster * the QAPI schema, but when they come from -drive, they're all 2282129c7d1cSMarkus Armbruster * QString. 2283129c7d1cSMarkus Armbruster */ 2284d9b7b057SKevin Wolf reference = qdict_get_try_str(parent_options, bdref_key); 2285d9b7b057SKevin Wolf if (reference || qdict_haskey(options, "file.filename")) { 22861cb6f506SKevin Wolf backing_filename[0] = '\0'; 22871cb6f506SKevin Wolf } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { 2288cb3e7f08SMarc-André Lureau qobject_unref(options); 22891ba4b6a5SBenoît Canet goto free_exit; 2290dbecebddSFam Zheng } else { 22919f07429eSMax Reitz bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX, 22929f07429eSMax Reitz &local_err); 22939f07429eSMax Reitz if (local_err) { 22949f07429eSMax Reitz ret = -EINVAL; 22959f07429eSMax Reitz error_propagate(errp, local_err); 2296cb3e7f08SMarc-André Lureau qobject_unref(options); 22979f07429eSMax Reitz goto free_exit; 22989f07429eSMax Reitz } 22999156df12SPaolo Bonzini } 23009156df12SPaolo Bonzini 23018ee79e70SKevin Wolf if (!bs->drv || !bs->drv->supports_backing) { 23028ee79e70SKevin Wolf ret = -EINVAL; 23038ee79e70SKevin Wolf error_setg(errp, "Driver doesn't support backing files"); 2304cb3e7f08SMarc-André Lureau qobject_unref(options); 23058ee79e70SKevin Wolf goto free_exit; 23068ee79e70SKevin Wolf } 23078ee79e70SKevin Wolf 23086bff597bSPeter Krempa if (!reference && 23096bff597bSPeter Krempa bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) { 231046f5ac20SEric Blake qdict_put_str(options, "driver", bs->backing_format); 23119156df12SPaolo Bonzini } 23129156df12SPaolo Bonzini 23135b363937SMax Reitz backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL, 2314d9b7b057SKevin Wolf reference, options, 0, bs, &child_backing, 2315e43bfd9cSMarkus Armbruster errp); 23165b363937SMax Reitz if (!backing_hd) { 23179156df12SPaolo Bonzini bs->open_flags |= BDRV_O_NO_BACKING; 2318e43bfd9cSMarkus Armbruster error_prepend(errp, "Could not open backing file: "); 23195b363937SMax Reitz ret = -EINVAL; 23201ba4b6a5SBenoît Canet goto free_exit; 23219156df12SPaolo Bonzini } 23225ce6bfe2Ssochin.jiang bdrv_set_aio_context(backing_hd, bdrv_get_aio_context(bs)); 2323df581792SKevin Wolf 23245db15a57SKevin Wolf /* Hook up the backing file link; drop our reference, bs owns the 23255db15a57SKevin Wolf * backing_hd reference now */ 232612fa4af6SKevin Wolf bdrv_set_backing_hd(bs, backing_hd, &local_err); 23275db15a57SKevin Wolf bdrv_unref(backing_hd); 232812fa4af6SKevin Wolf if (local_err) { 23298cd1a3e4SFam Zheng error_propagate(errp, local_err); 233012fa4af6SKevin Wolf ret = -EINVAL; 233112fa4af6SKevin Wolf goto free_exit; 233212fa4af6SKevin Wolf } 2333d80ac658SPeter Feiner 2334d9b7b057SKevin Wolf qdict_del(parent_options, bdref_key); 2335d9b7b057SKevin Wolf 23361ba4b6a5SBenoît Canet free_exit: 23371ba4b6a5SBenoît Canet g_free(backing_filename); 2338cb3e7f08SMarc-André Lureau qobject_unref(tmp_parent_options); 23391ba4b6a5SBenoît Canet return ret; 23409156df12SPaolo Bonzini } 23419156df12SPaolo Bonzini 23422d6b86afSKevin Wolf static BlockDriverState * 23432d6b86afSKevin Wolf bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key, 23442d6b86afSKevin Wolf BlockDriverState *parent, const BdrvChildRole *child_role, 2345f7d9fd8cSMax Reitz bool allow_none, Error **errp) 2346da557aacSMax Reitz { 23472d6b86afSKevin Wolf BlockDriverState *bs = NULL; 2348da557aacSMax Reitz QDict *image_options; 2349da557aacSMax Reitz char *bdref_key_dot; 2350da557aacSMax Reitz const char *reference; 2351da557aacSMax Reitz 2352df581792SKevin Wolf assert(child_role != NULL); 2353f67503e5SMax Reitz 2354da557aacSMax Reitz bdref_key_dot = g_strdup_printf("%s.", bdref_key); 2355da557aacSMax Reitz qdict_extract_subqdict(options, &image_options, bdref_key_dot); 2356da557aacSMax Reitz g_free(bdref_key_dot); 2357da557aacSMax Reitz 2358129c7d1cSMarkus Armbruster /* 2359129c7d1cSMarkus Armbruster * Caution: while qdict_get_try_str() is fine, getting non-string 2360129c7d1cSMarkus Armbruster * types would require more care. When @options come from 2361129c7d1cSMarkus Armbruster * -blockdev or blockdev_add, its members are typed according to 2362129c7d1cSMarkus Armbruster * the QAPI schema, but when they come from -drive, they're all 2363129c7d1cSMarkus Armbruster * QString. 2364129c7d1cSMarkus Armbruster */ 2365da557aacSMax Reitz reference = qdict_get_try_str(options, bdref_key); 2366da557aacSMax Reitz if (!filename && !reference && !qdict_size(image_options)) { 2367b4b059f6SKevin Wolf if (!allow_none) { 2368da557aacSMax Reitz error_setg(errp, "A block device must be specified for \"%s\"", 2369da557aacSMax Reitz bdref_key); 2370da557aacSMax Reitz } 2371cb3e7f08SMarc-André Lureau qobject_unref(image_options); 2372da557aacSMax Reitz goto done; 2373da557aacSMax Reitz } 2374da557aacSMax Reitz 23755b363937SMax Reitz bs = bdrv_open_inherit(filename, reference, image_options, 0, 2376ce343771SMax Reitz parent, child_role, errp); 23775b363937SMax Reitz if (!bs) { 2378df581792SKevin Wolf goto done; 2379df581792SKevin Wolf } 2380df581792SKevin Wolf 2381da557aacSMax Reitz done: 2382da557aacSMax Reitz qdict_del(options, bdref_key); 23832d6b86afSKevin Wolf return bs; 23842d6b86afSKevin Wolf } 23852d6b86afSKevin Wolf 23862d6b86afSKevin Wolf /* 23872d6b86afSKevin Wolf * Opens a disk image whose options are given as BlockdevRef in another block 23882d6b86afSKevin Wolf * device's options. 23892d6b86afSKevin Wolf * 23902d6b86afSKevin Wolf * If allow_none is true, no image will be opened if filename is false and no 23912d6b86afSKevin Wolf * BlockdevRef is given. NULL will be returned, but errp remains unset. 23922d6b86afSKevin Wolf * 23932d6b86afSKevin Wolf * bdrev_key specifies the key for the image's BlockdevRef in the options QDict. 23942d6b86afSKevin Wolf * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict 23952d6b86afSKevin Wolf * itself, all options starting with "${bdref_key}." are considered part of the 23962d6b86afSKevin Wolf * BlockdevRef. 23972d6b86afSKevin Wolf * 23982d6b86afSKevin Wolf * The BlockdevRef will be removed from the options QDict. 23992d6b86afSKevin Wolf */ 24002d6b86afSKevin Wolf BdrvChild *bdrv_open_child(const char *filename, 24012d6b86afSKevin Wolf QDict *options, const char *bdref_key, 24022d6b86afSKevin Wolf BlockDriverState *parent, 24032d6b86afSKevin Wolf const BdrvChildRole *child_role, 24042d6b86afSKevin Wolf bool allow_none, Error **errp) 24052d6b86afSKevin Wolf { 24068b2ff529SKevin Wolf BdrvChild *c; 24072d6b86afSKevin Wolf BlockDriverState *bs; 24082d6b86afSKevin Wolf 24092d6b86afSKevin Wolf bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role, 24102d6b86afSKevin Wolf allow_none, errp); 24112d6b86afSKevin Wolf if (bs == NULL) { 24122d6b86afSKevin Wolf return NULL; 24132d6b86afSKevin Wolf } 24142d6b86afSKevin Wolf 24158b2ff529SKevin Wolf c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp); 24168b2ff529SKevin Wolf if (!c) { 24178b2ff529SKevin Wolf bdrv_unref(bs); 24188b2ff529SKevin Wolf return NULL; 24198b2ff529SKevin Wolf } 24208b2ff529SKevin Wolf 24218b2ff529SKevin Wolf return c; 2422b4b059f6SKevin Wolf } 2423b4b059f6SKevin Wolf 2424e1d74bc6SKevin Wolf /* TODO Future callers may need to specify parent/child_role in order for 2425e1d74bc6SKevin Wolf * option inheritance to work. Existing callers use it for the root node. */ 2426e1d74bc6SKevin Wolf BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp) 2427e1d74bc6SKevin Wolf { 2428e1d74bc6SKevin Wolf BlockDriverState *bs = NULL; 2429e1d74bc6SKevin Wolf Error *local_err = NULL; 2430e1d74bc6SKevin Wolf QObject *obj = NULL; 2431e1d74bc6SKevin Wolf QDict *qdict = NULL; 2432e1d74bc6SKevin Wolf const char *reference = NULL; 2433e1d74bc6SKevin Wolf Visitor *v = NULL; 2434e1d74bc6SKevin Wolf 2435e1d74bc6SKevin Wolf if (ref->type == QTYPE_QSTRING) { 2436e1d74bc6SKevin Wolf reference = ref->u.reference; 2437e1d74bc6SKevin Wolf } else { 2438e1d74bc6SKevin Wolf BlockdevOptions *options = &ref->u.definition; 2439e1d74bc6SKevin Wolf assert(ref->type == QTYPE_QDICT); 2440e1d74bc6SKevin Wolf 2441e1d74bc6SKevin Wolf v = qobject_output_visitor_new(&obj); 2442e1d74bc6SKevin Wolf visit_type_BlockdevOptions(v, NULL, &options, &local_err); 2443e1d74bc6SKevin Wolf if (local_err) { 2444e1d74bc6SKevin Wolf error_propagate(errp, local_err); 2445e1d74bc6SKevin Wolf goto fail; 2446e1d74bc6SKevin Wolf } 2447e1d74bc6SKevin Wolf visit_complete(v, &obj); 2448e1d74bc6SKevin Wolf 24497dc847ebSMax Reitz qdict = qobject_to(QDict, obj); 2450e1d74bc6SKevin Wolf qdict_flatten(qdict); 2451e1d74bc6SKevin Wolf 2452e1d74bc6SKevin Wolf /* bdrv_open_inherit() defaults to the values in bdrv_flags (for 2453e1d74bc6SKevin Wolf * compatibility with other callers) rather than what we want as the 2454e1d74bc6SKevin Wolf * real defaults. Apply the defaults here instead. */ 2455e1d74bc6SKevin Wolf qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off"); 2456e1d74bc6SKevin Wolf qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off"); 2457e1d74bc6SKevin Wolf qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off"); 2458e1d74bc6SKevin Wolf } 2459e1d74bc6SKevin Wolf 2460e1d74bc6SKevin Wolf bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, errp); 2461e1d74bc6SKevin Wolf obj = NULL; 2462e1d74bc6SKevin Wolf 2463e1d74bc6SKevin Wolf fail: 2464cb3e7f08SMarc-André Lureau qobject_unref(obj); 2465e1d74bc6SKevin Wolf visit_free(v); 2466e1d74bc6SKevin Wolf return bs; 2467e1d74bc6SKevin Wolf } 2468e1d74bc6SKevin Wolf 246966836189SMax Reitz static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs, 247066836189SMax Reitz int flags, 247166836189SMax Reitz QDict *snapshot_options, 247266836189SMax Reitz Error **errp) 2473b998875dSKevin Wolf { 2474b998875dSKevin Wolf /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */ 24751ba4b6a5SBenoît Canet char *tmp_filename = g_malloc0(PATH_MAX + 1); 2476b998875dSKevin Wolf int64_t total_size; 247783d0521aSChunyan Liu QemuOpts *opts = NULL; 2478ff6ed714SEric Blake BlockDriverState *bs_snapshot = NULL; 2479b2c2832cSKevin Wolf Error *local_err = NULL; 2480b998875dSKevin Wolf int ret; 2481b998875dSKevin Wolf 2482b998875dSKevin Wolf /* if snapshot, we create a temporary backing file and open it 2483b998875dSKevin Wolf instead of opening 'filename' directly */ 2484b998875dSKevin Wolf 2485b998875dSKevin Wolf /* Get the required size from the image */ 2486f187743aSKevin Wolf total_size = bdrv_getlength(bs); 2487f187743aSKevin Wolf if (total_size < 0) { 2488f187743aSKevin Wolf error_setg_errno(errp, -total_size, "Could not get image size"); 24891ba4b6a5SBenoît Canet goto out; 2490f187743aSKevin Wolf } 2491b998875dSKevin Wolf 2492b998875dSKevin Wolf /* Create the temporary image */ 24931ba4b6a5SBenoît Canet ret = get_tmp_filename(tmp_filename, PATH_MAX + 1); 2494b998875dSKevin Wolf if (ret < 0) { 2495b998875dSKevin Wolf error_setg_errno(errp, -ret, "Could not get temporary filename"); 24961ba4b6a5SBenoît Canet goto out; 2497b998875dSKevin Wolf } 2498b998875dSKevin Wolf 2499ef810437SMax Reitz opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0, 2500c282e1fdSChunyan Liu &error_abort); 250139101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort); 2502e43bfd9cSMarkus Armbruster ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp); 250383d0521aSChunyan Liu qemu_opts_del(opts); 2504b998875dSKevin Wolf if (ret < 0) { 2505e43bfd9cSMarkus Armbruster error_prepend(errp, "Could not create temporary overlay '%s': ", 2506e43bfd9cSMarkus Armbruster tmp_filename); 25071ba4b6a5SBenoît Canet goto out; 2508b998875dSKevin Wolf } 2509b998875dSKevin Wolf 251073176beeSKevin Wolf /* Prepare options QDict for the temporary file */ 251146f5ac20SEric Blake qdict_put_str(snapshot_options, "file.driver", "file"); 251246f5ac20SEric Blake qdict_put_str(snapshot_options, "file.filename", tmp_filename); 251346f5ac20SEric Blake qdict_put_str(snapshot_options, "driver", "qcow2"); 2514b998875dSKevin Wolf 25155b363937SMax Reitz bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp); 251673176beeSKevin Wolf snapshot_options = NULL; 25175b363937SMax Reitz if (!bs_snapshot) { 25181ba4b6a5SBenoît Canet goto out; 2519b998875dSKevin Wolf } 2520b998875dSKevin Wolf 2521ff6ed714SEric Blake /* bdrv_append() consumes a strong reference to bs_snapshot 2522ff6ed714SEric Blake * (i.e. it will call bdrv_unref() on it) even on error, so in 2523ff6ed714SEric Blake * order to be able to return one, we have to increase 2524ff6ed714SEric Blake * bs_snapshot's refcount here */ 252566836189SMax Reitz bdrv_ref(bs_snapshot); 2526b2c2832cSKevin Wolf bdrv_append(bs_snapshot, bs, &local_err); 2527b2c2832cSKevin Wolf if (local_err) { 2528b2c2832cSKevin Wolf error_propagate(errp, local_err); 2529ff6ed714SEric Blake bs_snapshot = NULL; 2530b2c2832cSKevin Wolf goto out; 2531b2c2832cSKevin Wolf } 25321ba4b6a5SBenoît Canet 25331ba4b6a5SBenoît Canet out: 2534cb3e7f08SMarc-André Lureau qobject_unref(snapshot_options); 25351ba4b6a5SBenoît Canet g_free(tmp_filename); 2536ff6ed714SEric Blake return bs_snapshot; 2537b998875dSKevin Wolf } 2538b998875dSKevin Wolf 2539da557aacSMax Reitz /* 2540b6ce07aaSKevin Wolf * Opens a disk image (raw, qcow2, vmdk, ...) 2541de9c0cecSKevin Wolf * 2542de9c0cecSKevin Wolf * options is a QDict of options to pass to the block drivers, or NULL for an 2543de9c0cecSKevin Wolf * empty set of options. The reference to the QDict belongs to the block layer 2544de9c0cecSKevin Wolf * after the call (even on failure), so if the caller intends to reuse the 2545cb3e7f08SMarc-André Lureau * dictionary, it needs to use qobject_ref() before calling bdrv_open. 2546f67503e5SMax Reitz * 2547f67503e5SMax Reitz * If *pbs is NULL, a new BDS will be created with a pointer to it stored there. 2548f67503e5SMax Reitz * If it is not NULL, the referenced BDS will be reused. 2549ddf5636dSMax Reitz * 2550ddf5636dSMax Reitz * The reference parameter may be used to specify an existing block device which 2551ddf5636dSMax Reitz * should be opened. If specified, neither options nor a filename may be given, 2552ddf5636dSMax Reitz * nor can an existing BDS be reused (that is, *pbs has to be NULL). 2553b6ce07aaSKevin Wolf */ 25545b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename, 25555b363937SMax Reitz const char *reference, 25565b363937SMax Reitz QDict *options, int flags, 2557f3930ed0SKevin Wolf BlockDriverState *parent, 25585b363937SMax Reitz const BdrvChildRole *child_role, 25595b363937SMax Reitz Error **errp) 2560ea2384d3Sbellard { 2561b6ce07aaSKevin Wolf int ret; 25625696c6e3SKevin Wolf BlockBackend *file = NULL; 25639a4f4c31SKevin Wolf BlockDriverState *bs; 2564ce343771SMax Reitz BlockDriver *drv = NULL; 256574fe54f2SKevin Wolf const char *drvname; 25663e8c2e57SAlberto Garcia const char *backing; 256734b5d2c6SMax Reitz Error *local_err = NULL; 256873176beeSKevin Wolf QDict *snapshot_options = NULL; 2569b1e6fc08SKevin Wolf int snapshot_flags = 0; 257033e3963eSbellard 2571f3930ed0SKevin Wolf assert(!child_role || !flags); 2572f3930ed0SKevin Wolf assert(!child_role == !parent); 2573f67503e5SMax Reitz 2574ddf5636dSMax Reitz if (reference) { 2575ddf5636dSMax Reitz bool options_non_empty = options ? qdict_size(options) : false; 2576cb3e7f08SMarc-André Lureau qobject_unref(options); 2577ddf5636dSMax Reitz 2578ddf5636dSMax Reitz if (filename || options_non_empty) { 2579ddf5636dSMax Reitz error_setg(errp, "Cannot reference an existing block device with " 2580ddf5636dSMax Reitz "additional options or a new filename"); 25815b363937SMax Reitz return NULL; 2582ddf5636dSMax Reitz } 2583ddf5636dSMax Reitz 2584ddf5636dSMax Reitz bs = bdrv_lookup_bs(reference, reference, errp); 2585ddf5636dSMax Reitz if (!bs) { 25865b363937SMax Reitz return NULL; 2587ddf5636dSMax Reitz } 258876b22320SKevin Wolf 2589ddf5636dSMax Reitz bdrv_ref(bs); 25905b363937SMax Reitz return bs; 2591ddf5636dSMax Reitz } 2592ddf5636dSMax Reitz 2593e4e9986bSMarkus Armbruster bs = bdrv_new(); 2594f67503e5SMax Reitz 2595de9c0cecSKevin Wolf /* NULL means an empty set of options */ 2596de9c0cecSKevin Wolf if (options == NULL) { 2597de9c0cecSKevin Wolf options = qdict_new(); 2598de9c0cecSKevin Wolf } 2599de9c0cecSKevin Wolf 2600145f598eSKevin Wolf /* json: syntax counts as explicit options, as if in the QDict */ 2601de3b53f0SKevin Wolf parse_json_protocol(options, &filename, &local_err); 2602de3b53f0SKevin Wolf if (local_err) { 2603de3b53f0SKevin Wolf goto fail; 2604de3b53f0SKevin Wolf } 2605de3b53f0SKevin Wolf 2606145f598eSKevin Wolf bs->explicit_options = qdict_clone_shallow(options); 2607145f598eSKevin Wolf 2608f3930ed0SKevin Wolf if (child_role) { 2609bddcec37SKevin Wolf bs->inherits_from = parent; 26108e2160e2SKevin Wolf child_role->inherit_options(&flags, options, 26118e2160e2SKevin Wolf parent->open_flags, parent->options); 2612f3930ed0SKevin Wolf } 2613f3930ed0SKevin Wolf 2614de3b53f0SKevin Wolf ret = bdrv_fill_options(&options, filename, &flags, &local_err); 2615462f5bcfSKevin Wolf if (local_err) { 2616462f5bcfSKevin Wolf goto fail; 2617462f5bcfSKevin Wolf } 2618462f5bcfSKevin Wolf 2619129c7d1cSMarkus Armbruster /* 2620129c7d1cSMarkus Armbruster * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags. 2621129c7d1cSMarkus Armbruster * Caution: getting a boolean member of @options requires care. 2622129c7d1cSMarkus Armbruster * When @options come from -blockdev or blockdev_add, members are 2623129c7d1cSMarkus Armbruster * typed according to the QAPI schema, but when they come from 2624129c7d1cSMarkus Armbruster * -drive, they're all QString. 2625129c7d1cSMarkus Armbruster */ 2626f87a0e29SAlberto Garcia if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") && 2627f87a0e29SAlberto Garcia !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) { 2628f87a0e29SAlberto Garcia flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR); 2629f87a0e29SAlberto Garcia } else { 2630f87a0e29SAlberto Garcia flags &= ~BDRV_O_RDWR; 263114499ea5SAlberto Garcia } 263214499ea5SAlberto Garcia 263314499ea5SAlberto Garcia if (flags & BDRV_O_SNAPSHOT) { 263414499ea5SAlberto Garcia snapshot_options = qdict_new(); 263514499ea5SAlberto Garcia bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options, 263614499ea5SAlberto Garcia flags, options); 2637f87a0e29SAlberto Garcia /* Let bdrv_backing_options() override "read-only" */ 2638f87a0e29SAlberto Garcia qdict_del(options, BDRV_OPT_READ_ONLY); 263914499ea5SAlberto Garcia bdrv_backing_options(&flags, options, flags, options); 264014499ea5SAlberto Garcia } 264114499ea5SAlberto Garcia 264262392ebbSKevin Wolf bs->open_flags = flags; 264362392ebbSKevin Wolf bs->options = options; 264462392ebbSKevin Wolf options = qdict_clone_shallow(options); 264562392ebbSKevin Wolf 264676c591b0SKevin Wolf /* Find the right image format driver */ 2647129c7d1cSMarkus Armbruster /* See cautionary note on accessing @options above */ 264876c591b0SKevin Wolf drvname = qdict_get_try_str(options, "driver"); 264976c591b0SKevin Wolf if (drvname) { 265076c591b0SKevin Wolf drv = bdrv_find_format(drvname); 265176c591b0SKevin Wolf if (!drv) { 265276c591b0SKevin Wolf error_setg(errp, "Unknown driver: '%s'", drvname); 265376c591b0SKevin Wolf goto fail; 265476c591b0SKevin Wolf } 265576c591b0SKevin Wolf } 265676c591b0SKevin Wolf 265776c591b0SKevin Wolf assert(drvname || !(flags & BDRV_O_PROTOCOL)); 265876c591b0SKevin Wolf 2659129c7d1cSMarkus Armbruster /* See cautionary note on accessing @options above */ 26603e8c2e57SAlberto Garcia backing = qdict_get_try_str(options, "backing"); 2661e59a0cf1SMax Reitz if (qobject_to(QNull, qdict_get(options, "backing")) != NULL || 2662e59a0cf1SMax Reitz (backing && *backing == '\0')) 2663e59a0cf1SMax Reitz { 26644f7be280SMax Reitz if (backing) { 26654f7be280SMax Reitz warn_report("Use of \"backing\": \"\" is deprecated; " 26664f7be280SMax Reitz "use \"backing\": null instead"); 26674f7be280SMax Reitz } 26683e8c2e57SAlberto Garcia flags |= BDRV_O_NO_BACKING; 26693e8c2e57SAlberto Garcia qdict_del(options, "backing"); 26703e8c2e57SAlberto Garcia } 26713e8c2e57SAlberto Garcia 26725696c6e3SKevin Wolf /* Open image file without format layer. This BlockBackend is only used for 26734e4bf5c4SKevin Wolf * probing, the block drivers will do their own bdrv_open_child() for the 26744e4bf5c4SKevin Wolf * same BDS, which is why we put the node name back into options. */ 2675f4788adcSKevin Wolf if ((flags & BDRV_O_PROTOCOL) == 0) { 26765696c6e3SKevin Wolf BlockDriverState *file_bs; 26775696c6e3SKevin Wolf 26785696c6e3SKevin Wolf file_bs = bdrv_open_child_bs(filename, options, "file", bs, 26791fdd6933SKevin Wolf &child_file, true, &local_err); 26801fdd6933SKevin Wolf if (local_err) { 26818bfea15dSKevin Wolf goto fail; 2682f500a6d3SKevin Wolf } 26835696c6e3SKevin Wolf if (file_bs != NULL) { 2684dacaa162SKevin Wolf /* Not requesting BLK_PERM_CONSISTENT_READ because we're only 2685dacaa162SKevin Wolf * looking at the header to guess the image format. This works even 2686dacaa162SKevin Wolf * in cases where a guest would not see a consistent state. */ 2687dacaa162SKevin Wolf file = blk_new(0, BLK_PERM_ALL); 2688d7086422SKevin Wolf blk_insert_bs(file, file_bs, &local_err); 26895696c6e3SKevin Wolf bdrv_unref(file_bs); 2690d7086422SKevin Wolf if (local_err) { 2691d7086422SKevin Wolf goto fail; 2692d7086422SKevin Wolf } 26935696c6e3SKevin Wolf 269446f5ac20SEric Blake qdict_put_str(options, "file", bdrv_get_node_name(file_bs)); 26954e4bf5c4SKevin Wolf } 2696f4788adcSKevin Wolf } 2697f500a6d3SKevin Wolf 269876c591b0SKevin Wolf /* Image format probing */ 269938f3ef57SKevin Wolf bs->probed = !drv; 270076c591b0SKevin Wolf if (!drv && file) { 2701cf2ab8fcSKevin Wolf ret = find_image_format(file, filename, &drv, &local_err); 270217b005f1SKevin Wolf if (ret < 0) { 270317b005f1SKevin Wolf goto fail; 270417b005f1SKevin Wolf } 270562392ebbSKevin Wolf /* 270662392ebbSKevin Wolf * This option update would logically belong in bdrv_fill_options(), 270762392ebbSKevin Wolf * but we first need to open bs->file for the probing to work, while 270862392ebbSKevin Wolf * opening bs->file already requires the (mostly) final set of options 270962392ebbSKevin Wolf * so that cache mode etc. can be inherited. 271062392ebbSKevin Wolf * 271162392ebbSKevin Wolf * Adding the driver later is somewhat ugly, but it's not an option 271262392ebbSKevin Wolf * that would ever be inherited, so it's correct. We just need to make 271362392ebbSKevin Wolf * sure to update both bs->options (which has the full effective 271462392ebbSKevin Wolf * options for bs) and options (which has file.* already removed). 271562392ebbSKevin Wolf */ 271646f5ac20SEric Blake qdict_put_str(bs->options, "driver", drv->format_name); 271746f5ac20SEric Blake qdict_put_str(options, "driver", drv->format_name); 271876c591b0SKevin Wolf } else if (!drv) { 27192a05cbe4SMax Reitz error_setg(errp, "Must specify either driver or file"); 27208bfea15dSKevin Wolf goto fail; 27212a05cbe4SMax Reitz } 2722f500a6d3SKevin Wolf 272353a29513SMax Reitz /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */ 272453a29513SMax Reitz assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open); 272553a29513SMax Reitz /* file must be NULL if a protocol BDS is about to be created 272653a29513SMax Reitz * (the inverse results in an error message from bdrv_open_common()) */ 272753a29513SMax Reitz assert(!(flags & BDRV_O_PROTOCOL) || !file); 272853a29513SMax Reitz 2729b6ce07aaSKevin Wolf /* Open the image */ 273082dc8b41SKevin Wolf ret = bdrv_open_common(bs, file, options, &local_err); 2731b6ce07aaSKevin Wolf if (ret < 0) { 27328bfea15dSKevin Wolf goto fail; 27336987307cSChristoph Hellwig } 27346987307cSChristoph Hellwig 27354e4bf5c4SKevin Wolf if (file) { 27365696c6e3SKevin Wolf blk_unref(file); 2737f500a6d3SKevin Wolf file = NULL; 2738f500a6d3SKevin Wolf } 2739f500a6d3SKevin Wolf 2740b6ce07aaSKevin Wolf /* If there is a backing file, use it */ 27419156df12SPaolo Bonzini if ((flags & BDRV_O_NO_BACKING) == 0) { 2742d9b7b057SKevin Wolf ret = bdrv_open_backing_file(bs, options, "backing", &local_err); 2743b6ce07aaSKevin Wolf if (ret < 0) { 2744b6ad491aSKevin Wolf goto close_and_fail; 2745b6ce07aaSKevin Wolf } 2746b6ce07aaSKevin Wolf } 2747b6ce07aaSKevin Wolf 274891af7014SMax Reitz bdrv_refresh_filename(bs); 274991af7014SMax Reitz 2750b6ad491aSKevin Wolf /* Check if any unknown options were used */ 27517ad2757fSPaolo Bonzini if (qdict_size(options) != 0) { 2752b6ad491aSKevin Wolf const QDictEntry *entry = qdict_first(options); 27535acd9d81SMax Reitz if (flags & BDRV_O_PROTOCOL) { 27545acd9d81SMax Reitz error_setg(errp, "Block protocol '%s' doesn't support the option " 27555acd9d81SMax Reitz "'%s'", drv->format_name, entry->key); 27565acd9d81SMax Reitz } else { 2757d0e46a55SMax Reitz error_setg(errp, 2758d0e46a55SMax Reitz "Block format '%s' does not support the option '%s'", 2759d0e46a55SMax Reitz drv->format_name, entry->key); 27605acd9d81SMax Reitz } 2761b6ad491aSKevin Wolf 2762b6ad491aSKevin Wolf goto close_and_fail; 2763b6ad491aSKevin Wolf } 2764b6ad491aSKevin Wolf 27655c8cab48SKevin Wolf bdrv_parent_cb_change_media(bs, true); 2766b6ce07aaSKevin Wolf 2767cb3e7f08SMarc-André Lureau qobject_unref(options); 2768dd62f1caSKevin Wolf 2769dd62f1caSKevin Wolf /* For snapshot=on, create a temporary qcow2 overlay. bs points to the 2770dd62f1caSKevin Wolf * temporary snapshot afterwards. */ 2771dd62f1caSKevin Wolf if (snapshot_flags) { 277266836189SMax Reitz BlockDriverState *snapshot_bs; 277366836189SMax Reitz snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags, 277466836189SMax Reitz snapshot_options, &local_err); 277573176beeSKevin Wolf snapshot_options = NULL; 2776dd62f1caSKevin Wolf if (local_err) { 2777dd62f1caSKevin Wolf goto close_and_fail; 2778dd62f1caSKevin Wolf } 277966836189SMax Reitz /* We are not going to return bs but the overlay on top of it 278066836189SMax Reitz * (snapshot_bs); thus, we have to drop the strong reference to bs 27815b363937SMax Reitz * (which we obtained by calling bdrv_new()). bs will not be deleted, 27825b363937SMax Reitz * though, because the overlay still has a reference to it. */ 278366836189SMax Reitz bdrv_unref(bs); 278466836189SMax Reitz bs = snapshot_bs; 278566836189SMax Reitz } 278666836189SMax Reitz 27875b363937SMax Reitz return bs; 2788b6ce07aaSKevin Wolf 27898bfea15dSKevin Wolf fail: 27905696c6e3SKevin Wolf blk_unref(file); 2791cb3e7f08SMarc-André Lureau qobject_unref(snapshot_options); 2792cb3e7f08SMarc-André Lureau qobject_unref(bs->explicit_options); 2793cb3e7f08SMarc-André Lureau qobject_unref(bs->options); 2794cb3e7f08SMarc-André Lureau qobject_unref(options); 2795de9c0cecSKevin Wolf bs->options = NULL; 2796998cbd6aSManos Pitsidianakis bs->explicit_options = NULL; 2797f67503e5SMax Reitz bdrv_unref(bs); 279834b5d2c6SMax Reitz error_propagate(errp, local_err); 27995b363937SMax Reitz return NULL; 2800de9c0cecSKevin Wolf 2801b6ad491aSKevin Wolf close_and_fail: 2802f67503e5SMax Reitz bdrv_unref(bs); 2803cb3e7f08SMarc-André Lureau qobject_unref(snapshot_options); 2804cb3e7f08SMarc-André Lureau qobject_unref(options); 280534b5d2c6SMax Reitz error_propagate(errp, local_err); 28065b363937SMax Reitz return NULL; 2807b6ce07aaSKevin Wolf } 2808b6ce07aaSKevin Wolf 28095b363937SMax Reitz BlockDriverState *bdrv_open(const char *filename, const char *reference, 28105b363937SMax Reitz QDict *options, int flags, Error **errp) 2811f3930ed0SKevin Wolf { 28125b363937SMax Reitz return bdrv_open_inherit(filename, reference, options, flags, NULL, 2813ce343771SMax Reitz NULL, errp); 2814f3930ed0SKevin Wolf } 2815f3930ed0SKevin Wolf 2816e971aa12SJeff Cody /* 2817e971aa12SJeff Cody * Adds a BlockDriverState to a simple queue for an atomic, transactional 2818e971aa12SJeff Cody * reopen of multiple devices. 2819e971aa12SJeff Cody * 2820e971aa12SJeff Cody * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT 2821e971aa12SJeff Cody * already performed, or alternatively may be NULL a new BlockReopenQueue will 2822e971aa12SJeff Cody * be created and initialized. This newly created BlockReopenQueue should be 2823e971aa12SJeff Cody * passed back in for subsequent calls that are intended to be of the same 2824e971aa12SJeff Cody * atomic 'set'. 2825e971aa12SJeff Cody * 2826e971aa12SJeff Cody * bs is the BlockDriverState to add to the reopen queue. 2827e971aa12SJeff Cody * 28284d2cb092SKevin Wolf * options contains the changed options for the associated bs 28294d2cb092SKevin Wolf * (the BlockReopenQueue takes ownership) 28304d2cb092SKevin Wolf * 2831e971aa12SJeff Cody * flags contains the open flags for the associated bs 2832e971aa12SJeff Cody * 2833e971aa12SJeff Cody * returns a pointer to bs_queue, which is either the newly allocated 2834e971aa12SJeff Cody * bs_queue, or the existing bs_queue being used. 2835e971aa12SJeff Cody * 28361a63a907SKevin Wolf * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple(). 2837e971aa12SJeff Cody */ 283828518102SKevin Wolf static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, 28394d2cb092SKevin Wolf BlockDriverState *bs, 284028518102SKevin Wolf QDict *options, 284128518102SKevin Wolf int flags, 284228518102SKevin Wolf const BdrvChildRole *role, 284328518102SKevin Wolf QDict *parent_options, 284428518102SKevin Wolf int parent_flags) 2845e971aa12SJeff Cody { 2846e971aa12SJeff Cody assert(bs != NULL); 2847e971aa12SJeff Cody 2848e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry; 284967251a31SKevin Wolf BdrvChild *child; 2850145f598eSKevin Wolf QDict *old_options, *explicit_options; 285167251a31SKevin Wolf 28521a63a907SKevin Wolf /* Make sure that the caller remembered to use a drained section. This is 28531a63a907SKevin Wolf * important to avoid graph changes between the recursive queuing here and 28541a63a907SKevin Wolf * bdrv_reopen_multiple(). */ 28551a63a907SKevin Wolf assert(bs->quiesce_counter > 0); 28561a63a907SKevin Wolf 2857e971aa12SJeff Cody if (bs_queue == NULL) { 2858e971aa12SJeff Cody bs_queue = g_new0(BlockReopenQueue, 1); 2859e971aa12SJeff Cody QSIMPLEQ_INIT(bs_queue); 2860e971aa12SJeff Cody } 2861e971aa12SJeff Cody 28624d2cb092SKevin Wolf if (!options) { 28634d2cb092SKevin Wolf options = qdict_new(); 28644d2cb092SKevin Wolf } 28654d2cb092SKevin Wolf 28665b7ba05fSAlberto Garcia /* Check if this BlockDriverState is already in the queue */ 28675b7ba05fSAlberto Garcia QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 28685b7ba05fSAlberto Garcia if (bs == bs_entry->state.bs) { 28695b7ba05fSAlberto Garcia break; 28705b7ba05fSAlberto Garcia } 28715b7ba05fSAlberto Garcia } 28725b7ba05fSAlberto Garcia 287328518102SKevin Wolf /* 287428518102SKevin Wolf * Precedence of options: 287528518102SKevin Wolf * 1. Explicitly passed in options (highest) 287691a097e7SKevin Wolf * 2. Set in flags (only for top level) 2877145f598eSKevin Wolf * 3. Retained from explicitly set options of bs 28788e2160e2SKevin Wolf * 4. Inherited from parent node 287928518102SKevin Wolf * 5. Retained from effective options of bs 288028518102SKevin Wolf */ 288128518102SKevin Wolf 288291a097e7SKevin Wolf if (!parent_options) { 288391a097e7SKevin Wolf /* 288491a097e7SKevin Wolf * Any setting represented by flags is always updated. If the 288591a097e7SKevin Wolf * corresponding QDict option is set, it takes precedence. Otherwise 288691a097e7SKevin Wolf * the flag is translated into a QDict option. The old setting of bs is 288791a097e7SKevin Wolf * not considered. 288891a097e7SKevin Wolf */ 288991a097e7SKevin Wolf update_options_from_flags(options, flags); 289091a097e7SKevin Wolf } 289191a097e7SKevin Wolf 2892145f598eSKevin Wolf /* Old explicitly set values (don't overwrite by inherited value) */ 28935b7ba05fSAlberto Garcia if (bs_entry) { 28945b7ba05fSAlberto Garcia old_options = qdict_clone_shallow(bs_entry->state.explicit_options); 28955b7ba05fSAlberto Garcia } else { 2896145f598eSKevin Wolf old_options = qdict_clone_shallow(bs->explicit_options); 28975b7ba05fSAlberto Garcia } 2898145f598eSKevin Wolf bdrv_join_options(bs, options, old_options); 2899cb3e7f08SMarc-André Lureau qobject_unref(old_options); 2900145f598eSKevin Wolf 2901145f598eSKevin Wolf explicit_options = qdict_clone_shallow(options); 2902145f598eSKevin Wolf 290328518102SKevin Wolf /* Inherit from parent node */ 290428518102SKevin Wolf if (parent_options) { 29051a529736SFam Zheng QemuOpts *opts; 29061a529736SFam Zheng QDict *options_copy; 290728518102SKevin Wolf assert(!flags); 29088e2160e2SKevin Wolf role->inherit_options(&flags, options, parent_flags, parent_options); 29091a529736SFam Zheng options_copy = qdict_clone_shallow(options); 29101a529736SFam Zheng opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 29111a529736SFam Zheng qemu_opts_absorb_qdict(opts, options_copy, NULL); 29121a529736SFam Zheng update_flags_from_options(&flags, opts); 29131a529736SFam Zheng qemu_opts_del(opts); 2914cb3e7f08SMarc-André Lureau qobject_unref(options_copy); 291528518102SKevin Wolf } 291628518102SKevin Wolf 291728518102SKevin Wolf /* Old values are used for options that aren't set yet */ 29184d2cb092SKevin Wolf old_options = qdict_clone_shallow(bs->options); 2919cddff5baSKevin Wolf bdrv_join_options(bs, options, old_options); 2920cb3e7f08SMarc-André Lureau qobject_unref(old_options); 29214d2cb092SKevin Wolf 2922fd452021SKevin Wolf /* bdrv_open_inherit() sets and clears some additional flags internally */ 2923f1f25a2eSKevin Wolf flags &= ~BDRV_O_PROTOCOL; 2924fd452021SKevin Wolf if (flags & BDRV_O_RDWR) { 2925fd452021SKevin Wolf flags |= BDRV_O_ALLOW_RDWR; 2926fd452021SKevin Wolf } 2927f1f25a2eSKevin Wolf 29281857c97bSKevin Wolf if (!bs_entry) { 29291857c97bSKevin Wolf bs_entry = g_new0(BlockReopenQueueEntry, 1); 29301857c97bSKevin Wolf QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry); 29311857c97bSKevin Wolf } else { 2932cb3e7f08SMarc-André Lureau qobject_unref(bs_entry->state.options); 2933cb3e7f08SMarc-André Lureau qobject_unref(bs_entry->state.explicit_options); 29341857c97bSKevin Wolf } 29351857c97bSKevin Wolf 29361857c97bSKevin Wolf bs_entry->state.bs = bs; 29371857c97bSKevin Wolf bs_entry->state.options = options; 29381857c97bSKevin Wolf bs_entry->state.explicit_options = explicit_options; 29391857c97bSKevin Wolf bs_entry->state.flags = flags; 29401857c97bSKevin Wolf 294130450259SKevin Wolf /* This needs to be overwritten in bdrv_reopen_prepare() */ 294230450259SKevin Wolf bs_entry->state.perm = UINT64_MAX; 294330450259SKevin Wolf bs_entry->state.shared_perm = 0; 294430450259SKevin Wolf 294567251a31SKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 29464c9dfe5dSKevin Wolf QDict *new_child_options; 29474c9dfe5dSKevin Wolf char *child_key_dot; 294867251a31SKevin Wolf 29494c9dfe5dSKevin Wolf /* reopen can only change the options of block devices that were 29504c9dfe5dSKevin Wolf * implicitly created and inherited options. For other (referenced) 29514c9dfe5dSKevin Wolf * block devices, a syntax like "backing.foo" results in an error. */ 295267251a31SKevin Wolf if (child->bs->inherits_from != bs) { 295367251a31SKevin Wolf continue; 295467251a31SKevin Wolf } 295567251a31SKevin Wolf 29564c9dfe5dSKevin Wolf child_key_dot = g_strdup_printf("%s.", child->name); 29574c9dfe5dSKevin Wolf qdict_extract_subqdict(options, &new_child_options, child_key_dot); 29584c9dfe5dSKevin Wolf g_free(child_key_dot); 29594c9dfe5dSKevin Wolf 296028518102SKevin Wolf bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0, 296128518102SKevin Wolf child->role, options, flags); 2962e971aa12SJeff Cody } 2963e971aa12SJeff Cody 2964e971aa12SJeff Cody return bs_queue; 2965e971aa12SJeff Cody } 2966e971aa12SJeff Cody 296728518102SKevin Wolf BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, 296828518102SKevin Wolf BlockDriverState *bs, 296928518102SKevin Wolf QDict *options, int flags) 297028518102SKevin Wolf { 297128518102SKevin Wolf return bdrv_reopen_queue_child(bs_queue, bs, options, flags, 297228518102SKevin Wolf NULL, NULL, 0); 297328518102SKevin Wolf } 297428518102SKevin Wolf 2975e971aa12SJeff Cody /* 2976e971aa12SJeff Cody * Reopen multiple BlockDriverStates atomically & transactionally. 2977e971aa12SJeff Cody * 2978e971aa12SJeff Cody * The queue passed in (bs_queue) must have been built up previous 2979e971aa12SJeff Cody * via bdrv_reopen_queue(). 2980e971aa12SJeff Cody * 2981e971aa12SJeff Cody * Reopens all BDS specified in the queue, with the appropriate 2982e971aa12SJeff Cody * flags. All devices are prepared for reopen, and failure of any 2983e971aa12SJeff Cody * device will cause all device changes to be abandonded, and intermediate 2984e971aa12SJeff Cody * data cleaned up. 2985e971aa12SJeff Cody * 2986e971aa12SJeff Cody * If all devices prepare successfully, then the changes are committed 2987e971aa12SJeff Cody * to all devices. 2988e971aa12SJeff Cody * 29891a63a907SKevin Wolf * All affected nodes must be drained between bdrv_reopen_queue() and 29901a63a907SKevin Wolf * bdrv_reopen_multiple(). 2991e971aa12SJeff Cody */ 2992720150f3SPaolo Bonzini int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp) 2993e971aa12SJeff Cody { 2994e971aa12SJeff Cody int ret = -1; 2995e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry, *next; 2996e971aa12SJeff Cody Error *local_err = NULL; 2997e971aa12SJeff Cody 2998e971aa12SJeff Cody assert(bs_queue != NULL); 2999e971aa12SJeff Cody 3000e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 30011a63a907SKevin Wolf assert(bs_entry->state.bs->quiesce_counter > 0); 3002e971aa12SJeff Cody if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) { 3003e971aa12SJeff Cody error_propagate(errp, local_err); 3004e971aa12SJeff Cody goto cleanup; 3005e971aa12SJeff Cody } 3006e971aa12SJeff Cody bs_entry->prepared = true; 3007e971aa12SJeff Cody } 3008e971aa12SJeff Cody 3009e971aa12SJeff Cody /* If we reach this point, we have success and just need to apply the 3010e971aa12SJeff Cody * changes 3011e971aa12SJeff Cody */ 3012e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 3013e971aa12SJeff Cody bdrv_reopen_commit(&bs_entry->state); 3014e971aa12SJeff Cody } 3015e971aa12SJeff Cody 3016e971aa12SJeff Cody ret = 0; 3017e971aa12SJeff Cody 3018e971aa12SJeff Cody cleanup: 3019e971aa12SJeff Cody QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { 3020e971aa12SJeff Cody if (ret && bs_entry->prepared) { 3021e971aa12SJeff Cody bdrv_reopen_abort(&bs_entry->state); 3022145f598eSKevin Wolf } else if (ret) { 3023cb3e7f08SMarc-André Lureau qobject_unref(bs_entry->state.explicit_options); 3024e971aa12SJeff Cody } 3025cb3e7f08SMarc-André Lureau qobject_unref(bs_entry->state.options); 3026e971aa12SJeff Cody g_free(bs_entry); 3027e971aa12SJeff Cody } 3028e971aa12SJeff Cody g_free(bs_queue); 302940840e41SAlberto Garcia 3030e971aa12SJeff Cody return ret; 3031e971aa12SJeff Cody } 3032e971aa12SJeff Cody 3033e971aa12SJeff Cody 3034e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */ 3035e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp) 3036e971aa12SJeff Cody { 3037e971aa12SJeff Cody int ret = -1; 3038e971aa12SJeff Cody Error *local_err = NULL; 30391a63a907SKevin Wolf BlockReopenQueue *queue; 3040e971aa12SJeff Cody 30411a63a907SKevin Wolf bdrv_subtree_drained_begin(bs); 30421a63a907SKevin Wolf 30431a63a907SKevin Wolf queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags); 3044720150f3SPaolo Bonzini ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, &local_err); 3045e971aa12SJeff Cody if (local_err != NULL) { 3046e971aa12SJeff Cody error_propagate(errp, local_err); 3047e971aa12SJeff Cody } 30481a63a907SKevin Wolf 30491a63a907SKevin Wolf bdrv_subtree_drained_end(bs); 30501a63a907SKevin Wolf 3051e971aa12SJeff Cody return ret; 3052e971aa12SJeff Cody } 3053e971aa12SJeff Cody 305430450259SKevin Wolf static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q, 305530450259SKevin Wolf BdrvChild *c) 305630450259SKevin Wolf { 305730450259SKevin Wolf BlockReopenQueueEntry *entry; 305830450259SKevin Wolf 305930450259SKevin Wolf QSIMPLEQ_FOREACH(entry, q, entry) { 306030450259SKevin Wolf BlockDriverState *bs = entry->state.bs; 306130450259SKevin Wolf BdrvChild *child; 306230450259SKevin Wolf 306330450259SKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 306430450259SKevin Wolf if (child == c) { 306530450259SKevin Wolf return entry; 306630450259SKevin Wolf } 306730450259SKevin Wolf } 306830450259SKevin Wolf } 306930450259SKevin Wolf 307030450259SKevin Wolf return NULL; 307130450259SKevin Wolf } 307230450259SKevin Wolf 307330450259SKevin Wolf static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs, 307430450259SKevin Wolf uint64_t *perm, uint64_t *shared) 307530450259SKevin Wolf { 307630450259SKevin Wolf BdrvChild *c; 307730450259SKevin Wolf BlockReopenQueueEntry *parent; 307830450259SKevin Wolf uint64_t cumulative_perms = 0; 307930450259SKevin Wolf uint64_t cumulative_shared_perms = BLK_PERM_ALL; 308030450259SKevin Wolf 308130450259SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 308230450259SKevin Wolf parent = find_parent_in_reopen_queue(q, c); 308330450259SKevin Wolf if (!parent) { 308430450259SKevin Wolf cumulative_perms |= c->perm; 308530450259SKevin Wolf cumulative_shared_perms &= c->shared_perm; 308630450259SKevin Wolf } else { 308730450259SKevin Wolf uint64_t nperm, nshared; 308830450259SKevin Wolf 308930450259SKevin Wolf bdrv_child_perm(parent->state.bs, bs, c, c->role, q, 309030450259SKevin Wolf parent->state.perm, parent->state.shared_perm, 309130450259SKevin Wolf &nperm, &nshared); 309230450259SKevin Wolf 309330450259SKevin Wolf cumulative_perms |= nperm; 309430450259SKevin Wolf cumulative_shared_perms &= nshared; 309530450259SKevin Wolf } 309630450259SKevin Wolf } 309730450259SKevin Wolf *perm = cumulative_perms; 309830450259SKevin Wolf *shared = cumulative_shared_perms; 309930450259SKevin Wolf } 3100e971aa12SJeff Cody 3101e971aa12SJeff Cody /* 3102e971aa12SJeff Cody * Prepares a BlockDriverState for reopen. All changes are staged in the 3103e971aa12SJeff Cody * 'opaque' field of the BDRVReopenState, which is used and allocated by 3104e971aa12SJeff Cody * the block driver layer .bdrv_reopen_prepare() 3105e971aa12SJeff Cody * 3106e971aa12SJeff Cody * bs is the BlockDriverState to reopen 3107e971aa12SJeff Cody * flags are the new open flags 3108e971aa12SJeff Cody * queue is the reopen queue 3109e971aa12SJeff Cody * 3110e971aa12SJeff Cody * Returns 0 on success, non-zero on error. On error errp will be set 3111e971aa12SJeff Cody * as well. 3112e971aa12SJeff Cody * 3113e971aa12SJeff Cody * On failure, bdrv_reopen_abort() will be called to clean up any data. 3114e971aa12SJeff Cody * It is the responsibility of the caller to then call the abort() or 3115e971aa12SJeff Cody * commit() for any other BDS that have been left in a prepare() state 3116e971aa12SJeff Cody * 3117e971aa12SJeff Cody */ 3118e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue, 3119e971aa12SJeff Cody Error **errp) 3120e971aa12SJeff Cody { 3121e971aa12SJeff Cody int ret = -1; 3122e971aa12SJeff Cody Error *local_err = NULL; 3123e971aa12SJeff Cody BlockDriver *drv; 3124ccf9dc07SKevin Wolf QemuOpts *opts; 3125ccf9dc07SKevin Wolf const char *value; 31263d8ce171SJeff Cody bool read_only; 3127e971aa12SJeff Cody 3128e971aa12SJeff Cody assert(reopen_state != NULL); 3129e971aa12SJeff Cody assert(reopen_state->bs->drv != NULL); 3130e971aa12SJeff Cody drv = reopen_state->bs->drv; 3131e971aa12SJeff Cody 3132ccf9dc07SKevin Wolf /* Process generic block layer options */ 3133ccf9dc07SKevin Wolf opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 3134ccf9dc07SKevin Wolf qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err); 3135ccf9dc07SKevin Wolf if (local_err) { 3136ccf9dc07SKevin Wolf error_propagate(errp, local_err); 3137ccf9dc07SKevin Wolf ret = -EINVAL; 3138ccf9dc07SKevin Wolf goto error; 3139ccf9dc07SKevin Wolf } 3140ccf9dc07SKevin Wolf 314191a097e7SKevin Wolf update_flags_from_options(&reopen_state->flags, opts); 314291a097e7SKevin Wolf 3143ccf9dc07SKevin Wolf /* node-name and driver must be unchanged. Put them back into the QDict, so 3144ccf9dc07SKevin Wolf * that they are checked at the end of this function. */ 3145ccf9dc07SKevin Wolf value = qemu_opt_get(opts, "node-name"); 3146ccf9dc07SKevin Wolf if (value) { 314746f5ac20SEric Blake qdict_put_str(reopen_state->options, "node-name", value); 3148ccf9dc07SKevin Wolf } 3149ccf9dc07SKevin Wolf 3150ccf9dc07SKevin Wolf value = qemu_opt_get(opts, "driver"); 3151ccf9dc07SKevin Wolf if (value) { 315246f5ac20SEric Blake qdict_put_str(reopen_state->options, "driver", value); 3153ccf9dc07SKevin Wolf } 3154ccf9dc07SKevin Wolf 31553d8ce171SJeff Cody /* If we are to stay read-only, do not allow permission change 31563d8ce171SJeff Cody * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is 31573d8ce171SJeff Cody * not set, or if the BDS still has copy_on_read enabled */ 31583d8ce171SJeff Cody read_only = !(reopen_state->flags & BDRV_O_RDWR); 315954a32bfeSKevin Wolf ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err); 31603d8ce171SJeff Cody if (local_err) { 31613d8ce171SJeff Cody error_propagate(errp, local_err); 3162e971aa12SJeff Cody goto error; 3163e971aa12SJeff Cody } 3164e971aa12SJeff Cody 316530450259SKevin Wolf /* Calculate required permissions after reopening */ 316630450259SKevin Wolf bdrv_reopen_perm(queue, reopen_state->bs, 316730450259SKevin Wolf &reopen_state->perm, &reopen_state->shared_perm); 3168e971aa12SJeff Cody 3169e971aa12SJeff Cody ret = bdrv_flush(reopen_state->bs); 3170e971aa12SJeff Cody if (ret) { 3171455b0fdeSEric Blake error_setg_errno(errp, -ret, "Error flushing drive"); 3172e971aa12SJeff Cody goto error; 3173e971aa12SJeff Cody } 3174e971aa12SJeff Cody 3175e971aa12SJeff Cody if (drv->bdrv_reopen_prepare) { 3176e971aa12SJeff Cody ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); 3177e971aa12SJeff Cody if (ret) { 3178e971aa12SJeff Cody if (local_err != NULL) { 3179e971aa12SJeff Cody error_propagate(errp, local_err); 3180e971aa12SJeff Cody } else { 3181d8b6895fSLuiz Capitulino error_setg(errp, "failed while preparing to reopen image '%s'", 3182e971aa12SJeff Cody reopen_state->bs->filename); 3183e971aa12SJeff Cody } 3184e971aa12SJeff Cody goto error; 3185e971aa12SJeff Cody } 3186e971aa12SJeff Cody } else { 3187e971aa12SJeff Cody /* It is currently mandatory to have a bdrv_reopen_prepare() 3188e971aa12SJeff Cody * handler for each supported drv. */ 318981e5f78aSAlberto Garcia error_setg(errp, "Block format '%s' used by node '%s' " 319081e5f78aSAlberto Garcia "does not support reopening files", drv->format_name, 319181e5f78aSAlberto Garcia bdrv_get_device_or_node_name(reopen_state->bs)); 3192e971aa12SJeff Cody ret = -1; 3193e971aa12SJeff Cody goto error; 3194e971aa12SJeff Cody } 3195e971aa12SJeff Cody 31964d2cb092SKevin Wolf /* Options that are not handled are only okay if they are unchanged 31974d2cb092SKevin Wolf * compared to the old state. It is expected that some options are only 31984d2cb092SKevin Wolf * used for the initial open, but not reopen (e.g. filename) */ 31994d2cb092SKevin Wolf if (qdict_size(reopen_state->options)) { 32004d2cb092SKevin Wolf const QDictEntry *entry = qdict_first(reopen_state->options); 32014d2cb092SKevin Wolf 32024d2cb092SKevin Wolf do { 320354fd1b0dSMax Reitz QObject *new = entry->value; 320454fd1b0dSMax Reitz QObject *old = qdict_get(reopen_state->bs->options, entry->key); 32054d2cb092SKevin Wolf 320654fd1b0dSMax Reitz /* 320754fd1b0dSMax Reitz * TODO: When using -drive to specify blockdev options, all values 320854fd1b0dSMax Reitz * will be strings; however, when using -blockdev, blockdev-add or 320954fd1b0dSMax Reitz * filenames using the json:{} pseudo-protocol, they will be 321054fd1b0dSMax Reitz * correctly typed. 321154fd1b0dSMax Reitz * In contrast, reopening options are (currently) always strings 321254fd1b0dSMax Reitz * (because you can only specify them through qemu-io; all other 321354fd1b0dSMax Reitz * callers do not specify any options). 321454fd1b0dSMax Reitz * Therefore, when using anything other than -drive to create a BDS, 321554fd1b0dSMax Reitz * this cannot detect non-string options as unchanged, because 321654fd1b0dSMax Reitz * qobject_is_equal() always returns false for objects of different 321754fd1b0dSMax Reitz * type. In the future, this should be remedied by correctly typing 321854fd1b0dSMax Reitz * all options. For now, this is not too big of an issue because 321954fd1b0dSMax Reitz * the user can simply omit options which cannot be changed anyway, 322054fd1b0dSMax Reitz * so they will stay unchanged. 322154fd1b0dSMax Reitz */ 322254fd1b0dSMax Reitz if (!qobject_is_equal(new, old)) { 32234d2cb092SKevin Wolf error_setg(errp, "Cannot change the option '%s'", entry->key); 32244d2cb092SKevin Wolf ret = -EINVAL; 32254d2cb092SKevin Wolf goto error; 32264d2cb092SKevin Wolf } 32274d2cb092SKevin Wolf } while ((entry = qdict_next(reopen_state->options, entry))); 32284d2cb092SKevin Wolf } 32294d2cb092SKevin Wolf 323030450259SKevin Wolf ret = bdrv_check_perm(reopen_state->bs, queue, reopen_state->perm, 323130450259SKevin Wolf reopen_state->shared_perm, NULL, errp); 323230450259SKevin Wolf if (ret < 0) { 323330450259SKevin Wolf goto error; 323430450259SKevin Wolf } 323530450259SKevin Wolf 3236e971aa12SJeff Cody ret = 0; 3237e971aa12SJeff Cody 3238e971aa12SJeff Cody error: 3239ccf9dc07SKevin Wolf qemu_opts_del(opts); 3240e971aa12SJeff Cody return ret; 3241e971aa12SJeff Cody } 3242e971aa12SJeff Cody 3243e971aa12SJeff Cody /* 3244e971aa12SJeff Cody * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and 3245e971aa12SJeff Cody * makes them final by swapping the staging BlockDriverState contents into 3246e971aa12SJeff Cody * the active BlockDriverState contents. 3247e971aa12SJeff Cody */ 3248e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state) 3249e971aa12SJeff Cody { 3250e971aa12SJeff Cody BlockDriver *drv; 325150bf65baSVladimir Sementsov-Ogievskiy BlockDriverState *bs; 3252cb9ff6c2SVladimir Sementsov-Ogievskiy bool old_can_write, new_can_write; 3253e971aa12SJeff Cody 3254e971aa12SJeff Cody assert(reopen_state != NULL); 325550bf65baSVladimir Sementsov-Ogievskiy bs = reopen_state->bs; 325650bf65baSVladimir Sementsov-Ogievskiy drv = bs->drv; 3257e971aa12SJeff Cody assert(drv != NULL); 3258e971aa12SJeff Cody 3259cb9ff6c2SVladimir Sementsov-Ogievskiy old_can_write = 3260cb9ff6c2SVladimir Sementsov-Ogievskiy !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE); 3261cb9ff6c2SVladimir Sementsov-Ogievskiy 3262e971aa12SJeff Cody /* If there are any driver level actions to take */ 3263e971aa12SJeff Cody if (drv->bdrv_reopen_commit) { 3264e971aa12SJeff Cody drv->bdrv_reopen_commit(reopen_state); 3265e971aa12SJeff Cody } 3266e971aa12SJeff Cody 3267e971aa12SJeff Cody /* set BDS specific flags now */ 3268cb3e7f08SMarc-André Lureau qobject_unref(bs->explicit_options); 3269145f598eSKevin Wolf 327050bf65baSVladimir Sementsov-Ogievskiy bs->explicit_options = reopen_state->explicit_options; 327150bf65baSVladimir Sementsov-Ogievskiy bs->open_flags = reopen_state->flags; 327250bf65baSVladimir Sementsov-Ogievskiy bs->read_only = !(reopen_state->flags & BDRV_O_RDWR); 3273355ef4acSKevin Wolf 327450bf65baSVladimir Sementsov-Ogievskiy bdrv_refresh_limits(bs, NULL); 3275cb9ff6c2SVladimir Sementsov-Ogievskiy 327630450259SKevin Wolf bdrv_set_perm(reopen_state->bs, reopen_state->perm, 327730450259SKevin Wolf reopen_state->shared_perm); 327830450259SKevin Wolf 3279cb9ff6c2SVladimir Sementsov-Ogievskiy new_can_write = 3280cb9ff6c2SVladimir Sementsov-Ogievskiy !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE); 3281cb9ff6c2SVladimir Sementsov-Ogievskiy if (!old_can_write && new_can_write && drv->bdrv_reopen_bitmaps_rw) { 3282cb9ff6c2SVladimir Sementsov-Ogievskiy Error *local_err = NULL; 3283cb9ff6c2SVladimir Sementsov-Ogievskiy if (drv->bdrv_reopen_bitmaps_rw(bs, &local_err) < 0) { 3284cb9ff6c2SVladimir Sementsov-Ogievskiy /* This is not fatal, bitmaps just left read-only, so all following 3285cb9ff6c2SVladimir Sementsov-Ogievskiy * writes will fail. User can remove read-only bitmaps to unblock 3286cb9ff6c2SVladimir Sementsov-Ogievskiy * writes. 3287cb9ff6c2SVladimir Sementsov-Ogievskiy */ 3288cb9ff6c2SVladimir Sementsov-Ogievskiy error_reportf_err(local_err, 3289cb9ff6c2SVladimir Sementsov-Ogievskiy "%s: Failed to make dirty bitmaps writable: ", 3290cb9ff6c2SVladimir Sementsov-Ogievskiy bdrv_get_node_name(bs)); 3291cb9ff6c2SVladimir Sementsov-Ogievskiy } 3292cb9ff6c2SVladimir Sementsov-Ogievskiy } 3293e971aa12SJeff Cody } 3294e971aa12SJeff Cody 3295e971aa12SJeff Cody /* 3296e971aa12SJeff Cody * Abort the reopen, and delete and free the staged changes in 3297e971aa12SJeff Cody * reopen_state 3298e971aa12SJeff Cody */ 3299e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state) 3300e971aa12SJeff Cody { 3301e971aa12SJeff Cody BlockDriver *drv; 3302e971aa12SJeff Cody 3303e971aa12SJeff Cody assert(reopen_state != NULL); 3304e971aa12SJeff Cody drv = reopen_state->bs->drv; 3305e971aa12SJeff Cody assert(drv != NULL); 3306e971aa12SJeff Cody 3307e971aa12SJeff Cody if (drv->bdrv_reopen_abort) { 3308e971aa12SJeff Cody drv->bdrv_reopen_abort(reopen_state); 3309e971aa12SJeff Cody } 3310145f598eSKevin Wolf 3311cb3e7f08SMarc-André Lureau qobject_unref(reopen_state->explicit_options); 331230450259SKevin Wolf 331330450259SKevin Wolf bdrv_abort_perm_update(reopen_state->bs); 3314e971aa12SJeff Cody } 3315e971aa12SJeff Cody 3316e971aa12SJeff Cody 331764dff520SMax Reitz static void bdrv_close(BlockDriverState *bs) 3318fc01f7e7Sbellard { 331933384421SMax Reitz BdrvAioNotifier *ban, *ban_next; 332050a3efb0SAlberto Garcia BdrvChild *child, *next; 332133384421SMax Reitz 3322ca9bd24cSMax Reitz assert(!bs->job); 332330f55fb8SMax Reitz assert(!bs->refcnt); 332499b7e775SAlberto Garcia 3325fc27291dSPaolo Bonzini bdrv_drained_begin(bs); /* complete I/O */ 332658fda173SStefan Hajnoczi bdrv_flush(bs); 332753ec73e2SFam Zheng bdrv_drain(bs); /* in case flush left pending I/O */ 3328fc27291dSPaolo Bonzini 33293cbc002cSPaolo Bonzini if (bs->drv) { 33309a7dedbcSKevin Wolf bs->drv->bdrv_close(bs); 33319a4f4c31SKevin Wolf bs->drv = NULL; 333250a3efb0SAlberto Garcia } 33339a7dedbcSKevin Wolf 333412fa4af6SKevin Wolf bdrv_set_backing_hd(bs, NULL, &error_abort); 33359a7dedbcSKevin Wolf 33369a4f4c31SKevin Wolf if (bs->file != NULL) { 33379a4f4c31SKevin Wolf bdrv_unref_child(bs, bs->file); 33389a4f4c31SKevin Wolf bs->file = NULL; 33399a4f4c31SKevin Wolf } 33409a4f4c31SKevin Wolf 33416e93e7c4SKevin Wolf QLIST_FOREACH_SAFE(child, &bs->children, next, next) { 334233a60407SKevin Wolf /* TODO Remove bdrv_unref() from drivers' close function and use 334333a60407SKevin Wolf * bdrv_unref_child() here */ 3344bddcec37SKevin Wolf if (child->bs->inherits_from == bs) { 3345bddcec37SKevin Wolf child->bs->inherits_from = NULL; 3346bddcec37SKevin Wolf } 334733a60407SKevin Wolf bdrv_detach_child(child); 33486e93e7c4SKevin Wolf } 33496e93e7c4SKevin Wolf 33507267c094SAnthony Liguori g_free(bs->opaque); 3351ea2384d3Sbellard bs->opaque = NULL; 3352d3faa13eSPaolo Bonzini atomic_set(&bs->copy_on_read, 0); 3353a275fa42SPaolo Bonzini bs->backing_file[0] = '\0'; 3354a275fa42SPaolo Bonzini bs->backing_format[0] = '\0'; 33556405875cSPaolo Bonzini bs->total_sectors = 0; 335654115412SEric Blake bs->encrypted = false; 335754115412SEric Blake bs->sg = false; 3358cb3e7f08SMarc-André Lureau qobject_unref(bs->options); 3359cb3e7f08SMarc-André Lureau qobject_unref(bs->explicit_options); 3360de9c0cecSKevin Wolf bs->options = NULL; 3361998cbd6aSManos Pitsidianakis bs->explicit_options = NULL; 3362cb3e7f08SMarc-André Lureau qobject_unref(bs->full_open_options); 336391af7014SMax Reitz bs->full_open_options = NULL; 336466f82ceeSKevin Wolf 3365cca43ae1SVladimir Sementsov-Ogievskiy bdrv_release_named_dirty_bitmaps(bs); 3366cca43ae1SVladimir Sementsov-Ogievskiy assert(QLIST_EMPTY(&bs->dirty_bitmaps)); 3367cca43ae1SVladimir Sementsov-Ogievskiy 336833384421SMax Reitz QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 336933384421SMax Reitz g_free(ban); 337033384421SMax Reitz } 337133384421SMax Reitz QLIST_INIT(&bs->aio_notifiers); 3372fc27291dSPaolo Bonzini bdrv_drained_end(bs); 3373b338082bSbellard } 3374b338082bSbellard 33752bc93fedSMORITA Kazutaka void bdrv_close_all(void) 33762bc93fedSMORITA Kazutaka { 3377b3b5299dSKevin Wolf assert(job_next(NULL) == NULL); 3378cd7fca95SKevin Wolf nbd_export_close_all(); 33792bc93fedSMORITA Kazutaka 3380ca9bd24cSMax Reitz /* Drop references from requests still in flight, such as canceled block 3381ca9bd24cSMax Reitz * jobs whose AIO context has not been polled yet */ 3382ca9bd24cSMax Reitz bdrv_drain_all(); 3383ca9bd24cSMax Reitz 3384ca9bd24cSMax Reitz blk_remove_all_bs(); 3385ca9bd24cSMax Reitz blockdev_close_all_bdrv_states(); 3386ca9bd24cSMax Reitz 3387a1a2af07SKevin Wolf assert(QTAILQ_EMPTY(&all_bdrv_states)); 33882bc93fedSMORITA Kazutaka } 33892bc93fedSMORITA Kazutaka 3390d0ac0380SKevin Wolf static bool should_update_child(BdrvChild *c, BlockDriverState *to) 3391dd62f1caSKevin Wolf { 3392d0ac0380SKevin Wolf BdrvChild *to_c; 3393dd62f1caSKevin Wolf 339426de9438SKevin Wolf if (c->role->stay_at_node) { 3395d0ac0380SKevin Wolf return false; 339626de9438SKevin Wolf } 3397d0ac0380SKevin Wolf 33989bd910e2SMax Reitz if (c->role == &child_backing) { 33993e44c8e0SKevin Wolf /* If @from is a backing file of @to, ignore the child to avoid 34003e44c8e0SKevin Wolf * creating a loop. We only want to change the pointer of other 34013e44c8e0SKevin Wolf * parents. */ 34029bd910e2SMax Reitz QLIST_FOREACH(to_c, &to->children, next) { 34039bd910e2SMax Reitz if (to_c == c) { 34049bd910e2SMax Reitz break; 34059bd910e2SMax Reitz } 34069bd910e2SMax Reitz } 34079bd910e2SMax Reitz if (to_c) { 3408d0ac0380SKevin Wolf return false; 34099bd910e2SMax Reitz } 34109bd910e2SMax Reitz } 34119bd910e2SMax Reitz 3412d0ac0380SKevin Wolf return true; 3413d0ac0380SKevin Wolf } 3414d0ac0380SKevin Wolf 34155fe31c25SKevin Wolf void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to, 34165fe31c25SKevin Wolf Error **errp) 3417d0ac0380SKevin Wolf { 3418d0ac0380SKevin Wolf BdrvChild *c, *next; 3419234ac1a9SKevin Wolf GSList *list = NULL, *p; 3420234ac1a9SKevin Wolf uint64_t old_perm, old_shared; 3421234ac1a9SKevin Wolf uint64_t perm = 0, shared = BLK_PERM_ALL; 3422234ac1a9SKevin Wolf int ret; 3423d0ac0380SKevin Wolf 34245fe31c25SKevin Wolf assert(!atomic_read(&from->in_flight)); 34255fe31c25SKevin Wolf assert(!atomic_read(&to->in_flight)); 34265fe31c25SKevin Wolf 3427234ac1a9SKevin Wolf /* Make sure that @from doesn't go away until we have successfully attached 3428234ac1a9SKevin Wolf * all of its parents to @to. */ 3429234ac1a9SKevin Wolf bdrv_ref(from); 3430234ac1a9SKevin Wolf 3431234ac1a9SKevin Wolf /* Put all parents into @list and calculate their cumulative permissions */ 3432d0ac0380SKevin Wolf QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) { 3433d0ac0380SKevin Wolf if (!should_update_child(c, to)) { 3434d0ac0380SKevin Wolf continue; 3435d0ac0380SKevin Wolf } 3436234ac1a9SKevin Wolf list = g_slist_prepend(list, c); 3437234ac1a9SKevin Wolf perm |= c->perm; 3438234ac1a9SKevin Wolf shared &= c->shared_perm; 3439234ac1a9SKevin Wolf } 3440234ac1a9SKevin Wolf 3441234ac1a9SKevin Wolf /* Check whether the required permissions can be granted on @to, ignoring 3442234ac1a9SKevin Wolf * all BdrvChild in @list so that they can't block themselves. */ 34433121fb45SKevin Wolf ret = bdrv_check_update_perm(to, NULL, perm, shared, list, errp); 3444234ac1a9SKevin Wolf if (ret < 0) { 3445234ac1a9SKevin Wolf bdrv_abort_perm_update(to); 3446234ac1a9SKevin Wolf goto out; 3447234ac1a9SKevin Wolf } 3448234ac1a9SKevin Wolf 3449234ac1a9SKevin Wolf /* Now actually perform the change. We performed the permission check for 3450234ac1a9SKevin Wolf * all elements of @list at once, so set the permissions all at once at the 3451234ac1a9SKevin Wolf * very end. */ 3452234ac1a9SKevin Wolf for (p = list; p != NULL; p = p->next) { 3453234ac1a9SKevin Wolf c = p->data; 3454d0ac0380SKevin Wolf 3455dd62f1caSKevin Wolf bdrv_ref(to); 3456234ac1a9SKevin Wolf bdrv_replace_child_noperm(c, to); 3457dd62f1caSKevin Wolf bdrv_unref(from); 3458dd62f1caSKevin Wolf } 3459234ac1a9SKevin Wolf 3460234ac1a9SKevin Wolf bdrv_get_cumulative_perm(to, &old_perm, &old_shared); 3461234ac1a9SKevin Wolf bdrv_set_perm(to, old_perm | perm, old_shared | shared); 3462234ac1a9SKevin Wolf 3463234ac1a9SKevin Wolf out: 3464234ac1a9SKevin Wolf g_slist_free(list); 3465234ac1a9SKevin Wolf bdrv_unref(from); 3466dd62f1caSKevin Wolf } 3467dd62f1caSKevin Wolf 34688802d1fdSJeff Cody /* 34698802d1fdSJeff Cody * Add new bs contents at the top of an image chain while the chain is 34708802d1fdSJeff Cody * live, while keeping required fields on the top layer. 34718802d1fdSJeff Cody * 34728802d1fdSJeff Cody * This will modify the BlockDriverState fields, and swap contents 34738802d1fdSJeff Cody * between bs_new and bs_top. Both bs_new and bs_top are modified. 34748802d1fdSJeff Cody * 3475bfb197e0SMarkus Armbruster * bs_new must not be attached to a BlockBackend. 3476f6801b83SJeff Cody * 34778802d1fdSJeff Cody * This function does not create any image files. 3478dd62f1caSKevin Wolf * 3479dd62f1caSKevin Wolf * bdrv_append() takes ownership of a bs_new reference and unrefs it because 3480dd62f1caSKevin Wolf * that's what the callers commonly need. bs_new will be referenced by the old 3481dd62f1caSKevin Wolf * parents of bs_top after bdrv_append() returns. If the caller needs to keep a 3482dd62f1caSKevin Wolf * reference of its own, it must call bdrv_ref(). 34838802d1fdSJeff Cody */ 3484b2c2832cSKevin Wolf void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top, 3485b2c2832cSKevin Wolf Error **errp) 34868802d1fdSJeff Cody { 3487b2c2832cSKevin Wolf Error *local_err = NULL; 3488b2c2832cSKevin Wolf 3489b2c2832cSKevin Wolf bdrv_set_backing_hd(bs_new, bs_top, &local_err); 3490b2c2832cSKevin Wolf if (local_err) { 3491b2c2832cSKevin Wolf error_propagate(errp, local_err); 3492b2c2832cSKevin Wolf goto out; 3493b2c2832cSKevin Wolf } 3494dd62f1caSKevin Wolf 34955fe31c25SKevin Wolf bdrv_replace_node(bs_top, bs_new, &local_err); 3496234ac1a9SKevin Wolf if (local_err) { 3497234ac1a9SKevin Wolf error_propagate(errp, local_err); 3498234ac1a9SKevin Wolf bdrv_set_backing_hd(bs_new, NULL, &error_abort); 3499234ac1a9SKevin Wolf goto out; 3500234ac1a9SKevin Wolf } 3501dd62f1caSKevin Wolf 3502dd62f1caSKevin Wolf /* bs_new is now referenced by its new parents, we don't need the 3503dd62f1caSKevin Wolf * additional reference any more. */ 3504b2c2832cSKevin Wolf out: 3505dd62f1caSKevin Wolf bdrv_unref(bs_new); 35068802d1fdSJeff Cody } 35078802d1fdSJeff Cody 35084f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs) 3509b338082bSbellard { 35103e914655SPaolo Bonzini assert(!bs->job); 35113718d8abSFam Zheng assert(bdrv_op_blocker_is_empty(bs)); 35124f6fd349SFam Zheng assert(!bs->refcnt); 351318846deeSMarkus Armbruster 3514e1b5c52eSStefan Hajnoczi bdrv_close(bs); 3515e1b5c52eSStefan Hajnoczi 35161b7bdbc1SStefan Hajnoczi /* remove from list, if necessary */ 351763eaaae0SKevin Wolf if (bs->node_name[0] != '\0') { 351863eaaae0SKevin Wolf QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list); 351963eaaae0SKevin Wolf } 35202c1d04e0SMax Reitz QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list); 35212c1d04e0SMax Reitz 35227267c094SAnthony Liguori g_free(bs); 3523fc01f7e7Sbellard } 3524fc01f7e7Sbellard 3525e97fc193Saliguori /* 3526e97fc193Saliguori * Run consistency checks on an image 3527e97fc193Saliguori * 3528e076f338SKevin Wolf * Returns 0 if the check could be completed (it doesn't mean that the image is 3529a1c7273bSStefan Weil * free of errors) or -errno when an internal error occurred. The results of the 3530e076f338SKevin Wolf * check are stored in res. 3531e97fc193Saliguori */ 35322fd61638SPaolo Bonzini static int coroutine_fn bdrv_co_check(BlockDriverState *bs, 35332fd61638SPaolo Bonzini BdrvCheckResult *res, BdrvCheckMode fix) 3534e97fc193Saliguori { 3535908bcd54SMax Reitz if (bs->drv == NULL) { 3536908bcd54SMax Reitz return -ENOMEDIUM; 3537908bcd54SMax Reitz } 35382fd61638SPaolo Bonzini if (bs->drv->bdrv_co_check == NULL) { 3539e97fc193Saliguori return -ENOTSUP; 3540e97fc193Saliguori } 3541e97fc193Saliguori 3542e076f338SKevin Wolf memset(res, 0, sizeof(*res)); 35432fd61638SPaolo Bonzini return bs->drv->bdrv_co_check(bs, res, fix); 35442fd61638SPaolo Bonzini } 35452fd61638SPaolo Bonzini 35462fd61638SPaolo Bonzini typedef struct CheckCo { 35472fd61638SPaolo Bonzini BlockDriverState *bs; 35482fd61638SPaolo Bonzini BdrvCheckResult *res; 35492fd61638SPaolo Bonzini BdrvCheckMode fix; 35502fd61638SPaolo Bonzini int ret; 35512fd61638SPaolo Bonzini } CheckCo; 35522fd61638SPaolo Bonzini 35532fd61638SPaolo Bonzini static void bdrv_check_co_entry(void *opaque) 35542fd61638SPaolo Bonzini { 35552fd61638SPaolo Bonzini CheckCo *cco = opaque; 35562fd61638SPaolo Bonzini cco->ret = bdrv_co_check(cco->bs, cco->res, cco->fix); 35572fd61638SPaolo Bonzini } 35582fd61638SPaolo Bonzini 35592fd61638SPaolo Bonzini int bdrv_check(BlockDriverState *bs, 35602fd61638SPaolo Bonzini BdrvCheckResult *res, BdrvCheckMode fix) 35612fd61638SPaolo Bonzini { 35622fd61638SPaolo Bonzini Coroutine *co; 35632fd61638SPaolo Bonzini CheckCo cco = { 35642fd61638SPaolo Bonzini .bs = bs, 35652fd61638SPaolo Bonzini .res = res, 35662fd61638SPaolo Bonzini .ret = -EINPROGRESS, 35672fd61638SPaolo Bonzini .fix = fix, 35682fd61638SPaolo Bonzini }; 35692fd61638SPaolo Bonzini 35702fd61638SPaolo Bonzini if (qemu_in_coroutine()) { 35712fd61638SPaolo Bonzini /* Fast-path if already in coroutine context */ 35722fd61638SPaolo Bonzini bdrv_check_co_entry(&cco); 35732fd61638SPaolo Bonzini } else { 35742fd61638SPaolo Bonzini co = qemu_coroutine_create(bdrv_check_co_entry, &cco); 35752fd61638SPaolo Bonzini qemu_coroutine_enter(co); 35762fd61638SPaolo Bonzini BDRV_POLL_WHILE(bs, cco.ret == -EINPROGRESS); 35772fd61638SPaolo Bonzini } 35782fd61638SPaolo Bonzini 35792fd61638SPaolo Bonzini return cco.ret; 3580e97fc193Saliguori } 3581e97fc193Saliguori 3582756e6736SKevin Wolf /* 3583756e6736SKevin Wolf * Return values: 3584756e6736SKevin Wolf * 0 - success 3585756e6736SKevin Wolf * -EINVAL - backing format specified, but no file 3586756e6736SKevin Wolf * -ENOSPC - can't update the backing file because no space is left in the 3587756e6736SKevin Wolf * image file header 3588756e6736SKevin Wolf * -ENOTSUP - format driver doesn't support changing the backing file 3589756e6736SKevin Wolf */ 3590756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs, 3591756e6736SKevin Wolf const char *backing_file, const char *backing_fmt) 3592756e6736SKevin Wolf { 3593756e6736SKevin Wolf BlockDriver *drv = bs->drv; 3594469ef350SPaolo Bonzini int ret; 3595756e6736SKevin Wolf 3596d470ad42SMax Reitz if (!drv) { 3597d470ad42SMax Reitz return -ENOMEDIUM; 3598d470ad42SMax Reitz } 3599d470ad42SMax Reitz 36005f377794SPaolo Bonzini /* Backing file format doesn't make sense without a backing file */ 36015f377794SPaolo Bonzini if (backing_fmt && !backing_file) { 36025f377794SPaolo Bonzini return -EINVAL; 36035f377794SPaolo Bonzini } 36045f377794SPaolo Bonzini 3605756e6736SKevin Wolf if (drv->bdrv_change_backing_file != NULL) { 3606469ef350SPaolo Bonzini ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); 3607756e6736SKevin Wolf } else { 3608469ef350SPaolo Bonzini ret = -ENOTSUP; 3609756e6736SKevin Wolf } 3610469ef350SPaolo Bonzini 3611469ef350SPaolo Bonzini if (ret == 0) { 3612469ef350SPaolo Bonzini pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); 3613469ef350SPaolo Bonzini pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); 3614469ef350SPaolo Bonzini } 3615469ef350SPaolo Bonzini return ret; 3616756e6736SKevin Wolf } 3617756e6736SKevin Wolf 36186ebdcee2SJeff Cody /* 36196ebdcee2SJeff Cody * Finds the image layer in the chain that has 'bs' as its backing file. 36206ebdcee2SJeff Cody * 36216ebdcee2SJeff Cody * active is the current topmost image. 36226ebdcee2SJeff Cody * 36236ebdcee2SJeff Cody * Returns NULL if bs is not found in active's image chain, 36246ebdcee2SJeff Cody * or if active == bs. 36254caf0fcdSJeff Cody * 36264caf0fcdSJeff Cody * Returns the bottommost base image if bs == NULL. 36276ebdcee2SJeff Cody */ 36286ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active, 36296ebdcee2SJeff Cody BlockDriverState *bs) 36306ebdcee2SJeff Cody { 3631760e0063SKevin Wolf while (active && bs != backing_bs(active)) { 3632760e0063SKevin Wolf active = backing_bs(active); 36336ebdcee2SJeff Cody } 36346ebdcee2SJeff Cody 36354caf0fcdSJeff Cody return active; 36366ebdcee2SJeff Cody } 36376ebdcee2SJeff Cody 36384caf0fcdSJeff Cody /* Given a BDS, searches for the base layer. */ 36394caf0fcdSJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs) 36404caf0fcdSJeff Cody { 36414caf0fcdSJeff Cody return bdrv_find_overlay(bs, NULL); 36426ebdcee2SJeff Cody } 36436ebdcee2SJeff Cody 36446ebdcee2SJeff Cody /* 36456ebdcee2SJeff Cody * Drops images above 'base' up to and including 'top', and sets the image 36466ebdcee2SJeff Cody * above 'top' to have base as its backing file. 36476ebdcee2SJeff Cody * 36486ebdcee2SJeff Cody * Requires that the overlay to 'top' is opened r/w, so that the backing file 36496ebdcee2SJeff Cody * information in 'bs' can be properly updated. 36506ebdcee2SJeff Cody * 36516ebdcee2SJeff Cody * E.g., this will convert the following chain: 36526ebdcee2SJeff Cody * bottom <- base <- intermediate <- top <- active 36536ebdcee2SJeff Cody * 36546ebdcee2SJeff Cody * to 36556ebdcee2SJeff Cody * 36566ebdcee2SJeff Cody * bottom <- base <- active 36576ebdcee2SJeff Cody * 36586ebdcee2SJeff Cody * It is allowed for bottom==base, in which case it converts: 36596ebdcee2SJeff Cody * 36606ebdcee2SJeff Cody * base <- intermediate <- top <- active 36616ebdcee2SJeff Cody * 36626ebdcee2SJeff Cody * to 36636ebdcee2SJeff Cody * 36646ebdcee2SJeff Cody * base <- active 36656ebdcee2SJeff Cody * 366654e26900SJeff Cody * If backing_file_str is non-NULL, it will be used when modifying top's 366754e26900SJeff Cody * overlay image metadata. 366854e26900SJeff Cody * 36696ebdcee2SJeff Cody * Error conditions: 36706ebdcee2SJeff Cody * if active == top, that is considered an error 36716ebdcee2SJeff Cody * 36726ebdcee2SJeff Cody */ 3673bde70715SKevin Wolf int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base, 3674bde70715SKevin Wolf const char *backing_file_str) 36756ebdcee2SJeff Cody { 367661f09ceaSKevin Wolf BdrvChild *c, *next; 367712fa4af6SKevin Wolf Error *local_err = NULL; 36786ebdcee2SJeff Cody int ret = -EIO; 36796ebdcee2SJeff Cody 36806858eba0SKevin Wolf bdrv_ref(top); 36816858eba0SKevin Wolf 36826ebdcee2SJeff Cody if (!top->drv || !base->drv) { 36836ebdcee2SJeff Cody goto exit; 36846ebdcee2SJeff Cody } 36856ebdcee2SJeff Cody 36865db15a57SKevin Wolf /* Make sure that base is in the backing chain of top */ 36875db15a57SKevin Wolf if (!bdrv_chain_contains(top, base)) { 36886ebdcee2SJeff Cody goto exit; 36896ebdcee2SJeff Cody } 36906ebdcee2SJeff Cody 36916ebdcee2SJeff Cody /* success - we can delete the intermediate states, and link top->base */ 3692bde70715SKevin Wolf /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once 3693bde70715SKevin Wolf * we've figured out how they should work. */ 36945db15a57SKevin Wolf backing_file_str = backing_file_str ? backing_file_str : base->filename; 369512fa4af6SKevin Wolf 369661f09ceaSKevin Wolf QLIST_FOREACH_SAFE(c, &top->parents, next_parent, next) { 369761f09ceaSKevin Wolf /* Check whether we are allowed to switch c from top to base */ 369861f09ceaSKevin Wolf GSList *ignore_children = g_slist_prepend(NULL, c); 369961f09ceaSKevin Wolf bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm, 370061f09ceaSKevin Wolf ignore_children, &local_err); 37012c860e79SFam Zheng g_slist_free(ignore_children); 370212fa4af6SKevin Wolf if (local_err) { 370312fa4af6SKevin Wolf ret = -EPERM; 370412fa4af6SKevin Wolf error_report_err(local_err); 370512fa4af6SKevin Wolf goto exit; 370612fa4af6SKevin Wolf } 370761f09ceaSKevin Wolf 370861f09ceaSKevin Wolf /* If so, update the backing file path in the image file */ 370961f09ceaSKevin Wolf if (c->role->update_filename) { 371061f09ceaSKevin Wolf ret = c->role->update_filename(c, base, backing_file_str, 371161f09ceaSKevin Wolf &local_err); 371261f09ceaSKevin Wolf if (ret < 0) { 371361f09ceaSKevin Wolf bdrv_abort_perm_update(base); 371461f09ceaSKevin Wolf error_report_err(local_err); 371561f09ceaSKevin Wolf goto exit; 371661f09ceaSKevin Wolf } 371761f09ceaSKevin Wolf } 371861f09ceaSKevin Wolf 371961f09ceaSKevin Wolf /* Do the actual switch in the in-memory graph. 372061f09ceaSKevin Wolf * Completes bdrv_check_update_perm() transaction internally. */ 372161f09ceaSKevin Wolf bdrv_ref(base); 372261f09ceaSKevin Wolf bdrv_replace_child(c, base); 372361f09ceaSKevin Wolf bdrv_unref(top); 372461f09ceaSKevin Wolf } 37256ebdcee2SJeff Cody 37266ebdcee2SJeff Cody ret = 0; 37276ebdcee2SJeff Cody exit: 37286858eba0SKevin Wolf bdrv_unref(top); 37296ebdcee2SJeff Cody return ret; 37306ebdcee2SJeff Cody } 37316ebdcee2SJeff Cody 373283f64091Sbellard /** 373383f64091Sbellard * Truncate file to 'offset' bytes (needed only for file protocols) 373483f64091Sbellard */ 37357ea37c30SMax Reitz int bdrv_truncate(BdrvChild *child, int64_t offset, PreallocMode prealloc, 37367ea37c30SMax Reitz Error **errp) 373783f64091Sbellard { 373852cdbc58SKevin Wolf BlockDriverState *bs = child->bs; 373983f64091Sbellard BlockDriver *drv = bs->drv; 374051762288SStefan Hajnoczi int ret; 3741c8f6d58eSKevin Wolf 3742362b3786SMax Reitz assert(child->perm & BLK_PERM_RESIZE); 3743c8f6d58eSKevin Wolf 37445a612c00SManos Pitsidianakis /* if bs->drv == NULL, bs is closed, so there's nothing to do here */ 3745ed3d2ec9SMax Reitz if (!drv) { 3746ed3d2ec9SMax Reitz error_setg(errp, "No medium inserted"); 374719cb3738Sbellard return -ENOMEDIUM; 3748ed3d2ec9SMax Reitz } 3749cd8b7aaaSKevin Wolf if (offset < 0) { 3750cd8b7aaaSKevin Wolf error_setg(errp, "Image size cannot be negative"); 3751cd8b7aaaSKevin Wolf return -EINVAL; 3752cd8b7aaaSKevin Wolf } 3753cd8b7aaaSKevin Wolf 3754ed3d2ec9SMax Reitz if (!drv->bdrv_truncate) { 37555a612c00SManos Pitsidianakis if (bs->file && drv->is_filter) { 37565a612c00SManos Pitsidianakis return bdrv_truncate(bs->file, offset, prealloc, errp); 37575a612c00SManos Pitsidianakis } 3758ed3d2ec9SMax Reitz error_setg(errp, "Image format driver does not support resize"); 375983f64091Sbellard return -ENOTSUP; 3760ed3d2ec9SMax Reitz } 3761ed3d2ec9SMax Reitz if (bs->read_only) { 3762ed3d2ec9SMax Reitz error_setg(errp, "Image is read-only"); 376359f2689dSNaphtali Sprei return -EACCES; 3764ed3d2ec9SMax Reitz } 37659c75e168SJeff Cody 3766504c205aSDenis V. Lunev assert(!(bs->open_flags & BDRV_O_INACTIVE)); 3767504c205aSDenis V. Lunev 37687ea37c30SMax Reitz ret = drv->bdrv_truncate(bs, offset, prealloc, errp); 37691b6cc579SEric Blake if (ret < 0) { 37701b6cc579SEric Blake return ret; 37711b6cc579SEric Blake } 377251762288SStefan Hajnoczi ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS); 37731b6cc579SEric Blake if (ret < 0) { 37741b6cc579SEric Blake error_setg_errno(errp, -ret, "Could not refresh total sector count"); 37751b6cc579SEric Blake } else { 37761b6cc579SEric Blake offset = bs->total_sectors * BDRV_SECTOR_SIZE; 37771b6cc579SEric Blake } 37781b6cc579SEric Blake bdrv_dirty_bitmap_truncate(bs, offset); 37795c8cab48SKevin Wolf bdrv_parent_cb_resize(bs); 378047fec599SPaolo Bonzini atomic_inc(&bs->write_gen); 378151762288SStefan Hajnoczi return ret; 378283f64091Sbellard } 378383f64091Sbellard 378483f64091Sbellard /** 37854a1d5e1fSFam Zheng * Length of a allocated file in bytes. Sparse files are counted by actual 37864a1d5e1fSFam Zheng * allocated space. Return < 0 if error or unknown. 37874a1d5e1fSFam Zheng */ 37884a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs) 37894a1d5e1fSFam Zheng { 37904a1d5e1fSFam Zheng BlockDriver *drv = bs->drv; 37914a1d5e1fSFam Zheng if (!drv) { 37924a1d5e1fSFam Zheng return -ENOMEDIUM; 37934a1d5e1fSFam Zheng } 37944a1d5e1fSFam Zheng if (drv->bdrv_get_allocated_file_size) { 37954a1d5e1fSFam Zheng return drv->bdrv_get_allocated_file_size(bs); 37964a1d5e1fSFam Zheng } 37974a1d5e1fSFam Zheng if (bs->file) { 37989a4f4c31SKevin Wolf return bdrv_get_allocated_file_size(bs->file->bs); 37994a1d5e1fSFam Zheng } 38004a1d5e1fSFam Zheng return -ENOTSUP; 38014a1d5e1fSFam Zheng } 38024a1d5e1fSFam Zheng 380390880ff1SStefan Hajnoczi /* 380490880ff1SStefan Hajnoczi * bdrv_measure: 380590880ff1SStefan Hajnoczi * @drv: Format driver 380690880ff1SStefan Hajnoczi * @opts: Creation options for new image 380790880ff1SStefan Hajnoczi * @in_bs: Existing image containing data for new image (may be NULL) 380890880ff1SStefan Hajnoczi * @errp: Error object 380990880ff1SStefan Hajnoczi * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo()) 381090880ff1SStefan Hajnoczi * or NULL on error 381190880ff1SStefan Hajnoczi * 381290880ff1SStefan Hajnoczi * Calculate file size required to create a new image. 381390880ff1SStefan Hajnoczi * 381490880ff1SStefan Hajnoczi * If @in_bs is given then space for allocated clusters and zero clusters 381590880ff1SStefan Hajnoczi * from that image are included in the calculation. If @opts contains a 381690880ff1SStefan Hajnoczi * backing file that is shared by @in_bs then backing clusters may be omitted 381790880ff1SStefan Hajnoczi * from the calculation. 381890880ff1SStefan Hajnoczi * 381990880ff1SStefan Hajnoczi * If @in_bs is NULL then the calculation includes no allocated clusters 382090880ff1SStefan Hajnoczi * unless a preallocation option is given in @opts. 382190880ff1SStefan Hajnoczi * 382290880ff1SStefan Hajnoczi * Note that @in_bs may use a different BlockDriver from @drv. 382390880ff1SStefan Hajnoczi * 382490880ff1SStefan Hajnoczi * If an error occurs the @errp pointer is set. 382590880ff1SStefan Hajnoczi */ 382690880ff1SStefan Hajnoczi BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts, 382790880ff1SStefan Hajnoczi BlockDriverState *in_bs, Error **errp) 382890880ff1SStefan Hajnoczi { 382990880ff1SStefan Hajnoczi if (!drv->bdrv_measure) { 383090880ff1SStefan Hajnoczi error_setg(errp, "Block driver '%s' does not support size measurement", 383190880ff1SStefan Hajnoczi drv->format_name); 383290880ff1SStefan Hajnoczi return NULL; 383390880ff1SStefan Hajnoczi } 383490880ff1SStefan Hajnoczi 383590880ff1SStefan Hajnoczi return drv->bdrv_measure(opts, in_bs, errp); 383690880ff1SStefan Hajnoczi } 383790880ff1SStefan Hajnoczi 38384a1d5e1fSFam Zheng /** 383965a9bb25SMarkus Armbruster * Return number of sectors on success, -errno on error. 384083f64091Sbellard */ 384165a9bb25SMarkus Armbruster int64_t bdrv_nb_sectors(BlockDriverState *bs) 384283f64091Sbellard { 384383f64091Sbellard BlockDriver *drv = bs->drv; 384465a9bb25SMarkus Armbruster 384583f64091Sbellard if (!drv) 384619cb3738Sbellard return -ENOMEDIUM; 384751762288SStefan Hajnoczi 3848b94a2610SKevin Wolf if (drv->has_variable_length) { 3849b94a2610SKevin Wolf int ret = refresh_total_sectors(bs, bs->total_sectors); 3850b94a2610SKevin Wolf if (ret < 0) { 3851b94a2610SKevin Wolf return ret; 3852fc01f7e7Sbellard } 385346a4e4e6SStefan Hajnoczi } 385465a9bb25SMarkus Armbruster return bs->total_sectors; 385565a9bb25SMarkus Armbruster } 385665a9bb25SMarkus Armbruster 385765a9bb25SMarkus Armbruster /** 385865a9bb25SMarkus Armbruster * Return length in bytes on success, -errno on error. 385965a9bb25SMarkus Armbruster * The length is always a multiple of BDRV_SECTOR_SIZE. 386065a9bb25SMarkus Armbruster */ 386165a9bb25SMarkus Armbruster int64_t bdrv_getlength(BlockDriverState *bs) 386265a9bb25SMarkus Armbruster { 386365a9bb25SMarkus Armbruster int64_t ret = bdrv_nb_sectors(bs); 386465a9bb25SMarkus Armbruster 38654a9c9ea0SFam Zheng ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret; 386665a9bb25SMarkus Armbruster return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE; 386746a4e4e6SStefan Hajnoczi } 3868fc01f7e7Sbellard 386919cb3738Sbellard /* return 0 as number of sectors if no device present or error */ 387096b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) 3871fc01f7e7Sbellard { 387265a9bb25SMarkus Armbruster int64_t nb_sectors = bdrv_nb_sectors(bs); 387365a9bb25SMarkus Armbruster 387465a9bb25SMarkus Armbruster *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors; 3875fc01f7e7Sbellard } 3876cf98951bSbellard 387754115412SEric Blake bool bdrv_is_sg(BlockDriverState *bs) 3878985a03b0Sths { 3879985a03b0Sths return bs->sg; 3880985a03b0Sths } 3881985a03b0Sths 388254115412SEric Blake bool bdrv_is_encrypted(BlockDriverState *bs) 3883ea2384d3Sbellard { 3884760e0063SKevin Wolf if (bs->backing && bs->backing->bs->encrypted) { 388554115412SEric Blake return true; 3886760e0063SKevin Wolf } 3887ea2384d3Sbellard return bs->encrypted; 3888ea2384d3Sbellard } 3889ea2384d3Sbellard 3890f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs) 3891ea2384d3Sbellard { 3892f8d6bba1SMarkus Armbruster return bs->drv ? bs->drv->format_name : NULL; 3893ea2384d3Sbellard } 3894ea2384d3Sbellard 3895ada42401SStefan Hajnoczi static int qsort_strcmp(const void *a, const void *b) 3896ada42401SStefan Hajnoczi { 3897ceff5bd7SMax Reitz return strcmp(*(char *const *)a, *(char *const *)b); 3898ada42401SStefan Hajnoczi } 3899ada42401SStefan Hajnoczi 3900ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name), 3901ea2384d3Sbellard void *opaque) 3902ea2384d3Sbellard { 3903ea2384d3Sbellard BlockDriver *drv; 3904e855e4fbSJeff Cody int count = 0; 3905ada42401SStefan Hajnoczi int i; 3906e855e4fbSJeff Cody const char **formats = NULL; 3907ea2384d3Sbellard 39088a22f02aSStefan Hajnoczi QLIST_FOREACH(drv, &bdrv_drivers, list) { 3909e855e4fbSJeff Cody if (drv->format_name) { 3910e855e4fbSJeff Cody bool found = false; 3911e855e4fbSJeff Cody int i = count; 3912e855e4fbSJeff Cody while (formats && i && !found) { 3913e855e4fbSJeff Cody found = !strcmp(formats[--i], drv->format_name); 3914e855e4fbSJeff Cody } 3915e855e4fbSJeff Cody 3916e855e4fbSJeff Cody if (!found) { 39175839e53bSMarkus Armbruster formats = g_renew(const char *, formats, count + 1); 3918e855e4fbSJeff Cody formats[count++] = drv->format_name; 3919ea2384d3Sbellard } 3920ea2384d3Sbellard } 3921e855e4fbSJeff Cody } 3922ada42401SStefan Hajnoczi 3923eb0df69fSMax Reitz for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) { 3924eb0df69fSMax Reitz const char *format_name = block_driver_modules[i].format_name; 3925eb0df69fSMax Reitz 3926eb0df69fSMax Reitz if (format_name) { 3927eb0df69fSMax Reitz bool found = false; 3928eb0df69fSMax Reitz int j = count; 3929eb0df69fSMax Reitz 3930eb0df69fSMax Reitz while (formats && j && !found) { 3931eb0df69fSMax Reitz found = !strcmp(formats[--j], format_name); 3932eb0df69fSMax Reitz } 3933eb0df69fSMax Reitz 3934eb0df69fSMax Reitz if (!found) { 3935eb0df69fSMax Reitz formats = g_renew(const char *, formats, count + 1); 3936eb0df69fSMax Reitz formats[count++] = format_name; 3937eb0df69fSMax Reitz } 3938eb0df69fSMax Reitz } 3939eb0df69fSMax Reitz } 3940eb0df69fSMax Reitz 3941ada42401SStefan Hajnoczi qsort(formats, count, sizeof(formats[0]), qsort_strcmp); 3942ada42401SStefan Hajnoczi 3943ada42401SStefan Hajnoczi for (i = 0; i < count; i++) { 3944ada42401SStefan Hajnoczi it(opaque, formats[i]); 3945ada42401SStefan Hajnoczi } 3946ada42401SStefan Hajnoczi 3947e855e4fbSJeff Cody g_free(formats); 3948e855e4fbSJeff Cody } 3949ea2384d3Sbellard 3950dc364f4cSBenoît Canet /* This function is to find a node in the bs graph */ 3951dc364f4cSBenoît Canet BlockDriverState *bdrv_find_node(const char *node_name) 3952dc364f4cSBenoît Canet { 3953dc364f4cSBenoît Canet BlockDriverState *bs; 3954dc364f4cSBenoît Canet 3955dc364f4cSBenoît Canet assert(node_name); 3956dc364f4cSBenoît Canet 3957dc364f4cSBenoît Canet QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 3958dc364f4cSBenoît Canet if (!strcmp(node_name, bs->node_name)) { 3959dc364f4cSBenoît Canet return bs; 3960dc364f4cSBenoît Canet } 3961dc364f4cSBenoît Canet } 3962dc364f4cSBenoît Canet return NULL; 3963dc364f4cSBenoît Canet } 3964dc364f4cSBenoît Canet 3965c13163fbSBenoît Canet /* Put this QMP function here so it can access the static graph_bdrv_states. */ 3966d5a8ee60SAlberto Garcia BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp) 3967c13163fbSBenoît Canet { 3968c13163fbSBenoît Canet BlockDeviceInfoList *list, *entry; 3969c13163fbSBenoît Canet BlockDriverState *bs; 3970c13163fbSBenoît Canet 3971c13163fbSBenoît Canet list = NULL; 3972c13163fbSBenoît Canet QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 3973c83f9fbaSKevin Wolf BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp); 3974d5a8ee60SAlberto Garcia if (!info) { 3975d5a8ee60SAlberto Garcia qapi_free_BlockDeviceInfoList(list); 3976d5a8ee60SAlberto Garcia return NULL; 3977d5a8ee60SAlberto Garcia } 3978c13163fbSBenoît Canet entry = g_malloc0(sizeof(*entry)); 3979d5a8ee60SAlberto Garcia entry->value = info; 3980c13163fbSBenoît Canet entry->next = list; 3981c13163fbSBenoît Canet list = entry; 3982c13163fbSBenoît Canet } 3983c13163fbSBenoît Canet 3984c13163fbSBenoît Canet return list; 3985c13163fbSBenoît Canet } 3986c13163fbSBenoît Canet 398712d3ba82SBenoît Canet BlockDriverState *bdrv_lookup_bs(const char *device, 398812d3ba82SBenoît Canet const char *node_name, 398912d3ba82SBenoît Canet Error **errp) 399012d3ba82SBenoît Canet { 39917f06d47eSMarkus Armbruster BlockBackend *blk; 39927f06d47eSMarkus Armbruster BlockDriverState *bs; 399312d3ba82SBenoît Canet 399412d3ba82SBenoît Canet if (device) { 39957f06d47eSMarkus Armbruster blk = blk_by_name(device); 399612d3ba82SBenoît Canet 39977f06d47eSMarkus Armbruster if (blk) { 39989f4ed6fbSAlberto Garcia bs = blk_bs(blk); 39999f4ed6fbSAlberto Garcia if (!bs) { 40005433c24fSMax Reitz error_setg(errp, "Device '%s' has no medium", device); 40015433c24fSMax Reitz } 40025433c24fSMax Reitz 40039f4ed6fbSAlberto Garcia return bs; 400412d3ba82SBenoît Canet } 4005dd67fa50SBenoît Canet } 400612d3ba82SBenoît Canet 4007dd67fa50SBenoît Canet if (node_name) { 400812d3ba82SBenoît Canet bs = bdrv_find_node(node_name); 400912d3ba82SBenoît Canet 4010dd67fa50SBenoît Canet if (bs) { 4011dd67fa50SBenoît Canet return bs; 4012dd67fa50SBenoît Canet } 401312d3ba82SBenoît Canet } 401412d3ba82SBenoît Canet 4015dd67fa50SBenoît Canet error_setg(errp, "Cannot find device=%s nor node_name=%s", 4016dd67fa50SBenoît Canet device ? device : "", 4017dd67fa50SBenoît Canet node_name ? node_name : ""); 4018dd67fa50SBenoît Canet return NULL; 401912d3ba82SBenoît Canet } 402012d3ba82SBenoît Canet 40215a6684d2SJeff Cody /* If 'base' is in the same chain as 'top', return true. Otherwise, 40225a6684d2SJeff Cody * return false. If either argument is NULL, return false. */ 40235a6684d2SJeff Cody bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base) 40245a6684d2SJeff Cody { 40255a6684d2SJeff Cody while (top && top != base) { 4026760e0063SKevin Wolf top = backing_bs(top); 40275a6684d2SJeff Cody } 40285a6684d2SJeff Cody 40295a6684d2SJeff Cody return top != NULL; 40305a6684d2SJeff Cody } 40315a6684d2SJeff Cody 403204df765aSFam Zheng BlockDriverState *bdrv_next_node(BlockDriverState *bs) 403304df765aSFam Zheng { 403404df765aSFam Zheng if (!bs) { 403504df765aSFam Zheng return QTAILQ_FIRST(&graph_bdrv_states); 403604df765aSFam Zheng } 403704df765aSFam Zheng return QTAILQ_NEXT(bs, node_list); 403804df765aSFam Zheng } 403904df765aSFam Zheng 404020a9e77dSFam Zheng const char *bdrv_get_node_name(const BlockDriverState *bs) 404120a9e77dSFam Zheng { 404220a9e77dSFam Zheng return bs->node_name; 404320a9e77dSFam Zheng } 404420a9e77dSFam Zheng 40451f0c461bSKevin Wolf const char *bdrv_get_parent_name(const BlockDriverState *bs) 40464c265bf9SKevin Wolf { 40474c265bf9SKevin Wolf BdrvChild *c; 40484c265bf9SKevin Wolf const char *name; 40494c265bf9SKevin Wolf 40504c265bf9SKevin Wolf /* If multiple parents have a name, just pick the first one. */ 40514c265bf9SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 40524c265bf9SKevin Wolf if (c->role->get_name) { 40534c265bf9SKevin Wolf name = c->role->get_name(c); 40544c265bf9SKevin Wolf if (name && *name) { 40554c265bf9SKevin Wolf return name; 40564c265bf9SKevin Wolf } 40574c265bf9SKevin Wolf } 40584c265bf9SKevin Wolf } 40594c265bf9SKevin Wolf 40604c265bf9SKevin Wolf return NULL; 40614c265bf9SKevin Wolf } 40624c265bf9SKevin Wolf 40637f06d47eSMarkus Armbruster /* TODO check what callers really want: bs->node_name or blk_name() */ 4064bfb197e0SMarkus Armbruster const char *bdrv_get_device_name(const BlockDriverState *bs) 4065ea2384d3Sbellard { 40664c265bf9SKevin Wolf return bdrv_get_parent_name(bs) ?: ""; 4067ea2384d3Sbellard } 4068ea2384d3Sbellard 40699b2aa84fSAlberto Garcia /* This can be used to identify nodes that might not have a device 40709b2aa84fSAlberto Garcia * name associated. Since node and device names live in the same 40719b2aa84fSAlberto Garcia * namespace, the result is unambiguous. The exception is if both are 40729b2aa84fSAlberto Garcia * absent, then this returns an empty (non-null) string. */ 40739b2aa84fSAlberto Garcia const char *bdrv_get_device_or_node_name(const BlockDriverState *bs) 40749b2aa84fSAlberto Garcia { 40754c265bf9SKevin Wolf return bdrv_get_parent_name(bs) ?: bs->node_name; 40769b2aa84fSAlberto Garcia } 40779b2aa84fSAlberto Garcia 4078c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs) 4079c8433287SMarkus Armbruster { 4080c8433287SMarkus Armbruster return bs->open_flags; 4081c8433287SMarkus Armbruster } 4082c8433287SMarkus Armbruster 40833ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs) 40843ac21627SPeter Lieven { 40853ac21627SPeter Lieven return 1; 40863ac21627SPeter Lieven } 40873ac21627SPeter Lieven 4088f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs) 4089f2feebbdSKevin Wolf { 4090d470ad42SMax Reitz if (!bs->drv) { 4091d470ad42SMax Reitz return 0; 4092d470ad42SMax Reitz } 4093f2feebbdSKevin Wolf 409411212d8fSPaolo Bonzini /* If BS is a copy on write image, it is initialized to 409511212d8fSPaolo Bonzini the contents of the base image, which may not be zeroes. */ 4096760e0063SKevin Wolf if (bs->backing) { 409711212d8fSPaolo Bonzini return 0; 409811212d8fSPaolo Bonzini } 4099336c1c12SKevin Wolf if (bs->drv->bdrv_has_zero_init) { 4100336c1c12SKevin Wolf return bs->drv->bdrv_has_zero_init(bs); 4101f2feebbdSKevin Wolf } 41025a612c00SManos Pitsidianakis if (bs->file && bs->drv->is_filter) { 41035a612c00SManos Pitsidianakis return bdrv_has_zero_init(bs->file->bs); 41045a612c00SManos Pitsidianakis } 4105f2feebbdSKevin Wolf 41063ac21627SPeter Lieven /* safe default */ 41073ac21627SPeter Lieven return 0; 4108f2feebbdSKevin Wolf } 4109f2feebbdSKevin Wolf 41104ce78691SPeter Lieven bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs) 41114ce78691SPeter Lieven { 41124ce78691SPeter Lieven BlockDriverInfo bdi; 41134ce78691SPeter Lieven 4114760e0063SKevin Wolf if (bs->backing) { 41154ce78691SPeter Lieven return false; 41164ce78691SPeter Lieven } 41174ce78691SPeter Lieven 41184ce78691SPeter Lieven if (bdrv_get_info(bs, &bdi) == 0) { 41194ce78691SPeter Lieven return bdi.unallocated_blocks_are_zero; 41204ce78691SPeter Lieven } 41214ce78691SPeter Lieven 41224ce78691SPeter Lieven return false; 41234ce78691SPeter Lieven } 41244ce78691SPeter Lieven 41254ce78691SPeter Lieven bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs) 41264ce78691SPeter Lieven { 41272f0342efSDenis V. Lunev if (!(bs->open_flags & BDRV_O_UNMAP)) { 41284ce78691SPeter Lieven return false; 41294ce78691SPeter Lieven } 41304ce78691SPeter Lieven 4131e24d813bSEric Blake return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP; 41324ce78691SPeter Lieven } 41334ce78691SPeter Lieven 4134045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs) 4135045df330Saliguori { 4136760e0063SKevin Wolf if (bs->backing && bs->backing->bs->encrypted) 4137045df330Saliguori return bs->backing_file; 4138045df330Saliguori else if (bs->encrypted) 4139045df330Saliguori return bs->filename; 4140045df330Saliguori else 4141045df330Saliguori return NULL; 4142045df330Saliguori } 4143045df330Saliguori 414483f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs, 414583f64091Sbellard char *filename, int filename_size) 414683f64091Sbellard { 414783f64091Sbellard pstrcpy(filename, filename_size, bs->backing_file); 414883f64091Sbellard } 414983f64091Sbellard 4150faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) 4151faea38e7Sbellard { 4152faea38e7Sbellard BlockDriver *drv = bs->drv; 41535a612c00SManos Pitsidianakis /* if bs->drv == NULL, bs is closed, so there's nothing to do here */ 41545a612c00SManos Pitsidianakis if (!drv) { 415519cb3738Sbellard return -ENOMEDIUM; 41565a612c00SManos Pitsidianakis } 41575a612c00SManos Pitsidianakis if (!drv->bdrv_get_info) { 41585a612c00SManos Pitsidianakis if (bs->file && drv->is_filter) { 41595a612c00SManos Pitsidianakis return bdrv_get_info(bs->file->bs, bdi); 41605a612c00SManos Pitsidianakis } 4161faea38e7Sbellard return -ENOTSUP; 41625a612c00SManos Pitsidianakis } 4163faea38e7Sbellard memset(bdi, 0, sizeof(*bdi)); 4164faea38e7Sbellard return drv->bdrv_get_info(bs, bdi); 4165faea38e7Sbellard } 4166faea38e7Sbellard 4167eae041feSMax Reitz ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs) 4168eae041feSMax Reitz { 4169eae041feSMax Reitz BlockDriver *drv = bs->drv; 4170eae041feSMax Reitz if (drv && drv->bdrv_get_specific_info) { 4171eae041feSMax Reitz return drv->bdrv_get_specific_info(bs); 4172eae041feSMax Reitz } 4173eae041feSMax Reitz return NULL; 4174eae041feSMax Reitz } 4175eae041feSMax Reitz 4176a31939e6SEric Blake void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event) 41778b9b0cc2SKevin Wolf { 4178bf736fe3SKevin Wolf if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) { 41798b9b0cc2SKevin Wolf return; 41808b9b0cc2SKevin Wolf } 41818b9b0cc2SKevin Wolf 4182bf736fe3SKevin Wolf bs->drv->bdrv_debug_event(bs, event); 418341c695c7SKevin Wolf } 41848b9b0cc2SKevin Wolf 418541c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, 418641c695c7SKevin Wolf const char *tag) 418741c695c7SKevin Wolf { 418841c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { 41899a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 419041c695c7SKevin Wolf } 419141c695c7SKevin Wolf 419241c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { 419341c695c7SKevin Wolf return bs->drv->bdrv_debug_breakpoint(bs, event, tag); 419441c695c7SKevin Wolf } 419541c695c7SKevin Wolf 419641c695c7SKevin Wolf return -ENOTSUP; 419741c695c7SKevin Wolf } 419841c695c7SKevin Wolf 41994cc70e93SFam Zheng int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag) 42004cc70e93SFam Zheng { 42014cc70e93SFam Zheng while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) { 42029a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 42034cc70e93SFam Zheng } 42044cc70e93SFam Zheng 42054cc70e93SFam Zheng if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) { 42064cc70e93SFam Zheng return bs->drv->bdrv_debug_remove_breakpoint(bs, tag); 42074cc70e93SFam Zheng } 42084cc70e93SFam Zheng 42094cc70e93SFam Zheng return -ENOTSUP; 42104cc70e93SFam Zheng } 42114cc70e93SFam Zheng 421241c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag) 421341c695c7SKevin Wolf { 4214938789eaSMax Reitz while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) { 42159a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 421641c695c7SKevin Wolf } 421741c695c7SKevin Wolf 421841c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_resume) { 421941c695c7SKevin Wolf return bs->drv->bdrv_debug_resume(bs, tag); 422041c695c7SKevin Wolf } 422141c695c7SKevin Wolf 422241c695c7SKevin Wolf return -ENOTSUP; 422341c695c7SKevin Wolf } 422441c695c7SKevin Wolf 422541c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) 422641c695c7SKevin Wolf { 422741c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { 42289a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 422941c695c7SKevin Wolf } 423041c695c7SKevin Wolf 423141c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { 423241c695c7SKevin Wolf return bs->drv->bdrv_debug_is_suspended(bs, tag); 423341c695c7SKevin Wolf } 423441c695c7SKevin Wolf 423541c695c7SKevin Wolf return false; 42368b9b0cc2SKevin Wolf } 42378b9b0cc2SKevin Wolf 4238b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol. If it is 4239b1b1d783SJeff Cody * relative, it must be relative to the chain. So, passing in bs->filename 4240b1b1d783SJeff Cody * from a BDS as backing_file should not be done, as that may be relative to 4241b1b1d783SJeff Cody * the CWD rather than the chain. */ 4242e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, 4243e8a6bb9cSMarcelo Tosatti const char *backing_file) 4244e8a6bb9cSMarcelo Tosatti { 4245b1b1d783SJeff Cody char *filename_full = NULL; 4246b1b1d783SJeff Cody char *backing_file_full = NULL; 4247b1b1d783SJeff Cody char *filename_tmp = NULL; 4248b1b1d783SJeff Cody int is_protocol = 0; 4249b1b1d783SJeff Cody BlockDriverState *curr_bs = NULL; 4250b1b1d783SJeff Cody BlockDriverState *retval = NULL; 4251418661e0SJeff Cody Error *local_error = NULL; 4252b1b1d783SJeff Cody 4253b1b1d783SJeff Cody if (!bs || !bs->drv || !backing_file) { 4254e8a6bb9cSMarcelo Tosatti return NULL; 4255e8a6bb9cSMarcelo Tosatti } 4256e8a6bb9cSMarcelo Tosatti 4257b1b1d783SJeff Cody filename_full = g_malloc(PATH_MAX); 4258b1b1d783SJeff Cody backing_file_full = g_malloc(PATH_MAX); 4259b1b1d783SJeff Cody filename_tmp = g_malloc(PATH_MAX); 4260b1b1d783SJeff Cody 4261b1b1d783SJeff Cody is_protocol = path_has_protocol(backing_file); 4262b1b1d783SJeff Cody 4263760e0063SKevin Wolf for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) { 4264b1b1d783SJeff Cody 4265b1b1d783SJeff Cody /* If either of the filename paths is actually a protocol, then 4266b1b1d783SJeff Cody * compare unmodified paths; otherwise make paths relative */ 4267b1b1d783SJeff Cody if (is_protocol || path_has_protocol(curr_bs->backing_file)) { 4268b1b1d783SJeff Cody if (strcmp(backing_file, curr_bs->backing_file) == 0) { 4269760e0063SKevin Wolf retval = curr_bs->backing->bs; 4270b1b1d783SJeff Cody break; 4271b1b1d783SJeff Cody } 4272418661e0SJeff Cody /* Also check against the full backing filename for the image */ 4273418661e0SJeff Cody bdrv_get_full_backing_filename(curr_bs, backing_file_full, PATH_MAX, 4274418661e0SJeff Cody &local_error); 4275418661e0SJeff Cody if (local_error == NULL) { 4276418661e0SJeff Cody if (strcmp(backing_file, backing_file_full) == 0) { 4277418661e0SJeff Cody retval = curr_bs->backing->bs; 4278418661e0SJeff Cody break; 4279418661e0SJeff Cody } 4280418661e0SJeff Cody } else { 4281418661e0SJeff Cody error_free(local_error); 4282418661e0SJeff Cody local_error = NULL; 4283418661e0SJeff Cody } 4284e8a6bb9cSMarcelo Tosatti } else { 4285b1b1d783SJeff Cody /* If not an absolute filename path, make it relative to the current 4286b1b1d783SJeff Cody * image's filename path */ 4287b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 4288b1b1d783SJeff Cody backing_file); 4289b1b1d783SJeff Cody 4290b1b1d783SJeff Cody /* We are going to compare absolute pathnames */ 4291b1b1d783SJeff Cody if (!realpath(filename_tmp, filename_full)) { 4292b1b1d783SJeff Cody continue; 4293b1b1d783SJeff Cody } 4294b1b1d783SJeff Cody 4295b1b1d783SJeff Cody /* We need to make sure the backing filename we are comparing against 4296b1b1d783SJeff Cody * is relative to the current image filename (or absolute) */ 4297b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 4298b1b1d783SJeff Cody curr_bs->backing_file); 4299b1b1d783SJeff Cody 4300b1b1d783SJeff Cody if (!realpath(filename_tmp, backing_file_full)) { 4301b1b1d783SJeff Cody continue; 4302b1b1d783SJeff Cody } 4303b1b1d783SJeff Cody 4304b1b1d783SJeff Cody if (strcmp(backing_file_full, filename_full) == 0) { 4305760e0063SKevin Wolf retval = curr_bs->backing->bs; 4306b1b1d783SJeff Cody break; 4307b1b1d783SJeff Cody } 4308e8a6bb9cSMarcelo Tosatti } 4309e8a6bb9cSMarcelo Tosatti } 4310e8a6bb9cSMarcelo Tosatti 4311b1b1d783SJeff Cody g_free(filename_full); 4312b1b1d783SJeff Cody g_free(backing_file_full); 4313b1b1d783SJeff Cody g_free(filename_tmp); 4314b1b1d783SJeff Cody return retval; 4315e8a6bb9cSMarcelo Tosatti } 4316e8a6bb9cSMarcelo Tosatti 4317ea2384d3Sbellard void bdrv_init(void) 4318ea2384d3Sbellard { 43195efa9d5aSAnthony Liguori module_call_init(MODULE_INIT_BLOCK); 4320ea2384d3Sbellard } 4321ce1a14dcSpbrook 4322eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void) 4323eb852011SMarkus Armbruster { 4324eb852011SMarkus Armbruster use_bdrv_whitelist = 1; 4325eb852011SMarkus Armbruster bdrv_init(); 4326eb852011SMarkus Armbruster } 4327eb852011SMarkus Armbruster 43282b148f39SPaolo Bonzini static void coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, 43292b148f39SPaolo Bonzini Error **errp) 43300f15423cSAnthony Liguori { 43314417ab7aSKevin Wolf BdrvChild *child, *parent; 43329c5e6594SKevin Wolf uint64_t perm, shared_perm; 43335a8a30dbSKevin Wolf Error *local_err = NULL; 43345a8a30dbSKevin Wolf int ret; 43355a8a30dbSKevin Wolf 43363456a8d1SKevin Wolf if (!bs->drv) { 43373456a8d1SKevin Wolf return; 43380f15423cSAnthony Liguori } 43393456a8d1SKevin Wolf 434004c01a5cSKevin Wolf if (!(bs->open_flags & BDRV_O_INACTIVE)) { 43417ea2d269SAlexey Kardashevskiy return; 43427ea2d269SAlexey Kardashevskiy } 43437ea2d269SAlexey Kardashevskiy 434416e977d5SVladimir Sementsov-Ogievskiy QLIST_FOREACH(child, &bs->children, next) { 43452b148f39SPaolo Bonzini bdrv_co_invalidate_cache(child->bs, &local_err); 43465a8a30dbSKevin Wolf if (local_err) { 43475a8a30dbSKevin Wolf error_propagate(errp, local_err); 43485a8a30dbSKevin Wolf return; 43493456a8d1SKevin Wolf } 43500d1c5c91SFam Zheng } 43510d1c5c91SFam Zheng 4352dafe0960SKevin Wolf /* 4353dafe0960SKevin Wolf * Update permissions, they may differ for inactive nodes. 4354dafe0960SKevin Wolf * 4355dafe0960SKevin Wolf * Note that the required permissions of inactive images are always a 4356dafe0960SKevin Wolf * subset of the permissions required after activating the image. This 4357dafe0960SKevin Wolf * allows us to just get the permissions upfront without restricting 4358dafe0960SKevin Wolf * drv->bdrv_invalidate_cache(). 4359dafe0960SKevin Wolf * 4360dafe0960SKevin Wolf * It also means that in error cases, we don't have to try and revert to 4361dafe0960SKevin Wolf * the old permissions (which is an operation that could fail, too). We can 4362dafe0960SKevin Wolf * just keep the extended permissions for the next time that an activation 4363dafe0960SKevin Wolf * of the image is tried. 4364dafe0960SKevin Wolf */ 436516e977d5SVladimir Sementsov-Ogievskiy bs->open_flags &= ~BDRV_O_INACTIVE; 4366dafe0960SKevin Wolf bdrv_get_cumulative_perm(bs, &perm, &shared_perm); 4367dafe0960SKevin Wolf ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &local_err); 4368dafe0960SKevin Wolf if (ret < 0) { 4369dafe0960SKevin Wolf bs->open_flags |= BDRV_O_INACTIVE; 4370dafe0960SKevin Wolf error_propagate(errp, local_err); 4371dafe0960SKevin Wolf return; 4372dafe0960SKevin Wolf } 4373dafe0960SKevin Wolf bdrv_set_perm(bs, perm, shared_perm); 4374dafe0960SKevin Wolf 43752b148f39SPaolo Bonzini if (bs->drv->bdrv_co_invalidate_cache) { 43762b148f39SPaolo Bonzini bs->drv->bdrv_co_invalidate_cache(bs, &local_err); 43770d1c5c91SFam Zheng if (local_err) { 43780d1c5c91SFam Zheng bs->open_flags |= BDRV_O_INACTIVE; 43790d1c5c91SFam Zheng error_propagate(errp, local_err); 43800d1c5c91SFam Zheng return; 43810d1c5c91SFam Zheng } 43820d1c5c91SFam Zheng } 43833456a8d1SKevin Wolf 43845a8a30dbSKevin Wolf ret = refresh_total_sectors(bs, bs->total_sectors); 43855a8a30dbSKevin Wolf if (ret < 0) { 438604c01a5cSKevin Wolf bs->open_flags |= BDRV_O_INACTIVE; 43875a8a30dbSKevin Wolf error_setg_errno(errp, -ret, "Could not refresh total sector count"); 43885a8a30dbSKevin Wolf return; 43895a8a30dbSKevin Wolf } 43904417ab7aSKevin Wolf 43914417ab7aSKevin Wolf QLIST_FOREACH(parent, &bs->parents, next_parent) { 43924417ab7aSKevin Wolf if (parent->role->activate) { 43934417ab7aSKevin Wolf parent->role->activate(parent, &local_err); 43944417ab7aSKevin Wolf if (local_err) { 43954417ab7aSKevin Wolf error_propagate(errp, local_err); 43964417ab7aSKevin Wolf return; 43974417ab7aSKevin Wolf } 43984417ab7aSKevin Wolf } 43994417ab7aSKevin Wolf } 44000f15423cSAnthony Liguori } 44010f15423cSAnthony Liguori 44022b148f39SPaolo Bonzini typedef struct InvalidateCacheCo { 44032b148f39SPaolo Bonzini BlockDriverState *bs; 44042b148f39SPaolo Bonzini Error **errp; 44052b148f39SPaolo Bonzini bool done; 44062b148f39SPaolo Bonzini } InvalidateCacheCo; 44072b148f39SPaolo Bonzini 44082b148f39SPaolo Bonzini static void coroutine_fn bdrv_invalidate_cache_co_entry(void *opaque) 44092b148f39SPaolo Bonzini { 44102b148f39SPaolo Bonzini InvalidateCacheCo *ico = opaque; 44112b148f39SPaolo Bonzini bdrv_co_invalidate_cache(ico->bs, ico->errp); 44122b148f39SPaolo Bonzini ico->done = true; 44132b148f39SPaolo Bonzini } 44142b148f39SPaolo Bonzini 44152b148f39SPaolo Bonzini void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp) 44162b148f39SPaolo Bonzini { 44172b148f39SPaolo Bonzini Coroutine *co; 44182b148f39SPaolo Bonzini InvalidateCacheCo ico = { 44192b148f39SPaolo Bonzini .bs = bs, 44202b148f39SPaolo Bonzini .done = false, 44212b148f39SPaolo Bonzini .errp = errp 44222b148f39SPaolo Bonzini }; 44232b148f39SPaolo Bonzini 44242b148f39SPaolo Bonzini if (qemu_in_coroutine()) { 44252b148f39SPaolo Bonzini /* Fast-path if already in coroutine context */ 44262b148f39SPaolo Bonzini bdrv_invalidate_cache_co_entry(&ico); 44272b148f39SPaolo Bonzini } else { 44282b148f39SPaolo Bonzini co = qemu_coroutine_create(bdrv_invalidate_cache_co_entry, &ico); 44292b148f39SPaolo Bonzini qemu_coroutine_enter(co); 44302b148f39SPaolo Bonzini BDRV_POLL_WHILE(bs, !ico.done); 44312b148f39SPaolo Bonzini } 44322b148f39SPaolo Bonzini } 44332b148f39SPaolo Bonzini 44345a8a30dbSKevin Wolf void bdrv_invalidate_cache_all(Error **errp) 44350f15423cSAnthony Liguori { 44367c8eece4SKevin Wolf BlockDriverState *bs; 44375a8a30dbSKevin Wolf Error *local_err = NULL; 443888be7b4bSKevin Wolf BdrvNextIterator it; 44390f15423cSAnthony Liguori 444088be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 4441ed78cda3SStefan Hajnoczi AioContext *aio_context = bdrv_get_aio_context(bs); 4442ed78cda3SStefan Hajnoczi 4443ed78cda3SStefan Hajnoczi aio_context_acquire(aio_context); 44445a8a30dbSKevin Wolf bdrv_invalidate_cache(bs, &local_err); 4445ed78cda3SStefan Hajnoczi aio_context_release(aio_context); 44465a8a30dbSKevin Wolf if (local_err) { 44475a8a30dbSKevin Wolf error_propagate(errp, local_err); 44485e003f17SMax Reitz bdrv_next_cleanup(&it); 44495a8a30dbSKevin Wolf return; 44505a8a30dbSKevin Wolf } 44510f15423cSAnthony Liguori } 44520f15423cSAnthony Liguori } 44530f15423cSAnthony Liguori 4454aad0b7a0SFam Zheng static int bdrv_inactivate_recurse(BlockDriverState *bs, 4455aad0b7a0SFam Zheng bool setting_flag) 445676b1c7feSKevin Wolf { 4457cfa1a572SKevin Wolf BdrvChild *child, *parent; 445876b1c7feSKevin Wolf int ret; 445976b1c7feSKevin Wolf 4460d470ad42SMax Reitz if (!bs->drv) { 4461d470ad42SMax Reitz return -ENOMEDIUM; 4462d470ad42SMax Reitz } 4463d470ad42SMax Reitz 4464aad0b7a0SFam Zheng if (!setting_flag && bs->drv->bdrv_inactivate) { 446576b1c7feSKevin Wolf ret = bs->drv->bdrv_inactivate(bs); 446676b1c7feSKevin Wolf if (ret < 0) { 446776b1c7feSKevin Wolf return ret; 446876b1c7feSKevin Wolf } 446976b1c7feSKevin Wolf } 447076b1c7feSKevin Wolf 44717d5b5261SStefan Hajnoczi if (setting_flag && !(bs->open_flags & BDRV_O_INACTIVE)) { 44729c5e6594SKevin Wolf uint64_t perm, shared_perm; 44739c5e6594SKevin Wolf 4474cfa1a572SKevin Wolf QLIST_FOREACH(parent, &bs->parents, next_parent) { 4475cfa1a572SKevin Wolf if (parent->role->inactivate) { 4476cfa1a572SKevin Wolf ret = parent->role->inactivate(parent); 4477cfa1a572SKevin Wolf if (ret < 0) { 4478cfa1a572SKevin Wolf return ret; 4479cfa1a572SKevin Wolf } 4480cfa1a572SKevin Wolf } 4481cfa1a572SKevin Wolf } 44829c5e6594SKevin Wolf 44837d5b5261SStefan Hajnoczi bs->open_flags |= BDRV_O_INACTIVE; 44847d5b5261SStefan Hajnoczi 44859c5e6594SKevin Wolf /* Update permissions, they may differ for inactive nodes */ 44869c5e6594SKevin Wolf bdrv_get_cumulative_perm(bs, &perm, &shared_perm); 44873121fb45SKevin Wolf bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &error_abort); 44889c5e6594SKevin Wolf bdrv_set_perm(bs, perm, shared_perm); 4489aad0b7a0SFam Zheng } 449038701b6aSKevin Wolf 449138701b6aSKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 449238701b6aSKevin Wolf ret = bdrv_inactivate_recurse(child->bs, setting_flag); 449338701b6aSKevin Wolf if (ret < 0) { 449438701b6aSKevin Wolf return ret; 449538701b6aSKevin Wolf } 449638701b6aSKevin Wolf } 449738701b6aSKevin Wolf 4498615b5dcfSVladimir Sementsov-Ogievskiy /* At this point persistent bitmaps should be already stored by the format 4499615b5dcfSVladimir Sementsov-Ogievskiy * driver */ 4500615b5dcfSVladimir Sementsov-Ogievskiy bdrv_release_persistent_dirty_bitmaps(bs); 4501615b5dcfSVladimir Sementsov-Ogievskiy 450276b1c7feSKevin Wolf return 0; 450376b1c7feSKevin Wolf } 450476b1c7feSKevin Wolf 450576b1c7feSKevin Wolf int bdrv_inactivate_all(void) 450676b1c7feSKevin Wolf { 450779720af6SMax Reitz BlockDriverState *bs = NULL; 450888be7b4bSKevin Wolf BdrvNextIterator it; 4509aad0b7a0SFam Zheng int ret = 0; 4510aad0b7a0SFam Zheng int pass; 4511bd6458e4SPaolo Bonzini GSList *aio_ctxs = NULL, *ctx; 451276b1c7feSKevin Wolf 451388be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 4514bd6458e4SPaolo Bonzini AioContext *aio_context = bdrv_get_aio_context(bs); 4515bd6458e4SPaolo Bonzini 4516bd6458e4SPaolo Bonzini if (!g_slist_find(aio_ctxs, aio_context)) { 4517bd6458e4SPaolo Bonzini aio_ctxs = g_slist_prepend(aio_ctxs, aio_context); 4518bd6458e4SPaolo Bonzini aio_context_acquire(aio_context); 4519bd6458e4SPaolo Bonzini } 4520aad0b7a0SFam Zheng } 452176b1c7feSKevin Wolf 4522aad0b7a0SFam Zheng /* We do two passes of inactivation. The first pass calls to drivers' 4523aad0b7a0SFam Zheng * .bdrv_inactivate callbacks recursively so all cache is flushed to disk; 4524aad0b7a0SFam Zheng * the second pass sets the BDRV_O_INACTIVE flag so that no further write 4525aad0b7a0SFam Zheng * is allowed. */ 4526aad0b7a0SFam Zheng for (pass = 0; pass < 2; pass++) { 452788be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 4528aad0b7a0SFam Zheng ret = bdrv_inactivate_recurse(bs, pass); 452976b1c7feSKevin Wolf if (ret < 0) { 45305e003f17SMax Reitz bdrv_next_cleanup(&it); 4531aad0b7a0SFam Zheng goto out; 4532aad0b7a0SFam Zheng } 453376b1c7feSKevin Wolf } 453476b1c7feSKevin Wolf } 453576b1c7feSKevin Wolf 4536aad0b7a0SFam Zheng out: 4537bd6458e4SPaolo Bonzini for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) { 4538bd6458e4SPaolo Bonzini AioContext *aio_context = ctx->data; 4539bd6458e4SPaolo Bonzini aio_context_release(aio_context); 4540aad0b7a0SFam Zheng } 4541bd6458e4SPaolo Bonzini g_slist_free(aio_ctxs); 4542aad0b7a0SFam Zheng 4543aad0b7a0SFam Zheng return ret; 454476b1c7feSKevin Wolf } 454576b1c7feSKevin Wolf 4546f9f05dc5SKevin Wolf /**************************************************************/ 454719cb3738Sbellard /* removable device support */ 454819cb3738Sbellard 454919cb3738Sbellard /** 455019cb3738Sbellard * Return TRUE if the media is present 455119cb3738Sbellard */ 4552e031f750SMax Reitz bool bdrv_is_inserted(BlockDriverState *bs) 455319cb3738Sbellard { 455419cb3738Sbellard BlockDriver *drv = bs->drv; 455528d7a789SMax Reitz BdrvChild *child; 4556a1aff5bfSMarkus Armbruster 4557e031f750SMax Reitz if (!drv) { 4558e031f750SMax Reitz return false; 4559e031f750SMax Reitz } 456028d7a789SMax Reitz if (drv->bdrv_is_inserted) { 4561a1aff5bfSMarkus Armbruster return drv->bdrv_is_inserted(bs); 456219cb3738Sbellard } 456328d7a789SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 456428d7a789SMax Reitz if (!bdrv_is_inserted(child->bs)) { 456528d7a789SMax Reitz return false; 456628d7a789SMax Reitz } 456728d7a789SMax Reitz } 456828d7a789SMax Reitz return true; 456928d7a789SMax Reitz } 457019cb3738Sbellard 457119cb3738Sbellard /** 457219cb3738Sbellard * If eject_flag is TRUE, eject the media. Otherwise, close the tray 457319cb3738Sbellard */ 4574f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag) 457519cb3738Sbellard { 457619cb3738Sbellard BlockDriver *drv = bs->drv; 457719cb3738Sbellard 4578822e1cd1SMarkus Armbruster if (drv && drv->bdrv_eject) { 4579822e1cd1SMarkus Armbruster drv->bdrv_eject(bs, eject_flag); 458019cb3738Sbellard } 458119cb3738Sbellard } 458219cb3738Sbellard 458319cb3738Sbellard /** 458419cb3738Sbellard * Lock or unlock the media (if it is locked, the user won't be able 458519cb3738Sbellard * to eject it manually). 458619cb3738Sbellard */ 4587025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked) 458819cb3738Sbellard { 458919cb3738Sbellard BlockDriver *drv = bs->drv; 459019cb3738Sbellard 4591025e849aSMarkus Armbruster trace_bdrv_lock_medium(bs, locked); 4592b8c6d095SStefan Hajnoczi 4593025e849aSMarkus Armbruster if (drv && drv->bdrv_lock_medium) { 4594025e849aSMarkus Armbruster drv->bdrv_lock_medium(bs, locked); 459519cb3738Sbellard } 459619cb3738Sbellard } 4597985a03b0Sths 45989fcb0251SFam Zheng /* Get a reference to bs */ 45999fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs) 46009fcb0251SFam Zheng { 46019fcb0251SFam Zheng bs->refcnt++; 46029fcb0251SFam Zheng } 46039fcb0251SFam Zheng 46049fcb0251SFam Zheng /* Release a previously grabbed reference to bs. 46059fcb0251SFam Zheng * If after releasing, reference count is zero, the BlockDriverState is 46069fcb0251SFam Zheng * deleted. */ 46079fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs) 46089fcb0251SFam Zheng { 46099a4d5ca6SJeff Cody if (!bs) { 46109a4d5ca6SJeff Cody return; 46119a4d5ca6SJeff Cody } 46129fcb0251SFam Zheng assert(bs->refcnt > 0); 46139fcb0251SFam Zheng if (--bs->refcnt == 0) { 46149fcb0251SFam Zheng bdrv_delete(bs); 46159fcb0251SFam Zheng } 46169fcb0251SFam Zheng } 46179fcb0251SFam Zheng 4618fbe40ff7SFam Zheng struct BdrvOpBlocker { 4619fbe40ff7SFam Zheng Error *reason; 4620fbe40ff7SFam Zheng QLIST_ENTRY(BdrvOpBlocker) list; 4621fbe40ff7SFam Zheng }; 4622fbe40ff7SFam Zheng 4623fbe40ff7SFam Zheng bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp) 4624fbe40ff7SFam Zheng { 4625fbe40ff7SFam Zheng BdrvOpBlocker *blocker; 4626fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 4627fbe40ff7SFam Zheng if (!QLIST_EMPTY(&bs->op_blockers[op])) { 4628fbe40ff7SFam Zheng blocker = QLIST_FIRST(&bs->op_blockers[op]); 462957ef3f12SEduardo Habkost error_propagate(errp, error_copy(blocker->reason)); 4630e43bfd9cSMarkus Armbruster error_prepend(errp, "Node '%s' is busy: ", 4631e43bfd9cSMarkus Armbruster bdrv_get_device_or_node_name(bs)); 4632fbe40ff7SFam Zheng return true; 4633fbe40ff7SFam Zheng } 4634fbe40ff7SFam Zheng return false; 4635fbe40ff7SFam Zheng } 4636fbe40ff7SFam Zheng 4637fbe40ff7SFam Zheng void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason) 4638fbe40ff7SFam Zheng { 4639fbe40ff7SFam Zheng BdrvOpBlocker *blocker; 4640fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 4641fbe40ff7SFam Zheng 46425839e53bSMarkus Armbruster blocker = g_new0(BdrvOpBlocker, 1); 4643fbe40ff7SFam Zheng blocker->reason = reason; 4644fbe40ff7SFam Zheng QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list); 4645fbe40ff7SFam Zheng } 4646fbe40ff7SFam Zheng 4647fbe40ff7SFam Zheng void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason) 4648fbe40ff7SFam Zheng { 4649fbe40ff7SFam Zheng BdrvOpBlocker *blocker, *next; 4650fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 4651fbe40ff7SFam Zheng QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) { 4652fbe40ff7SFam Zheng if (blocker->reason == reason) { 4653fbe40ff7SFam Zheng QLIST_REMOVE(blocker, list); 4654fbe40ff7SFam Zheng g_free(blocker); 4655fbe40ff7SFam Zheng } 4656fbe40ff7SFam Zheng } 4657fbe40ff7SFam Zheng } 4658fbe40ff7SFam Zheng 4659fbe40ff7SFam Zheng void bdrv_op_block_all(BlockDriverState *bs, Error *reason) 4660fbe40ff7SFam Zheng { 4661fbe40ff7SFam Zheng int i; 4662fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 4663fbe40ff7SFam Zheng bdrv_op_block(bs, i, reason); 4664fbe40ff7SFam Zheng } 4665fbe40ff7SFam Zheng } 4666fbe40ff7SFam Zheng 4667fbe40ff7SFam Zheng void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason) 4668fbe40ff7SFam Zheng { 4669fbe40ff7SFam Zheng int i; 4670fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 4671fbe40ff7SFam Zheng bdrv_op_unblock(bs, i, reason); 4672fbe40ff7SFam Zheng } 4673fbe40ff7SFam Zheng } 4674fbe40ff7SFam Zheng 4675fbe40ff7SFam Zheng bool bdrv_op_blocker_is_empty(BlockDriverState *bs) 4676fbe40ff7SFam Zheng { 4677fbe40ff7SFam Zheng int i; 4678fbe40ff7SFam Zheng 4679fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 4680fbe40ff7SFam Zheng if (!QLIST_EMPTY(&bs->op_blockers[i])) { 4681fbe40ff7SFam Zheng return false; 4682fbe40ff7SFam Zheng } 4683fbe40ff7SFam Zheng } 4684fbe40ff7SFam Zheng return true; 4685fbe40ff7SFam Zheng } 4686fbe40ff7SFam Zheng 4687d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt, 4688f88e1a42SJes Sorensen const char *base_filename, const char *base_fmt, 46899217283dSFam Zheng char *options, uint64_t img_size, int flags, bool quiet, 46909217283dSFam Zheng Error **errp) 4691f88e1a42SJes Sorensen { 469283d0521aSChunyan Liu QemuOptsList *create_opts = NULL; 469383d0521aSChunyan Liu QemuOpts *opts = NULL; 469483d0521aSChunyan Liu const char *backing_fmt, *backing_file; 469583d0521aSChunyan Liu int64_t size; 4696f88e1a42SJes Sorensen BlockDriver *drv, *proto_drv; 4697cc84d90fSMax Reitz Error *local_err = NULL; 4698f88e1a42SJes Sorensen int ret = 0; 4699f88e1a42SJes Sorensen 4700f88e1a42SJes Sorensen /* Find driver and parse its options */ 4701f88e1a42SJes Sorensen drv = bdrv_find_format(fmt); 4702f88e1a42SJes Sorensen if (!drv) { 470371c79813SLuiz Capitulino error_setg(errp, "Unknown file format '%s'", fmt); 4704d92ada22SLuiz Capitulino return; 4705f88e1a42SJes Sorensen } 4706f88e1a42SJes Sorensen 4707b65a5e12SMax Reitz proto_drv = bdrv_find_protocol(filename, true, errp); 4708f88e1a42SJes Sorensen if (!proto_drv) { 4709d92ada22SLuiz Capitulino return; 4710f88e1a42SJes Sorensen } 4711f88e1a42SJes Sorensen 4712c6149724SMax Reitz if (!drv->create_opts) { 4713c6149724SMax Reitz error_setg(errp, "Format driver '%s' does not support image creation", 4714c6149724SMax Reitz drv->format_name); 4715c6149724SMax Reitz return; 4716c6149724SMax Reitz } 4717c6149724SMax Reitz 4718c6149724SMax Reitz if (!proto_drv->create_opts) { 4719c6149724SMax Reitz error_setg(errp, "Protocol driver '%s' does not support image creation", 4720c6149724SMax Reitz proto_drv->format_name); 4721c6149724SMax Reitz return; 4722c6149724SMax Reitz } 4723c6149724SMax Reitz 4724c282e1fdSChunyan Liu create_opts = qemu_opts_append(create_opts, drv->create_opts); 4725c282e1fdSChunyan Liu create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); 4726f88e1a42SJes Sorensen 4727f88e1a42SJes Sorensen /* Create parameter list with default values */ 472883d0521aSChunyan Liu opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); 472939101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort); 4730f88e1a42SJes Sorensen 4731f88e1a42SJes Sorensen /* Parse -o options */ 4732f88e1a42SJes Sorensen if (options) { 4733dc523cd3SMarkus Armbruster qemu_opts_do_parse(opts, options, NULL, &local_err); 4734dc523cd3SMarkus Armbruster if (local_err) { 4735dc523cd3SMarkus Armbruster error_report_err(local_err); 4736dc523cd3SMarkus Armbruster local_err = NULL; 473783d0521aSChunyan Liu error_setg(errp, "Invalid options for file format '%s'", fmt); 4738f88e1a42SJes Sorensen goto out; 4739f88e1a42SJes Sorensen } 4740f88e1a42SJes Sorensen } 4741f88e1a42SJes Sorensen 4742f88e1a42SJes Sorensen if (base_filename) { 4743f43e47dbSMarkus Armbruster qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err); 47446be4194bSMarkus Armbruster if (local_err) { 474571c79813SLuiz Capitulino error_setg(errp, "Backing file not supported for file format '%s'", 474671c79813SLuiz Capitulino fmt); 4747f88e1a42SJes Sorensen goto out; 4748f88e1a42SJes Sorensen } 4749f88e1a42SJes Sorensen } 4750f88e1a42SJes Sorensen 4751f88e1a42SJes Sorensen if (base_fmt) { 4752f43e47dbSMarkus Armbruster qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err); 47536be4194bSMarkus Armbruster if (local_err) { 475471c79813SLuiz Capitulino error_setg(errp, "Backing file format not supported for file " 475571c79813SLuiz Capitulino "format '%s'", fmt); 4756f88e1a42SJes Sorensen goto out; 4757f88e1a42SJes Sorensen } 4758f88e1a42SJes Sorensen } 4759f88e1a42SJes Sorensen 476083d0521aSChunyan Liu backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); 476183d0521aSChunyan Liu if (backing_file) { 476283d0521aSChunyan Liu if (!strcmp(filename, backing_file)) { 476371c79813SLuiz Capitulino error_setg(errp, "Error: Trying to create an image with the " 476471c79813SLuiz Capitulino "same filename as the backing file"); 4765792da93aSJes Sorensen goto out; 4766792da93aSJes Sorensen } 4767792da93aSJes Sorensen } 4768792da93aSJes Sorensen 476983d0521aSChunyan Liu backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT); 4770f88e1a42SJes Sorensen 47716e6e55f5SJohn Snow /* The size for the image must always be specified, unless we have a backing 47726e6e55f5SJohn Snow * file and we have not been forbidden from opening it. */ 4773a8b42a1cSEric Blake size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size); 47746e6e55f5SJohn Snow if (backing_file && !(flags & BDRV_O_NO_BACKING)) { 477566f6b814SMax Reitz BlockDriverState *bs; 477629168018SMax Reitz char *full_backing = g_new0(char, PATH_MAX); 477763090dacSPaolo Bonzini int back_flags; 4778e6641719SMax Reitz QDict *backing_options = NULL; 477963090dacSPaolo Bonzini 478029168018SMax Reitz bdrv_get_full_backing_filename_from_filename(filename, backing_file, 478129168018SMax Reitz full_backing, PATH_MAX, 478229168018SMax Reitz &local_err); 478329168018SMax Reitz if (local_err) { 478429168018SMax Reitz g_free(full_backing); 478529168018SMax Reitz goto out; 478629168018SMax Reitz } 478729168018SMax Reitz 478863090dacSPaolo Bonzini /* backing files always opened read-only */ 478961de4c68SKevin Wolf back_flags = flags; 4790bfd18d1eSKevin Wolf back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); 4791f88e1a42SJes Sorensen 4792e6641719SMax Reitz backing_options = qdict_new(); 4793cc954f01SFam Zheng if (backing_fmt) { 479446f5ac20SEric Blake qdict_put_str(backing_options, "driver", backing_fmt); 4795e6641719SMax Reitz } 4796cc954f01SFam Zheng qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true); 4797e6641719SMax Reitz 47985b363937SMax Reitz bs = bdrv_open(full_backing, NULL, backing_options, back_flags, 47995b363937SMax Reitz &local_err); 480029168018SMax Reitz g_free(full_backing); 48016e6e55f5SJohn Snow if (!bs && size != -1) { 48026e6e55f5SJohn Snow /* Couldn't open BS, but we have a size, so it's nonfatal */ 48036e6e55f5SJohn Snow warn_reportf_err(local_err, 48046e6e55f5SJohn Snow "Could not verify backing image. " 48056e6e55f5SJohn Snow "This may become an error in future versions.\n"); 48066e6e55f5SJohn Snow local_err = NULL; 48076e6e55f5SJohn Snow } else if (!bs) { 48086e6e55f5SJohn Snow /* Couldn't open bs, do not have size */ 48096e6e55f5SJohn Snow error_append_hint(&local_err, 48106e6e55f5SJohn Snow "Could not open backing image to determine size.\n"); 4811f88e1a42SJes Sorensen goto out; 48126e6e55f5SJohn Snow } else { 48136e6e55f5SJohn Snow if (size == -1) { 48146e6e55f5SJohn Snow /* Opened BS, have no size */ 481552bf1e72SMarkus Armbruster size = bdrv_getlength(bs); 481652bf1e72SMarkus Armbruster if (size < 0) { 481752bf1e72SMarkus Armbruster error_setg_errno(errp, -size, "Could not get size of '%s'", 481852bf1e72SMarkus Armbruster backing_file); 481952bf1e72SMarkus Armbruster bdrv_unref(bs); 482052bf1e72SMarkus Armbruster goto out; 482152bf1e72SMarkus Armbruster } 482239101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort); 48236e6e55f5SJohn Snow } 482466f6b814SMax Reitz bdrv_unref(bs); 48256e6e55f5SJohn Snow } 48266e6e55f5SJohn Snow } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */ 48276e6e55f5SJohn Snow 48286e6e55f5SJohn Snow if (size == -1) { 482971c79813SLuiz Capitulino error_setg(errp, "Image creation needs a size parameter"); 4830f88e1a42SJes Sorensen goto out; 4831f88e1a42SJes Sorensen } 4832f88e1a42SJes Sorensen 4833f382d43aSMiroslav Rezanina if (!quiet) { 4834f88e1a42SJes Sorensen printf("Formatting '%s', fmt=%s ", filename, fmt); 483543c5d8f8SFam Zheng qemu_opts_print(opts, " "); 4836f88e1a42SJes Sorensen puts(""); 4837f382d43aSMiroslav Rezanina } 483883d0521aSChunyan Liu 4839c282e1fdSChunyan Liu ret = bdrv_create(drv, filename, opts, &local_err); 484083d0521aSChunyan Liu 4841cc84d90fSMax Reitz if (ret == -EFBIG) { 4842cc84d90fSMax Reitz /* This is generally a better message than whatever the driver would 4843cc84d90fSMax Reitz * deliver (especially because of the cluster_size_hint), since that 4844cc84d90fSMax Reitz * is most probably not much different from "image too large". */ 4845f3f4d2c0SKevin Wolf const char *cluster_size_hint = ""; 484683d0521aSChunyan Liu if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) { 4847f3f4d2c0SKevin Wolf cluster_size_hint = " (try using a larger cluster size)"; 4848f3f4d2c0SKevin Wolf } 4849cc84d90fSMax Reitz error_setg(errp, "The image size is too large for file format '%s'" 4850cc84d90fSMax Reitz "%s", fmt, cluster_size_hint); 4851cc84d90fSMax Reitz error_free(local_err); 4852cc84d90fSMax Reitz local_err = NULL; 4853f88e1a42SJes Sorensen } 4854f88e1a42SJes Sorensen 4855f88e1a42SJes Sorensen out: 485683d0521aSChunyan Liu qemu_opts_del(opts); 485783d0521aSChunyan Liu qemu_opts_free(create_opts); 4858cc84d90fSMax Reitz error_propagate(errp, local_err); 4859cc84d90fSMax Reitz } 486085d126f3SStefan Hajnoczi 486185d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs) 486285d126f3SStefan Hajnoczi { 486333f2a757SStefan Hajnoczi return bs ? bs->aio_context : qemu_get_aio_context(); 4864dcd04228SStefan Hajnoczi } 4865dcd04228SStefan Hajnoczi 48667719f3c9SStefan Hajnoczi AioWait *bdrv_get_aio_wait(BlockDriverState *bs) 48677719f3c9SStefan Hajnoczi { 48687719f3c9SStefan Hajnoczi return bs ? &bs->wait : NULL; 4869dcd04228SStefan Hajnoczi } 4870dcd04228SStefan Hajnoczi 4871052a7572SFam Zheng void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co) 4872052a7572SFam Zheng { 4873052a7572SFam Zheng aio_co_enter(bdrv_get_aio_context(bs), co); 4874052a7572SFam Zheng } 4875052a7572SFam Zheng 4876e8a095daSStefan Hajnoczi static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban) 4877e8a095daSStefan Hajnoczi { 4878e8a095daSStefan Hajnoczi QLIST_REMOVE(ban, list); 4879e8a095daSStefan Hajnoczi g_free(ban); 4880e8a095daSStefan Hajnoczi } 4881e8a095daSStefan Hajnoczi 4882dcd04228SStefan Hajnoczi void bdrv_detach_aio_context(BlockDriverState *bs) 4883dcd04228SStefan Hajnoczi { 4884e8a095daSStefan Hajnoczi BdrvAioNotifier *baf, *baf_tmp; 4885b97511c7SMax Reitz BdrvChild *child; 488633384421SMax Reitz 4887dcd04228SStefan Hajnoczi if (!bs->drv) { 4888dcd04228SStefan Hajnoczi return; 4889dcd04228SStefan Hajnoczi } 4890dcd04228SStefan Hajnoczi 4891e8a095daSStefan Hajnoczi assert(!bs->walking_aio_notifiers); 4892e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = true; 4893e8a095daSStefan Hajnoczi QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) { 4894e8a095daSStefan Hajnoczi if (baf->deleted) { 4895e8a095daSStefan Hajnoczi bdrv_do_remove_aio_context_notifier(baf); 4896e8a095daSStefan Hajnoczi } else { 489733384421SMax Reitz baf->detach_aio_context(baf->opaque); 489833384421SMax Reitz } 4899e8a095daSStefan Hajnoczi } 4900e8a095daSStefan Hajnoczi /* Never mind iterating again to check for ->deleted. bdrv_close() will 4901e8a095daSStefan Hajnoczi * remove remaining aio notifiers if we aren't called again. 4902e8a095daSStefan Hajnoczi */ 4903e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = false; 490433384421SMax Reitz 4905dcd04228SStefan Hajnoczi if (bs->drv->bdrv_detach_aio_context) { 4906dcd04228SStefan Hajnoczi bs->drv->bdrv_detach_aio_context(bs); 4907dcd04228SStefan Hajnoczi } 4908b97511c7SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 4909b97511c7SMax Reitz bdrv_detach_aio_context(child->bs); 4910dcd04228SStefan Hajnoczi } 4911dcd04228SStefan Hajnoczi 4912dcd04228SStefan Hajnoczi bs->aio_context = NULL; 4913dcd04228SStefan Hajnoczi } 4914dcd04228SStefan Hajnoczi 4915dcd04228SStefan Hajnoczi void bdrv_attach_aio_context(BlockDriverState *bs, 4916dcd04228SStefan Hajnoczi AioContext *new_context) 4917dcd04228SStefan Hajnoczi { 4918e8a095daSStefan Hajnoczi BdrvAioNotifier *ban, *ban_tmp; 4919b97511c7SMax Reitz BdrvChild *child; 492033384421SMax Reitz 4921dcd04228SStefan Hajnoczi if (!bs->drv) { 4922dcd04228SStefan Hajnoczi return; 4923dcd04228SStefan Hajnoczi } 4924dcd04228SStefan Hajnoczi 4925dcd04228SStefan Hajnoczi bs->aio_context = new_context; 4926dcd04228SStefan Hajnoczi 4927b97511c7SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 4928b97511c7SMax Reitz bdrv_attach_aio_context(child->bs, new_context); 4929dcd04228SStefan Hajnoczi } 4930dcd04228SStefan Hajnoczi if (bs->drv->bdrv_attach_aio_context) { 4931dcd04228SStefan Hajnoczi bs->drv->bdrv_attach_aio_context(bs, new_context); 4932dcd04228SStefan Hajnoczi } 493333384421SMax Reitz 4934e8a095daSStefan Hajnoczi assert(!bs->walking_aio_notifiers); 4935e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = true; 4936e8a095daSStefan Hajnoczi QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) { 4937e8a095daSStefan Hajnoczi if (ban->deleted) { 4938e8a095daSStefan Hajnoczi bdrv_do_remove_aio_context_notifier(ban); 4939e8a095daSStefan Hajnoczi } else { 494033384421SMax Reitz ban->attached_aio_context(new_context, ban->opaque); 494133384421SMax Reitz } 4942dcd04228SStefan Hajnoczi } 4943e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = false; 4944e8a095daSStefan Hajnoczi } 4945dcd04228SStefan Hajnoczi 4946dcd04228SStefan Hajnoczi void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context) 4947dcd04228SStefan Hajnoczi { 4948aabf5910SFam Zheng AioContext *ctx = bdrv_get_aio_context(bs); 4949c2b6428dSPaolo Bonzini 4950aabf5910SFam Zheng aio_disable_external(ctx); 49510152bf40SKevin Wolf bdrv_parent_drained_begin(bs, NULL); 495253ec73e2SFam Zheng bdrv_drain(bs); /* ensure there are no in-flight requests */ 4953dcd04228SStefan Hajnoczi 4954c2b6428dSPaolo Bonzini while (aio_poll(ctx, false)) { 4955c2b6428dSPaolo Bonzini /* wait for all bottom halves to execute */ 4956c2b6428dSPaolo Bonzini } 4957c2b6428dSPaolo Bonzini 4958dcd04228SStefan Hajnoczi bdrv_detach_aio_context(bs); 4959dcd04228SStefan Hajnoczi 4960dcd04228SStefan Hajnoczi /* This function executes in the old AioContext so acquire the new one in 4961dcd04228SStefan Hajnoczi * case it runs in a different thread. 4962dcd04228SStefan Hajnoczi */ 4963dcd04228SStefan Hajnoczi aio_context_acquire(new_context); 4964dcd04228SStefan Hajnoczi bdrv_attach_aio_context(bs, new_context); 49650152bf40SKevin Wolf bdrv_parent_drained_end(bs, NULL); 4966aabf5910SFam Zheng aio_enable_external(ctx); 4967dcd04228SStefan Hajnoczi aio_context_release(new_context); 496885d126f3SStefan Hajnoczi } 4969d616b224SStefan Hajnoczi 497033384421SMax Reitz void bdrv_add_aio_context_notifier(BlockDriverState *bs, 497133384421SMax Reitz void (*attached_aio_context)(AioContext *new_context, void *opaque), 497233384421SMax Reitz void (*detach_aio_context)(void *opaque), void *opaque) 497333384421SMax Reitz { 497433384421SMax Reitz BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1); 497533384421SMax Reitz *ban = (BdrvAioNotifier){ 497633384421SMax Reitz .attached_aio_context = attached_aio_context, 497733384421SMax Reitz .detach_aio_context = detach_aio_context, 497833384421SMax Reitz .opaque = opaque 497933384421SMax Reitz }; 498033384421SMax Reitz 498133384421SMax Reitz QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list); 498233384421SMax Reitz } 498333384421SMax Reitz 498433384421SMax Reitz void bdrv_remove_aio_context_notifier(BlockDriverState *bs, 498533384421SMax Reitz void (*attached_aio_context)(AioContext *, 498633384421SMax Reitz void *), 498733384421SMax Reitz void (*detach_aio_context)(void *), 498833384421SMax Reitz void *opaque) 498933384421SMax Reitz { 499033384421SMax Reitz BdrvAioNotifier *ban, *ban_next; 499133384421SMax Reitz 499233384421SMax Reitz QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 499333384421SMax Reitz if (ban->attached_aio_context == attached_aio_context && 499433384421SMax Reitz ban->detach_aio_context == detach_aio_context && 4995e8a095daSStefan Hajnoczi ban->opaque == opaque && 4996e8a095daSStefan Hajnoczi ban->deleted == false) 499733384421SMax Reitz { 4998e8a095daSStefan Hajnoczi if (bs->walking_aio_notifiers) { 4999e8a095daSStefan Hajnoczi ban->deleted = true; 5000e8a095daSStefan Hajnoczi } else { 5001e8a095daSStefan Hajnoczi bdrv_do_remove_aio_context_notifier(ban); 5002e8a095daSStefan Hajnoczi } 500333384421SMax Reitz return; 500433384421SMax Reitz } 500533384421SMax Reitz } 500633384421SMax Reitz 500733384421SMax Reitz abort(); 500833384421SMax Reitz } 500933384421SMax Reitz 501077485434SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts, 5011d1402b50SMax Reitz BlockDriverAmendStatusCB *status_cb, void *cb_opaque, 5012d1402b50SMax Reitz Error **errp) 50136f176b48SMax Reitz { 5014d470ad42SMax Reitz if (!bs->drv) { 5015d1402b50SMax Reitz error_setg(errp, "Node is ejected"); 5016d470ad42SMax Reitz return -ENOMEDIUM; 5017d470ad42SMax Reitz } 5018c282e1fdSChunyan Liu if (!bs->drv->bdrv_amend_options) { 5019d1402b50SMax Reitz error_setg(errp, "Block driver '%s' does not support option amendment", 5020d1402b50SMax Reitz bs->drv->format_name); 50216f176b48SMax Reitz return -ENOTSUP; 50226f176b48SMax Reitz } 5023d1402b50SMax Reitz return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque, errp); 50246f176b48SMax Reitz } 5025f6186f49SBenoît Canet 5026b5042a36SBenoît Canet /* This function will be called by the bdrv_recurse_is_first_non_filter method 5027b5042a36SBenoît Canet * of block filter and by bdrv_is_first_non_filter. 5028b5042a36SBenoît Canet * It is used to test if the given bs is the candidate or recurse more in the 5029b5042a36SBenoît Canet * node graph. 5030212a5a8fSBenoît Canet */ 5031212a5a8fSBenoît Canet bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs, 5032212a5a8fSBenoît Canet BlockDriverState *candidate) 5033f6186f49SBenoît Canet { 5034b5042a36SBenoît Canet /* return false if basic checks fails */ 5035b5042a36SBenoît Canet if (!bs || !bs->drv) { 5036b5042a36SBenoît Canet return false; 5037b5042a36SBenoît Canet } 5038b5042a36SBenoît Canet 5039b5042a36SBenoît Canet /* the code reached a non block filter driver -> check if the bs is 5040b5042a36SBenoît Canet * the same as the candidate. It's the recursion termination condition. 5041b5042a36SBenoît Canet */ 5042b5042a36SBenoît Canet if (!bs->drv->is_filter) { 5043b5042a36SBenoît Canet return bs == candidate; 5044b5042a36SBenoît Canet } 5045b5042a36SBenoît Canet /* Down this path the driver is a block filter driver */ 5046b5042a36SBenoît Canet 5047b5042a36SBenoît Canet /* If the block filter recursion method is defined use it to recurse down 5048b5042a36SBenoît Canet * the node graph. 5049b5042a36SBenoît Canet */ 5050b5042a36SBenoît Canet if (bs->drv->bdrv_recurse_is_first_non_filter) { 5051212a5a8fSBenoît Canet return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate); 5052212a5a8fSBenoît Canet } 5053212a5a8fSBenoît Canet 5054b5042a36SBenoît Canet /* the driver is a block filter but don't allow to recurse -> return false 5055b5042a36SBenoît Canet */ 5056b5042a36SBenoît Canet return false; 5057212a5a8fSBenoît Canet } 5058212a5a8fSBenoît Canet 5059212a5a8fSBenoît Canet /* This function checks if the candidate is the first non filter bs down it's 5060212a5a8fSBenoît Canet * bs chain. Since we don't have pointers to parents it explore all bs chains 5061212a5a8fSBenoît Canet * from the top. Some filters can choose not to pass down the recursion. 5062212a5a8fSBenoît Canet */ 5063212a5a8fSBenoît Canet bool bdrv_is_first_non_filter(BlockDriverState *candidate) 5064212a5a8fSBenoît Canet { 50657c8eece4SKevin Wolf BlockDriverState *bs; 506688be7b4bSKevin Wolf BdrvNextIterator it; 5067212a5a8fSBenoît Canet 5068212a5a8fSBenoît Canet /* walk down the bs forest recursively */ 506988be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 5070212a5a8fSBenoît Canet bool perm; 5071212a5a8fSBenoît Canet 5072b5042a36SBenoît Canet /* try to recurse in this top level bs */ 5073e6dc8a1fSKevin Wolf perm = bdrv_recurse_is_first_non_filter(bs, candidate); 5074212a5a8fSBenoît Canet 5075212a5a8fSBenoît Canet /* candidate is the first non filter */ 5076212a5a8fSBenoît Canet if (perm) { 50775e003f17SMax Reitz bdrv_next_cleanup(&it); 5078212a5a8fSBenoît Canet return true; 5079212a5a8fSBenoît Canet } 5080212a5a8fSBenoît Canet } 5081212a5a8fSBenoît Canet 5082212a5a8fSBenoît Canet return false; 5083f6186f49SBenoît Canet } 508409158f00SBenoît Canet 5085e12f3784SWen Congyang BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs, 5086e12f3784SWen Congyang const char *node_name, Error **errp) 508709158f00SBenoît Canet { 508809158f00SBenoît Canet BlockDriverState *to_replace_bs = bdrv_find_node(node_name); 50895a7e7a0bSStefan Hajnoczi AioContext *aio_context; 50905a7e7a0bSStefan Hajnoczi 509109158f00SBenoît Canet if (!to_replace_bs) { 509209158f00SBenoît Canet error_setg(errp, "Node name '%s' not found", node_name); 509309158f00SBenoît Canet return NULL; 509409158f00SBenoît Canet } 509509158f00SBenoît Canet 50965a7e7a0bSStefan Hajnoczi aio_context = bdrv_get_aio_context(to_replace_bs); 50975a7e7a0bSStefan Hajnoczi aio_context_acquire(aio_context); 50985a7e7a0bSStefan Hajnoczi 509909158f00SBenoît Canet if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) { 51005a7e7a0bSStefan Hajnoczi to_replace_bs = NULL; 51015a7e7a0bSStefan Hajnoczi goto out; 510209158f00SBenoît Canet } 510309158f00SBenoît Canet 510409158f00SBenoît Canet /* We don't want arbitrary node of the BDS chain to be replaced only the top 510509158f00SBenoît Canet * most non filter in order to prevent data corruption. 510609158f00SBenoît Canet * Another benefit is that this tests exclude backing files which are 510709158f00SBenoît Canet * blocked by the backing blockers. 510809158f00SBenoît Canet */ 5109e12f3784SWen Congyang if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) { 511009158f00SBenoît Canet error_setg(errp, "Only top most non filter can be replaced"); 51115a7e7a0bSStefan Hajnoczi to_replace_bs = NULL; 51125a7e7a0bSStefan Hajnoczi goto out; 511309158f00SBenoît Canet } 511409158f00SBenoît Canet 51155a7e7a0bSStefan Hajnoczi out: 51165a7e7a0bSStefan Hajnoczi aio_context_release(aio_context); 511709158f00SBenoît Canet return to_replace_bs; 511809158f00SBenoît Canet } 5119448ad91dSMing Lei 512091af7014SMax Reitz static bool append_open_options(QDict *d, BlockDriverState *bs) 512191af7014SMax Reitz { 512291af7014SMax Reitz const QDictEntry *entry; 51239e700c1aSKevin Wolf QemuOptDesc *desc; 5124260fecf1SKevin Wolf BdrvChild *child; 512591af7014SMax Reitz bool found_any = false; 5126260fecf1SKevin Wolf const char *p; 512791af7014SMax Reitz 512891af7014SMax Reitz for (entry = qdict_first(bs->options); entry; 512991af7014SMax Reitz entry = qdict_next(bs->options, entry)) 513091af7014SMax Reitz { 5131260fecf1SKevin Wolf /* Exclude options for children */ 5132260fecf1SKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 5133260fecf1SKevin Wolf if (strstart(qdict_entry_key(entry), child->name, &p) 5134260fecf1SKevin Wolf && (!*p || *p == '.')) 5135260fecf1SKevin Wolf { 5136260fecf1SKevin Wolf break; 5137260fecf1SKevin Wolf } 5138260fecf1SKevin Wolf } 5139260fecf1SKevin Wolf if (child) { 51409e700c1aSKevin Wolf continue; 51419e700c1aSKevin Wolf } 51429e700c1aSKevin Wolf 51439e700c1aSKevin Wolf /* And exclude all non-driver-specific options */ 51449e700c1aSKevin Wolf for (desc = bdrv_runtime_opts.desc; desc->name; desc++) { 51459e700c1aSKevin Wolf if (!strcmp(qdict_entry_key(entry), desc->name)) { 51469e700c1aSKevin Wolf break; 51479e700c1aSKevin Wolf } 51489e700c1aSKevin Wolf } 51499e700c1aSKevin Wolf if (desc->name) { 51509e700c1aSKevin Wolf continue; 51519e700c1aSKevin Wolf } 51529e700c1aSKevin Wolf 5153f5a74a5aSMarc-André Lureau qdict_put_obj(d, qdict_entry_key(entry), 5154f5a74a5aSMarc-André Lureau qobject_ref(qdict_entry_value(entry))); 515591af7014SMax Reitz found_any = true; 515691af7014SMax Reitz } 515791af7014SMax Reitz 515891af7014SMax Reitz return found_any; 515991af7014SMax Reitz } 516091af7014SMax Reitz 516191af7014SMax Reitz /* Updates the following BDS fields: 516291af7014SMax Reitz * - exact_filename: A filename which may be used for opening a block device 516391af7014SMax Reitz * which (mostly) equals the given BDS (even without any 516491af7014SMax Reitz * other options; so reading and writing must return the same 516591af7014SMax Reitz * results, but caching etc. may be different) 516691af7014SMax Reitz * - full_open_options: Options which, when given when opening a block device 516791af7014SMax Reitz * (without a filename), result in a BDS (mostly) 516891af7014SMax Reitz * equalling the given one 516991af7014SMax Reitz * - filename: If exact_filename is set, it is copied here. Otherwise, 517091af7014SMax Reitz * full_open_options is converted to a JSON object, prefixed with 517191af7014SMax Reitz * "json:" (for use through the JSON pseudo protocol) and put here. 517291af7014SMax Reitz */ 517391af7014SMax Reitz void bdrv_refresh_filename(BlockDriverState *bs) 517491af7014SMax Reitz { 517591af7014SMax Reitz BlockDriver *drv = bs->drv; 517691af7014SMax Reitz QDict *opts; 517791af7014SMax Reitz 517891af7014SMax Reitz if (!drv) { 517991af7014SMax Reitz return; 518091af7014SMax Reitz } 518191af7014SMax Reitz 518291af7014SMax Reitz /* This BDS's file name will most probably depend on its file's name, so 518391af7014SMax Reitz * refresh that first */ 518491af7014SMax Reitz if (bs->file) { 51859a4f4c31SKevin Wolf bdrv_refresh_filename(bs->file->bs); 518691af7014SMax Reitz } 518791af7014SMax Reitz 518891af7014SMax Reitz if (drv->bdrv_refresh_filename) { 518991af7014SMax Reitz /* Obsolete information is of no use here, so drop the old file name 519091af7014SMax Reitz * information before refreshing it */ 519191af7014SMax Reitz bs->exact_filename[0] = '\0'; 519291af7014SMax Reitz if (bs->full_open_options) { 5193cb3e7f08SMarc-André Lureau qobject_unref(bs->full_open_options); 519491af7014SMax Reitz bs->full_open_options = NULL; 519591af7014SMax Reitz } 519691af7014SMax Reitz 51974cdd01d3SKevin Wolf opts = qdict_new(); 51984cdd01d3SKevin Wolf append_open_options(opts, bs); 51994cdd01d3SKevin Wolf drv->bdrv_refresh_filename(bs, opts); 5200cb3e7f08SMarc-André Lureau qobject_unref(opts); 520191af7014SMax Reitz } else if (bs->file) { 520291af7014SMax Reitz /* Try to reconstruct valid information from the underlying file */ 520391af7014SMax Reitz bool has_open_options; 520491af7014SMax Reitz 520591af7014SMax Reitz bs->exact_filename[0] = '\0'; 520691af7014SMax Reitz if (bs->full_open_options) { 5207cb3e7f08SMarc-André Lureau qobject_unref(bs->full_open_options); 520891af7014SMax Reitz bs->full_open_options = NULL; 520991af7014SMax Reitz } 521091af7014SMax Reitz 521191af7014SMax Reitz opts = qdict_new(); 521291af7014SMax Reitz has_open_options = append_open_options(opts, bs); 521391af7014SMax Reitz 521491af7014SMax Reitz /* If no specific options have been given for this BDS, the filename of 521591af7014SMax Reitz * the underlying file should suffice for this one as well */ 52169a4f4c31SKevin Wolf if (bs->file->bs->exact_filename[0] && !has_open_options) { 52179a4f4c31SKevin Wolf strcpy(bs->exact_filename, bs->file->bs->exact_filename); 521891af7014SMax Reitz } 521991af7014SMax Reitz /* Reconstructing the full options QDict is simple for most format block 522091af7014SMax Reitz * drivers, as long as the full options are known for the underlying 522191af7014SMax Reitz * file BDS. The full options QDict of that file BDS should somehow 522291af7014SMax Reitz * contain a representation of the filename, therefore the following 522391af7014SMax Reitz * suffices without querying the (exact_)filename of this BDS. */ 52249a4f4c31SKevin Wolf if (bs->file->bs->full_open_options) { 522546f5ac20SEric Blake qdict_put_str(opts, "driver", drv->format_name); 5226f5a74a5aSMarc-André Lureau qdict_put(opts, "file", 5227f5a74a5aSMarc-André Lureau qobject_ref(bs->file->bs->full_open_options)); 522891af7014SMax Reitz 522991af7014SMax Reitz bs->full_open_options = opts; 523091af7014SMax Reitz } else { 5231cb3e7f08SMarc-André Lureau qobject_unref(opts); 523291af7014SMax Reitz } 523391af7014SMax Reitz } else if (!bs->full_open_options && qdict_size(bs->options)) { 523491af7014SMax Reitz /* There is no underlying file BDS (at least referenced by BDS.file), 523591af7014SMax Reitz * so the full options QDict should be equal to the options given 523691af7014SMax Reitz * specifically for this block device when it was opened (plus the 523791af7014SMax Reitz * driver specification). 523891af7014SMax Reitz * Because those options don't change, there is no need to update 523991af7014SMax Reitz * full_open_options when it's already set. */ 524091af7014SMax Reitz 524191af7014SMax Reitz opts = qdict_new(); 524291af7014SMax Reitz append_open_options(opts, bs); 524346f5ac20SEric Blake qdict_put_str(opts, "driver", drv->format_name); 524491af7014SMax Reitz 524591af7014SMax Reitz if (bs->exact_filename[0]) { 524691af7014SMax Reitz /* This may not work for all block protocol drivers (some may 524791af7014SMax Reitz * require this filename to be parsed), but we have to find some 524891af7014SMax Reitz * default solution here, so just include it. If some block driver 524991af7014SMax Reitz * does not support pure options without any filename at all or 525091af7014SMax Reitz * needs some special format of the options QDict, it needs to 525191af7014SMax Reitz * implement the driver-specific bdrv_refresh_filename() function. 525291af7014SMax Reitz */ 525346f5ac20SEric Blake qdict_put_str(opts, "filename", bs->exact_filename); 525491af7014SMax Reitz } 525591af7014SMax Reitz 525691af7014SMax Reitz bs->full_open_options = opts; 525791af7014SMax Reitz } 525891af7014SMax Reitz 525991af7014SMax Reitz if (bs->exact_filename[0]) { 526091af7014SMax Reitz pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename); 526191af7014SMax Reitz } else if (bs->full_open_options) { 526291af7014SMax Reitz QString *json = qobject_to_json(QOBJECT(bs->full_open_options)); 526391af7014SMax Reitz snprintf(bs->filename, sizeof(bs->filename), "json:%s", 526491af7014SMax Reitz qstring_get_str(json)); 5265cb3e7f08SMarc-André Lureau qobject_unref(json); 526691af7014SMax Reitz } 526791af7014SMax Reitz } 5268e06018adSWen Congyang 5269e06018adSWen Congyang /* 5270e06018adSWen Congyang * Hot add/remove a BDS's child. So the user can take a child offline when 5271e06018adSWen Congyang * it is broken and take a new child online 5272e06018adSWen Congyang */ 5273e06018adSWen Congyang void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs, 5274e06018adSWen Congyang Error **errp) 5275e06018adSWen Congyang { 5276e06018adSWen Congyang 5277e06018adSWen Congyang if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) { 5278e06018adSWen Congyang error_setg(errp, "The node %s does not support adding a child", 5279e06018adSWen Congyang bdrv_get_device_or_node_name(parent_bs)); 5280e06018adSWen Congyang return; 5281e06018adSWen Congyang } 5282e06018adSWen Congyang 5283e06018adSWen Congyang if (!QLIST_EMPTY(&child_bs->parents)) { 5284e06018adSWen Congyang error_setg(errp, "The node %s already has a parent", 5285e06018adSWen Congyang child_bs->node_name); 5286e06018adSWen Congyang return; 5287e06018adSWen Congyang } 5288e06018adSWen Congyang 5289e06018adSWen Congyang parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp); 5290e06018adSWen Congyang } 5291e06018adSWen Congyang 5292e06018adSWen Congyang void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp) 5293e06018adSWen Congyang { 5294e06018adSWen Congyang BdrvChild *tmp; 5295e06018adSWen Congyang 5296e06018adSWen Congyang if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) { 5297e06018adSWen Congyang error_setg(errp, "The node %s does not support removing a child", 5298e06018adSWen Congyang bdrv_get_device_or_node_name(parent_bs)); 5299e06018adSWen Congyang return; 5300e06018adSWen Congyang } 5301e06018adSWen Congyang 5302e06018adSWen Congyang QLIST_FOREACH(tmp, &parent_bs->children, next) { 5303e06018adSWen Congyang if (tmp == child) { 5304e06018adSWen Congyang break; 5305e06018adSWen Congyang } 5306e06018adSWen Congyang } 5307e06018adSWen Congyang 5308e06018adSWen Congyang if (!tmp) { 5309e06018adSWen Congyang error_setg(errp, "The node %s does not have a child named %s", 5310e06018adSWen Congyang bdrv_get_device_or_node_name(parent_bs), 5311e06018adSWen Congyang bdrv_get_device_or_node_name(child->bs)); 5312e06018adSWen Congyang return; 5313e06018adSWen Congyang } 5314e06018adSWen Congyang 5315e06018adSWen Congyang parent_bs->drv->bdrv_del_child(parent_bs, child, errp); 5316e06018adSWen Congyang } 531767b792f5SVladimir Sementsov-Ogievskiy 531867b792f5SVladimir Sementsov-Ogievskiy bool bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name, 531967b792f5SVladimir Sementsov-Ogievskiy uint32_t granularity, Error **errp) 532067b792f5SVladimir Sementsov-Ogievskiy { 532167b792f5SVladimir Sementsov-Ogievskiy BlockDriver *drv = bs->drv; 532267b792f5SVladimir Sementsov-Ogievskiy 532367b792f5SVladimir Sementsov-Ogievskiy if (!drv) { 532467b792f5SVladimir Sementsov-Ogievskiy error_setg_errno(errp, ENOMEDIUM, 532567b792f5SVladimir Sementsov-Ogievskiy "Can't store persistent bitmaps to %s", 532667b792f5SVladimir Sementsov-Ogievskiy bdrv_get_device_or_node_name(bs)); 532767b792f5SVladimir Sementsov-Ogievskiy return false; 532867b792f5SVladimir Sementsov-Ogievskiy } 532967b792f5SVladimir Sementsov-Ogievskiy 533067b792f5SVladimir Sementsov-Ogievskiy if (!drv->bdrv_can_store_new_dirty_bitmap) { 533167b792f5SVladimir Sementsov-Ogievskiy error_setg_errno(errp, ENOTSUP, 533267b792f5SVladimir Sementsov-Ogievskiy "Can't store persistent bitmaps to %s", 533367b792f5SVladimir Sementsov-Ogievskiy bdrv_get_device_or_node_name(bs)); 533467b792f5SVladimir Sementsov-Ogievskiy return false; 533567b792f5SVladimir Sementsov-Ogievskiy } 533667b792f5SVladimir Sementsov-Ogievskiy 533767b792f5SVladimir Sementsov-Ogievskiy return drv->bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp); 533867b792f5SVladimir Sementsov-Ogievskiy } 5339