1fc01f7e7Sbellard /* 2fc01f7e7Sbellard * QEMU System Emulator block driver 3fc01f7e7Sbellard * 4fc01f7e7Sbellard * Copyright (c) 2003 Fabrice Bellard 5fc01f7e7Sbellard * 6fc01f7e7Sbellard * Permission is hereby granted, free of charge, to any person obtaining a copy 7fc01f7e7Sbellard * of this software and associated documentation files (the "Software"), to deal 8fc01f7e7Sbellard * in the Software without restriction, including without limitation the rights 9fc01f7e7Sbellard * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10fc01f7e7Sbellard * copies of the Software, and to permit persons to whom the Software is 11fc01f7e7Sbellard * furnished to do so, subject to the following conditions: 12fc01f7e7Sbellard * 13fc01f7e7Sbellard * The above copyright notice and this permission notice shall be included in 14fc01f7e7Sbellard * all copies or substantial portions of the Software. 15fc01f7e7Sbellard * 16fc01f7e7Sbellard * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17fc01f7e7Sbellard * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18fc01f7e7Sbellard * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19fc01f7e7Sbellard * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20fc01f7e7Sbellard * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21fc01f7e7Sbellard * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22fc01f7e7Sbellard * THE SOFTWARE. 23fc01f7e7Sbellard */ 24e688df6bSMarkus Armbruster 25d38ea87aSPeter Maydell #include "qemu/osdep.h" 260ab8ed18SDaniel P. Berrange #include "block/trace.h" 27737e150eSPaolo Bonzini #include "block/block_int.h" 28737e150eSPaolo Bonzini #include "block/blockjob.h" 29cd7fca95SKevin Wolf #include "block/nbd.h" 30609f45eaSMax Reitz #include "block/qdict.h" 31d49b6836SMarkus Armbruster #include "qemu/error-report.h" 3288d88798SMarc Mari #include "module_block.h" 331de7afc9SPaolo Bonzini #include "qemu/module.h" 34e688df6bSMarkus Armbruster #include "qapi/error.h" 35452fcdbcSMarkus Armbruster #include "qapi/qmp/qdict.h" 367b1b5d19SPaolo Bonzini #include "qapi/qmp/qjson.h" 37e59a0cf1SMax Reitz #include "qapi/qmp/qnull.h" 38fc81fa1eSMarkus Armbruster #include "qapi/qmp/qstring.h" 39e1d74bc6SKevin Wolf #include "qapi/qobject-output-visitor.h" 40e1d74bc6SKevin Wolf #include "qapi/qapi-visit-block-core.h" 41bfb197e0SMarkus Armbruster #include "sysemu/block-backend.h" 429c17d615SPaolo Bonzini #include "sysemu/sysemu.h" 431de7afc9SPaolo Bonzini #include "qemu/notify.h" 44922a01a0SMarkus Armbruster #include "qemu/option.h" 4510817bf0SDaniel P. Berrange #include "qemu/coroutine.h" 46c13163fbSBenoît Canet #include "block/qapi.h" 471de7afc9SPaolo Bonzini #include "qemu/timer.h" 48f348b6d1SVeronia Bahaa #include "qemu/cutils.h" 49f348b6d1SVeronia Bahaa #include "qemu/id.h" 50fc01f7e7Sbellard 5171e72a19SJuan Quintela #ifdef CONFIG_BSD 527674e7bfSbellard #include <sys/ioctl.h> 5372cf2d4fSBlue Swirl #include <sys/queue.h> 54c5e97233Sblueswir1 #ifndef __DragonFly__ 557674e7bfSbellard #include <sys/disk.h> 567674e7bfSbellard #endif 57c5e97233Sblueswir1 #endif 587674e7bfSbellard 5949dc768dSaliguori #ifdef _WIN32 6049dc768dSaliguori #include <windows.h> 6149dc768dSaliguori #endif 6249dc768dSaliguori 631c9805a3SStefan Hajnoczi #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */ 641c9805a3SStefan Hajnoczi 65dc364f4cSBenoît Canet static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states = 66dc364f4cSBenoît Canet QTAILQ_HEAD_INITIALIZER(graph_bdrv_states); 67dc364f4cSBenoît Canet 682c1d04e0SMax Reitz static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states = 692c1d04e0SMax Reitz QTAILQ_HEAD_INITIALIZER(all_bdrv_states); 702c1d04e0SMax Reitz 718a22f02aSStefan Hajnoczi static QLIST_HEAD(, BlockDriver) bdrv_drivers = 728a22f02aSStefan Hajnoczi QLIST_HEAD_INITIALIZER(bdrv_drivers); 73ea2384d3Sbellard 745b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename, 755b363937SMax Reitz const char *reference, 765b363937SMax Reitz QDict *options, int flags, 77f3930ed0SKevin Wolf BlockDriverState *parent, 785b363937SMax Reitz const BdrvChildRole *child_role, 795b363937SMax Reitz Error **errp); 80f3930ed0SKevin Wolf 81eb852011SMarkus Armbruster /* If non-zero, use only whitelisted block drivers */ 82eb852011SMarkus Armbruster static int use_bdrv_whitelist; 83eb852011SMarkus Armbruster 849e0b22f4SStefan Hajnoczi #ifdef _WIN32 859e0b22f4SStefan Hajnoczi static int is_windows_drive_prefix(const char *filename) 869e0b22f4SStefan Hajnoczi { 879e0b22f4SStefan Hajnoczi return (((filename[0] >= 'a' && filename[0] <= 'z') || 889e0b22f4SStefan Hajnoczi (filename[0] >= 'A' && filename[0] <= 'Z')) && 899e0b22f4SStefan Hajnoczi filename[1] == ':'); 909e0b22f4SStefan Hajnoczi } 919e0b22f4SStefan Hajnoczi 929e0b22f4SStefan Hajnoczi int is_windows_drive(const char *filename) 939e0b22f4SStefan Hajnoczi { 949e0b22f4SStefan Hajnoczi if (is_windows_drive_prefix(filename) && 959e0b22f4SStefan Hajnoczi filename[2] == '\0') 969e0b22f4SStefan Hajnoczi return 1; 979e0b22f4SStefan Hajnoczi if (strstart(filename, "\\\\.\\", NULL) || 989e0b22f4SStefan Hajnoczi strstart(filename, "//./", NULL)) 999e0b22f4SStefan Hajnoczi return 1; 1009e0b22f4SStefan Hajnoczi return 0; 1019e0b22f4SStefan Hajnoczi } 1029e0b22f4SStefan Hajnoczi #endif 1039e0b22f4SStefan Hajnoczi 104339064d5SKevin Wolf size_t bdrv_opt_mem_align(BlockDriverState *bs) 105339064d5SKevin Wolf { 106339064d5SKevin Wolf if (!bs || !bs->drv) { 107459b4e66SDenis V. Lunev /* page size or 4k (hdd sector size) should be on the safe side */ 108459b4e66SDenis V. Lunev return MAX(4096, getpagesize()); 109339064d5SKevin Wolf } 110339064d5SKevin Wolf 111339064d5SKevin Wolf return bs->bl.opt_mem_alignment; 112339064d5SKevin Wolf } 113339064d5SKevin Wolf 1144196d2f0SDenis V. Lunev size_t bdrv_min_mem_align(BlockDriverState *bs) 1154196d2f0SDenis V. Lunev { 1164196d2f0SDenis V. Lunev if (!bs || !bs->drv) { 117459b4e66SDenis V. Lunev /* page size or 4k (hdd sector size) should be on the safe side */ 118459b4e66SDenis V. Lunev return MAX(4096, getpagesize()); 1194196d2f0SDenis V. Lunev } 1204196d2f0SDenis V. Lunev 1214196d2f0SDenis V. Lunev return bs->bl.min_mem_alignment; 1224196d2f0SDenis V. Lunev } 1234196d2f0SDenis V. Lunev 1249e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */ 1255c98415bSMax Reitz int path_has_protocol(const char *path) 1269e0b22f4SStefan Hajnoczi { 127947995c0SPaolo Bonzini const char *p; 128947995c0SPaolo Bonzini 1299e0b22f4SStefan Hajnoczi #ifdef _WIN32 1309e0b22f4SStefan Hajnoczi if (is_windows_drive(path) || 1319e0b22f4SStefan Hajnoczi is_windows_drive_prefix(path)) { 1329e0b22f4SStefan Hajnoczi return 0; 1339e0b22f4SStefan Hajnoczi } 134947995c0SPaolo Bonzini p = path + strcspn(path, ":/\\"); 135947995c0SPaolo Bonzini #else 136947995c0SPaolo Bonzini p = path + strcspn(path, ":/"); 1379e0b22f4SStefan Hajnoczi #endif 1389e0b22f4SStefan Hajnoczi 139947995c0SPaolo Bonzini return *p == ':'; 1409e0b22f4SStefan Hajnoczi } 1419e0b22f4SStefan Hajnoczi 14283f64091Sbellard int path_is_absolute(const char *path) 14383f64091Sbellard { 14421664424Sbellard #ifdef _WIN32 14521664424Sbellard /* specific case for names like: "\\.\d:" */ 146f53f4da9SPaolo Bonzini if (is_windows_drive(path) || is_windows_drive_prefix(path)) { 14721664424Sbellard return 1; 148f53f4da9SPaolo Bonzini } 149f53f4da9SPaolo Bonzini return (*path == '/' || *path == '\\'); 1503b9f94e1Sbellard #else 151f53f4da9SPaolo Bonzini return (*path == '/'); 1523b9f94e1Sbellard #endif 15383f64091Sbellard } 15483f64091Sbellard 15583f64091Sbellard /* if filename is absolute, just copy it to dest. Otherwise, build a 15683f64091Sbellard path to it by considering it is relative to base_path. URL are 15783f64091Sbellard supported. */ 15883f64091Sbellard void path_combine(char *dest, int dest_size, 15983f64091Sbellard const char *base_path, 16083f64091Sbellard const char *filename) 16183f64091Sbellard { 16283f64091Sbellard const char *p, *p1; 16383f64091Sbellard int len; 16483f64091Sbellard 16583f64091Sbellard if (dest_size <= 0) 16683f64091Sbellard return; 16783f64091Sbellard if (path_is_absolute(filename)) { 16883f64091Sbellard pstrcpy(dest, dest_size, filename); 16983f64091Sbellard } else { 1700d54a6feSMax Reitz const char *protocol_stripped = NULL; 1710d54a6feSMax Reitz 1720d54a6feSMax Reitz if (path_has_protocol(base_path)) { 1730d54a6feSMax Reitz protocol_stripped = strchr(base_path, ':'); 1740d54a6feSMax Reitz if (protocol_stripped) { 1750d54a6feSMax Reitz protocol_stripped++; 1760d54a6feSMax Reitz } 1770d54a6feSMax Reitz } 1780d54a6feSMax Reitz p = protocol_stripped ?: base_path; 1790d54a6feSMax Reitz 1803b9f94e1Sbellard p1 = strrchr(base_path, '/'); 1813b9f94e1Sbellard #ifdef _WIN32 1823b9f94e1Sbellard { 1833b9f94e1Sbellard const char *p2; 1843b9f94e1Sbellard p2 = strrchr(base_path, '\\'); 1853b9f94e1Sbellard if (!p1 || p2 > p1) 1863b9f94e1Sbellard p1 = p2; 1873b9f94e1Sbellard } 1883b9f94e1Sbellard #endif 18983f64091Sbellard if (p1) 19083f64091Sbellard p1++; 19183f64091Sbellard else 19283f64091Sbellard p1 = base_path; 19383f64091Sbellard if (p1 > p) 19483f64091Sbellard p = p1; 19583f64091Sbellard len = p - base_path; 19683f64091Sbellard if (len > dest_size - 1) 19783f64091Sbellard len = dest_size - 1; 19883f64091Sbellard memcpy(dest, base_path, len); 19983f64091Sbellard dest[len] = '\0'; 20083f64091Sbellard pstrcat(dest, dest_size, filename); 20183f64091Sbellard } 20283f64091Sbellard } 20383f64091Sbellard 20403c320d8SMax Reitz /* 20503c320d8SMax Reitz * Helper function for bdrv_parse_filename() implementations to remove optional 20603c320d8SMax Reitz * protocol prefixes (especially "file:") from a filename and for putting the 20703c320d8SMax Reitz * stripped filename into the options QDict if there is such a prefix. 20803c320d8SMax Reitz */ 20903c320d8SMax Reitz void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix, 21003c320d8SMax Reitz QDict *options) 21103c320d8SMax Reitz { 21203c320d8SMax Reitz if (strstart(filename, prefix, &filename)) { 21303c320d8SMax Reitz /* Stripping the explicit protocol prefix may result in a protocol 21403c320d8SMax Reitz * prefix being (wrongly) detected (if the filename contains a colon) */ 21503c320d8SMax Reitz if (path_has_protocol(filename)) { 21603c320d8SMax Reitz QString *fat_filename; 21703c320d8SMax Reitz 21803c320d8SMax Reitz /* This means there is some colon before the first slash; therefore, 21903c320d8SMax Reitz * this cannot be an absolute path */ 22003c320d8SMax Reitz assert(!path_is_absolute(filename)); 22103c320d8SMax Reitz 22203c320d8SMax Reitz /* And we can thus fix the protocol detection issue by prefixing it 22303c320d8SMax Reitz * by "./" */ 22403c320d8SMax Reitz fat_filename = qstring_from_str("./"); 22503c320d8SMax Reitz qstring_append(fat_filename, filename); 22603c320d8SMax Reitz 22703c320d8SMax Reitz assert(!path_has_protocol(qstring_get_str(fat_filename))); 22803c320d8SMax Reitz 22903c320d8SMax Reitz qdict_put(options, "filename", fat_filename); 23003c320d8SMax Reitz } else { 23103c320d8SMax Reitz /* If no protocol prefix was detected, we can use the shortened 23203c320d8SMax Reitz * filename as-is */ 23303c320d8SMax Reitz qdict_put_str(options, "filename", filename); 23403c320d8SMax Reitz } 23503c320d8SMax Reitz } 23603c320d8SMax Reitz } 23703c320d8SMax Reitz 23803c320d8SMax Reitz 2399c5e6594SKevin Wolf /* Returns whether the image file is opened as read-only. Note that this can 2409c5e6594SKevin Wolf * return false and writing to the image file is still not possible because the 2419c5e6594SKevin Wolf * image is inactivated. */ 24293ed524eSJeff Cody bool bdrv_is_read_only(BlockDriverState *bs) 24393ed524eSJeff Cody { 24493ed524eSJeff Cody return bs->read_only; 24593ed524eSJeff Cody } 24693ed524eSJeff Cody 24754a32bfeSKevin Wolf int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only, 24854a32bfeSKevin Wolf bool ignore_allow_rdw, Error **errp) 249fe5241bfSJeff Cody { 250e2b8247aSJeff Cody /* Do not set read_only if copy_on_read is enabled */ 251e2b8247aSJeff Cody if (bs->copy_on_read && read_only) { 252e2b8247aSJeff Cody error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled", 253e2b8247aSJeff Cody bdrv_get_device_or_node_name(bs)); 254e2b8247aSJeff Cody return -EINVAL; 255e2b8247aSJeff Cody } 256e2b8247aSJeff Cody 257d6fcdf06SJeff Cody /* Do not clear read_only if it is prohibited */ 25854a32bfeSKevin Wolf if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) && 25954a32bfeSKevin Wolf !ignore_allow_rdw) 26054a32bfeSKevin Wolf { 261d6fcdf06SJeff Cody error_setg(errp, "Node '%s' is read only", 262d6fcdf06SJeff Cody bdrv_get_device_or_node_name(bs)); 263d6fcdf06SJeff Cody return -EPERM; 264d6fcdf06SJeff Cody } 265d6fcdf06SJeff Cody 26645803a03SJeff Cody return 0; 26745803a03SJeff Cody } 26845803a03SJeff Cody 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; 284*eeae6a59SKevin Wolf 285*eeae6a59SKevin Wolf if (read_only) { 286*eeae6a59SKevin Wolf bs->open_flags &= ~BDRV_O_RDWR; 287*eeae6a59SKevin Wolf } else { 288*eeae6a59SKevin Wolf bs->open_flags |= BDRV_O_RDWR; 289*eeae6a59SKevin Wolf } 290*eeae6a59SKevin Wolf 291e2b8247aSJeff Cody return 0; 292fe5241bfSJeff Cody } 293fe5241bfSJeff Cody 2940a82855aSMax Reitz void bdrv_get_full_backing_filename_from_filename(const char *backed, 2950a82855aSMax Reitz const char *backing, 2969f07429eSMax Reitz char *dest, size_t sz, 2979f07429eSMax Reitz Error **errp) 2980a82855aSMax Reitz { 2999f07429eSMax Reitz if (backing[0] == '\0' || path_has_protocol(backing) || 3009f07429eSMax Reitz path_is_absolute(backing)) 3019f07429eSMax Reitz { 3020a82855aSMax Reitz pstrcpy(dest, sz, backing); 3039f07429eSMax Reitz } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) { 3049f07429eSMax Reitz error_setg(errp, "Cannot use relative backing file names for '%s'", 3059f07429eSMax Reitz backed); 3060a82855aSMax Reitz } else { 3070a82855aSMax Reitz path_combine(dest, sz, backed, backing); 3080a82855aSMax Reitz } 3090a82855aSMax Reitz } 3100a82855aSMax Reitz 3119f07429eSMax Reitz void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz, 3129f07429eSMax Reitz Error **errp) 313dc5a1371SPaolo Bonzini { 3149f07429eSMax Reitz char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename; 3159f07429eSMax Reitz 3169f07429eSMax Reitz bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file, 3179f07429eSMax Reitz dest, sz, errp); 318dc5a1371SPaolo Bonzini } 319dc5a1371SPaolo Bonzini 3200eb7217eSStefan Hajnoczi void bdrv_register(BlockDriver *bdrv) 3210eb7217eSStefan Hajnoczi { 3228a22f02aSStefan Hajnoczi QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list); 323ea2384d3Sbellard } 324b338082bSbellard 325e4e9986bSMarkus Armbruster BlockDriverState *bdrv_new(void) 326e4e9986bSMarkus Armbruster { 327e4e9986bSMarkus Armbruster BlockDriverState *bs; 328e4e9986bSMarkus Armbruster int i; 329e4e9986bSMarkus Armbruster 3305839e53bSMarkus Armbruster bs = g_new0(BlockDriverState, 1); 331e4654d2dSFam Zheng QLIST_INIT(&bs->dirty_bitmaps); 332fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 333fbe40ff7SFam Zheng QLIST_INIT(&bs->op_blockers[i]); 334fbe40ff7SFam Zheng } 335d616b224SStefan Hajnoczi notifier_with_return_list_init(&bs->before_write_notifiers); 3363783fa3dSPaolo Bonzini qemu_co_mutex_init(&bs->reqs_lock); 3372119882cSPaolo Bonzini qemu_mutex_init(&bs->dirty_bitmap_mutex); 3389fcb0251SFam Zheng bs->refcnt = 1; 339dcd04228SStefan Hajnoczi bs->aio_context = qemu_get_aio_context(); 340d7d512f6SPaolo Bonzini 3413ff2f67aSEvgeny Yakovlev qemu_co_queue_init(&bs->flush_queue); 3423ff2f67aSEvgeny Yakovlev 3430f12264eSKevin Wolf for (i = 0; i < bdrv_drain_all_count; i++) { 3440f12264eSKevin Wolf bdrv_drained_begin(bs); 3450f12264eSKevin Wolf } 3460f12264eSKevin Wolf 3472c1d04e0SMax Reitz QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list); 3482c1d04e0SMax Reitz 349b338082bSbellard return bs; 350b338082bSbellard } 351b338082bSbellard 35288d88798SMarc Mari static BlockDriver *bdrv_do_find_format(const char *format_name) 353ea2384d3Sbellard { 354ea2384d3Sbellard BlockDriver *drv1; 35588d88798SMarc Mari 3568a22f02aSStefan Hajnoczi QLIST_FOREACH(drv1, &bdrv_drivers, list) { 3578a22f02aSStefan Hajnoczi if (!strcmp(drv1->format_name, format_name)) { 358ea2384d3Sbellard return drv1; 359ea2384d3Sbellard } 3608a22f02aSStefan Hajnoczi } 36188d88798SMarc Mari 362ea2384d3Sbellard return NULL; 363ea2384d3Sbellard } 364ea2384d3Sbellard 36588d88798SMarc Mari BlockDriver *bdrv_find_format(const char *format_name) 36688d88798SMarc Mari { 36788d88798SMarc Mari BlockDriver *drv1; 36888d88798SMarc Mari int i; 36988d88798SMarc Mari 37088d88798SMarc Mari drv1 = bdrv_do_find_format(format_name); 37188d88798SMarc Mari if (drv1) { 37288d88798SMarc Mari return drv1; 37388d88798SMarc Mari } 37488d88798SMarc Mari 37588d88798SMarc Mari /* The driver isn't registered, maybe we need to load a module */ 37688d88798SMarc Mari for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { 37788d88798SMarc Mari if (!strcmp(block_driver_modules[i].format_name, format_name)) { 37888d88798SMarc Mari block_module_load_one(block_driver_modules[i].library_name); 37988d88798SMarc Mari break; 38088d88798SMarc Mari } 38188d88798SMarc Mari } 38288d88798SMarc Mari 38388d88798SMarc Mari return bdrv_do_find_format(format_name); 38488d88798SMarc Mari } 38588d88798SMarc Mari 386e8eb8637SKevin Wolf int bdrv_is_whitelisted(BlockDriver *drv, bool read_only) 387eb852011SMarkus Armbruster { 388b64ec4e4SFam Zheng static const char *whitelist_rw[] = { 389b64ec4e4SFam Zheng CONFIG_BDRV_RW_WHITELIST 390b64ec4e4SFam Zheng }; 391b64ec4e4SFam Zheng static const char *whitelist_ro[] = { 392b64ec4e4SFam Zheng CONFIG_BDRV_RO_WHITELIST 393eb852011SMarkus Armbruster }; 394eb852011SMarkus Armbruster const char **p; 395eb852011SMarkus Armbruster 396b64ec4e4SFam Zheng if (!whitelist_rw[0] && !whitelist_ro[0]) { 397eb852011SMarkus Armbruster return 1; /* no whitelist, anything goes */ 398b64ec4e4SFam Zheng } 399eb852011SMarkus Armbruster 400b64ec4e4SFam Zheng for (p = whitelist_rw; *p; p++) { 401eb852011SMarkus Armbruster if (!strcmp(drv->format_name, *p)) { 402eb852011SMarkus Armbruster return 1; 403eb852011SMarkus Armbruster } 404eb852011SMarkus Armbruster } 405b64ec4e4SFam Zheng if (read_only) { 406b64ec4e4SFam Zheng for (p = whitelist_ro; *p; p++) { 407b64ec4e4SFam Zheng if (!strcmp(drv->format_name, *p)) { 408b64ec4e4SFam Zheng return 1; 409b64ec4e4SFam Zheng } 410b64ec4e4SFam Zheng } 411b64ec4e4SFam Zheng } 412eb852011SMarkus Armbruster return 0; 413eb852011SMarkus Armbruster } 414eb852011SMarkus Armbruster 415e6ff69bfSDaniel P. Berrange bool bdrv_uses_whitelist(void) 416e6ff69bfSDaniel P. Berrange { 417e6ff69bfSDaniel P. Berrange return use_bdrv_whitelist; 418e6ff69bfSDaniel P. Berrange } 419e6ff69bfSDaniel P. Berrange 4205b7e1542SZhi Yong Wu typedef struct CreateCo { 4215b7e1542SZhi Yong Wu BlockDriver *drv; 4225b7e1542SZhi Yong Wu char *filename; 42383d0521aSChunyan Liu QemuOpts *opts; 4245b7e1542SZhi Yong Wu int ret; 425cc84d90fSMax Reitz Error *err; 4265b7e1542SZhi Yong Wu } CreateCo; 4275b7e1542SZhi Yong Wu 4285b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque) 4295b7e1542SZhi Yong Wu { 430cc84d90fSMax Reitz Error *local_err = NULL; 431cc84d90fSMax Reitz int ret; 432cc84d90fSMax Reitz 4335b7e1542SZhi Yong Wu CreateCo *cco = opaque; 4345b7e1542SZhi Yong Wu assert(cco->drv); 4355b7e1542SZhi Yong Wu 436efc75e2aSStefan Hajnoczi ret = cco->drv->bdrv_co_create_opts(cco->filename, cco->opts, &local_err); 437cc84d90fSMax Reitz error_propagate(&cco->err, local_err); 438cc84d90fSMax Reitz cco->ret = ret; 4395b7e1542SZhi Yong Wu } 4405b7e1542SZhi Yong Wu 4410e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename, 44283d0521aSChunyan Liu QemuOpts *opts, Error **errp) 443ea2384d3Sbellard { 4445b7e1542SZhi Yong Wu int ret; 4450e7e1989SKevin Wolf 4465b7e1542SZhi Yong Wu Coroutine *co; 4475b7e1542SZhi Yong Wu CreateCo cco = { 4485b7e1542SZhi Yong Wu .drv = drv, 4495b7e1542SZhi Yong Wu .filename = g_strdup(filename), 45083d0521aSChunyan Liu .opts = opts, 4515b7e1542SZhi Yong Wu .ret = NOT_DONE, 452cc84d90fSMax Reitz .err = NULL, 4535b7e1542SZhi Yong Wu }; 4545b7e1542SZhi Yong Wu 455efc75e2aSStefan Hajnoczi if (!drv->bdrv_co_create_opts) { 456cc84d90fSMax Reitz error_setg(errp, "Driver '%s' does not support image creation", drv->format_name); 45780168bffSLuiz Capitulino ret = -ENOTSUP; 45880168bffSLuiz Capitulino goto out; 4595b7e1542SZhi Yong Wu } 4605b7e1542SZhi Yong Wu 4615b7e1542SZhi Yong Wu if (qemu_in_coroutine()) { 4625b7e1542SZhi Yong Wu /* Fast-path if already in coroutine context */ 4635b7e1542SZhi Yong Wu bdrv_create_co_entry(&cco); 4645b7e1542SZhi Yong Wu } else { 4650b8b8753SPaolo Bonzini co = qemu_coroutine_create(bdrv_create_co_entry, &cco); 4660b8b8753SPaolo Bonzini qemu_coroutine_enter(co); 4675b7e1542SZhi Yong Wu while (cco.ret == NOT_DONE) { 468b47ec2c4SPaolo Bonzini aio_poll(qemu_get_aio_context(), true); 4695b7e1542SZhi Yong Wu } 4705b7e1542SZhi Yong Wu } 4715b7e1542SZhi Yong Wu 4725b7e1542SZhi Yong Wu ret = cco.ret; 473cc84d90fSMax Reitz if (ret < 0) { 47484d18f06SMarkus Armbruster if (cco.err) { 475cc84d90fSMax Reitz error_propagate(errp, cco.err); 476cc84d90fSMax Reitz } else { 477cc84d90fSMax Reitz error_setg_errno(errp, -ret, "Could not create image"); 478cc84d90fSMax Reitz } 479cc84d90fSMax Reitz } 4805b7e1542SZhi Yong Wu 48180168bffSLuiz Capitulino out: 48280168bffSLuiz Capitulino g_free(cco.filename); 4835b7e1542SZhi Yong Wu return ret; 484ea2384d3Sbellard } 485ea2384d3Sbellard 486c282e1fdSChunyan Liu int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp) 48784a12e66SChristoph Hellwig { 48884a12e66SChristoph Hellwig BlockDriver *drv; 489cc84d90fSMax Reitz Error *local_err = NULL; 490cc84d90fSMax Reitz int ret; 49184a12e66SChristoph Hellwig 492b65a5e12SMax Reitz drv = bdrv_find_protocol(filename, true, errp); 49384a12e66SChristoph Hellwig if (drv == NULL) { 49416905d71SStefan Hajnoczi return -ENOENT; 49584a12e66SChristoph Hellwig } 49684a12e66SChristoph Hellwig 497c282e1fdSChunyan Liu ret = bdrv_create(drv, filename, opts, &local_err); 498cc84d90fSMax Reitz error_propagate(errp, local_err); 499cc84d90fSMax Reitz return ret; 50084a12e66SChristoph Hellwig } 50184a12e66SChristoph Hellwig 502892b7de8SEkaterina Tumanova /** 503892b7de8SEkaterina Tumanova * Try to get @bs's logical and physical block size. 504892b7de8SEkaterina Tumanova * On success, store them in @bsz struct and return 0. 505892b7de8SEkaterina Tumanova * On failure return -errno. 506892b7de8SEkaterina Tumanova * @bs must not be empty. 507892b7de8SEkaterina Tumanova */ 508892b7de8SEkaterina Tumanova int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz) 509892b7de8SEkaterina Tumanova { 510892b7de8SEkaterina Tumanova BlockDriver *drv = bs->drv; 511892b7de8SEkaterina Tumanova 512892b7de8SEkaterina Tumanova if (drv && drv->bdrv_probe_blocksizes) { 513892b7de8SEkaterina Tumanova return drv->bdrv_probe_blocksizes(bs, bsz); 5145a612c00SManos Pitsidianakis } else if (drv && drv->is_filter && bs->file) { 5155a612c00SManos Pitsidianakis return bdrv_probe_blocksizes(bs->file->bs, bsz); 516892b7de8SEkaterina Tumanova } 517892b7de8SEkaterina Tumanova 518892b7de8SEkaterina Tumanova return -ENOTSUP; 519892b7de8SEkaterina Tumanova } 520892b7de8SEkaterina Tumanova 521892b7de8SEkaterina Tumanova /** 522892b7de8SEkaterina Tumanova * Try to get @bs's geometry (cyls, heads, sectors). 523892b7de8SEkaterina Tumanova * On success, store them in @geo struct and return 0. 524892b7de8SEkaterina Tumanova * On failure return -errno. 525892b7de8SEkaterina Tumanova * @bs must not be empty. 526892b7de8SEkaterina Tumanova */ 527892b7de8SEkaterina Tumanova int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo) 528892b7de8SEkaterina Tumanova { 529892b7de8SEkaterina Tumanova BlockDriver *drv = bs->drv; 530892b7de8SEkaterina Tumanova 531892b7de8SEkaterina Tumanova if (drv && drv->bdrv_probe_geometry) { 532892b7de8SEkaterina Tumanova return drv->bdrv_probe_geometry(bs, geo); 5335a612c00SManos Pitsidianakis } else if (drv && drv->is_filter && bs->file) { 5345a612c00SManos Pitsidianakis return bdrv_probe_geometry(bs->file->bs, geo); 535892b7de8SEkaterina Tumanova } 536892b7de8SEkaterina Tumanova 537892b7de8SEkaterina Tumanova return -ENOTSUP; 538892b7de8SEkaterina Tumanova } 539892b7de8SEkaterina Tumanova 540eba25057SJim Meyering /* 541eba25057SJim Meyering * Create a uniquely-named empty temporary file. 542eba25057SJim Meyering * Return 0 upon success, otherwise a negative errno value. 543eba25057SJim Meyering */ 544eba25057SJim Meyering int get_tmp_filename(char *filename, int size) 545eba25057SJim Meyering { 546d5249393Sbellard #ifdef _WIN32 5473b9f94e1Sbellard char temp_dir[MAX_PATH]; 548eba25057SJim Meyering /* GetTempFileName requires that its output buffer (4th param) 549eba25057SJim Meyering have length MAX_PATH or greater. */ 550eba25057SJim Meyering assert(size >= MAX_PATH); 551eba25057SJim Meyering return (GetTempPath(MAX_PATH, temp_dir) 552eba25057SJim Meyering && GetTempFileName(temp_dir, "qem", 0, filename) 553eba25057SJim Meyering ? 0 : -GetLastError()); 554d5249393Sbellard #else 555ea2384d3Sbellard int fd; 5567ccfb2ebSblueswir1 const char *tmpdir; 5570badc1eeSaurel32 tmpdir = getenv("TMPDIR"); 55869bef793SAmit Shah if (!tmpdir) { 55969bef793SAmit Shah tmpdir = "/var/tmp"; 56069bef793SAmit Shah } 561eba25057SJim Meyering if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) { 562eba25057SJim Meyering return -EOVERFLOW; 563ea2384d3Sbellard } 564eba25057SJim Meyering fd = mkstemp(filename); 565fe235a06SDunrong Huang if (fd < 0) { 566fe235a06SDunrong Huang return -errno; 567fe235a06SDunrong Huang } 568fe235a06SDunrong Huang if (close(fd) != 0) { 569fe235a06SDunrong Huang unlink(filename); 570eba25057SJim Meyering return -errno; 571eba25057SJim Meyering } 572eba25057SJim Meyering return 0; 573d5249393Sbellard #endif 574eba25057SJim Meyering } 575ea2384d3Sbellard 576f3a5d3f8SChristoph Hellwig /* 577f3a5d3f8SChristoph Hellwig * Detect host devices. By convention, /dev/cdrom[N] is always 578f3a5d3f8SChristoph Hellwig * recognized as a host CDROM. 579f3a5d3f8SChristoph Hellwig */ 580f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename) 581f3a5d3f8SChristoph Hellwig { 582508c7cb3SChristoph Hellwig int score_max = 0, score; 583508c7cb3SChristoph Hellwig BlockDriver *drv = NULL, *d; 584f3a5d3f8SChristoph Hellwig 5858a22f02aSStefan Hajnoczi QLIST_FOREACH(d, &bdrv_drivers, list) { 586508c7cb3SChristoph Hellwig if (d->bdrv_probe_device) { 587508c7cb3SChristoph Hellwig score = d->bdrv_probe_device(filename); 588508c7cb3SChristoph Hellwig if (score > score_max) { 589508c7cb3SChristoph Hellwig score_max = score; 590508c7cb3SChristoph Hellwig drv = d; 591f3a5d3f8SChristoph Hellwig } 592508c7cb3SChristoph Hellwig } 593f3a5d3f8SChristoph Hellwig } 594f3a5d3f8SChristoph Hellwig 595508c7cb3SChristoph Hellwig return drv; 596f3a5d3f8SChristoph Hellwig } 597f3a5d3f8SChristoph Hellwig 59888d88798SMarc Mari static BlockDriver *bdrv_do_find_protocol(const char *protocol) 59988d88798SMarc Mari { 60088d88798SMarc Mari BlockDriver *drv1; 60188d88798SMarc Mari 60288d88798SMarc Mari QLIST_FOREACH(drv1, &bdrv_drivers, list) { 60388d88798SMarc Mari if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) { 60488d88798SMarc Mari return drv1; 60588d88798SMarc Mari } 60688d88798SMarc Mari } 60788d88798SMarc Mari 60888d88798SMarc Mari return NULL; 60988d88798SMarc Mari } 61088d88798SMarc Mari 61198289620SKevin Wolf BlockDriver *bdrv_find_protocol(const char *filename, 612b65a5e12SMax Reitz bool allow_protocol_prefix, 613b65a5e12SMax Reitz Error **errp) 61484a12e66SChristoph Hellwig { 61584a12e66SChristoph Hellwig BlockDriver *drv1; 61684a12e66SChristoph Hellwig char protocol[128]; 61784a12e66SChristoph Hellwig int len; 61884a12e66SChristoph Hellwig const char *p; 61988d88798SMarc Mari int i; 62084a12e66SChristoph Hellwig 62166f82ceeSKevin Wolf /* TODO Drivers without bdrv_file_open must be specified explicitly */ 62266f82ceeSKevin Wolf 62339508e7aSChristoph Hellwig /* 62439508e7aSChristoph Hellwig * XXX(hch): we really should not let host device detection 62539508e7aSChristoph Hellwig * override an explicit protocol specification, but moving this 62639508e7aSChristoph Hellwig * later breaks access to device names with colons in them. 62739508e7aSChristoph Hellwig * Thanks to the brain-dead persistent naming schemes on udev- 62839508e7aSChristoph Hellwig * based Linux systems those actually are quite common. 62939508e7aSChristoph Hellwig */ 63084a12e66SChristoph Hellwig drv1 = find_hdev_driver(filename); 63139508e7aSChristoph Hellwig if (drv1) { 63284a12e66SChristoph Hellwig return drv1; 63384a12e66SChristoph Hellwig } 63439508e7aSChristoph Hellwig 63598289620SKevin Wolf if (!path_has_protocol(filename) || !allow_protocol_prefix) { 636ef810437SMax Reitz return &bdrv_file; 63739508e7aSChristoph Hellwig } 63898289620SKevin Wolf 6399e0b22f4SStefan Hajnoczi p = strchr(filename, ':'); 6409e0b22f4SStefan Hajnoczi assert(p != NULL); 64184a12e66SChristoph Hellwig len = p - filename; 64284a12e66SChristoph Hellwig if (len > sizeof(protocol) - 1) 64384a12e66SChristoph Hellwig len = sizeof(protocol) - 1; 64484a12e66SChristoph Hellwig memcpy(protocol, filename, len); 64584a12e66SChristoph Hellwig protocol[len] = '\0'; 64688d88798SMarc Mari 64788d88798SMarc Mari drv1 = bdrv_do_find_protocol(protocol); 64888d88798SMarc Mari if (drv1) { 64984a12e66SChristoph Hellwig return drv1; 65084a12e66SChristoph Hellwig } 65188d88798SMarc Mari 65288d88798SMarc Mari for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { 65388d88798SMarc Mari if (block_driver_modules[i].protocol_name && 65488d88798SMarc Mari !strcmp(block_driver_modules[i].protocol_name, protocol)) { 65588d88798SMarc Mari block_module_load_one(block_driver_modules[i].library_name); 65688d88798SMarc Mari break; 65788d88798SMarc Mari } 65884a12e66SChristoph Hellwig } 659b65a5e12SMax Reitz 66088d88798SMarc Mari drv1 = bdrv_do_find_protocol(protocol); 66188d88798SMarc Mari if (!drv1) { 662b65a5e12SMax Reitz error_setg(errp, "Unknown protocol '%s'", protocol); 66388d88798SMarc Mari } 66488d88798SMarc Mari return drv1; 66584a12e66SChristoph Hellwig } 66684a12e66SChristoph Hellwig 667c6684249SMarkus Armbruster /* 668c6684249SMarkus Armbruster * Guess image format by probing its contents. 669c6684249SMarkus Armbruster * This is not a good idea when your image is raw (CVE-2008-2004), but 670c6684249SMarkus Armbruster * we do it anyway for backward compatibility. 671c6684249SMarkus Armbruster * 672c6684249SMarkus Armbruster * @buf contains the image's first @buf_size bytes. 6737cddd372SKevin Wolf * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE, 6747cddd372SKevin Wolf * but can be smaller if the image file is smaller) 675c6684249SMarkus Armbruster * @filename is its filename. 676c6684249SMarkus Armbruster * 677c6684249SMarkus Armbruster * For all block drivers, call the bdrv_probe() method to get its 678c6684249SMarkus Armbruster * probing score. 679c6684249SMarkus Armbruster * Return the first block driver with the highest probing score. 680c6684249SMarkus Armbruster */ 68138f3ef57SKevin Wolf BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size, 682c6684249SMarkus Armbruster const char *filename) 683c6684249SMarkus Armbruster { 684c6684249SMarkus Armbruster int score_max = 0, score; 685c6684249SMarkus Armbruster BlockDriver *drv = NULL, *d; 686c6684249SMarkus Armbruster 687c6684249SMarkus Armbruster QLIST_FOREACH(d, &bdrv_drivers, list) { 688c6684249SMarkus Armbruster if (d->bdrv_probe) { 689c6684249SMarkus Armbruster score = d->bdrv_probe(buf, buf_size, filename); 690c6684249SMarkus Armbruster if (score > score_max) { 691c6684249SMarkus Armbruster score_max = score; 692c6684249SMarkus Armbruster drv = d; 693c6684249SMarkus Armbruster } 694c6684249SMarkus Armbruster } 695c6684249SMarkus Armbruster } 696c6684249SMarkus Armbruster 697c6684249SMarkus Armbruster return drv; 698c6684249SMarkus Armbruster } 699c6684249SMarkus Armbruster 7005696c6e3SKevin Wolf static int find_image_format(BlockBackend *file, const char *filename, 70134b5d2c6SMax Reitz BlockDriver **pdrv, Error **errp) 702ea2384d3Sbellard { 703c6684249SMarkus Armbruster BlockDriver *drv; 7047cddd372SKevin Wolf uint8_t buf[BLOCK_PROBE_BUF_SIZE]; 705f500a6d3SKevin Wolf int ret = 0; 706f8ea0b00SNicholas Bellinger 70708a00559SKevin Wolf /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ 7085696c6e3SKevin Wolf if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) { 709ef810437SMax Reitz *pdrv = &bdrv_raw; 710c98ac35dSStefan Weil return ret; 7111a396859SNicholas A. Bellinger } 712f8ea0b00SNicholas Bellinger 7135696c6e3SKevin Wolf ret = blk_pread(file, 0, buf, sizeof(buf)); 714ea2384d3Sbellard if (ret < 0) { 71534b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not read image for determining its " 71634b5d2c6SMax Reitz "format"); 717c98ac35dSStefan Weil *pdrv = NULL; 718c98ac35dSStefan Weil return ret; 719ea2384d3Sbellard } 720ea2384d3Sbellard 721c6684249SMarkus Armbruster drv = bdrv_probe_all(buf, ret, filename); 722c98ac35dSStefan Weil if (!drv) { 72334b5d2c6SMax Reitz error_setg(errp, "Could not determine image format: No compatible " 72434b5d2c6SMax Reitz "driver found"); 725c98ac35dSStefan Weil ret = -ENOENT; 726c98ac35dSStefan Weil } 727c98ac35dSStefan Weil *pdrv = drv; 728c98ac35dSStefan Weil return ret; 729ea2384d3Sbellard } 730ea2384d3Sbellard 73151762288SStefan Hajnoczi /** 73251762288SStefan Hajnoczi * Set the current 'total_sectors' value 73365a9bb25SMarkus Armbruster * Return 0 on success, -errno on error. 73451762288SStefan Hajnoczi */ 7353d9f2d2aSKevin Wolf int refresh_total_sectors(BlockDriverState *bs, int64_t hint) 73651762288SStefan Hajnoczi { 73751762288SStefan Hajnoczi BlockDriver *drv = bs->drv; 73851762288SStefan Hajnoczi 739d470ad42SMax Reitz if (!drv) { 740d470ad42SMax Reitz return -ENOMEDIUM; 741d470ad42SMax Reitz } 742d470ad42SMax Reitz 743396759adSNicholas Bellinger /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */ 744b192af8aSDimitris Aragiorgis if (bdrv_is_sg(bs)) 745396759adSNicholas Bellinger return 0; 746396759adSNicholas Bellinger 74751762288SStefan Hajnoczi /* query actual device if possible, otherwise just trust the hint */ 74851762288SStefan Hajnoczi if (drv->bdrv_getlength) { 74951762288SStefan Hajnoczi int64_t length = drv->bdrv_getlength(bs); 75051762288SStefan Hajnoczi if (length < 0) { 75151762288SStefan Hajnoczi return length; 75251762288SStefan Hajnoczi } 7537e382003SFam Zheng hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE); 75451762288SStefan Hajnoczi } 75551762288SStefan Hajnoczi 75651762288SStefan Hajnoczi bs->total_sectors = hint; 75751762288SStefan Hajnoczi return 0; 75851762288SStefan Hajnoczi } 75951762288SStefan Hajnoczi 760c3993cdcSStefan Hajnoczi /** 761cddff5baSKevin Wolf * Combines a QDict of new block driver @options with any missing options taken 762cddff5baSKevin Wolf * from @old_options, so that leaving out an option defaults to its old value. 763cddff5baSKevin Wolf */ 764cddff5baSKevin Wolf static void bdrv_join_options(BlockDriverState *bs, QDict *options, 765cddff5baSKevin Wolf QDict *old_options) 766cddff5baSKevin Wolf { 767cddff5baSKevin Wolf if (bs->drv && bs->drv->bdrv_join_options) { 768cddff5baSKevin Wolf bs->drv->bdrv_join_options(options, old_options); 769cddff5baSKevin Wolf } else { 770cddff5baSKevin Wolf qdict_join(options, old_options, false); 771cddff5baSKevin Wolf } 772cddff5baSKevin Wolf } 773cddff5baSKevin Wolf 774543770bdSAlberto Garcia static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts, 775543770bdSAlberto Garcia int open_flags, 776543770bdSAlberto Garcia Error **errp) 777543770bdSAlberto Garcia { 778543770bdSAlberto Garcia Error *local_err = NULL; 779543770bdSAlberto Garcia char *value = qemu_opt_get_del(opts, "detect-zeroes"); 780543770bdSAlberto Garcia BlockdevDetectZeroesOptions detect_zeroes = 781543770bdSAlberto Garcia qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value, 782543770bdSAlberto Garcia BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err); 783543770bdSAlberto Garcia g_free(value); 784543770bdSAlberto Garcia if (local_err) { 785543770bdSAlberto Garcia error_propagate(errp, local_err); 786543770bdSAlberto Garcia return detect_zeroes; 787543770bdSAlberto Garcia } 788543770bdSAlberto Garcia 789543770bdSAlberto Garcia if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP && 790543770bdSAlberto Garcia !(open_flags & BDRV_O_UNMAP)) 791543770bdSAlberto Garcia { 792543770bdSAlberto Garcia error_setg(errp, "setting detect-zeroes to unmap is not allowed " 793543770bdSAlberto Garcia "without setting discard operation to unmap"); 794543770bdSAlberto Garcia } 795543770bdSAlberto Garcia 796543770bdSAlberto Garcia return detect_zeroes; 797543770bdSAlberto Garcia } 798543770bdSAlberto Garcia 799cddff5baSKevin Wolf /** 8009e8f1835SPaolo Bonzini * Set open flags for a given discard mode 8019e8f1835SPaolo Bonzini * 8029e8f1835SPaolo Bonzini * Return 0 on success, -1 if the discard mode was invalid. 8039e8f1835SPaolo Bonzini */ 8049e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags) 8059e8f1835SPaolo Bonzini { 8069e8f1835SPaolo Bonzini *flags &= ~BDRV_O_UNMAP; 8079e8f1835SPaolo Bonzini 8089e8f1835SPaolo Bonzini if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) { 8099e8f1835SPaolo Bonzini /* do nothing */ 8109e8f1835SPaolo Bonzini } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) { 8119e8f1835SPaolo Bonzini *flags |= BDRV_O_UNMAP; 8129e8f1835SPaolo Bonzini } else { 8139e8f1835SPaolo Bonzini return -1; 8149e8f1835SPaolo Bonzini } 8159e8f1835SPaolo Bonzini 8169e8f1835SPaolo Bonzini return 0; 8179e8f1835SPaolo Bonzini } 8189e8f1835SPaolo Bonzini 8199e8f1835SPaolo Bonzini /** 820c3993cdcSStefan Hajnoczi * Set open flags for a given cache mode 821c3993cdcSStefan Hajnoczi * 822c3993cdcSStefan Hajnoczi * Return 0 on success, -1 if the cache mode was invalid. 823c3993cdcSStefan Hajnoczi */ 82453e8ae01SKevin Wolf int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough) 825c3993cdcSStefan Hajnoczi { 826c3993cdcSStefan Hajnoczi *flags &= ~BDRV_O_CACHE_MASK; 827c3993cdcSStefan Hajnoczi 828c3993cdcSStefan Hajnoczi if (!strcmp(mode, "off") || !strcmp(mode, "none")) { 82953e8ae01SKevin Wolf *writethrough = false; 83053e8ae01SKevin Wolf *flags |= BDRV_O_NOCACHE; 83192196b2fSStefan Hajnoczi } else if (!strcmp(mode, "directsync")) { 83253e8ae01SKevin Wolf *writethrough = true; 83392196b2fSStefan Hajnoczi *flags |= BDRV_O_NOCACHE; 834c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writeback")) { 83553e8ae01SKevin Wolf *writethrough = false; 836c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "unsafe")) { 83753e8ae01SKevin Wolf *writethrough = false; 838c3993cdcSStefan Hajnoczi *flags |= BDRV_O_NO_FLUSH; 839c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writethrough")) { 84053e8ae01SKevin Wolf *writethrough = true; 841c3993cdcSStefan Hajnoczi } else { 842c3993cdcSStefan Hajnoczi return -1; 843c3993cdcSStefan Hajnoczi } 844c3993cdcSStefan Hajnoczi 845c3993cdcSStefan Hajnoczi return 0; 846c3993cdcSStefan Hajnoczi } 847c3993cdcSStefan Hajnoczi 848b5411555SKevin Wolf static char *bdrv_child_get_parent_desc(BdrvChild *c) 849b5411555SKevin Wolf { 850b5411555SKevin Wolf BlockDriverState *parent = c->opaque; 851b5411555SKevin Wolf return g_strdup(bdrv_get_device_or_node_name(parent)); 852b5411555SKevin Wolf } 853b5411555SKevin Wolf 85420018e12SKevin Wolf static void bdrv_child_cb_drained_begin(BdrvChild *child) 85520018e12SKevin Wolf { 85620018e12SKevin Wolf BlockDriverState *bs = child->opaque; 8576cd5c9d7SKevin Wolf bdrv_do_drained_begin_quiesce(bs, NULL, false); 85820018e12SKevin Wolf } 85920018e12SKevin Wolf 86089bd0305SKevin Wolf static bool bdrv_child_cb_drained_poll(BdrvChild *child) 86189bd0305SKevin Wolf { 86289bd0305SKevin Wolf BlockDriverState *bs = child->opaque; 8636cd5c9d7SKevin Wolf return bdrv_drain_poll(bs, false, NULL, false); 86489bd0305SKevin Wolf } 86589bd0305SKevin Wolf 86620018e12SKevin Wolf static void bdrv_child_cb_drained_end(BdrvChild *child) 86720018e12SKevin Wolf { 86820018e12SKevin Wolf BlockDriverState *bs = child->opaque; 86920018e12SKevin Wolf bdrv_drained_end(bs); 87020018e12SKevin Wolf } 87120018e12SKevin Wolf 872d736f119SKevin Wolf static void bdrv_child_cb_attach(BdrvChild *child) 873d736f119SKevin Wolf { 874d736f119SKevin Wolf BlockDriverState *bs = child->opaque; 875d736f119SKevin Wolf bdrv_apply_subtree_drain(child, bs); 876d736f119SKevin Wolf } 877d736f119SKevin Wolf 878d736f119SKevin Wolf static void bdrv_child_cb_detach(BdrvChild *child) 879d736f119SKevin Wolf { 880d736f119SKevin Wolf BlockDriverState *bs = child->opaque; 881d736f119SKevin Wolf bdrv_unapply_subtree_drain(child, bs); 882d736f119SKevin Wolf } 883d736f119SKevin Wolf 88438701b6aSKevin Wolf static int bdrv_child_cb_inactivate(BdrvChild *child) 88538701b6aSKevin Wolf { 88638701b6aSKevin Wolf BlockDriverState *bs = child->opaque; 88738701b6aSKevin Wolf assert(bs->open_flags & BDRV_O_INACTIVE); 88838701b6aSKevin Wolf return 0; 88938701b6aSKevin Wolf } 89038701b6aSKevin Wolf 8910b50cc88SKevin Wolf /* 89273176beeSKevin Wolf * Returns the options and flags that a temporary snapshot should get, based on 89373176beeSKevin Wolf * the originally requested flags (the originally requested image will have 89473176beeSKevin Wolf * flags like a backing file) 895b1e6fc08SKevin Wolf */ 89673176beeSKevin Wolf static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options, 89773176beeSKevin Wolf int parent_flags, QDict *parent_options) 898b1e6fc08SKevin Wolf { 89973176beeSKevin Wolf *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY; 90073176beeSKevin Wolf 90173176beeSKevin Wolf /* For temporary files, unconditional cache=unsafe is fine */ 90273176beeSKevin Wolf qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off"); 90373176beeSKevin Wolf qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on"); 90441869044SKevin Wolf 905f87a0e29SAlberto Garcia /* Copy the read-only option from the parent */ 906f87a0e29SAlberto Garcia qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); 907f87a0e29SAlberto Garcia 90841869044SKevin Wolf /* aio=native doesn't work for cache.direct=off, so disable it for the 90941869044SKevin Wolf * temporary snapshot */ 91041869044SKevin Wolf *child_flags &= ~BDRV_O_NATIVE_AIO; 911b1e6fc08SKevin Wolf } 912b1e6fc08SKevin Wolf 913b1e6fc08SKevin Wolf /* 9148e2160e2SKevin Wolf * Returns the options and flags that bs->file should get if a protocol driver 9158e2160e2SKevin Wolf * is expected, based on the given options and flags for the parent BDS 9160b50cc88SKevin Wolf */ 9178e2160e2SKevin Wolf static void bdrv_inherited_options(int *child_flags, QDict *child_options, 9188e2160e2SKevin Wolf int parent_flags, QDict *parent_options) 9190b50cc88SKevin Wolf { 9208e2160e2SKevin Wolf int flags = parent_flags; 9218e2160e2SKevin Wolf 9220b50cc88SKevin Wolf /* Enable protocol handling, disable format probing for bs->file */ 9230b50cc88SKevin Wolf flags |= BDRV_O_PROTOCOL; 9240b50cc88SKevin Wolf 92591a097e7SKevin Wolf /* If the cache mode isn't explicitly set, inherit direct and no-flush from 92691a097e7SKevin Wolf * the parent. */ 92791a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); 92891a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); 9295a9347c6SFam Zheng qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE); 93091a097e7SKevin Wolf 931f87a0e29SAlberto Garcia /* Inherit the read-only option from the parent if it's not set */ 932f87a0e29SAlberto Garcia qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); 933f87a0e29SAlberto Garcia 9340b50cc88SKevin Wolf /* Our block drivers take care to send flushes and respect unmap policy, 93591a097e7SKevin Wolf * so we can default to enable both on lower layers regardless of the 93691a097e7SKevin Wolf * corresponding parent options. */ 937818584a4SKevin Wolf qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap"); 9380b50cc88SKevin Wolf 9390b50cc88SKevin Wolf /* Clear flags that only apply to the top layer */ 940abb06c5aSDaniel P. Berrange flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ | 941abb06c5aSDaniel P. Berrange BDRV_O_NO_IO); 9420b50cc88SKevin Wolf 9438e2160e2SKevin Wolf *child_flags = flags; 9440b50cc88SKevin Wolf } 9450b50cc88SKevin Wolf 946f3930ed0SKevin Wolf const BdrvChildRole child_file = { 9476cd5c9d7SKevin Wolf .parent_is_bds = true, 948b5411555SKevin Wolf .get_parent_desc = bdrv_child_get_parent_desc, 9498e2160e2SKevin Wolf .inherit_options = bdrv_inherited_options, 95020018e12SKevin Wolf .drained_begin = bdrv_child_cb_drained_begin, 95189bd0305SKevin Wolf .drained_poll = bdrv_child_cb_drained_poll, 95220018e12SKevin Wolf .drained_end = bdrv_child_cb_drained_end, 953d736f119SKevin Wolf .attach = bdrv_child_cb_attach, 954d736f119SKevin Wolf .detach = bdrv_child_cb_detach, 95538701b6aSKevin Wolf .inactivate = bdrv_child_cb_inactivate, 956f3930ed0SKevin Wolf }; 957f3930ed0SKevin Wolf 958f3930ed0SKevin Wolf /* 9598e2160e2SKevin Wolf * Returns the options and flags that bs->file should get if the use of formats 9608e2160e2SKevin Wolf * (and not only protocols) is permitted for it, based on the given options and 9618e2160e2SKevin Wolf * flags for the parent BDS 962f3930ed0SKevin Wolf */ 9638e2160e2SKevin Wolf static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options, 9648e2160e2SKevin Wolf int parent_flags, QDict *parent_options) 965f3930ed0SKevin Wolf { 9668e2160e2SKevin Wolf child_file.inherit_options(child_flags, child_options, 9678e2160e2SKevin Wolf parent_flags, parent_options); 9688e2160e2SKevin Wolf 969abb06c5aSDaniel P. Berrange *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO); 970f3930ed0SKevin Wolf } 971f3930ed0SKevin Wolf 972f3930ed0SKevin Wolf const BdrvChildRole child_format = { 9736cd5c9d7SKevin Wolf .parent_is_bds = true, 974b5411555SKevin Wolf .get_parent_desc = bdrv_child_get_parent_desc, 9758e2160e2SKevin Wolf .inherit_options = bdrv_inherited_fmt_options, 97620018e12SKevin Wolf .drained_begin = bdrv_child_cb_drained_begin, 97789bd0305SKevin Wolf .drained_poll = bdrv_child_cb_drained_poll, 97820018e12SKevin Wolf .drained_end = bdrv_child_cb_drained_end, 979d736f119SKevin Wolf .attach = bdrv_child_cb_attach, 980d736f119SKevin Wolf .detach = bdrv_child_cb_detach, 98138701b6aSKevin Wolf .inactivate = bdrv_child_cb_inactivate, 982f3930ed0SKevin Wolf }; 983f3930ed0SKevin Wolf 984db95dbbaSKevin Wolf static void bdrv_backing_attach(BdrvChild *c) 985db95dbbaSKevin Wolf { 986db95dbbaSKevin Wolf BlockDriverState *parent = c->opaque; 987db95dbbaSKevin Wolf BlockDriverState *backing_hd = c->bs; 988db95dbbaSKevin Wolf 989db95dbbaSKevin Wolf assert(!parent->backing_blocker); 990db95dbbaSKevin Wolf error_setg(&parent->backing_blocker, 991db95dbbaSKevin Wolf "node is used as backing hd of '%s'", 992db95dbbaSKevin Wolf bdrv_get_device_or_node_name(parent)); 993db95dbbaSKevin Wolf 994db95dbbaSKevin Wolf parent->open_flags &= ~BDRV_O_NO_BACKING; 995db95dbbaSKevin Wolf pstrcpy(parent->backing_file, sizeof(parent->backing_file), 996db95dbbaSKevin Wolf backing_hd->filename); 997db95dbbaSKevin Wolf pstrcpy(parent->backing_format, sizeof(parent->backing_format), 998db95dbbaSKevin Wolf backing_hd->drv ? backing_hd->drv->format_name : ""); 999db95dbbaSKevin Wolf 1000db95dbbaSKevin Wolf bdrv_op_block_all(backing_hd, parent->backing_blocker); 1001db95dbbaSKevin Wolf /* Otherwise we won't be able to commit or stream */ 1002db95dbbaSKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET, 1003db95dbbaSKevin Wolf parent->backing_blocker); 1004db95dbbaSKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM, 1005db95dbbaSKevin Wolf parent->backing_blocker); 1006db95dbbaSKevin Wolf /* 1007db95dbbaSKevin Wolf * We do backup in 3 ways: 1008db95dbbaSKevin Wolf * 1. drive backup 1009db95dbbaSKevin Wolf * The target bs is new opened, and the source is top BDS 1010db95dbbaSKevin Wolf * 2. blockdev backup 1011db95dbbaSKevin Wolf * Both the source and the target are top BDSes. 1012db95dbbaSKevin Wolf * 3. internal backup(used for block replication) 1013db95dbbaSKevin Wolf * Both the source and the target are backing file 1014db95dbbaSKevin Wolf * 1015db95dbbaSKevin Wolf * In case 1 and 2, neither the source nor the target is the backing file. 1016db95dbbaSKevin Wolf * In case 3, we will block the top BDS, so there is only one block job 1017db95dbbaSKevin Wolf * for the top BDS and its backing chain. 1018db95dbbaSKevin Wolf */ 1019db95dbbaSKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE, 1020db95dbbaSKevin Wolf parent->backing_blocker); 1021db95dbbaSKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET, 1022db95dbbaSKevin Wolf parent->backing_blocker); 1023d736f119SKevin Wolf 1024d736f119SKevin Wolf bdrv_child_cb_attach(c); 1025db95dbbaSKevin Wolf } 1026db95dbbaSKevin Wolf 1027db95dbbaSKevin Wolf static void bdrv_backing_detach(BdrvChild *c) 1028db95dbbaSKevin Wolf { 1029db95dbbaSKevin Wolf BlockDriverState *parent = c->opaque; 1030db95dbbaSKevin Wolf 1031db95dbbaSKevin Wolf assert(parent->backing_blocker); 1032db95dbbaSKevin Wolf bdrv_op_unblock_all(c->bs, parent->backing_blocker); 1033db95dbbaSKevin Wolf error_free(parent->backing_blocker); 1034db95dbbaSKevin Wolf parent->backing_blocker = NULL; 1035d736f119SKevin Wolf 1036d736f119SKevin Wolf bdrv_child_cb_detach(c); 1037db95dbbaSKevin Wolf } 1038db95dbbaSKevin Wolf 1039317fc44eSKevin Wolf /* 10408e2160e2SKevin Wolf * Returns the options and flags that bs->backing should get, based on the 10418e2160e2SKevin Wolf * given options and flags for the parent BDS 1042317fc44eSKevin Wolf */ 10438e2160e2SKevin Wolf static void bdrv_backing_options(int *child_flags, QDict *child_options, 10448e2160e2SKevin Wolf int parent_flags, QDict *parent_options) 1045317fc44eSKevin Wolf { 10468e2160e2SKevin Wolf int flags = parent_flags; 10478e2160e2SKevin Wolf 1048b8816a43SKevin Wolf /* The cache mode is inherited unmodified for backing files; except WCE, 1049b8816a43SKevin Wolf * which is only applied on the top level (BlockBackend) */ 105091a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); 105191a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); 10525a9347c6SFam Zheng qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE); 105391a097e7SKevin Wolf 1054317fc44eSKevin Wolf /* backing files always opened read-only */ 1055f87a0e29SAlberto Garcia qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on"); 1056f87a0e29SAlberto Garcia flags &= ~BDRV_O_COPY_ON_READ; 1057317fc44eSKevin Wolf 1058317fc44eSKevin Wolf /* snapshot=on is handled on the top layer */ 10598bfea15dSKevin Wolf flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY); 1060317fc44eSKevin Wolf 10618e2160e2SKevin Wolf *child_flags = flags; 1062317fc44eSKevin Wolf } 1063317fc44eSKevin Wolf 10646858eba0SKevin Wolf static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base, 10656858eba0SKevin Wolf const char *filename, Error **errp) 10666858eba0SKevin Wolf { 10676858eba0SKevin Wolf BlockDriverState *parent = c->opaque; 106861f09ceaSKevin Wolf int orig_flags = bdrv_get_flags(parent); 10696858eba0SKevin Wolf int ret; 10706858eba0SKevin Wolf 107161f09ceaSKevin Wolf if (!(orig_flags & BDRV_O_RDWR)) { 107261f09ceaSKevin Wolf ret = bdrv_reopen(parent, orig_flags | BDRV_O_RDWR, errp); 107361f09ceaSKevin Wolf if (ret < 0) { 107461f09ceaSKevin Wolf return ret; 107561f09ceaSKevin Wolf } 107661f09ceaSKevin Wolf } 107761f09ceaSKevin Wolf 10786858eba0SKevin Wolf ret = bdrv_change_backing_file(parent, filename, 10796858eba0SKevin Wolf base->drv ? base->drv->format_name : ""); 10806858eba0SKevin Wolf if (ret < 0) { 108164730694SKevin Wolf error_setg_errno(errp, -ret, "Could not update backing file link"); 10826858eba0SKevin Wolf } 10836858eba0SKevin Wolf 108461f09ceaSKevin Wolf if (!(orig_flags & BDRV_O_RDWR)) { 108561f09ceaSKevin Wolf bdrv_reopen(parent, orig_flags, NULL); 108661f09ceaSKevin Wolf } 108761f09ceaSKevin Wolf 10886858eba0SKevin Wolf return ret; 10896858eba0SKevin Wolf } 10906858eba0SKevin Wolf 109191ef3825SKevin Wolf const BdrvChildRole child_backing = { 10926cd5c9d7SKevin Wolf .parent_is_bds = true, 1093b5411555SKevin Wolf .get_parent_desc = bdrv_child_get_parent_desc, 1094db95dbbaSKevin Wolf .attach = bdrv_backing_attach, 1095db95dbbaSKevin Wolf .detach = bdrv_backing_detach, 10968e2160e2SKevin Wolf .inherit_options = bdrv_backing_options, 109720018e12SKevin Wolf .drained_begin = bdrv_child_cb_drained_begin, 109889bd0305SKevin Wolf .drained_poll = bdrv_child_cb_drained_poll, 109920018e12SKevin Wolf .drained_end = bdrv_child_cb_drained_end, 110038701b6aSKevin Wolf .inactivate = bdrv_child_cb_inactivate, 11016858eba0SKevin Wolf .update_filename = bdrv_backing_update_filename, 1102f3930ed0SKevin Wolf }; 1103f3930ed0SKevin Wolf 11047b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags) 11057b272452SKevin Wolf { 110661de4c68SKevin Wolf int open_flags = flags; 11077b272452SKevin Wolf 11087b272452SKevin Wolf /* 11097b272452SKevin Wolf * Clear flags that are internal to the block layer before opening the 11107b272452SKevin Wolf * image. 11117b272452SKevin Wolf */ 111220cca275SKevin Wolf open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL); 11137b272452SKevin Wolf 11147b272452SKevin Wolf /* 11157b272452SKevin Wolf * Snapshots should be writable. 11167b272452SKevin Wolf */ 11178bfea15dSKevin Wolf if (flags & BDRV_O_TEMPORARY) { 11187b272452SKevin Wolf open_flags |= BDRV_O_RDWR; 11197b272452SKevin Wolf } 11207b272452SKevin Wolf 11217b272452SKevin Wolf return open_flags; 11227b272452SKevin Wolf } 11237b272452SKevin Wolf 112491a097e7SKevin Wolf static void update_flags_from_options(int *flags, QemuOpts *opts) 112591a097e7SKevin Wolf { 112691a097e7SKevin Wolf *flags &= ~BDRV_O_CACHE_MASK; 112791a097e7SKevin Wolf 112891a097e7SKevin Wolf assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH)); 112957f9db9aSAlberto Garcia if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) { 113091a097e7SKevin Wolf *flags |= BDRV_O_NO_FLUSH; 113191a097e7SKevin Wolf } 113291a097e7SKevin Wolf 113391a097e7SKevin Wolf assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT)); 113457f9db9aSAlberto Garcia if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) { 113591a097e7SKevin Wolf *flags |= BDRV_O_NOCACHE; 113691a097e7SKevin Wolf } 1137f87a0e29SAlberto Garcia 1138f87a0e29SAlberto Garcia *flags &= ~BDRV_O_RDWR; 1139f87a0e29SAlberto Garcia 1140f87a0e29SAlberto Garcia assert(qemu_opt_find(opts, BDRV_OPT_READ_ONLY)); 114157f9db9aSAlberto Garcia if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) { 1142f87a0e29SAlberto Garcia *flags |= BDRV_O_RDWR; 1143f87a0e29SAlberto Garcia } 1144f87a0e29SAlberto Garcia 114591a097e7SKevin Wolf } 114691a097e7SKevin Wolf 114791a097e7SKevin Wolf static void update_options_from_flags(QDict *options, int flags) 114891a097e7SKevin Wolf { 114991a097e7SKevin Wolf if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) { 115046f5ac20SEric Blake qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE); 115191a097e7SKevin Wolf } 115291a097e7SKevin Wolf if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) { 115346f5ac20SEric Blake qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH, 115446f5ac20SEric Blake flags & BDRV_O_NO_FLUSH); 115591a097e7SKevin Wolf } 1156f87a0e29SAlberto Garcia if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) { 115746f5ac20SEric Blake qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR)); 1158f87a0e29SAlberto Garcia } 115991a097e7SKevin Wolf } 116091a097e7SKevin Wolf 1161636ea370SKevin Wolf static void bdrv_assign_node_name(BlockDriverState *bs, 11626913c0c2SBenoît Canet const char *node_name, 11636913c0c2SBenoît Canet Error **errp) 11646913c0c2SBenoît Canet { 116515489c76SJeff Cody char *gen_node_name = NULL; 11666913c0c2SBenoît Canet 116715489c76SJeff Cody if (!node_name) { 116815489c76SJeff Cody node_name = gen_node_name = id_generate(ID_BLOCK); 116915489c76SJeff Cody } else if (!id_wellformed(node_name)) { 117015489c76SJeff Cody /* 117115489c76SJeff Cody * Check for empty string or invalid characters, but not if it is 117215489c76SJeff Cody * generated (generated names use characters not available to the user) 117315489c76SJeff Cody */ 11749aebf3b8SKevin Wolf error_setg(errp, "Invalid node name"); 1175636ea370SKevin Wolf return; 11766913c0c2SBenoît Canet } 11776913c0c2SBenoît Canet 11780c5e94eeSBenoît Canet /* takes care of avoiding namespaces collisions */ 11797f06d47eSMarkus Armbruster if (blk_by_name(node_name)) { 11800c5e94eeSBenoît Canet error_setg(errp, "node-name=%s is conflicting with a device id", 11810c5e94eeSBenoît Canet node_name); 118215489c76SJeff Cody goto out; 11830c5e94eeSBenoît Canet } 11840c5e94eeSBenoît Canet 11856913c0c2SBenoît Canet /* takes care of avoiding duplicates node names */ 11866913c0c2SBenoît Canet if (bdrv_find_node(node_name)) { 11876913c0c2SBenoît Canet error_setg(errp, "Duplicate node name"); 118815489c76SJeff Cody goto out; 11896913c0c2SBenoît Canet } 11906913c0c2SBenoît Canet 1191824808ddSKevin Wolf /* Make sure that the node name isn't truncated */ 1192824808ddSKevin Wolf if (strlen(node_name) >= sizeof(bs->node_name)) { 1193824808ddSKevin Wolf error_setg(errp, "Node name too long"); 1194824808ddSKevin Wolf goto out; 1195824808ddSKevin Wolf } 1196824808ddSKevin Wolf 11976913c0c2SBenoît Canet /* copy node name into the bs and insert it into the graph list */ 11986913c0c2SBenoît Canet pstrcpy(bs->node_name, sizeof(bs->node_name), node_name); 11996913c0c2SBenoît Canet QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list); 120015489c76SJeff Cody out: 120115489c76SJeff Cody g_free(gen_node_name); 12026913c0c2SBenoît Canet } 12036913c0c2SBenoît Canet 120401a56501SKevin Wolf static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv, 120501a56501SKevin Wolf const char *node_name, QDict *options, 120601a56501SKevin Wolf int open_flags, Error **errp) 120701a56501SKevin Wolf { 120801a56501SKevin Wolf Error *local_err = NULL; 12090f12264eSKevin Wolf int i, ret; 121001a56501SKevin Wolf 121101a56501SKevin Wolf bdrv_assign_node_name(bs, node_name, &local_err); 121201a56501SKevin Wolf if (local_err) { 121301a56501SKevin Wolf error_propagate(errp, local_err); 121401a56501SKevin Wolf return -EINVAL; 121501a56501SKevin Wolf } 121601a56501SKevin Wolf 121701a56501SKevin Wolf bs->drv = drv; 1218680c7f96SKevin Wolf bs->read_only = !(bs->open_flags & BDRV_O_RDWR); 121901a56501SKevin Wolf bs->opaque = g_malloc0(drv->instance_size); 122001a56501SKevin Wolf 122101a56501SKevin Wolf if (drv->bdrv_file_open) { 122201a56501SKevin Wolf assert(!drv->bdrv_needs_filename || bs->filename[0]); 122301a56501SKevin Wolf ret = drv->bdrv_file_open(bs, options, open_flags, &local_err); 1224680c7f96SKevin Wolf } else if (drv->bdrv_open) { 122501a56501SKevin Wolf ret = drv->bdrv_open(bs, options, open_flags, &local_err); 1226680c7f96SKevin Wolf } else { 1227680c7f96SKevin Wolf ret = 0; 122801a56501SKevin Wolf } 122901a56501SKevin Wolf 123001a56501SKevin Wolf if (ret < 0) { 123101a56501SKevin Wolf if (local_err) { 123201a56501SKevin Wolf error_propagate(errp, local_err); 123301a56501SKevin Wolf } else if (bs->filename[0]) { 123401a56501SKevin Wolf error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename); 123501a56501SKevin Wolf } else { 123601a56501SKevin Wolf error_setg_errno(errp, -ret, "Could not open image"); 123701a56501SKevin Wolf } 1238180ca19aSManos Pitsidianakis goto open_failed; 123901a56501SKevin Wolf } 124001a56501SKevin Wolf 124101a56501SKevin Wolf ret = refresh_total_sectors(bs, bs->total_sectors); 124201a56501SKevin Wolf if (ret < 0) { 124301a56501SKevin Wolf error_setg_errno(errp, -ret, "Could not refresh total sector count"); 1244180ca19aSManos Pitsidianakis return ret; 124501a56501SKevin Wolf } 124601a56501SKevin Wolf 124701a56501SKevin Wolf bdrv_refresh_limits(bs, &local_err); 124801a56501SKevin Wolf if (local_err) { 124901a56501SKevin Wolf error_propagate(errp, local_err); 1250180ca19aSManos Pitsidianakis return -EINVAL; 125101a56501SKevin Wolf } 125201a56501SKevin Wolf 125301a56501SKevin Wolf assert(bdrv_opt_mem_align(bs) != 0); 125401a56501SKevin Wolf assert(bdrv_min_mem_align(bs) != 0); 125501a56501SKevin Wolf assert(is_power_of_2(bs->bl.request_alignment)); 125601a56501SKevin Wolf 12570f12264eSKevin Wolf for (i = 0; i < bs->quiesce_counter; i++) { 12580f12264eSKevin Wolf if (drv->bdrv_co_drain_begin) { 12590f12264eSKevin Wolf drv->bdrv_co_drain_begin(bs); 12600f12264eSKevin Wolf } 12610f12264eSKevin Wolf } 12620f12264eSKevin Wolf 126301a56501SKevin Wolf return 0; 1264180ca19aSManos Pitsidianakis open_failed: 1265180ca19aSManos Pitsidianakis bs->drv = NULL; 1266180ca19aSManos Pitsidianakis if (bs->file != NULL) { 1267180ca19aSManos Pitsidianakis bdrv_unref_child(bs, bs->file); 1268180ca19aSManos Pitsidianakis bs->file = NULL; 1269180ca19aSManos Pitsidianakis } 127001a56501SKevin Wolf g_free(bs->opaque); 127101a56501SKevin Wolf bs->opaque = NULL; 127201a56501SKevin Wolf return ret; 127301a56501SKevin Wolf } 127401a56501SKevin Wolf 1275680c7f96SKevin Wolf BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name, 1276680c7f96SKevin Wolf int flags, Error **errp) 1277680c7f96SKevin Wolf { 1278680c7f96SKevin Wolf BlockDriverState *bs; 1279680c7f96SKevin Wolf int ret; 1280680c7f96SKevin Wolf 1281680c7f96SKevin Wolf bs = bdrv_new(); 1282680c7f96SKevin Wolf bs->open_flags = flags; 1283680c7f96SKevin Wolf bs->explicit_options = qdict_new(); 1284680c7f96SKevin Wolf bs->options = qdict_new(); 1285680c7f96SKevin Wolf bs->opaque = NULL; 1286680c7f96SKevin Wolf 1287680c7f96SKevin Wolf update_options_from_flags(bs->options, flags); 1288680c7f96SKevin Wolf 1289680c7f96SKevin Wolf ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp); 1290680c7f96SKevin Wolf if (ret < 0) { 1291cb3e7f08SMarc-André Lureau qobject_unref(bs->explicit_options); 1292180ca19aSManos Pitsidianakis bs->explicit_options = NULL; 1293cb3e7f08SMarc-André Lureau qobject_unref(bs->options); 1294180ca19aSManos Pitsidianakis bs->options = NULL; 1295680c7f96SKevin Wolf bdrv_unref(bs); 1296680c7f96SKevin Wolf return NULL; 1297680c7f96SKevin Wolf } 1298680c7f96SKevin Wolf 1299680c7f96SKevin Wolf return bs; 1300680c7f96SKevin Wolf } 1301680c7f96SKevin Wolf 1302c5f3014bSKevin Wolf QemuOptsList bdrv_runtime_opts = { 130318edf289SKevin Wolf .name = "bdrv_common", 130418edf289SKevin Wolf .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head), 130518edf289SKevin Wolf .desc = { 130618edf289SKevin Wolf { 130718edf289SKevin Wolf .name = "node-name", 130818edf289SKevin Wolf .type = QEMU_OPT_STRING, 130918edf289SKevin Wolf .help = "Node name of the block device node", 131018edf289SKevin Wolf }, 131162392ebbSKevin Wolf { 131262392ebbSKevin Wolf .name = "driver", 131362392ebbSKevin Wolf .type = QEMU_OPT_STRING, 131462392ebbSKevin Wolf .help = "Block driver to use for the node", 131562392ebbSKevin Wolf }, 131691a097e7SKevin Wolf { 131791a097e7SKevin Wolf .name = BDRV_OPT_CACHE_DIRECT, 131891a097e7SKevin Wolf .type = QEMU_OPT_BOOL, 131991a097e7SKevin Wolf .help = "Bypass software writeback cache on the host", 132091a097e7SKevin Wolf }, 132191a097e7SKevin Wolf { 132291a097e7SKevin Wolf .name = BDRV_OPT_CACHE_NO_FLUSH, 132391a097e7SKevin Wolf .type = QEMU_OPT_BOOL, 132491a097e7SKevin Wolf .help = "Ignore flush requests", 132591a097e7SKevin Wolf }, 1326f87a0e29SAlberto Garcia { 1327f87a0e29SAlberto Garcia .name = BDRV_OPT_READ_ONLY, 1328f87a0e29SAlberto Garcia .type = QEMU_OPT_BOOL, 1329f87a0e29SAlberto Garcia .help = "Node is opened in read-only mode", 1330f87a0e29SAlberto Garcia }, 1331692e01a2SKevin Wolf { 1332692e01a2SKevin Wolf .name = "detect-zeroes", 1333692e01a2SKevin Wolf .type = QEMU_OPT_STRING, 1334692e01a2SKevin Wolf .help = "try to optimize zero writes (off, on, unmap)", 1335692e01a2SKevin Wolf }, 1336818584a4SKevin Wolf { 1337415bbca8SAlberto Garcia .name = BDRV_OPT_DISCARD, 1338818584a4SKevin Wolf .type = QEMU_OPT_STRING, 1339818584a4SKevin Wolf .help = "discard operation (ignore/off, unmap/on)", 1340818584a4SKevin Wolf }, 13415a9347c6SFam Zheng { 13425a9347c6SFam Zheng .name = BDRV_OPT_FORCE_SHARE, 13435a9347c6SFam Zheng .type = QEMU_OPT_BOOL, 13445a9347c6SFam Zheng .help = "always accept other writers (default: off)", 13455a9347c6SFam Zheng }, 134618edf289SKevin Wolf { /* end of list */ } 134718edf289SKevin Wolf }, 134818edf289SKevin Wolf }; 134918edf289SKevin Wolf 1350b6ce07aaSKevin Wolf /* 135157915332SKevin Wolf * Common part for opening disk images and files 1352b6ad491aSKevin Wolf * 1353b6ad491aSKevin Wolf * Removes all processed options from *options. 135457915332SKevin Wolf */ 13555696c6e3SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file, 135682dc8b41SKevin Wolf QDict *options, Error **errp) 135757915332SKevin Wolf { 135857915332SKevin Wolf int ret, open_flags; 1359035fccdfSKevin Wolf const char *filename; 136062392ebbSKevin Wolf const char *driver_name = NULL; 13616913c0c2SBenoît Canet const char *node_name = NULL; 1362818584a4SKevin Wolf const char *discard; 136318edf289SKevin Wolf QemuOpts *opts; 136462392ebbSKevin Wolf BlockDriver *drv; 136534b5d2c6SMax Reitz Error *local_err = NULL; 136657915332SKevin Wolf 13676405875cSPaolo Bonzini assert(bs->file == NULL); 1368707ff828SKevin Wolf assert(options != NULL && bs->options != options); 136957915332SKevin Wolf 137062392ebbSKevin Wolf opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 137162392ebbSKevin Wolf qemu_opts_absorb_qdict(opts, options, &local_err); 137262392ebbSKevin Wolf if (local_err) { 137362392ebbSKevin Wolf error_propagate(errp, local_err); 137462392ebbSKevin Wolf ret = -EINVAL; 137562392ebbSKevin Wolf goto fail_opts; 137662392ebbSKevin Wolf } 137762392ebbSKevin Wolf 13789b7e8691SAlberto Garcia update_flags_from_options(&bs->open_flags, opts); 13799b7e8691SAlberto Garcia 138062392ebbSKevin Wolf driver_name = qemu_opt_get(opts, "driver"); 138162392ebbSKevin Wolf drv = bdrv_find_format(driver_name); 138262392ebbSKevin Wolf assert(drv != NULL); 138362392ebbSKevin Wolf 13845a9347c6SFam Zheng bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false); 13855a9347c6SFam Zheng 13865a9347c6SFam Zheng if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) { 13875a9347c6SFam Zheng error_setg(errp, 13885a9347c6SFam Zheng BDRV_OPT_FORCE_SHARE 13895a9347c6SFam Zheng "=on can only be used with read-only images"); 13905a9347c6SFam Zheng ret = -EINVAL; 13915a9347c6SFam Zheng goto fail_opts; 13925a9347c6SFam Zheng } 13935a9347c6SFam Zheng 139445673671SKevin Wolf if (file != NULL) { 13955696c6e3SKevin Wolf filename = blk_bs(file)->filename; 139645673671SKevin Wolf } else { 1397129c7d1cSMarkus Armbruster /* 1398129c7d1cSMarkus Armbruster * Caution: while qdict_get_try_str() is fine, getting 1399129c7d1cSMarkus Armbruster * non-string types would require more care. When @options 1400129c7d1cSMarkus Armbruster * come from -blockdev or blockdev_add, its members are typed 1401129c7d1cSMarkus Armbruster * according to the QAPI schema, but when they come from 1402129c7d1cSMarkus Armbruster * -drive, they're all QString. 1403129c7d1cSMarkus Armbruster */ 140445673671SKevin Wolf filename = qdict_get_try_str(options, "filename"); 140545673671SKevin Wolf } 140645673671SKevin Wolf 14074a008240SMax Reitz if (drv->bdrv_needs_filename && (!filename || !filename[0])) { 1408765003dbSKevin Wolf error_setg(errp, "The '%s' block driver requires a file name", 1409765003dbSKevin Wolf drv->format_name); 141018edf289SKevin Wolf ret = -EINVAL; 141118edf289SKevin Wolf goto fail_opts; 141218edf289SKevin Wolf } 141318edf289SKevin Wolf 141482dc8b41SKevin Wolf trace_bdrv_open_common(bs, filename ?: "", bs->open_flags, 141582dc8b41SKevin Wolf drv->format_name); 141662392ebbSKevin Wolf 141782dc8b41SKevin Wolf bs->read_only = !(bs->open_flags & BDRV_O_RDWR); 1418b64ec4e4SFam Zheng 1419b64ec4e4SFam Zheng if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) { 14208f94a6e4SKevin Wolf error_setg(errp, 14218f94a6e4SKevin Wolf !bs->read_only && bdrv_is_whitelisted(drv, true) 14228f94a6e4SKevin Wolf ? "Driver '%s' can only be used for read-only devices" 14238f94a6e4SKevin Wolf : "Driver '%s' is not whitelisted", 14248f94a6e4SKevin Wolf drv->format_name); 142518edf289SKevin Wolf ret = -ENOTSUP; 142618edf289SKevin Wolf goto fail_opts; 1427b64ec4e4SFam Zheng } 142857915332SKevin Wolf 1429d3faa13eSPaolo Bonzini /* bdrv_new() and bdrv_close() make it so */ 1430d3faa13eSPaolo Bonzini assert(atomic_read(&bs->copy_on_read) == 0); 1431d3faa13eSPaolo Bonzini 143282dc8b41SKevin Wolf if (bs->open_flags & BDRV_O_COPY_ON_READ) { 14330ebd24e0SKevin Wolf if (!bs->read_only) { 143453fec9d3SStefan Hajnoczi bdrv_enable_copy_on_read(bs); 14350ebd24e0SKevin Wolf } else { 14360ebd24e0SKevin Wolf error_setg(errp, "Can't use copy-on-read on read-only device"); 143718edf289SKevin Wolf ret = -EINVAL; 143818edf289SKevin Wolf goto fail_opts; 14390ebd24e0SKevin Wolf } 144053fec9d3SStefan Hajnoczi } 144153fec9d3SStefan Hajnoczi 1442415bbca8SAlberto Garcia discard = qemu_opt_get(opts, BDRV_OPT_DISCARD); 1443818584a4SKevin Wolf if (discard != NULL) { 1444818584a4SKevin Wolf if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) { 1445818584a4SKevin Wolf error_setg(errp, "Invalid discard option"); 1446818584a4SKevin Wolf ret = -EINVAL; 1447818584a4SKevin Wolf goto fail_opts; 1448818584a4SKevin Wolf } 1449818584a4SKevin Wolf } 1450818584a4SKevin Wolf 1451543770bdSAlberto Garcia bs->detect_zeroes = 1452543770bdSAlberto Garcia bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err); 1453692e01a2SKevin Wolf if (local_err) { 1454692e01a2SKevin Wolf error_propagate(errp, local_err); 1455692e01a2SKevin Wolf ret = -EINVAL; 1456692e01a2SKevin Wolf goto fail_opts; 1457692e01a2SKevin Wolf } 1458692e01a2SKevin Wolf 1459c2ad1b0cSKevin Wolf if (filename != NULL) { 146057915332SKevin Wolf pstrcpy(bs->filename, sizeof(bs->filename), filename); 1461c2ad1b0cSKevin Wolf } else { 1462c2ad1b0cSKevin Wolf bs->filename[0] = '\0'; 1463c2ad1b0cSKevin Wolf } 146491af7014SMax Reitz pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename); 146557915332SKevin Wolf 146666f82ceeSKevin Wolf /* Open the image, either directly or using a protocol */ 146782dc8b41SKevin Wolf open_flags = bdrv_open_flags(bs, bs->open_flags); 146801a56501SKevin Wolf node_name = qemu_opt_get(opts, "node-name"); 146966f82ceeSKevin Wolf 147001a56501SKevin Wolf assert(!drv->bdrv_file_open || file == NULL); 147101a56501SKevin Wolf ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp); 147257915332SKevin Wolf if (ret < 0) { 147301a56501SKevin Wolf goto fail_opts; 147434b5d2c6SMax Reitz } 147518edf289SKevin Wolf 147618edf289SKevin Wolf qemu_opts_del(opts); 147757915332SKevin Wolf return 0; 147857915332SKevin Wolf 147918edf289SKevin Wolf fail_opts: 148018edf289SKevin Wolf qemu_opts_del(opts); 148157915332SKevin Wolf return ret; 148257915332SKevin Wolf } 148357915332SKevin Wolf 14845e5c4f63SKevin Wolf static QDict *parse_json_filename(const char *filename, Error **errp) 14855e5c4f63SKevin Wolf { 14865e5c4f63SKevin Wolf QObject *options_obj; 14875e5c4f63SKevin Wolf QDict *options; 14885e5c4f63SKevin Wolf int ret; 14895e5c4f63SKevin Wolf 14905e5c4f63SKevin Wolf ret = strstart(filename, "json:", &filename); 14915e5c4f63SKevin Wolf assert(ret); 14925e5c4f63SKevin Wolf 14935577fff7SMarkus Armbruster options_obj = qobject_from_json(filename, errp); 14945e5c4f63SKevin Wolf if (!options_obj) { 14955577fff7SMarkus Armbruster error_prepend(errp, "Could not parse the JSON options: "); 14965577fff7SMarkus Armbruster return NULL; 14975577fff7SMarkus Armbruster } 14985e5c4f63SKevin Wolf 14997dc847ebSMax Reitz options = qobject_to(QDict, options_obj); 1500ca6b6e1eSMarkus Armbruster if (!options) { 1501cb3e7f08SMarc-André Lureau qobject_unref(options_obj); 15025e5c4f63SKevin Wolf error_setg(errp, "Invalid JSON object given"); 15035e5c4f63SKevin Wolf return NULL; 15045e5c4f63SKevin Wolf } 15055e5c4f63SKevin Wolf 15065e5c4f63SKevin Wolf qdict_flatten(options); 15075e5c4f63SKevin Wolf 15085e5c4f63SKevin Wolf return options; 15095e5c4f63SKevin Wolf } 15105e5c4f63SKevin Wolf 1511de3b53f0SKevin Wolf static void parse_json_protocol(QDict *options, const char **pfilename, 1512de3b53f0SKevin Wolf Error **errp) 1513de3b53f0SKevin Wolf { 1514de3b53f0SKevin Wolf QDict *json_options; 1515de3b53f0SKevin Wolf Error *local_err = NULL; 1516de3b53f0SKevin Wolf 1517de3b53f0SKevin Wolf /* Parse json: pseudo-protocol */ 1518de3b53f0SKevin Wolf if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) { 1519de3b53f0SKevin Wolf return; 1520de3b53f0SKevin Wolf } 1521de3b53f0SKevin Wolf 1522de3b53f0SKevin Wolf json_options = parse_json_filename(*pfilename, &local_err); 1523de3b53f0SKevin Wolf if (local_err) { 1524de3b53f0SKevin Wolf error_propagate(errp, local_err); 1525de3b53f0SKevin Wolf return; 1526de3b53f0SKevin Wolf } 1527de3b53f0SKevin Wolf 1528de3b53f0SKevin Wolf /* Options given in the filename have lower priority than options 1529de3b53f0SKevin Wolf * specified directly */ 1530de3b53f0SKevin Wolf qdict_join(options, json_options, false); 1531cb3e7f08SMarc-André Lureau qobject_unref(json_options); 1532de3b53f0SKevin Wolf *pfilename = NULL; 1533de3b53f0SKevin Wolf } 1534de3b53f0SKevin Wolf 153557915332SKevin Wolf /* 1536f54120ffSKevin Wolf * Fills in default options for opening images and converts the legacy 1537f54120ffSKevin Wolf * filename/flags pair to option QDict entries. 153853a29513SMax Reitz * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a 153953a29513SMax Reitz * block driver has been specified explicitly. 1540f54120ffSKevin Wolf */ 1541de3b53f0SKevin Wolf static int bdrv_fill_options(QDict **options, const char *filename, 1542053e1578SMax Reitz int *flags, Error **errp) 1543f54120ffSKevin Wolf { 1544f54120ffSKevin Wolf const char *drvname; 154553a29513SMax Reitz bool protocol = *flags & BDRV_O_PROTOCOL; 1546f54120ffSKevin Wolf bool parse_filename = false; 1547053e1578SMax Reitz BlockDriver *drv = NULL; 1548f54120ffSKevin Wolf Error *local_err = NULL; 1549f54120ffSKevin Wolf 1550129c7d1cSMarkus Armbruster /* 1551129c7d1cSMarkus Armbruster * Caution: while qdict_get_try_str() is fine, getting non-string 1552129c7d1cSMarkus Armbruster * types would require more care. When @options come from 1553129c7d1cSMarkus Armbruster * -blockdev or blockdev_add, its members are typed according to 1554129c7d1cSMarkus Armbruster * the QAPI schema, but when they come from -drive, they're all 1555129c7d1cSMarkus Armbruster * QString. 1556129c7d1cSMarkus Armbruster */ 155753a29513SMax Reitz drvname = qdict_get_try_str(*options, "driver"); 1558053e1578SMax Reitz if (drvname) { 1559053e1578SMax Reitz drv = bdrv_find_format(drvname); 1560053e1578SMax Reitz if (!drv) { 1561053e1578SMax Reitz error_setg(errp, "Unknown driver '%s'", drvname); 1562053e1578SMax Reitz return -ENOENT; 1563053e1578SMax Reitz } 156453a29513SMax Reitz /* If the user has explicitly specified the driver, this choice should 156553a29513SMax Reitz * override the BDRV_O_PROTOCOL flag */ 1566053e1578SMax Reitz protocol = drv->bdrv_file_open; 156753a29513SMax Reitz } 156853a29513SMax Reitz 156953a29513SMax Reitz if (protocol) { 157053a29513SMax Reitz *flags |= BDRV_O_PROTOCOL; 157153a29513SMax Reitz } else { 157253a29513SMax Reitz *flags &= ~BDRV_O_PROTOCOL; 157353a29513SMax Reitz } 157453a29513SMax Reitz 157591a097e7SKevin Wolf /* Translate cache options from flags into options */ 157691a097e7SKevin Wolf update_options_from_flags(*options, *flags); 157791a097e7SKevin Wolf 1578f54120ffSKevin Wolf /* Fetch the file name from the options QDict if necessary */ 157917b005f1SKevin Wolf if (protocol && filename) { 1580f54120ffSKevin Wolf if (!qdict_haskey(*options, "filename")) { 158146f5ac20SEric Blake qdict_put_str(*options, "filename", filename); 1582f54120ffSKevin Wolf parse_filename = true; 1583f54120ffSKevin Wolf } else { 1584f54120ffSKevin Wolf error_setg(errp, "Can't specify 'file' and 'filename' options at " 1585f54120ffSKevin Wolf "the same time"); 1586f54120ffSKevin Wolf return -EINVAL; 1587f54120ffSKevin Wolf } 1588f54120ffSKevin Wolf } 1589f54120ffSKevin Wolf 1590f54120ffSKevin Wolf /* Find the right block driver */ 1591129c7d1cSMarkus Armbruster /* See cautionary note on accessing @options above */ 1592f54120ffSKevin Wolf filename = qdict_get_try_str(*options, "filename"); 1593f54120ffSKevin Wolf 159417b005f1SKevin Wolf if (!drvname && protocol) { 1595f54120ffSKevin Wolf if (filename) { 1596b65a5e12SMax Reitz drv = bdrv_find_protocol(filename, parse_filename, errp); 1597f54120ffSKevin Wolf if (!drv) { 1598f54120ffSKevin Wolf return -EINVAL; 1599f54120ffSKevin Wolf } 1600f54120ffSKevin Wolf 1601f54120ffSKevin Wolf drvname = drv->format_name; 160246f5ac20SEric Blake qdict_put_str(*options, "driver", drvname); 1603f54120ffSKevin Wolf } else { 1604f54120ffSKevin Wolf error_setg(errp, "Must specify either driver or file"); 1605f54120ffSKevin Wolf return -EINVAL; 1606f54120ffSKevin Wolf } 160717b005f1SKevin Wolf } 160817b005f1SKevin Wolf 160917b005f1SKevin Wolf assert(drv || !protocol); 1610f54120ffSKevin Wolf 1611f54120ffSKevin Wolf /* Driver-specific filename parsing */ 161217b005f1SKevin Wolf if (drv && drv->bdrv_parse_filename && parse_filename) { 1613f54120ffSKevin Wolf drv->bdrv_parse_filename(filename, *options, &local_err); 1614f54120ffSKevin Wolf if (local_err) { 1615f54120ffSKevin Wolf error_propagate(errp, local_err); 1616f54120ffSKevin Wolf return -EINVAL; 1617f54120ffSKevin Wolf } 1618f54120ffSKevin Wolf 1619f54120ffSKevin Wolf if (!drv->bdrv_needs_filename) { 1620f54120ffSKevin Wolf qdict_del(*options, "filename"); 1621f54120ffSKevin Wolf } 1622f54120ffSKevin Wolf } 1623f54120ffSKevin Wolf 1624f54120ffSKevin Wolf return 0; 1625f54120ffSKevin Wolf } 1626f54120ffSKevin Wolf 16273121fb45SKevin Wolf static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q, 16283121fb45SKevin Wolf uint64_t perm, uint64_t shared, 1629c1cef672SFam Zheng GSList *ignore_children, Error **errp); 1630c1cef672SFam Zheng static void bdrv_child_abort_perm_update(BdrvChild *c); 1631c1cef672SFam Zheng static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared); 1632c1cef672SFam Zheng 1633148eb13cSKevin Wolf typedef struct BlockReopenQueueEntry { 1634148eb13cSKevin Wolf bool prepared; 1635148eb13cSKevin Wolf BDRVReopenState state; 1636148eb13cSKevin Wolf QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry; 1637148eb13cSKevin Wolf } BlockReopenQueueEntry; 1638148eb13cSKevin Wolf 1639148eb13cSKevin Wolf /* 1640148eb13cSKevin Wolf * Return the flags that @bs will have after the reopens in @q have 1641148eb13cSKevin Wolf * successfully completed. If @q is NULL (or @bs is not contained in @q), 1642148eb13cSKevin Wolf * return the current flags. 1643148eb13cSKevin Wolf */ 1644148eb13cSKevin Wolf static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs) 1645148eb13cSKevin Wolf { 1646148eb13cSKevin Wolf BlockReopenQueueEntry *entry; 1647148eb13cSKevin Wolf 1648148eb13cSKevin Wolf if (q != NULL) { 1649148eb13cSKevin Wolf QSIMPLEQ_FOREACH(entry, q, entry) { 1650148eb13cSKevin Wolf if (entry->state.bs == bs) { 1651148eb13cSKevin Wolf return entry->state.flags; 1652148eb13cSKevin Wolf } 1653148eb13cSKevin Wolf } 1654148eb13cSKevin Wolf } 1655148eb13cSKevin Wolf 1656148eb13cSKevin Wolf return bs->open_flags; 1657148eb13cSKevin Wolf } 1658148eb13cSKevin Wolf 1659148eb13cSKevin Wolf /* Returns whether the image file can be written to after the reopen queue @q 1660148eb13cSKevin Wolf * has been successfully applied, or right now if @q is NULL. */ 1661cc022140SMax Reitz static bool bdrv_is_writable_after_reopen(BlockDriverState *bs, 1662cc022140SMax Reitz BlockReopenQueue *q) 1663148eb13cSKevin Wolf { 1664148eb13cSKevin Wolf int flags = bdrv_reopen_get_flags(q, bs); 1665148eb13cSKevin Wolf 1666148eb13cSKevin Wolf return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR; 1667148eb13cSKevin Wolf } 1668148eb13cSKevin Wolf 1669cc022140SMax Reitz /* 1670cc022140SMax Reitz * Return whether the BDS can be written to. This is not necessarily 1671cc022140SMax Reitz * the same as !bdrv_is_read_only(bs), as inactivated images may not 1672cc022140SMax Reitz * be written to but do not count as read-only images. 1673cc022140SMax Reitz */ 1674cc022140SMax Reitz bool bdrv_is_writable(BlockDriverState *bs) 1675cc022140SMax Reitz { 1676cc022140SMax Reitz return bdrv_is_writable_after_reopen(bs, NULL); 1677cc022140SMax Reitz } 1678cc022140SMax Reitz 1679ffd1a5a2SFam Zheng static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs, 1680e0995dc3SKevin Wolf BdrvChild *c, const BdrvChildRole *role, 1681e0995dc3SKevin Wolf BlockReopenQueue *reopen_queue, 1682ffd1a5a2SFam Zheng uint64_t parent_perm, uint64_t parent_shared, 1683ffd1a5a2SFam Zheng uint64_t *nperm, uint64_t *nshared) 1684ffd1a5a2SFam Zheng { 1685ffd1a5a2SFam Zheng if (bs->drv && bs->drv->bdrv_child_perm) { 1686e0995dc3SKevin Wolf bs->drv->bdrv_child_perm(bs, c, role, reopen_queue, 1687ffd1a5a2SFam Zheng parent_perm, parent_shared, 1688ffd1a5a2SFam Zheng nperm, nshared); 1689ffd1a5a2SFam Zheng } 1690e0995dc3SKevin Wolf /* TODO Take force_share from reopen_queue */ 1691ffd1a5a2SFam Zheng if (child_bs && child_bs->force_share) { 1692ffd1a5a2SFam Zheng *nshared = BLK_PERM_ALL; 1693ffd1a5a2SFam Zheng } 1694ffd1a5a2SFam Zheng } 1695ffd1a5a2SFam Zheng 169633a610c3SKevin Wolf /* 169733a610c3SKevin Wolf * Check whether permissions on this node can be changed in a way that 169833a610c3SKevin Wolf * @cumulative_perms and @cumulative_shared_perms are the new cumulative 169933a610c3SKevin Wolf * permissions of all its parents. This involves checking whether all necessary 170033a610c3SKevin Wolf * permission changes to child nodes can be performed. 170133a610c3SKevin Wolf * 170233a610c3SKevin Wolf * A call to this function must always be followed by a call to bdrv_set_perm() 170333a610c3SKevin Wolf * or bdrv_abort_perm_update(). 170433a610c3SKevin Wolf */ 17053121fb45SKevin Wolf static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q, 17063121fb45SKevin Wolf uint64_t cumulative_perms, 170746181129SKevin Wolf uint64_t cumulative_shared_perms, 170846181129SKevin Wolf GSList *ignore_children, Error **errp) 170933a610c3SKevin Wolf { 171033a610c3SKevin Wolf BlockDriver *drv = bs->drv; 171133a610c3SKevin Wolf BdrvChild *c; 171233a610c3SKevin Wolf int ret; 171333a610c3SKevin Wolf 171433a610c3SKevin Wolf /* Write permissions never work with read-only images */ 171533a610c3SKevin Wolf if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && 1716cc022140SMax Reitz !bdrv_is_writable_after_reopen(bs, q)) 171733a610c3SKevin Wolf { 171833a610c3SKevin Wolf error_setg(errp, "Block node is read-only"); 171933a610c3SKevin Wolf return -EPERM; 172033a610c3SKevin Wolf } 172133a610c3SKevin Wolf 172233a610c3SKevin Wolf /* Check this node */ 172333a610c3SKevin Wolf if (!drv) { 172433a610c3SKevin Wolf return 0; 172533a610c3SKevin Wolf } 172633a610c3SKevin Wolf 172733a610c3SKevin Wolf if (drv->bdrv_check_perm) { 172833a610c3SKevin Wolf return drv->bdrv_check_perm(bs, cumulative_perms, 172933a610c3SKevin Wolf cumulative_shared_perms, errp); 173033a610c3SKevin Wolf } 173133a610c3SKevin Wolf 173278e421c9SKevin Wolf /* Drivers that never have children can omit .bdrv_child_perm() */ 173333a610c3SKevin Wolf if (!drv->bdrv_child_perm) { 173478e421c9SKevin Wolf assert(QLIST_EMPTY(&bs->children)); 173533a610c3SKevin Wolf return 0; 173633a610c3SKevin Wolf } 173733a610c3SKevin Wolf 173833a610c3SKevin Wolf /* Check all children */ 173933a610c3SKevin Wolf QLIST_FOREACH(c, &bs->children, next) { 174033a610c3SKevin Wolf uint64_t cur_perm, cur_shared; 17413121fb45SKevin Wolf bdrv_child_perm(bs, c->bs, c, c->role, q, 174233a610c3SKevin Wolf cumulative_perms, cumulative_shared_perms, 174333a610c3SKevin Wolf &cur_perm, &cur_shared); 17443121fb45SKevin Wolf ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared, 17453121fb45SKevin Wolf ignore_children, errp); 174633a610c3SKevin Wolf if (ret < 0) { 174733a610c3SKevin Wolf return ret; 174833a610c3SKevin Wolf } 174933a610c3SKevin Wolf } 175033a610c3SKevin Wolf 175133a610c3SKevin Wolf return 0; 175233a610c3SKevin Wolf } 175333a610c3SKevin Wolf 175433a610c3SKevin Wolf /* 175533a610c3SKevin Wolf * Notifies drivers that after a previous bdrv_check_perm() call, the 175633a610c3SKevin Wolf * permission update is not performed and any preparations made for it (e.g. 175733a610c3SKevin Wolf * taken file locks) need to be undone. 175833a610c3SKevin Wolf * 175933a610c3SKevin Wolf * This function recursively notifies all child nodes. 176033a610c3SKevin Wolf */ 176133a610c3SKevin Wolf static void bdrv_abort_perm_update(BlockDriverState *bs) 176233a610c3SKevin Wolf { 176333a610c3SKevin Wolf BlockDriver *drv = bs->drv; 176433a610c3SKevin Wolf BdrvChild *c; 176533a610c3SKevin Wolf 176633a610c3SKevin Wolf if (!drv) { 176733a610c3SKevin Wolf return; 176833a610c3SKevin Wolf } 176933a610c3SKevin Wolf 177033a610c3SKevin Wolf if (drv->bdrv_abort_perm_update) { 177133a610c3SKevin Wolf drv->bdrv_abort_perm_update(bs); 177233a610c3SKevin Wolf } 177333a610c3SKevin Wolf 177433a610c3SKevin Wolf QLIST_FOREACH(c, &bs->children, next) { 177533a610c3SKevin Wolf bdrv_child_abort_perm_update(c); 177633a610c3SKevin Wolf } 177733a610c3SKevin Wolf } 177833a610c3SKevin Wolf 177933a610c3SKevin Wolf static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms, 178033a610c3SKevin Wolf uint64_t cumulative_shared_perms) 178133a610c3SKevin Wolf { 178233a610c3SKevin Wolf BlockDriver *drv = bs->drv; 178333a610c3SKevin Wolf BdrvChild *c; 178433a610c3SKevin Wolf 178533a610c3SKevin Wolf if (!drv) { 178633a610c3SKevin Wolf return; 178733a610c3SKevin Wolf } 178833a610c3SKevin Wolf 178933a610c3SKevin Wolf /* Update this node */ 179033a610c3SKevin Wolf if (drv->bdrv_set_perm) { 179133a610c3SKevin Wolf drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms); 179233a610c3SKevin Wolf } 179333a610c3SKevin Wolf 179478e421c9SKevin Wolf /* Drivers that never have children can omit .bdrv_child_perm() */ 179533a610c3SKevin Wolf if (!drv->bdrv_child_perm) { 179678e421c9SKevin Wolf assert(QLIST_EMPTY(&bs->children)); 179733a610c3SKevin Wolf return; 179833a610c3SKevin Wolf } 179933a610c3SKevin Wolf 180033a610c3SKevin Wolf /* Update all children */ 180133a610c3SKevin Wolf QLIST_FOREACH(c, &bs->children, next) { 180233a610c3SKevin Wolf uint64_t cur_perm, cur_shared; 1803e0995dc3SKevin Wolf bdrv_child_perm(bs, c->bs, c, c->role, NULL, 180433a610c3SKevin Wolf cumulative_perms, cumulative_shared_perms, 180533a610c3SKevin Wolf &cur_perm, &cur_shared); 180633a610c3SKevin Wolf bdrv_child_set_perm(c, cur_perm, cur_shared); 180733a610c3SKevin Wolf } 180833a610c3SKevin Wolf } 180933a610c3SKevin Wolf 181033a610c3SKevin Wolf static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm, 181133a610c3SKevin Wolf uint64_t *shared_perm) 181233a610c3SKevin Wolf { 181333a610c3SKevin Wolf BdrvChild *c; 181433a610c3SKevin Wolf uint64_t cumulative_perms = 0; 181533a610c3SKevin Wolf uint64_t cumulative_shared_perms = BLK_PERM_ALL; 181633a610c3SKevin Wolf 181733a610c3SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 181833a610c3SKevin Wolf cumulative_perms |= c->perm; 181933a610c3SKevin Wolf cumulative_shared_perms &= c->shared_perm; 182033a610c3SKevin Wolf } 182133a610c3SKevin Wolf 182233a610c3SKevin Wolf *perm = cumulative_perms; 182333a610c3SKevin Wolf *shared_perm = cumulative_shared_perms; 182433a610c3SKevin Wolf } 182533a610c3SKevin Wolf 1826d083319fSKevin Wolf static char *bdrv_child_user_desc(BdrvChild *c) 1827d083319fSKevin Wolf { 1828d083319fSKevin Wolf if (c->role->get_parent_desc) { 1829d083319fSKevin Wolf return c->role->get_parent_desc(c); 1830d083319fSKevin Wolf } 1831d083319fSKevin Wolf 1832d083319fSKevin Wolf return g_strdup("another user"); 1833d083319fSKevin Wolf } 1834d083319fSKevin Wolf 18355176196cSFam Zheng char *bdrv_perm_names(uint64_t perm) 1836d083319fSKevin Wolf { 1837d083319fSKevin Wolf struct perm_name { 1838d083319fSKevin Wolf uint64_t perm; 1839d083319fSKevin Wolf const char *name; 1840d083319fSKevin Wolf } permissions[] = { 1841d083319fSKevin Wolf { BLK_PERM_CONSISTENT_READ, "consistent read" }, 1842d083319fSKevin Wolf { BLK_PERM_WRITE, "write" }, 1843d083319fSKevin Wolf { BLK_PERM_WRITE_UNCHANGED, "write unchanged" }, 1844d083319fSKevin Wolf { BLK_PERM_RESIZE, "resize" }, 1845d083319fSKevin Wolf { BLK_PERM_GRAPH_MOD, "change children" }, 1846d083319fSKevin Wolf { 0, NULL } 1847d083319fSKevin Wolf }; 1848d083319fSKevin Wolf 1849d083319fSKevin Wolf char *result = g_strdup(""); 1850d083319fSKevin Wolf struct perm_name *p; 1851d083319fSKevin Wolf 1852d083319fSKevin Wolf for (p = permissions; p->name; p++) { 1853d083319fSKevin Wolf if (perm & p->perm) { 1854d083319fSKevin Wolf char *old = result; 1855d083319fSKevin Wolf result = g_strdup_printf("%s%s%s", old, *old ? ", " : "", p->name); 1856d083319fSKevin Wolf g_free(old); 1857d083319fSKevin Wolf } 1858d083319fSKevin Wolf } 1859d083319fSKevin Wolf 1860d083319fSKevin Wolf return result; 1861d083319fSKevin Wolf } 1862d083319fSKevin Wolf 186333a610c3SKevin Wolf /* 186433a610c3SKevin Wolf * Checks whether a new reference to @bs can be added if the new user requires 186546181129SKevin Wolf * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is 186646181129SKevin Wolf * set, the BdrvChild objects in this list are ignored in the calculations; 186746181129SKevin Wolf * this allows checking permission updates for an existing reference. 186833a610c3SKevin Wolf * 186933a610c3SKevin Wolf * Needs to be followed by a call to either bdrv_set_perm() or 187033a610c3SKevin Wolf * bdrv_abort_perm_update(). */ 18713121fb45SKevin Wolf static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q, 18723121fb45SKevin Wolf uint64_t new_used_perm, 1873d5e6f437SKevin Wolf uint64_t new_shared_perm, 187446181129SKevin Wolf GSList *ignore_children, Error **errp) 1875d5e6f437SKevin Wolf { 1876d5e6f437SKevin Wolf BdrvChild *c; 187733a610c3SKevin Wolf uint64_t cumulative_perms = new_used_perm; 187833a610c3SKevin Wolf uint64_t cumulative_shared_perms = new_shared_perm; 1879d5e6f437SKevin Wolf 1880d5e6f437SKevin Wolf /* There is no reason why anyone couldn't tolerate write_unchanged */ 1881d5e6f437SKevin Wolf assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED); 1882d5e6f437SKevin Wolf 1883d5e6f437SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 188446181129SKevin Wolf if (g_slist_find(ignore_children, c)) { 1885d5e6f437SKevin Wolf continue; 1886d5e6f437SKevin Wolf } 1887d5e6f437SKevin Wolf 1888d083319fSKevin Wolf if ((new_used_perm & c->shared_perm) != new_used_perm) { 1889d083319fSKevin Wolf char *user = bdrv_child_user_desc(c); 1890d083319fSKevin Wolf char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm); 1891d083319fSKevin Wolf error_setg(errp, "Conflicts with use by %s as '%s', which does not " 1892d083319fSKevin Wolf "allow '%s' on %s", 1893d083319fSKevin Wolf user, c->name, perm_names, bdrv_get_node_name(c->bs)); 1894d083319fSKevin Wolf g_free(user); 1895d083319fSKevin Wolf g_free(perm_names); 1896d083319fSKevin Wolf return -EPERM; 1897d5e6f437SKevin Wolf } 1898d083319fSKevin Wolf 1899d083319fSKevin Wolf if ((c->perm & new_shared_perm) != c->perm) { 1900d083319fSKevin Wolf char *user = bdrv_child_user_desc(c); 1901d083319fSKevin Wolf char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm); 1902d083319fSKevin Wolf error_setg(errp, "Conflicts with use by %s as '%s', which uses " 1903d083319fSKevin Wolf "'%s' on %s", 1904d083319fSKevin Wolf user, c->name, perm_names, bdrv_get_node_name(c->bs)); 1905d083319fSKevin Wolf g_free(user); 1906d083319fSKevin Wolf g_free(perm_names); 1907d5e6f437SKevin Wolf return -EPERM; 1908d5e6f437SKevin Wolf } 190933a610c3SKevin Wolf 191033a610c3SKevin Wolf cumulative_perms |= c->perm; 191133a610c3SKevin Wolf cumulative_shared_perms &= c->shared_perm; 1912d5e6f437SKevin Wolf } 1913d5e6f437SKevin Wolf 19143121fb45SKevin Wolf return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms, 191546181129SKevin Wolf ignore_children, errp); 191633a610c3SKevin Wolf } 191733a610c3SKevin Wolf 191833a610c3SKevin Wolf /* Needs to be followed by a call to either bdrv_child_set_perm() or 191933a610c3SKevin Wolf * bdrv_child_abort_perm_update(). */ 19203121fb45SKevin Wolf static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q, 19213121fb45SKevin Wolf uint64_t perm, uint64_t shared, 192246181129SKevin Wolf GSList *ignore_children, Error **errp) 192333a610c3SKevin Wolf { 192446181129SKevin Wolf int ret; 192546181129SKevin Wolf 192646181129SKevin Wolf ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c); 19273121fb45SKevin Wolf ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children, errp); 192846181129SKevin Wolf g_slist_free(ignore_children); 192946181129SKevin Wolf 193046181129SKevin Wolf return ret; 193133a610c3SKevin Wolf } 193233a610c3SKevin Wolf 1933c1cef672SFam Zheng static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared) 193433a610c3SKevin Wolf { 193533a610c3SKevin Wolf uint64_t cumulative_perms, cumulative_shared_perms; 193633a610c3SKevin Wolf 193733a610c3SKevin Wolf c->perm = perm; 193833a610c3SKevin Wolf c->shared_perm = shared; 193933a610c3SKevin Wolf 194033a610c3SKevin Wolf bdrv_get_cumulative_perm(c->bs, &cumulative_perms, 194133a610c3SKevin Wolf &cumulative_shared_perms); 194233a610c3SKevin Wolf bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms); 194333a610c3SKevin Wolf } 194433a610c3SKevin Wolf 1945c1cef672SFam Zheng static void bdrv_child_abort_perm_update(BdrvChild *c) 194633a610c3SKevin Wolf { 194733a610c3SKevin Wolf bdrv_abort_perm_update(c->bs); 194833a610c3SKevin Wolf } 194933a610c3SKevin Wolf 195033a610c3SKevin Wolf int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared, 195133a610c3SKevin Wolf Error **errp) 195233a610c3SKevin Wolf { 195333a610c3SKevin Wolf int ret; 195433a610c3SKevin Wolf 19553121fb45SKevin Wolf ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL, errp); 195633a610c3SKevin Wolf if (ret < 0) { 195733a610c3SKevin Wolf bdrv_child_abort_perm_update(c); 195833a610c3SKevin Wolf return ret; 195933a610c3SKevin Wolf } 196033a610c3SKevin Wolf 196133a610c3SKevin Wolf bdrv_child_set_perm(c, perm, shared); 196233a610c3SKevin Wolf 1963d5e6f437SKevin Wolf return 0; 1964d5e6f437SKevin Wolf } 1965d5e6f437SKevin Wolf 19666a1b9ee1SKevin Wolf void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c, 19676a1b9ee1SKevin Wolf const BdrvChildRole *role, 1968e0995dc3SKevin Wolf BlockReopenQueue *reopen_queue, 19696a1b9ee1SKevin Wolf uint64_t perm, uint64_t shared, 19706a1b9ee1SKevin Wolf uint64_t *nperm, uint64_t *nshared) 19716a1b9ee1SKevin Wolf { 19726a1b9ee1SKevin Wolf if (c == NULL) { 19736a1b9ee1SKevin Wolf *nperm = perm & DEFAULT_PERM_PASSTHROUGH; 19746a1b9ee1SKevin Wolf *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED; 19756a1b9ee1SKevin Wolf return; 19766a1b9ee1SKevin Wolf } 19776a1b9ee1SKevin Wolf 19786a1b9ee1SKevin Wolf *nperm = (perm & DEFAULT_PERM_PASSTHROUGH) | 19796a1b9ee1SKevin Wolf (c->perm & DEFAULT_PERM_UNCHANGED); 19806a1b9ee1SKevin Wolf *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | 19816a1b9ee1SKevin Wolf (c->shared_perm & DEFAULT_PERM_UNCHANGED); 19826a1b9ee1SKevin Wolf } 19836a1b9ee1SKevin Wolf 19846b1a044aSKevin Wolf void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c, 19856b1a044aSKevin Wolf const BdrvChildRole *role, 1986e0995dc3SKevin Wolf BlockReopenQueue *reopen_queue, 19876b1a044aSKevin Wolf uint64_t perm, uint64_t shared, 19886b1a044aSKevin Wolf uint64_t *nperm, uint64_t *nshared) 19896b1a044aSKevin Wolf { 19906b1a044aSKevin Wolf bool backing = (role == &child_backing); 19916b1a044aSKevin Wolf assert(role == &child_backing || role == &child_file); 19926b1a044aSKevin Wolf 19936b1a044aSKevin Wolf if (!backing) { 19945fbfabd3SKevin Wolf int flags = bdrv_reopen_get_flags(reopen_queue, bs); 19955fbfabd3SKevin Wolf 19966b1a044aSKevin Wolf /* Apart from the modifications below, the same permissions are 19976b1a044aSKevin Wolf * forwarded and left alone as for filters */ 1998e0995dc3SKevin Wolf bdrv_filter_default_perms(bs, c, role, reopen_queue, perm, shared, 1999e0995dc3SKevin Wolf &perm, &shared); 20006b1a044aSKevin Wolf 20016b1a044aSKevin Wolf /* Format drivers may touch metadata even if the guest doesn't write */ 2002cc022140SMax Reitz if (bdrv_is_writable_after_reopen(bs, reopen_queue)) { 20036b1a044aSKevin Wolf perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE; 20046b1a044aSKevin Wolf } 20056b1a044aSKevin Wolf 20066b1a044aSKevin Wolf /* bs->file always needs to be consistent because of the metadata. We 20076b1a044aSKevin Wolf * can never allow other users to resize or write to it. */ 20085fbfabd3SKevin Wolf if (!(flags & BDRV_O_NO_IO)) { 20096b1a044aSKevin Wolf perm |= BLK_PERM_CONSISTENT_READ; 20105fbfabd3SKevin Wolf } 20116b1a044aSKevin Wolf shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE); 20126b1a044aSKevin Wolf } else { 20136b1a044aSKevin Wolf /* We want consistent read from backing files if the parent needs it. 20146b1a044aSKevin Wolf * No other operations are performed on backing files. */ 20156b1a044aSKevin Wolf perm &= BLK_PERM_CONSISTENT_READ; 20166b1a044aSKevin Wolf 20176b1a044aSKevin Wolf /* If the parent can deal with changing data, we're okay with a 20186b1a044aSKevin Wolf * writable and resizable backing file. */ 20196b1a044aSKevin Wolf /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */ 20206b1a044aSKevin Wolf if (shared & BLK_PERM_WRITE) { 20216b1a044aSKevin Wolf shared = BLK_PERM_WRITE | BLK_PERM_RESIZE; 20226b1a044aSKevin Wolf } else { 20236b1a044aSKevin Wolf shared = 0; 20246b1a044aSKevin Wolf } 20256b1a044aSKevin Wolf 20266b1a044aSKevin Wolf shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD | 20276b1a044aSKevin Wolf BLK_PERM_WRITE_UNCHANGED; 20286b1a044aSKevin Wolf } 20296b1a044aSKevin Wolf 20309c5e6594SKevin Wolf if (bs->open_flags & BDRV_O_INACTIVE) { 20319c5e6594SKevin Wolf shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE; 20329c5e6594SKevin Wolf } 20339c5e6594SKevin Wolf 20346b1a044aSKevin Wolf *nperm = perm; 20356b1a044aSKevin Wolf *nshared = shared; 20366b1a044aSKevin Wolf } 20376b1a044aSKevin Wolf 20388ee03995SKevin Wolf static void bdrv_replace_child_noperm(BdrvChild *child, 20398ee03995SKevin Wolf BlockDriverState *new_bs) 2040e9740bc6SKevin Wolf { 2041e9740bc6SKevin Wolf BlockDriverState *old_bs = child->bs; 20420152bf40SKevin Wolf int i; 2043e9740bc6SKevin Wolf 2044bb2614e9SFam Zheng if (old_bs && new_bs) { 2045bb2614e9SFam Zheng assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs)); 2046bb2614e9SFam Zheng } 2047e9740bc6SKevin Wolf if (old_bs) { 2048d736f119SKevin Wolf /* Detach first so that the recursive drain sections coming from @child 2049d736f119SKevin Wolf * are already gone and we only end the drain sections that came from 2050d736f119SKevin Wolf * elsewhere. */ 2051d736f119SKevin Wolf if (child->role->detach) { 2052d736f119SKevin Wolf child->role->detach(child); 2053d736f119SKevin Wolf } 205436fe1331SKevin Wolf if (old_bs->quiesce_counter && child->role->drained_end) { 20550f12264eSKevin Wolf int num = old_bs->quiesce_counter; 20560f12264eSKevin Wolf if (child->role->parent_is_bds) { 20570f12264eSKevin Wolf num -= bdrv_drain_all_count; 20580f12264eSKevin Wolf } 20590f12264eSKevin Wolf assert(num >= 0); 20600f12264eSKevin Wolf for (i = 0; i < num; i++) { 206136fe1331SKevin Wolf child->role->drained_end(child); 2062e9740bc6SKevin Wolf } 20630152bf40SKevin Wolf } 206436fe1331SKevin Wolf QLIST_REMOVE(child, next_parent); 2065e9740bc6SKevin Wolf } 2066e9740bc6SKevin Wolf 2067e9740bc6SKevin Wolf child->bs = new_bs; 206836fe1331SKevin Wolf 206936fe1331SKevin Wolf if (new_bs) { 207036fe1331SKevin Wolf QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent); 207136fe1331SKevin Wolf if (new_bs->quiesce_counter && child->role->drained_begin) { 20720f12264eSKevin Wolf int num = new_bs->quiesce_counter; 20730f12264eSKevin Wolf if (child->role->parent_is_bds) { 20740f12264eSKevin Wolf num -= bdrv_drain_all_count; 20750f12264eSKevin Wolf } 20760f12264eSKevin Wolf assert(num >= 0); 20770f12264eSKevin Wolf for (i = 0; i < num; i++) { 20784be6a6d1SKevin Wolf bdrv_parent_drained_begin_single(child, true); 207936fe1331SKevin Wolf } 20800152bf40SKevin Wolf } 208133a610c3SKevin Wolf 2082d736f119SKevin Wolf /* Attach only after starting new drained sections, so that recursive 2083d736f119SKevin Wolf * drain sections coming from @child don't get an extra .drained_begin 2084d736f119SKevin Wolf * callback. */ 2085db95dbbaSKevin Wolf if (child->role->attach) { 2086db95dbbaSKevin Wolf child->role->attach(child); 2087db95dbbaSKevin Wolf } 208836fe1331SKevin Wolf } 2089e9740bc6SKevin Wolf } 2090e9740bc6SKevin Wolf 2091466787fbSKevin Wolf /* 2092466787fbSKevin Wolf * Updates @child to change its reference to point to @new_bs, including 2093466787fbSKevin Wolf * checking and applying the necessary permisson updates both to the old node 2094466787fbSKevin Wolf * and to @new_bs. 2095466787fbSKevin Wolf * 2096466787fbSKevin Wolf * NULL is passed as @new_bs for removing the reference before freeing @child. 2097466787fbSKevin Wolf * 2098466787fbSKevin Wolf * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this 2099466787fbSKevin Wolf * function uses bdrv_set_perm() to update the permissions according to the new 2100466787fbSKevin Wolf * reference that @new_bs gets. 2101466787fbSKevin Wolf */ 2102466787fbSKevin Wolf static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs) 21038ee03995SKevin Wolf { 21048ee03995SKevin Wolf BlockDriverState *old_bs = child->bs; 21058ee03995SKevin Wolf uint64_t perm, shared_perm; 21068ee03995SKevin Wolf 21078aecf1d1SKevin Wolf bdrv_replace_child_noperm(child, new_bs); 21088aecf1d1SKevin Wolf 21098ee03995SKevin Wolf if (old_bs) { 21108ee03995SKevin Wolf /* Update permissions for old node. This is guaranteed to succeed 21118ee03995SKevin Wolf * because we're just taking a parent away, so we're loosening 21128ee03995SKevin Wolf * restrictions. */ 21138ee03995SKevin Wolf bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm); 21143121fb45SKevin Wolf bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL, &error_abort); 21158ee03995SKevin Wolf bdrv_set_perm(old_bs, perm, shared_perm); 21168ee03995SKevin Wolf } 21178ee03995SKevin Wolf 21188ee03995SKevin Wolf if (new_bs) { 2119f54120ffSKevin Wolf bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm); 2120f54120ffSKevin Wolf bdrv_set_perm(new_bs, perm, shared_perm); 2121f54120ffSKevin Wolf } 2122f54120ffSKevin Wolf } 2123f54120ffSKevin Wolf 2124f21d96d0SKevin Wolf BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs, 2125260fecf1SKevin Wolf const char *child_name, 212636fe1331SKevin Wolf const BdrvChildRole *child_role, 2127d5e6f437SKevin Wolf uint64_t perm, uint64_t shared_perm, 2128d5e6f437SKevin Wolf void *opaque, Error **errp) 2129df581792SKevin Wolf { 2130d5e6f437SKevin Wolf BdrvChild *child; 2131d5e6f437SKevin Wolf int ret; 2132d5e6f437SKevin Wolf 21333121fb45SKevin Wolf ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, errp); 2134d5e6f437SKevin Wolf if (ret < 0) { 213533a610c3SKevin Wolf bdrv_abort_perm_update(child_bs); 2136d5e6f437SKevin Wolf return NULL; 2137d5e6f437SKevin Wolf } 2138d5e6f437SKevin Wolf 2139d5e6f437SKevin Wolf child = g_new(BdrvChild, 1); 2140df581792SKevin Wolf *child = (BdrvChild) { 2141e9740bc6SKevin Wolf .bs = NULL, 2142260fecf1SKevin Wolf .name = g_strdup(child_name), 2143df581792SKevin Wolf .role = child_role, 2144d5e6f437SKevin Wolf .perm = perm, 2145d5e6f437SKevin Wolf .shared_perm = shared_perm, 214636fe1331SKevin Wolf .opaque = opaque, 2147df581792SKevin Wolf }; 2148df581792SKevin Wolf 214933a610c3SKevin Wolf /* This performs the matching bdrv_set_perm() for the above check. */ 2150466787fbSKevin Wolf bdrv_replace_child(child, child_bs); 2151b4b059f6SKevin Wolf 2152b4b059f6SKevin Wolf return child; 2153df581792SKevin Wolf } 2154df581792SKevin Wolf 215598292c61SWen Congyang BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs, 2156f21d96d0SKevin Wolf BlockDriverState *child_bs, 2157f21d96d0SKevin Wolf const char *child_name, 21588b2ff529SKevin Wolf const BdrvChildRole *child_role, 21598b2ff529SKevin Wolf Error **errp) 2160f21d96d0SKevin Wolf { 2161d5e6f437SKevin Wolf BdrvChild *child; 2162f68c598bSKevin Wolf uint64_t perm, shared_perm; 2163d5e6f437SKevin Wolf 2164f68c598bSKevin Wolf bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm); 2165f68c598bSKevin Wolf 2166f68c598bSKevin Wolf assert(parent_bs->drv); 2167bb2614e9SFam Zheng assert(bdrv_get_aio_context(parent_bs) == bdrv_get_aio_context(child_bs)); 2168e0995dc3SKevin Wolf bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL, 2169f68c598bSKevin Wolf perm, shared_perm, &perm, &shared_perm); 2170f68c598bSKevin Wolf 2171d5e6f437SKevin Wolf child = bdrv_root_attach_child(child_bs, child_name, child_role, 2172f68c598bSKevin Wolf perm, shared_perm, parent_bs, errp); 2173d5e6f437SKevin Wolf if (child == NULL) { 2174d5e6f437SKevin Wolf return NULL; 2175d5e6f437SKevin Wolf } 2176d5e6f437SKevin Wolf 2177f21d96d0SKevin Wolf QLIST_INSERT_HEAD(&parent_bs->children, child, next); 2178f21d96d0SKevin Wolf return child; 2179f21d96d0SKevin Wolf } 2180f21d96d0SKevin Wolf 21813f09bfbcSKevin Wolf static void bdrv_detach_child(BdrvChild *child) 218233a60407SKevin Wolf { 2183f21d96d0SKevin Wolf if (child->next.le_prev) { 218433a60407SKevin Wolf QLIST_REMOVE(child, next); 2185f21d96d0SKevin Wolf child->next.le_prev = NULL; 2186f21d96d0SKevin Wolf } 2187e9740bc6SKevin Wolf 2188466787fbSKevin Wolf bdrv_replace_child(child, NULL); 2189e9740bc6SKevin Wolf 2190260fecf1SKevin Wolf g_free(child->name); 219133a60407SKevin Wolf g_free(child); 219233a60407SKevin Wolf } 219333a60407SKevin Wolf 2194f21d96d0SKevin Wolf void bdrv_root_unref_child(BdrvChild *child) 219533a60407SKevin Wolf { 2196779020cbSKevin Wolf BlockDriverState *child_bs; 2197779020cbSKevin Wolf 2198f21d96d0SKevin Wolf child_bs = child->bs; 2199f21d96d0SKevin Wolf bdrv_detach_child(child); 2200f21d96d0SKevin Wolf bdrv_unref(child_bs); 2201f21d96d0SKevin Wolf } 2202f21d96d0SKevin Wolf 2203f21d96d0SKevin Wolf void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child) 2204f21d96d0SKevin Wolf { 2205779020cbSKevin Wolf if (child == NULL) { 2206779020cbSKevin Wolf return; 2207779020cbSKevin Wolf } 220833a60407SKevin Wolf 220933a60407SKevin Wolf if (child->bs->inherits_from == parent) { 22104e4bf5c4SKevin Wolf BdrvChild *c; 22114e4bf5c4SKevin Wolf 22124e4bf5c4SKevin Wolf /* Remove inherits_from only when the last reference between parent and 22134e4bf5c4SKevin Wolf * child->bs goes away. */ 22144e4bf5c4SKevin Wolf QLIST_FOREACH(c, &parent->children, next) { 22154e4bf5c4SKevin Wolf if (c != child && c->bs == child->bs) { 22164e4bf5c4SKevin Wolf break; 22174e4bf5c4SKevin Wolf } 22184e4bf5c4SKevin Wolf } 22194e4bf5c4SKevin Wolf if (c == NULL) { 222033a60407SKevin Wolf child->bs->inherits_from = NULL; 222133a60407SKevin Wolf } 22224e4bf5c4SKevin Wolf } 222333a60407SKevin Wolf 2224f21d96d0SKevin Wolf bdrv_root_unref_child(child); 222533a60407SKevin Wolf } 222633a60407SKevin Wolf 22275c8cab48SKevin Wolf 22285c8cab48SKevin Wolf static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load) 22295c8cab48SKevin Wolf { 22305c8cab48SKevin Wolf BdrvChild *c; 22315c8cab48SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 22325c8cab48SKevin Wolf if (c->role->change_media) { 22335c8cab48SKevin Wolf c->role->change_media(c, load); 22345c8cab48SKevin Wolf } 22355c8cab48SKevin Wolf } 22365c8cab48SKevin Wolf } 22375c8cab48SKevin Wolf 22385db15a57SKevin Wolf /* 22395db15a57SKevin Wolf * Sets the backing file link of a BDS. A new reference is created; callers 22405db15a57SKevin Wolf * which don't need their own reference any more must call bdrv_unref(). 22415db15a57SKevin Wolf */ 224212fa4af6SKevin Wolf void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd, 224312fa4af6SKevin Wolf Error **errp) 22448d24cce1SFam Zheng { 22455db15a57SKevin Wolf if (backing_hd) { 22465db15a57SKevin Wolf bdrv_ref(backing_hd); 22475db15a57SKevin Wolf } 22488d24cce1SFam Zheng 2249760e0063SKevin Wolf if (bs->backing) { 22505db15a57SKevin Wolf bdrv_unref_child(bs, bs->backing); 2251826b6ca0SFam Zheng } 2252826b6ca0SFam Zheng 22538d24cce1SFam Zheng if (!backing_hd) { 2254760e0063SKevin Wolf bs->backing = NULL; 22558d24cce1SFam Zheng goto out; 22568d24cce1SFam Zheng } 225712fa4af6SKevin Wolf 22588b2ff529SKevin Wolf bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing, 225912fa4af6SKevin Wolf errp); 226012fa4af6SKevin Wolf if (!bs->backing) { 226112fa4af6SKevin Wolf bdrv_unref(backing_hd); 226212fa4af6SKevin Wolf } 2263826b6ca0SFam Zheng 22649e7e940cSKevin Wolf bdrv_refresh_filename(bs); 22659e7e940cSKevin Wolf 22668d24cce1SFam Zheng out: 22673baca891SKevin Wolf bdrv_refresh_limits(bs, NULL); 22688d24cce1SFam Zheng } 22698d24cce1SFam Zheng 227031ca6d07SKevin Wolf /* 227131ca6d07SKevin Wolf * Opens the backing file for a BlockDriverState if not yet open 227231ca6d07SKevin Wolf * 2273d9b7b057SKevin Wolf * bdref_key specifies the key for the image's BlockdevRef in the options QDict. 2274d9b7b057SKevin Wolf * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict 2275d9b7b057SKevin Wolf * itself, all options starting with "${bdref_key}." are considered part of the 2276d9b7b057SKevin Wolf * BlockdevRef. 2277d9b7b057SKevin Wolf * 2278d9b7b057SKevin Wolf * TODO Can this be unified with bdrv_open_image()? 227931ca6d07SKevin Wolf */ 2280d9b7b057SKevin Wolf int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options, 2281d9b7b057SKevin Wolf const char *bdref_key, Error **errp) 22829156df12SPaolo Bonzini { 22831ba4b6a5SBenoît Canet char *backing_filename = g_malloc0(PATH_MAX); 2284d9b7b057SKevin Wolf char *bdref_key_dot; 2285d9b7b057SKevin Wolf const char *reference = NULL; 2286317fc44eSKevin Wolf int ret = 0; 22878d24cce1SFam Zheng BlockDriverState *backing_hd; 2288d9b7b057SKevin Wolf QDict *options; 2289d9b7b057SKevin Wolf QDict *tmp_parent_options = NULL; 229034b5d2c6SMax Reitz Error *local_err = NULL; 22919156df12SPaolo Bonzini 2292760e0063SKevin Wolf if (bs->backing != NULL) { 22931ba4b6a5SBenoît Canet goto free_exit; 22949156df12SPaolo Bonzini } 22959156df12SPaolo Bonzini 229631ca6d07SKevin Wolf /* NULL means an empty set of options */ 2297d9b7b057SKevin Wolf if (parent_options == NULL) { 2298d9b7b057SKevin Wolf tmp_parent_options = qdict_new(); 2299d9b7b057SKevin Wolf parent_options = tmp_parent_options; 230031ca6d07SKevin Wolf } 230131ca6d07SKevin Wolf 23029156df12SPaolo Bonzini bs->open_flags &= ~BDRV_O_NO_BACKING; 2303d9b7b057SKevin Wolf 2304d9b7b057SKevin Wolf bdref_key_dot = g_strdup_printf("%s.", bdref_key); 2305d9b7b057SKevin Wolf qdict_extract_subqdict(parent_options, &options, bdref_key_dot); 2306d9b7b057SKevin Wolf g_free(bdref_key_dot); 2307d9b7b057SKevin Wolf 2308129c7d1cSMarkus Armbruster /* 2309129c7d1cSMarkus Armbruster * Caution: while qdict_get_try_str() is fine, getting non-string 2310129c7d1cSMarkus Armbruster * types would require more care. When @parent_options come from 2311129c7d1cSMarkus Armbruster * -blockdev or blockdev_add, its members are typed according to 2312129c7d1cSMarkus Armbruster * the QAPI schema, but when they come from -drive, they're all 2313129c7d1cSMarkus Armbruster * QString. 2314129c7d1cSMarkus Armbruster */ 2315d9b7b057SKevin Wolf reference = qdict_get_try_str(parent_options, bdref_key); 2316d9b7b057SKevin Wolf if (reference || qdict_haskey(options, "file.filename")) { 23171cb6f506SKevin Wolf backing_filename[0] = '\0'; 23181cb6f506SKevin Wolf } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { 2319cb3e7f08SMarc-André Lureau qobject_unref(options); 23201ba4b6a5SBenoît Canet goto free_exit; 2321dbecebddSFam Zheng } else { 23229f07429eSMax Reitz bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX, 23239f07429eSMax Reitz &local_err); 23249f07429eSMax Reitz if (local_err) { 23259f07429eSMax Reitz ret = -EINVAL; 23269f07429eSMax Reitz error_propagate(errp, local_err); 2327cb3e7f08SMarc-André Lureau qobject_unref(options); 23289f07429eSMax Reitz goto free_exit; 23299f07429eSMax Reitz } 23309156df12SPaolo Bonzini } 23319156df12SPaolo Bonzini 23328ee79e70SKevin Wolf if (!bs->drv || !bs->drv->supports_backing) { 23338ee79e70SKevin Wolf ret = -EINVAL; 23348ee79e70SKevin Wolf error_setg(errp, "Driver doesn't support backing files"); 2335cb3e7f08SMarc-André Lureau qobject_unref(options); 23368ee79e70SKevin Wolf goto free_exit; 23378ee79e70SKevin Wolf } 23388ee79e70SKevin Wolf 23396bff597bSPeter Krempa if (!reference && 23406bff597bSPeter Krempa bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) { 234146f5ac20SEric Blake qdict_put_str(options, "driver", bs->backing_format); 23429156df12SPaolo Bonzini } 23439156df12SPaolo Bonzini 23445b363937SMax Reitz backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL, 2345d9b7b057SKevin Wolf reference, options, 0, bs, &child_backing, 2346e43bfd9cSMarkus Armbruster errp); 23475b363937SMax Reitz if (!backing_hd) { 23489156df12SPaolo Bonzini bs->open_flags |= BDRV_O_NO_BACKING; 2349e43bfd9cSMarkus Armbruster error_prepend(errp, "Could not open backing file: "); 23505b363937SMax Reitz ret = -EINVAL; 23511ba4b6a5SBenoît Canet goto free_exit; 23529156df12SPaolo Bonzini } 23535ce6bfe2Ssochin.jiang bdrv_set_aio_context(backing_hd, bdrv_get_aio_context(bs)); 2354df581792SKevin Wolf 23555db15a57SKevin Wolf /* Hook up the backing file link; drop our reference, bs owns the 23565db15a57SKevin Wolf * backing_hd reference now */ 235712fa4af6SKevin Wolf bdrv_set_backing_hd(bs, backing_hd, &local_err); 23585db15a57SKevin Wolf bdrv_unref(backing_hd); 235912fa4af6SKevin Wolf if (local_err) { 23608cd1a3e4SFam Zheng error_propagate(errp, local_err); 236112fa4af6SKevin Wolf ret = -EINVAL; 236212fa4af6SKevin Wolf goto free_exit; 236312fa4af6SKevin Wolf } 2364d80ac658SPeter Feiner 2365d9b7b057SKevin Wolf qdict_del(parent_options, bdref_key); 2366d9b7b057SKevin Wolf 23671ba4b6a5SBenoît Canet free_exit: 23681ba4b6a5SBenoît Canet g_free(backing_filename); 2369cb3e7f08SMarc-André Lureau qobject_unref(tmp_parent_options); 23701ba4b6a5SBenoît Canet return ret; 23719156df12SPaolo Bonzini } 23729156df12SPaolo Bonzini 23732d6b86afSKevin Wolf static BlockDriverState * 23742d6b86afSKevin Wolf bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key, 23752d6b86afSKevin Wolf BlockDriverState *parent, const BdrvChildRole *child_role, 2376f7d9fd8cSMax Reitz bool allow_none, Error **errp) 2377da557aacSMax Reitz { 23782d6b86afSKevin Wolf BlockDriverState *bs = NULL; 2379da557aacSMax Reitz QDict *image_options; 2380da557aacSMax Reitz char *bdref_key_dot; 2381da557aacSMax Reitz const char *reference; 2382da557aacSMax Reitz 2383df581792SKevin Wolf assert(child_role != NULL); 2384f67503e5SMax Reitz 2385da557aacSMax Reitz bdref_key_dot = g_strdup_printf("%s.", bdref_key); 2386da557aacSMax Reitz qdict_extract_subqdict(options, &image_options, bdref_key_dot); 2387da557aacSMax Reitz g_free(bdref_key_dot); 2388da557aacSMax Reitz 2389129c7d1cSMarkus Armbruster /* 2390129c7d1cSMarkus Armbruster * Caution: while qdict_get_try_str() is fine, getting non-string 2391129c7d1cSMarkus Armbruster * types would require more care. When @options come from 2392129c7d1cSMarkus Armbruster * -blockdev or blockdev_add, its members are typed according to 2393129c7d1cSMarkus Armbruster * the QAPI schema, but when they come from -drive, they're all 2394129c7d1cSMarkus Armbruster * QString. 2395129c7d1cSMarkus Armbruster */ 2396da557aacSMax Reitz reference = qdict_get_try_str(options, bdref_key); 2397da557aacSMax Reitz if (!filename && !reference && !qdict_size(image_options)) { 2398b4b059f6SKevin Wolf if (!allow_none) { 2399da557aacSMax Reitz error_setg(errp, "A block device must be specified for \"%s\"", 2400da557aacSMax Reitz bdref_key); 2401da557aacSMax Reitz } 2402cb3e7f08SMarc-André Lureau qobject_unref(image_options); 2403da557aacSMax Reitz goto done; 2404da557aacSMax Reitz } 2405da557aacSMax Reitz 24065b363937SMax Reitz bs = bdrv_open_inherit(filename, reference, image_options, 0, 2407ce343771SMax Reitz parent, child_role, errp); 24085b363937SMax Reitz if (!bs) { 2409df581792SKevin Wolf goto done; 2410df581792SKevin Wolf } 2411df581792SKevin Wolf 2412da557aacSMax Reitz done: 2413da557aacSMax Reitz qdict_del(options, bdref_key); 24142d6b86afSKevin Wolf return bs; 24152d6b86afSKevin Wolf } 24162d6b86afSKevin Wolf 24172d6b86afSKevin Wolf /* 24182d6b86afSKevin Wolf * Opens a disk image whose options are given as BlockdevRef in another block 24192d6b86afSKevin Wolf * device's options. 24202d6b86afSKevin Wolf * 24212d6b86afSKevin Wolf * If allow_none is true, no image will be opened if filename is false and no 24222d6b86afSKevin Wolf * BlockdevRef is given. NULL will be returned, but errp remains unset. 24232d6b86afSKevin Wolf * 24242d6b86afSKevin Wolf * bdrev_key specifies the key for the image's BlockdevRef in the options QDict. 24252d6b86afSKevin Wolf * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict 24262d6b86afSKevin Wolf * itself, all options starting with "${bdref_key}." are considered part of the 24272d6b86afSKevin Wolf * BlockdevRef. 24282d6b86afSKevin Wolf * 24292d6b86afSKevin Wolf * The BlockdevRef will be removed from the options QDict. 24302d6b86afSKevin Wolf */ 24312d6b86afSKevin Wolf BdrvChild *bdrv_open_child(const char *filename, 24322d6b86afSKevin Wolf QDict *options, const char *bdref_key, 24332d6b86afSKevin Wolf BlockDriverState *parent, 24342d6b86afSKevin Wolf const BdrvChildRole *child_role, 24352d6b86afSKevin Wolf bool allow_none, Error **errp) 24362d6b86afSKevin Wolf { 24378b2ff529SKevin Wolf BdrvChild *c; 24382d6b86afSKevin Wolf BlockDriverState *bs; 24392d6b86afSKevin Wolf 24402d6b86afSKevin Wolf bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role, 24412d6b86afSKevin Wolf allow_none, errp); 24422d6b86afSKevin Wolf if (bs == NULL) { 24432d6b86afSKevin Wolf return NULL; 24442d6b86afSKevin Wolf } 24452d6b86afSKevin Wolf 24468b2ff529SKevin Wolf c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp); 24478b2ff529SKevin Wolf if (!c) { 24488b2ff529SKevin Wolf bdrv_unref(bs); 24498b2ff529SKevin Wolf return NULL; 24508b2ff529SKevin Wolf } 24518b2ff529SKevin Wolf 24528b2ff529SKevin Wolf return c; 2453b4b059f6SKevin Wolf } 2454b4b059f6SKevin Wolf 2455e1d74bc6SKevin Wolf /* TODO Future callers may need to specify parent/child_role in order for 2456e1d74bc6SKevin Wolf * option inheritance to work. Existing callers use it for the root node. */ 2457e1d74bc6SKevin Wolf BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp) 2458e1d74bc6SKevin Wolf { 2459e1d74bc6SKevin Wolf BlockDriverState *bs = NULL; 2460e1d74bc6SKevin Wolf Error *local_err = NULL; 2461e1d74bc6SKevin Wolf QObject *obj = NULL; 2462e1d74bc6SKevin Wolf QDict *qdict = NULL; 2463e1d74bc6SKevin Wolf const char *reference = NULL; 2464e1d74bc6SKevin Wolf Visitor *v = NULL; 2465e1d74bc6SKevin Wolf 2466e1d74bc6SKevin Wolf if (ref->type == QTYPE_QSTRING) { 2467e1d74bc6SKevin Wolf reference = ref->u.reference; 2468e1d74bc6SKevin Wolf } else { 2469e1d74bc6SKevin Wolf BlockdevOptions *options = &ref->u.definition; 2470e1d74bc6SKevin Wolf assert(ref->type == QTYPE_QDICT); 2471e1d74bc6SKevin Wolf 2472e1d74bc6SKevin Wolf v = qobject_output_visitor_new(&obj); 2473e1d74bc6SKevin Wolf visit_type_BlockdevOptions(v, NULL, &options, &local_err); 2474e1d74bc6SKevin Wolf if (local_err) { 2475e1d74bc6SKevin Wolf error_propagate(errp, local_err); 2476e1d74bc6SKevin Wolf goto fail; 2477e1d74bc6SKevin Wolf } 2478e1d74bc6SKevin Wolf visit_complete(v, &obj); 2479e1d74bc6SKevin Wolf 24807dc847ebSMax Reitz qdict = qobject_to(QDict, obj); 2481e1d74bc6SKevin Wolf qdict_flatten(qdict); 2482e1d74bc6SKevin Wolf 2483e1d74bc6SKevin Wolf /* bdrv_open_inherit() defaults to the values in bdrv_flags (for 2484e1d74bc6SKevin Wolf * compatibility with other callers) rather than what we want as the 2485e1d74bc6SKevin Wolf * real defaults. Apply the defaults here instead. */ 2486e1d74bc6SKevin Wolf qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off"); 2487e1d74bc6SKevin Wolf qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off"); 2488e1d74bc6SKevin Wolf qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off"); 2489e1d74bc6SKevin Wolf } 2490e1d74bc6SKevin Wolf 2491e1d74bc6SKevin Wolf bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, errp); 2492e1d74bc6SKevin Wolf obj = NULL; 2493e1d74bc6SKevin Wolf 2494e1d74bc6SKevin Wolf fail: 2495cb3e7f08SMarc-André Lureau qobject_unref(obj); 2496e1d74bc6SKevin Wolf visit_free(v); 2497e1d74bc6SKevin Wolf return bs; 2498e1d74bc6SKevin Wolf } 2499e1d74bc6SKevin Wolf 250066836189SMax Reitz static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs, 250166836189SMax Reitz int flags, 250266836189SMax Reitz QDict *snapshot_options, 250366836189SMax Reitz Error **errp) 2504b998875dSKevin Wolf { 2505b998875dSKevin Wolf /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */ 25061ba4b6a5SBenoît Canet char *tmp_filename = g_malloc0(PATH_MAX + 1); 2507b998875dSKevin Wolf int64_t total_size; 250883d0521aSChunyan Liu QemuOpts *opts = NULL; 2509ff6ed714SEric Blake BlockDriverState *bs_snapshot = NULL; 2510b2c2832cSKevin Wolf Error *local_err = NULL; 2511b998875dSKevin Wolf int ret; 2512b998875dSKevin Wolf 2513b998875dSKevin Wolf /* if snapshot, we create a temporary backing file and open it 2514b998875dSKevin Wolf instead of opening 'filename' directly */ 2515b998875dSKevin Wolf 2516b998875dSKevin Wolf /* Get the required size from the image */ 2517f187743aSKevin Wolf total_size = bdrv_getlength(bs); 2518f187743aSKevin Wolf if (total_size < 0) { 2519f187743aSKevin Wolf error_setg_errno(errp, -total_size, "Could not get image size"); 25201ba4b6a5SBenoît Canet goto out; 2521f187743aSKevin Wolf } 2522b998875dSKevin Wolf 2523b998875dSKevin Wolf /* Create the temporary image */ 25241ba4b6a5SBenoît Canet ret = get_tmp_filename(tmp_filename, PATH_MAX + 1); 2525b998875dSKevin Wolf if (ret < 0) { 2526b998875dSKevin Wolf error_setg_errno(errp, -ret, "Could not get temporary filename"); 25271ba4b6a5SBenoît Canet goto out; 2528b998875dSKevin Wolf } 2529b998875dSKevin Wolf 2530ef810437SMax Reitz opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0, 2531c282e1fdSChunyan Liu &error_abort); 253239101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort); 2533e43bfd9cSMarkus Armbruster ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp); 253483d0521aSChunyan Liu qemu_opts_del(opts); 2535b998875dSKevin Wolf if (ret < 0) { 2536e43bfd9cSMarkus Armbruster error_prepend(errp, "Could not create temporary overlay '%s': ", 2537e43bfd9cSMarkus Armbruster tmp_filename); 25381ba4b6a5SBenoît Canet goto out; 2539b998875dSKevin Wolf } 2540b998875dSKevin Wolf 254173176beeSKevin Wolf /* Prepare options QDict for the temporary file */ 254246f5ac20SEric Blake qdict_put_str(snapshot_options, "file.driver", "file"); 254346f5ac20SEric Blake qdict_put_str(snapshot_options, "file.filename", tmp_filename); 254446f5ac20SEric Blake qdict_put_str(snapshot_options, "driver", "qcow2"); 2545b998875dSKevin Wolf 25465b363937SMax Reitz bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp); 254773176beeSKevin Wolf snapshot_options = NULL; 25485b363937SMax Reitz if (!bs_snapshot) { 25491ba4b6a5SBenoît Canet goto out; 2550b998875dSKevin Wolf } 2551b998875dSKevin Wolf 2552ff6ed714SEric Blake /* bdrv_append() consumes a strong reference to bs_snapshot 2553ff6ed714SEric Blake * (i.e. it will call bdrv_unref() on it) even on error, so in 2554ff6ed714SEric Blake * order to be able to return one, we have to increase 2555ff6ed714SEric Blake * bs_snapshot's refcount here */ 255666836189SMax Reitz bdrv_ref(bs_snapshot); 2557b2c2832cSKevin Wolf bdrv_append(bs_snapshot, bs, &local_err); 2558b2c2832cSKevin Wolf if (local_err) { 2559b2c2832cSKevin Wolf error_propagate(errp, local_err); 2560ff6ed714SEric Blake bs_snapshot = NULL; 2561b2c2832cSKevin Wolf goto out; 2562b2c2832cSKevin Wolf } 25631ba4b6a5SBenoît Canet 25641ba4b6a5SBenoît Canet out: 2565cb3e7f08SMarc-André Lureau qobject_unref(snapshot_options); 25661ba4b6a5SBenoît Canet g_free(tmp_filename); 2567ff6ed714SEric Blake return bs_snapshot; 2568b998875dSKevin Wolf } 2569b998875dSKevin Wolf 2570da557aacSMax Reitz /* 2571b6ce07aaSKevin Wolf * Opens a disk image (raw, qcow2, vmdk, ...) 2572de9c0cecSKevin Wolf * 2573de9c0cecSKevin Wolf * options is a QDict of options to pass to the block drivers, or NULL for an 2574de9c0cecSKevin Wolf * empty set of options. The reference to the QDict belongs to the block layer 2575de9c0cecSKevin Wolf * after the call (even on failure), so if the caller intends to reuse the 2576cb3e7f08SMarc-André Lureau * dictionary, it needs to use qobject_ref() before calling bdrv_open. 2577f67503e5SMax Reitz * 2578f67503e5SMax Reitz * If *pbs is NULL, a new BDS will be created with a pointer to it stored there. 2579f67503e5SMax Reitz * If it is not NULL, the referenced BDS will be reused. 2580ddf5636dSMax Reitz * 2581ddf5636dSMax Reitz * The reference parameter may be used to specify an existing block device which 2582ddf5636dSMax Reitz * should be opened. If specified, neither options nor a filename may be given, 2583ddf5636dSMax Reitz * nor can an existing BDS be reused (that is, *pbs has to be NULL). 2584b6ce07aaSKevin Wolf */ 25855b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename, 25865b363937SMax Reitz const char *reference, 25875b363937SMax Reitz QDict *options, int flags, 2588f3930ed0SKevin Wolf BlockDriverState *parent, 25895b363937SMax Reitz const BdrvChildRole *child_role, 25905b363937SMax Reitz Error **errp) 2591ea2384d3Sbellard { 2592b6ce07aaSKevin Wolf int ret; 25935696c6e3SKevin Wolf BlockBackend *file = NULL; 25949a4f4c31SKevin Wolf BlockDriverState *bs; 2595ce343771SMax Reitz BlockDriver *drv = NULL; 25962f624b80SAlberto Garcia BdrvChild *child; 259774fe54f2SKevin Wolf const char *drvname; 25983e8c2e57SAlberto Garcia const char *backing; 259934b5d2c6SMax Reitz Error *local_err = NULL; 260073176beeSKevin Wolf QDict *snapshot_options = NULL; 2601b1e6fc08SKevin Wolf int snapshot_flags = 0; 260233e3963eSbellard 2603f3930ed0SKevin Wolf assert(!child_role || !flags); 2604f3930ed0SKevin Wolf assert(!child_role == !parent); 2605f67503e5SMax Reitz 2606ddf5636dSMax Reitz if (reference) { 2607ddf5636dSMax Reitz bool options_non_empty = options ? qdict_size(options) : false; 2608cb3e7f08SMarc-André Lureau qobject_unref(options); 2609ddf5636dSMax Reitz 2610ddf5636dSMax Reitz if (filename || options_non_empty) { 2611ddf5636dSMax Reitz error_setg(errp, "Cannot reference an existing block device with " 2612ddf5636dSMax Reitz "additional options or a new filename"); 26135b363937SMax Reitz return NULL; 2614ddf5636dSMax Reitz } 2615ddf5636dSMax Reitz 2616ddf5636dSMax Reitz bs = bdrv_lookup_bs(reference, reference, errp); 2617ddf5636dSMax Reitz if (!bs) { 26185b363937SMax Reitz return NULL; 2619ddf5636dSMax Reitz } 262076b22320SKevin Wolf 2621ddf5636dSMax Reitz bdrv_ref(bs); 26225b363937SMax Reitz return bs; 2623ddf5636dSMax Reitz } 2624ddf5636dSMax Reitz 2625e4e9986bSMarkus Armbruster bs = bdrv_new(); 2626f67503e5SMax Reitz 2627de9c0cecSKevin Wolf /* NULL means an empty set of options */ 2628de9c0cecSKevin Wolf if (options == NULL) { 2629de9c0cecSKevin Wolf options = qdict_new(); 2630de9c0cecSKevin Wolf } 2631de9c0cecSKevin Wolf 2632145f598eSKevin Wolf /* json: syntax counts as explicit options, as if in the QDict */ 2633de3b53f0SKevin Wolf parse_json_protocol(options, &filename, &local_err); 2634de3b53f0SKevin Wolf if (local_err) { 2635de3b53f0SKevin Wolf goto fail; 2636de3b53f0SKevin Wolf } 2637de3b53f0SKevin Wolf 2638145f598eSKevin Wolf bs->explicit_options = qdict_clone_shallow(options); 2639145f598eSKevin Wolf 2640f3930ed0SKevin Wolf if (child_role) { 2641bddcec37SKevin Wolf bs->inherits_from = parent; 26428e2160e2SKevin Wolf child_role->inherit_options(&flags, options, 26438e2160e2SKevin Wolf parent->open_flags, parent->options); 2644f3930ed0SKevin Wolf } 2645f3930ed0SKevin Wolf 2646de3b53f0SKevin Wolf ret = bdrv_fill_options(&options, filename, &flags, &local_err); 2647462f5bcfSKevin Wolf if (local_err) { 2648462f5bcfSKevin Wolf goto fail; 2649462f5bcfSKevin Wolf } 2650462f5bcfSKevin Wolf 2651129c7d1cSMarkus Armbruster /* 2652129c7d1cSMarkus Armbruster * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags. 2653129c7d1cSMarkus Armbruster * Caution: getting a boolean member of @options requires care. 2654129c7d1cSMarkus Armbruster * When @options come from -blockdev or blockdev_add, members are 2655129c7d1cSMarkus Armbruster * typed according to the QAPI schema, but when they come from 2656129c7d1cSMarkus Armbruster * -drive, they're all QString. 2657129c7d1cSMarkus Armbruster */ 2658f87a0e29SAlberto Garcia if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") && 2659f87a0e29SAlberto Garcia !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) { 2660f87a0e29SAlberto Garcia flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR); 2661f87a0e29SAlberto Garcia } else { 2662f87a0e29SAlberto Garcia flags &= ~BDRV_O_RDWR; 266314499ea5SAlberto Garcia } 266414499ea5SAlberto Garcia 266514499ea5SAlberto Garcia if (flags & BDRV_O_SNAPSHOT) { 266614499ea5SAlberto Garcia snapshot_options = qdict_new(); 266714499ea5SAlberto Garcia bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options, 266814499ea5SAlberto Garcia flags, options); 2669f87a0e29SAlberto Garcia /* Let bdrv_backing_options() override "read-only" */ 2670f87a0e29SAlberto Garcia qdict_del(options, BDRV_OPT_READ_ONLY); 267114499ea5SAlberto Garcia bdrv_backing_options(&flags, options, flags, options); 267214499ea5SAlberto Garcia } 267314499ea5SAlberto Garcia 267462392ebbSKevin Wolf bs->open_flags = flags; 267562392ebbSKevin Wolf bs->options = options; 267662392ebbSKevin Wolf options = qdict_clone_shallow(options); 267762392ebbSKevin Wolf 267876c591b0SKevin Wolf /* Find the right image format driver */ 2679129c7d1cSMarkus Armbruster /* See cautionary note on accessing @options above */ 268076c591b0SKevin Wolf drvname = qdict_get_try_str(options, "driver"); 268176c591b0SKevin Wolf if (drvname) { 268276c591b0SKevin Wolf drv = bdrv_find_format(drvname); 268376c591b0SKevin Wolf if (!drv) { 268476c591b0SKevin Wolf error_setg(errp, "Unknown driver: '%s'", drvname); 268576c591b0SKevin Wolf goto fail; 268676c591b0SKevin Wolf } 268776c591b0SKevin Wolf } 268876c591b0SKevin Wolf 268976c591b0SKevin Wolf assert(drvname || !(flags & BDRV_O_PROTOCOL)); 269076c591b0SKevin Wolf 2691129c7d1cSMarkus Armbruster /* See cautionary note on accessing @options above */ 26923e8c2e57SAlberto Garcia backing = qdict_get_try_str(options, "backing"); 2693e59a0cf1SMax Reitz if (qobject_to(QNull, qdict_get(options, "backing")) != NULL || 2694e59a0cf1SMax Reitz (backing && *backing == '\0')) 2695e59a0cf1SMax Reitz { 26964f7be280SMax Reitz if (backing) { 26974f7be280SMax Reitz warn_report("Use of \"backing\": \"\" is deprecated; " 26984f7be280SMax Reitz "use \"backing\": null instead"); 26994f7be280SMax Reitz } 27003e8c2e57SAlberto Garcia flags |= BDRV_O_NO_BACKING; 27013e8c2e57SAlberto Garcia qdict_del(options, "backing"); 27023e8c2e57SAlberto Garcia } 27033e8c2e57SAlberto Garcia 27045696c6e3SKevin Wolf /* Open image file without format layer. This BlockBackend is only used for 27054e4bf5c4SKevin Wolf * probing, the block drivers will do their own bdrv_open_child() for the 27064e4bf5c4SKevin Wolf * same BDS, which is why we put the node name back into options. */ 2707f4788adcSKevin Wolf if ((flags & BDRV_O_PROTOCOL) == 0) { 27085696c6e3SKevin Wolf BlockDriverState *file_bs; 27095696c6e3SKevin Wolf 27105696c6e3SKevin Wolf file_bs = bdrv_open_child_bs(filename, options, "file", bs, 27111fdd6933SKevin Wolf &child_file, true, &local_err); 27121fdd6933SKevin Wolf if (local_err) { 27138bfea15dSKevin Wolf goto fail; 2714f500a6d3SKevin Wolf } 27155696c6e3SKevin Wolf if (file_bs != NULL) { 2716dacaa162SKevin Wolf /* Not requesting BLK_PERM_CONSISTENT_READ because we're only 2717dacaa162SKevin Wolf * looking at the header to guess the image format. This works even 2718dacaa162SKevin Wolf * in cases where a guest would not see a consistent state. */ 2719dacaa162SKevin Wolf file = blk_new(0, BLK_PERM_ALL); 2720d7086422SKevin Wolf blk_insert_bs(file, file_bs, &local_err); 27215696c6e3SKevin Wolf bdrv_unref(file_bs); 2722d7086422SKevin Wolf if (local_err) { 2723d7086422SKevin Wolf goto fail; 2724d7086422SKevin Wolf } 27255696c6e3SKevin Wolf 272646f5ac20SEric Blake qdict_put_str(options, "file", bdrv_get_node_name(file_bs)); 27274e4bf5c4SKevin Wolf } 2728f4788adcSKevin Wolf } 2729f500a6d3SKevin Wolf 273076c591b0SKevin Wolf /* Image format probing */ 273138f3ef57SKevin Wolf bs->probed = !drv; 273276c591b0SKevin Wolf if (!drv && file) { 2733cf2ab8fcSKevin Wolf ret = find_image_format(file, filename, &drv, &local_err); 273417b005f1SKevin Wolf if (ret < 0) { 273517b005f1SKevin Wolf goto fail; 273617b005f1SKevin Wolf } 273762392ebbSKevin Wolf /* 273862392ebbSKevin Wolf * This option update would logically belong in bdrv_fill_options(), 273962392ebbSKevin Wolf * but we first need to open bs->file for the probing to work, while 274062392ebbSKevin Wolf * opening bs->file already requires the (mostly) final set of options 274162392ebbSKevin Wolf * so that cache mode etc. can be inherited. 274262392ebbSKevin Wolf * 274362392ebbSKevin Wolf * Adding the driver later is somewhat ugly, but it's not an option 274462392ebbSKevin Wolf * that would ever be inherited, so it's correct. We just need to make 274562392ebbSKevin Wolf * sure to update both bs->options (which has the full effective 274662392ebbSKevin Wolf * options for bs) and options (which has file.* already removed). 274762392ebbSKevin Wolf */ 274846f5ac20SEric Blake qdict_put_str(bs->options, "driver", drv->format_name); 274946f5ac20SEric Blake qdict_put_str(options, "driver", drv->format_name); 275076c591b0SKevin Wolf } else if (!drv) { 27512a05cbe4SMax Reitz error_setg(errp, "Must specify either driver or file"); 27528bfea15dSKevin Wolf goto fail; 27532a05cbe4SMax Reitz } 2754f500a6d3SKevin Wolf 275553a29513SMax Reitz /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */ 275653a29513SMax Reitz assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open); 275753a29513SMax Reitz /* file must be NULL if a protocol BDS is about to be created 275853a29513SMax Reitz * (the inverse results in an error message from bdrv_open_common()) */ 275953a29513SMax Reitz assert(!(flags & BDRV_O_PROTOCOL) || !file); 276053a29513SMax Reitz 2761b6ce07aaSKevin Wolf /* Open the image */ 276282dc8b41SKevin Wolf ret = bdrv_open_common(bs, file, options, &local_err); 2763b6ce07aaSKevin Wolf if (ret < 0) { 27648bfea15dSKevin Wolf goto fail; 27656987307cSChristoph Hellwig } 27666987307cSChristoph Hellwig 27674e4bf5c4SKevin Wolf if (file) { 27685696c6e3SKevin Wolf blk_unref(file); 2769f500a6d3SKevin Wolf file = NULL; 2770f500a6d3SKevin Wolf } 2771f500a6d3SKevin Wolf 2772b6ce07aaSKevin Wolf /* If there is a backing file, use it */ 27739156df12SPaolo Bonzini if ((flags & BDRV_O_NO_BACKING) == 0) { 2774d9b7b057SKevin Wolf ret = bdrv_open_backing_file(bs, options, "backing", &local_err); 2775b6ce07aaSKevin Wolf if (ret < 0) { 2776b6ad491aSKevin Wolf goto close_and_fail; 2777b6ce07aaSKevin Wolf } 2778b6ce07aaSKevin Wolf } 2779b6ce07aaSKevin Wolf 278050196d7aSAlberto Garcia /* Remove all children options and references 278150196d7aSAlberto Garcia * from bs->options and bs->explicit_options */ 27822f624b80SAlberto Garcia QLIST_FOREACH(child, &bs->children, next) { 27832f624b80SAlberto Garcia char *child_key_dot; 27842f624b80SAlberto Garcia child_key_dot = g_strdup_printf("%s.", child->name); 27852f624b80SAlberto Garcia qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot); 27862f624b80SAlberto Garcia qdict_extract_subqdict(bs->options, NULL, child_key_dot); 278750196d7aSAlberto Garcia qdict_del(bs->explicit_options, child->name); 278850196d7aSAlberto Garcia qdict_del(bs->options, child->name); 27892f624b80SAlberto Garcia g_free(child_key_dot); 27902f624b80SAlberto Garcia } 27912f624b80SAlberto Garcia 279291af7014SMax Reitz bdrv_refresh_filename(bs); 279391af7014SMax Reitz 2794b6ad491aSKevin Wolf /* Check if any unknown options were used */ 27957ad2757fSPaolo Bonzini if (qdict_size(options) != 0) { 2796b6ad491aSKevin Wolf const QDictEntry *entry = qdict_first(options); 27975acd9d81SMax Reitz if (flags & BDRV_O_PROTOCOL) { 27985acd9d81SMax Reitz error_setg(errp, "Block protocol '%s' doesn't support the option " 27995acd9d81SMax Reitz "'%s'", drv->format_name, entry->key); 28005acd9d81SMax Reitz } else { 2801d0e46a55SMax Reitz error_setg(errp, 2802d0e46a55SMax Reitz "Block format '%s' does not support the option '%s'", 2803d0e46a55SMax Reitz drv->format_name, entry->key); 28045acd9d81SMax Reitz } 2805b6ad491aSKevin Wolf 2806b6ad491aSKevin Wolf goto close_and_fail; 2807b6ad491aSKevin Wolf } 2808b6ad491aSKevin Wolf 28095c8cab48SKevin Wolf bdrv_parent_cb_change_media(bs, true); 2810b6ce07aaSKevin Wolf 2811cb3e7f08SMarc-André Lureau qobject_unref(options); 28128961be33SAlberto Garcia options = NULL; 2813dd62f1caSKevin Wolf 2814dd62f1caSKevin Wolf /* For snapshot=on, create a temporary qcow2 overlay. bs points to the 2815dd62f1caSKevin Wolf * temporary snapshot afterwards. */ 2816dd62f1caSKevin Wolf if (snapshot_flags) { 281766836189SMax Reitz BlockDriverState *snapshot_bs; 281866836189SMax Reitz snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags, 281966836189SMax Reitz snapshot_options, &local_err); 282073176beeSKevin Wolf snapshot_options = NULL; 2821dd62f1caSKevin Wolf if (local_err) { 2822dd62f1caSKevin Wolf goto close_and_fail; 2823dd62f1caSKevin Wolf } 282466836189SMax Reitz /* We are not going to return bs but the overlay on top of it 282566836189SMax Reitz * (snapshot_bs); thus, we have to drop the strong reference to bs 28265b363937SMax Reitz * (which we obtained by calling bdrv_new()). bs will not be deleted, 28275b363937SMax Reitz * though, because the overlay still has a reference to it. */ 282866836189SMax Reitz bdrv_unref(bs); 282966836189SMax Reitz bs = snapshot_bs; 283066836189SMax Reitz } 283166836189SMax Reitz 28325b363937SMax Reitz return bs; 2833b6ce07aaSKevin Wolf 28348bfea15dSKevin Wolf fail: 28355696c6e3SKevin Wolf blk_unref(file); 2836cb3e7f08SMarc-André Lureau qobject_unref(snapshot_options); 2837cb3e7f08SMarc-André Lureau qobject_unref(bs->explicit_options); 2838cb3e7f08SMarc-André Lureau qobject_unref(bs->options); 2839cb3e7f08SMarc-André Lureau qobject_unref(options); 2840de9c0cecSKevin Wolf bs->options = NULL; 2841998cbd6aSManos Pitsidianakis bs->explicit_options = NULL; 2842f67503e5SMax Reitz bdrv_unref(bs); 284334b5d2c6SMax Reitz error_propagate(errp, local_err); 28445b363937SMax Reitz return NULL; 2845de9c0cecSKevin Wolf 2846b6ad491aSKevin Wolf close_and_fail: 2847f67503e5SMax Reitz bdrv_unref(bs); 2848cb3e7f08SMarc-André Lureau qobject_unref(snapshot_options); 2849cb3e7f08SMarc-André Lureau qobject_unref(options); 285034b5d2c6SMax Reitz error_propagate(errp, local_err); 28515b363937SMax Reitz return NULL; 2852b6ce07aaSKevin Wolf } 2853b6ce07aaSKevin Wolf 28545b363937SMax Reitz BlockDriverState *bdrv_open(const char *filename, const char *reference, 28555b363937SMax Reitz QDict *options, int flags, Error **errp) 2856f3930ed0SKevin Wolf { 28575b363937SMax Reitz return bdrv_open_inherit(filename, reference, options, flags, NULL, 2858ce343771SMax Reitz NULL, errp); 2859f3930ed0SKevin Wolf } 2860f3930ed0SKevin Wolf 2861e971aa12SJeff Cody /* 2862e971aa12SJeff Cody * Adds a BlockDriverState to a simple queue for an atomic, transactional 2863e971aa12SJeff Cody * reopen of multiple devices. 2864e971aa12SJeff Cody * 2865e971aa12SJeff Cody * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT 2866e971aa12SJeff Cody * already performed, or alternatively may be NULL a new BlockReopenQueue will 2867e971aa12SJeff Cody * be created and initialized. This newly created BlockReopenQueue should be 2868e971aa12SJeff Cody * passed back in for subsequent calls that are intended to be of the same 2869e971aa12SJeff Cody * atomic 'set'. 2870e971aa12SJeff Cody * 2871e971aa12SJeff Cody * bs is the BlockDriverState to add to the reopen queue. 2872e971aa12SJeff Cody * 28734d2cb092SKevin Wolf * options contains the changed options for the associated bs 28744d2cb092SKevin Wolf * (the BlockReopenQueue takes ownership) 28754d2cb092SKevin Wolf * 2876e971aa12SJeff Cody * flags contains the open flags for the associated bs 2877e971aa12SJeff Cody * 2878e971aa12SJeff Cody * returns a pointer to bs_queue, which is either the newly allocated 2879e971aa12SJeff Cody * bs_queue, or the existing bs_queue being used. 2880e971aa12SJeff Cody * 28811a63a907SKevin Wolf * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple(). 2882e971aa12SJeff Cody */ 288328518102SKevin Wolf static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, 28844d2cb092SKevin Wolf BlockDriverState *bs, 288528518102SKevin Wolf QDict *options, 288628518102SKevin Wolf int flags, 288728518102SKevin Wolf const BdrvChildRole *role, 288828518102SKevin Wolf QDict *parent_options, 288928518102SKevin Wolf int parent_flags) 2890e971aa12SJeff Cody { 2891e971aa12SJeff Cody assert(bs != NULL); 2892e971aa12SJeff Cody 2893e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry; 289467251a31SKevin Wolf BdrvChild *child; 2895145f598eSKevin Wolf QDict *old_options, *explicit_options; 289667251a31SKevin Wolf 28971a63a907SKevin Wolf /* Make sure that the caller remembered to use a drained section. This is 28981a63a907SKevin Wolf * important to avoid graph changes between the recursive queuing here and 28991a63a907SKevin Wolf * bdrv_reopen_multiple(). */ 29001a63a907SKevin Wolf assert(bs->quiesce_counter > 0); 29011a63a907SKevin Wolf 2902e971aa12SJeff Cody if (bs_queue == NULL) { 2903e971aa12SJeff Cody bs_queue = g_new0(BlockReopenQueue, 1); 2904e971aa12SJeff Cody QSIMPLEQ_INIT(bs_queue); 2905e971aa12SJeff Cody } 2906e971aa12SJeff Cody 29074d2cb092SKevin Wolf if (!options) { 29084d2cb092SKevin Wolf options = qdict_new(); 29094d2cb092SKevin Wolf } 29104d2cb092SKevin Wolf 29115b7ba05fSAlberto Garcia /* Check if this BlockDriverState is already in the queue */ 29125b7ba05fSAlberto Garcia QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 29135b7ba05fSAlberto Garcia if (bs == bs_entry->state.bs) { 29145b7ba05fSAlberto Garcia break; 29155b7ba05fSAlberto Garcia } 29165b7ba05fSAlberto Garcia } 29175b7ba05fSAlberto Garcia 291828518102SKevin Wolf /* 291928518102SKevin Wolf * Precedence of options: 292028518102SKevin Wolf * 1. Explicitly passed in options (highest) 292191a097e7SKevin Wolf * 2. Set in flags (only for top level) 2922145f598eSKevin Wolf * 3. Retained from explicitly set options of bs 29238e2160e2SKevin Wolf * 4. Inherited from parent node 292428518102SKevin Wolf * 5. Retained from effective options of bs 292528518102SKevin Wolf */ 292628518102SKevin Wolf 292791a097e7SKevin Wolf if (!parent_options) { 292891a097e7SKevin Wolf /* 292991a097e7SKevin Wolf * Any setting represented by flags is always updated. If the 293091a097e7SKevin Wolf * corresponding QDict option is set, it takes precedence. Otherwise 293191a097e7SKevin Wolf * the flag is translated into a QDict option. The old setting of bs is 293291a097e7SKevin Wolf * not considered. 293391a097e7SKevin Wolf */ 293491a097e7SKevin Wolf update_options_from_flags(options, flags); 293591a097e7SKevin Wolf } 293691a097e7SKevin Wolf 2937145f598eSKevin Wolf /* Old explicitly set values (don't overwrite by inherited value) */ 29385b7ba05fSAlberto Garcia if (bs_entry) { 29395b7ba05fSAlberto Garcia old_options = qdict_clone_shallow(bs_entry->state.explicit_options); 29405b7ba05fSAlberto Garcia } else { 2941145f598eSKevin Wolf old_options = qdict_clone_shallow(bs->explicit_options); 29425b7ba05fSAlberto Garcia } 2943145f598eSKevin Wolf bdrv_join_options(bs, options, old_options); 2944cb3e7f08SMarc-André Lureau qobject_unref(old_options); 2945145f598eSKevin Wolf 2946145f598eSKevin Wolf explicit_options = qdict_clone_shallow(options); 2947145f598eSKevin Wolf 294828518102SKevin Wolf /* Inherit from parent node */ 294928518102SKevin Wolf if (parent_options) { 29501a529736SFam Zheng QemuOpts *opts; 29511a529736SFam Zheng QDict *options_copy; 295228518102SKevin Wolf assert(!flags); 29538e2160e2SKevin Wolf role->inherit_options(&flags, options, parent_flags, parent_options); 29541a529736SFam Zheng options_copy = qdict_clone_shallow(options); 29551a529736SFam Zheng opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 29561a529736SFam Zheng qemu_opts_absorb_qdict(opts, options_copy, NULL); 29571a529736SFam Zheng update_flags_from_options(&flags, opts); 29581a529736SFam Zheng qemu_opts_del(opts); 2959cb3e7f08SMarc-André Lureau qobject_unref(options_copy); 296028518102SKevin Wolf } 296128518102SKevin Wolf 296228518102SKevin Wolf /* Old values are used for options that aren't set yet */ 29634d2cb092SKevin Wolf old_options = qdict_clone_shallow(bs->options); 2964cddff5baSKevin Wolf bdrv_join_options(bs, options, old_options); 2965cb3e7f08SMarc-André Lureau qobject_unref(old_options); 29664d2cb092SKevin Wolf 2967fd452021SKevin Wolf /* bdrv_open_inherit() sets and clears some additional flags internally */ 2968f1f25a2eSKevin Wolf flags &= ~BDRV_O_PROTOCOL; 2969fd452021SKevin Wolf if (flags & BDRV_O_RDWR) { 2970fd452021SKevin Wolf flags |= BDRV_O_ALLOW_RDWR; 2971fd452021SKevin Wolf } 2972f1f25a2eSKevin Wolf 29731857c97bSKevin Wolf if (!bs_entry) { 29741857c97bSKevin Wolf bs_entry = g_new0(BlockReopenQueueEntry, 1); 29751857c97bSKevin Wolf QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry); 29761857c97bSKevin Wolf } else { 2977cb3e7f08SMarc-André Lureau qobject_unref(bs_entry->state.options); 2978cb3e7f08SMarc-André Lureau qobject_unref(bs_entry->state.explicit_options); 29791857c97bSKevin Wolf } 29801857c97bSKevin Wolf 29811857c97bSKevin Wolf bs_entry->state.bs = bs; 29821857c97bSKevin Wolf bs_entry->state.options = options; 29831857c97bSKevin Wolf bs_entry->state.explicit_options = explicit_options; 29841857c97bSKevin Wolf bs_entry->state.flags = flags; 29851857c97bSKevin Wolf 298630450259SKevin Wolf /* This needs to be overwritten in bdrv_reopen_prepare() */ 298730450259SKevin Wolf bs_entry->state.perm = UINT64_MAX; 298830450259SKevin Wolf bs_entry->state.shared_perm = 0; 298930450259SKevin Wolf 299067251a31SKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 29914c9dfe5dSKevin Wolf QDict *new_child_options; 29924c9dfe5dSKevin Wolf char *child_key_dot; 299367251a31SKevin Wolf 29944c9dfe5dSKevin Wolf /* reopen can only change the options of block devices that were 29954c9dfe5dSKevin Wolf * implicitly created and inherited options. For other (referenced) 29964c9dfe5dSKevin Wolf * block devices, a syntax like "backing.foo" results in an error. */ 299767251a31SKevin Wolf if (child->bs->inherits_from != bs) { 299867251a31SKevin Wolf continue; 299967251a31SKevin Wolf } 300067251a31SKevin Wolf 30014c9dfe5dSKevin Wolf child_key_dot = g_strdup_printf("%s.", child->name); 30022f624b80SAlberto Garcia qdict_extract_subqdict(explicit_options, NULL, child_key_dot); 30034c9dfe5dSKevin Wolf qdict_extract_subqdict(options, &new_child_options, child_key_dot); 30044c9dfe5dSKevin Wolf g_free(child_key_dot); 30054c9dfe5dSKevin Wolf 300628518102SKevin Wolf bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0, 300728518102SKevin Wolf child->role, options, flags); 3008e971aa12SJeff Cody } 3009e971aa12SJeff Cody 3010e971aa12SJeff Cody return bs_queue; 3011e971aa12SJeff Cody } 3012e971aa12SJeff Cody 301328518102SKevin Wolf BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, 301428518102SKevin Wolf BlockDriverState *bs, 301528518102SKevin Wolf QDict *options, int flags) 301628518102SKevin Wolf { 301728518102SKevin Wolf return bdrv_reopen_queue_child(bs_queue, bs, options, flags, 301828518102SKevin Wolf NULL, NULL, 0); 301928518102SKevin Wolf } 302028518102SKevin Wolf 3021e971aa12SJeff Cody /* 3022e971aa12SJeff Cody * Reopen multiple BlockDriverStates atomically & transactionally. 3023e971aa12SJeff Cody * 3024e971aa12SJeff Cody * The queue passed in (bs_queue) must have been built up previous 3025e971aa12SJeff Cody * via bdrv_reopen_queue(). 3026e971aa12SJeff Cody * 3027e971aa12SJeff Cody * Reopens all BDS specified in the queue, with the appropriate 3028e971aa12SJeff Cody * flags. All devices are prepared for reopen, and failure of any 302950d6a8a3SStefan Weil * device will cause all device changes to be abandoned, and intermediate 3030e971aa12SJeff Cody * data cleaned up. 3031e971aa12SJeff Cody * 3032e971aa12SJeff Cody * If all devices prepare successfully, then the changes are committed 3033e971aa12SJeff Cody * to all devices. 3034e971aa12SJeff Cody * 30351a63a907SKevin Wolf * All affected nodes must be drained between bdrv_reopen_queue() and 30361a63a907SKevin Wolf * bdrv_reopen_multiple(). 3037e971aa12SJeff Cody */ 3038720150f3SPaolo Bonzini int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp) 3039e971aa12SJeff Cody { 3040e971aa12SJeff Cody int ret = -1; 3041e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry, *next; 3042e971aa12SJeff Cody Error *local_err = NULL; 3043e971aa12SJeff Cody 3044e971aa12SJeff Cody assert(bs_queue != NULL); 3045e971aa12SJeff Cody 3046e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 30471a63a907SKevin Wolf assert(bs_entry->state.bs->quiesce_counter > 0); 3048e971aa12SJeff Cody if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) { 3049e971aa12SJeff Cody error_propagate(errp, local_err); 3050e971aa12SJeff Cody goto cleanup; 3051e971aa12SJeff Cody } 3052e971aa12SJeff Cody bs_entry->prepared = true; 3053e971aa12SJeff Cody } 3054e971aa12SJeff Cody 3055e971aa12SJeff Cody /* If we reach this point, we have success and just need to apply the 3056e971aa12SJeff Cody * changes 3057e971aa12SJeff Cody */ 3058e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 3059e971aa12SJeff Cody bdrv_reopen_commit(&bs_entry->state); 3060e971aa12SJeff Cody } 3061e971aa12SJeff Cody 3062e971aa12SJeff Cody ret = 0; 3063e971aa12SJeff Cody 3064e971aa12SJeff Cody cleanup: 3065e971aa12SJeff Cody QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { 30661bab38e7SAlberto Garcia if (ret) { 30671bab38e7SAlberto Garcia if (bs_entry->prepared) { 3068e971aa12SJeff Cody bdrv_reopen_abort(&bs_entry->state); 30691bab38e7SAlberto Garcia } 3070cb3e7f08SMarc-André Lureau qobject_unref(bs_entry->state.explicit_options); 3071cb3e7f08SMarc-André Lureau qobject_unref(bs_entry->state.options); 30724c8350feSAlberto Garcia } 3073e971aa12SJeff Cody g_free(bs_entry); 3074e971aa12SJeff Cody } 3075e971aa12SJeff Cody g_free(bs_queue); 307640840e41SAlberto Garcia 3077e971aa12SJeff Cody return ret; 3078e971aa12SJeff Cody } 3079e971aa12SJeff Cody 3080e971aa12SJeff Cody 3081e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */ 3082e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp) 3083e971aa12SJeff Cody { 3084e971aa12SJeff Cody int ret = -1; 3085e971aa12SJeff Cody Error *local_err = NULL; 30861a63a907SKevin Wolf BlockReopenQueue *queue; 3087e971aa12SJeff Cody 30881a63a907SKevin Wolf bdrv_subtree_drained_begin(bs); 30891a63a907SKevin Wolf 30901a63a907SKevin Wolf queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags); 3091720150f3SPaolo Bonzini ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, &local_err); 3092e971aa12SJeff Cody if (local_err != NULL) { 3093e971aa12SJeff Cody error_propagate(errp, local_err); 3094e971aa12SJeff Cody } 30951a63a907SKevin Wolf 30961a63a907SKevin Wolf bdrv_subtree_drained_end(bs); 30971a63a907SKevin Wolf 3098e971aa12SJeff Cody return ret; 3099e971aa12SJeff Cody } 3100e971aa12SJeff Cody 310130450259SKevin Wolf static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q, 310230450259SKevin Wolf BdrvChild *c) 310330450259SKevin Wolf { 310430450259SKevin Wolf BlockReopenQueueEntry *entry; 310530450259SKevin Wolf 310630450259SKevin Wolf QSIMPLEQ_FOREACH(entry, q, entry) { 310730450259SKevin Wolf BlockDriverState *bs = entry->state.bs; 310830450259SKevin Wolf BdrvChild *child; 310930450259SKevin Wolf 311030450259SKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 311130450259SKevin Wolf if (child == c) { 311230450259SKevin Wolf return entry; 311330450259SKevin Wolf } 311430450259SKevin Wolf } 311530450259SKevin Wolf } 311630450259SKevin Wolf 311730450259SKevin Wolf return NULL; 311830450259SKevin Wolf } 311930450259SKevin Wolf 312030450259SKevin Wolf static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs, 312130450259SKevin Wolf uint64_t *perm, uint64_t *shared) 312230450259SKevin Wolf { 312330450259SKevin Wolf BdrvChild *c; 312430450259SKevin Wolf BlockReopenQueueEntry *parent; 312530450259SKevin Wolf uint64_t cumulative_perms = 0; 312630450259SKevin Wolf uint64_t cumulative_shared_perms = BLK_PERM_ALL; 312730450259SKevin Wolf 312830450259SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 312930450259SKevin Wolf parent = find_parent_in_reopen_queue(q, c); 313030450259SKevin Wolf if (!parent) { 313130450259SKevin Wolf cumulative_perms |= c->perm; 313230450259SKevin Wolf cumulative_shared_perms &= c->shared_perm; 313330450259SKevin Wolf } else { 313430450259SKevin Wolf uint64_t nperm, nshared; 313530450259SKevin Wolf 313630450259SKevin Wolf bdrv_child_perm(parent->state.bs, bs, c, c->role, q, 313730450259SKevin Wolf parent->state.perm, parent->state.shared_perm, 313830450259SKevin Wolf &nperm, &nshared); 313930450259SKevin Wolf 314030450259SKevin Wolf cumulative_perms |= nperm; 314130450259SKevin Wolf cumulative_shared_perms &= nshared; 314230450259SKevin Wolf } 314330450259SKevin Wolf } 314430450259SKevin Wolf *perm = cumulative_perms; 314530450259SKevin Wolf *shared = cumulative_shared_perms; 314630450259SKevin Wolf } 3147e971aa12SJeff Cody 3148e971aa12SJeff Cody /* 3149e971aa12SJeff Cody * Prepares a BlockDriverState for reopen. All changes are staged in the 3150e971aa12SJeff Cody * 'opaque' field of the BDRVReopenState, which is used and allocated by 3151e971aa12SJeff Cody * the block driver layer .bdrv_reopen_prepare() 3152e971aa12SJeff Cody * 3153e971aa12SJeff Cody * bs is the BlockDriverState to reopen 3154e971aa12SJeff Cody * flags are the new open flags 3155e971aa12SJeff Cody * queue is the reopen queue 3156e971aa12SJeff Cody * 3157e971aa12SJeff Cody * Returns 0 on success, non-zero on error. On error errp will be set 3158e971aa12SJeff Cody * as well. 3159e971aa12SJeff Cody * 3160e971aa12SJeff Cody * On failure, bdrv_reopen_abort() will be called to clean up any data. 3161e971aa12SJeff Cody * It is the responsibility of the caller to then call the abort() or 3162e971aa12SJeff Cody * commit() for any other BDS that have been left in a prepare() state 3163e971aa12SJeff Cody * 3164e971aa12SJeff Cody */ 3165e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue, 3166e971aa12SJeff Cody Error **errp) 3167e971aa12SJeff Cody { 3168e971aa12SJeff Cody int ret = -1; 3169e971aa12SJeff Cody Error *local_err = NULL; 3170e971aa12SJeff Cody BlockDriver *drv; 3171ccf9dc07SKevin Wolf QemuOpts *opts; 31724c8350feSAlberto Garcia QDict *orig_reopen_opts; 3173593b3071SAlberto Garcia char *discard = NULL; 31743d8ce171SJeff Cody bool read_only; 3175e971aa12SJeff Cody 3176e971aa12SJeff Cody assert(reopen_state != NULL); 3177e971aa12SJeff Cody assert(reopen_state->bs->drv != NULL); 3178e971aa12SJeff Cody drv = reopen_state->bs->drv; 3179e971aa12SJeff Cody 31804c8350feSAlberto Garcia /* This function and each driver's bdrv_reopen_prepare() remove 31814c8350feSAlberto Garcia * entries from reopen_state->options as they are processed, so 31824c8350feSAlberto Garcia * we need to make a copy of the original QDict. */ 31834c8350feSAlberto Garcia orig_reopen_opts = qdict_clone_shallow(reopen_state->options); 31844c8350feSAlberto Garcia 3185ccf9dc07SKevin Wolf /* Process generic block layer options */ 3186ccf9dc07SKevin Wolf opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 3187ccf9dc07SKevin Wolf qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err); 3188ccf9dc07SKevin Wolf if (local_err) { 3189ccf9dc07SKevin Wolf error_propagate(errp, local_err); 3190ccf9dc07SKevin Wolf ret = -EINVAL; 3191ccf9dc07SKevin Wolf goto error; 3192ccf9dc07SKevin Wolf } 3193ccf9dc07SKevin Wolf 319491a097e7SKevin Wolf update_flags_from_options(&reopen_state->flags, opts); 319591a097e7SKevin Wolf 3196415bbca8SAlberto Garcia discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD); 3197593b3071SAlberto Garcia if (discard != NULL) { 3198593b3071SAlberto Garcia if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) { 3199593b3071SAlberto Garcia error_setg(errp, "Invalid discard option"); 3200593b3071SAlberto Garcia ret = -EINVAL; 3201593b3071SAlberto Garcia goto error; 3202593b3071SAlberto Garcia } 3203593b3071SAlberto Garcia } 3204593b3071SAlberto Garcia 3205543770bdSAlberto Garcia reopen_state->detect_zeroes = 3206543770bdSAlberto Garcia bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err); 3207543770bdSAlberto Garcia if (local_err) { 3208543770bdSAlberto Garcia error_propagate(errp, local_err); 3209543770bdSAlberto Garcia ret = -EINVAL; 3210543770bdSAlberto Garcia goto error; 3211543770bdSAlberto Garcia } 3212543770bdSAlberto Garcia 321357f9db9aSAlberto Garcia /* All other options (including node-name and driver) must be unchanged. 321457f9db9aSAlberto Garcia * Put them back into the QDict, so that they are checked at the end 321557f9db9aSAlberto Garcia * of this function. */ 321657f9db9aSAlberto Garcia qemu_opts_to_qdict(opts, reopen_state->options); 3217ccf9dc07SKevin Wolf 32183d8ce171SJeff Cody /* If we are to stay read-only, do not allow permission change 32193d8ce171SJeff Cody * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is 32203d8ce171SJeff Cody * not set, or if the BDS still has copy_on_read enabled */ 32213d8ce171SJeff Cody read_only = !(reopen_state->flags & BDRV_O_RDWR); 322254a32bfeSKevin Wolf ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err); 32233d8ce171SJeff Cody if (local_err) { 32243d8ce171SJeff Cody error_propagate(errp, local_err); 3225e971aa12SJeff Cody goto error; 3226e971aa12SJeff Cody } 3227e971aa12SJeff Cody 322830450259SKevin Wolf /* Calculate required permissions after reopening */ 322930450259SKevin Wolf bdrv_reopen_perm(queue, reopen_state->bs, 323030450259SKevin Wolf &reopen_state->perm, &reopen_state->shared_perm); 3231e971aa12SJeff Cody 3232e971aa12SJeff Cody ret = bdrv_flush(reopen_state->bs); 3233e971aa12SJeff Cody if (ret) { 3234455b0fdeSEric Blake error_setg_errno(errp, -ret, "Error flushing drive"); 3235e971aa12SJeff Cody goto error; 3236e971aa12SJeff Cody } 3237e971aa12SJeff Cody 3238e971aa12SJeff Cody if (drv->bdrv_reopen_prepare) { 3239e971aa12SJeff Cody ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); 3240e971aa12SJeff Cody if (ret) { 3241e971aa12SJeff Cody if (local_err != NULL) { 3242e971aa12SJeff Cody error_propagate(errp, local_err); 3243e971aa12SJeff Cody } else { 3244d8b6895fSLuiz Capitulino error_setg(errp, "failed while preparing to reopen image '%s'", 3245e971aa12SJeff Cody reopen_state->bs->filename); 3246e971aa12SJeff Cody } 3247e971aa12SJeff Cody goto error; 3248e971aa12SJeff Cody } 3249e971aa12SJeff Cody } else { 3250e971aa12SJeff Cody /* It is currently mandatory to have a bdrv_reopen_prepare() 3251e971aa12SJeff Cody * handler for each supported drv. */ 325281e5f78aSAlberto Garcia error_setg(errp, "Block format '%s' used by node '%s' " 325381e5f78aSAlberto Garcia "does not support reopening files", drv->format_name, 325481e5f78aSAlberto Garcia bdrv_get_device_or_node_name(reopen_state->bs)); 3255e971aa12SJeff Cody ret = -1; 3256e971aa12SJeff Cody goto error; 3257e971aa12SJeff Cody } 3258e971aa12SJeff Cody 32594d2cb092SKevin Wolf /* Options that are not handled are only okay if they are unchanged 32604d2cb092SKevin Wolf * compared to the old state. It is expected that some options are only 32614d2cb092SKevin Wolf * used for the initial open, but not reopen (e.g. filename) */ 32624d2cb092SKevin Wolf if (qdict_size(reopen_state->options)) { 32634d2cb092SKevin Wolf const QDictEntry *entry = qdict_first(reopen_state->options); 32644d2cb092SKevin Wolf 32654d2cb092SKevin Wolf do { 326654fd1b0dSMax Reitz QObject *new = entry->value; 326754fd1b0dSMax Reitz QObject *old = qdict_get(reopen_state->bs->options, entry->key); 32684d2cb092SKevin Wolf 3269db905283SAlberto Garcia /* Allow child references (child_name=node_name) as long as they 3270db905283SAlberto Garcia * point to the current child (i.e. everything stays the same). */ 3271db905283SAlberto Garcia if (qobject_type(new) == QTYPE_QSTRING) { 3272db905283SAlberto Garcia BdrvChild *child; 3273db905283SAlberto Garcia QLIST_FOREACH(child, &reopen_state->bs->children, next) { 3274db905283SAlberto Garcia if (!strcmp(child->name, entry->key)) { 3275db905283SAlberto Garcia break; 3276db905283SAlberto Garcia } 3277db905283SAlberto Garcia } 3278db905283SAlberto Garcia 3279db905283SAlberto Garcia if (child) { 3280db905283SAlberto Garcia const char *str = qobject_get_try_str(new); 3281db905283SAlberto Garcia if (!strcmp(child->bs->node_name, str)) { 3282db905283SAlberto Garcia continue; /* Found child with this name, skip option */ 3283db905283SAlberto Garcia } 3284db905283SAlberto Garcia } 3285db905283SAlberto Garcia } 3286db905283SAlberto Garcia 328754fd1b0dSMax Reitz /* 328854fd1b0dSMax Reitz * TODO: When using -drive to specify blockdev options, all values 328954fd1b0dSMax Reitz * will be strings; however, when using -blockdev, blockdev-add or 329054fd1b0dSMax Reitz * filenames using the json:{} pseudo-protocol, they will be 329154fd1b0dSMax Reitz * correctly typed. 329254fd1b0dSMax Reitz * In contrast, reopening options are (currently) always strings 329354fd1b0dSMax Reitz * (because you can only specify them through qemu-io; all other 329454fd1b0dSMax Reitz * callers do not specify any options). 329554fd1b0dSMax Reitz * Therefore, when using anything other than -drive to create a BDS, 329654fd1b0dSMax Reitz * this cannot detect non-string options as unchanged, because 329754fd1b0dSMax Reitz * qobject_is_equal() always returns false for objects of different 329854fd1b0dSMax Reitz * type. In the future, this should be remedied by correctly typing 329954fd1b0dSMax Reitz * all options. For now, this is not too big of an issue because 330054fd1b0dSMax Reitz * the user can simply omit options which cannot be changed anyway, 330154fd1b0dSMax Reitz * so they will stay unchanged. 330254fd1b0dSMax Reitz */ 330354fd1b0dSMax Reitz if (!qobject_is_equal(new, old)) { 33044d2cb092SKevin Wolf error_setg(errp, "Cannot change the option '%s'", entry->key); 33054d2cb092SKevin Wolf ret = -EINVAL; 33064d2cb092SKevin Wolf goto error; 33074d2cb092SKevin Wolf } 33084d2cb092SKevin Wolf } while ((entry = qdict_next(reopen_state->options, entry))); 33094d2cb092SKevin Wolf } 33104d2cb092SKevin Wolf 331130450259SKevin Wolf ret = bdrv_check_perm(reopen_state->bs, queue, reopen_state->perm, 331230450259SKevin Wolf reopen_state->shared_perm, NULL, errp); 331330450259SKevin Wolf if (ret < 0) { 331430450259SKevin Wolf goto error; 331530450259SKevin Wolf } 331630450259SKevin Wolf 3317e971aa12SJeff Cody ret = 0; 3318e971aa12SJeff Cody 33194c8350feSAlberto Garcia /* Restore the original reopen_state->options QDict */ 33204c8350feSAlberto Garcia qobject_unref(reopen_state->options); 33214c8350feSAlberto Garcia reopen_state->options = qobject_ref(orig_reopen_opts); 33224c8350feSAlberto Garcia 3323e971aa12SJeff Cody error: 3324ccf9dc07SKevin Wolf qemu_opts_del(opts); 33254c8350feSAlberto Garcia qobject_unref(orig_reopen_opts); 3326593b3071SAlberto Garcia g_free(discard); 3327e971aa12SJeff Cody return ret; 3328e971aa12SJeff Cody } 3329e971aa12SJeff Cody 3330e971aa12SJeff Cody /* 3331e971aa12SJeff Cody * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and 3332e971aa12SJeff Cody * makes them final by swapping the staging BlockDriverState contents into 3333e971aa12SJeff Cody * the active BlockDriverState contents. 3334e971aa12SJeff Cody */ 3335e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state) 3336e971aa12SJeff Cody { 3337e971aa12SJeff Cody BlockDriver *drv; 333850bf65baSVladimir Sementsov-Ogievskiy BlockDriverState *bs; 333950196d7aSAlberto Garcia BdrvChild *child; 3340cb9ff6c2SVladimir Sementsov-Ogievskiy bool old_can_write, new_can_write; 3341e971aa12SJeff Cody 3342e971aa12SJeff Cody assert(reopen_state != NULL); 334350bf65baSVladimir Sementsov-Ogievskiy bs = reopen_state->bs; 334450bf65baSVladimir Sementsov-Ogievskiy drv = bs->drv; 3345e971aa12SJeff Cody assert(drv != NULL); 3346e971aa12SJeff Cody 3347cb9ff6c2SVladimir Sementsov-Ogievskiy old_can_write = 3348cb9ff6c2SVladimir Sementsov-Ogievskiy !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE); 3349cb9ff6c2SVladimir Sementsov-Ogievskiy 3350e971aa12SJeff Cody /* If there are any driver level actions to take */ 3351e971aa12SJeff Cody if (drv->bdrv_reopen_commit) { 3352e971aa12SJeff Cody drv->bdrv_reopen_commit(reopen_state); 3353e971aa12SJeff Cody } 3354e971aa12SJeff Cody 3355e971aa12SJeff Cody /* set BDS specific flags now */ 3356cb3e7f08SMarc-André Lureau qobject_unref(bs->explicit_options); 33574c8350feSAlberto Garcia qobject_unref(bs->options); 3358145f598eSKevin Wolf 335950bf65baSVladimir Sementsov-Ogievskiy bs->explicit_options = reopen_state->explicit_options; 33604c8350feSAlberto Garcia bs->options = reopen_state->options; 336150bf65baSVladimir Sementsov-Ogievskiy bs->open_flags = reopen_state->flags; 336250bf65baSVladimir Sementsov-Ogievskiy bs->read_only = !(reopen_state->flags & BDRV_O_RDWR); 3363543770bdSAlberto Garcia bs->detect_zeroes = reopen_state->detect_zeroes; 3364355ef4acSKevin Wolf 336550196d7aSAlberto Garcia /* Remove child references from bs->options and bs->explicit_options. 336650196d7aSAlberto Garcia * Child options were already removed in bdrv_reopen_queue_child() */ 336750196d7aSAlberto Garcia QLIST_FOREACH(child, &bs->children, next) { 336850196d7aSAlberto Garcia qdict_del(bs->explicit_options, child->name); 336950196d7aSAlberto Garcia qdict_del(bs->options, child->name); 337050196d7aSAlberto Garcia } 337150196d7aSAlberto Garcia 337250bf65baSVladimir Sementsov-Ogievskiy bdrv_refresh_limits(bs, NULL); 3373cb9ff6c2SVladimir Sementsov-Ogievskiy 337430450259SKevin Wolf bdrv_set_perm(reopen_state->bs, reopen_state->perm, 337530450259SKevin Wolf reopen_state->shared_perm); 337630450259SKevin Wolf 3377cb9ff6c2SVladimir Sementsov-Ogievskiy new_can_write = 3378cb9ff6c2SVladimir Sementsov-Ogievskiy !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE); 3379cb9ff6c2SVladimir Sementsov-Ogievskiy if (!old_can_write && new_can_write && drv->bdrv_reopen_bitmaps_rw) { 3380cb9ff6c2SVladimir Sementsov-Ogievskiy Error *local_err = NULL; 3381cb9ff6c2SVladimir Sementsov-Ogievskiy if (drv->bdrv_reopen_bitmaps_rw(bs, &local_err) < 0) { 3382cb9ff6c2SVladimir Sementsov-Ogievskiy /* This is not fatal, bitmaps just left read-only, so all following 3383cb9ff6c2SVladimir Sementsov-Ogievskiy * writes will fail. User can remove read-only bitmaps to unblock 3384cb9ff6c2SVladimir Sementsov-Ogievskiy * writes. 3385cb9ff6c2SVladimir Sementsov-Ogievskiy */ 3386cb9ff6c2SVladimir Sementsov-Ogievskiy error_reportf_err(local_err, 3387cb9ff6c2SVladimir Sementsov-Ogievskiy "%s: Failed to make dirty bitmaps writable: ", 3388cb9ff6c2SVladimir Sementsov-Ogievskiy bdrv_get_node_name(bs)); 3389cb9ff6c2SVladimir Sementsov-Ogievskiy } 3390cb9ff6c2SVladimir Sementsov-Ogievskiy } 3391e971aa12SJeff Cody } 3392e971aa12SJeff Cody 3393e971aa12SJeff Cody /* 3394e971aa12SJeff Cody * Abort the reopen, and delete and free the staged changes in 3395e971aa12SJeff Cody * reopen_state 3396e971aa12SJeff Cody */ 3397e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state) 3398e971aa12SJeff Cody { 3399e971aa12SJeff Cody BlockDriver *drv; 3400e971aa12SJeff Cody 3401e971aa12SJeff Cody assert(reopen_state != NULL); 3402e971aa12SJeff Cody drv = reopen_state->bs->drv; 3403e971aa12SJeff Cody assert(drv != NULL); 3404e971aa12SJeff Cody 3405e971aa12SJeff Cody if (drv->bdrv_reopen_abort) { 3406e971aa12SJeff Cody drv->bdrv_reopen_abort(reopen_state); 3407e971aa12SJeff Cody } 3408145f598eSKevin Wolf 340930450259SKevin Wolf bdrv_abort_perm_update(reopen_state->bs); 3410e971aa12SJeff Cody } 3411e971aa12SJeff Cody 3412e971aa12SJeff Cody 341364dff520SMax Reitz static void bdrv_close(BlockDriverState *bs) 3414fc01f7e7Sbellard { 341533384421SMax Reitz BdrvAioNotifier *ban, *ban_next; 341650a3efb0SAlberto Garcia BdrvChild *child, *next; 341733384421SMax Reitz 3418ca9bd24cSMax Reitz assert(!bs->job); 341930f55fb8SMax Reitz assert(!bs->refcnt); 342099b7e775SAlberto Garcia 3421fc27291dSPaolo Bonzini bdrv_drained_begin(bs); /* complete I/O */ 342258fda173SStefan Hajnoczi bdrv_flush(bs); 342353ec73e2SFam Zheng bdrv_drain(bs); /* in case flush left pending I/O */ 3424fc27291dSPaolo Bonzini 34253cbc002cSPaolo Bonzini if (bs->drv) { 34263c005293SVladimir Sementsov-Ogievskiy if (bs->drv->bdrv_close) { 34279a7dedbcSKevin Wolf bs->drv->bdrv_close(bs); 34283c005293SVladimir Sementsov-Ogievskiy } 34299a4f4c31SKevin Wolf bs->drv = NULL; 343050a3efb0SAlberto Garcia } 34319a7dedbcSKevin Wolf 343212fa4af6SKevin Wolf bdrv_set_backing_hd(bs, NULL, &error_abort); 34339a7dedbcSKevin Wolf 34349a4f4c31SKevin Wolf if (bs->file != NULL) { 34359a4f4c31SKevin Wolf bdrv_unref_child(bs, bs->file); 34369a4f4c31SKevin Wolf bs->file = NULL; 34379a4f4c31SKevin Wolf } 34389a4f4c31SKevin Wolf 34396e93e7c4SKevin Wolf QLIST_FOREACH_SAFE(child, &bs->children, next, next) { 344033a60407SKevin Wolf /* TODO Remove bdrv_unref() from drivers' close function and use 344133a60407SKevin Wolf * bdrv_unref_child() here */ 3442bddcec37SKevin Wolf if (child->bs->inherits_from == bs) { 3443bddcec37SKevin Wolf child->bs->inherits_from = NULL; 3444bddcec37SKevin Wolf } 344533a60407SKevin Wolf bdrv_detach_child(child); 34466e93e7c4SKevin Wolf } 34476e93e7c4SKevin Wolf 34487267c094SAnthony Liguori g_free(bs->opaque); 3449ea2384d3Sbellard bs->opaque = NULL; 3450d3faa13eSPaolo Bonzini atomic_set(&bs->copy_on_read, 0); 3451a275fa42SPaolo Bonzini bs->backing_file[0] = '\0'; 3452a275fa42SPaolo Bonzini bs->backing_format[0] = '\0'; 34536405875cSPaolo Bonzini bs->total_sectors = 0; 345454115412SEric Blake bs->encrypted = false; 345554115412SEric Blake bs->sg = false; 3456cb3e7f08SMarc-André Lureau qobject_unref(bs->options); 3457cb3e7f08SMarc-André Lureau qobject_unref(bs->explicit_options); 3458de9c0cecSKevin Wolf bs->options = NULL; 3459998cbd6aSManos Pitsidianakis bs->explicit_options = NULL; 3460cb3e7f08SMarc-André Lureau qobject_unref(bs->full_open_options); 346191af7014SMax Reitz bs->full_open_options = NULL; 346266f82ceeSKevin Wolf 3463cca43ae1SVladimir Sementsov-Ogievskiy bdrv_release_named_dirty_bitmaps(bs); 3464cca43ae1SVladimir Sementsov-Ogievskiy assert(QLIST_EMPTY(&bs->dirty_bitmaps)); 3465cca43ae1SVladimir Sementsov-Ogievskiy 346633384421SMax Reitz QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 346733384421SMax Reitz g_free(ban); 346833384421SMax Reitz } 346933384421SMax Reitz QLIST_INIT(&bs->aio_notifiers); 3470fc27291dSPaolo Bonzini bdrv_drained_end(bs); 3471b338082bSbellard } 3472b338082bSbellard 34732bc93fedSMORITA Kazutaka void bdrv_close_all(void) 34742bc93fedSMORITA Kazutaka { 3475b3b5299dSKevin Wolf assert(job_next(NULL) == NULL); 3476cd7fca95SKevin Wolf nbd_export_close_all(); 34772bc93fedSMORITA Kazutaka 3478ca9bd24cSMax Reitz /* Drop references from requests still in flight, such as canceled block 3479ca9bd24cSMax Reitz * jobs whose AIO context has not been polled yet */ 3480ca9bd24cSMax Reitz bdrv_drain_all(); 3481ca9bd24cSMax Reitz 3482ca9bd24cSMax Reitz blk_remove_all_bs(); 3483ca9bd24cSMax Reitz blockdev_close_all_bdrv_states(); 3484ca9bd24cSMax Reitz 3485a1a2af07SKevin Wolf assert(QTAILQ_EMPTY(&all_bdrv_states)); 34862bc93fedSMORITA Kazutaka } 34872bc93fedSMORITA Kazutaka 3488d0ac0380SKevin Wolf static bool should_update_child(BdrvChild *c, BlockDriverState *to) 3489dd62f1caSKevin Wolf { 3490d0ac0380SKevin Wolf BdrvChild *to_c; 3491dd62f1caSKevin Wolf 349226de9438SKevin Wolf if (c->role->stay_at_node) { 3493d0ac0380SKevin Wolf return false; 349426de9438SKevin Wolf } 3495d0ac0380SKevin Wolf 3496ec9f10feSMax Reitz /* If the child @c belongs to the BDS @to, replacing the current 3497ec9f10feSMax Reitz * c->bs by @to would mean to create a loop. 3498ec9f10feSMax Reitz * 3499ec9f10feSMax Reitz * Such a case occurs when appending a BDS to a backing chain. 3500ec9f10feSMax Reitz * For instance, imagine the following chain: 3501ec9f10feSMax Reitz * 3502ec9f10feSMax Reitz * guest device -> node A -> further backing chain... 3503ec9f10feSMax Reitz * 3504ec9f10feSMax Reitz * Now we create a new BDS B which we want to put on top of this 3505ec9f10feSMax Reitz * chain, so we first attach A as its backing node: 3506ec9f10feSMax Reitz * 3507ec9f10feSMax Reitz * node B 3508ec9f10feSMax Reitz * | 3509ec9f10feSMax Reitz * v 3510ec9f10feSMax Reitz * guest device -> node A -> further backing chain... 3511ec9f10feSMax Reitz * 3512ec9f10feSMax Reitz * Finally we want to replace A by B. When doing that, we want to 3513ec9f10feSMax Reitz * replace all pointers to A by pointers to B -- except for the 3514ec9f10feSMax Reitz * pointer from B because (1) that would create a loop, and (2) 3515ec9f10feSMax Reitz * that pointer should simply stay intact: 3516ec9f10feSMax Reitz * 3517ec9f10feSMax Reitz * guest device -> node B 3518ec9f10feSMax Reitz * | 3519ec9f10feSMax Reitz * v 3520ec9f10feSMax Reitz * node A -> further backing chain... 3521ec9f10feSMax Reitz * 3522ec9f10feSMax Reitz * In general, when replacing a node A (c->bs) by a node B (@to), 3523ec9f10feSMax Reitz * if A is a child of B, that means we cannot replace A by B there 3524ec9f10feSMax Reitz * because that would create a loop. Silently detaching A from B 3525ec9f10feSMax Reitz * is also not really an option. So overall just leaving A in 3526ec9f10feSMax Reitz * place there is the most sensible choice. */ 35279bd910e2SMax Reitz QLIST_FOREACH(to_c, &to->children, next) { 35289bd910e2SMax Reitz if (to_c == c) { 3529d0ac0380SKevin Wolf return false; 35309bd910e2SMax Reitz } 35319bd910e2SMax Reitz } 35329bd910e2SMax Reitz 3533d0ac0380SKevin Wolf return true; 3534d0ac0380SKevin Wolf } 3535d0ac0380SKevin Wolf 35365fe31c25SKevin Wolf void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to, 35375fe31c25SKevin Wolf Error **errp) 3538d0ac0380SKevin Wolf { 3539d0ac0380SKevin Wolf BdrvChild *c, *next; 3540234ac1a9SKevin Wolf GSList *list = NULL, *p; 3541234ac1a9SKevin Wolf uint64_t old_perm, old_shared; 3542234ac1a9SKevin Wolf uint64_t perm = 0, shared = BLK_PERM_ALL; 3543234ac1a9SKevin Wolf int ret; 3544d0ac0380SKevin Wolf 35455fe31c25SKevin Wolf assert(!atomic_read(&from->in_flight)); 35465fe31c25SKevin Wolf assert(!atomic_read(&to->in_flight)); 35475fe31c25SKevin Wolf 3548234ac1a9SKevin Wolf /* Make sure that @from doesn't go away until we have successfully attached 3549234ac1a9SKevin Wolf * all of its parents to @to. */ 3550234ac1a9SKevin Wolf bdrv_ref(from); 3551234ac1a9SKevin Wolf 3552234ac1a9SKevin Wolf /* Put all parents into @list and calculate their cumulative permissions */ 3553d0ac0380SKevin Wolf QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) { 3554ec9f10feSMax Reitz assert(c->bs == from); 3555d0ac0380SKevin Wolf if (!should_update_child(c, to)) { 3556d0ac0380SKevin Wolf continue; 3557d0ac0380SKevin Wolf } 3558234ac1a9SKevin Wolf list = g_slist_prepend(list, c); 3559234ac1a9SKevin Wolf perm |= c->perm; 3560234ac1a9SKevin Wolf shared &= c->shared_perm; 3561234ac1a9SKevin Wolf } 3562234ac1a9SKevin Wolf 3563234ac1a9SKevin Wolf /* Check whether the required permissions can be granted on @to, ignoring 3564234ac1a9SKevin Wolf * all BdrvChild in @list so that they can't block themselves. */ 35653121fb45SKevin Wolf ret = bdrv_check_update_perm(to, NULL, perm, shared, list, errp); 3566234ac1a9SKevin Wolf if (ret < 0) { 3567234ac1a9SKevin Wolf bdrv_abort_perm_update(to); 3568234ac1a9SKevin Wolf goto out; 3569234ac1a9SKevin Wolf } 3570234ac1a9SKevin Wolf 3571234ac1a9SKevin Wolf /* Now actually perform the change. We performed the permission check for 3572234ac1a9SKevin Wolf * all elements of @list at once, so set the permissions all at once at the 3573234ac1a9SKevin Wolf * very end. */ 3574234ac1a9SKevin Wolf for (p = list; p != NULL; p = p->next) { 3575234ac1a9SKevin Wolf c = p->data; 3576d0ac0380SKevin Wolf 3577dd62f1caSKevin Wolf bdrv_ref(to); 3578234ac1a9SKevin Wolf bdrv_replace_child_noperm(c, to); 3579dd62f1caSKevin Wolf bdrv_unref(from); 3580dd62f1caSKevin Wolf } 3581234ac1a9SKevin Wolf 3582234ac1a9SKevin Wolf bdrv_get_cumulative_perm(to, &old_perm, &old_shared); 3583234ac1a9SKevin Wolf bdrv_set_perm(to, old_perm | perm, old_shared | shared); 3584234ac1a9SKevin Wolf 3585234ac1a9SKevin Wolf out: 3586234ac1a9SKevin Wolf g_slist_free(list); 3587234ac1a9SKevin Wolf bdrv_unref(from); 3588dd62f1caSKevin Wolf } 3589dd62f1caSKevin Wolf 35908802d1fdSJeff Cody /* 35918802d1fdSJeff Cody * Add new bs contents at the top of an image chain while the chain is 35928802d1fdSJeff Cody * live, while keeping required fields on the top layer. 35938802d1fdSJeff Cody * 35948802d1fdSJeff Cody * This will modify the BlockDriverState fields, and swap contents 35958802d1fdSJeff Cody * between bs_new and bs_top. Both bs_new and bs_top are modified. 35968802d1fdSJeff Cody * 3597bfb197e0SMarkus Armbruster * bs_new must not be attached to a BlockBackend. 3598f6801b83SJeff Cody * 35998802d1fdSJeff Cody * This function does not create any image files. 3600dd62f1caSKevin Wolf * 3601dd62f1caSKevin Wolf * bdrv_append() takes ownership of a bs_new reference and unrefs it because 3602dd62f1caSKevin Wolf * that's what the callers commonly need. bs_new will be referenced by the old 3603dd62f1caSKevin Wolf * parents of bs_top after bdrv_append() returns. If the caller needs to keep a 3604dd62f1caSKevin Wolf * reference of its own, it must call bdrv_ref(). 36058802d1fdSJeff Cody */ 3606b2c2832cSKevin Wolf void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top, 3607b2c2832cSKevin Wolf Error **errp) 36088802d1fdSJeff Cody { 3609b2c2832cSKevin Wolf Error *local_err = NULL; 3610b2c2832cSKevin Wolf 3611b2c2832cSKevin Wolf bdrv_set_backing_hd(bs_new, bs_top, &local_err); 3612b2c2832cSKevin Wolf if (local_err) { 3613b2c2832cSKevin Wolf error_propagate(errp, local_err); 3614b2c2832cSKevin Wolf goto out; 3615b2c2832cSKevin Wolf } 3616dd62f1caSKevin Wolf 36175fe31c25SKevin Wolf bdrv_replace_node(bs_top, bs_new, &local_err); 3618234ac1a9SKevin Wolf if (local_err) { 3619234ac1a9SKevin Wolf error_propagate(errp, local_err); 3620234ac1a9SKevin Wolf bdrv_set_backing_hd(bs_new, NULL, &error_abort); 3621234ac1a9SKevin Wolf goto out; 3622234ac1a9SKevin Wolf } 3623dd62f1caSKevin Wolf 3624dd62f1caSKevin Wolf /* bs_new is now referenced by its new parents, we don't need the 3625dd62f1caSKevin Wolf * additional reference any more. */ 3626b2c2832cSKevin Wolf out: 3627dd62f1caSKevin Wolf bdrv_unref(bs_new); 36288802d1fdSJeff Cody } 36298802d1fdSJeff Cody 36304f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs) 3631b338082bSbellard { 36323e914655SPaolo Bonzini assert(!bs->job); 36333718d8abSFam Zheng assert(bdrv_op_blocker_is_empty(bs)); 36344f6fd349SFam Zheng assert(!bs->refcnt); 363518846deeSMarkus Armbruster 3636e1b5c52eSStefan Hajnoczi bdrv_close(bs); 3637e1b5c52eSStefan Hajnoczi 36381b7bdbc1SStefan Hajnoczi /* remove from list, if necessary */ 363963eaaae0SKevin Wolf if (bs->node_name[0] != '\0') { 364063eaaae0SKevin Wolf QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list); 364163eaaae0SKevin Wolf } 36422c1d04e0SMax Reitz QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list); 36432c1d04e0SMax Reitz 36447267c094SAnthony Liguori g_free(bs); 3645fc01f7e7Sbellard } 3646fc01f7e7Sbellard 3647e97fc193Saliguori /* 3648e97fc193Saliguori * Run consistency checks on an image 3649e97fc193Saliguori * 3650e076f338SKevin Wolf * Returns 0 if the check could be completed (it doesn't mean that the image is 3651a1c7273bSStefan Weil * free of errors) or -errno when an internal error occurred. The results of the 3652e076f338SKevin Wolf * check are stored in res. 3653e97fc193Saliguori */ 36542fd61638SPaolo Bonzini static int coroutine_fn bdrv_co_check(BlockDriverState *bs, 36552fd61638SPaolo Bonzini BdrvCheckResult *res, BdrvCheckMode fix) 3656e97fc193Saliguori { 3657908bcd54SMax Reitz if (bs->drv == NULL) { 3658908bcd54SMax Reitz return -ENOMEDIUM; 3659908bcd54SMax Reitz } 36602fd61638SPaolo Bonzini if (bs->drv->bdrv_co_check == NULL) { 3661e97fc193Saliguori return -ENOTSUP; 3662e97fc193Saliguori } 3663e97fc193Saliguori 3664e076f338SKevin Wolf memset(res, 0, sizeof(*res)); 36652fd61638SPaolo Bonzini return bs->drv->bdrv_co_check(bs, res, fix); 36662fd61638SPaolo Bonzini } 36672fd61638SPaolo Bonzini 36682fd61638SPaolo Bonzini typedef struct CheckCo { 36692fd61638SPaolo Bonzini BlockDriverState *bs; 36702fd61638SPaolo Bonzini BdrvCheckResult *res; 36712fd61638SPaolo Bonzini BdrvCheckMode fix; 36722fd61638SPaolo Bonzini int ret; 36732fd61638SPaolo Bonzini } CheckCo; 36742fd61638SPaolo Bonzini 36752fd61638SPaolo Bonzini static void bdrv_check_co_entry(void *opaque) 36762fd61638SPaolo Bonzini { 36772fd61638SPaolo Bonzini CheckCo *cco = opaque; 36782fd61638SPaolo Bonzini cco->ret = bdrv_co_check(cco->bs, cco->res, cco->fix); 36792fd61638SPaolo Bonzini } 36802fd61638SPaolo Bonzini 36812fd61638SPaolo Bonzini int bdrv_check(BlockDriverState *bs, 36822fd61638SPaolo Bonzini BdrvCheckResult *res, BdrvCheckMode fix) 36832fd61638SPaolo Bonzini { 36842fd61638SPaolo Bonzini Coroutine *co; 36852fd61638SPaolo Bonzini CheckCo cco = { 36862fd61638SPaolo Bonzini .bs = bs, 36872fd61638SPaolo Bonzini .res = res, 36882fd61638SPaolo Bonzini .ret = -EINPROGRESS, 36892fd61638SPaolo Bonzini .fix = fix, 36902fd61638SPaolo Bonzini }; 36912fd61638SPaolo Bonzini 36922fd61638SPaolo Bonzini if (qemu_in_coroutine()) { 36932fd61638SPaolo Bonzini /* Fast-path if already in coroutine context */ 36942fd61638SPaolo Bonzini bdrv_check_co_entry(&cco); 36952fd61638SPaolo Bonzini } else { 36962fd61638SPaolo Bonzini co = qemu_coroutine_create(bdrv_check_co_entry, &cco); 36972fd61638SPaolo Bonzini qemu_coroutine_enter(co); 36982fd61638SPaolo Bonzini BDRV_POLL_WHILE(bs, cco.ret == -EINPROGRESS); 36992fd61638SPaolo Bonzini } 37002fd61638SPaolo Bonzini 37012fd61638SPaolo Bonzini return cco.ret; 3702e97fc193Saliguori } 3703e97fc193Saliguori 3704756e6736SKevin Wolf /* 3705756e6736SKevin Wolf * Return values: 3706756e6736SKevin Wolf * 0 - success 3707756e6736SKevin Wolf * -EINVAL - backing format specified, but no file 3708756e6736SKevin Wolf * -ENOSPC - can't update the backing file because no space is left in the 3709756e6736SKevin Wolf * image file header 3710756e6736SKevin Wolf * -ENOTSUP - format driver doesn't support changing the backing file 3711756e6736SKevin Wolf */ 3712756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs, 3713756e6736SKevin Wolf const char *backing_file, const char *backing_fmt) 3714756e6736SKevin Wolf { 3715756e6736SKevin Wolf BlockDriver *drv = bs->drv; 3716469ef350SPaolo Bonzini int ret; 3717756e6736SKevin Wolf 3718d470ad42SMax Reitz if (!drv) { 3719d470ad42SMax Reitz return -ENOMEDIUM; 3720d470ad42SMax Reitz } 3721d470ad42SMax Reitz 37225f377794SPaolo Bonzini /* Backing file format doesn't make sense without a backing file */ 37235f377794SPaolo Bonzini if (backing_fmt && !backing_file) { 37245f377794SPaolo Bonzini return -EINVAL; 37255f377794SPaolo Bonzini } 37265f377794SPaolo Bonzini 3727756e6736SKevin Wolf if (drv->bdrv_change_backing_file != NULL) { 3728469ef350SPaolo Bonzini ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); 3729756e6736SKevin Wolf } else { 3730469ef350SPaolo Bonzini ret = -ENOTSUP; 3731756e6736SKevin Wolf } 3732469ef350SPaolo Bonzini 3733469ef350SPaolo Bonzini if (ret == 0) { 3734469ef350SPaolo Bonzini pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); 3735469ef350SPaolo Bonzini pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); 3736469ef350SPaolo Bonzini } 3737469ef350SPaolo Bonzini return ret; 3738756e6736SKevin Wolf } 3739756e6736SKevin Wolf 37406ebdcee2SJeff Cody /* 37416ebdcee2SJeff Cody * Finds the image layer in the chain that has 'bs' as its backing file. 37426ebdcee2SJeff Cody * 37436ebdcee2SJeff Cody * active is the current topmost image. 37446ebdcee2SJeff Cody * 37456ebdcee2SJeff Cody * Returns NULL if bs is not found in active's image chain, 37466ebdcee2SJeff Cody * or if active == bs. 37474caf0fcdSJeff Cody * 37484caf0fcdSJeff Cody * Returns the bottommost base image if bs == NULL. 37496ebdcee2SJeff Cody */ 37506ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active, 37516ebdcee2SJeff Cody BlockDriverState *bs) 37526ebdcee2SJeff Cody { 3753760e0063SKevin Wolf while (active && bs != backing_bs(active)) { 3754760e0063SKevin Wolf active = backing_bs(active); 37556ebdcee2SJeff Cody } 37566ebdcee2SJeff Cody 37574caf0fcdSJeff Cody return active; 37586ebdcee2SJeff Cody } 37596ebdcee2SJeff Cody 37604caf0fcdSJeff Cody /* Given a BDS, searches for the base layer. */ 37614caf0fcdSJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs) 37624caf0fcdSJeff Cody { 37634caf0fcdSJeff Cody return bdrv_find_overlay(bs, NULL); 37646ebdcee2SJeff Cody } 37656ebdcee2SJeff Cody 37666ebdcee2SJeff Cody /* 37676ebdcee2SJeff Cody * Drops images above 'base' up to and including 'top', and sets the image 37686ebdcee2SJeff Cody * above 'top' to have base as its backing file. 37696ebdcee2SJeff Cody * 37706ebdcee2SJeff Cody * Requires that the overlay to 'top' is opened r/w, so that the backing file 37716ebdcee2SJeff Cody * information in 'bs' can be properly updated. 37726ebdcee2SJeff Cody * 37736ebdcee2SJeff Cody * E.g., this will convert the following chain: 37746ebdcee2SJeff Cody * bottom <- base <- intermediate <- top <- active 37756ebdcee2SJeff Cody * 37766ebdcee2SJeff Cody * to 37776ebdcee2SJeff Cody * 37786ebdcee2SJeff Cody * bottom <- base <- active 37796ebdcee2SJeff Cody * 37806ebdcee2SJeff Cody * It is allowed for bottom==base, in which case it converts: 37816ebdcee2SJeff Cody * 37826ebdcee2SJeff Cody * base <- intermediate <- top <- active 37836ebdcee2SJeff Cody * 37846ebdcee2SJeff Cody * to 37856ebdcee2SJeff Cody * 37866ebdcee2SJeff Cody * base <- active 37876ebdcee2SJeff Cody * 378854e26900SJeff Cody * If backing_file_str is non-NULL, it will be used when modifying top's 378954e26900SJeff Cody * overlay image metadata. 379054e26900SJeff Cody * 37916ebdcee2SJeff Cody * Error conditions: 37926ebdcee2SJeff Cody * if active == top, that is considered an error 37936ebdcee2SJeff Cody * 37946ebdcee2SJeff Cody */ 3795bde70715SKevin Wolf int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base, 3796bde70715SKevin Wolf const char *backing_file_str) 37976ebdcee2SJeff Cody { 379861f09ceaSKevin Wolf BdrvChild *c, *next; 379912fa4af6SKevin Wolf Error *local_err = NULL; 38006ebdcee2SJeff Cody int ret = -EIO; 38016ebdcee2SJeff Cody 38026858eba0SKevin Wolf bdrv_ref(top); 38036858eba0SKevin Wolf 38046ebdcee2SJeff Cody if (!top->drv || !base->drv) { 38056ebdcee2SJeff Cody goto exit; 38066ebdcee2SJeff Cody } 38076ebdcee2SJeff Cody 38085db15a57SKevin Wolf /* Make sure that base is in the backing chain of top */ 38095db15a57SKevin Wolf if (!bdrv_chain_contains(top, base)) { 38106ebdcee2SJeff Cody goto exit; 38116ebdcee2SJeff Cody } 38126ebdcee2SJeff Cody 38136ebdcee2SJeff Cody /* success - we can delete the intermediate states, and link top->base */ 3814bde70715SKevin Wolf /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once 3815bde70715SKevin Wolf * we've figured out how they should work. */ 38165db15a57SKevin Wolf backing_file_str = backing_file_str ? backing_file_str : base->filename; 381712fa4af6SKevin Wolf 381861f09ceaSKevin Wolf QLIST_FOREACH_SAFE(c, &top->parents, next_parent, next) { 381961f09ceaSKevin Wolf /* Check whether we are allowed to switch c from top to base */ 382061f09ceaSKevin Wolf GSList *ignore_children = g_slist_prepend(NULL, c); 382161f09ceaSKevin Wolf bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm, 382261f09ceaSKevin Wolf ignore_children, &local_err); 38232c860e79SFam Zheng g_slist_free(ignore_children); 382412fa4af6SKevin Wolf if (local_err) { 382512fa4af6SKevin Wolf ret = -EPERM; 382612fa4af6SKevin Wolf error_report_err(local_err); 382712fa4af6SKevin Wolf goto exit; 382812fa4af6SKevin Wolf } 382961f09ceaSKevin Wolf 383061f09ceaSKevin Wolf /* If so, update the backing file path in the image file */ 383161f09ceaSKevin Wolf if (c->role->update_filename) { 383261f09ceaSKevin Wolf ret = c->role->update_filename(c, base, backing_file_str, 383361f09ceaSKevin Wolf &local_err); 383461f09ceaSKevin Wolf if (ret < 0) { 383561f09ceaSKevin Wolf bdrv_abort_perm_update(base); 383661f09ceaSKevin Wolf error_report_err(local_err); 383761f09ceaSKevin Wolf goto exit; 383861f09ceaSKevin Wolf } 383961f09ceaSKevin Wolf } 384061f09ceaSKevin Wolf 384161f09ceaSKevin Wolf /* Do the actual switch in the in-memory graph. 384261f09ceaSKevin Wolf * Completes bdrv_check_update_perm() transaction internally. */ 384361f09ceaSKevin Wolf bdrv_ref(base); 384461f09ceaSKevin Wolf bdrv_replace_child(c, base); 384561f09ceaSKevin Wolf bdrv_unref(top); 384661f09ceaSKevin Wolf } 38476ebdcee2SJeff Cody 38486ebdcee2SJeff Cody ret = 0; 38496ebdcee2SJeff Cody exit: 38506858eba0SKevin Wolf bdrv_unref(top); 38516ebdcee2SJeff Cody return ret; 38526ebdcee2SJeff Cody } 38536ebdcee2SJeff Cody 385483f64091Sbellard /** 38554a1d5e1fSFam Zheng * Length of a allocated file in bytes. Sparse files are counted by actual 38564a1d5e1fSFam Zheng * allocated space. Return < 0 if error or unknown. 38574a1d5e1fSFam Zheng */ 38584a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs) 38594a1d5e1fSFam Zheng { 38604a1d5e1fSFam Zheng BlockDriver *drv = bs->drv; 38614a1d5e1fSFam Zheng if (!drv) { 38624a1d5e1fSFam Zheng return -ENOMEDIUM; 38634a1d5e1fSFam Zheng } 38644a1d5e1fSFam Zheng if (drv->bdrv_get_allocated_file_size) { 38654a1d5e1fSFam Zheng return drv->bdrv_get_allocated_file_size(bs); 38664a1d5e1fSFam Zheng } 38674a1d5e1fSFam Zheng if (bs->file) { 38689a4f4c31SKevin Wolf return bdrv_get_allocated_file_size(bs->file->bs); 38694a1d5e1fSFam Zheng } 38704a1d5e1fSFam Zheng return -ENOTSUP; 38714a1d5e1fSFam Zheng } 38724a1d5e1fSFam Zheng 387390880ff1SStefan Hajnoczi /* 387490880ff1SStefan Hajnoczi * bdrv_measure: 387590880ff1SStefan Hajnoczi * @drv: Format driver 387690880ff1SStefan Hajnoczi * @opts: Creation options for new image 387790880ff1SStefan Hajnoczi * @in_bs: Existing image containing data for new image (may be NULL) 387890880ff1SStefan Hajnoczi * @errp: Error object 387990880ff1SStefan Hajnoczi * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo()) 388090880ff1SStefan Hajnoczi * or NULL on error 388190880ff1SStefan Hajnoczi * 388290880ff1SStefan Hajnoczi * Calculate file size required to create a new image. 388390880ff1SStefan Hajnoczi * 388490880ff1SStefan Hajnoczi * If @in_bs is given then space for allocated clusters and zero clusters 388590880ff1SStefan Hajnoczi * from that image are included in the calculation. If @opts contains a 388690880ff1SStefan Hajnoczi * backing file that is shared by @in_bs then backing clusters may be omitted 388790880ff1SStefan Hajnoczi * from the calculation. 388890880ff1SStefan Hajnoczi * 388990880ff1SStefan Hajnoczi * If @in_bs is NULL then the calculation includes no allocated clusters 389090880ff1SStefan Hajnoczi * unless a preallocation option is given in @opts. 389190880ff1SStefan Hajnoczi * 389290880ff1SStefan Hajnoczi * Note that @in_bs may use a different BlockDriver from @drv. 389390880ff1SStefan Hajnoczi * 389490880ff1SStefan Hajnoczi * If an error occurs the @errp pointer is set. 389590880ff1SStefan Hajnoczi */ 389690880ff1SStefan Hajnoczi BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts, 389790880ff1SStefan Hajnoczi BlockDriverState *in_bs, Error **errp) 389890880ff1SStefan Hajnoczi { 389990880ff1SStefan Hajnoczi if (!drv->bdrv_measure) { 390090880ff1SStefan Hajnoczi error_setg(errp, "Block driver '%s' does not support size measurement", 390190880ff1SStefan Hajnoczi drv->format_name); 390290880ff1SStefan Hajnoczi return NULL; 390390880ff1SStefan Hajnoczi } 390490880ff1SStefan Hajnoczi 390590880ff1SStefan Hajnoczi return drv->bdrv_measure(opts, in_bs, errp); 390690880ff1SStefan Hajnoczi } 390790880ff1SStefan Hajnoczi 39084a1d5e1fSFam Zheng /** 390965a9bb25SMarkus Armbruster * Return number of sectors on success, -errno on error. 391083f64091Sbellard */ 391165a9bb25SMarkus Armbruster int64_t bdrv_nb_sectors(BlockDriverState *bs) 391283f64091Sbellard { 391383f64091Sbellard BlockDriver *drv = bs->drv; 391465a9bb25SMarkus Armbruster 391583f64091Sbellard if (!drv) 391619cb3738Sbellard return -ENOMEDIUM; 391751762288SStefan Hajnoczi 3918b94a2610SKevin Wolf if (drv->has_variable_length) { 3919b94a2610SKevin Wolf int ret = refresh_total_sectors(bs, bs->total_sectors); 3920b94a2610SKevin Wolf if (ret < 0) { 3921b94a2610SKevin Wolf return ret; 3922fc01f7e7Sbellard } 392346a4e4e6SStefan Hajnoczi } 392465a9bb25SMarkus Armbruster return bs->total_sectors; 392565a9bb25SMarkus Armbruster } 392665a9bb25SMarkus Armbruster 392765a9bb25SMarkus Armbruster /** 392865a9bb25SMarkus Armbruster * Return length in bytes on success, -errno on error. 392965a9bb25SMarkus Armbruster * The length is always a multiple of BDRV_SECTOR_SIZE. 393065a9bb25SMarkus Armbruster */ 393165a9bb25SMarkus Armbruster int64_t bdrv_getlength(BlockDriverState *bs) 393265a9bb25SMarkus Armbruster { 393365a9bb25SMarkus Armbruster int64_t ret = bdrv_nb_sectors(bs); 393465a9bb25SMarkus Armbruster 39354a9c9ea0SFam Zheng ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret; 393665a9bb25SMarkus Armbruster return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE; 393746a4e4e6SStefan Hajnoczi } 3938fc01f7e7Sbellard 393919cb3738Sbellard /* return 0 as number of sectors if no device present or error */ 394096b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) 3941fc01f7e7Sbellard { 394265a9bb25SMarkus Armbruster int64_t nb_sectors = bdrv_nb_sectors(bs); 394365a9bb25SMarkus Armbruster 394465a9bb25SMarkus Armbruster *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors; 3945fc01f7e7Sbellard } 3946cf98951bSbellard 394754115412SEric Blake bool bdrv_is_sg(BlockDriverState *bs) 3948985a03b0Sths { 3949985a03b0Sths return bs->sg; 3950985a03b0Sths } 3951985a03b0Sths 395254115412SEric Blake bool bdrv_is_encrypted(BlockDriverState *bs) 3953ea2384d3Sbellard { 3954760e0063SKevin Wolf if (bs->backing && bs->backing->bs->encrypted) { 395554115412SEric Blake return true; 3956760e0063SKevin Wolf } 3957ea2384d3Sbellard return bs->encrypted; 3958ea2384d3Sbellard } 3959ea2384d3Sbellard 3960f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs) 3961ea2384d3Sbellard { 3962f8d6bba1SMarkus Armbruster return bs->drv ? bs->drv->format_name : NULL; 3963ea2384d3Sbellard } 3964ea2384d3Sbellard 3965ada42401SStefan Hajnoczi static int qsort_strcmp(const void *a, const void *b) 3966ada42401SStefan Hajnoczi { 3967ceff5bd7SMax Reitz return strcmp(*(char *const *)a, *(char *const *)b); 3968ada42401SStefan Hajnoczi } 3969ada42401SStefan Hajnoczi 3970ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name), 3971ea2384d3Sbellard void *opaque) 3972ea2384d3Sbellard { 3973ea2384d3Sbellard BlockDriver *drv; 3974e855e4fbSJeff Cody int count = 0; 3975ada42401SStefan Hajnoczi int i; 3976e855e4fbSJeff Cody const char **formats = NULL; 3977ea2384d3Sbellard 39788a22f02aSStefan Hajnoczi QLIST_FOREACH(drv, &bdrv_drivers, list) { 3979e855e4fbSJeff Cody if (drv->format_name) { 3980e855e4fbSJeff Cody bool found = false; 3981e855e4fbSJeff Cody int i = count; 3982e855e4fbSJeff Cody while (formats && i && !found) { 3983e855e4fbSJeff Cody found = !strcmp(formats[--i], drv->format_name); 3984e855e4fbSJeff Cody } 3985e855e4fbSJeff Cody 3986e855e4fbSJeff Cody if (!found) { 39875839e53bSMarkus Armbruster formats = g_renew(const char *, formats, count + 1); 3988e855e4fbSJeff Cody formats[count++] = drv->format_name; 3989ea2384d3Sbellard } 3990ea2384d3Sbellard } 3991e855e4fbSJeff Cody } 3992ada42401SStefan Hajnoczi 3993eb0df69fSMax Reitz for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) { 3994eb0df69fSMax Reitz const char *format_name = block_driver_modules[i].format_name; 3995eb0df69fSMax Reitz 3996eb0df69fSMax Reitz if (format_name) { 3997eb0df69fSMax Reitz bool found = false; 3998eb0df69fSMax Reitz int j = count; 3999eb0df69fSMax Reitz 4000eb0df69fSMax Reitz while (formats && j && !found) { 4001eb0df69fSMax Reitz found = !strcmp(formats[--j], format_name); 4002eb0df69fSMax Reitz } 4003eb0df69fSMax Reitz 4004eb0df69fSMax Reitz if (!found) { 4005eb0df69fSMax Reitz formats = g_renew(const char *, formats, count + 1); 4006eb0df69fSMax Reitz formats[count++] = format_name; 4007eb0df69fSMax Reitz } 4008eb0df69fSMax Reitz } 4009eb0df69fSMax Reitz } 4010eb0df69fSMax Reitz 4011ada42401SStefan Hajnoczi qsort(formats, count, sizeof(formats[0]), qsort_strcmp); 4012ada42401SStefan Hajnoczi 4013ada42401SStefan Hajnoczi for (i = 0; i < count; i++) { 4014ada42401SStefan Hajnoczi it(opaque, formats[i]); 4015ada42401SStefan Hajnoczi } 4016ada42401SStefan Hajnoczi 4017e855e4fbSJeff Cody g_free(formats); 4018e855e4fbSJeff Cody } 4019ea2384d3Sbellard 4020dc364f4cSBenoît Canet /* This function is to find a node in the bs graph */ 4021dc364f4cSBenoît Canet BlockDriverState *bdrv_find_node(const char *node_name) 4022dc364f4cSBenoît Canet { 4023dc364f4cSBenoît Canet BlockDriverState *bs; 4024dc364f4cSBenoît Canet 4025dc364f4cSBenoît Canet assert(node_name); 4026dc364f4cSBenoît Canet 4027dc364f4cSBenoît Canet QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 4028dc364f4cSBenoît Canet if (!strcmp(node_name, bs->node_name)) { 4029dc364f4cSBenoît Canet return bs; 4030dc364f4cSBenoît Canet } 4031dc364f4cSBenoît Canet } 4032dc364f4cSBenoît Canet return NULL; 4033dc364f4cSBenoît Canet } 4034dc364f4cSBenoît Canet 4035c13163fbSBenoît Canet /* Put this QMP function here so it can access the static graph_bdrv_states. */ 4036d5a8ee60SAlberto Garcia BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp) 4037c13163fbSBenoît Canet { 4038c13163fbSBenoît Canet BlockDeviceInfoList *list, *entry; 4039c13163fbSBenoît Canet BlockDriverState *bs; 4040c13163fbSBenoît Canet 4041c13163fbSBenoît Canet list = NULL; 4042c13163fbSBenoît Canet QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 4043c83f9fbaSKevin Wolf BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp); 4044d5a8ee60SAlberto Garcia if (!info) { 4045d5a8ee60SAlberto Garcia qapi_free_BlockDeviceInfoList(list); 4046d5a8ee60SAlberto Garcia return NULL; 4047d5a8ee60SAlberto Garcia } 4048c13163fbSBenoît Canet entry = g_malloc0(sizeof(*entry)); 4049d5a8ee60SAlberto Garcia entry->value = info; 4050c13163fbSBenoît Canet entry->next = list; 4051c13163fbSBenoît Canet list = entry; 4052c13163fbSBenoît Canet } 4053c13163fbSBenoît Canet 4054c13163fbSBenoît Canet return list; 4055c13163fbSBenoît Canet } 4056c13163fbSBenoît Canet 405712d3ba82SBenoît Canet BlockDriverState *bdrv_lookup_bs(const char *device, 405812d3ba82SBenoît Canet const char *node_name, 405912d3ba82SBenoît Canet Error **errp) 406012d3ba82SBenoît Canet { 40617f06d47eSMarkus Armbruster BlockBackend *blk; 40627f06d47eSMarkus Armbruster BlockDriverState *bs; 406312d3ba82SBenoît Canet 406412d3ba82SBenoît Canet if (device) { 40657f06d47eSMarkus Armbruster blk = blk_by_name(device); 406612d3ba82SBenoît Canet 40677f06d47eSMarkus Armbruster if (blk) { 40689f4ed6fbSAlberto Garcia bs = blk_bs(blk); 40699f4ed6fbSAlberto Garcia if (!bs) { 40705433c24fSMax Reitz error_setg(errp, "Device '%s' has no medium", device); 40715433c24fSMax Reitz } 40725433c24fSMax Reitz 40739f4ed6fbSAlberto Garcia return bs; 407412d3ba82SBenoît Canet } 4075dd67fa50SBenoît Canet } 407612d3ba82SBenoît Canet 4077dd67fa50SBenoît Canet if (node_name) { 407812d3ba82SBenoît Canet bs = bdrv_find_node(node_name); 407912d3ba82SBenoît Canet 4080dd67fa50SBenoît Canet if (bs) { 4081dd67fa50SBenoît Canet return bs; 4082dd67fa50SBenoît Canet } 408312d3ba82SBenoît Canet } 408412d3ba82SBenoît Canet 4085dd67fa50SBenoît Canet error_setg(errp, "Cannot find device=%s nor node_name=%s", 4086dd67fa50SBenoît Canet device ? device : "", 4087dd67fa50SBenoît Canet node_name ? node_name : ""); 4088dd67fa50SBenoît Canet return NULL; 408912d3ba82SBenoît Canet } 409012d3ba82SBenoît Canet 40915a6684d2SJeff Cody /* If 'base' is in the same chain as 'top', return true. Otherwise, 40925a6684d2SJeff Cody * return false. If either argument is NULL, return false. */ 40935a6684d2SJeff Cody bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base) 40945a6684d2SJeff Cody { 40955a6684d2SJeff Cody while (top && top != base) { 4096760e0063SKevin Wolf top = backing_bs(top); 40975a6684d2SJeff Cody } 40985a6684d2SJeff Cody 40995a6684d2SJeff Cody return top != NULL; 41005a6684d2SJeff Cody } 41015a6684d2SJeff Cody 410204df765aSFam Zheng BlockDriverState *bdrv_next_node(BlockDriverState *bs) 410304df765aSFam Zheng { 410404df765aSFam Zheng if (!bs) { 410504df765aSFam Zheng return QTAILQ_FIRST(&graph_bdrv_states); 410604df765aSFam Zheng } 410704df765aSFam Zheng return QTAILQ_NEXT(bs, node_list); 410804df765aSFam Zheng } 410904df765aSFam Zheng 41100f12264eSKevin Wolf BlockDriverState *bdrv_next_all_states(BlockDriverState *bs) 41110f12264eSKevin Wolf { 41120f12264eSKevin Wolf if (!bs) { 41130f12264eSKevin Wolf return QTAILQ_FIRST(&all_bdrv_states); 41140f12264eSKevin Wolf } 41150f12264eSKevin Wolf return QTAILQ_NEXT(bs, bs_list); 41160f12264eSKevin Wolf } 41170f12264eSKevin Wolf 411820a9e77dSFam Zheng const char *bdrv_get_node_name(const BlockDriverState *bs) 411920a9e77dSFam Zheng { 412020a9e77dSFam Zheng return bs->node_name; 412120a9e77dSFam Zheng } 412220a9e77dSFam Zheng 41231f0c461bSKevin Wolf const char *bdrv_get_parent_name(const BlockDriverState *bs) 41244c265bf9SKevin Wolf { 41254c265bf9SKevin Wolf BdrvChild *c; 41264c265bf9SKevin Wolf const char *name; 41274c265bf9SKevin Wolf 41284c265bf9SKevin Wolf /* If multiple parents have a name, just pick the first one. */ 41294c265bf9SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 41304c265bf9SKevin Wolf if (c->role->get_name) { 41314c265bf9SKevin Wolf name = c->role->get_name(c); 41324c265bf9SKevin Wolf if (name && *name) { 41334c265bf9SKevin Wolf return name; 41344c265bf9SKevin Wolf } 41354c265bf9SKevin Wolf } 41364c265bf9SKevin Wolf } 41374c265bf9SKevin Wolf 41384c265bf9SKevin Wolf return NULL; 41394c265bf9SKevin Wolf } 41404c265bf9SKevin Wolf 41417f06d47eSMarkus Armbruster /* TODO check what callers really want: bs->node_name or blk_name() */ 4142bfb197e0SMarkus Armbruster const char *bdrv_get_device_name(const BlockDriverState *bs) 4143ea2384d3Sbellard { 41444c265bf9SKevin Wolf return bdrv_get_parent_name(bs) ?: ""; 4145ea2384d3Sbellard } 4146ea2384d3Sbellard 41479b2aa84fSAlberto Garcia /* This can be used to identify nodes that might not have a device 41489b2aa84fSAlberto Garcia * name associated. Since node and device names live in the same 41499b2aa84fSAlberto Garcia * namespace, the result is unambiguous. The exception is if both are 41509b2aa84fSAlberto Garcia * absent, then this returns an empty (non-null) string. */ 41519b2aa84fSAlberto Garcia const char *bdrv_get_device_or_node_name(const BlockDriverState *bs) 41529b2aa84fSAlberto Garcia { 41534c265bf9SKevin Wolf return bdrv_get_parent_name(bs) ?: bs->node_name; 41549b2aa84fSAlberto Garcia } 41559b2aa84fSAlberto Garcia 4156c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs) 4157c8433287SMarkus Armbruster { 4158c8433287SMarkus Armbruster return bs->open_flags; 4159c8433287SMarkus Armbruster } 4160c8433287SMarkus Armbruster 41613ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs) 41623ac21627SPeter Lieven { 41633ac21627SPeter Lieven return 1; 41643ac21627SPeter Lieven } 41653ac21627SPeter Lieven 4166f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs) 4167f2feebbdSKevin Wolf { 4168d470ad42SMax Reitz if (!bs->drv) { 4169d470ad42SMax Reitz return 0; 4170d470ad42SMax Reitz } 4171f2feebbdSKevin Wolf 417211212d8fSPaolo Bonzini /* If BS is a copy on write image, it is initialized to 417311212d8fSPaolo Bonzini the contents of the base image, which may not be zeroes. */ 4174760e0063SKevin Wolf if (bs->backing) { 417511212d8fSPaolo Bonzini return 0; 417611212d8fSPaolo Bonzini } 4177336c1c12SKevin Wolf if (bs->drv->bdrv_has_zero_init) { 4178336c1c12SKevin Wolf return bs->drv->bdrv_has_zero_init(bs); 4179f2feebbdSKevin Wolf } 41805a612c00SManos Pitsidianakis if (bs->file && bs->drv->is_filter) { 41815a612c00SManos Pitsidianakis return bdrv_has_zero_init(bs->file->bs); 41825a612c00SManos Pitsidianakis } 4183f2feebbdSKevin Wolf 41843ac21627SPeter Lieven /* safe default */ 41853ac21627SPeter Lieven return 0; 4186f2feebbdSKevin Wolf } 4187f2feebbdSKevin Wolf 41884ce78691SPeter Lieven bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs) 41894ce78691SPeter Lieven { 41904ce78691SPeter Lieven BlockDriverInfo bdi; 41914ce78691SPeter Lieven 4192760e0063SKevin Wolf if (bs->backing) { 41934ce78691SPeter Lieven return false; 41944ce78691SPeter Lieven } 41954ce78691SPeter Lieven 41964ce78691SPeter Lieven if (bdrv_get_info(bs, &bdi) == 0) { 41974ce78691SPeter Lieven return bdi.unallocated_blocks_are_zero; 41984ce78691SPeter Lieven } 41994ce78691SPeter Lieven 42004ce78691SPeter Lieven return false; 42014ce78691SPeter Lieven } 42024ce78691SPeter Lieven 42034ce78691SPeter Lieven bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs) 42044ce78691SPeter Lieven { 42052f0342efSDenis V. Lunev if (!(bs->open_flags & BDRV_O_UNMAP)) { 42064ce78691SPeter Lieven return false; 42074ce78691SPeter Lieven } 42084ce78691SPeter Lieven 4209e24d813bSEric Blake return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP; 42104ce78691SPeter Lieven } 42114ce78691SPeter Lieven 4212045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs) 4213045df330Saliguori { 4214760e0063SKevin Wolf if (bs->backing && bs->backing->bs->encrypted) 4215045df330Saliguori return bs->backing_file; 4216045df330Saliguori else if (bs->encrypted) 4217045df330Saliguori return bs->filename; 4218045df330Saliguori else 4219045df330Saliguori return NULL; 4220045df330Saliguori } 4221045df330Saliguori 422283f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs, 422383f64091Sbellard char *filename, int filename_size) 422483f64091Sbellard { 422583f64091Sbellard pstrcpy(filename, filename_size, bs->backing_file); 422683f64091Sbellard } 422783f64091Sbellard 4228faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) 4229faea38e7Sbellard { 4230faea38e7Sbellard BlockDriver *drv = bs->drv; 42315a612c00SManos Pitsidianakis /* if bs->drv == NULL, bs is closed, so there's nothing to do here */ 42325a612c00SManos Pitsidianakis if (!drv) { 423319cb3738Sbellard return -ENOMEDIUM; 42345a612c00SManos Pitsidianakis } 42355a612c00SManos Pitsidianakis if (!drv->bdrv_get_info) { 42365a612c00SManos Pitsidianakis if (bs->file && drv->is_filter) { 42375a612c00SManos Pitsidianakis return bdrv_get_info(bs->file->bs, bdi); 42385a612c00SManos Pitsidianakis } 4239faea38e7Sbellard return -ENOTSUP; 42405a612c00SManos Pitsidianakis } 4241faea38e7Sbellard memset(bdi, 0, sizeof(*bdi)); 4242faea38e7Sbellard return drv->bdrv_get_info(bs, bdi); 4243faea38e7Sbellard } 4244faea38e7Sbellard 4245eae041feSMax Reitz ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs) 4246eae041feSMax Reitz { 4247eae041feSMax Reitz BlockDriver *drv = bs->drv; 4248eae041feSMax Reitz if (drv && drv->bdrv_get_specific_info) { 4249eae041feSMax Reitz return drv->bdrv_get_specific_info(bs); 4250eae041feSMax Reitz } 4251eae041feSMax Reitz return NULL; 4252eae041feSMax Reitz } 4253eae041feSMax Reitz 4254a31939e6SEric Blake void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event) 42558b9b0cc2SKevin Wolf { 4256bf736fe3SKevin Wolf if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) { 42578b9b0cc2SKevin Wolf return; 42588b9b0cc2SKevin Wolf } 42598b9b0cc2SKevin Wolf 4260bf736fe3SKevin Wolf bs->drv->bdrv_debug_event(bs, event); 426141c695c7SKevin Wolf } 42628b9b0cc2SKevin Wolf 426341c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, 426441c695c7SKevin Wolf const char *tag) 426541c695c7SKevin Wolf { 426641c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { 42679a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 426841c695c7SKevin Wolf } 426941c695c7SKevin Wolf 427041c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { 427141c695c7SKevin Wolf return bs->drv->bdrv_debug_breakpoint(bs, event, tag); 427241c695c7SKevin Wolf } 427341c695c7SKevin Wolf 427441c695c7SKevin Wolf return -ENOTSUP; 427541c695c7SKevin Wolf } 427641c695c7SKevin Wolf 42774cc70e93SFam Zheng int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag) 42784cc70e93SFam Zheng { 42794cc70e93SFam Zheng while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) { 42809a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 42814cc70e93SFam Zheng } 42824cc70e93SFam Zheng 42834cc70e93SFam Zheng if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) { 42844cc70e93SFam Zheng return bs->drv->bdrv_debug_remove_breakpoint(bs, tag); 42854cc70e93SFam Zheng } 42864cc70e93SFam Zheng 42874cc70e93SFam Zheng return -ENOTSUP; 42884cc70e93SFam Zheng } 42894cc70e93SFam Zheng 429041c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag) 429141c695c7SKevin Wolf { 4292938789eaSMax Reitz while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) { 42939a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 429441c695c7SKevin Wolf } 429541c695c7SKevin Wolf 429641c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_resume) { 429741c695c7SKevin Wolf return bs->drv->bdrv_debug_resume(bs, tag); 429841c695c7SKevin Wolf } 429941c695c7SKevin Wolf 430041c695c7SKevin Wolf return -ENOTSUP; 430141c695c7SKevin Wolf } 430241c695c7SKevin Wolf 430341c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) 430441c695c7SKevin Wolf { 430541c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { 43069a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 430741c695c7SKevin Wolf } 430841c695c7SKevin Wolf 430941c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { 431041c695c7SKevin Wolf return bs->drv->bdrv_debug_is_suspended(bs, tag); 431141c695c7SKevin Wolf } 431241c695c7SKevin Wolf 431341c695c7SKevin Wolf return false; 43148b9b0cc2SKevin Wolf } 43158b9b0cc2SKevin Wolf 4316b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol. If it is 4317b1b1d783SJeff Cody * relative, it must be relative to the chain. So, passing in bs->filename 4318b1b1d783SJeff Cody * from a BDS as backing_file should not be done, as that may be relative to 4319b1b1d783SJeff Cody * the CWD rather than the chain. */ 4320e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, 4321e8a6bb9cSMarcelo Tosatti const char *backing_file) 4322e8a6bb9cSMarcelo Tosatti { 4323b1b1d783SJeff Cody char *filename_full = NULL; 4324b1b1d783SJeff Cody char *backing_file_full = NULL; 4325b1b1d783SJeff Cody char *filename_tmp = NULL; 4326b1b1d783SJeff Cody int is_protocol = 0; 4327b1b1d783SJeff Cody BlockDriverState *curr_bs = NULL; 4328b1b1d783SJeff Cody BlockDriverState *retval = NULL; 4329418661e0SJeff Cody Error *local_error = NULL; 4330b1b1d783SJeff Cody 4331b1b1d783SJeff Cody if (!bs || !bs->drv || !backing_file) { 4332e8a6bb9cSMarcelo Tosatti return NULL; 4333e8a6bb9cSMarcelo Tosatti } 4334e8a6bb9cSMarcelo Tosatti 4335b1b1d783SJeff Cody filename_full = g_malloc(PATH_MAX); 4336b1b1d783SJeff Cody backing_file_full = g_malloc(PATH_MAX); 4337b1b1d783SJeff Cody filename_tmp = g_malloc(PATH_MAX); 4338b1b1d783SJeff Cody 4339b1b1d783SJeff Cody is_protocol = path_has_protocol(backing_file); 4340b1b1d783SJeff Cody 4341760e0063SKevin Wolf for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) { 4342b1b1d783SJeff Cody 4343b1b1d783SJeff Cody /* If either of the filename paths is actually a protocol, then 4344b1b1d783SJeff Cody * compare unmodified paths; otherwise make paths relative */ 4345b1b1d783SJeff Cody if (is_protocol || path_has_protocol(curr_bs->backing_file)) { 4346b1b1d783SJeff Cody if (strcmp(backing_file, curr_bs->backing_file) == 0) { 4347760e0063SKevin Wolf retval = curr_bs->backing->bs; 4348b1b1d783SJeff Cody break; 4349b1b1d783SJeff Cody } 4350418661e0SJeff Cody /* Also check against the full backing filename for the image */ 4351418661e0SJeff Cody bdrv_get_full_backing_filename(curr_bs, backing_file_full, PATH_MAX, 4352418661e0SJeff Cody &local_error); 4353418661e0SJeff Cody if (local_error == NULL) { 4354418661e0SJeff Cody if (strcmp(backing_file, backing_file_full) == 0) { 4355418661e0SJeff Cody retval = curr_bs->backing->bs; 4356418661e0SJeff Cody break; 4357418661e0SJeff Cody } 4358418661e0SJeff Cody } else { 4359418661e0SJeff Cody error_free(local_error); 4360418661e0SJeff Cody local_error = NULL; 4361418661e0SJeff Cody } 4362e8a6bb9cSMarcelo Tosatti } else { 4363b1b1d783SJeff Cody /* If not an absolute filename path, make it relative to the current 4364b1b1d783SJeff Cody * image's filename path */ 4365b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 4366b1b1d783SJeff Cody backing_file); 4367b1b1d783SJeff Cody 4368b1b1d783SJeff Cody /* We are going to compare absolute pathnames */ 4369b1b1d783SJeff Cody if (!realpath(filename_tmp, filename_full)) { 4370b1b1d783SJeff Cody continue; 4371b1b1d783SJeff Cody } 4372b1b1d783SJeff Cody 4373b1b1d783SJeff Cody /* We need to make sure the backing filename we are comparing against 4374b1b1d783SJeff Cody * is relative to the current image filename (or absolute) */ 4375b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 4376b1b1d783SJeff Cody curr_bs->backing_file); 4377b1b1d783SJeff Cody 4378b1b1d783SJeff Cody if (!realpath(filename_tmp, backing_file_full)) { 4379b1b1d783SJeff Cody continue; 4380b1b1d783SJeff Cody } 4381b1b1d783SJeff Cody 4382b1b1d783SJeff Cody if (strcmp(backing_file_full, filename_full) == 0) { 4383760e0063SKevin Wolf retval = curr_bs->backing->bs; 4384b1b1d783SJeff Cody break; 4385b1b1d783SJeff Cody } 4386e8a6bb9cSMarcelo Tosatti } 4387e8a6bb9cSMarcelo Tosatti } 4388e8a6bb9cSMarcelo Tosatti 4389b1b1d783SJeff Cody g_free(filename_full); 4390b1b1d783SJeff Cody g_free(backing_file_full); 4391b1b1d783SJeff Cody g_free(filename_tmp); 4392b1b1d783SJeff Cody return retval; 4393e8a6bb9cSMarcelo Tosatti } 4394e8a6bb9cSMarcelo Tosatti 4395ea2384d3Sbellard void bdrv_init(void) 4396ea2384d3Sbellard { 43975efa9d5aSAnthony Liguori module_call_init(MODULE_INIT_BLOCK); 4398ea2384d3Sbellard } 4399ce1a14dcSpbrook 4400eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void) 4401eb852011SMarkus Armbruster { 4402eb852011SMarkus Armbruster use_bdrv_whitelist = 1; 4403eb852011SMarkus Armbruster bdrv_init(); 4404eb852011SMarkus Armbruster } 4405eb852011SMarkus Armbruster 44062b148f39SPaolo Bonzini static void coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, 44072b148f39SPaolo Bonzini Error **errp) 44080f15423cSAnthony Liguori { 44094417ab7aSKevin Wolf BdrvChild *child, *parent; 44109c5e6594SKevin Wolf uint64_t perm, shared_perm; 44115a8a30dbSKevin Wolf Error *local_err = NULL; 44125a8a30dbSKevin Wolf int ret; 44139c98f145SVladimir Sementsov-Ogievskiy BdrvDirtyBitmap *bm; 44145a8a30dbSKevin Wolf 44153456a8d1SKevin Wolf if (!bs->drv) { 44163456a8d1SKevin Wolf return; 44170f15423cSAnthony Liguori } 44183456a8d1SKevin Wolf 441904c01a5cSKevin Wolf if (!(bs->open_flags & BDRV_O_INACTIVE)) { 44207ea2d269SAlexey Kardashevskiy return; 44217ea2d269SAlexey Kardashevskiy } 44227ea2d269SAlexey Kardashevskiy 442316e977d5SVladimir Sementsov-Ogievskiy QLIST_FOREACH(child, &bs->children, next) { 44242b148f39SPaolo Bonzini bdrv_co_invalidate_cache(child->bs, &local_err); 44255a8a30dbSKevin Wolf if (local_err) { 44265a8a30dbSKevin Wolf error_propagate(errp, local_err); 44275a8a30dbSKevin Wolf return; 44283456a8d1SKevin Wolf } 44290d1c5c91SFam Zheng } 44300d1c5c91SFam Zheng 4431dafe0960SKevin Wolf /* 4432dafe0960SKevin Wolf * Update permissions, they may differ for inactive nodes. 4433dafe0960SKevin Wolf * 4434dafe0960SKevin Wolf * Note that the required permissions of inactive images are always a 4435dafe0960SKevin Wolf * subset of the permissions required after activating the image. This 4436dafe0960SKevin Wolf * allows us to just get the permissions upfront without restricting 4437dafe0960SKevin Wolf * drv->bdrv_invalidate_cache(). 4438dafe0960SKevin Wolf * 4439dafe0960SKevin Wolf * It also means that in error cases, we don't have to try and revert to 4440dafe0960SKevin Wolf * the old permissions (which is an operation that could fail, too). We can 4441dafe0960SKevin Wolf * just keep the extended permissions for the next time that an activation 4442dafe0960SKevin Wolf * of the image is tried. 4443dafe0960SKevin Wolf */ 444416e977d5SVladimir Sementsov-Ogievskiy bs->open_flags &= ~BDRV_O_INACTIVE; 4445dafe0960SKevin Wolf bdrv_get_cumulative_perm(bs, &perm, &shared_perm); 4446dafe0960SKevin Wolf ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &local_err); 4447dafe0960SKevin Wolf if (ret < 0) { 4448dafe0960SKevin Wolf bs->open_flags |= BDRV_O_INACTIVE; 4449dafe0960SKevin Wolf error_propagate(errp, local_err); 4450dafe0960SKevin Wolf return; 4451dafe0960SKevin Wolf } 4452dafe0960SKevin Wolf bdrv_set_perm(bs, perm, shared_perm); 4453dafe0960SKevin Wolf 44542b148f39SPaolo Bonzini if (bs->drv->bdrv_co_invalidate_cache) { 44552b148f39SPaolo Bonzini bs->drv->bdrv_co_invalidate_cache(bs, &local_err); 44560d1c5c91SFam Zheng if (local_err) { 44570d1c5c91SFam Zheng bs->open_flags |= BDRV_O_INACTIVE; 44580d1c5c91SFam Zheng error_propagate(errp, local_err); 44590d1c5c91SFam Zheng return; 44600d1c5c91SFam Zheng } 44610d1c5c91SFam Zheng } 44623456a8d1SKevin Wolf 44639c98f145SVladimir Sementsov-Ogievskiy for (bm = bdrv_dirty_bitmap_next(bs, NULL); bm; 44649c98f145SVladimir Sementsov-Ogievskiy bm = bdrv_dirty_bitmap_next(bs, bm)) 44659c98f145SVladimir Sementsov-Ogievskiy { 44669c98f145SVladimir Sementsov-Ogievskiy bdrv_dirty_bitmap_set_migration(bm, false); 44679c98f145SVladimir Sementsov-Ogievskiy } 44689c98f145SVladimir Sementsov-Ogievskiy 44695a8a30dbSKevin Wolf ret = refresh_total_sectors(bs, bs->total_sectors); 44705a8a30dbSKevin Wolf if (ret < 0) { 447104c01a5cSKevin Wolf bs->open_flags |= BDRV_O_INACTIVE; 44725a8a30dbSKevin Wolf error_setg_errno(errp, -ret, "Could not refresh total sector count"); 44735a8a30dbSKevin Wolf return; 44745a8a30dbSKevin Wolf } 44754417ab7aSKevin Wolf 44764417ab7aSKevin Wolf QLIST_FOREACH(parent, &bs->parents, next_parent) { 44774417ab7aSKevin Wolf if (parent->role->activate) { 44784417ab7aSKevin Wolf parent->role->activate(parent, &local_err); 44794417ab7aSKevin Wolf if (local_err) { 44804417ab7aSKevin Wolf error_propagate(errp, local_err); 44814417ab7aSKevin Wolf return; 44824417ab7aSKevin Wolf } 44834417ab7aSKevin Wolf } 44844417ab7aSKevin Wolf } 44850f15423cSAnthony Liguori } 44860f15423cSAnthony Liguori 44872b148f39SPaolo Bonzini typedef struct InvalidateCacheCo { 44882b148f39SPaolo Bonzini BlockDriverState *bs; 44892b148f39SPaolo Bonzini Error **errp; 44902b148f39SPaolo Bonzini bool done; 44912b148f39SPaolo Bonzini } InvalidateCacheCo; 44922b148f39SPaolo Bonzini 44932b148f39SPaolo Bonzini static void coroutine_fn bdrv_invalidate_cache_co_entry(void *opaque) 44942b148f39SPaolo Bonzini { 44952b148f39SPaolo Bonzini InvalidateCacheCo *ico = opaque; 44962b148f39SPaolo Bonzini bdrv_co_invalidate_cache(ico->bs, ico->errp); 44972b148f39SPaolo Bonzini ico->done = true; 44982b148f39SPaolo Bonzini } 44992b148f39SPaolo Bonzini 45002b148f39SPaolo Bonzini void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp) 45012b148f39SPaolo Bonzini { 45022b148f39SPaolo Bonzini Coroutine *co; 45032b148f39SPaolo Bonzini InvalidateCacheCo ico = { 45042b148f39SPaolo Bonzini .bs = bs, 45052b148f39SPaolo Bonzini .done = false, 45062b148f39SPaolo Bonzini .errp = errp 45072b148f39SPaolo Bonzini }; 45082b148f39SPaolo Bonzini 45092b148f39SPaolo Bonzini if (qemu_in_coroutine()) { 45102b148f39SPaolo Bonzini /* Fast-path if already in coroutine context */ 45112b148f39SPaolo Bonzini bdrv_invalidate_cache_co_entry(&ico); 45122b148f39SPaolo Bonzini } else { 45132b148f39SPaolo Bonzini co = qemu_coroutine_create(bdrv_invalidate_cache_co_entry, &ico); 45142b148f39SPaolo Bonzini qemu_coroutine_enter(co); 45152b148f39SPaolo Bonzini BDRV_POLL_WHILE(bs, !ico.done); 45162b148f39SPaolo Bonzini } 45172b148f39SPaolo Bonzini } 45182b148f39SPaolo Bonzini 45195a8a30dbSKevin Wolf void bdrv_invalidate_cache_all(Error **errp) 45200f15423cSAnthony Liguori { 45217c8eece4SKevin Wolf BlockDriverState *bs; 45225a8a30dbSKevin Wolf Error *local_err = NULL; 452388be7b4bSKevin Wolf BdrvNextIterator it; 45240f15423cSAnthony Liguori 452588be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 4526ed78cda3SStefan Hajnoczi AioContext *aio_context = bdrv_get_aio_context(bs); 4527ed78cda3SStefan Hajnoczi 4528ed78cda3SStefan Hajnoczi aio_context_acquire(aio_context); 45295a8a30dbSKevin Wolf bdrv_invalidate_cache(bs, &local_err); 4530ed78cda3SStefan Hajnoczi aio_context_release(aio_context); 45315a8a30dbSKevin Wolf if (local_err) { 45325a8a30dbSKevin Wolf error_propagate(errp, local_err); 45335e003f17SMax Reitz bdrv_next_cleanup(&it); 45345a8a30dbSKevin Wolf return; 45355a8a30dbSKevin Wolf } 45360f15423cSAnthony Liguori } 45370f15423cSAnthony Liguori } 45380f15423cSAnthony Liguori 4539aad0b7a0SFam Zheng static int bdrv_inactivate_recurse(BlockDriverState *bs, 4540aad0b7a0SFam Zheng bool setting_flag) 454176b1c7feSKevin Wolf { 4542cfa1a572SKevin Wolf BdrvChild *child, *parent; 454376b1c7feSKevin Wolf int ret; 454476b1c7feSKevin Wolf 4545d470ad42SMax Reitz if (!bs->drv) { 4546d470ad42SMax Reitz return -ENOMEDIUM; 4547d470ad42SMax Reitz } 4548d470ad42SMax Reitz 4549aad0b7a0SFam Zheng if (!setting_flag && bs->drv->bdrv_inactivate) { 455076b1c7feSKevin Wolf ret = bs->drv->bdrv_inactivate(bs); 455176b1c7feSKevin Wolf if (ret < 0) { 455276b1c7feSKevin Wolf return ret; 455376b1c7feSKevin Wolf } 455476b1c7feSKevin Wolf } 455576b1c7feSKevin Wolf 45567d5b5261SStefan Hajnoczi if (setting_flag && !(bs->open_flags & BDRV_O_INACTIVE)) { 45579c5e6594SKevin Wolf uint64_t perm, shared_perm; 45589c5e6594SKevin Wolf 4559cfa1a572SKevin Wolf QLIST_FOREACH(parent, &bs->parents, next_parent) { 4560cfa1a572SKevin Wolf if (parent->role->inactivate) { 4561cfa1a572SKevin Wolf ret = parent->role->inactivate(parent); 4562cfa1a572SKevin Wolf if (ret < 0) { 4563cfa1a572SKevin Wolf return ret; 4564cfa1a572SKevin Wolf } 4565cfa1a572SKevin Wolf } 4566cfa1a572SKevin Wolf } 45679c5e6594SKevin Wolf 45687d5b5261SStefan Hajnoczi bs->open_flags |= BDRV_O_INACTIVE; 45697d5b5261SStefan Hajnoczi 45709c5e6594SKevin Wolf /* Update permissions, they may differ for inactive nodes */ 45719c5e6594SKevin Wolf bdrv_get_cumulative_perm(bs, &perm, &shared_perm); 45723121fb45SKevin Wolf bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &error_abort); 45739c5e6594SKevin Wolf bdrv_set_perm(bs, perm, shared_perm); 4574aad0b7a0SFam Zheng } 457538701b6aSKevin Wolf 457638701b6aSKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 457738701b6aSKevin Wolf ret = bdrv_inactivate_recurse(child->bs, setting_flag); 457838701b6aSKevin Wolf if (ret < 0) { 457938701b6aSKevin Wolf return ret; 458038701b6aSKevin Wolf } 458138701b6aSKevin Wolf } 458238701b6aSKevin Wolf 458376b1c7feSKevin Wolf return 0; 458476b1c7feSKevin Wolf } 458576b1c7feSKevin Wolf 458676b1c7feSKevin Wolf int bdrv_inactivate_all(void) 458776b1c7feSKevin Wolf { 458879720af6SMax Reitz BlockDriverState *bs = NULL; 458988be7b4bSKevin Wolf BdrvNextIterator it; 4590aad0b7a0SFam Zheng int ret = 0; 4591aad0b7a0SFam Zheng int pass; 4592bd6458e4SPaolo Bonzini GSList *aio_ctxs = NULL, *ctx; 459376b1c7feSKevin Wolf 459488be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 4595bd6458e4SPaolo Bonzini AioContext *aio_context = bdrv_get_aio_context(bs); 4596bd6458e4SPaolo Bonzini 4597bd6458e4SPaolo Bonzini if (!g_slist_find(aio_ctxs, aio_context)) { 4598bd6458e4SPaolo Bonzini aio_ctxs = g_slist_prepend(aio_ctxs, aio_context); 4599bd6458e4SPaolo Bonzini aio_context_acquire(aio_context); 4600bd6458e4SPaolo Bonzini } 4601aad0b7a0SFam Zheng } 460276b1c7feSKevin Wolf 4603aad0b7a0SFam Zheng /* We do two passes of inactivation. The first pass calls to drivers' 4604aad0b7a0SFam Zheng * .bdrv_inactivate callbacks recursively so all cache is flushed to disk; 4605aad0b7a0SFam Zheng * the second pass sets the BDRV_O_INACTIVE flag so that no further write 4606aad0b7a0SFam Zheng * is allowed. */ 4607aad0b7a0SFam Zheng for (pass = 0; pass < 2; pass++) { 460888be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 4609aad0b7a0SFam Zheng ret = bdrv_inactivate_recurse(bs, pass); 461076b1c7feSKevin Wolf if (ret < 0) { 46115e003f17SMax Reitz bdrv_next_cleanup(&it); 4612aad0b7a0SFam Zheng goto out; 4613aad0b7a0SFam Zheng } 461476b1c7feSKevin Wolf } 461576b1c7feSKevin Wolf } 461676b1c7feSKevin Wolf 4617aad0b7a0SFam Zheng out: 4618bd6458e4SPaolo Bonzini for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) { 4619bd6458e4SPaolo Bonzini AioContext *aio_context = ctx->data; 4620bd6458e4SPaolo Bonzini aio_context_release(aio_context); 4621aad0b7a0SFam Zheng } 4622bd6458e4SPaolo Bonzini g_slist_free(aio_ctxs); 4623aad0b7a0SFam Zheng 4624aad0b7a0SFam Zheng return ret; 462576b1c7feSKevin Wolf } 462676b1c7feSKevin Wolf 4627f9f05dc5SKevin Wolf /**************************************************************/ 462819cb3738Sbellard /* removable device support */ 462919cb3738Sbellard 463019cb3738Sbellard /** 463119cb3738Sbellard * Return TRUE if the media is present 463219cb3738Sbellard */ 4633e031f750SMax Reitz bool bdrv_is_inserted(BlockDriverState *bs) 463419cb3738Sbellard { 463519cb3738Sbellard BlockDriver *drv = bs->drv; 463628d7a789SMax Reitz BdrvChild *child; 4637a1aff5bfSMarkus Armbruster 4638e031f750SMax Reitz if (!drv) { 4639e031f750SMax Reitz return false; 4640e031f750SMax Reitz } 464128d7a789SMax Reitz if (drv->bdrv_is_inserted) { 4642a1aff5bfSMarkus Armbruster return drv->bdrv_is_inserted(bs); 464319cb3738Sbellard } 464428d7a789SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 464528d7a789SMax Reitz if (!bdrv_is_inserted(child->bs)) { 464628d7a789SMax Reitz return false; 464728d7a789SMax Reitz } 464828d7a789SMax Reitz } 464928d7a789SMax Reitz return true; 465028d7a789SMax Reitz } 465119cb3738Sbellard 465219cb3738Sbellard /** 465319cb3738Sbellard * If eject_flag is TRUE, eject the media. Otherwise, close the tray 465419cb3738Sbellard */ 4655f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag) 465619cb3738Sbellard { 465719cb3738Sbellard BlockDriver *drv = bs->drv; 465819cb3738Sbellard 4659822e1cd1SMarkus Armbruster if (drv && drv->bdrv_eject) { 4660822e1cd1SMarkus Armbruster drv->bdrv_eject(bs, eject_flag); 466119cb3738Sbellard } 466219cb3738Sbellard } 466319cb3738Sbellard 466419cb3738Sbellard /** 466519cb3738Sbellard * Lock or unlock the media (if it is locked, the user won't be able 466619cb3738Sbellard * to eject it manually). 466719cb3738Sbellard */ 4668025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked) 466919cb3738Sbellard { 467019cb3738Sbellard BlockDriver *drv = bs->drv; 467119cb3738Sbellard 4672025e849aSMarkus Armbruster trace_bdrv_lock_medium(bs, locked); 4673b8c6d095SStefan Hajnoczi 4674025e849aSMarkus Armbruster if (drv && drv->bdrv_lock_medium) { 4675025e849aSMarkus Armbruster drv->bdrv_lock_medium(bs, locked); 467619cb3738Sbellard } 467719cb3738Sbellard } 4678985a03b0Sths 46799fcb0251SFam Zheng /* Get a reference to bs */ 46809fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs) 46819fcb0251SFam Zheng { 46829fcb0251SFam Zheng bs->refcnt++; 46839fcb0251SFam Zheng } 46849fcb0251SFam Zheng 46859fcb0251SFam Zheng /* Release a previously grabbed reference to bs. 46869fcb0251SFam Zheng * If after releasing, reference count is zero, the BlockDriverState is 46879fcb0251SFam Zheng * deleted. */ 46889fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs) 46899fcb0251SFam Zheng { 46909a4d5ca6SJeff Cody if (!bs) { 46919a4d5ca6SJeff Cody return; 46929a4d5ca6SJeff Cody } 46939fcb0251SFam Zheng assert(bs->refcnt > 0); 46949fcb0251SFam Zheng if (--bs->refcnt == 0) { 46959fcb0251SFam Zheng bdrv_delete(bs); 46969fcb0251SFam Zheng } 46979fcb0251SFam Zheng } 46989fcb0251SFam Zheng 4699fbe40ff7SFam Zheng struct BdrvOpBlocker { 4700fbe40ff7SFam Zheng Error *reason; 4701fbe40ff7SFam Zheng QLIST_ENTRY(BdrvOpBlocker) list; 4702fbe40ff7SFam Zheng }; 4703fbe40ff7SFam Zheng 4704fbe40ff7SFam Zheng bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp) 4705fbe40ff7SFam Zheng { 4706fbe40ff7SFam Zheng BdrvOpBlocker *blocker; 4707fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 4708fbe40ff7SFam Zheng if (!QLIST_EMPTY(&bs->op_blockers[op])) { 4709fbe40ff7SFam Zheng blocker = QLIST_FIRST(&bs->op_blockers[op]); 47104b576648SMarkus Armbruster error_propagate_prepend(errp, error_copy(blocker->reason), 47114b576648SMarkus Armbruster "Node '%s' is busy: ", 4712e43bfd9cSMarkus Armbruster bdrv_get_device_or_node_name(bs)); 4713fbe40ff7SFam Zheng return true; 4714fbe40ff7SFam Zheng } 4715fbe40ff7SFam Zheng return false; 4716fbe40ff7SFam Zheng } 4717fbe40ff7SFam Zheng 4718fbe40ff7SFam Zheng void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason) 4719fbe40ff7SFam Zheng { 4720fbe40ff7SFam Zheng BdrvOpBlocker *blocker; 4721fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 4722fbe40ff7SFam Zheng 47235839e53bSMarkus Armbruster blocker = g_new0(BdrvOpBlocker, 1); 4724fbe40ff7SFam Zheng blocker->reason = reason; 4725fbe40ff7SFam Zheng QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list); 4726fbe40ff7SFam Zheng } 4727fbe40ff7SFam Zheng 4728fbe40ff7SFam Zheng void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason) 4729fbe40ff7SFam Zheng { 4730fbe40ff7SFam Zheng BdrvOpBlocker *blocker, *next; 4731fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 4732fbe40ff7SFam Zheng QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) { 4733fbe40ff7SFam Zheng if (blocker->reason == reason) { 4734fbe40ff7SFam Zheng QLIST_REMOVE(blocker, list); 4735fbe40ff7SFam Zheng g_free(blocker); 4736fbe40ff7SFam Zheng } 4737fbe40ff7SFam Zheng } 4738fbe40ff7SFam Zheng } 4739fbe40ff7SFam Zheng 4740fbe40ff7SFam Zheng void bdrv_op_block_all(BlockDriverState *bs, Error *reason) 4741fbe40ff7SFam Zheng { 4742fbe40ff7SFam Zheng int i; 4743fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 4744fbe40ff7SFam Zheng bdrv_op_block(bs, i, reason); 4745fbe40ff7SFam Zheng } 4746fbe40ff7SFam Zheng } 4747fbe40ff7SFam Zheng 4748fbe40ff7SFam Zheng void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason) 4749fbe40ff7SFam Zheng { 4750fbe40ff7SFam Zheng int i; 4751fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 4752fbe40ff7SFam Zheng bdrv_op_unblock(bs, i, reason); 4753fbe40ff7SFam Zheng } 4754fbe40ff7SFam Zheng } 4755fbe40ff7SFam Zheng 4756fbe40ff7SFam Zheng bool bdrv_op_blocker_is_empty(BlockDriverState *bs) 4757fbe40ff7SFam Zheng { 4758fbe40ff7SFam Zheng int i; 4759fbe40ff7SFam Zheng 4760fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 4761fbe40ff7SFam Zheng if (!QLIST_EMPTY(&bs->op_blockers[i])) { 4762fbe40ff7SFam Zheng return false; 4763fbe40ff7SFam Zheng } 4764fbe40ff7SFam Zheng } 4765fbe40ff7SFam Zheng return true; 4766fbe40ff7SFam Zheng } 4767fbe40ff7SFam Zheng 4768d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt, 4769f88e1a42SJes Sorensen const char *base_filename, const char *base_fmt, 47709217283dSFam Zheng char *options, uint64_t img_size, int flags, bool quiet, 47719217283dSFam Zheng Error **errp) 4772f88e1a42SJes Sorensen { 477383d0521aSChunyan Liu QemuOptsList *create_opts = NULL; 477483d0521aSChunyan Liu QemuOpts *opts = NULL; 477583d0521aSChunyan Liu const char *backing_fmt, *backing_file; 477683d0521aSChunyan Liu int64_t size; 4777f88e1a42SJes Sorensen BlockDriver *drv, *proto_drv; 4778cc84d90fSMax Reitz Error *local_err = NULL; 4779f88e1a42SJes Sorensen int ret = 0; 4780f88e1a42SJes Sorensen 4781f88e1a42SJes Sorensen /* Find driver and parse its options */ 4782f88e1a42SJes Sorensen drv = bdrv_find_format(fmt); 4783f88e1a42SJes Sorensen if (!drv) { 478471c79813SLuiz Capitulino error_setg(errp, "Unknown file format '%s'", fmt); 4785d92ada22SLuiz Capitulino return; 4786f88e1a42SJes Sorensen } 4787f88e1a42SJes Sorensen 4788b65a5e12SMax Reitz proto_drv = bdrv_find_protocol(filename, true, errp); 4789f88e1a42SJes Sorensen if (!proto_drv) { 4790d92ada22SLuiz Capitulino return; 4791f88e1a42SJes Sorensen } 4792f88e1a42SJes Sorensen 4793c6149724SMax Reitz if (!drv->create_opts) { 4794c6149724SMax Reitz error_setg(errp, "Format driver '%s' does not support image creation", 4795c6149724SMax Reitz drv->format_name); 4796c6149724SMax Reitz return; 4797c6149724SMax Reitz } 4798c6149724SMax Reitz 4799c6149724SMax Reitz if (!proto_drv->create_opts) { 4800c6149724SMax Reitz error_setg(errp, "Protocol driver '%s' does not support image creation", 4801c6149724SMax Reitz proto_drv->format_name); 4802c6149724SMax Reitz return; 4803c6149724SMax Reitz } 4804c6149724SMax Reitz 4805c282e1fdSChunyan Liu create_opts = qemu_opts_append(create_opts, drv->create_opts); 4806c282e1fdSChunyan Liu create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); 4807f88e1a42SJes Sorensen 4808f88e1a42SJes Sorensen /* Create parameter list with default values */ 480983d0521aSChunyan Liu opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); 481039101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort); 4811f88e1a42SJes Sorensen 4812f88e1a42SJes Sorensen /* Parse -o options */ 4813f88e1a42SJes Sorensen if (options) { 4814dc523cd3SMarkus Armbruster qemu_opts_do_parse(opts, options, NULL, &local_err); 4815dc523cd3SMarkus Armbruster if (local_err) { 4816f88e1a42SJes Sorensen goto out; 4817f88e1a42SJes Sorensen } 4818f88e1a42SJes Sorensen } 4819f88e1a42SJes Sorensen 4820f88e1a42SJes Sorensen if (base_filename) { 4821f43e47dbSMarkus Armbruster qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err); 48226be4194bSMarkus Armbruster if (local_err) { 482371c79813SLuiz Capitulino error_setg(errp, "Backing file not supported for file format '%s'", 482471c79813SLuiz Capitulino fmt); 4825f88e1a42SJes Sorensen goto out; 4826f88e1a42SJes Sorensen } 4827f88e1a42SJes Sorensen } 4828f88e1a42SJes Sorensen 4829f88e1a42SJes Sorensen if (base_fmt) { 4830f43e47dbSMarkus Armbruster qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err); 48316be4194bSMarkus Armbruster if (local_err) { 483271c79813SLuiz Capitulino error_setg(errp, "Backing file format not supported for file " 483371c79813SLuiz Capitulino "format '%s'", fmt); 4834f88e1a42SJes Sorensen goto out; 4835f88e1a42SJes Sorensen } 4836f88e1a42SJes Sorensen } 4837f88e1a42SJes Sorensen 483883d0521aSChunyan Liu backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); 483983d0521aSChunyan Liu if (backing_file) { 484083d0521aSChunyan Liu if (!strcmp(filename, backing_file)) { 484171c79813SLuiz Capitulino error_setg(errp, "Error: Trying to create an image with the " 484271c79813SLuiz Capitulino "same filename as the backing file"); 4843792da93aSJes Sorensen goto out; 4844792da93aSJes Sorensen } 4845792da93aSJes Sorensen } 4846792da93aSJes Sorensen 484783d0521aSChunyan Liu backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT); 4848f88e1a42SJes Sorensen 48496e6e55f5SJohn Snow /* The size for the image must always be specified, unless we have a backing 48506e6e55f5SJohn Snow * file and we have not been forbidden from opening it. */ 4851a8b42a1cSEric Blake size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size); 48526e6e55f5SJohn Snow if (backing_file && !(flags & BDRV_O_NO_BACKING)) { 485366f6b814SMax Reitz BlockDriverState *bs; 485429168018SMax Reitz char *full_backing = g_new0(char, PATH_MAX); 485563090dacSPaolo Bonzini int back_flags; 4856e6641719SMax Reitz QDict *backing_options = NULL; 485763090dacSPaolo Bonzini 485829168018SMax Reitz bdrv_get_full_backing_filename_from_filename(filename, backing_file, 485929168018SMax Reitz full_backing, PATH_MAX, 486029168018SMax Reitz &local_err); 486129168018SMax Reitz if (local_err) { 486229168018SMax Reitz g_free(full_backing); 486329168018SMax Reitz goto out; 486429168018SMax Reitz } 486529168018SMax Reitz 486663090dacSPaolo Bonzini /* backing files always opened read-only */ 486761de4c68SKevin Wolf back_flags = flags; 4868bfd18d1eSKevin Wolf back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); 4869f88e1a42SJes Sorensen 4870e6641719SMax Reitz backing_options = qdict_new(); 4871cc954f01SFam Zheng if (backing_fmt) { 487246f5ac20SEric Blake qdict_put_str(backing_options, "driver", backing_fmt); 4873e6641719SMax Reitz } 4874cc954f01SFam Zheng qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true); 4875e6641719SMax Reitz 48765b363937SMax Reitz bs = bdrv_open(full_backing, NULL, backing_options, back_flags, 48775b363937SMax Reitz &local_err); 487829168018SMax Reitz g_free(full_backing); 48796e6e55f5SJohn Snow if (!bs && size != -1) { 48806e6e55f5SJohn Snow /* Couldn't open BS, but we have a size, so it's nonfatal */ 48816e6e55f5SJohn Snow warn_reportf_err(local_err, 48826e6e55f5SJohn Snow "Could not verify backing image. " 48836e6e55f5SJohn Snow "This may become an error in future versions.\n"); 48846e6e55f5SJohn Snow local_err = NULL; 48856e6e55f5SJohn Snow } else if (!bs) { 48866e6e55f5SJohn Snow /* Couldn't open bs, do not have size */ 48876e6e55f5SJohn Snow error_append_hint(&local_err, 48886e6e55f5SJohn Snow "Could not open backing image to determine size.\n"); 4889f88e1a42SJes Sorensen goto out; 48906e6e55f5SJohn Snow } else { 48916e6e55f5SJohn Snow if (size == -1) { 48926e6e55f5SJohn Snow /* Opened BS, have no size */ 489352bf1e72SMarkus Armbruster size = bdrv_getlength(bs); 489452bf1e72SMarkus Armbruster if (size < 0) { 489552bf1e72SMarkus Armbruster error_setg_errno(errp, -size, "Could not get size of '%s'", 489652bf1e72SMarkus Armbruster backing_file); 489752bf1e72SMarkus Armbruster bdrv_unref(bs); 489852bf1e72SMarkus Armbruster goto out; 489952bf1e72SMarkus Armbruster } 490039101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort); 49016e6e55f5SJohn Snow } 490266f6b814SMax Reitz bdrv_unref(bs); 49036e6e55f5SJohn Snow } 49046e6e55f5SJohn Snow } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */ 49056e6e55f5SJohn Snow 49066e6e55f5SJohn Snow if (size == -1) { 490771c79813SLuiz Capitulino error_setg(errp, "Image creation needs a size parameter"); 4908f88e1a42SJes Sorensen goto out; 4909f88e1a42SJes Sorensen } 4910f88e1a42SJes Sorensen 4911f382d43aSMiroslav Rezanina if (!quiet) { 4912f88e1a42SJes Sorensen printf("Formatting '%s', fmt=%s ", filename, fmt); 491343c5d8f8SFam Zheng qemu_opts_print(opts, " "); 4914f88e1a42SJes Sorensen puts(""); 4915f382d43aSMiroslav Rezanina } 491683d0521aSChunyan Liu 4917c282e1fdSChunyan Liu ret = bdrv_create(drv, filename, opts, &local_err); 491883d0521aSChunyan Liu 4919cc84d90fSMax Reitz if (ret == -EFBIG) { 4920cc84d90fSMax Reitz /* This is generally a better message than whatever the driver would 4921cc84d90fSMax Reitz * deliver (especially because of the cluster_size_hint), since that 4922cc84d90fSMax Reitz * is most probably not much different from "image too large". */ 4923f3f4d2c0SKevin Wolf const char *cluster_size_hint = ""; 492483d0521aSChunyan Liu if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) { 4925f3f4d2c0SKevin Wolf cluster_size_hint = " (try using a larger cluster size)"; 4926f3f4d2c0SKevin Wolf } 4927cc84d90fSMax Reitz error_setg(errp, "The image size is too large for file format '%s'" 4928cc84d90fSMax Reitz "%s", fmt, cluster_size_hint); 4929cc84d90fSMax Reitz error_free(local_err); 4930cc84d90fSMax Reitz local_err = NULL; 4931f88e1a42SJes Sorensen } 4932f88e1a42SJes Sorensen 4933f88e1a42SJes Sorensen out: 493483d0521aSChunyan Liu qemu_opts_del(opts); 493583d0521aSChunyan Liu qemu_opts_free(create_opts); 4936cc84d90fSMax Reitz error_propagate(errp, local_err); 4937cc84d90fSMax Reitz } 493885d126f3SStefan Hajnoczi 493985d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs) 494085d126f3SStefan Hajnoczi { 494133f2a757SStefan Hajnoczi return bs ? bs->aio_context : qemu_get_aio_context(); 4942dcd04228SStefan Hajnoczi } 4943dcd04228SStefan Hajnoczi 4944052a7572SFam Zheng void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co) 4945052a7572SFam Zheng { 4946052a7572SFam Zheng aio_co_enter(bdrv_get_aio_context(bs), co); 4947052a7572SFam Zheng } 4948052a7572SFam Zheng 4949e8a095daSStefan Hajnoczi static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban) 4950e8a095daSStefan Hajnoczi { 4951e8a095daSStefan Hajnoczi QLIST_REMOVE(ban, list); 4952e8a095daSStefan Hajnoczi g_free(ban); 4953e8a095daSStefan Hajnoczi } 4954e8a095daSStefan Hajnoczi 4955dcd04228SStefan Hajnoczi void bdrv_detach_aio_context(BlockDriverState *bs) 4956dcd04228SStefan Hajnoczi { 4957e8a095daSStefan Hajnoczi BdrvAioNotifier *baf, *baf_tmp; 4958b97511c7SMax Reitz BdrvChild *child; 495933384421SMax Reitz 4960dcd04228SStefan Hajnoczi if (!bs->drv) { 4961dcd04228SStefan Hajnoczi return; 4962dcd04228SStefan Hajnoczi } 4963dcd04228SStefan Hajnoczi 4964e8a095daSStefan Hajnoczi assert(!bs->walking_aio_notifiers); 4965e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = true; 4966e8a095daSStefan Hajnoczi QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) { 4967e8a095daSStefan Hajnoczi if (baf->deleted) { 4968e8a095daSStefan Hajnoczi bdrv_do_remove_aio_context_notifier(baf); 4969e8a095daSStefan Hajnoczi } else { 497033384421SMax Reitz baf->detach_aio_context(baf->opaque); 497133384421SMax Reitz } 4972e8a095daSStefan Hajnoczi } 4973e8a095daSStefan Hajnoczi /* Never mind iterating again to check for ->deleted. bdrv_close() will 4974e8a095daSStefan Hajnoczi * remove remaining aio notifiers if we aren't called again. 4975e8a095daSStefan Hajnoczi */ 4976e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = false; 497733384421SMax Reitz 4978dcd04228SStefan Hajnoczi if (bs->drv->bdrv_detach_aio_context) { 4979dcd04228SStefan Hajnoczi bs->drv->bdrv_detach_aio_context(bs); 4980dcd04228SStefan Hajnoczi } 4981b97511c7SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 4982b97511c7SMax Reitz bdrv_detach_aio_context(child->bs); 4983dcd04228SStefan Hajnoczi } 4984dcd04228SStefan Hajnoczi 4985dcd04228SStefan Hajnoczi bs->aio_context = NULL; 4986dcd04228SStefan Hajnoczi } 4987dcd04228SStefan Hajnoczi 4988dcd04228SStefan Hajnoczi void bdrv_attach_aio_context(BlockDriverState *bs, 4989dcd04228SStefan Hajnoczi AioContext *new_context) 4990dcd04228SStefan Hajnoczi { 4991e8a095daSStefan Hajnoczi BdrvAioNotifier *ban, *ban_tmp; 4992b97511c7SMax Reitz BdrvChild *child; 499333384421SMax Reitz 4994dcd04228SStefan Hajnoczi if (!bs->drv) { 4995dcd04228SStefan Hajnoczi return; 4996dcd04228SStefan Hajnoczi } 4997dcd04228SStefan Hajnoczi 4998dcd04228SStefan Hajnoczi bs->aio_context = new_context; 4999dcd04228SStefan Hajnoczi 5000b97511c7SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 5001b97511c7SMax Reitz bdrv_attach_aio_context(child->bs, new_context); 5002dcd04228SStefan Hajnoczi } 5003dcd04228SStefan Hajnoczi if (bs->drv->bdrv_attach_aio_context) { 5004dcd04228SStefan Hajnoczi bs->drv->bdrv_attach_aio_context(bs, new_context); 5005dcd04228SStefan Hajnoczi } 500633384421SMax Reitz 5007e8a095daSStefan Hajnoczi assert(!bs->walking_aio_notifiers); 5008e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = true; 5009e8a095daSStefan Hajnoczi QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) { 5010e8a095daSStefan Hajnoczi if (ban->deleted) { 5011e8a095daSStefan Hajnoczi bdrv_do_remove_aio_context_notifier(ban); 5012e8a095daSStefan Hajnoczi } else { 501333384421SMax Reitz ban->attached_aio_context(new_context, ban->opaque); 501433384421SMax Reitz } 5015dcd04228SStefan Hajnoczi } 5016e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = false; 5017e8a095daSStefan Hajnoczi } 5018dcd04228SStefan Hajnoczi 5019dcd04228SStefan Hajnoczi void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context) 5020dcd04228SStefan Hajnoczi { 5021aabf5910SFam Zheng AioContext *ctx = bdrv_get_aio_context(bs); 5022c2b6428dSPaolo Bonzini 5023aabf5910SFam Zheng aio_disable_external(ctx); 50246cd5c9d7SKevin Wolf bdrv_parent_drained_begin(bs, NULL, false); 502553ec73e2SFam Zheng bdrv_drain(bs); /* ensure there are no in-flight requests */ 5026dcd04228SStefan Hajnoczi 5027c2b6428dSPaolo Bonzini while (aio_poll(ctx, false)) { 5028c2b6428dSPaolo Bonzini /* wait for all bottom halves to execute */ 5029c2b6428dSPaolo Bonzini } 5030c2b6428dSPaolo Bonzini 5031dcd04228SStefan Hajnoczi bdrv_detach_aio_context(bs); 5032dcd04228SStefan Hajnoczi 5033dcd04228SStefan Hajnoczi /* This function executes in the old AioContext so acquire the new one in 5034dcd04228SStefan Hajnoczi * case it runs in a different thread. 5035dcd04228SStefan Hajnoczi */ 5036dcd04228SStefan Hajnoczi aio_context_acquire(new_context); 5037dcd04228SStefan Hajnoczi bdrv_attach_aio_context(bs, new_context); 50386cd5c9d7SKevin Wolf bdrv_parent_drained_end(bs, NULL, false); 5039aabf5910SFam Zheng aio_enable_external(ctx); 5040dcd04228SStefan Hajnoczi aio_context_release(new_context); 504185d126f3SStefan Hajnoczi } 5042d616b224SStefan Hajnoczi 504333384421SMax Reitz void bdrv_add_aio_context_notifier(BlockDriverState *bs, 504433384421SMax Reitz void (*attached_aio_context)(AioContext *new_context, void *opaque), 504533384421SMax Reitz void (*detach_aio_context)(void *opaque), void *opaque) 504633384421SMax Reitz { 504733384421SMax Reitz BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1); 504833384421SMax Reitz *ban = (BdrvAioNotifier){ 504933384421SMax Reitz .attached_aio_context = attached_aio_context, 505033384421SMax Reitz .detach_aio_context = detach_aio_context, 505133384421SMax Reitz .opaque = opaque 505233384421SMax Reitz }; 505333384421SMax Reitz 505433384421SMax Reitz QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list); 505533384421SMax Reitz } 505633384421SMax Reitz 505733384421SMax Reitz void bdrv_remove_aio_context_notifier(BlockDriverState *bs, 505833384421SMax Reitz void (*attached_aio_context)(AioContext *, 505933384421SMax Reitz void *), 506033384421SMax Reitz void (*detach_aio_context)(void *), 506133384421SMax Reitz void *opaque) 506233384421SMax Reitz { 506333384421SMax Reitz BdrvAioNotifier *ban, *ban_next; 506433384421SMax Reitz 506533384421SMax Reitz QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 506633384421SMax Reitz if (ban->attached_aio_context == attached_aio_context && 506733384421SMax Reitz ban->detach_aio_context == detach_aio_context && 5068e8a095daSStefan Hajnoczi ban->opaque == opaque && 5069e8a095daSStefan Hajnoczi ban->deleted == false) 507033384421SMax Reitz { 5071e8a095daSStefan Hajnoczi if (bs->walking_aio_notifiers) { 5072e8a095daSStefan Hajnoczi ban->deleted = true; 5073e8a095daSStefan Hajnoczi } else { 5074e8a095daSStefan Hajnoczi bdrv_do_remove_aio_context_notifier(ban); 5075e8a095daSStefan Hajnoczi } 507633384421SMax Reitz return; 507733384421SMax Reitz } 507833384421SMax Reitz } 507933384421SMax Reitz 508033384421SMax Reitz abort(); 508133384421SMax Reitz } 508233384421SMax Reitz 508377485434SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts, 5084d1402b50SMax Reitz BlockDriverAmendStatusCB *status_cb, void *cb_opaque, 5085d1402b50SMax Reitz Error **errp) 50866f176b48SMax Reitz { 5087d470ad42SMax Reitz if (!bs->drv) { 5088d1402b50SMax Reitz error_setg(errp, "Node is ejected"); 5089d470ad42SMax Reitz return -ENOMEDIUM; 5090d470ad42SMax Reitz } 5091c282e1fdSChunyan Liu if (!bs->drv->bdrv_amend_options) { 5092d1402b50SMax Reitz error_setg(errp, "Block driver '%s' does not support option amendment", 5093d1402b50SMax Reitz bs->drv->format_name); 50946f176b48SMax Reitz return -ENOTSUP; 50956f176b48SMax Reitz } 5096d1402b50SMax Reitz return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque, errp); 50976f176b48SMax Reitz } 5098f6186f49SBenoît Canet 5099b5042a36SBenoît Canet /* This function will be called by the bdrv_recurse_is_first_non_filter method 5100b5042a36SBenoît Canet * of block filter and by bdrv_is_first_non_filter. 5101b5042a36SBenoît Canet * It is used to test if the given bs is the candidate or recurse more in the 5102b5042a36SBenoît Canet * node graph. 5103212a5a8fSBenoît Canet */ 5104212a5a8fSBenoît Canet bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs, 5105212a5a8fSBenoît Canet BlockDriverState *candidate) 5106f6186f49SBenoît Canet { 5107b5042a36SBenoît Canet /* return false if basic checks fails */ 5108b5042a36SBenoît Canet if (!bs || !bs->drv) { 5109b5042a36SBenoît Canet return false; 5110b5042a36SBenoît Canet } 5111b5042a36SBenoît Canet 5112b5042a36SBenoît Canet /* the code reached a non block filter driver -> check if the bs is 5113b5042a36SBenoît Canet * the same as the candidate. It's the recursion termination condition. 5114b5042a36SBenoît Canet */ 5115b5042a36SBenoît Canet if (!bs->drv->is_filter) { 5116b5042a36SBenoît Canet return bs == candidate; 5117b5042a36SBenoît Canet } 5118b5042a36SBenoît Canet /* Down this path the driver is a block filter driver */ 5119b5042a36SBenoît Canet 5120b5042a36SBenoît Canet /* If the block filter recursion method is defined use it to recurse down 5121b5042a36SBenoît Canet * the node graph. 5122b5042a36SBenoît Canet */ 5123b5042a36SBenoît Canet if (bs->drv->bdrv_recurse_is_first_non_filter) { 5124212a5a8fSBenoît Canet return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate); 5125212a5a8fSBenoît Canet } 5126212a5a8fSBenoît Canet 5127b5042a36SBenoît Canet /* the driver is a block filter but don't allow to recurse -> return false 5128b5042a36SBenoît Canet */ 5129b5042a36SBenoît Canet return false; 5130212a5a8fSBenoît Canet } 5131212a5a8fSBenoît Canet 5132212a5a8fSBenoît Canet /* This function checks if the candidate is the first non filter bs down it's 5133212a5a8fSBenoît Canet * bs chain. Since we don't have pointers to parents it explore all bs chains 5134212a5a8fSBenoît Canet * from the top. Some filters can choose not to pass down the recursion. 5135212a5a8fSBenoît Canet */ 5136212a5a8fSBenoît Canet bool bdrv_is_first_non_filter(BlockDriverState *candidate) 5137212a5a8fSBenoît Canet { 51387c8eece4SKevin Wolf BlockDriverState *bs; 513988be7b4bSKevin Wolf BdrvNextIterator it; 5140212a5a8fSBenoît Canet 5141212a5a8fSBenoît Canet /* walk down the bs forest recursively */ 514288be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 5143212a5a8fSBenoît Canet bool perm; 5144212a5a8fSBenoît Canet 5145b5042a36SBenoît Canet /* try to recurse in this top level bs */ 5146e6dc8a1fSKevin Wolf perm = bdrv_recurse_is_first_non_filter(bs, candidate); 5147212a5a8fSBenoît Canet 5148212a5a8fSBenoît Canet /* candidate is the first non filter */ 5149212a5a8fSBenoît Canet if (perm) { 51505e003f17SMax Reitz bdrv_next_cleanup(&it); 5151212a5a8fSBenoît Canet return true; 5152212a5a8fSBenoît Canet } 5153212a5a8fSBenoît Canet } 5154212a5a8fSBenoît Canet 5155212a5a8fSBenoît Canet return false; 5156f6186f49SBenoît Canet } 515709158f00SBenoît Canet 5158e12f3784SWen Congyang BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs, 5159e12f3784SWen Congyang const char *node_name, Error **errp) 516009158f00SBenoît Canet { 516109158f00SBenoît Canet BlockDriverState *to_replace_bs = bdrv_find_node(node_name); 51625a7e7a0bSStefan Hajnoczi AioContext *aio_context; 51635a7e7a0bSStefan Hajnoczi 516409158f00SBenoît Canet if (!to_replace_bs) { 516509158f00SBenoît Canet error_setg(errp, "Node name '%s' not found", node_name); 516609158f00SBenoît Canet return NULL; 516709158f00SBenoît Canet } 516809158f00SBenoît Canet 51695a7e7a0bSStefan Hajnoczi aio_context = bdrv_get_aio_context(to_replace_bs); 51705a7e7a0bSStefan Hajnoczi aio_context_acquire(aio_context); 51715a7e7a0bSStefan Hajnoczi 517209158f00SBenoît Canet if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) { 51735a7e7a0bSStefan Hajnoczi to_replace_bs = NULL; 51745a7e7a0bSStefan Hajnoczi goto out; 517509158f00SBenoît Canet } 517609158f00SBenoît Canet 517709158f00SBenoît Canet /* We don't want arbitrary node of the BDS chain to be replaced only the top 517809158f00SBenoît Canet * most non filter in order to prevent data corruption. 517909158f00SBenoît Canet * Another benefit is that this tests exclude backing files which are 518009158f00SBenoît Canet * blocked by the backing blockers. 518109158f00SBenoît Canet */ 5182e12f3784SWen Congyang if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) { 518309158f00SBenoît Canet error_setg(errp, "Only top most non filter can be replaced"); 51845a7e7a0bSStefan Hajnoczi to_replace_bs = NULL; 51855a7e7a0bSStefan Hajnoczi goto out; 518609158f00SBenoît Canet } 518709158f00SBenoît Canet 51885a7e7a0bSStefan Hajnoczi out: 51895a7e7a0bSStefan Hajnoczi aio_context_release(aio_context); 519009158f00SBenoît Canet return to_replace_bs; 519109158f00SBenoît Canet } 5192448ad91dSMing Lei 519391af7014SMax Reitz static bool append_open_options(QDict *d, BlockDriverState *bs) 519491af7014SMax Reitz { 519591af7014SMax Reitz const QDictEntry *entry; 51969e700c1aSKevin Wolf QemuOptDesc *desc; 519791af7014SMax Reitz bool found_any = false; 519891af7014SMax Reitz 519991af7014SMax Reitz for (entry = qdict_first(bs->options); entry; 520091af7014SMax Reitz entry = qdict_next(bs->options, entry)) 520191af7014SMax Reitz { 5202a600aaddSAlberto Garcia /* Exclude all non-driver-specific options */ 52039e700c1aSKevin Wolf for (desc = bdrv_runtime_opts.desc; desc->name; desc++) { 52049e700c1aSKevin Wolf if (!strcmp(qdict_entry_key(entry), desc->name)) { 52059e700c1aSKevin Wolf break; 52069e700c1aSKevin Wolf } 52079e700c1aSKevin Wolf } 52089e700c1aSKevin Wolf if (desc->name) { 52099e700c1aSKevin Wolf continue; 52109e700c1aSKevin Wolf } 52119e700c1aSKevin Wolf 5212f5a74a5aSMarc-André Lureau qdict_put_obj(d, qdict_entry_key(entry), 5213f5a74a5aSMarc-André Lureau qobject_ref(qdict_entry_value(entry))); 521491af7014SMax Reitz found_any = true; 521591af7014SMax Reitz } 521691af7014SMax Reitz 521791af7014SMax Reitz return found_any; 521891af7014SMax Reitz } 521991af7014SMax Reitz 522091af7014SMax Reitz /* Updates the following BDS fields: 522191af7014SMax Reitz * - exact_filename: A filename which may be used for opening a block device 522291af7014SMax Reitz * which (mostly) equals the given BDS (even without any 522391af7014SMax Reitz * other options; so reading and writing must return the same 522491af7014SMax Reitz * results, but caching etc. may be different) 522591af7014SMax Reitz * - full_open_options: Options which, when given when opening a block device 522691af7014SMax Reitz * (without a filename), result in a BDS (mostly) 522791af7014SMax Reitz * equalling the given one 522891af7014SMax Reitz * - filename: If exact_filename is set, it is copied here. Otherwise, 522991af7014SMax Reitz * full_open_options is converted to a JSON object, prefixed with 523091af7014SMax Reitz * "json:" (for use through the JSON pseudo protocol) and put here. 523191af7014SMax Reitz */ 523291af7014SMax Reitz void bdrv_refresh_filename(BlockDriverState *bs) 523391af7014SMax Reitz { 523491af7014SMax Reitz BlockDriver *drv = bs->drv; 523591af7014SMax Reitz QDict *opts; 523691af7014SMax Reitz 523791af7014SMax Reitz if (!drv) { 523891af7014SMax Reitz return; 523991af7014SMax Reitz } 524091af7014SMax Reitz 524191af7014SMax Reitz /* This BDS's file name will most probably depend on its file's name, so 524291af7014SMax Reitz * refresh that first */ 524391af7014SMax Reitz if (bs->file) { 52449a4f4c31SKevin Wolf bdrv_refresh_filename(bs->file->bs); 524591af7014SMax Reitz } 524691af7014SMax Reitz 524791af7014SMax Reitz if (drv->bdrv_refresh_filename) { 524891af7014SMax Reitz /* Obsolete information is of no use here, so drop the old file name 524991af7014SMax Reitz * information before refreshing it */ 525091af7014SMax Reitz bs->exact_filename[0] = '\0'; 525191af7014SMax Reitz if (bs->full_open_options) { 5252cb3e7f08SMarc-André Lureau qobject_unref(bs->full_open_options); 525391af7014SMax Reitz bs->full_open_options = NULL; 525491af7014SMax Reitz } 525591af7014SMax Reitz 52564cdd01d3SKevin Wolf opts = qdict_new(); 52574cdd01d3SKevin Wolf append_open_options(opts, bs); 52584cdd01d3SKevin Wolf drv->bdrv_refresh_filename(bs, opts); 5259cb3e7f08SMarc-André Lureau qobject_unref(opts); 526091af7014SMax Reitz } else if (bs->file) { 526191af7014SMax Reitz /* Try to reconstruct valid information from the underlying file */ 526291af7014SMax Reitz bool has_open_options; 526391af7014SMax Reitz 526491af7014SMax Reitz bs->exact_filename[0] = '\0'; 526591af7014SMax Reitz if (bs->full_open_options) { 5266cb3e7f08SMarc-André Lureau qobject_unref(bs->full_open_options); 526791af7014SMax Reitz bs->full_open_options = NULL; 526891af7014SMax Reitz } 526991af7014SMax Reitz 527091af7014SMax Reitz opts = qdict_new(); 527191af7014SMax Reitz has_open_options = append_open_options(opts, bs); 527291af7014SMax Reitz 527391af7014SMax Reitz /* If no specific options have been given for this BDS, the filename of 527491af7014SMax Reitz * the underlying file should suffice for this one as well */ 52759a4f4c31SKevin Wolf if (bs->file->bs->exact_filename[0] && !has_open_options) { 52769a4f4c31SKevin Wolf strcpy(bs->exact_filename, bs->file->bs->exact_filename); 527791af7014SMax Reitz } 527891af7014SMax Reitz /* Reconstructing the full options QDict is simple for most format block 527991af7014SMax Reitz * drivers, as long as the full options are known for the underlying 528091af7014SMax Reitz * file BDS. The full options QDict of that file BDS should somehow 528191af7014SMax Reitz * contain a representation of the filename, therefore the following 528291af7014SMax Reitz * suffices without querying the (exact_)filename of this BDS. */ 52839a4f4c31SKevin Wolf if (bs->file->bs->full_open_options) { 528446f5ac20SEric Blake qdict_put_str(opts, "driver", drv->format_name); 5285f5a74a5aSMarc-André Lureau qdict_put(opts, "file", 5286f5a74a5aSMarc-André Lureau qobject_ref(bs->file->bs->full_open_options)); 528791af7014SMax Reitz 528891af7014SMax Reitz bs->full_open_options = opts; 528991af7014SMax Reitz } else { 5290cb3e7f08SMarc-André Lureau qobject_unref(opts); 529191af7014SMax Reitz } 529291af7014SMax Reitz } else if (!bs->full_open_options && qdict_size(bs->options)) { 529391af7014SMax Reitz /* There is no underlying file BDS (at least referenced by BDS.file), 529491af7014SMax Reitz * so the full options QDict should be equal to the options given 529591af7014SMax Reitz * specifically for this block device when it was opened (plus the 529691af7014SMax Reitz * driver specification). 529791af7014SMax Reitz * Because those options don't change, there is no need to update 529891af7014SMax Reitz * full_open_options when it's already set. */ 529991af7014SMax Reitz 530091af7014SMax Reitz opts = qdict_new(); 530191af7014SMax Reitz append_open_options(opts, bs); 530246f5ac20SEric Blake qdict_put_str(opts, "driver", drv->format_name); 530391af7014SMax Reitz 530491af7014SMax Reitz if (bs->exact_filename[0]) { 530591af7014SMax Reitz /* This may not work for all block protocol drivers (some may 530691af7014SMax Reitz * require this filename to be parsed), but we have to find some 530791af7014SMax Reitz * default solution here, so just include it. If some block driver 530891af7014SMax Reitz * does not support pure options without any filename at all or 530991af7014SMax Reitz * needs some special format of the options QDict, it needs to 531091af7014SMax Reitz * implement the driver-specific bdrv_refresh_filename() function. 531191af7014SMax Reitz */ 531246f5ac20SEric Blake qdict_put_str(opts, "filename", bs->exact_filename); 531391af7014SMax Reitz } 531491af7014SMax Reitz 531591af7014SMax Reitz bs->full_open_options = opts; 531691af7014SMax Reitz } 531791af7014SMax Reitz 531891af7014SMax Reitz if (bs->exact_filename[0]) { 531991af7014SMax Reitz pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename); 532091af7014SMax Reitz } else if (bs->full_open_options) { 532191af7014SMax Reitz QString *json = qobject_to_json(QOBJECT(bs->full_open_options)); 532291af7014SMax Reitz snprintf(bs->filename, sizeof(bs->filename), "json:%s", 532391af7014SMax Reitz qstring_get_str(json)); 5324cb3e7f08SMarc-André Lureau qobject_unref(json); 532591af7014SMax Reitz } 532691af7014SMax Reitz } 5327e06018adSWen Congyang 5328e06018adSWen Congyang /* 5329e06018adSWen Congyang * Hot add/remove a BDS's child. So the user can take a child offline when 5330e06018adSWen Congyang * it is broken and take a new child online 5331e06018adSWen Congyang */ 5332e06018adSWen Congyang void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs, 5333e06018adSWen Congyang Error **errp) 5334e06018adSWen Congyang { 5335e06018adSWen Congyang 5336e06018adSWen Congyang if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) { 5337e06018adSWen Congyang error_setg(errp, "The node %s does not support adding a child", 5338e06018adSWen Congyang bdrv_get_device_or_node_name(parent_bs)); 5339e06018adSWen Congyang return; 5340e06018adSWen Congyang } 5341e06018adSWen Congyang 5342e06018adSWen Congyang if (!QLIST_EMPTY(&child_bs->parents)) { 5343e06018adSWen Congyang error_setg(errp, "The node %s already has a parent", 5344e06018adSWen Congyang child_bs->node_name); 5345e06018adSWen Congyang return; 5346e06018adSWen Congyang } 5347e06018adSWen Congyang 5348e06018adSWen Congyang parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp); 5349e06018adSWen Congyang } 5350e06018adSWen Congyang 5351e06018adSWen Congyang void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp) 5352e06018adSWen Congyang { 5353e06018adSWen Congyang BdrvChild *tmp; 5354e06018adSWen Congyang 5355e06018adSWen Congyang if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) { 5356e06018adSWen Congyang error_setg(errp, "The node %s does not support removing a child", 5357e06018adSWen Congyang bdrv_get_device_or_node_name(parent_bs)); 5358e06018adSWen Congyang return; 5359e06018adSWen Congyang } 5360e06018adSWen Congyang 5361e06018adSWen Congyang QLIST_FOREACH(tmp, &parent_bs->children, next) { 5362e06018adSWen Congyang if (tmp == child) { 5363e06018adSWen Congyang break; 5364e06018adSWen Congyang } 5365e06018adSWen Congyang } 5366e06018adSWen Congyang 5367e06018adSWen Congyang if (!tmp) { 5368e06018adSWen Congyang error_setg(errp, "The node %s does not have a child named %s", 5369e06018adSWen Congyang bdrv_get_device_or_node_name(parent_bs), 5370e06018adSWen Congyang bdrv_get_device_or_node_name(child->bs)); 5371e06018adSWen Congyang return; 5372e06018adSWen Congyang } 5373e06018adSWen Congyang 5374e06018adSWen Congyang parent_bs->drv->bdrv_del_child(parent_bs, child, errp); 5375e06018adSWen Congyang } 537667b792f5SVladimir Sementsov-Ogievskiy 537767b792f5SVladimir Sementsov-Ogievskiy bool bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name, 537867b792f5SVladimir Sementsov-Ogievskiy uint32_t granularity, Error **errp) 537967b792f5SVladimir Sementsov-Ogievskiy { 538067b792f5SVladimir Sementsov-Ogievskiy BlockDriver *drv = bs->drv; 538167b792f5SVladimir Sementsov-Ogievskiy 538267b792f5SVladimir Sementsov-Ogievskiy if (!drv) { 538367b792f5SVladimir Sementsov-Ogievskiy error_setg_errno(errp, ENOMEDIUM, 538467b792f5SVladimir Sementsov-Ogievskiy "Can't store persistent bitmaps to %s", 538567b792f5SVladimir Sementsov-Ogievskiy bdrv_get_device_or_node_name(bs)); 538667b792f5SVladimir Sementsov-Ogievskiy return false; 538767b792f5SVladimir Sementsov-Ogievskiy } 538867b792f5SVladimir Sementsov-Ogievskiy 538967b792f5SVladimir Sementsov-Ogievskiy if (!drv->bdrv_can_store_new_dirty_bitmap) { 539067b792f5SVladimir Sementsov-Ogievskiy error_setg_errno(errp, ENOTSUP, 539167b792f5SVladimir Sementsov-Ogievskiy "Can't store persistent bitmaps to %s", 539267b792f5SVladimir Sementsov-Ogievskiy bdrv_get_device_or_node_name(bs)); 539367b792f5SVladimir Sementsov-Ogievskiy return false; 539467b792f5SVladimir Sementsov-Ogievskiy } 539567b792f5SVladimir Sementsov-Ogievskiy 539667b792f5SVladimir Sementsov-Ogievskiy return drv->bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp); 539767b792f5SVladimir Sementsov-Ogievskiy } 5398