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" 30d49b6836SMarkus Armbruster #include "qemu/error-report.h" 3188d88798SMarc Mari #include "module_block.h" 321de7afc9SPaolo Bonzini #include "qemu/module.h" 33e688df6bSMarkus Armbruster #include "qapi/error.h" 34452fcdbcSMarkus Armbruster #include "qapi/qmp/qdict.h" 357b1b5d19SPaolo Bonzini #include "qapi/qmp/qjson.h" 36fc81fa1eSMarkus Armbruster #include "qapi/qmp/qstring.h" 37bfb197e0SMarkus Armbruster #include "sysemu/block-backend.h" 389c17d615SPaolo Bonzini #include "sysemu/sysemu.h" 391de7afc9SPaolo Bonzini #include "qemu/notify.h" 40922a01a0SMarkus Armbruster #include "qemu/option.h" 4110817bf0SDaniel P. Berrange #include "qemu/coroutine.h" 42c13163fbSBenoît Canet #include "block/qapi.h" 431de7afc9SPaolo Bonzini #include "qemu/timer.h" 44f348b6d1SVeronia Bahaa #include "qemu/cutils.h" 45f348b6d1SVeronia Bahaa #include "qemu/id.h" 46fc01f7e7Sbellard 4771e72a19SJuan Quintela #ifdef CONFIG_BSD 487674e7bfSbellard #include <sys/ioctl.h> 4972cf2d4fSBlue Swirl #include <sys/queue.h> 50c5e97233Sblueswir1 #ifndef __DragonFly__ 517674e7bfSbellard #include <sys/disk.h> 527674e7bfSbellard #endif 53c5e97233Sblueswir1 #endif 547674e7bfSbellard 5549dc768dSaliguori #ifdef _WIN32 5649dc768dSaliguori #include <windows.h> 5749dc768dSaliguori #endif 5849dc768dSaliguori 591c9805a3SStefan Hajnoczi #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */ 601c9805a3SStefan Hajnoczi 61dc364f4cSBenoît Canet static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states = 62dc364f4cSBenoît Canet QTAILQ_HEAD_INITIALIZER(graph_bdrv_states); 63dc364f4cSBenoît Canet 642c1d04e0SMax Reitz static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states = 652c1d04e0SMax Reitz QTAILQ_HEAD_INITIALIZER(all_bdrv_states); 662c1d04e0SMax Reitz 678a22f02aSStefan Hajnoczi static QLIST_HEAD(, BlockDriver) bdrv_drivers = 688a22f02aSStefan Hajnoczi QLIST_HEAD_INITIALIZER(bdrv_drivers); 69ea2384d3Sbellard 705b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename, 715b363937SMax Reitz const char *reference, 725b363937SMax Reitz QDict *options, int flags, 73f3930ed0SKevin Wolf BlockDriverState *parent, 745b363937SMax Reitz const BdrvChildRole *child_role, 755b363937SMax Reitz Error **errp); 76f3930ed0SKevin Wolf 77eb852011SMarkus Armbruster /* If non-zero, use only whitelisted block drivers */ 78eb852011SMarkus Armbruster static int use_bdrv_whitelist; 79eb852011SMarkus Armbruster 809e0b22f4SStefan Hajnoczi #ifdef _WIN32 819e0b22f4SStefan Hajnoczi static int is_windows_drive_prefix(const char *filename) 829e0b22f4SStefan Hajnoczi { 839e0b22f4SStefan Hajnoczi return (((filename[0] >= 'a' && filename[0] <= 'z') || 849e0b22f4SStefan Hajnoczi (filename[0] >= 'A' && filename[0] <= 'Z')) && 859e0b22f4SStefan Hajnoczi filename[1] == ':'); 869e0b22f4SStefan Hajnoczi } 879e0b22f4SStefan Hajnoczi 889e0b22f4SStefan Hajnoczi int is_windows_drive(const char *filename) 899e0b22f4SStefan Hajnoczi { 909e0b22f4SStefan Hajnoczi if (is_windows_drive_prefix(filename) && 919e0b22f4SStefan Hajnoczi filename[2] == '\0') 929e0b22f4SStefan Hajnoczi return 1; 939e0b22f4SStefan Hajnoczi if (strstart(filename, "\\\\.\\", NULL) || 949e0b22f4SStefan Hajnoczi strstart(filename, "//./", NULL)) 959e0b22f4SStefan Hajnoczi return 1; 969e0b22f4SStefan Hajnoczi return 0; 979e0b22f4SStefan Hajnoczi } 989e0b22f4SStefan Hajnoczi #endif 999e0b22f4SStefan Hajnoczi 100339064d5SKevin Wolf size_t bdrv_opt_mem_align(BlockDriverState *bs) 101339064d5SKevin Wolf { 102339064d5SKevin Wolf if (!bs || !bs->drv) { 103459b4e66SDenis V. Lunev /* page size or 4k (hdd sector size) should be on the safe side */ 104459b4e66SDenis V. Lunev return MAX(4096, getpagesize()); 105339064d5SKevin Wolf } 106339064d5SKevin Wolf 107339064d5SKevin Wolf return bs->bl.opt_mem_alignment; 108339064d5SKevin Wolf } 109339064d5SKevin Wolf 1104196d2f0SDenis V. Lunev size_t bdrv_min_mem_align(BlockDriverState *bs) 1114196d2f0SDenis V. Lunev { 1124196d2f0SDenis V. Lunev if (!bs || !bs->drv) { 113459b4e66SDenis V. Lunev /* page size or 4k (hdd sector size) should be on the safe side */ 114459b4e66SDenis V. Lunev return MAX(4096, getpagesize()); 1154196d2f0SDenis V. Lunev } 1164196d2f0SDenis V. Lunev 1174196d2f0SDenis V. Lunev return bs->bl.min_mem_alignment; 1184196d2f0SDenis V. Lunev } 1194196d2f0SDenis V. Lunev 1209e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */ 1215c98415bSMax Reitz int path_has_protocol(const char *path) 1229e0b22f4SStefan Hajnoczi { 123947995c0SPaolo Bonzini const char *p; 124947995c0SPaolo Bonzini 1259e0b22f4SStefan Hajnoczi #ifdef _WIN32 1269e0b22f4SStefan Hajnoczi if (is_windows_drive(path) || 1279e0b22f4SStefan Hajnoczi is_windows_drive_prefix(path)) { 1289e0b22f4SStefan Hajnoczi return 0; 1299e0b22f4SStefan Hajnoczi } 130947995c0SPaolo Bonzini p = path + strcspn(path, ":/\\"); 131947995c0SPaolo Bonzini #else 132947995c0SPaolo Bonzini p = path + strcspn(path, ":/"); 1339e0b22f4SStefan Hajnoczi #endif 1349e0b22f4SStefan Hajnoczi 135947995c0SPaolo Bonzini return *p == ':'; 1369e0b22f4SStefan Hajnoczi } 1379e0b22f4SStefan Hajnoczi 13883f64091Sbellard int path_is_absolute(const char *path) 13983f64091Sbellard { 14021664424Sbellard #ifdef _WIN32 14121664424Sbellard /* specific case for names like: "\\.\d:" */ 142f53f4da9SPaolo Bonzini if (is_windows_drive(path) || is_windows_drive_prefix(path)) { 14321664424Sbellard return 1; 144f53f4da9SPaolo Bonzini } 145f53f4da9SPaolo Bonzini return (*path == '/' || *path == '\\'); 1463b9f94e1Sbellard #else 147f53f4da9SPaolo Bonzini return (*path == '/'); 1483b9f94e1Sbellard #endif 14983f64091Sbellard } 15083f64091Sbellard 15183f64091Sbellard /* if filename is absolute, just copy it to dest. Otherwise, build a 15283f64091Sbellard path to it by considering it is relative to base_path. URL are 15383f64091Sbellard supported. */ 15483f64091Sbellard void path_combine(char *dest, int dest_size, 15583f64091Sbellard const char *base_path, 15683f64091Sbellard const char *filename) 15783f64091Sbellard { 15883f64091Sbellard const char *p, *p1; 15983f64091Sbellard int len; 16083f64091Sbellard 16183f64091Sbellard if (dest_size <= 0) 16283f64091Sbellard return; 16383f64091Sbellard if (path_is_absolute(filename)) { 16483f64091Sbellard pstrcpy(dest, dest_size, filename); 16583f64091Sbellard } else { 1660d54a6feSMax Reitz const char *protocol_stripped = NULL; 1670d54a6feSMax Reitz 1680d54a6feSMax Reitz if (path_has_protocol(base_path)) { 1690d54a6feSMax Reitz protocol_stripped = strchr(base_path, ':'); 1700d54a6feSMax Reitz if (protocol_stripped) { 1710d54a6feSMax Reitz protocol_stripped++; 1720d54a6feSMax Reitz } 1730d54a6feSMax Reitz } 1740d54a6feSMax Reitz p = protocol_stripped ?: base_path; 1750d54a6feSMax Reitz 1763b9f94e1Sbellard p1 = strrchr(base_path, '/'); 1773b9f94e1Sbellard #ifdef _WIN32 1783b9f94e1Sbellard { 1793b9f94e1Sbellard const char *p2; 1803b9f94e1Sbellard p2 = strrchr(base_path, '\\'); 1813b9f94e1Sbellard if (!p1 || p2 > p1) 1823b9f94e1Sbellard p1 = p2; 1833b9f94e1Sbellard } 1843b9f94e1Sbellard #endif 18583f64091Sbellard if (p1) 18683f64091Sbellard p1++; 18783f64091Sbellard else 18883f64091Sbellard p1 = base_path; 18983f64091Sbellard if (p1 > p) 19083f64091Sbellard p = p1; 19183f64091Sbellard len = p - base_path; 19283f64091Sbellard if (len > dest_size - 1) 19383f64091Sbellard len = dest_size - 1; 19483f64091Sbellard memcpy(dest, base_path, len); 19583f64091Sbellard dest[len] = '\0'; 19683f64091Sbellard pstrcat(dest, dest_size, filename); 19783f64091Sbellard } 19883f64091Sbellard } 19983f64091Sbellard 20003c320d8SMax Reitz /* 20103c320d8SMax Reitz * Helper function for bdrv_parse_filename() implementations to remove optional 20203c320d8SMax Reitz * protocol prefixes (especially "file:") from a filename and for putting the 20303c320d8SMax Reitz * stripped filename into the options QDict if there is such a prefix. 20403c320d8SMax Reitz */ 20503c320d8SMax Reitz void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix, 20603c320d8SMax Reitz QDict *options) 20703c320d8SMax Reitz { 20803c320d8SMax Reitz if (strstart(filename, prefix, &filename)) { 20903c320d8SMax Reitz /* Stripping the explicit protocol prefix may result in a protocol 21003c320d8SMax Reitz * prefix being (wrongly) detected (if the filename contains a colon) */ 21103c320d8SMax Reitz if (path_has_protocol(filename)) { 21203c320d8SMax Reitz QString *fat_filename; 21303c320d8SMax Reitz 21403c320d8SMax Reitz /* This means there is some colon before the first slash; therefore, 21503c320d8SMax Reitz * this cannot be an absolute path */ 21603c320d8SMax Reitz assert(!path_is_absolute(filename)); 21703c320d8SMax Reitz 21803c320d8SMax Reitz /* And we can thus fix the protocol detection issue by prefixing it 21903c320d8SMax Reitz * by "./" */ 22003c320d8SMax Reitz fat_filename = qstring_from_str("./"); 22103c320d8SMax Reitz qstring_append(fat_filename, filename); 22203c320d8SMax Reitz 22303c320d8SMax Reitz assert(!path_has_protocol(qstring_get_str(fat_filename))); 22403c320d8SMax Reitz 22503c320d8SMax Reitz qdict_put(options, "filename", fat_filename); 22603c320d8SMax Reitz } else { 22703c320d8SMax Reitz /* If no protocol prefix was detected, we can use the shortened 22803c320d8SMax Reitz * filename as-is */ 22903c320d8SMax Reitz qdict_put_str(options, "filename", filename); 23003c320d8SMax Reitz } 23103c320d8SMax Reitz } 23203c320d8SMax Reitz } 23303c320d8SMax Reitz 23403c320d8SMax Reitz 2359c5e6594SKevin Wolf /* Returns whether the image file is opened as read-only. Note that this can 2369c5e6594SKevin Wolf * return false and writing to the image file is still not possible because the 2379c5e6594SKevin Wolf * image is inactivated. */ 23893ed524eSJeff Cody bool bdrv_is_read_only(BlockDriverState *bs) 23993ed524eSJeff Cody { 24093ed524eSJeff Cody return bs->read_only; 24193ed524eSJeff Cody } 24293ed524eSJeff Cody 24354a32bfeSKevin Wolf int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only, 24454a32bfeSKevin Wolf bool ignore_allow_rdw, Error **errp) 245fe5241bfSJeff Cody { 246e2b8247aSJeff Cody /* Do not set read_only if copy_on_read is enabled */ 247e2b8247aSJeff Cody if (bs->copy_on_read && read_only) { 248e2b8247aSJeff Cody error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled", 249e2b8247aSJeff Cody bdrv_get_device_or_node_name(bs)); 250e2b8247aSJeff Cody return -EINVAL; 251e2b8247aSJeff Cody } 252e2b8247aSJeff Cody 253d6fcdf06SJeff Cody /* Do not clear read_only if it is prohibited */ 25454a32bfeSKevin Wolf if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) && 25554a32bfeSKevin Wolf !ignore_allow_rdw) 25654a32bfeSKevin Wolf { 257d6fcdf06SJeff Cody error_setg(errp, "Node '%s' is read only", 258d6fcdf06SJeff Cody bdrv_get_device_or_node_name(bs)); 259d6fcdf06SJeff Cody return -EPERM; 260d6fcdf06SJeff Cody } 261d6fcdf06SJeff Cody 26245803a03SJeff Cody return 0; 26345803a03SJeff Cody } 26445803a03SJeff Cody 265398e6ad0SKevin Wolf /* TODO Remove (deprecated since 2.11) 266398e6ad0SKevin Wolf * Block drivers are not supposed to automatically change bs->read_only. 267398e6ad0SKevin Wolf * Instead, they should just check whether they can provide what the user 268398e6ad0SKevin Wolf * explicitly requested and error out if read-write is requested, but they can 269398e6ad0SKevin Wolf * only provide read-only access. */ 27045803a03SJeff Cody int bdrv_set_read_only(BlockDriverState *bs, bool read_only, Error **errp) 27145803a03SJeff Cody { 27245803a03SJeff Cody int ret = 0; 27345803a03SJeff Cody 27454a32bfeSKevin Wolf ret = bdrv_can_set_read_only(bs, read_only, false, errp); 27545803a03SJeff Cody if (ret < 0) { 27645803a03SJeff Cody return ret; 27745803a03SJeff Cody } 27845803a03SJeff Cody 279fe5241bfSJeff Cody bs->read_only = read_only; 280e2b8247aSJeff Cody return 0; 281fe5241bfSJeff Cody } 282fe5241bfSJeff Cody 2830a82855aSMax Reitz void bdrv_get_full_backing_filename_from_filename(const char *backed, 2840a82855aSMax Reitz const char *backing, 2859f07429eSMax Reitz char *dest, size_t sz, 2869f07429eSMax Reitz Error **errp) 2870a82855aSMax Reitz { 2889f07429eSMax Reitz if (backing[0] == '\0' || path_has_protocol(backing) || 2899f07429eSMax Reitz path_is_absolute(backing)) 2909f07429eSMax Reitz { 2910a82855aSMax Reitz pstrcpy(dest, sz, backing); 2929f07429eSMax Reitz } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) { 2939f07429eSMax Reitz error_setg(errp, "Cannot use relative backing file names for '%s'", 2949f07429eSMax Reitz backed); 2950a82855aSMax Reitz } else { 2960a82855aSMax Reitz path_combine(dest, sz, backed, backing); 2970a82855aSMax Reitz } 2980a82855aSMax Reitz } 2990a82855aSMax Reitz 3009f07429eSMax Reitz void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz, 3019f07429eSMax Reitz Error **errp) 302dc5a1371SPaolo Bonzini { 3039f07429eSMax Reitz char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename; 3049f07429eSMax Reitz 3059f07429eSMax Reitz bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file, 3069f07429eSMax Reitz dest, sz, errp); 307dc5a1371SPaolo Bonzini } 308dc5a1371SPaolo Bonzini 3090eb7217eSStefan Hajnoczi void bdrv_register(BlockDriver *bdrv) 3100eb7217eSStefan Hajnoczi { 3118a22f02aSStefan Hajnoczi QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list); 312ea2384d3Sbellard } 313b338082bSbellard 314e4e9986bSMarkus Armbruster BlockDriverState *bdrv_new(void) 315e4e9986bSMarkus Armbruster { 316e4e9986bSMarkus Armbruster BlockDriverState *bs; 317e4e9986bSMarkus Armbruster int i; 318e4e9986bSMarkus Armbruster 3195839e53bSMarkus Armbruster bs = g_new0(BlockDriverState, 1); 320e4654d2dSFam Zheng QLIST_INIT(&bs->dirty_bitmaps); 321fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 322fbe40ff7SFam Zheng QLIST_INIT(&bs->op_blockers[i]); 323fbe40ff7SFam Zheng } 324d616b224SStefan Hajnoczi notifier_with_return_list_init(&bs->before_write_notifiers); 3253783fa3dSPaolo Bonzini qemu_co_mutex_init(&bs->reqs_lock); 3262119882cSPaolo Bonzini qemu_mutex_init(&bs->dirty_bitmap_mutex); 3279fcb0251SFam Zheng bs->refcnt = 1; 328dcd04228SStefan Hajnoczi bs->aio_context = qemu_get_aio_context(); 329d7d512f6SPaolo Bonzini 3303ff2f67aSEvgeny Yakovlev qemu_co_queue_init(&bs->flush_queue); 3313ff2f67aSEvgeny Yakovlev 3322c1d04e0SMax Reitz QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list); 3332c1d04e0SMax Reitz 334b338082bSbellard return bs; 335b338082bSbellard } 336b338082bSbellard 33788d88798SMarc Mari static BlockDriver *bdrv_do_find_format(const char *format_name) 338ea2384d3Sbellard { 339ea2384d3Sbellard BlockDriver *drv1; 34088d88798SMarc Mari 3418a22f02aSStefan Hajnoczi QLIST_FOREACH(drv1, &bdrv_drivers, list) { 3428a22f02aSStefan Hajnoczi if (!strcmp(drv1->format_name, format_name)) { 343ea2384d3Sbellard return drv1; 344ea2384d3Sbellard } 3458a22f02aSStefan Hajnoczi } 34688d88798SMarc Mari 347ea2384d3Sbellard return NULL; 348ea2384d3Sbellard } 349ea2384d3Sbellard 35088d88798SMarc Mari BlockDriver *bdrv_find_format(const char *format_name) 35188d88798SMarc Mari { 35288d88798SMarc Mari BlockDriver *drv1; 35388d88798SMarc Mari int i; 35488d88798SMarc Mari 35588d88798SMarc Mari drv1 = bdrv_do_find_format(format_name); 35688d88798SMarc Mari if (drv1) { 35788d88798SMarc Mari return drv1; 35888d88798SMarc Mari } 35988d88798SMarc Mari 36088d88798SMarc Mari /* The driver isn't registered, maybe we need to load a module */ 36188d88798SMarc Mari for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { 36288d88798SMarc Mari if (!strcmp(block_driver_modules[i].format_name, format_name)) { 36388d88798SMarc Mari block_module_load_one(block_driver_modules[i].library_name); 36488d88798SMarc Mari break; 36588d88798SMarc Mari } 36688d88798SMarc Mari } 36788d88798SMarc Mari 36888d88798SMarc Mari return bdrv_do_find_format(format_name); 36988d88798SMarc Mari } 37088d88798SMarc Mari 371b64ec4e4SFam Zheng static int bdrv_is_whitelisted(BlockDriver *drv, bool read_only) 372eb852011SMarkus Armbruster { 373b64ec4e4SFam Zheng static const char *whitelist_rw[] = { 374b64ec4e4SFam Zheng CONFIG_BDRV_RW_WHITELIST 375b64ec4e4SFam Zheng }; 376b64ec4e4SFam Zheng static const char *whitelist_ro[] = { 377b64ec4e4SFam Zheng CONFIG_BDRV_RO_WHITELIST 378eb852011SMarkus Armbruster }; 379eb852011SMarkus Armbruster const char **p; 380eb852011SMarkus Armbruster 381b64ec4e4SFam Zheng if (!whitelist_rw[0] && !whitelist_ro[0]) { 382eb852011SMarkus Armbruster return 1; /* no whitelist, anything goes */ 383b64ec4e4SFam Zheng } 384eb852011SMarkus Armbruster 385b64ec4e4SFam Zheng for (p = whitelist_rw; *p; p++) { 386eb852011SMarkus Armbruster if (!strcmp(drv->format_name, *p)) { 387eb852011SMarkus Armbruster return 1; 388eb852011SMarkus Armbruster } 389eb852011SMarkus Armbruster } 390b64ec4e4SFam Zheng if (read_only) { 391b64ec4e4SFam Zheng for (p = whitelist_ro; *p; p++) { 392b64ec4e4SFam Zheng if (!strcmp(drv->format_name, *p)) { 393b64ec4e4SFam Zheng return 1; 394b64ec4e4SFam Zheng } 395b64ec4e4SFam Zheng } 396b64ec4e4SFam Zheng } 397eb852011SMarkus Armbruster return 0; 398eb852011SMarkus Armbruster } 399eb852011SMarkus Armbruster 400e6ff69bfSDaniel P. Berrange bool bdrv_uses_whitelist(void) 401e6ff69bfSDaniel P. Berrange { 402e6ff69bfSDaniel P. Berrange return use_bdrv_whitelist; 403e6ff69bfSDaniel P. Berrange } 404e6ff69bfSDaniel P. Berrange 4055b7e1542SZhi Yong Wu typedef struct CreateCo { 4065b7e1542SZhi Yong Wu BlockDriver *drv; 4075b7e1542SZhi Yong Wu char *filename; 40883d0521aSChunyan Liu QemuOpts *opts; 4095b7e1542SZhi Yong Wu int ret; 410cc84d90fSMax Reitz Error *err; 4115b7e1542SZhi Yong Wu } CreateCo; 4125b7e1542SZhi Yong Wu 4135b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque) 4145b7e1542SZhi Yong Wu { 415cc84d90fSMax Reitz Error *local_err = NULL; 416cc84d90fSMax Reitz int ret; 417cc84d90fSMax Reitz 4185b7e1542SZhi Yong Wu CreateCo *cco = opaque; 4195b7e1542SZhi Yong Wu assert(cco->drv); 4205b7e1542SZhi Yong Wu 421efc75e2aSStefan Hajnoczi ret = cco->drv->bdrv_co_create_opts(cco->filename, cco->opts, &local_err); 422cc84d90fSMax Reitz error_propagate(&cco->err, local_err); 423cc84d90fSMax Reitz cco->ret = ret; 4245b7e1542SZhi Yong Wu } 4255b7e1542SZhi Yong Wu 4260e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename, 42783d0521aSChunyan Liu QemuOpts *opts, Error **errp) 428ea2384d3Sbellard { 4295b7e1542SZhi Yong Wu int ret; 4300e7e1989SKevin Wolf 4315b7e1542SZhi Yong Wu Coroutine *co; 4325b7e1542SZhi Yong Wu CreateCo cco = { 4335b7e1542SZhi Yong Wu .drv = drv, 4345b7e1542SZhi Yong Wu .filename = g_strdup(filename), 43583d0521aSChunyan Liu .opts = opts, 4365b7e1542SZhi Yong Wu .ret = NOT_DONE, 437cc84d90fSMax Reitz .err = NULL, 4385b7e1542SZhi Yong Wu }; 4395b7e1542SZhi Yong Wu 440efc75e2aSStefan Hajnoczi if (!drv->bdrv_co_create_opts) { 441cc84d90fSMax Reitz error_setg(errp, "Driver '%s' does not support image creation", drv->format_name); 44280168bffSLuiz Capitulino ret = -ENOTSUP; 44380168bffSLuiz Capitulino goto out; 4445b7e1542SZhi Yong Wu } 4455b7e1542SZhi Yong Wu 4465b7e1542SZhi Yong Wu if (qemu_in_coroutine()) { 4475b7e1542SZhi Yong Wu /* Fast-path if already in coroutine context */ 4485b7e1542SZhi Yong Wu bdrv_create_co_entry(&cco); 4495b7e1542SZhi Yong Wu } else { 4500b8b8753SPaolo Bonzini co = qemu_coroutine_create(bdrv_create_co_entry, &cco); 4510b8b8753SPaolo Bonzini qemu_coroutine_enter(co); 4525b7e1542SZhi Yong Wu while (cco.ret == NOT_DONE) { 453b47ec2c4SPaolo Bonzini aio_poll(qemu_get_aio_context(), true); 4545b7e1542SZhi Yong Wu } 4555b7e1542SZhi Yong Wu } 4565b7e1542SZhi Yong Wu 4575b7e1542SZhi Yong Wu ret = cco.ret; 458cc84d90fSMax Reitz if (ret < 0) { 45984d18f06SMarkus Armbruster if (cco.err) { 460cc84d90fSMax Reitz error_propagate(errp, cco.err); 461cc84d90fSMax Reitz } else { 462cc84d90fSMax Reitz error_setg_errno(errp, -ret, "Could not create image"); 463cc84d90fSMax Reitz } 464cc84d90fSMax Reitz } 4655b7e1542SZhi Yong Wu 46680168bffSLuiz Capitulino out: 46780168bffSLuiz Capitulino g_free(cco.filename); 4685b7e1542SZhi Yong Wu return ret; 469ea2384d3Sbellard } 470ea2384d3Sbellard 471c282e1fdSChunyan Liu int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp) 47284a12e66SChristoph Hellwig { 47384a12e66SChristoph Hellwig BlockDriver *drv; 474cc84d90fSMax Reitz Error *local_err = NULL; 475cc84d90fSMax Reitz int ret; 47684a12e66SChristoph Hellwig 477b65a5e12SMax Reitz drv = bdrv_find_protocol(filename, true, errp); 47884a12e66SChristoph Hellwig if (drv == NULL) { 47916905d71SStefan Hajnoczi return -ENOENT; 48084a12e66SChristoph Hellwig } 48184a12e66SChristoph Hellwig 482c282e1fdSChunyan Liu ret = bdrv_create(drv, filename, opts, &local_err); 483cc84d90fSMax Reitz error_propagate(errp, local_err); 484cc84d90fSMax Reitz return ret; 48584a12e66SChristoph Hellwig } 48684a12e66SChristoph Hellwig 487892b7de8SEkaterina Tumanova /** 488892b7de8SEkaterina Tumanova * Try to get @bs's logical and physical block size. 489892b7de8SEkaterina Tumanova * On success, store them in @bsz struct and return 0. 490892b7de8SEkaterina Tumanova * On failure return -errno. 491892b7de8SEkaterina Tumanova * @bs must not be empty. 492892b7de8SEkaterina Tumanova */ 493892b7de8SEkaterina Tumanova int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz) 494892b7de8SEkaterina Tumanova { 495892b7de8SEkaterina Tumanova BlockDriver *drv = bs->drv; 496892b7de8SEkaterina Tumanova 497892b7de8SEkaterina Tumanova if (drv && drv->bdrv_probe_blocksizes) { 498892b7de8SEkaterina Tumanova return drv->bdrv_probe_blocksizes(bs, bsz); 4995a612c00SManos Pitsidianakis } else if (drv && drv->is_filter && bs->file) { 5005a612c00SManos Pitsidianakis return bdrv_probe_blocksizes(bs->file->bs, bsz); 501892b7de8SEkaterina Tumanova } 502892b7de8SEkaterina Tumanova 503892b7de8SEkaterina Tumanova return -ENOTSUP; 504892b7de8SEkaterina Tumanova } 505892b7de8SEkaterina Tumanova 506892b7de8SEkaterina Tumanova /** 507892b7de8SEkaterina Tumanova * Try to get @bs's geometry (cyls, heads, sectors). 508892b7de8SEkaterina Tumanova * On success, store them in @geo struct and return 0. 509892b7de8SEkaterina Tumanova * On failure return -errno. 510892b7de8SEkaterina Tumanova * @bs must not be empty. 511892b7de8SEkaterina Tumanova */ 512892b7de8SEkaterina Tumanova int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo) 513892b7de8SEkaterina Tumanova { 514892b7de8SEkaterina Tumanova BlockDriver *drv = bs->drv; 515892b7de8SEkaterina Tumanova 516892b7de8SEkaterina Tumanova if (drv && drv->bdrv_probe_geometry) { 517892b7de8SEkaterina Tumanova return drv->bdrv_probe_geometry(bs, geo); 5185a612c00SManos Pitsidianakis } else if (drv && drv->is_filter && bs->file) { 5195a612c00SManos Pitsidianakis return bdrv_probe_geometry(bs->file->bs, geo); 520892b7de8SEkaterina Tumanova } 521892b7de8SEkaterina Tumanova 522892b7de8SEkaterina Tumanova return -ENOTSUP; 523892b7de8SEkaterina Tumanova } 524892b7de8SEkaterina Tumanova 525eba25057SJim Meyering /* 526eba25057SJim Meyering * Create a uniquely-named empty temporary file. 527eba25057SJim Meyering * Return 0 upon success, otherwise a negative errno value. 528eba25057SJim Meyering */ 529eba25057SJim Meyering int get_tmp_filename(char *filename, int size) 530eba25057SJim Meyering { 531d5249393Sbellard #ifdef _WIN32 5323b9f94e1Sbellard char temp_dir[MAX_PATH]; 533eba25057SJim Meyering /* GetTempFileName requires that its output buffer (4th param) 534eba25057SJim Meyering have length MAX_PATH or greater. */ 535eba25057SJim Meyering assert(size >= MAX_PATH); 536eba25057SJim Meyering return (GetTempPath(MAX_PATH, temp_dir) 537eba25057SJim Meyering && GetTempFileName(temp_dir, "qem", 0, filename) 538eba25057SJim Meyering ? 0 : -GetLastError()); 539d5249393Sbellard #else 540ea2384d3Sbellard int fd; 5417ccfb2ebSblueswir1 const char *tmpdir; 5420badc1eeSaurel32 tmpdir = getenv("TMPDIR"); 54369bef793SAmit Shah if (!tmpdir) { 54469bef793SAmit Shah tmpdir = "/var/tmp"; 54569bef793SAmit Shah } 546eba25057SJim Meyering if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) { 547eba25057SJim Meyering return -EOVERFLOW; 548ea2384d3Sbellard } 549eba25057SJim Meyering fd = mkstemp(filename); 550fe235a06SDunrong Huang if (fd < 0) { 551fe235a06SDunrong Huang return -errno; 552fe235a06SDunrong Huang } 553fe235a06SDunrong Huang if (close(fd) != 0) { 554fe235a06SDunrong Huang unlink(filename); 555eba25057SJim Meyering return -errno; 556eba25057SJim Meyering } 557eba25057SJim Meyering return 0; 558d5249393Sbellard #endif 559eba25057SJim Meyering } 560ea2384d3Sbellard 561f3a5d3f8SChristoph Hellwig /* 562f3a5d3f8SChristoph Hellwig * Detect host devices. By convention, /dev/cdrom[N] is always 563f3a5d3f8SChristoph Hellwig * recognized as a host CDROM. 564f3a5d3f8SChristoph Hellwig */ 565f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename) 566f3a5d3f8SChristoph Hellwig { 567508c7cb3SChristoph Hellwig int score_max = 0, score; 568508c7cb3SChristoph Hellwig BlockDriver *drv = NULL, *d; 569f3a5d3f8SChristoph Hellwig 5708a22f02aSStefan Hajnoczi QLIST_FOREACH(d, &bdrv_drivers, list) { 571508c7cb3SChristoph Hellwig if (d->bdrv_probe_device) { 572508c7cb3SChristoph Hellwig score = d->bdrv_probe_device(filename); 573508c7cb3SChristoph Hellwig if (score > score_max) { 574508c7cb3SChristoph Hellwig score_max = score; 575508c7cb3SChristoph Hellwig drv = d; 576f3a5d3f8SChristoph Hellwig } 577508c7cb3SChristoph Hellwig } 578f3a5d3f8SChristoph Hellwig } 579f3a5d3f8SChristoph Hellwig 580508c7cb3SChristoph Hellwig return drv; 581f3a5d3f8SChristoph Hellwig } 582f3a5d3f8SChristoph Hellwig 58388d88798SMarc Mari static BlockDriver *bdrv_do_find_protocol(const char *protocol) 58488d88798SMarc Mari { 58588d88798SMarc Mari BlockDriver *drv1; 58688d88798SMarc Mari 58788d88798SMarc Mari QLIST_FOREACH(drv1, &bdrv_drivers, list) { 58888d88798SMarc Mari if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) { 58988d88798SMarc Mari return drv1; 59088d88798SMarc Mari } 59188d88798SMarc Mari } 59288d88798SMarc Mari 59388d88798SMarc Mari return NULL; 59488d88798SMarc Mari } 59588d88798SMarc Mari 59698289620SKevin Wolf BlockDriver *bdrv_find_protocol(const char *filename, 597b65a5e12SMax Reitz bool allow_protocol_prefix, 598b65a5e12SMax Reitz Error **errp) 59984a12e66SChristoph Hellwig { 60084a12e66SChristoph Hellwig BlockDriver *drv1; 60184a12e66SChristoph Hellwig char protocol[128]; 60284a12e66SChristoph Hellwig int len; 60384a12e66SChristoph Hellwig const char *p; 60488d88798SMarc Mari int i; 60584a12e66SChristoph Hellwig 60666f82ceeSKevin Wolf /* TODO Drivers without bdrv_file_open must be specified explicitly */ 60766f82ceeSKevin Wolf 60839508e7aSChristoph Hellwig /* 60939508e7aSChristoph Hellwig * XXX(hch): we really should not let host device detection 61039508e7aSChristoph Hellwig * override an explicit protocol specification, but moving this 61139508e7aSChristoph Hellwig * later breaks access to device names with colons in them. 61239508e7aSChristoph Hellwig * Thanks to the brain-dead persistent naming schemes on udev- 61339508e7aSChristoph Hellwig * based Linux systems those actually are quite common. 61439508e7aSChristoph Hellwig */ 61584a12e66SChristoph Hellwig drv1 = find_hdev_driver(filename); 61639508e7aSChristoph Hellwig if (drv1) { 61784a12e66SChristoph Hellwig return drv1; 61884a12e66SChristoph Hellwig } 61939508e7aSChristoph Hellwig 62098289620SKevin Wolf if (!path_has_protocol(filename) || !allow_protocol_prefix) { 621ef810437SMax Reitz return &bdrv_file; 62239508e7aSChristoph Hellwig } 62398289620SKevin Wolf 6249e0b22f4SStefan Hajnoczi p = strchr(filename, ':'); 6259e0b22f4SStefan Hajnoczi assert(p != NULL); 62684a12e66SChristoph Hellwig len = p - filename; 62784a12e66SChristoph Hellwig if (len > sizeof(protocol) - 1) 62884a12e66SChristoph Hellwig len = sizeof(protocol) - 1; 62984a12e66SChristoph Hellwig memcpy(protocol, filename, len); 63084a12e66SChristoph Hellwig protocol[len] = '\0'; 63188d88798SMarc Mari 63288d88798SMarc Mari drv1 = bdrv_do_find_protocol(protocol); 63388d88798SMarc Mari if (drv1) { 63484a12e66SChristoph Hellwig return drv1; 63584a12e66SChristoph Hellwig } 63688d88798SMarc Mari 63788d88798SMarc Mari for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { 63888d88798SMarc Mari if (block_driver_modules[i].protocol_name && 63988d88798SMarc Mari !strcmp(block_driver_modules[i].protocol_name, protocol)) { 64088d88798SMarc Mari block_module_load_one(block_driver_modules[i].library_name); 64188d88798SMarc Mari break; 64288d88798SMarc Mari } 64384a12e66SChristoph Hellwig } 644b65a5e12SMax Reitz 64588d88798SMarc Mari drv1 = bdrv_do_find_protocol(protocol); 64688d88798SMarc Mari if (!drv1) { 647b65a5e12SMax Reitz error_setg(errp, "Unknown protocol '%s'", protocol); 64888d88798SMarc Mari } 64988d88798SMarc Mari return drv1; 65084a12e66SChristoph Hellwig } 65184a12e66SChristoph Hellwig 652c6684249SMarkus Armbruster /* 653c6684249SMarkus Armbruster * Guess image format by probing its contents. 654c6684249SMarkus Armbruster * This is not a good idea when your image is raw (CVE-2008-2004), but 655c6684249SMarkus Armbruster * we do it anyway for backward compatibility. 656c6684249SMarkus Armbruster * 657c6684249SMarkus Armbruster * @buf contains the image's first @buf_size bytes. 6587cddd372SKevin Wolf * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE, 6597cddd372SKevin Wolf * but can be smaller if the image file is smaller) 660c6684249SMarkus Armbruster * @filename is its filename. 661c6684249SMarkus Armbruster * 662c6684249SMarkus Armbruster * For all block drivers, call the bdrv_probe() method to get its 663c6684249SMarkus Armbruster * probing score. 664c6684249SMarkus Armbruster * Return the first block driver with the highest probing score. 665c6684249SMarkus Armbruster */ 66638f3ef57SKevin Wolf BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size, 667c6684249SMarkus Armbruster const char *filename) 668c6684249SMarkus Armbruster { 669c6684249SMarkus Armbruster int score_max = 0, score; 670c6684249SMarkus Armbruster BlockDriver *drv = NULL, *d; 671c6684249SMarkus Armbruster 672c6684249SMarkus Armbruster QLIST_FOREACH(d, &bdrv_drivers, list) { 673c6684249SMarkus Armbruster if (d->bdrv_probe) { 674c6684249SMarkus Armbruster score = d->bdrv_probe(buf, buf_size, filename); 675c6684249SMarkus Armbruster if (score > score_max) { 676c6684249SMarkus Armbruster score_max = score; 677c6684249SMarkus Armbruster drv = d; 678c6684249SMarkus Armbruster } 679c6684249SMarkus Armbruster } 680c6684249SMarkus Armbruster } 681c6684249SMarkus Armbruster 682c6684249SMarkus Armbruster return drv; 683c6684249SMarkus Armbruster } 684c6684249SMarkus Armbruster 6855696c6e3SKevin Wolf static int find_image_format(BlockBackend *file, const char *filename, 68634b5d2c6SMax Reitz BlockDriver **pdrv, Error **errp) 687ea2384d3Sbellard { 688c6684249SMarkus Armbruster BlockDriver *drv; 6897cddd372SKevin Wolf uint8_t buf[BLOCK_PROBE_BUF_SIZE]; 690f500a6d3SKevin Wolf int ret = 0; 691f8ea0b00SNicholas Bellinger 69208a00559SKevin Wolf /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ 6935696c6e3SKevin Wolf if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) { 694ef810437SMax Reitz *pdrv = &bdrv_raw; 695c98ac35dSStefan Weil return ret; 6961a396859SNicholas A. Bellinger } 697f8ea0b00SNicholas Bellinger 6985696c6e3SKevin Wolf ret = blk_pread(file, 0, buf, sizeof(buf)); 699ea2384d3Sbellard if (ret < 0) { 70034b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not read image for determining its " 70134b5d2c6SMax Reitz "format"); 702c98ac35dSStefan Weil *pdrv = NULL; 703c98ac35dSStefan Weil return ret; 704ea2384d3Sbellard } 705ea2384d3Sbellard 706c6684249SMarkus Armbruster drv = bdrv_probe_all(buf, ret, filename); 707c98ac35dSStefan Weil if (!drv) { 70834b5d2c6SMax Reitz error_setg(errp, "Could not determine image format: No compatible " 70934b5d2c6SMax Reitz "driver found"); 710c98ac35dSStefan Weil ret = -ENOENT; 711c98ac35dSStefan Weil } 712c98ac35dSStefan Weil *pdrv = drv; 713c98ac35dSStefan Weil return ret; 714ea2384d3Sbellard } 715ea2384d3Sbellard 71651762288SStefan Hajnoczi /** 71751762288SStefan Hajnoczi * Set the current 'total_sectors' value 71865a9bb25SMarkus Armbruster * Return 0 on success, -errno on error. 71951762288SStefan Hajnoczi */ 72051762288SStefan Hajnoczi static int refresh_total_sectors(BlockDriverState *bs, int64_t hint) 72151762288SStefan Hajnoczi { 72251762288SStefan Hajnoczi BlockDriver *drv = bs->drv; 72351762288SStefan Hajnoczi 724d470ad42SMax Reitz if (!drv) { 725d470ad42SMax Reitz return -ENOMEDIUM; 726d470ad42SMax Reitz } 727d470ad42SMax Reitz 728396759adSNicholas Bellinger /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */ 729b192af8aSDimitris Aragiorgis if (bdrv_is_sg(bs)) 730396759adSNicholas Bellinger return 0; 731396759adSNicholas Bellinger 73251762288SStefan Hajnoczi /* query actual device if possible, otherwise just trust the hint */ 73351762288SStefan Hajnoczi if (drv->bdrv_getlength) { 73451762288SStefan Hajnoczi int64_t length = drv->bdrv_getlength(bs); 73551762288SStefan Hajnoczi if (length < 0) { 73651762288SStefan Hajnoczi return length; 73751762288SStefan Hajnoczi } 7387e382003SFam Zheng hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE); 73951762288SStefan Hajnoczi } 74051762288SStefan Hajnoczi 74151762288SStefan Hajnoczi bs->total_sectors = hint; 74251762288SStefan Hajnoczi return 0; 74351762288SStefan Hajnoczi } 74451762288SStefan Hajnoczi 745c3993cdcSStefan Hajnoczi /** 746cddff5baSKevin Wolf * Combines a QDict of new block driver @options with any missing options taken 747cddff5baSKevin Wolf * from @old_options, so that leaving out an option defaults to its old value. 748cddff5baSKevin Wolf */ 749cddff5baSKevin Wolf static void bdrv_join_options(BlockDriverState *bs, QDict *options, 750cddff5baSKevin Wolf QDict *old_options) 751cddff5baSKevin Wolf { 752cddff5baSKevin Wolf if (bs->drv && bs->drv->bdrv_join_options) { 753cddff5baSKevin Wolf bs->drv->bdrv_join_options(options, old_options); 754cddff5baSKevin Wolf } else { 755cddff5baSKevin Wolf qdict_join(options, old_options, false); 756cddff5baSKevin Wolf } 757cddff5baSKevin Wolf } 758cddff5baSKevin Wolf 759cddff5baSKevin Wolf /** 7609e8f1835SPaolo Bonzini * Set open flags for a given discard mode 7619e8f1835SPaolo Bonzini * 7629e8f1835SPaolo Bonzini * Return 0 on success, -1 if the discard mode was invalid. 7639e8f1835SPaolo Bonzini */ 7649e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags) 7659e8f1835SPaolo Bonzini { 7669e8f1835SPaolo Bonzini *flags &= ~BDRV_O_UNMAP; 7679e8f1835SPaolo Bonzini 7689e8f1835SPaolo Bonzini if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) { 7699e8f1835SPaolo Bonzini /* do nothing */ 7709e8f1835SPaolo Bonzini } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) { 7719e8f1835SPaolo Bonzini *flags |= BDRV_O_UNMAP; 7729e8f1835SPaolo Bonzini } else { 7739e8f1835SPaolo Bonzini return -1; 7749e8f1835SPaolo Bonzini } 7759e8f1835SPaolo Bonzini 7769e8f1835SPaolo Bonzini return 0; 7779e8f1835SPaolo Bonzini } 7789e8f1835SPaolo Bonzini 7799e8f1835SPaolo Bonzini /** 780c3993cdcSStefan Hajnoczi * Set open flags for a given cache mode 781c3993cdcSStefan Hajnoczi * 782c3993cdcSStefan Hajnoczi * Return 0 on success, -1 if the cache mode was invalid. 783c3993cdcSStefan Hajnoczi */ 78453e8ae01SKevin Wolf int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough) 785c3993cdcSStefan Hajnoczi { 786c3993cdcSStefan Hajnoczi *flags &= ~BDRV_O_CACHE_MASK; 787c3993cdcSStefan Hajnoczi 788c3993cdcSStefan Hajnoczi if (!strcmp(mode, "off") || !strcmp(mode, "none")) { 78953e8ae01SKevin Wolf *writethrough = false; 79053e8ae01SKevin Wolf *flags |= BDRV_O_NOCACHE; 79192196b2fSStefan Hajnoczi } else if (!strcmp(mode, "directsync")) { 79253e8ae01SKevin Wolf *writethrough = true; 79392196b2fSStefan Hajnoczi *flags |= BDRV_O_NOCACHE; 794c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writeback")) { 79553e8ae01SKevin Wolf *writethrough = false; 796c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "unsafe")) { 79753e8ae01SKevin Wolf *writethrough = false; 798c3993cdcSStefan Hajnoczi *flags |= BDRV_O_NO_FLUSH; 799c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writethrough")) { 80053e8ae01SKevin Wolf *writethrough = true; 801c3993cdcSStefan Hajnoczi } else { 802c3993cdcSStefan Hajnoczi return -1; 803c3993cdcSStefan Hajnoczi } 804c3993cdcSStefan Hajnoczi 805c3993cdcSStefan Hajnoczi return 0; 806c3993cdcSStefan Hajnoczi } 807c3993cdcSStefan Hajnoczi 808b5411555SKevin Wolf static char *bdrv_child_get_parent_desc(BdrvChild *c) 809b5411555SKevin Wolf { 810b5411555SKevin Wolf BlockDriverState *parent = c->opaque; 811b5411555SKevin Wolf return g_strdup(bdrv_get_device_or_node_name(parent)); 812b5411555SKevin Wolf } 813b5411555SKevin Wolf 81420018e12SKevin Wolf static void bdrv_child_cb_drained_begin(BdrvChild *child) 81520018e12SKevin Wolf { 81620018e12SKevin Wolf BlockDriverState *bs = child->opaque; 81720018e12SKevin Wolf bdrv_drained_begin(bs); 81820018e12SKevin Wolf } 81920018e12SKevin Wolf 82020018e12SKevin Wolf static void bdrv_child_cb_drained_end(BdrvChild *child) 82120018e12SKevin Wolf { 82220018e12SKevin Wolf BlockDriverState *bs = child->opaque; 82320018e12SKevin Wolf bdrv_drained_end(bs); 82420018e12SKevin Wolf } 82520018e12SKevin Wolf 826d736f119SKevin Wolf static void bdrv_child_cb_attach(BdrvChild *child) 827d736f119SKevin Wolf { 828d736f119SKevin Wolf BlockDriverState *bs = child->opaque; 829d736f119SKevin Wolf bdrv_apply_subtree_drain(child, bs); 830d736f119SKevin Wolf } 831d736f119SKevin Wolf 832d736f119SKevin Wolf static void bdrv_child_cb_detach(BdrvChild *child) 833d736f119SKevin Wolf { 834d736f119SKevin Wolf BlockDriverState *bs = child->opaque; 835d736f119SKevin Wolf bdrv_unapply_subtree_drain(child, bs); 836d736f119SKevin Wolf } 837d736f119SKevin Wolf 83838701b6aSKevin Wolf static int bdrv_child_cb_inactivate(BdrvChild *child) 83938701b6aSKevin Wolf { 84038701b6aSKevin Wolf BlockDriverState *bs = child->opaque; 84138701b6aSKevin Wolf assert(bs->open_flags & BDRV_O_INACTIVE); 84238701b6aSKevin Wolf return 0; 84338701b6aSKevin Wolf } 84438701b6aSKevin Wolf 8450b50cc88SKevin Wolf /* 84673176beeSKevin Wolf * Returns the options and flags that a temporary snapshot should get, based on 84773176beeSKevin Wolf * the originally requested flags (the originally requested image will have 84873176beeSKevin Wolf * flags like a backing file) 849b1e6fc08SKevin Wolf */ 85073176beeSKevin Wolf static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options, 85173176beeSKevin Wolf int parent_flags, QDict *parent_options) 852b1e6fc08SKevin Wolf { 85373176beeSKevin Wolf *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY; 85473176beeSKevin Wolf 85573176beeSKevin Wolf /* For temporary files, unconditional cache=unsafe is fine */ 85673176beeSKevin Wolf qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off"); 85773176beeSKevin Wolf qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on"); 85841869044SKevin Wolf 859f87a0e29SAlberto Garcia /* Copy the read-only option from the parent */ 860f87a0e29SAlberto Garcia qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); 861f87a0e29SAlberto Garcia 86241869044SKevin Wolf /* aio=native doesn't work for cache.direct=off, so disable it for the 86341869044SKevin Wolf * temporary snapshot */ 86441869044SKevin Wolf *child_flags &= ~BDRV_O_NATIVE_AIO; 865b1e6fc08SKevin Wolf } 866b1e6fc08SKevin Wolf 867b1e6fc08SKevin Wolf /* 8688e2160e2SKevin Wolf * Returns the options and flags that bs->file should get if a protocol driver 8698e2160e2SKevin Wolf * is expected, based on the given options and flags for the parent BDS 8700b50cc88SKevin Wolf */ 8718e2160e2SKevin Wolf static void bdrv_inherited_options(int *child_flags, QDict *child_options, 8728e2160e2SKevin Wolf int parent_flags, QDict *parent_options) 8730b50cc88SKevin Wolf { 8748e2160e2SKevin Wolf int flags = parent_flags; 8758e2160e2SKevin Wolf 8760b50cc88SKevin Wolf /* Enable protocol handling, disable format probing for bs->file */ 8770b50cc88SKevin Wolf flags |= BDRV_O_PROTOCOL; 8780b50cc88SKevin Wolf 87991a097e7SKevin Wolf /* If the cache mode isn't explicitly set, inherit direct and no-flush from 88091a097e7SKevin Wolf * the parent. */ 88191a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); 88291a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); 8835a9347c6SFam Zheng qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE); 88491a097e7SKevin Wolf 885f87a0e29SAlberto Garcia /* Inherit the read-only option from the parent if it's not set */ 886f87a0e29SAlberto Garcia qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); 887f87a0e29SAlberto Garcia 8880b50cc88SKevin Wolf /* Our block drivers take care to send flushes and respect unmap policy, 88991a097e7SKevin Wolf * so we can default to enable both on lower layers regardless of the 89091a097e7SKevin Wolf * corresponding parent options. */ 891818584a4SKevin Wolf qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap"); 8920b50cc88SKevin Wolf 8930b50cc88SKevin Wolf /* Clear flags that only apply to the top layer */ 894abb06c5aSDaniel P. Berrange flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ | 895abb06c5aSDaniel P. Berrange BDRV_O_NO_IO); 8960b50cc88SKevin Wolf 8978e2160e2SKevin Wolf *child_flags = flags; 8980b50cc88SKevin Wolf } 8990b50cc88SKevin Wolf 900f3930ed0SKevin Wolf const BdrvChildRole child_file = { 901b5411555SKevin Wolf .get_parent_desc = bdrv_child_get_parent_desc, 9028e2160e2SKevin Wolf .inherit_options = bdrv_inherited_options, 90320018e12SKevin Wolf .drained_begin = bdrv_child_cb_drained_begin, 90420018e12SKevin Wolf .drained_end = bdrv_child_cb_drained_end, 905d736f119SKevin Wolf .attach = bdrv_child_cb_attach, 906d736f119SKevin Wolf .detach = bdrv_child_cb_detach, 90738701b6aSKevin Wolf .inactivate = bdrv_child_cb_inactivate, 908f3930ed0SKevin Wolf }; 909f3930ed0SKevin Wolf 910f3930ed0SKevin Wolf /* 9118e2160e2SKevin Wolf * Returns the options and flags that bs->file should get if the use of formats 9128e2160e2SKevin Wolf * (and not only protocols) is permitted for it, based on the given options and 9138e2160e2SKevin Wolf * flags for the parent BDS 914f3930ed0SKevin Wolf */ 9158e2160e2SKevin Wolf static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options, 9168e2160e2SKevin Wolf int parent_flags, QDict *parent_options) 917f3930ed0SKevin Wolf { 9188e2160e2SKevin Wolf child_file.inherit_options(child_flags, child_options, 9198e2160e2SKevin Wolf parent_flags, parent_options); 9208e2160e2SKevin Wolf 921abb06c5aSDaniel P. Berrange *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO); 922f3930ed0SKevin Wolf } 923f3930ed0SKevin Wolf 924f3930ed0SKevin Wolf const BdrvChildRole child_format = { 925b5411555SKevin Wolf .get_parent_desc = bdrv_child_get_parent_desc, 9268e2160e2SKevin Wolf .inherit_options = bdrv_inherited_fmt_options, 92720018e12SKevin Wolf .drained_begin = bdrv_child_cb_drained_begin, 92820018e12SKevin Wolf .drained_end = bdrv_child_cb_drained_end, 929d736f119SKevin Wolf .attach = bdrv_child_cb_attach, 930d736f119SKevin Wolf .detach = bdrv_child_cb_detach, 93138701b6aSKevin Wolf .inactivate = bdrv_child_cb_inactivate, 932f3930ed0SKevin Wolf }; 933f3930ed0SKevin Wolf 934db95dbbaSKevin Wolf static void bdrv_backing_attach(BdrvChild *c) 935db95dbbaSKevin Wolf { 936db95dbbaSKevin Wolf BlockDriverState *parent = c->opaque; 937db95dbbaSKevin Wolf BlockDriverState *backing_hd = c->bs; 938db95dbbaSKevin Wolf 939db95dbbaSKevin Wolf assert(!parent->backing_blocker); 940db95dbbaSKevin Wolf error_setg(&parent->backing_blocker, 941db95dbbaSKevin Wolf "node is used as backing hd of '%s'", 942db95dbbaSKevin Wolf bdrv_get_device_or_node_name(parent)); 943db95dbbaSKevin Wolf 944db95dbbaSKevin Wolf parent->open_flags &= ~BDRV_O_NO_BACKING; 945db95dbbaSKevin Wolf pstrcpy(parent->backing_file, sizeof(parent->backing_file), 946db95dbbaSKevin Wolf backing_hd->filename); 947db95dbbaSKevin Wolf pstrcpy(parent->backing_format, sizeof(parent->backing_format), 948db95dbbaSKevin Wolf backing_hd->drv ? backing_hd->drv->format_name : ""); 949db95dbbaSKevin Wolf 950db95dbbaSKevin Wolf bdrv_op_block_all(backing_hd, parent->backing_blocker); 951db95dbbaSKevin Wolf /* Otherwise we won't be able to commit or stream */ 952db95dbbaSKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET, 953db95dbbaSKevin Wolf parent->backing_blocker); 954db95dbbaSKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM, 955db95dbbaSKevin Wolf parent->backing_blocker); 956db95dbbaSKevin Wolf /* 957db95dbbaSKevin Wolf * We do backup in 3 ways: 958db95dbbaSKevin Wolf * 1. drive backup 959db95dbbaSKevin Wolf * The target bs is new opened, and the source is top BDS 960db95dbbaSKevin Wolf * 2. blockdev backup 961db95dbbaSKevin Wolf * Both the source and the target are top BDSes. 962db95dbbaSKevin Wolf * 3. internal backup(used for block replication) 963db95dbbaSKevin Wolf * Both the source and the target are backing file 964db95dbbaSKevin Wolf * 965db95dbbaSKevin Wolf * In case 1 and 2, neither the source nor the target is the backing file. 966db95dbbaSKevin Wolf * In case 3, we will block the top BDS, so there is only one block job 967db95dbbaSKevin Wolf * for the top BDS and its backing chain. 968db95dbbaSKevin Wolf */ 969db95dbbaSKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE, 970db95dbbaSKevin Wolf parent->backing_blocker); 971db95dbbaSKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET, 972db95dbbaSKevin Wolf parent->backing_blocker); 973d736f119SKevin Wolf 974d736f119SKevin Wolf bdrv_child_cb_attach(c); 975db95dbbaSKevin Wolf } 976db95dbbaSKevin Wolf 977db95dbbaSKevin Wolf static void bdrv_backing_detach(BdrvChild *c) 978db95dbbaSKevin Wolf { 979db95dbbaSKevin Wolf BlockDriverState *parent = c->opaque; 980db95dbbaSKevin Wolf 981db95dbbaSKevin Wolf assert(parent->backing_blocker); 982db95dbbaSKevin Wolf bdrv_op_unblock_all(c->bs, parent->backing_blocker); 983db95dbbaSKevin Wolf error_free(parent->backing_blocker); 984db95dbbaSKevin Wolf parent->backing_blocker = NULL; 985d736f119SKevin Wolf 986d736f119SKevin Wolf bdrv_child_cb_detach(c); 987db95dbbaSKevin Wolf } 988db95dbbaSKevin Wolf 989317fc44eSKevin Wolf /* 9908e2160e2SKevin Wolf * Returns the options and flags that bs->backing should get, based on the 9918e2160e2SKevin Wolf * given options and flags for the parent BDS 992317fc44eSKevin Wolf */ 9938e2160e2SKevin Wolf static void bdrv_backing_options(int *child_flags, QDict *child_options, 9948e2160e2SKevin Wolf int parent_flags, QDict *parent_options) 995317fc44eSKevin Wolf { 9968e2160e2SKevin Wolf int flags = parent_flags; 9978e2160e2SKevin Wolf 998b8816a43SKevin Wolf /* The cache mode is inherited unmodified for backing files; except WCE, 999b8816a43SKevin Wolf * which is only applied on the top level (BlockBackend) */ 100091a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); 100191a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); 10025a9347c6SFam Zheng qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE); 100391a097e7SKevin Wolf 1004317fc44eSKevin Wolf /* backing files always opened read-only */ 1005f87a0e29SAlberto Garcia qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on"); 1006f87a0e29SAlberto Garcia flags &= ~BDRV_O_COPY_ON_READ; 1007317fc44eSKevin Wolf 1008317fc44eSKevin Wolf /* snapshot=on is handled on the top layer */ 10098bfea15dSKevin Wolf flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY); 1010317fc44eSKevin Wolf 10118e2160e2SKevin Wolf *child_flags = flags; 1012317fc44eSKevin Wolf } 1013317fc44eSKevin Wolf 10146858eba0SKevin Wolf static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base, 10156858eba0SKevin Wolf const char *filename, Error **errp) 10166858eba0SKevin Wolf { 10176858eba0SKevin Wolf BlockDriverState *parent = c->opaque; 101861f09ceaSKevin Wolf int orig_flags = bdrv_get_flags(parent); 10196858eba0SKevin Wolf int ret; 10206858eba0SKevin Wolf 102161f09ceaSKevin Wolf if (!(orig_flags & BDRV_O_RDWR)) { 102261f09ceaSKevin Wolf ret = bdrv_reopen(parent, orig_flags | BDRV_O_RDWR, errp); 102361f09ceaSKevin Wolf if (ret < 0) { 102461f09ceaSKevin Wolf return ret; 102561f09ceaSKevin Wolf } 102661f09ceaSKevin Wolf } 102761f09ceaSKevin Wolf 10286858eba0SKevin Wolf ret = bdrv_change_backing_file(parent, filename, 10296858eba0SKevin Wolf base->drv ? base->drv->format_name : ""); 10306858eba0SKevin Wolf if (ret < 0) { 103164730694SKevin Wolf error_setg_errno(errp, -ret, "Could not update backing file link"); 10326858eba0SKevin Wolf } 10336858eba0SKevin Wolf 103461f09ceaSKevin Wolf if (!(orig_flags & BDRV_O_RDWR)) { 103561f09ceaSKevin Wolf bdrv_reopen(parent, orig_flags, NULL); 103661f09ceaSKevin Wolf } 103761f09ceaSKevin Wolf 10386858eba0SKevin Wolf return ret; 10396858eba0SKevin Wolf } 10406858eba0SKevin Wolf 104191ef3825SKevin Wolf const BdrvChildRole child_backing = { 1042b5411555SKevin Wolf .get_parent_desc = bdrv_child_get_parent_desc, 1043db95dbbaSKevin Wolf .attach = bdrv_backing_attach, 1044db95dbbaSKevin Wolf .detach = bdrv_backing_detach, 10458e2160e2SKevin Wolf .inherit_options = bdrv_backing_options, 104620018e12SKevin Wolf .drained_begin = bdrv_child_cb_drained_begin, 104720018e12SKevin Wolf .drained_end = bdrv_child_cb_drained_end, 104838701b6aSKevin Wolf .inactivate = bdrv_child_cb_inactivate, 10496858eba0SKevin Wolf .update_filename = bdrv_backing_update_filename, 1050f3930ed0SKevin Wolf }; 1051f3930ed0SKevin Wolf 10527b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags) 10537b272452SKevin Wolf { 105461de4c68SKevin Wolf int open_flags = flags; 10557b272452SKevin Wolf 10567b272452SKevin Wolf /* 10577b272452SKevin Wolf * Clear flags that are internal to the block layer before opening the 10587b272452SKevin Wolf * image. 10597b272452SKevin Wolf */ 106020cca275SKevin Wolf open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL); 10617b272452SKevin Wolf 10627b272452SKevin Wolf /* 10637b272452SKevin Wolf * Snapshots should be writable. 10647b272452SKevin Wolf */ 10658bfea15dSKevin Wolf if (flags & BDRV_O_TEMPORARY) { 10667b272452SKevin Wolf open_flags |= BDRV_O_RDWR; 10677b272452SKevin Wolf } 10687b272452SKevin Wolf 10697b272452SKevin Wolf return open_flags; 10707b272452SKevin Wolf } 10717b272452SKevin Wolf 107291a097e7SKevin Wolf static void update_flags_from_options(int *flags, QemuOpts *opts) 107391a097e7SKevin Wolf { 107491a097e7SKevin Wolf *flags &= ~BDRV_O_CACHE_MASK; 107591a097e7SKevin Wolf 107691a097e7SKevin Wolf assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH)); 107791a097e7SKevin Wolf if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) { 107891a097e7SKevin Wolf *flags |= BDRV_O_NO_FLUSH; 107991a097e7SKevin Wolf } 108091a097e7SKevin Wolf 108191a097e7SKevin Wolf assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT)); 108291a097e7SKevin Wolf if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) { 108391a097e7SKevin Wolf *flags |= BDRV_O_NOCACHE; 108491a097e7SKevin Wolf } 1085f87a0e29SAlberto Garcia 1086f87a0e29SAlberto Garcia *flags &= ~BDRV_O_RDWR; 1087f87a0e29SAlberto Garcia 1088f87a0e29SAlberto Garcia assert(qemu_opt_find(opts, BDRV_OPT_READ_ONLY)); 1089f87a0e29SAlberto Garcia if (!qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false)) { 1090f87a0e29SAlberto Garcia *flags |= BDRV_O_RDWR; 1091f87a0e29SAlberto Garcia } 1092f87a0e29SAlberto Garcia 109391a097e7SKevin Wolf } 109491a097e7SKevin Wolf 109591a097e7SKevin Wolf static void update_options_from_flags(QDict *options, int flags) 109691a097e7SKevin Wolf { 109791a097e7SKevin Wolf if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) { 109846f5ac20SEric Blake qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE); 109991a097e7SKevin Wolf } 110091a097e7SKevin Wolf if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) { 110146f5ac20SEric Blake qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH, 110246f5ac20SEric Blake flags & BDRV_O_NO_FLUSH); 110391a097e7SKevin Wolf } 1104f87a0e29SAlberto Garcia if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) { 110546f5ac20SEric Blake qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR)); 1106f87a0e29SAlberto Garcia } 110791a097e7SKevin Wolf } 110891a097e7SKevin Wolf 1109636ea370SKevin Wolf static void bdrv_assign_node_name(BlockDriverState *bs, 11106913c0c2SBenoît Canet const char *node_name, 11116913c0c2SBenoît Canet Error **errp) 11126913c0c2SBenoît Canet { 111315489c76SJeff Cody char *gen_node_name = NULL; 11146913c0c2SBenoît Canet 111515489c76SJeff Cody if (!node_name) { 111615489c76SJeff Cody node_name = gen_node_name = id_generate(ID_BLOCK); 111715489c76SJeff Cody } else if (!id_wellformed(node_name)) { 111815489c76SJeff Cody /* 111915489c76SJeff Cody * Check for empty string or invalid characters, but not if it is 112015489c76SJeff Cody * generated (generated names use characters not available to the user) 112115489c76SJeff Cody */ 11229aebf3b8SKevin Wolf error_setg(errp, "Invalid node name"); 1123636ea370SKevin Wolf return; 11246913c0c2SBenoît Canet } 11256913c0c2SBenoît Canet 11260c5e94eeSBenoît Canet /* takes care of avoiding namespaces collisions */ 11277f06d47eSMarkus Armbruster if (blk_by_name(node_name)) { 11280c5e94eeSBenoît Canet error_setg(errp, "node-name=%s is conflicting with a device id", 11290c5e94eeSBenoît Canet node_name); 113015489c76SJeff Cody goto out; 11310c5e94eeSBenoît Canet } 11320c5e94eeSBenoît Canet 11336913c0c2SBenoît Canet /* takes care of avoiding duplicates node names */ 11346913c0c2SBenoît Canet if (bdrv_find_node(node_name)) { 11356913c0c2SBenoît Canet error_setg(errp, "Duplicate node name"); 113615489c76SJeff Cody goto out; 11376913c0c2SBenoît Canet } 11386913c0c2SBenoît Canet 11396913c0c2SBenoît Canet /* copy node name into the bs and insert it into the graph list */ 11406913c0c2SBenoît Canet pstrcpy(bs->node_name, sizeof(bs->node_name), node_name); 11416913c0c2SBenoît Canet QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list); 114215489c76SJeff Cody out: 114315489c76SJeff Cody g_free(gen_node_name); 11446913c0c2SBenoît Canet } 11456913c0c2SBenoît Canet 114601a56501SKevin Wolf static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv, 114701a56501SKevin Wolf const char *node_name, QDict *options, 114801a56501SKevin Wolf int open_flags, Error **errp) 114901a56501SKevin Wolf { 115001a56501SKevin Wolf Error *local_err = NULL; 115101a56501SKevin Wolf int ret; 115201a56501SKevin Wolf 115301a56501SKevin Wolf bdrv_assign_node_name(bs, node_name, &local_err); 115401a56501SKevin Wolf if (local_err) { 115501a56501SKevin Wolf error_propagate(errp, local_err); 115601a56501SKevin Wolf return -EINVAL; 115701a56501SKevin Wolf } 115801a56501SKevin Wolf 115901a56501SKevin Wolf bs->drv = drv; 1160680c7f96SKevin Wolf bs->read_only = !(bs->open_flags & BDRV_O_RDWR); 116101a56501SKevin Wolf bs->opaque = g_malloc0(drv->instance_size); 116201a56501SKevin Wolf 116301a56501SKevin Wolf if (drv->bdrv_file_open) { 116401a56501SKevin Wolf assert(!drv->bdrv_needs_filename || bs->filename[0]); 116501a56501SKevin Wolf ret = drv->bdrv_file_open(bs, options, open_flags, &local_err); 1166680c7f96SKevin Wolf } else if (drv->bdrv_open) { 116701a56501SKevin Wolf ret = drv->bdrv_open(bs, options, open_flags, &local_err); 1168680c7f96SKevin Wolf } else { 1169680c7f96SKevin Wolf ret = 0; 117001a56501SKevin Wolf } 117101a56501SKevin Wolf 117201a56501SKevin Wolf if (ret < 0) { 117301a56501SKevin Wolf if (local_err) { 117401a56501SKevin Wolf error_propagate(errp, local_err); 117501a56501SKevin Wolf } else if (bs->filename[0]) { 117601a56501SKevin Wolf error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename); 117701a56501SKevin Wolf } else { 117801a56501SKevin Wolf error_setg_errno(errp, -ret, "Could not open image"); 117901a56501SKevin Wolf } 1180180ca19aSManos Pitsidianakis goto open_failed; 118101a56501SKevin Wolf } 118201a56501SKevin Wolf 118301a56501SKevin Wolf ret = refresh_total_sectors(bs, bs->total_sectors); 118401a56501SKevin Wolf if (ret < 0) { 118501a56501SKevin Wolf error_setg_errno(errp, -ret, "Could not refresh total sector count"); 1186180ca19aSManos Pitsidianakis return ret; 118701a56501SKevin Wolf } 118801a56501SKevin Wolf 118901a56501SKevin Wolf bdrv_refresh_limits(bs, &local_err); 119001a56501SKevin Wolf if (local_err) { 119101a56501SKevin Wolf error_propagate(errp, local_err); 1192180ca19aSManos Pitsidianakis return -EINVAL; 119301a56501SKevin Wolf } 119401a56501SKevin Wolf 119501a56501SKevin Wolf assert(bdrv_opt_mem_align(bs) != 0); 119601a56501SKevin Wolf assert(bdrv_min_mem_align(bs) != 0); 119701a56501SKevin Wolf assert(is_power_of_2(bs->bl.request_alignment)); 119801a56501SKevin Wolf 119901a56501SKevin Wolf return 0; 1200180ca19aSManos Pitsidianakis open_failed: 1201180ca19aSManos Pitsidianakis bs->drv = NULL; 1202180ca19aSManos Pitsidianakis if (bs->file != NULL) { 1203180ca19aSManos Pitsidianakis bdrv_unref_child(bs, bs->file); 1204180ca19aSManos Pitsidianakis bs->file = NULL; 1205180ca19aSManos Pitsidianakis } 120601a56501SKevin Wolf g_free(bs->opaque); 120701a56501SKevin Wolf bs->opaque = NULL; 120801a56501SKevin Wolf return ret; 120901a56501SKevin Wolf } 121001a56501SKevin Wolf 1211680c7f96SKevin Wolf BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name, 1212680c7f96SKevin Wolf int flags, Error **errp) 1213680c7f96SKevin Wolf { 1214680c7f96SKevin Wolf BlockDriverState *bs; 1215680c7f96SKevin Wolf int ret; 1216680c7f96SKevin Wolf 1217680c7f96SKevin Wolf bs = bdrv_new(); 1218680c7f96SKevin Wolf bs->open_flags = flags; 1219680c7f96SKevin Wolf bs->explicit_options = qdict_new(); 1220680c7f96SKevin Wolf bs->options = qdict_new(); 1221680c7f96SKevin Wolf bs->opaque = NULL; 1222680c7f96SKevin Wolf 1223680c7f96SKevin Wolf update_options_from_flags(bs->options, flags); 1224680c7f96SKevin Wolf 1225680c7f96SKevin Wolf ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp); 1226680c7f96SKevin Wolf if (ret < 0) { 1227680c7f96SKevin Wolf QDECREF(bs->explicit_options); 1228180ca19aSManos Pitsidianakis bs->explicit_options = NULL; 1229680c7f96SKevin Wolf QDECREF(bs->options); 1230180ca19aSManos Pitsidianakis bs->options = NULL; 1231680c7f96SKevin Wolf bdrv_unref(bs); 1232680c7f96SKevin Wolf return NULL; 1233680c7f96SKevin Wolf } 1234680c7f96SKevin Wolf 1235680c7f96SKevin Wolf return bs; 1236680c7f96SKevin Wolf } 1237680c7f96SKevin Wolf 1238c5f3014bSKevin Wolf QemuOptsList bdrv_runtime_opts = { 123918edf289SKevin Wolf .name = "bdrv_common", 124018edf289SKevin Wolf .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head), 124118edf289SKevin Wolf .desc = { 124218edf289SKevin Wolf { 124318edf289SKevin Wolf .name = "node-name", 124418edf289SKevin Wolf .type = QEMU_OPT_STRING, 124518edf289SKevin Wolf .help = "Node name of the block device node", 124618edf289SKevin Wolf }, 124762392ebbSKevin Wolf { 124862392ebbSKevin Wolf .name = "driver", 124962392ebbSKevin Wolf .type = QEMU_OPT_STRING, 125062392ebbSKevin Wolf .help = "Block driver to use for the node", 125162392ebbSKevin Wolf }, 125291a097e7SKevin Wolf { 125391a097e7SKevin Wolf .name = BDRV_OPT_CACHE_DIRECT, 125491a097e7SKevin Wolf .type = QEMU_OPT_BOOL, 125591a097e7SKevin Wolf .help = "Bypass software writeback cache on the host", 125691a097e7SKevin Wolf }, 125791a097e7SKevin Wolf { 125891a097e7SKevin Wolf .name = BDRV_OPT_CACHE_NO_FLUSH, 125991a097e7SKevin Wolf .type = QEMU_OPT_BOOL, 126091a097e7SKevin Wolf .help = "Ignore flush requests", 126191a097e7SKevin Wolf }, 1262f87a0e29SAlberto Garcia { 1263f87a0e29SAlberto Garcia .name = BDRV_OPT_READ_ONLY, 1264f87a0e29SAlberto Garcia .type = QEMU_OPT_BOOL, 1265f87a0e29SAlberto Garcia .help = "Node is opened in read-only mode", 1266f87a0e29SAlberto Garcia }, 1267692e01a2SKevin Wolf { 1268692e01a2SKevin Wolf .name = "detect-zeroes", 1269692e01a2SKevin Wolf .type = QEMU_OPT_STRING, 1270692e01a2SKevin Wolf .help = "try to optimize zero writes (off, on, unmap)", 1271692e01a2SKevin Wolf }, 1272818584a4SKevin Wolf { 1273818584a4SKevin Wolf .name = "discard", 1274818584a4SKevin Wolf .type = QEMU_OPT_STRING, 1275818584a4SKevin Wolf .help = "discard operation (ignore/off, unmap/on)", 1276818584a4SKevin Wolf }, 12775a9347c6SFam Zheng { 12785a9347c6SFam Zheng .name = BDRV_OPT_FORCE_SHARE, 12795a9347c6SFam Zheng .type = QEMU_OPT_BOOL, 12805a9347c6SFam Zheng .help = "always accept other writers (default: off)", 12815a9347c6SFam Zheng }, 128218edf289SKevin Wolf { /* end of list */ } 128318edf289SKevin Wolf }, 128418edf289SKevin Wolf }; 128518edf289SKevin Wolf 1286b6ce07aaSKevin Wolf /* 128757915332SKevin Wolf * Common part for opening disk images and files 1288b6ad491aSKevin Wolf * 1289b6ad491aSKevin Wolf * Removes all processed options from *options. 129057915332SKevin Wolf */ 12915696c6e3SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file, 129282dc8b41SKevin Wolf QDict *options, Error **errp) 129357915332SKevin Wolf { 129457915332SKevin Wolf int ret, open_flags; 1295035fccdfSKevin Wolf const char *filename; 129662392ebbSKevin Wolf const char *driver_name = NULL; 12976913c0c2SBenoît Canet const char *node_name = NULL; 1298818584a4SKevin Wolf const char *discard; 1299692e01a2SKevin Wolf const char *detect_zeroes; 130018edf289SKevin Wolf QemuOpts *opts; 130162392ebbSKevin Wolf BlockDriver *drv; 130234b5d2c6SMax Reitz Error *local_err = NULL; 130357915332SKevin Wolf 13046405875cSPaolo Bonzini assert(bs->file == NULL); 1305707ff828SKevin Wolf assert(options != NULL && bs->options != options); 130657915332SKevin Wolf 130762392ebbSKevin Wolf opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 130862392ebbSKevin Wolf qemu_opts_absorb_qdict(opts, options, &local_err); 130962392ebbSKevin Wolf if (local_err) { 131062392ebbSKevin Wolf error_propagate(errp, local_err); 131162392ebbSKevin Wolf ret = -EINVAL; 131262392ebbSKevin Wolf goto fail_opts; 131362392ebbSKevin Wolf } 131462392ebbSKevin Wolf 13159b7e8691SAlberto Garcia update_flags_from_options(&bs->open_flags, opts); 13169b7e8691SAlberto Garcia 131762392ebbSKevin Wolf driver_name = qemu_opt_get(opts, "driver"); 131862392ebbSKevin Wolf drv = bdrv_find_format(driver_name); 131962392ebbSKevin Wolf assert(drv != NULL); 132062392ebbSKevin Wolf 13215a9347c6SFam Zheng bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false); 13225a9347c6SFam Zheng 13235a9347c6SFam Zheng if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) { 13245a9347c6SFam Zheng error_setg(errp, 13255a9347c6SFam Zheng BDRV_OPT_FORCE_SHARE 13265a9347c6SFam Zheng "=on can only be used with read-only images"); 13275a9347c6SFam Zheng ret = -EINVAL; 13285a9347c6SFam Zheng goto fail_opts; 13295a9347c6SFam Zheng } 13305a9347c6SFam Zheng 133145673671SKevin Wolf if (file != NULL) { 13325696c6e3SKevin Wolf filename = blk_bs(file)->filename; 133345673671SKevin Wolf } else { 1334129c7d1cSMarkus Armbruster /* 1335129c7d1cSMarkus Armbruster * Caution: while qdict_get_try_str() is fine, getting 1336129c7d1cSMarkus Armbruster * non-string types would require more care. When @options 1337129c7d1cSMarkus Armbruster * come from -blockdev or blockdev_add, its members are typed 1338129c7d1cSMarkus Armbruster * according to the QAPI schema, but when they come from 1339129c7d1cSMarkus Armbruster * -drive, they're all QString. 1340129c7d1cSMarkus Armbruster */ 134145673671SKevin Wolf filename = qdict_get_try_str(options, "filename"); 134245673671SKevin Wolf } 134345673671SKevin Wolf 13444a008240SMax Reitz if (drv->bdrv_needs_filename && (!filename || !filename[0])) { 1345765003dbSKevin Wolf error_setg(errp, "The '%s' block driver requires a file name", 1346765003dbSKevin Wolf drv->format_name); 134718edf289SKevin Wolf ret = -EINVAL; 134818edf289SKevin Wolf goto fail_opts; 134918edf289SKevin Wolf } 135018edf289SKevin Wolf 135182dc8b41SKevin Wolf trace_bdrv_open_common(bs, filename ?: "", bs->open_flags, 135282dc8b41SKevin Wolf drv->format_name); 135362392ebbSKevin Wolf 135482dc8b41SKevin Wolf bs->read_only = !(bs->open_flags & BDRV_O_RDWR); 1355b64ec4e4SFam Zheng 1356b64ec4e4SFam Zheng if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) { 13578f94a6e4SKevin Wolf error_setg(errp, 13588f94a6e4SKevin Wolf !bs->read_only && bdrv_is_whitelisted(drv, true) 13598f94a6e4SKevin Wolf ? "Driver '%s' can only be used for read-only devices" 13608f94a6e4SKevin Wolf : "Driver '%s' is not whitelisted", 13618f94a6e4SKevin Wolf drv->format_name); 136218edf289SKevin Wolf ret = -ENOTSUP; 136318edf289SKevin Wolf goto fail_opts; 1364b64ec4e4SFam Zheng } 136557915332SKevin Wolf 1366d3faa13eSPaolo Bonzini /* bdrv_new() and bdrv_close() make it so */ 1367d3faa13eSPaolo Bonzini assert(atomic_read(&bs->copy_on_read) == 0); 1368d3faa13eSPaolo Bonzini 136982dc8b41SKevin Wolf if (bs->open_flags & BDRV_O_COPY_ON_READ) { 13700ebd24e0SKevin Wolf if (!bs->read_only) { 137153fec9d3SStefan Hajnoczi bdrv_enable_copy_on_read(bs); 13720ebd24e0SKevin Wolf } else { 13730ebd24e0SKevin Wolf error_setg(errp, "Can't use copy-on-read on read-only device"); 137418edf289SKevin Wolf ret = -EINVAL; 137518edf289SKevin Wolf goto fail_opts; 13760ebd24e0SKevin Wolf } 137753fec9d3SStefan Hajnoczi } 137853fec9d3SStefan Hajnoczi 1379818584a4SKevin Wolf discard = qemu_opt_get(opts, "discard"); 1380818584a4SKevin Wolf if (discard != NULL) { 1381818584a4SKevin Wolf if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) { 1382818584a4SKevin Wolf error_setg(errp, "Invalid discard option"); 1383818584a4SKevin Wolf ret = -EINVAL; 1384818584a4SKevin Wolf goto fail_opts; 1385818584a4SKevin Wolf } 1386818584a4SKevin Wolf } 1387818584a4SKevin Wolf 1388692e01a2SKevin Wolf detect_zeroes = qemu_opt_get(opts, "detect-zeroes"); 1389692e01a2SKevin Wolf if (detect_zeroes) { 1390692e01a2SKevin Wolf BlockdevDetectZeroesOptions value = 1391f7abe0ecSMarc-André Lureau qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, 1392692e01a2SKevin Wolf detect_zeroes, 1393692e01a2SKevin Wolf BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, 1394692e01a2SKevin Wolf &local_err); 1395692e01a2SKevin Wolf if (local_err) { 1396692e01a2SKevin Wolf error_propagate(errp, local_err); 1397692e01a2SKevin Wolf ret = -EINVAL; 1398692e01a2SKevin Wolf goto fail_opts; 1399692e01a2SKevin Wolf } 1400692e01a2SKevin Wolf 1401692e01a2SKevin Wolf if (value == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP && 1402692e01a2SKevin Wolf !(bs->open_flags & BDRV_O_UNMAP)) 1403692e01a2SKevin Wolf { 1404692e01a2SKevin Wolf error_setg(errp, "setting detect-zeroes to unmap is not allowed " 1405692e01a2SKevin Wolf "without setting discard operation to unmap"); 1406692e01a2SKevin Wolf ret = -EINVAL; 1407692e01a2SKevin Wolf goto fail_opts; 1408692e01a2SKevin Wolf } 1409692e01a2SKevin Wolf 1410692e01a2SKevin Wolf bs->detect_zeroes = value; 1411692e01a2SKevin Wolf } 1412692e01a2SKevin Wolf 1413c2ad1b0cSKevin Wolf if (filename != NULL) { 141457915332SKevin Wolf pstrcpy(bs->filename, sizeof(bs->filename), filename); 1415c2ad1b0cSKevin Wolf } else { 1416c2ad1b0cSKevin Wolf bs->filename[0] = '\0'; 1417c2ad1b0cSKevin Wolf } 141891af7014SMax Reitz pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename); 141957915332SKevin Wolf 142066f82ceeSKevin Wolf /* Open the image, either directly or using a protocol */ 142182dc8b41SKevin Wolf open_flags = bdrv_open_flags(bs, bs->open_flags); 142201a56501SKevin Wolf node_name = qemu_opt_get(opts, "node-name"); 142366f82ceeSKevin Wolf 142401a56501SKevin Wolf assert(!drv->bdrv_file_open || file == NULL); 142501a56501SKevin Wolf ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp); 142657915332SKevin Wolf if (ret < 0) { 142701a56501SKevin Wolf goto fail_opts; 142834b5d2c6SMax Reitz } 142918edf289SKevin Wolf 143018edf289SKevin Wolf qemu_opts_del(opts); 143157915332SKevin Wolf return 0; 143257915332SKevin Wolf 143318edf289SKevin Wolf fail_opts: 143418edf289SKevin Wolf qemu_opts_del(opts); 143557915332SKevin Wolf return ret; 143657915332SKevin Wolf } 143757915332SKevin Wolf 14385e5c4f63SKevin Wolf static QDict *parse_json_filename(const char *filename, Error **errp) 14395e5c4f63SKevin Wolf { 14405e5c4f63SKevin Wolf QObject *options_obj; 14415e5c4f63SKevin Wolf QDict *options; 14425e5c4f63SKevin Wolf int ret; 14435e5c4f63SKevin Wolf 14445e5c4f63SKevin Wolf ret = strstart(filename, "json:", &filename); 14455e5c4f63SKevin Wolf assert(ret); 14465e5c4f63SKevin Wolf 14475577fff7SMarkus Armbruster options_obj = qobject_from_json(filename, errp); 14485e5c4f63SKevin Wolf if (!options_obj) { 14495577fff7SMarkus Armbruster /* Work around qobject_from_json() lossage TODO fix that */ 14505577fff7SMarkus Armbruster if (errp && !*errp) { 14515e5c4f63SKevin Wolf error_setg(errp, "Could not parse the JSON options"); 14525e5c4f63SKevin Wolf return NULL; 14535e5c4f63SKevin Wolf } 14545577fff7SMarkus Armbruster error_prepend(errp, "Could not parse the JSON options: "); 14555577fff7SMarkus Armbruster return NULL; 14565577fff7SMarkus Armbruster } 14575e5c4f63SKevin Wolf 1458ca6b6e1eSMarkus Armbruster options = qobject_to_qdict(options_obj); 1459ca6b6e1eSMarkus Armbruster if (!options) { 14605e5c4f63SKevin Wolf qobject_decref(options_obj); 14615e5c4f63SKevin Wolf error_setg(errp, "Invalid JSON object given"); 14625e5c4f63SKevin Wolf return NULL; 14635e5c4f63SKevin Wolf } 14645e5c4f63SKevin Wolf 14655e5c4f63SKevin Wolf qdict_flatten(options); 14665e5c4f63SKevin Wolf 14675e5c4f63SKevin Wolf return options; 14685e5c4f63SKevin Wolf } 14695e5c4f63SKevin Wolf 1470de3b53f0SKevin Wolf static void parse_json_protocol(QDict *options, const char **pfilename, 1471de3b53f0SKevin Wolf Error **errp) 1472de3b53f0SKevin Wolf { 1473de3b53f0SKevin Wolf QDict *json_options; 1474de3b53f0SKevin Wolf Error *local_err = NULL; 1475de3b53f0SKevin Wolf 1476de3b53f0SKevin Wolf /* Parse json: pseudo-protocol */ 1477de3b53f0SKevin Wolf if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) { 1478de3b53f0SKevin Wolf return; 1479de3b53f0SKevin Wolf } 1480de3b53f0SKevin Wolf 1481de3b53f0SKevin Wolf json_options = parse_json_filename(*pfilename, &local_err); 1482de3b53f0SKevin Wolf if (local_err) { 1483de3b53f0SKevin Wolf error_propagate(errp, local_err); 1484de3b53f0SKevin Wolf return; 1485de3b53f0SKevin Wolf } 1486de3b53f0SKevin Wolf 1487de3b53f0SKevin Wolf /* Options given in the filename have lower priority than options 1488de3b53f0SKevin Wolf * specified directly */ 1489de3b53f0SKevin Wolf qdict_join(options, json_options, false); 1490de3b53f0SKevin Wolf QDECREF(json_options); 1491de3b53f0SKevin Wolf *pfilename = NULL; 1492de3b53f0SKevin Wolf } 1493de3b53f0SKevin Wolf 149457915332SKevin Wolf /* 1495f54120ffSKevin Wolf * Fills in default options for opening images and converts the legacy 1496f54120ffSKevin Wolf * filename/flags pair to option QDict entries. 149753a29513SMax Reitz * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a 149853a29513SMax Reitz * block driver has been specified explicitly. 1499f54120ffSKevin Wolf */ 1500de3b53f0SKevin Wolf static int bdrv_fill_options(QDict **options, const char *filename, 1501053e1578SMax Reitz int *flags, Error **errp) 1502f54120ffSKevin Wolf { 1503f54120ffSKevin Wolf const char *drvname; 150453a29513SMax Reitz bool protocol = *flags & BDRV_O_PROTOCOL; 1505f54120ffSKevin Wolf bool parse_filename = false; 1506053e1578SMax Reitz BlockDriver *drv = NULL; 1507f54120ffSKevin Wolf Error *local_err = NULL; 1508f54120ffSKevin Wolf 1509129c7d1cSMarkus Armbruster /* 1510129c7d1cSMarkus Armbruster * Caution: while qdict_get_try_str() is fine, getting non-string 1511129c7d1cSMarkus Armbruster * types would require more care. When @options come from 1512129c7d1cSMarkus Armbruster * -blockdev or blockdev_add, its members are typed according to 1513129c7d1cSMarkus Armbruster * the QAPI schema, but when they come from -drive, they're all 1514129c7d1cSMarkus Armbruster * QString. 1515129c7d1cSMarkus Armbruster */ 151653a29513SMax Reitz drvname = qdict_get_try_str(*options, "driver"); 1517053e1578SMax Reitz if (drvname) { 1518053e1578SMax Reitz drv = bdrv_find_format(drvname); 1519053e1578SMax Reitz if (!drv) { 1520053e1578SMax Reitz error_setg(errp, "Unknown driver '%s'", drvname); 1521053e1578SMax Reitz return -ENOENT; 1522053e1578SMax Reitz } 152353a29513SMax Reitz /* If the user has explicitly specified the driver, this choice should 152453a29513SMax Reitz * override the BDRV_O_PROTOCOL flag */ 1525053e1578SMax Reitz protocol = drv->bdrv_file_open; 152653a29513SMax Reitz } 152753a29513SMax Reitz 152853a29513SMax Reitz if (protocol) { 152953a29513SMax Reitz *flags |= BDRV_O_PROTOCOL; 153053a29513SMax Reitz } else { 153153a29513SMax Reitz *flags &= ~BDRV_O_PROTOCOL; 153253a29513SMax Reitz } 153353a29513SMax Reitz 153491a097e7SKevin Wolf /* Translate cache options from flags into options */ 153591a097e7SKevin Wolf update_options_from_flags(*options, *flags); 153691a097e7SKevin Wolf 1537f54120ffSKevin Wolf /* Fetch the file name from the options QDict if necessary */ 153817b005f1SKevin Wolf if (protocol && filename) { 1539f54120ffSKevin Wolf if (!qdict_haskey(*options, "filename")) { 154046f5ac20SEric Blake qdict_put_str(*options, "filename", filename); 1541f54120ffSKevin Wolf parse_filename = true; 1542f54120ffSKevin Wolf } else { 1543f54120ffSKevin Wolf error_setg(errp, "Can't specify 'file' and 'filename' options at " 1544f54120ffSKevin Wolf "the same time"); 1545f54120ffSKevin Wolf return -EINVAL; 1546f54120ffSKevin Wolf } 1547f54120ffSKevin Wolf } 1548f54120ffSKevin Wolf 1549f54120ffSKevin Wolf /* Find the right block driver */ 1550129c7d1cSMarkus Armbruster /* See cautionary note on accessing @options above */ 1551f54120ffSKevin Wolf filename = qdict_get_try_str(*options, "filename"); 1552f54120ffSKevin Wolf 155317b005f1SKevin Wolf if (!drvname && protocol) { 1554f54120ffSKevin Wolf if (filename) { 1555b65a5e12SMax Reitz drv = bdrv_find_protocol(filename, parse_filename, errp); 1556f54120ffSKevin Wolf if (!drv) { 1557f54120ffSKevin Wolf return -EINVAL; 1558f54120ffSKevin Wolf } 1559f54120ffSKevin Wolf 1560f54120ffSKevin Wolf drvname = drv->format_name; 156146f5ac20SEric Blake qdict_put_str(*options, "driver", drvname); 1562f54120ffSKevin Wolf } else { 1563f54120ffSKevin Wolf error_setg(errp, "Must specify either driver or file"); 1564f54120ffSKevin Wolf return -EINVAL; 1565f54120ffSKevin Wolf } 156617b005f1SKevin Wolf } 156717b005f1SKevin Wolf 156817b005f1SKevin Wolf assert(drv || !protocol); 1569f54120ffSKevin Wolf 1570f54120ffSKevin Wolf /* Driver-specific filename parsing */ 157117b005f1SKevin Wolf if (drv && drv->bdrv_parse_filename && parse_filename) { 1572f54120ffSKevin Wolf drv->bdrv_parse_filename(filename, *options, &local_err); 1573f54120ffSKevin Wolf if (local_err) { 1574f54120ffSKevin Wolf error_propagate(errp, local_err); 1575f54120ffSKevin Wolf return -EINVAL; 1576f54120ffSKevin Wolf } 1577f54120ffSKevin Wolf 1578f54120ffSKevin Wolf if (!drv->bdrv_needs_filename) { 1579f54120ffSKevin Wolf qdict_del(*options, "filename"); 1580f54120ffSKevin Wolf } 1581f54120ffSKevin Wolf } 1582f54120ffSKevin Wolf 1583f54120ffSKevin Wolf return 0; 1584f54120ffSKevin Wolf } 1585f54120ffSKevin Wolf 15863121fb45SKevin Wolf static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q, 15873121fb45SKevin Wolf uint64_t perm, uint64_t shared, 1588c1cef672SFam Zheng GSList *ignore_children, Error **errp); 1589c1cef672SFam Zheng static void bdrv_child_abort_perm_update(BdrvChild *c); 1590c1cef672SFam Zheng static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared); 1591c1cef672SFam Zheng 1592148eb13cSKevin Wolf typedef struct BlockReopenQueueEntry { 1593148eb13cSKevin Wolf bool prepared; 1594148eb13cSKevin Wolf BDRVReopenState state; 1595148eb13cSKevin Wolf QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry; 1596148eb13cSKevin Wolf } BlockReopenQueueEntry; 1597148eb13cSKevin Wolf 1598148eb13cSKevin Wolf /* 1599148eb13cSKevin Wolf * Return the flags that @bs will have after the reopens in @q have 1600148eb13cSKevin Wolf * successfully completed. If @q is NULL (or @bs is not contained in @q), 1601148eb13cSKevin Wolf * return the current flags. 1602148eb13cSKevin Wolf */ 1603148eb13cSKevin Wolf static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs) 1604148eb13cSKevin Wolf { 1605148eb13cSKevin Wolf BlockReopenQueueEntry *entry; 1606148eb13cSKevin Wolf 1607148eb13cSKevin Wolf if (q != NULL) { 1608148eb13cSKevin Wolf QSIMPLEQ_FOREACH(entry, q, entry) { 1609148eb13cSKevin Wolf if (entry->state.bs == bs) { 1610148eb13cSKevin Wolf return entry->state.flags; 1611148eb13cSKevin Wolf } 1612148eb13cSKevin Wolf } 1613148eb13cSKevin Wolf } 1614148eb13cSKevin Wolf 1615148eb13cSKevin Wolf return bs->open_flags; 1616148eb13cSKevin Wolf } 1617148eb13cSKevin Wolf 1618148eb13cSKevin Wolf /* Returns whether the image file can be written to after the reopen queue @q 1619148eb13cSKevin Wolf * has been successfully applied, or right now if @q is NULL. */ 1620148eb13cSKevin Wolf static bool bdrv_is_writable(BlockDriverState *bs, BlockReopenQueue *q) 1621148eb13cSKevin Wolf { 1622148eb13cSKevin Wolf int flags = bdrv_reopen_get_flags(q, bs); 1623148eb13cSKevin Wolf 1624148eb13cSKevin Wolf return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR; 1625148eb13cSKevin Wolf } 1626148eb13cSKevin Wolf 1627ffd1a5a2SFam Zheng static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs, 1628e0995dc3SKevin Wolf BdrvChild *c, const BdrvChildRole *role, 1629e0995dc3SKevin Wolf BlockReopenQueue *reopen_queue, 1630ffd1a5a2SFam Zheng uint64_t parent_perm, uint64_t parent_shared, 1631ffd1a5a2SFam Zheng uint64_t *nperm, uint64_t *nshared) 1632ffd1a5a2SFam Zheng { 1633ffd1a5a2SFam Zheng if (bs->drv && bs->drv->bdrv_child_perm) { 1634e0995dc3SKevin Wolf bs->drv->bdrv_child_perm(bs, c, role, reopen_queue, 1635ffd1a5a2SFam Zheng parent_perm, parent_shared, 1636ffd1a5a2SFam Zheng nperm, nshared); 1637ffd1a5a2SFam Zheng } 1638e0995dc3SKevin Wolf /* TODO Take force_share from reopen_queue */ 1639ffd1a5a2SFam Zheng if (child_bs && child_bs->force_share) { 1640ffd1a5a2SFam Zheng *nshared = BLK_PERM_ALL; 1641ffd1a5a2SFam Zheng } 1642ffd1a5a2SFam Zheng } 1643ffd1a5a2SFam Zheng 164433a610c3SKevin Wolf /* 164533a610c3SKevin Wolf * Check whether permissions on this node can be changed in a way that 164633a610c3SKevin Wolf * @cumulative_perms and @cumulative_shared_perms are the new cumulative 164733a610c3SKevin Wolf * permissions of all its parents. This involves checking whether all necessary 164833a610c3SKevin Wolf * permission changes to child nodes can be performed. 164933a610c3SKevin Wolf * 165033a610c3SKevin Wolf * A call to this function must always be followed by a call to bdrv_set_perm() 165133a610c3SKevin Wolf * or bdrv_abort_perm_update(). 165233a610c3SKevin Wolf */ 16533121fb45SKevin Wolf static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q, 16543121fb45SKevin Wolf uint64_t cumulative_perms, 165546181129SKevin Wolf uint64_t cumulative_shared_perms, 165646181129SKevin Wolf GSList *ignore_children, Error **errp) 165733a610c3SKevin Wolf { 165833a610c3SKevin Wolf BlockDriver *drv = bs->drv; 165933a610c3SKevin Wolf BdrvChild *c; 166033a610c3SKevin Wolf int ret; 166133a610c3SKevin Wolf 166233a610c3SKevin Wolf /* Write permissions never work with read-only images */ 166333a610c3SKevin Wolf if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && 1664148eb13cSKevin Wolf !bdrv_is_writable(bs, q)) 166533a610c3SKevin Wolf { 166633a610c3SKevin Wolf error_setg(errp, "Block node is read-only"); 166733a610c3SKevin Wolf return -EPERM; 166833a610c3SKevin Wolf } 166933a610c3SKevin Wolf 167033a610c3SKevin Wolf /* Check this node */ 167133a610c3SKevin Wolf if (!drv) { 167233a610c3SKevin Wolf return 0; 167333a610c3SKevin Wolf } 167433a610c3SKevin Wolf 167533a610c3SKevin Wolf if (drv->bdrv_check_perm) { 167633a610c3SKevin Wolf return drv->bdrv_check_perm(bs, cumulative_perms, 167733a610c3SKevin Wolf cumulative_shared_perms, errp); 167833a610c3SKevin Wolf } 167933a610c3SKevin Wolf 168078e421c9SKevin Wolf /* Drivers that never have children can omit .bdrv_child_perm() */ 168133a610c3SKevin Wolf if (!drv->bdrv_child_perm) { 168278e421c9SKevin Wolf assert(QLIST_EMPTY(&bs->children)); 168333a610c3SKevin Wolf return 0; 168433a610c3SKevin Wolf } 168533a610c3SKevin Wolf 168633a610c3SKevin Wolf /* Check all children */ 168733a610c3SKevin Wolf QLIST_FOREACH(c, &bs->children, next) { 168833a610c3SKevin Wolf uint64_t cur_perm, cur_shared; 16893121fb45SKevin Wolf bdrv_child_perm(bs, c->bs, c, c->role, q, 169033a610c3SKevin Wolf cumulative_perms, cumulative_shared_perms, 169133a610c3SKevin Wolf &cur_perm, &cur_shared); 16923121fb45SKevin Wolf ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared, 16933121fb45SKevin Wolf ignore_children, errp); 169433a610c3SKevin Wolf if (ret < 0) { 169533a610c3SKevin Wolf return ret; 169633a610c3SKevin Wolf } 169733a610c3SKevin Wolf } 169833a610c3SKevin Wolf 169933a610c3SKevin Wolf return 0; 170033a610c3SKevin Wolf } 170133a610c3SKevin Wolf 170233a610c3SKevin Wolf /* 170333a610c3SKevin Wolf * Notifies drivers that after a previous bdrv_check_perm() call, the 170433a610c3SKevin Wolf * permission update is not performed and any preparations made for it (e.g. 170533a610c3SKevin Wolf * taken file locks) need to be undone. 170633a610c3SKevin Wolf * 170733a610c3SKevin Wolf * This function recursively notifies all child nodes. 170833a610c3SKevin Wolf */ 170933a610c3SKevin Wolf static void bdrv_abort_perm_update(BlockDriverState *bs) 171033a610c3SKevin Wolf { 171133a610c3SKevin Wolf BlockDriver *drv = bs->drv; 171233a610c3SKevin Wolf BdrvChild *c; 171333a610c3SKevin Wolf 171433a610c3SKevin Wolf if (!drv) { 171533a610c3SKevin Wolf return; 171633a610c3SKevin Wolf } 171733a610c3SKevin Wolf 171833a610c3SKevin Wolf if (drv->bdrv_abort_perm_update) { 171933a610c3SKevin Wolf drv->bdrv_abort_perm_update(bs); 172033a610c3SKevin Wolf } 172133a610c3SKevin Wolf 172233a610c3SKevin Wolf QLIST_FOREACH(c, &bs->children, next) { 172333a610c3SKevin Wolf bdrv_child_abort_perm_update(c); 172433a610c3SKevin Wolf } 172533a610c3SKevin Wolf } 172633a610c3SKevin Wolf 172733a610c3SKevin Wolf static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms, 172833a610c3SKevin Wolf uint64_t cumulative_shared_perms) 172933a610c3SKevin Wolf { 173033a610c3SKevin Wolf BlockDriver *drv = bs->drv; 173133a610c3SKevin Wolf BdrvChild *c; 173233a610c3SKevin Wolf 173333a610c3SKevin Wolf if (!drv) { 173433a610c3SKevin Wolf return; 173533a610c3SKevin Wolf } 173633a610c3SKevin Wolf 173733a610c3SKevin Wolf /* Update this node */ 173833a610c3SKevin Wolf if (drv->bdrv_set_perm) { 173933a610c3SKevin Wolf drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms); 174033a610c3SKevin Wolf } 174133a610c3SKevin Wolf 174278e421c9SKevin Wolf /* Drivers that never have children can omit .bdrv_child_perm() */ 174333a610c3SKevin Wolf if (!drv->bdrv_child_perm) { 174478e421c9SKevin Wolf assert(QLIST_EMPTY(&bs->children)); 174533a610c3SKevin Wolf return; 174633a610c3SKevin Wolf } 174733a610c3SKevin Wolf 174833a610c3SKevin Wolf /* Update all children */ 174933a610c3SKevin Wolf QLIST_FOREACH(c, &bs->children, next) { 175033a610c3SKevin Wolf uint64_t cur_perm, cur_shared; 1751e0995dc3SKevin Wolf bdrv_child_perm(bs, c->bs, c, c->role, NULL, 175233a610c3SKevin Wolf cumulative_perms, cumulative_shared_perms, 175333a610c3SKevin Wolf &cur_perm, &cur_shared); 175433a610c3SKevin Wolf bdrv_child_set_perm(c, cur_perm, cur_shared); 175533a610c3SKevin Wolf } 175633a610c3SKevin Wolf } 175733a610c3SKevin Wolf 175833a610c3SKevin Wolf static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm, 175933a610c3SKevin Wolf uint64_t *shared_perm) 176033a610c3SKevin Wolf { 176133a610c3SKevin Wolf BdrvChild *c; 176233a610c3SKevin Wolf uint64_t cumulative_perms = 0; 176333a610c3SKevin Wolf uint64_t cumulative_shared_perms = BLK_PERM_ALL; 176433a610c3SKevin Wolf 176533a610c3SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 176633a610c3SKevin Wolf cumulative_perms |= c->perm; 176733a610c3SKevin Wolf cumulative_shared_perms &= c->shared_perm; 176833a610c3SKevin Wolf } 176933a610c3SKevin Wolf 177033a610c3SKevin Wolf *perm = cumulative_perms; 177133a610c3SKevin Wolf *shared_perm = cumulative_shared_perms; 177233a610c3SKevin Wolf } 177333a610c3SKevin Wolf 1774d083319fSKevin Wolf static char *bdrv_child_user_desc(BdrvChild *c) 1775d083319fSKevin Wolf { 1776d083319fSKevin Wolf if (c->role->get_parent_desc) { 1777d083319fSKevin Wolf return c->role->get_parent_desc(c); 1778d083319fSKevin Wolf } 1779d083319fSKevin Wolf 1780d083319fSKevin Wolf return g_strdup("another user"); 1781d083319fSKevin Wolf } 1782d083319fSKevin Wolf 17835176196cSFam Zheng char *bdrv_perm_names(uint64_t perm) 1784d083319fSKevin Wolf { 1785d083319fSKevin Wolf struct perm_name { 1786d083319fSKevin Wolf uint64_t perm; 1787d083319fSKevin Wolf const char *name; 1788d083319fSKevin Wolf } permissions[] = { 1789d083319fSKevin Wolf { BLK_PERM_CONSISTENT_READ, "consistent read" }, 1790d083319fSKevin Wolf { BLK_PERM_WRITE, "write" }, 1791d083319fSKevin Wolf { BLK_PERM_WRITE_UNCHANGED, "write unchanged" }, 1792d083319fSKevin Wolf { BLK_PERM_RESIZE, "resize" }, 1793d083319fSKevin Wolf { BLK_PERM_GRAPH_MOD, "change children" }, 1794d083319fSKevin Wolf { 0, NULL } 1795d083319fSKevin Wolf }; 1796d083319fSKevin Wolf 1797d083319fSKevin Wolf char *result = g_strdup(""); 1798d083319fSKevin Wolf struct perm_name *p; 1799d083319fSKevin Wolf 1800d083319fSKevin Wolf for (p = permissions; p->name; p++) { 1801d083319fSKevin Wolf if (perm & p->perm) { 1802d083319fSKevin Wolf char *old = result; 1803d083319fSKevin Wolf result = g_strdup_printf("%s%s%s", old, *old ? ", " : "", p->name); 1804d083319fSKevin Wolf g_free(old); 1805d083319fSKevin Wolf } 1806d083319fSKevin Wolf } 1807d083319fSKevin Wolf 1808d083319fSKevin Wolf return result; 1809d083319fSKevin Wolf } 1810d083319fSKevin Wolf 181133a610c3SKevin Wolf /* 181233a610c3SKevin Wolf * Checks whether a new reference to @bs can be added if the new user requires 181346181129SKevin Wolf * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is 181446181129SKevin Wolf * set, the BdrvChild objects in this list are ignored in the calculations; 181546181129SKevin Wolf * this allows checking permission updates for an existing reference. 181633a610c3SKevin Wolf * 181733a610c3SKevin Wolf * Needs to be followed by a call to either bdrv_set_perm() or 181833a610c3SKevin Wolf * bdrv_abort_perm_update(). */ 18193121fb45SKevin Wolf static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q, 18203121fb45SKevin Wolf uint64_t new_used_perm, 1821d5e6f437SKevin Wolf uint64_t new_shared_perm, 182246181129SKevin Wolf GSList *ignore_children, Error **errp) 1823d5e6f437SKevin Wolf { 1824d5e6f437SKevin Wolf BdrvChild *c; 182533a610c3SKevin Wolf uint64_t cumulative_perms = new_used_perm; 182633a610c3SKevin Wolf uint64_t cumulative_shared_perms = new_shared_perm; 1827d5e6f437SKevin Wolf 1828d5e6f437SKevin Wolf /* There is no reason why anyone couldn't tolerate write_unchanged */ 1829d5e6f437SKevin Wolf assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED); 1830d5e6f437SKevin Wolf 1831d5e6f437SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 183246181129SKevin Wolf if (g_slist_find(ignore_children, c)) { 1833d5e6f437SKevin Wolf continue; 1834d5e6f437SKevin Wolf } 1835d5e6f437SKevin Wolf 1836d083319fSKevin Wolf if ((new_used_perm & c->shared_perm) != new_used_perm) { 1837d083319fSKevin Wolf char *user = bdrv_child_user_desc(c); 1838d083319fSKevin Wolf char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm); 1839d083319fSKevin Wolf error_setg(errp, "Conflicts with use by %s as '%s', which does not " 1840d083319fSKevin Wolf "allow '%s' on %s", 1841d083319fSKevin Wolf user, c->name, perm_names, bdrv_get_node_name(c->bs)); 1842d083319fSKevin Wolf g_free(user); 1843d083319fSKevin Wolf g_free(perm_names); 1844d083319fSKevin Wolf return -EPERM; 1845d5e6f437SKevin Wolf } 1846d083319fSKevin Wolf 1847d083319fSKevin Wolf if ((c->perm & new_shared_perm) != c->perm) { 1848d083319fSKevin Wolf char *user = bdrv_child_user_desc(c); 1849d083319fSKevin Wolf char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm); 1850d083319fSKevin Wolf error_setg(errp, "Conflicts with use by %s as '%s', which uses " 1851d083319fSKevin Wolf "'%s' on %s", 1852d083319fSKevin Wolf user, c->name, perm_names, bdrv_get_node_name(c->bs)); 1853d083319fSKevin Wolf g_free(user); 1854d083319fSKevin Wolf g_free(perm_names); 1855d5e6f437SKevin Wolf return -EPERM; 1856d5e6f437SKevin Wolf } 185733a610c3SKevin Wolf 185833a610c3SKevin Wolf cumulative_perms |= c->perm; 185933a610c3SKevin Wolf cumulative_shared_perms &= c->shared_perm; 1860d5e6f437SKevin Wolf } 1861d5e6f437SKevin Wolf 18623121fb45SKevin Wolf return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms, 186346181129SKevin Wolf ignore_children, errp); 186433a610c3SKevin Wolf } 186533a610c3SKevin Wolf 186633a610c3SKevin Wolf /* Needs to be followed by a call to either bdrv_child_set_perm() or 186733a610c3SKevin Wolf * bdrv_child_abort_perm_update(). */ 18683121fb45SKevin Wolf static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q, 18693121fb45SKevin Wolf uint64_t perm, uint64_t shared, 187046181129SKevin Wolf GSList *ignore_children, Error **errp) 187133a610c3SKevin Wolf { 187246181129SKevin Wolf int ret; 187346181129SKevin Wolf 187446181129SKevin Wolf ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c); 18753121fb45SKevin Wolf ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children, errp); 187646181129SKevin Wolf g_slist_free(ignore_children); 187746181129SKevin Wolf 187846181129SKevin Wolf return ret; 187933a610c3SKevin Wolf } 188033a610c3SKevin Wolf 1881c1cef672SFam Zheng static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared) 188233a610c3SKevin Wolf { 188333a610c3SKevin Wolf uint64_t cumulative_perms, cumulative_shared_perms; 188433a610c3SKevin Wolf 188533a610c3SKevin Wolf c->perm = perm; 188633a610c3SKevin Wolf c->shared_perm = shared; 188733a610c3SKevin Wolf 188833a610c3SKevin Wolf bdrv_get_cumulative_perm(c->bs, &cumulative_perms, 188933a610c3SKevin Wolf &cumulative_shared_perms); 189033a610c3SKevin Wolf bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms); 189133a610c3SKevin Wolf } 189233a610c3SKevin Wolf 1893c1cef672SFam Zheng static void bdrv_child_abort_perm_update(BdrvChild *c) 189433a610c3SKevin Wolf { 189533a610c3SKevin Wolf bdrv_abort_perm_update(c->bs); 189633a610c3SKevin Wolf } 189733a610c3SKevin Wolf 189833a610c3SKevin Wolf int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared, 189933a610c3SKevin Wolf Error **errp) 190033a610c3SKevin Wolf { 190133a610c3SKevin Wolf int ret; 190233a610c3SKevin Wolf 19033121fb45SKevin Wolf ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL, errp); 190433a610c3SKevin Wolf if (ret < 0) { 190533a610c3SKevin Wolf bdrv_child_abort_perm_update(c); 190633a610c3SKevin Wolf return ret; 190733a610c3SKevin Wolf } 190833a610c3SKevin Wolf 190933a610c3SKevin Wolf bdrv_child_set_perm(c, perm, shared); 191033a610c3SKevin Wolf 1911d5e6f437SKevin Wolf return 0; 1912d5e6f437SKevin Wolf } 1913d5e6f437SKevin Wolf 19146a1b9ee1SKevin Wolf #define DEFAULT_PERM_PASSTHROUGH (BLK_PERM_CONSISTENT_READ \ 19156a1b9ee1SKevin Wolf | BLK_PERM_WRITE \ 19166a1b9ee1SKevin Wolf | BLK_PERM_WRITE_UNCHANGED \ 19176a1b9ee1SKevin Wolf | BLK_PERM_RESIZE) 19186a1b9ee1SKevin Wolf #define DEFAULT_PERM_UNCHANGED (BLK_PERM_ALL & ~DEFAULT_PERM_PASSTHROUGH) 19196a1b9ee1SKevin Wolf 19206a1b9ee1SKevin Wolf void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c, 19216a1b9ee1SKevin Wolf const BdrvChildRole *role, 1922e0995dc3SKevin Wolf BlockReopenQueue *reopen_queue, 19236a1b9ee1SKevin Wolf uint64_t perm, uint64_t shared, 19246a1b9ee1SKevin Wolf uint64_t *nperm, uint64_t *nshared) 19256a1b9ee1SKevin Wolf { 19266a1b9ee1SKevin Wolf if (c == NULL) { 19276a1b9ee1SKevin Wolf *nperm = perm & DEFAULT_PERM_PASSTHROUGH; 19286a1b9ee1SKevin Wolf *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED; 19296a1b9ee1SKevin Wolf return; 19306a1b9ee1SKevin Wolf } 19316a1b9ee1SKevin Wolf 19326a1b9ee1SKevin Wolf *nperm = (perm & DEFAULT_PERM_PASSTHROUGH) | 19336a1b9ee1SKevin Wolf (c->perm & DEFAULT_PERM_UNCHANGED); 19346a1b9ee1SKevin Wolf *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | 19356a1b9ee1SKevin Wolf (c->shared_perm & DEFAULT_PERM_UNCHANGED); 19366a1b9ee1SKevin Wolf } 19376a1b9ee1SKevin Wolf 19386b1a044aSKevin Wolf void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c, 19396b1a044aSKevin Wolf const BdrvChildRole *role, 1940e0995dc3SKevin Wolf BlockReopenQueue *reopen_queue, 19416b1a044aSKevin Wolf uint64_t perm, uint64_t shared, 19426b1a044aSKevin Wolf uint64_t *nperm, uint64_t *nshared) 19436b1a044aSKevin Wolf { 19446b1a044aSKevin Wolf bool backing = (role == &child_backing); 19456b1a044aSKevin Wolf assert(role == &child_backing || role == &child_file); 19466b1a044aSKevin Wolf 19476b1a044aSKevin Wolf if (!backing) { 19485fbfabd3SKevin Wolf int flags = bdrv_reopen_get_flags(reopen_queue, bs); 19495fbfabd3SKevin Wolf 19506b1a044aSKevin Wolf /* Apart from the modifications below, the same permissions are 19516b1a044aSKevin Wolf * forwarded and left alone as for filters */ 1952e0995dc3SKevin Wolf bdrv_filter_default_perms(bs, c, role, reopen_queue, perm, shared, 1953e0995dc3SKevin Wolf &perm, &shared); 19546b1a044aSKevin Wolf 19556b1a044aSKevin Wolf /* Format drivers may touch metadata even if the guest doesn't write */ 1956148eb13cSKevin Wolf if (bdrv_is_writable(bs, reopen_queue)) { 19576b1a044aSKevin Wolf perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE; 19586b1a044aSKevin Wolf } 19596b1a044aSKevin Wolf 19606b1a044aSKevin Wolf /* bs->file always needs to be consistent because of the metadata. We 19616b1a044aSKevin Wolf * can never allow other users to resize or write to it. */ 19625fbfabd3SKevin Wolf if (!(flags & BDRV_O_NO_IO)) { 19636b1a044aSKevin Wolf perm |= BLK_PERM_CONSISTENT_READ; 19645fbfabd3SKevin Wolf } 19656b1a044aSKevin Wolf shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE); 19666b1a044aSKevin Wolf } else { 19676b1a044aSKevin Wolf /* We want consistent read from backing files if the parent needs it. 19686b1a044aSKevin Wolf * No other operations are performed on backing files. */ 19696b1a044aSKevin Wolf perm &= BLK_PERM_CONSISTENT_READ; 19706b1a044aSKevin Wolf 19716b1a044aSKevin Wolf /* If the parent can deal with changing data, we're okay with a 19726b1a044aSKevin Wolf * writable and resizable backing file. */ 19736b1a044aSKevin Wolf /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */ 19746b1a044aSKevin Wolf if (shared & BLK_PERM_WRITE) { 19756b1a044aSKevin Wolf shared = BLK_PERM_WRITE | BLK_PERM_RESIZE; 19766b1a044aSKevin Wolf } else { 19776b1a044aSKevin Wolf shared = 0; 19786b1a044aSKevin Wolf } 19796b1a044aSKevin Wolf 19806b1a044aSKevin Wolf shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD | 19816b1a044aSKevin Wolf BLK_PERM_WRITE_UNCHANGED; 19826b1a044aSKevin Wolf } 19836b1a044aSKevin Wolf 19849c5e6594SKevin Wolf if (bs->open_flags & BDRV_O_INACTIVE) { 19859c5e6594SKevin Wolf shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE; 19869c5e6594SKevin Wolf } 19879c5e6594SKevin Wolf 19886b1a044aSKevin Wolf *nperm = perm; 19896b1a044aSKevin Wolf *nshared = shared; 19906b1a044aSKevin Wolf } 19916b1a044aSKevin Wolf 19928ee03995SKevin Wolf static void bdrv_replace_child_noperm(BdrvChild *child, 19938ee03995SKevin Wolf BlockDriverState *new_bs) 1994e9740bc6SKevin Wolf { 1995e9740bc6SKevin Wolf BlockDriverState *old_bs = child->bs; 19960152bf40SKevin Wolf int i; 1997e9740bc6SKevin Wolf 1998bb2614e9SFam Zheng if (old_bs && new_bs) { 1999bb2614e9SFam Zheng assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs)); 2000bb2614e9SFam Zheng } 2001e9740bc6SKevin Wolf if (old_bs) { 2002d736f119SKevin Wolf /* Detach first so that the recursive drain sections coming from @child 2003d736f119SKevin Wolf * are already gone and we only end the drain sections that came from 2004d736f119SKevin Wolf * elsewhere. */ 2005d736f119SKevin Wolf if (child->role->detach) { 2006d736f119SKevin Wolf child->role->detach(child); 2007d736f119SKevin Wolf } 200836fe1331SKevin Wolf if (old_bs->quiesce_counter && child->role->drained_end) { 20090152bf40SKevin Wolf for (i = 0; i < old_bs->quiesce_counter; i++) { 201036fe1331SKevin Wolf child->role->drained_end(child); 2011e9740bc6SKevin Wolf } 20120152bf40SKevin Wolf } 201336fe1331SKevin Wolf QLIST_REMOVE(child, next_parent); 2014e9740bc6SKevin Wolf } 2015e9740bc6SKevin Wolf 2016e9740bc6SKevin Wolf child->bs = new_bs; 201736fe1331SKevin Wolf 201836fe1331SKevin Wolf if (new_bs) { 201936fe1331SKevin Wolf QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent); 202036fe1331SKevin Wolf if (new_bs->quiesce_counter && child->role->drained_begin) { 20210152bf40SKevin Wolf for (i = 0; i < new_bs->quiesce_counter; i++) { 202236fe1331SKevin Wolf child->role->drained_begin(child); 202336fe1331SKevin Wolf } 20240152bf40SKevin Wolf } 202533a610c3SKevin Wolf 2026d736f119SKevin Wolf /* Attach only after starting new drained sections, so that recursive 2027d736f119SKevin Wolf * drain sections coming from @child don't get an extra .drained_begin 2028d736f119SKevin Wolf * callback. */ 2029db95dbbaSKevin Wolf if (child->role->attach) { 2030db95dbbaSKevin Wolf child->role->attach(child); 2031db95dbbaSKevin Wolf } 203236fe1331SKevin Wolf } 2033e9740bc6SKevin Wolf } 2034e9740bc6SKevin Wolf 2035466787fbSKevin Wolf /* 2036466787fbSKevin Wolf * Updates @child to change its reference to point to @new_bs, including 2037466787fbSKevin Wolf * checking and applying the necessary permisson updates both to the old node 2038466787fbSKevin Wolf * and to @new_bs. 2039466787fbSKevin Wolf * 2040466787fbSKevin Wolf * NULL is passed as @new_bs for removing the reference before freeing @child. 2041466787fbSKevin Wolf * 2042466787fbSKevin Wolf * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this 2043466787fbSKevin Wolf * function uses bdrv_set_perm() to update the permissions according to the new 2044466787fbSKevin Wolf * reference that @new_bs gets. 2045466787fbSKevin Wolf */ 2046466787fbSKevin Wolf static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs) 20478ee03995SKevin Wolf { 20488ee03995SKevin Wolf BlockDriverState *old_bs = child->bs; 20498ee03995SKevin Wolf uint64_t perm, shared_perm; 20508ee03995SKevin Wolf 20518aecf1d1SKevin Wolf bdrv_replace_child_noperm(child, new_bs); 20528aecf1d1SKevin Wolf 20538ee03995SKevin Wolf if (old_bs) { 20548ee03995SKevin Wolf /* Update permissions for old node. This is guaranteed to succeed 20558ee03995SKevin Wolf * because we're just taking a parent away, so we're loosening 20568ee03995SKevin Wolf * restrictions. */ 20578ee03995SKevin Wolf bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm); 20583121fb45SKevin Wolf bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL, &error_abort); 20598ee03995SKevin Wolf bdrv_set_perm(old_bs, perm, shared_perm); 20608ee03995SKevin Wolf } 20618ee03995SKevin Wolf 20628ee03995SKevin Wolf if (new_bs) { 2063f54120ffSKevin Wolf bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm); 2064f54120ffSKevin Wolf bdrv_set_perm(new_bs, perm, shared_perm); 2065f54120ffSKevin Wolf } 2066f54120ffSKevin Wolf } 2067f54120ffSKevin Wolf 2068f21d96d0SKevin Wolf BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs, 2069260fecf1SKevin Wolf const char *child_name, 207036fe1331SKevin Wolf const BdrvChildRole *child_role, 2071d5e6f437SKevin Wolf uint64_t perm, uint64_t shared_perm, 2072d5e6f437SKevin Wolf void *opaque, Error **errp) 2073df581792SKevin Wolf { 2074d5e6f437SKevin Wolf BdrvChild *child; 2075d5e6f437SKevin Wolf int ret; 2076d5e6f437SKevin Wolf 20773121fb45SKevin Wolf ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, errp); 2078d5e6f437SKevin Wolf if (ret < 0) { 207933a610c3SKevin Wolf bdrv_abort_perm_update(child_bs); 2080d5e6f437SKevin Wolf return NULL; 2081d5e6f437SKevin Wolf } 2082d5e6f437SKevin Wolf 2083d5e6f437SKevin Wolf child = g_new(BdrvChild, 1); 2084df581792SKevin Wolf *child = (BdrvChild) { 2085e9740bc6SKevin Wolf .bs = NULL, 2086260fecf1SKevin Wolf .name = g_strdup(child_name), 2087df581792SKevin Wolf .role = child_role, 2088d5e6f437SKevin Wolf .perm = perm, 2089d5e6f437SKevin Wolf .shared_perm = shared_perm, 209036fe1331SKevin Wolf .opaque = opaque, 2091df581792SKevin Wolf }; 2092df581792SKevin Wolf 209333a610c3SKevin Wolf /* This performs the matching bdrv_set_perm() for the above check. */ 2094466787fbSKevin Wolf bdrv_replace_child(child, child_bs); 2095b4b059f6SKevin Wolf 2096b4b059f6SKevin Wolf return child; 2097df581792SKevin Wolf } 2098df581792SKevin Wolf 209998292c61SWen Congyang BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs, 2100f21d96d0SKevin Wolf BlockDriverState *child_bs, 2101f21d96d0SKevin Wolf const char *child_name, 21028b2ff529SKevin Wolf const BdrvChildRole *child_role, 21038b2ff529SKevin Wolf Error **errp) 2104f21d96d0SKevin Wolf { 2105d5e6f437SKevin Wolf BdrvChild *child; 2106f68c598bSKevin Wolf uint64_t perm, shared_perm; 2107d5e6f437SKevin Wolf 2108f68c598bSKevin Wolf bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm); 2109f68c598bSKevin Wolf 2110f68c598bSKevin Wolf assert(parent_bs->drv); 2111bb2614e9SFam Zheng assert(bdrv_get_aio_context(parent_bs) == bdrv_get_aio_context(child_bs)); 2112e0995dc3SKevin Wolf bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL, 2113f68c598bSKevin Wolf perm, shared_perm, &perm, &shared_perm); 2114f68c598bSKevin Wolf 2115d5e6f437SKevin Wolf child = bdrv_root_attach_child(child_bs, child_name, child_role, 2116f68c598bSKevin Wolf perm, shared_perm, parent_bs, errp); 2117d5e6f437SKevin Wolf if (child == NULL) { 2118d5e6f437SKevin Wolf return NULL; 2119d5e6f437SKevin Wolf } 2120d5e6f437SKevin Wolf 2121f21d96d0SKevin Wolf QLIST_INSERT_HEAD(&parent_bs->children, child, next); 2122f21d96d0SKevin Wolf return child; 2123f21d96d0SKevin Wolf } 2124f21d96d0SKevin Wolf 21253f09bfbcSKevin Wolf static void bdrv_detach_child(BdrvChild *child) 212633a60407SKevin Wolf { 2127f21d96d0SKevin Wolf if (child->next.le_prev) { 212833a60407SKevin Wolf QLIST_REMOVE(child, next); 2129f21d96d0SKevin Wolf child->next.le_prev = NULL; 2130f21d96d0SKevin Wolf } 2131e9740bc6SKevin Wolf 2132466787fbSKevin Wolf bdrv_replace_child(child, NULL); 2133e9740bc6SKevin Wolf 2134260fecf1SKevin Wolf g_free(child->name); 213533a60407SKevin Wolf g_free(child); 213633a60407SKevin Wolf } 213733a60407SKevin Wolf 2138f21d96d0SKevin Wolf void bdrv_root_unref_child(BdrvChild *child) 213933a60407SKevin Wolf { 2140779020cbSKevin Wolf BlockDriverState *child_bs; 2141779020cbSKevin Wolf 2142f21d96d0SKevin Wolf child_bs = child->bs; 2143f21d96d0SKevin Wolf bdrv_detach_child(child); 2144f21d96d0SKevin Wolf bdrv_unref(child_bs); 2145f21d96d0SKevin Wolf } 2146f21d96d0SKevin Wolf 2147f21d96d0SKevin Wolf void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child) 2148f21d96d0SKevin Wolf { 2149779020cbSKevin Wolf if (child == NULL) { 2150779020cbSKevin Wolf return; 2151779020cbSKevin Wolf } 215233a60407SKevin Wolf 215333a60407SKevin Wolf if (child->bs->inherits_from == parent) { 21544e4bf5c4SKevin Wolf BdrvChild *c; 21554e4bf5c4SKevin Wolf 21564e4bf5c4SKevin Wolf /* Remove inherits_from only when the last reference between parent and 21574e4bf5c4SKevin Wolf * child->bs goes away. */ 21584e4bf5c4SKevin Wolf QLIST_FOREACH(c, &parent->children, next) { 21594e4bf5c4SKevin Wolf if (c != child && c->bs == child->bs) { 21604e4bf5c4SKevin Wolf break; 21614e4bf5c4SKevin Wolf } 21624e4bf5c4SKevin Wolf } 21634e4bf5c4SKevin Wolf if (c == NULL) { 216433a60407SKevin Wolf child->bs->inherits_from = NULL; 216533a60407SKevin Wolf } 21664e4bf5c4SKevin Wolf } 216733a60407SKevin Wolf 2168f21d96d0SKevin Wolf bdrv_root_unref_child(child); 216933a60407SKevin Wolf } 217033a60407SKevin Wolf 21715c8cab48SKevin Wolf 21725c8cab48SKevin Wolf static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load) 21735c8cab48SKevin Wolf { 21745c8cab48SKevin Wolf BdrvChild *c; 21755c8cab48SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 21765c8cab48SKevin Wolf if (c->role->change_media) { 21775c8cab48SKevin Wolf c->role->change_media(c, load); 21785c8cab48SKevin Wolf } 21795c8cab48SKevin Wolf } 21805c8cab48SKevin Wolf } 21815c8cab48SKevin Wolf 21825c8cab48SKevin Wolf static void bdrv_parent_cb_resize(BlockDriverState *bs) 21835c8cab48SKevin Wolf { 21845c8cab48SKevin Wolf BdrvChild *c; 21855c8cab48SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 21865c8cab48SKevin Wolf if (c->role->resize) { 21875c8cab48SKevin Wolf c->role->resize(c); 21885c8cab48SKevin Wolf } 21895c8cab48SKevin Wolf } 21905c8cab48SKevin Wolf } 21915c8cab48SKevin Wolf 21925db15a57SKevin Wolf /* 21935db15a57SKevin Wolf * Sets the backing file link of a BDS. A new reference is created; callers 21945db15a57SKevin Wolf * which don't need their own reference any more must call bdrv_unref(). 21955db15a57SKevin Wolf */ 219612fa4af6SKevin Wolf void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd, 219712fa4af6SKevin Wolf Error **errp) 21988d24cce1SFam Zheng { 21995db15a57SKevin Wolf if (backing_hd) { 22005db15a57SKevin Wolf bdrv_ref(backing_hd); 22015db15a57SKevin Wolf } 22028d24cce1SFam Zheng 2203760e0063SKevin Wolf if (bs->backing) { 22045db15a57SKevin Wolf bdrv_unref_child(bs, bs->backing); 2205826b6ca0SFam Zheng } 2206826b6ca0SFam Zheng 22078d24cce1SFam Zheng if (!backing_hd) { 2208760e0063SKevin Wolf bs->backing = NULL; 22098d24cce1SFam Zheng goto out; 22108d24cce1SFam Zheng } 221112fa4af6SKevin Wolf 22128b2ff529SKevin Wolf bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing, 221312fa4af6SKevin Wolf errp); 221412fa4af6SKevin Wolf if (!bs->backing) { 221512fa4af6SKevin Wolf bdrv_unref(backing_hd); 221612fa4af6SKevin Wolf } 2217826b6ca0SFam Zheng 22189e7e940cSKevin Wolf bdrv_refresh_filename(bs); 22199e7e940cSKevin Wolf 22208d24cce1SFam Zheng out: 22213baca891SKevin Wolf bdrv_refresh_limits(bs, NULL); 22228d24cce1SFam Zheng } 22238d24cce1SFam Zheng 222431ca6d07SKevin Wolf /* 222531ca6d07SKevin Wolf * Opens the backing file for a BlockDriverState if not yet open 222631ca6d07SKevin Wolf * 2227d9b7b057SKevin Wolf * bdref_key specifies the key for the image's BlockdevRef in the options QDict. 2228d9b7b057SKevin Wolf * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict 2229d9b7b057SKevin Wolf * itself, all options starting with "${bdref_key}." are considered part of the 2230d9b7b057SKevin Wolf * BlockdevRef. 2231d9b7b057SKevin Wolf * 2232d9b7b057SKevin Wolf * TODO Can this be unified with bdrv_open_image()? 223331ca6d07SKevin Wolf */ 2234d9b7b057SKevin Wolf int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options, 2235d9b7b057SKevin Wolf const char *bdref_key, Error **errp) 22369156df12SPaolo Bonzini { 22371ba4b6a5SBenoît Canet char *backing_filename = g_malloc0(PATH_MAX); 2238d9b7b057SKevin Wolf char *bdref_key_dot; 2239d9b7b057SKevin Wolf const char *reference = NULL; 2240317fc44eSKevin Wolf int ret = 0; 22418d24cce1SFam Zheng BlockDriverState *backing_hd; 2242d9b7b057SKevin Wolf QDict *options; 2243d9b7b057SKevin Wolf QDict *tmp_parent_options = NULL; 224434b5d2c6SMax Reitz Error *local_err = NULL; 22459156df12SPaolo Bonzini 2246760e0063SKevin Wolf if (bs->backing != NULL) { 22471ba4b6a5SBenoît Canet goto free_exit; 22489156df12SPaolo Bonzini } 22499156df12SPaolo Bonzini 225031ca6d07SKevin Wolf /* NULL means an empty set of options */ 2251d9b7b057SKevin Wolf if (parent_options == NULL) { 2252d9b7b057SKevin Wolf tmp_parent_options = qdict_new(); 2253d9b7b057SKevin Wolf parent_options = tmp_parent_options; 225431ca6d07SKevin Wolf } 225531ca6d07SKevin Wolf 22569156df12SPaolo Bonzini bs->open_flags &= ~BDRV_O_NO_BACKING; 2257d9b7b057SKevin Wolf 2258d9b7b057SKevin Wolf bdref_key_dot = g_strdup_printf("%s.", bdref_key); 2259d9b7b057SKevin Wolf qdict_extract_subqdict(parent_options, &options, bdref_key_dot); 2260d9b7b057SKevin Wolf g_free(bdref_key_dot); 2261d9b7b057SKevin Wolf 2262129c7d1cSMarkus Armbruster /* 2263129c7d1cSMarkus Armbruster * Caution: while qdict_get_try_str() is fine, getting non-string 2264129c7d1cSMarkus Armbruster * types would require more care. When @parent_options come from 2265129c7d1cSMarkus Armbruster * -blockdev or blockdev_add, its members are typed according to 2266129c7d1cSMarkus Armbruster * the QAPI schema, but when they come from -drive, they're all 2267129c7d1cSMarkus Armbruster * QString. 2268129c7d1cSMarkus Armbruster */ 2269d9b7b057SKevin Wolf reference = qdict_get_try_str(parent_options, bdref_key); 2270d9b7b057SKevin Wolf if (reference || qdict_haskey(options, "file.filename")) { 22711cb6f506SKevin Wolf backing_filename[0] = '\0'; 22721cb6f506SKevin Wolf } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { 227331ca6d07SKevin Wolf QDECREF(options); 22741ba4b6a5SBenoît Canet goto free_exit; 2275dbecebddSFam Zheng } else { 22769f07429eSMax Reitz bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX, 22779f07429eSMax Reitz &local_err); 22789f07429eSMax Reitz if (local_err) { 22799f07429eSMax Reitz ret = -EINVAL; 22809f07429eSMax Reitz error_propagate(errp, local_err); 22819f07429eSMax Reitz QDECREF(options); 22829f07429eSMax Reitz goto free_exit; 22839f07429eSMax Reitz } 22849156df12SPaolo Bonzini } 22859156df12SPaolo Bonzini 22868ee79e70SKevin Wolf if (!bs->drv || !bs->drv->supports_backing) { 22878ee79e70SKevin Wolf ret = -EINVAL; 22888ee79e70SKevin Wolf error_setg(errp, "Driver doesn't support backing files"); 22898ee79e70SKevin Wolf QDECREF(options); 22908ee79e70SKevin Wolf goto free_exit; 22918ee79e70SKevin Wolf } 22928ee79e70SKevin Wolf 22936bff597bSPeter Krempa if (!reference && 22946bff597bSPeter Krempa bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) { 229546f5ac20SEric Blake qdict_put_str(options, "driver", bs->backing_format); 22969156df12SPaolo Bonzini } 22979156df12SPaolo Bonzini 22985b363937SMax Reitz backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL, 2299d9b7b057SKevin Wolf reference, options, 0, bs, &child_backing, 2300e43bfd9cSMarkus Armbruster errp); 23015b363937SMax Reitz if (!backing_hd) { 23029156df12SPaolo Bonzini bs->open_flags |= BDRV_O_NO_BACKING; 2303e43bfd9cSMarkus Armbruster error_prepend(errp, "Could not open backing file: "); 23045b363937SMax Reitz ret = -EINVAL; 23051ba4b6a5SBenoît Canet goto free_exit; 23069156df12SPaolo Bonzini } 23075ce6bfe2Ssochin.jiang bdrv_set_aio_context(backing_hd, bdrv_get_aio_context(bs)); 2308df581792SKevin Wolf 23095db15a57SKevin Wolf /* Hook up the backing file link; drop our reference, bs owns the 23105db15a57SKevin Wolf * backing_hd reference now */ 231112fa4af6SKevin Wolf bdrv_set_backing_hd(bs, backing_hd, &local_err); 23125db15a57SKevin Wolf bdrv_unref(backing_hd); 231312fa4af6SKevin Wolf if (local_err) { 23148cd1a3e4SFam Zheng error_propagate(errp, local_err); 231512fa4af6SKevin Wolf ret = -EINVAL; 231612fa4af6SKevin Wolf goto free_exit; 231712fa4af6SKevin Wolf } 2318d80ac658SPeter Feiner 2319d9b7b057SKevin Wolf qdict_del(parent_options, bdref_key); 2320d9b7b057SKevin Wolf 23211ba4b6a5SBenoît Canet free_exit: 23221ba4b6a5SBenoît Canet g_free(backing_filename); 2323d9b7b057SKevin Wolf QDECREF(tmp_parent_options); 23241ba4b6a5SBenoît Canet return ret; 23259156df12SPaolo Bonzini } 23269156df12SPaolo Bonzini 23272d6b86afSKevin Wolf static BlockDriverState * 23282d6b86afSKevin Wolf bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key, 23292d6b86afSKevin Wolf BlockDriverState *parent, const BdrvChildRole *child_role, 2330f7d9fd8cSMax Reitz bool allow_none, Error **errp) 2331da557aacSMax Reitz { 23322d6b86afSKevin Wolf BlockDriverState *bs = NULL; 2333da557aacSMax Reitz QDict *image_options; 2334da557aacSMax Reitz char *bdref_key_dot; 2335da557aacSMax Reitz const char *reference; 2336da557aacSMax Reitz 2337df581792SKevin Wolf assert(child_role != NULL); 2338f67503e5SMax Reitz 2339da557aacSMax Reitz bdref_key_dot = g_strdup_printf("%s.", bdref_key); 2340da557aacSMax Reitz qdict_extract_subqdict(options, &image_options, bdref_key_dot); 2341da557aacSMax Reitz g_free(bdref_key_dot); 2342da557aacSMax Reitz 2343129c7d1cSMarkus Armbruster /* 2344129c7d1cSMarkus Armbruster * Caution: while qdict_get_try_str() is fine, getting non-string 2345129c7d1cSMarkus Armbruster * types would require more care. When @options come from 2346129c7d1cSMarkus Armbruster * -blockdev or blockdev_add, its members are typed according to 2347129c7d1cSMarkus Armbruster * the QAPI schema, but when they come from -drive, they're all 2348129c7d1cSMarkus Armbruster * QString. 2349129c7d1cSMarkus Armbruster */ 2350da557aacSMax Reitz reference = qdict_get_try_str(options, bdref_key); 2351da557aacSMax Reitz if (!filename && !reference && !qdict_size(image_options)) { 2352b4b059f6SKevin Wolf if (!allow_none) { 2353da557aacSMax Reitz error_setg(errp, "A block device must be specified for \"%s\"", 2354da557aacSMax Reitz bdref_key); 2355da557aacSMax Reitz } 2356b20e61e0SMarkus Armbruster QDECREF(image_options); 2357da557aacSMax Reitz goto done; 2358da557aacSMax Reitz } 2359da557aacSMax Reitz 23605b363937SMax Reitz bs = bdrv_open_inherit(filename, reference, image_options, 0, 2361ce343771SMax Reitz parent, child_role, errp); 23625b363937SMax Reitz if (!bs) { 2363df581792SKevin Wolf goto done; 2364df581792SKevin Wolf } 2365df581792SKevin Wolf 2366da557aacSMax Reitz done: 2367da557aacSMax Reitz qdict_del(options, bdref_key); 23682d6b86afSKevin Wolf return bs; 23692d6b86afSKevin Wolf } 23702d6b86afSKevin Wolf 23712d6b86afSKevin Wolf /* 23722d6b86afSKevin Wolf * Opens a disk image whose options are given as BlockdevRef in another block 23732d6b86afSKevin Wolf * device's options. 23742d6b86afSKevin Wolf * 23752d6b86afSKevin Wolf * If allow_none is true, no image will be opened if filename is false and no 23762d6b86afSKevin Wolf * BlockdevRef is given. NULL will be returned, but errp remains unset. 23772d6b86afSKevin Wolf * 23782d6b86afSKevin Wolf * bdrev_key specifies the key for the image's BlockdevRef in the options QDict. 23792d6b86afSKevin Wolf * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict 23802d6b86afSKevin Wolf * itself, all options starting with "${bdref_key}." are considered part of the 23812d6b86afSKevin Wolf * BlockdevRef. 23822d6b86afSKevin Wolf * 23832d6b86afSKevin Wolf * The BlockdevRef will be removed from the options QDict. 23842d6b86afSKevin Wolf */ 23852d6b86afSKevin Wolf BdrvChild *bdrv_open_child(const char *filename, 23862d6b86afSKevin Wolf QDict *options, const char *bdref_key, 23872d6b86afSKevin Wolf BlockDriverState *parent, 23882d6b86afSKevin Wolf const BdrvChildRole *child_role, 23892d6b86afSKevin Wolf bool allow_none, Error **errp) 23902d6b86afSKevin Wolf { 23918b2ff529SKevin Wolf BdrvChild *c; 23922d6b86afSKevin Wolf BlockDriverState *bs; 23932d6b86afSKevin Wolf 23942d6b86afSKevin Wolf bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role, 23952d6b86afSKevin Wolf allow_none, errp); 23962d6b86afSKevin Wolf if (bs == NULL) { 23972d6b86afSKevin Wolf return NULL; 23982d6b86afSKevin Wolf } 23992d6b86afSKevin Wolf 24008b2ff529SKevin Wolf c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp); 24018b2ff529SKevin Wolf if (!c) { 24028b2ff529SKevin Wolf bdrv_unref(bs); 24038b2ff529SKevin Wolf return NULL; 24048b2ff529SKevin Wolf } 24058b2ff529SKevin Wolf 24068b2ff529SKevin Wolf return c; 2407b4b059f6SKevin Wolf } 2408b4b059f6SKevin Wolf 240966836189SMax Reitz static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs, 241066836189SMax Reitz int flags, 241166836189SMax Reitz QDict *snapshot_options, 241266836189SMax Reitz Error **errp) 2413b998875dSKevin Wolf { 2414b998875dSKevin Wolf /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */ 24151ba4b6a5SBenoît Canet char *tmp_filename = g_malloc0(PATH_MAX + 1); 2416b998875dSKevin Wolf int64_t total_size; 241783d0521aSChunyan Liu QemuOpts *opts = NULL; 2418ff6ed714SEric Blake BlockDriverState *bs_snapshot = NULL; 2419b2c2832cSKevin Wolf Error *local_err = NULL; 2420b998875dSKevin Wolf int ret; 2421b998875dSKevin Wolf 2422b998875dSKevin Wolf /* if snapshot, we create a temporary backing file and open it 2423b998875dSKevin Wolf instead of opening 'filename' directly */ 2424b998875dSKevin Wolf 2425b998875dSKevin Wolf /* Get the required size from the image */ 2426f187743aSKevin Wolf total_size = bdrv_getlength(bs); 2427f187743aSKevin Wolf if (total_size < 0) { 2428f187743aSKevin Wolf error_setg_errno(errp, -total_size, "Could not get image size"); 24291ba4b6a5SBenoît Canet goto out; 2430f187743aSKevin Wolf } 2431b998875dSKevin Wolf 2432b998875dSKevin Wolf /* Create the temporary image */ 24331ba4b6a5SBenoît Canet ret = get_tmp_filename(tmp_filename, PATH_MAX + 1); 2434b998875dSKevin Wolf if (ret < 0) { 2435b998875dSKevin Wolf error_setg_errno(errp, -ret, "Could not get temporary filename"); 24361ba4b6a5SBenoît Canet goto out; 2437b998875dSKevin Wolf } 2438b998875dSKevin Wolf 2439ef810437SMax Reitz opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0, 2440c282e1fdSChunyan Liu &error_abort); 244139101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort); 2442e43bfd9cSMarkus Armbruster ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp); 244383d0521aSChunyan Liu qemu_opts_del(opts); 2444b998875dSKevin Wolf if (ret < 0) { 2445e43bfd9cSMarkus Armbruster error_prepend(errp, "Could not create temporary overlay '%s': ", 2446e43bfd9cSMarkus Armbruster tmp_filename); 24471ba4b6a5SBenoît Canet goto out; 2448b998875dSKevin Wolf } 2449b998875dSKevin Wolf 245073176beeSKevin Wolf /* Prepare options QDict for the temporary file */ 245146f5ac20SEric Blake qdict_put_str(snapshot_options, "file.driver", "file"); 245246f5ac20SEric Blake qdict_put_str(snapshot_options, "file.filename", tmp_filename); 245346f5ac20SEric Blake qdict_put_str(snapshot_options, "driver", "qcow2"); 2454b998875dSKevin Wolf 24555b363937SMax Reitz bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp); 245673176beeSKevin Wolf snapshot_options = NULL; 24575b363937SMax Reitz if (!bs_snapshot) { 24581ba4b6a5SBenoît Canet goto out; 2459b998875dSKevin Wolf } 2460b998875dSKevin Wolf 2461ff6ed714SEric Blake /* bdrv_append() consumes a strong reference to bs_snapshot 2462ff6ed714SEric Blake * (i.e. it will call bdrv_unref() on it) even on error, so in 2463ff6ed714SEric Blake * order to be able to return one, we have to increase 2464ff6ed714SEric Blake * bs_snapshot's refcount here */ 246566836189SMax Reitz bdrv_ref(bs_snapshot); 2466b2c2832cSKevin Wolf bdrv_append(bs_snapshot, bs, &local_err); 2467b2c2832cSKevin Wolf if (local_err) { 2468b2c2832cSKevin Wolf error_propagate(errp, local_err); 2469ff6ed714SEric Blake bs_snapshot = NULL; 2470b2c2832cSKevin Wolf goto out; 2471b2c2832cSKevin Wolf } 24721ba4b6a5SBenoît Canet 24731ba4b6a5SBenoît Canet out: 247473176beeSKevin Wolf QDECREF(snapshot_options); 24751ba4b6a5SBenoît Canet g_free(tmp_filename); 2476ff6ed714SEric Blake return bs_snapshot; 2477b998875dSKevin Wolf } 2478b998875dSKevin Wolf 2479da557aacSMax Reitz /* 2480b6ce07aaSKevin Wolf * Opens a disk image (raw, qcow2, vmdk, ...) 2481de9c0cecSKevin Wolf * 2482de9c0cecSKevin Wolf * options is a QDict of options to pass to the block drivers, or NULL for an 2483de9c0cecSKevin Wolf * empty set of options. The reference to the QDict belongs to the block layer 2484de9c0cecSKevin Wolf * after the call (even on failure), so if the caller intends to reuse the 2485de9c0cecSKevin Wolf * dictionary, it needs to use QINCREF() before calling bdrv_open. 2486f67503e5SMax Reitz * 2487f67503e5SMax Reitz * If *pbs is NULL, a new BDS will be created with a pointer to it stored there. 2488f67503e5SMax Reitz * If it is not NULL, the referenced BDS will be reused. 2489ddf5636dSMax Reitz * 2490ddf5636dSMax Reitz * The reference parameter may be used to specify an existing block device which 2491ddf5636dSMax Reitz * should be opened. If specified, neither options nor a filename may be given, 2492ddf5636dSMax Reitz * nor can an existing BDS be reused (that is, *pbs has to be NULL). 2493b6ce07aaSKevin Wolf */ 24945b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename, 24955b363937SMax Reitz const char *reference, 24965b363937SMax Reitz QDict *options, int flags, 2497f3930ed0SKevin Wolf BlockDriverState *parent, 24985b363937SMax Reitz const BdrvChildRole *child_role, 24995b363937SMax Reitz Error **errp) 2500ea2384d3Sbellard { 2501b6ce07aaSKevin Wolf int ret; 25025696c6e3SKevin Wolf BlockBackend *file = NULL; 25039a4f4c31SKevin Wolf BlockDriverState *bs; 2504ce343771SMax Reitz BlockDriver *drv = NULL; 250574fe54f2SKevin Wolf const char *drvname; 25063e8c2e57SAlberto Garcia const char *backing; 250734b5d2c6SMax Reitz Error *local_err = NULL; 250873176beeSKevin Wolf QDict *snapshot_options = NULL; 2509b1e6fc08SKevin Wolf int snapshot_flags = 0; 251033e3963eSbellard 2511f3930ed0SKevin Wolf assert(!child_role || !flags); 2512f3930ed0SKevin Wolf assert(!child_role == !parent); 2513f67503e5SMax Reitz 2514ddf5636dSMax Reitz if (reference) { 2515ddf5636dSMax Reitz bool options_non_empty = options ? qdict_size(options) : false; 2516ddf5636dSMax Reitz QDECREF(options); 2517ddf5636dSMax Reitz 2518ddf5636dSMax Reitz if (filename || options_non_empty) { 2519ddf5636dSMax Reitz error_setg(errp, "Cannot reference an existing block device with " 2520ddf5636dSMax Reitz "additional options or a new filename"); 25215b363937SMax Reitz return NULL; 2522ddf5636dSMax Reitz } 2523ddf5636dSMax Reitz 2524ddf5636dSMax Reitz bs = bdrv_lookup_bs(reference, reference, errp); 2525ddf5636dSMax Reitz if (!bs) { 25265b363937SMax Reitz return NULL; 2527ddf5636dSMax Reitz } 252876b22320SKevin Wolf 2529ddf5636dSMax Reitz bdrv_ref(bs); 25305b363937SMax Reitz return bs; 2531ddf5636dSMax Reitz } 2532ddf5636dSMax Reitz 2533e4e9986bSMarkus Armbruster bs = bdrv_new(); 2534f67503e5SMax Reitz 2535de9c0cecSKevin Wolf /* NULL means an empty set of options */ 2536de9c0cecSKevin Wolf if (options == NULL) { 2537de9c0cecSKevin Wolf options = qdict_new(); 2538de9c0cecSKevin Wolf } 2539de9c0cecSKevin Wolf 2540145f598eSKevin Wolf /* json: syntax counts as explicit options, as if in the QDict */ 2541de3b53f0SKevin Wolf parse_json_protocol(options, &filename, &local_err); 2542de3b53f0SKevin Wolf if (local_err) { 2543de3b53f0SKevin Wolf goto fail; 2544de3b53f0SKevin Wolf } 2545de3b53f0SKevin Wolf 2546145f598eSKevin Wolf bs->explicit_options = qdict_clone_shallow(options); 2547145f598eSKevin Wolf 2548f3930ed0SKevin Wolf if (child_role) { 2549bddcec37SKevin Wolf bs->inherits_from = parent; 25508e2160e2SKevin Wolf child_role->inherit_options(&flags, options, 25518e2160e2SKevin Wolf parent->open_flags, parent->options); 2552f3930ed0SKevin Wolf } 2553f3930ed0SKevin Wolf 2554de3b53f0SKevin Wolf ret = bdrv_fill_options(&options, filename, &flags, &local_err); 2555462f5bcfSKevin Wolf if (local_err) { 2556462f5bcfSKevin Wolf goto fail; 2557462f5bcfSKevin Wolf } 2558462f5bcfSKevin Wolf 2559129c7d1cSMarkus Armbruster /* 2560129c7d1cSMarkus Armbruster * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags. 2561129c7d1cSMarkus Armbruster * Caution: getting a boolean member of @options requires care. 2562129c7d1cSMarkus Armbruster * When @options come from -blockdev or blockdev_add, members are 2563129c7d1cSMarkus Armbruster * typed according to the QAPI schema, but when they come from 2564129c7d1cSMarkus Armbruster * -drive, they're all QString. 2565129c7d1cSMarkus Armbruster */ 2566f87a0e29SAlberto Garcia if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") && 2567f87a0e29SAlberto Garcia !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) { 2568f87a0e29SAlberto Garcia flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR); 2569f87a0e29SAlberto Garcia } else { 2570f87a0e29SAlberto Garcia flags &= ~BDRV_O_RDWR; 257114499ea5SAlberto Garcia } 257214499ea5SAlberto Garcia 257314499ea5SAlberto Garcia if (flags & BDRV_O_SNAPSHOT) { 257414499ea5SAlberto Garcia snapshot_options = qdict_new(); 257514499ea5SAlberto Garcia bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options, 257614499ea5SAlberto Garcia flags, options); 2577f87a0e29SAlberto Garcia /* Let bdrv_backing_options() override "read-only" */ 2578f87a0e29SAlberto Garcia qdict_del(options, BDRV_OPT_READ_ONLY); 257914499ea5SAlberto Garcia bdrv_backing_options(&flags, options, flags, options); 258014499ea5SAlberto Garcia } 258114499ea5SAlberto Garcia 258262392ebbSKevin Wolf bs->open_flags = flags; 258362392ebbSKevin Wolf bs->options = options; 258462392ebbSKevin Wolf options = qdict_clone_shallow(options); 258562392ebbSKevin Wolf 258676c591b0SKevin Wolf /* Find the right image format driver */ 2587129c7d1cSMarkus Armbruster /* See cautionary note on accessing @options above */ 258876c591b0SKevin Wolf drvname = qdict_get_try_str(options, "driver"); 258976c591b0SKevin Wolf if (drvname) { 259076c591b0SKevin Wolf drv = bdrv_find_format(drvname); 259176c591b0SKevin Wolf if (!drv) { 259276c591b0SKevin Wolf error_setg(errp, "Unknown driver: '%s'", drvname); 259376c591b0SKevin Wolf goto fail; 259476c591b0SKevin Wolf } 259576c591b0SKevin Wolf } 259676c591b0SKevin Wolf 259776c591b0SKevin Wolf assert(drvname || !(flags & BDRV_O_PROTOCOL)); 259876c591b0SKevin Wolf 2599129c7d1cSMarkus Armbruster /* See cautionary note on accessing @options above */ 26003e8c2e57SAlberto Garcia backing = qdict_get_try_str(options, "backing"); 26013e8c2e57SAlberto Garcia if (backing && *backing == '\0') { 26023e8c2e57SAlberto Garcia flags |= BDRV_O_NO_BACKING; 26033e8c2e57SAlberto Garcia qdict_del(options, "backing"); 26043e8c2e57SAlberto Garcia } 26053e8c2e57SAlberto Garcia 26065696c6e3SKevin Wolf /* Open image file without format layer. This BlockBackend is only used for 26074e4bf5c4SKevin Wolf * probing, the block drivers will do their own bdrv_open_child() for the 26084e4bf5c4SKevin Wolf * same BDS, which is why we put the node name back into options. */ 2609f4788adcSKevin Wolf if ((flags & BDRV_O_PROTOCOL) == 0) { 26105696c6e3SKevin Wolf BlockDriverState *file_bs; 26115696c6e3SKevin Wolf 26125696c6e3SKevin Wolf file_bs = bdrv_open_child_bs(filename, options, "file", bs, 26131fdd6933SKevin Wolf &child_file, true, &local_err); 26141fdd6933SKevin Wolf if (local_err) { 26158bfea15dSKevin Wolf goto fail; 2616f500a6d3SKevin Wolf } 26175696c6e3SKevin Wolf if (file_bs != NULL) { 2618dacaa162SKevin Wolf /* Not requesting BLK_PERM_CONSISTENT_READ because we're only 2619dacaa162SKevin Wolf * looking at the header to guess the image format. This works even 2620dacaa162SKevin Wolf * in cases where a guest would not see a consistent state. */ 2621dacaa162SKevin Wolf file = blk_new(0, BLK_PERM_ALL); 2622d7086422SKevin Wolf blk_insert_bs(file, file_bs, &local_err); 26235696c6e3SKevin Wolf bdrv_unref(file_bs); 2624d7086422SKevin Wolf if (local_err) { 2625d7086422SKevin Wolf goto fail; 2626d7086422SKevin Wolf } 26275696c6e3SKevin Wolf 262846f5ac20SEric Blake qdict_put_str(options, "file", bdrv_get_node_name(file_bs)); 26294e4bf5c4SKevin Wolf } 2630f4788adcSKevin Wolf } 2631f500a6d3SKevin Wolf 263276c591b0SKevin Wolf /* Image format probing */ 263338f3ef57SKevin Wolf bs->probed = !drv; 263476c591b0SKevin Wolf if (!drv && file) { 2635cf2ab8fcSKevin Wolf ret = find_image_format(file, filename, &drv, &local_err); 263617b005f1SKevin Wolf if (ret < 0) { 263717b005f1SKevin Wolf goto fail; 263817b005f1SKevin Wolf } 263962392ebbSKevin Wolf /* 264062392ebbSKevin Wolf * This option update would logically belong in bdrv_fill_options(), 264162392ebbSKevin Wolf * but we first need to open bs->file for the probing to work, while 264262392ebbSKevin Wolf * opening bs->file already requires the (mostly) final set of options 264362392ebbSKevin Wolf * so that cache mode etc. can be inherited. 264462392ebbSKevin Wolf * 264562392ebbSKevin Wolf * Adding the driver later is somewhat ugly, but it's not an option 264662392ebbSKevin Wolf * that would ever be inherited, so it's correct. We just need to make 264762392ebbSKevin Wolf * sure to update both bs->options (which has the full effective 264862392ebbSKevin Wolf * options for bs) and options (which has file.* already removed). 264962392ebbSKevin Wolf */ 265046f5ac20SEric Blake qdict_put_str(bs->options, "driver", drv->format_name); 265146f5ac20SEric Blake qdict_put_str(options, "driver", drv->format_name); 265276c591b0SKevin Wolf } else if (!drv) { 26532a05cbe4SMax Reitz error_setg(errp, "Must specify either driver or file"); 26548bfea15dSKevin Wolf goto fail; 26552a05cbe4SMax Reitz } 2656f500a6d3SKevin Wolf 265753a29513SMax Reitz /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */ 265853a29513SMax Reitz assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open); 265953a29513SMax Reitz /* file must be NULL if a protocol BDS is about to be created 266053a29513SMax Reitz * (the inverse results in an error message from bdrv_open_common()) */ 266153a29513SMax Reitz assert(!(flags & BDRV_O_PROTOCOL) || !file); 266253a29513SMax Reitz 2663b6ce07aaSKevin Wolf /* Open the image */ 266482dc8b41SKevin Wolf ret = bdrv_open_common(bs, file, options, &local_err); 2665b6ce07aaSKevin Wolf if (ret < 0) { 26668bfea15dSKevin Wolf goto fail; 26676987307cSChristoph Hellwig } 26686987307cSChristoph Hellwig 26694e4bf5c4SKevin Wolf if (file) { 26705696c6e3SKevin Wolf blk_unref(file); 2671f500a6d3SKevin Wolf file = NULL; 2672f500a6d3SKevin Wolf } 2673f500a6d3SKevin Wolf 2674b6ce07aaSKevin Wolf /* If there is a backing file, use it */ 26759156df12SPaolo Bonzini if ((flags & BDRV_O_NO_BACKING) == 0) { 2676d9b7b057SKevin Wolf ret = bdrv_open_backing_file(bs, options, "backing", &local_err); 2677b6ce07aaSKevin Wolf if (ret < 0) { 2678b6ad491aSKevin Wolf goto close_and_fail; 2679b6ce07aaSKevin Wolf } 2680b6ce07aaSKevin Wolf } 2681b6ce07aaSKevin Wolf 268291af7014SMax Reitz bdrv_refresh_filename(bs); 268391af7014SMax Reitz 2684b6ad491aSKevin Wolf /* Check if any unknown options were used */ 26857ad2757fSPaolo Bonzini if (qdict_size(options) != 0) { 2686b6ad491aSKevin Wolf const QDictEntry *entry = qdict_first(options); 26875acd9d81SMax Reitz if (flags & BDRV_O_PROTOCOL) { 26885acd9d81SMax Reitz error_setg(errp, "Block protocol '%s' doesn't support the option " 26895acd9d81SMax Reitz "'%s'", drv->format_name, entry->key); 26905acd9d81SMax Reitz } else { 2691d0e46a55SMax Reitz error_setg(errp, 2692d0e46a55SMax Reitz "Block format '%s' does not support the option '%s'", 2693d0e46a55SMax Reitz drv->format_name, entry->key); 26945acd9d81SMax Reitz } 2695b6ad491aSKevin Wolf 2696b6ad491aSKevin Wolf goto close_and_fail; 2697b6ad491aSKevin Wolf } 2698b6ad491aSKevin Wolf 26995c8cab48SKevin Wolf bdrv_parent_cb_change_media(bs, true); 2700b6ce07aaSKevin Wolf 2701c3adb58fSMarkus Armbruster QDECREF(options); 2702dd62f1caSKevin Wolf 2703dd62f1caSKevin Wolf /* For snapshot=on, create a temporary qcow2 overlay. bs points to the 2704dd62f1caSKevin Wolf * temporary snapshot afterwards. */ 2705dd62f1caSKevin Wolf if (snapshot_flags) { 270666836189SMax Reitz BlockDriverState *snapshot_bs; 270766836189SMax Reitz snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags, 270866836189SMax Reitz snapshot_options, &local_err); 270973176beeSKevin Wolf snapshot_options = NULL; 2710dd62f1caSKevin Wolf if (local_err) { 2711dd62f1caSKevin Wolf goto close_and_fail; 2712dd62f1caSKevin Wolf } 271366836189SMax Reitz /* We are not going to return bs but the overlay on top of it 271466836189SMax Reitz * (snapshot_bs); thus, we have to drop the strong reference to bs 27155b363937SMax Reitz * (which we obtained by calling bdrv_new()). bs will not be deleted, 27165b363937SMax Reitz * though, because the overlay still has a reference to it. */ 271766836189SMax Reitz bdrv_unref(bs); 271866836189SMax Reitz bs = snapshot_bs; 271966836189SMax Reitz } 272066836189SMax Reitz 27215b363937SMax Reitz return bs; 2722b6ce07aaSKevin Wolf 27238bfea15dSKevin Wolf fail: 27245696c6e3SKevin Wolf blk_unref(file); 272573176beeSKevin Wolf QDECREF(snapshot_options); 2726145f598eSKevin Wolf QDECREF(bs->explicit_options); 2727de9c0cecSKevin Wolf QDECREF(bs->options); 2728b6ad491aSKevin Wolf QDECREF(options); 2729de9c0cecSKevin Wolf bs->options = NULL; 2730998cbd6aSManos Pitsidianakis bs->explicit_options = NULL; 2731f67503e5SMax Reitz bdrv_unref(bs); 273234b5d2c6SMax Reitz error_propagate(errp, local_err); 27335b363937SMax Reitz return NULL; 2734de9c0cecSKevin Wolf 2735b6ad491aSKevin Wolf close_and_fail: 2736f67503e5SMax Reitz bdrv_unref(bs); 273773176beeSKevin Wolf QDECREF(snapshot_options); 2738b6ad491aSKevin Wolf QDECREF(options); 273934b5d2c6SMax Reitz error_propagate(errp, local_err); 27405b363937SMax Reitz return NULL; 2741b6ce07aaSKevin Wolf } 2742b6ce07aaSKevin Wolf 27435b363937SMax Reitz BlockDriverState *bdrv_open(const char *filename, const char *reference, 27445b363937SMax Reitz QDict *options, int flags, Error **errp) 2745f3930ed0SKevin Wolf { 27465b363937SMax Reitz return bdrv_open_inherit(filename, reference, options, flags, NULL, 2747ce343771SMax Reitz NULL, errp); 2748f3930ed0SKevin Wolf } 2749f3930ed0SKevin Wolf 2750e971aa12SJeff Cody /* 2751e971aa12SJeff Cody * Adds a BlockDriverState to a simple queue for an atomic, transactional 2752e971aa12SJeff Cody * reopen of multiple devices. 2753e971aa12SJeff Cody * 2754e971aa12SJeff Cody * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT 2755e971aa12SJeff Cody * already performed, or alternatively may be NULL a new BlockReopenQueue will 2756e971aa12SJeff Cody * be created and initialized. This newly created BlockReopenQueue should be 2757e971aa12SJeff Cody * passed back in for subsequent calls that are intended to be of the same 2758e971aa12SJeff Cody * atomic 'set'. 2759e971aa12SJeff Cody * 2760e971aa12SJeff Cody * bs is the BlockDriverState to add to the reopen queue. 2761e971aa12SJeff Cody * 27624d2cb092SKevin Wolf * options contains the changed options for the associated bs 27634d2cb092SKevin Wolf * (the BlockReopenQueue takes ownership) 27644d2cb092SKevin Wolf * 2765e971aa12SJeff Cody * flags contains the open flags for the associated bs 2766e971aa12SJeff Cody * 2767e971aa12SJeff Cody * returns a pointer to bs_queue, which is either the newly allocated 2768e971aa12SJeff Cody * bs_queue, or the existing bs_queue being used. 2769e971aa12SJeff Cody * 27701a63a907SKevin Wolf * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple(). 2771e971aa12SJeff Cody */ 277228518102SKevin Wolf static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, 27734d2cb092SKevin Wolf BlockDriverState *bs, 277428518102SKevin Wolf QDict *options, 277528518102SKevin Wolf int flags, 277628518102SKevin Wolf const BdrvChildRole *role, 277728518102SKevin Wolf QDict *parent_options, 277828518102SKevin Wolf int parent_flags) 2779e971aa12SJeff Cody { 2780e971aa12SJeff Cody assert(bs != NULL); 2781e971aa12SJeff Cody 2782e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry; 278367251a31SKevin Wolf BdrvChild *child; 2784145f598eSKevin Wolf QDict *old_options, *explicit_options; 278567251a31SKevin Wolf 27861a63a907SKevin Wolf /* Make sure that the caller remembered to use a drained section. This is 27871a63a907SKevin Wolf * important to avoid graph changes between the recursive queuing here and 27881a63a907SKevin Wolf * bdrv_reopen_multiple(). */ 27891a63a907SKevin Wolf assert(bs->quiesce_counter > 0); 27901a63a907SKevin Wolf 2791e971aa12SJeff Cody if (bs_queue == NULL) { 2792e971aa12SJeff Cody bs_queue = g_new0(BlockReopenQueue, 1); 2793e971aa12SJeff Cody QSIMPLEQ_INIT(bs_queue); 2794e971aa12SJeff Cody } 2795e971aa12SJeff Cody 27964d2cb092SKevin Wolf if (!options) { 27974d2cb092SKevin Wolf options = qdict_new(); 27984d2cb092SKevin Wolf } 27994d2cb092SKevin Wolf 28005b7ba05fSAlberto Garcia /* Check if this BlockDriverState is already in the queue */ 28015b7ba05fSAlberto Garcia QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 28025b7ba05fSAlberto Garcia if (bs == bs_entry->state.bs) { 28035b7ba05fSAlberto Garcia break; 28045b7ba05fSAlberto Garcia } 28055b7ba05fSAlberto Garcia } 28065b7ba05fSAlberto Garcia 280728518102SKevin Wolf /* 280828518102SKevin Wolf * Precedence of options: 280928518102SKevin Wolf * 1. Explicitly passed in options (highest) 281091a097e7SKevin Wolf * 2. Set in flags (only for top level) 2811145f598eSKevin Wolf * 3. Retained from explicitly set options of bs 28128e2160e2SKevin Wolf * 4. Inherited from parent node 281328518102SKevin Wolf * 5. Retained from effective options of bs 281428518102SKevin Wolf */ 281528518102SKevin Wolf 281691a097e7SKevin Wolf if (!parent_options) { 281791a097e7SKevin Wolf /* 281891a097e7SKevin Wolf * Any setting represented by flags is always updated. If the 281991a097e7SKevin Wolf * corresponding QDict option is set, it takes precedence. Otherwise 282091a097e7SKevin Wolf * the flag is translated into a QDict option. The old setting of bs is 282191a097e7SKevin Wolf * not considered. 282291a097e7SKevin Wolf */ 282391a097e7SKevin Wolf update_options_from_flags(options, flags); 282491a097e7SKevin Wolf } 282591a097e7SKevin Wolf 2826145f598eSKevin Wolf /* Old explicitly set values (don't overwrite by inherited value) */ 28275b7ba05fSAlberto Garcia if (bs_entry) { 28285b7ba05fSAlberto Garcia old_options = qdict_clone_shallow(bs_entry->state.explicit_options); 28295b7ba05fSAlberto Garcia } else { 2830145f598eSKevin Wolf old_options = qdict_clone_shallow(bs->explicit_options); 28315b7ba05fSAlberto Garcia } 2832145f598eSKevin Wolf bdrv_join_options(bs, options, old_options); 2833145f598eSKevin Wolf QDECREF(old_options); 2834145f598eSKevin Wolf 2835145f598eSKevin Wolf explicit_options = qdict_clone_shallow(options); 2836145f598eSKevin Wolf 283728518102SKevin Wolf /* Inherit from parent node */ 283828518102SKevin Wolf if (parent_options) { 283928518102SKevin Wolf assert(!flags); 28408e2160e2SKevin Wolf role->inherit_options(&flags, options, parent_flags, parent_options); 284128518102SKevin Wolf } 284228518102SKevin Wolf 284328518102SKevin Wolf /* Old values are used for options that aren't set yet */ 28444d2cb092SKevin Wolf old_options = qdict_clone_shallow(bs->options); 2845cddff5baSKevin Wolf bdrv_join_options(bs, options, old_options); 28464d2cb092SKevin Wolf QDECREF(old_options); 28474d2cb092SKevin Wolf 2848fd452021SKevin Wolf /* bdrv_open_inherit() sets and clears some additional flags internally */ 2849f1f25a2eSKevin Wolf flags &= ~BDRV_O_PROTOCOL; 2850fd452021SKevin Wolf if (flags & BDRV_O_RDWR) { 2851fd452021SKevin Wolf flags |= BDRV_O_ALLOW_RDWR; 2852fd452021SKevin Wolf } 2853f1f25a2eSKevin Wolf 28541857c97bSKevin Wolf if (!bs_entry) { 28551857c97bSKevin Wolf bs_entry = g_new0(BlockReopenQueueEntry, 1); 28561857c97bSKevin Wolf QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry); 28571857c97bSKevin Wolf } else { 28581857c97bSKevin Wolf QDECREF(bs_entry->state.options); 28591857c97bSKevin Wolf QDECREF(bs_entry->state.explicit_options); 28601857c97bSKevin Wolf } 28611857c97bSKevin Wolf 28621857c97bSKevin Wolf bs_entry->state.bs = bs; 28631857c97bSKevin Wolf bs_entry->state.options = options; 28641857c97bSKevin Wolf bs_entry->state.explicit_options = explicit_options; 28651857c97bSKevin Wolf bs_entry->state.flags = flags; 28661857c97bSKevin Wolf 286730450259SKevin Wolf /* This needs to be overwritten in bdrv_reopen_prepare() */ 286830450259SKevin Wolf bs_entry->state.perm = UINT64_MAX; 286930450259SKevin Wolf bs_entry->state.shared_perm = 0; 287030450259SKevin Wolf 287167251a31SKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 28724c9dfe5dSKevin Wolf QDict *new_child_options; 28734c9dfe5dSKevin Wolf char *child_key_dot; 287467251a31SKevin Wolf 28754c9dfe5dSKevin Wolf /* reopen can only change the options of block devices that were 28764c9dfe5dSKevin Wolf * implicitly created and inherited options. For other (referenced) 28774c9dfe5dSKevin Wolf * block devices, a syntax like "backing.foo" results in an error. */ 287867251a31SKevin Wolf if (child->bs->inherits_from != bs) { 287967251a31SKevin Wolf continue; 288067251a31SKevin Wolf } 288167251a31SKevin Wolf 28824c9dfe5dSKevin Wolf child_key_dot = g_strdup_printf("%s.", child->name); 28834c9dfe5dSKevin Wolf qdict_extract_subqdict(options, &new_child_options, child_key_dot); 28844c9dfe5dSKevin Wolf g_free(child_key_dot); 28854c9dfe5dSKevin Wolf 288628518102SKevin Wolf bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0, 288728518102SKevin Wolf child->role, options, flags); 2888e971aa12SJeff Cody } 2889e971aa12SJeff Cody 2890e971aa12SJeff Cody return bs_queue; 2891e971aa12SJeff Cody } 2892e971aa12SJeff Cody 289328518102SKevin Wolf BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, 289428518102SKevin Wolf BlockDriverState *bs, 289528518102SKevin Wolf QDict *options, int flags) 289628518102SKevin Wolf { 289728518102SKevin Wolf return bdrv_reopen_queue_child(bs_queue, bs, options, flags, 289828518102SKevin Wolf NULL, NULL, 0); 289928518102SKevin Wolf } 290028518102SKevin Wolf 2901e971aa12SJeff Cody /* 2902e971aa12SJeff Cody * Reopen multiple BlockDriverStates atomically & transactionally. 2903e971aa12SJeff Cody * 2904e971aa12SJeff Cody * The queue passed in (bs_queue) must have been built up previous 2905e971aa12SJeff Cody * via bdrv_reopen_queue(). 2906e971aa12SJeff Cody * 2907e971aa12SJeff Cody * Reopens all BDS specified in the queue, with the appropriate 2908e971aa12SJeff Cody * flags. All devices are prepared for reopen, and failure of any 2909e971aa12SJeff Cody * device will cause all device changes to be abandonded, and intermediate 2910e971aa12SJeff Cody * data cleaned up. 2911e971aa12SJeff Cody * 2912e971aa12SJeff Cody * If all devices prepare successfully, then the changes are committed 2913e971aa12SJeff Cody * to all devices. 2914e971aa12SJeff Cody * 29151a63a907SKevin Wolf * All affected nodes must be drained between bdrv_reopen_queue() and 29161a63a907SKevin Wolf * bdrv_reopen_multiple(). 2917e971aa12SJeff Cody */ 2918720150f3SPaolo Bonzini int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp) 2919e971aa12SJeff Cody { 2920e971aa12SJeff Cody int ret = -1; 2921e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry, *next; 2922e971aa12SJeff Cody Error *local_err = NULL; 2923e971aa12SJeff Cody 2924e971aa12SJeff Cody assert(bs_queue != NULL); 2925e971aa12SJeff Cody 2926e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 29271a63a907SKevin Wolf assert(bs_entry->state.bs->quiesce_counter > 0); 2928e971aa12SJeff Cody if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) { 2929e971aa12SJeff Cody error_propagate(errp, local_err); 2930e971aa12SJeff Cody goto cleanup; 2931e971aa12SJeff Cody } 2932e971aa12SJeff Cody bs_entry->prepared = true; 2933e971aa12SJeff Cody } 2934e971aa12SJeff Cody 2935e971aa12SJeff Cody /* If we reach this point, we have success and just need to apply the 2936e971aa12SJeff Cody * changes 2937e971aa12SJeff Cody */ 2938e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 2939e971aa12SJeff Cody bdrv_reopen_commit(&bs_entry->state); 2940e971aa12SJeff Cody } 2941e971aa12SJeff Cody 2942e971aa12SJeff Cody ret = 0; 2943e971aa12SJeff Cody 2944e971aa12SJeff Cody cleanup: 2945e971aa12SJeff Cody QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { 2946e971aa12SJeff Cody if (ret && bs_entry->prepared) { 2947e971aa12SJeff Cody bdrv_reopen_abort(&bs_entry->state); 2948145f598eSKevin Wolf } else if (ret) { 2949145f598eSKevin Wolf QDECREF(bs_entry->state.explicit_options); 2950e971aa12SJeff Cody } 29514d2cb092SKevin Wolf QDECREF(bs_entry->state.options); 2952e971aa12SJeff Cody g_free(bs_entry); 2953e971aa12SJeff Cody } 2954e971aa12SJeff Cody g_free(bs_queue); 295540840e41SAlberto Garcia 2956e971aa12SJeff Cody return ret; 2957e971aa12SJeff Cody } 2958e971aa12SJeff Cody 2959e971aa12SJeff Cody 2960e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */ 2961e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp) 2962e971aa12SJeff Cody { 2963e971aa12SJeff Cody int ret = -1; 2964e971aa12SJeff Cody Error *local_err = NULL; 29651a63a907SKevin Wolf BlockReopenQueue *queue; 2966e971aa12SJeff Cody 29671a63a907SKevin Wolf bdrv_subtree_drained_begin(bs); 29681a63a907SKevin Wolf 29691a63a907SKevin Wolf queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags); 2970720150f3SPaolo Bonzini ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, &local_err); 2971e971aa12SJeff Cody if (local_err != NULL) { 2972e971aa12SJeff Cody error_propagate(errp, local_err); 2973e971aa12SJeff Cody } 29741a63a907SKevin Wolf 29751a63a907SKevin Wolf bdrv_subtree_drained_end(bs); 29761a63a907SKevin Wolf 2977e971aa12SJeff Cody return ret; 2978e971aa12SJeff Cody } 2979e971aa12SJeff Cody 298030450259SKevin Wolf static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q, 298130450259SKevin Wolf BdrvChild *c) 298230450259SKevin Wolf { 298330450259SKevin Wolf BlockReopenQueueEntry *entry; 298430450259SKevin Wolf 298530450259SKevin Wolf QSIMPLEQ_FOREACH(entry, q, entry) { 298630450259SKevin Wolf BlockDriverState *bs = entry->state.bs; 298730450259SKevin Wolf BdrvChild *child; 298830450259SKevin Wolf 298930450259SKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 299030450259SKevin Wolf if (child == c) { 299130450259SKevin Wolf return entry; 299230450259SKevin Wolf } 299330450259SKevin Wolf } 299430450259SKevin Wolf } 299530450259SKevin Wolf 299630450259SKevin Wolf return NULL; 299730450259SKevin Wolf } 299830450259SKevin Wolf 299930450259SKevin Wolf static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs, 300030450259SKevin Wolf uint64_t *perm, uint64_t *shared) 300130450259SKevin Wolf { 300230450259SKevin Wolf BdrvChild *c; 300330450259SKevin Wolf BlockReopenQueueEntry *parent; 300430450259SKevin Wolf uint64_t cumulative_perms = 0; 300530450259SKevin Wolf uint64_t cumulative_shared_perms = BLK_PERM_ALL; 300630450259SKevin Wolf 300730450259SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 300830450259SKevin Wolf parent = find_parent_in_reopen_queue(q, c); 300930450259SKevin Wolf if (!parent) { 301030450259SKevin Wolf cumulative_perms |= c->perm; 301130450259SKevin Wolf cumulative_shared_perms &= c->shared_perm; 301230450259SKevin Wolf } else { 301330450259SKevin Wolf uint64_t nperm, nshared; 301430450259SKevin Wolf 301530450259SKevin Wolf bdrv_child_perm(parent->state.bs, bs, c, c->role, q, 301630450259SKevin Wolf parent->state.perm, parent->state.shared_perm, 301730450259SKevin Wolf &nperm, &nshared); 301830450259SKevin Wolf 301930450259SKevin Wolf cumulative_perms |= nperm; 302030450259SKevin Wolf cumulative_shared_perms &= nshared; 302130450259SKevin Wolf } 302230450259SKevin Wolf } 302330450259SKevin Wolf *perm = cumulative_perms; 302430450259SKevin Wolf *shared = cumulative_shared_perms; 302530450259SKevin Wolf } 3026e971aa12SJeff Cody 3027e971aa12SJeff Cody /* 3028e971aa12SJeff Cody * Prepares a BlockDriverState for reopen. All changes are staged in the 3029e971aa12SJeff Cody * 'opaque' field of the BDRVReopenState, which is used and allocated by 3030e971aa12SJeff Cody * the block driver layer .bdrv_reopen_prepare() 3031e971aa12SJeff Cody * 3032e971aa12SJeff Cody * bs is the BlockDriverState to reopen 3033e971aa12SJeff Cody * flags are the new open flags 3034e971aa12SJeff Cody * queue is the reopen queue 3035e971aa12SJeff Cody * 3036e971aa12SJeff Cody * Returns 0 on success, non-zero on error. On error errp will be set 3037e971aa12SJeff Cody * as well. 3038e971aa12SJeff Cody * 3039e971aa12SJeff Cody * On failure, bdrv_reopen_abort() will be called to clean up any data. 3040e971aa12SJeff Cody * It is the responsibility of the caller to then call the abort() or 3041e971aa12SJeff Cody * commit() for any other BDS that have been left in a prepare() state 3042e971aa12SJeff Cody * 3043e971aa12SJeff Cody */ 3044e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue, 3045e971aa12SJeff Cody Error **errp) 3046e971aa12SJeff Cody { 3047e971aa12SJeff Cody int ret = -1; 3048e971aa12SJeff Cody Error *local_err = NULL; 3049e971aa12SJeff Cody BlockDriver *drv; 3050ccf9dc07SKevin Wolf QemuOpts *opts; 3051ccf9dc07SKevin Wolf const char *value; 30523d8ce171SJeff Cody bool read_only; 3053e971aa12SJeff Cody 3054e971aa12SJeff Cody assert(reopen_state != NULL); 3055e971aa12SJeff Cody assert(reopen_state->bs->drv != NULL); 3056e971aa12SJeff Cody drv = reopen_state->bs->drv; 3057e971aa12SJeff Cody 3058ccf9dc07SKevin Wolf /* Process generic block layer options */ 3059ccf9dc07SKevin Wolf opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 3060ccf9dc07SKevin Wolf qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err); 3061ccf9dc07SKevin Wolf if (local_err) { 3062ccf9dc07SKevin Wolf error_propagate(errp, local_err); 3063ccf9dc07SKevin Wolf ret = -EINVAL; 3064ccf9dc07SKevin Wolf goto error; 3065ccf9dc07SKevin Wolf } 3066ccf9dc07SKevin Wolf 306791a097e7SKevin Wolf update_flags_from_options(&reopen_state->flags, opts); 306891a097e7SKevin Wolf 3069ccf9dc07SKevin Wolf /* node-name and driver must be unchanged. Put them back into the QDict, so 3070ccf9dc07SKevin Wolf * that they are checked at the end of this function. */ 3071ccf9dc07SKevin Wolf value = qemu_opt_get(opts, "node-name"); 3072ccf9dc07SKevin Wolf if (value) { 307346f5ac20SEric Blake qdict_put_str(reopen_state->options, "node-name", value); 3074ccf9dc07SKevin Wolf } 3075ccf9dc07SKevin Wolf 3076ccf9dc07SKevin Wolf value = qemu_opt_get(opts, "driver"); 3077ccf9dc07SKevin Wolf if (value) { 307846f5ac20SEric Blake qdict_put_str(reopen_state->options, "driver", value); 3079ccf9dc07SKevin Wolf } 3080ccf9dc07SKevin Wolf 30813d8ce171SJeff Cody /* If we are to stay read-only, do not allow permission change 30823d8ce171SJeff Cody * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is 30833d8ce171SJeff Cody * not set, or if the BDS still has copy_on_read enabled */ 30843d8ce171SJeff Cody read_only = !(reopen_state->flags & BDRV_O_RDWR); 308554a32bfeSKevin Wolf ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err); 30863d8ce171SJeff Cody if (local_err) { 30873d8ce171SJeff Cody error_propagate(errp, local_err); 3088e971aa12SJeff Cody goto error; 3089e971aa12SJeff Cody } 3090e971aa12SJeff Cody 309130450259SKevin Wolf /* Calculate required permissions after reopening */ 309230450259SKevin Wolf bdrv_reopen_perm(queue, reopen_state->bs, 309330450259SKevin Wolf &reopen_state->perm, &reopen_state->shared_perm); 3094e971aa12SJeff Cody 3095e971aa12SJeff Cody ret = bdrv_flush(reopen_state->bs); 3096e971aa12SJeff Cody if (ret) { 3097455b0fdeSEric Blake error_setg_errno(errp, -ret, "Error flushing drive"); 3098e971aa12SJeff Cody goto error; 3099e971aa12SJeff Cody } 3100e971aa12SJeff Cody 3101e971aa12SJeff Cody if (drv->bdrv_reopen_prepare) { 3102e971aa12SJeff Cody ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); 3103e971aa12SJeff Cody if (ret) { 3104e971aa12SJeff Cody if (local_err != NULL) { 3105e971aa12SJeff Cody error_propagate(errp, local_err); 3106e971aa12SJeff Cody } else { 3107d8b6895fSLuiz Capitulino error_setg(errp, "failed while preparing to reopen image '%s'", 3108e971aa12SJeff Cody reopen_state->bs->filename); 3109e971aa12SJeff Cody } 3110e971aa12SJeff Cody goto error; 3111e971aa12SJeff Cody } 3112e971aa12SJeff Cody } else { 3113e971aa12SJeff Cody /* It is currently mandatory to have a bdrv_reopen_prepare() 3114e971aa12SJeff Cody * handler for each supported drv. */ 311581e5f78aSAlberto Garcia error_setg(errp, "Block format '%s' used by node '%s' " 311681e5f78aSAlberto Garcia "does not support reopening files", drv->format_name, 311781e5f78aSAlberto Garcia bdrv_get_device_or_node_name(reopen_state->bs)); 3118e971aa12SJeff Cody ret = -1; 3119e971aa12SJeff Cody goto error; 3120e971aa12SJeff Cody } 3121e971aa12SJeff Cody 31224d2cb092SKevin Wolf /* Options that are not handled are only okay if they are unchanged 31234d2cb092SKevin Wolf * compared to the old state. It is expected that some options are only 31244d2cb092SKevin Wolf * used for the initial open, but not reopen (e.g. filename) */ 31254d2cb092SKevin Wolf if (qdict_size(reopen_state->options)) { 31264d2cb092SKevin Wolf const QDictEntry *entry = qdict_first(reopen_state->options); 31274d2cb092SKevin Wolf 31284d2cb092SKevin Wolf do { 312954fd1b0dSMax Reitz QObject *new = entry->value; 313054fd1b0dSMax Reitz QObject *old = qdict_get(reopen_state->bs->options, entry->key); 31314d2cb092SKevin Wolf 313254fd1b0dSMax Reitz /* 313354fd1b0dSMax Reitz * TODO: When using -drive to specify blockdev options, all values 313454fd1b0dSMax Reitz * will be strings; however, when using -blockdev, blockdev-add or 313554fd1b0dSMax Reitz * filenames using the json:{} pseudo-protocol, they will be 313654fd1b0dSMax Reitz * correctly typed. 313754fd1b0dSMax Reitz * In contrast, reopening options are (currently) always strings 313854fd1b0dSMax Reitz * (because you can only specify them through qemu-io; all other 313954fd1b0dSMax Reitz * callers do not specify any options). 314054fd1b0dSMax Reitz * Therefore, when using anything other than -drive to create a BDS, 314154fd1b0dSMax Reitz * this cannot detect non-string options as unchanged, because 314254fd1b0dSMax Reitz * qobject_is_equal() always returns false for objects of different 314354fd1b0dSMax Reitz * type. In the future, this should be remedied by correctly typing 314454fd1b0dSMax Reitz * all options. For now, this is not too big of an issue because 314554fd1b0dSMax Reitz * the user can simply omit options which cannot be changed anyway, 314654fd1b0dSMax Reitz * so they will stay unchanged. 314754fd1b0dSMax Reitz */ 314854fd1b0dSMax Reitz if (!qobject_is_equal(new, old)) { 31494d2cb092SKevin Wolf error_setg(errp, "Cannot change the option '%s'", entry->key); 31504d2cb092SKevin Wolf ret = -EINVAL; 31514d2cb092SKevin Wolf goto error; 31524d2cb092SKevin Wolf } 31534d2cb092SKevin Wolf } while ((entry = qdict_next(reopen_state->options, entry))); 31544d2cb092SKevin Wolf } 31554d2cb092SKevin Wolf 315630450259SKevin Wolf ret = bdrv_check_perm(reopen_state->bs, queue, reopen_state->perm, 315730450259SKevin Wolf reopen_state->shared_perm, NULL, errp); 315830450259SKevin Wolf if (ret < 0) { 315930450259SKevin Wolf goto error; 316030450259SKevin Wolf } 316130450259SKevin Wolf 3162e971aa12SJeff Cody ret = 0; 3163e971aa12SJeff Cody 3164e971aa12SJeff Cody error: 3165ccf9dc07SKevin Wolf qemu_opts_del(opts); 3166e971aa12SJeff Cody return ret; 3167e971aa12SJeff Cody } 3168e971aa12SJeff Cody 3169e971aa12SJeff Cody /* 3170e971aa12SJeff Cody * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and 3171e971aa12SJeff Cody * makes them final by swapping the staging BlockDriverState contents into 3172e971aa12SJeff Cody * the active BlockDriverState contents. 3173e971aa12SJeff Cody */ 3174e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state) 3175e971aa12SJeff Cody { 3176e971aa12SJeff Cody BlockDriver *drv; 317750bf65baSVladimir Sementsov-Ogievskiy BlockDriverState *bs; 3178cb9ff6c2SVladimir Sementsov-Ogievskiy bool old_can_write, new_can_write; 3179e971aa12SJeff Cody 3180e971aa12SJeff Cody assert(reopen_state != NULL); 318150bf65baSVladimir Sementsov-Ogievskiy bs = reopen_state->bs; 318250bf65baSVladimir Sementsov-Ogievskiy drv = bs->drv; 3183e971aa12SJeff Cody assert(drv != NULL); 3184e971aa12SJeff Cody 3185cb9ff6c2SVladimir Sementsov-Ogievskiy old_can_write = 3186cb9ff6c2SVladimir Sementsov-Ogievskiy !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE); 3187cb9ff6c2SVladimir Sementsov-Ogievskiy 3188e971aa12SJeff Cody /* If there are any driver level actions to take */ 3189e971aa12SJeff Cody if (drv->bdrv_reopen_commit) { 3190e971aa12SJeff Cody drv->bdrv_reopen_commit(reopen_state); 3191e971aa12SJeff Cody } 3192e971aa12SJeff Cody 3193e971aa12SJeff Cody /* set BDS specific flags now */ 319450bf65baSVladimir Sementsov-Ogievskiy QDECREF(bs->explicit_options); 3195145f598eSKevin Wolf 319650bf65baSVladimir Sementsov-Ogievskiy bs->explicit_options = reopen_state->explicit_options; 319750bf65baSVladimir Sementsov-Ogievskiy bs->open_flags = reopen_state->flags; 319850bf65baSVladimir Sementsov-Ogievskiy bs->read_only = !(reopen_state->flags & BDRV_O_RDWR); 3199355ef4acSKevin Wolf 320050bf65baSVladimir Sementsov-Ogievskiy bdrv_refresh_limits(bs, NULL); 3201cb9ff6c2SVladimir Sementsov-Ogievskiy 320230450259SKevin Wolf bdrv_set_perm(reopen_state->bs, reopen_state->perm, 320330450259SKevin Wolf reopen_state->shared_perm); 320430450259SKevin Wolf 3205cb9ff6c2SVladimir Sementsov-Ogievskiy new_can_write = 3206cb9ff6c2SVladimir Sementsov-Ogievskiy !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE); 3207cb9ff6c2SVladimir Sementsov-Ogievskiy if (!old_can_write && new_can_write && drv->bdrv_reopen_bitmaps_rw) { 3208cb9ff6c2SVladimir Sementsov-Ogievskiy Error *local_err = NULL; 3209cb9ff6c2SVladimir Sementsov-Ogievskiy if (drv->bdrv_reopen_bitmaps_rw(bs, &local_err) < 0) { 3210cb9ff6c2SVladimir Sementsov-Ogievskiy /* This is not fatal, bitmaps just left read-only, so all following 3211cb9ff6c2SVladimir Sementsov-Ogievskiy * writes will fail. User can remove read-only bitmaps to unblock 3212cb9ff6c2SVladimir Sementsov-Ogievskiy * writes. 3213cb9ff6c2SVladimir Sementsov-Ogievskiy */ 3214cb9ff6c2SVladimir Sementsov-Ogievskiy error_reportf_err(local_err, 3215cb9ff6c2SVladimir Sementsov-Ogievskiy "%s: Failed to make dirty bitmaps writable: ", 3216cb9ff6c2SVladimir Sementsov-Ogievskiy bdrv_get_node_name(bs)); 3217cb9ff6c2SVladimir Sementsov-Ogievskiy } 3218cb9ff6c2SVladimir Sementsov-Ogievskiy } 3219e971aa12SJeff Cody } 3220e971aa12SJeff Cody 3221e971aa12SJeff Cody /* 3222e971aa12SJeff Cody * Abort the reopen, and delete and free the staged changes in 3223e971aa12SJeff Cody * reopen_state 3224e971aa12SJeff Cody */ 3225e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state) 3226e971aa12SJeff Cody { 3227e971aa12SJeff Cody BlockDriver *drv; 3228e971aa12SJeff Cody 3229e971aa12SJeff Cody assert(reopen_state != NULL); 3230e971aa12SJeff Cody drv = reopen_state->bs->drv; 3231e971aa12SJeff Cody assert(drv != NULL); 3232e971aa12SJeff Cody 3233e971aa12SJeff Cody if (drv->bdrv_reopen_abort) { 3234e971aa12SJeff Cody drv->bdrv_reopen_abort(reopen_state); 3235e971aa12SJeff Cody } 3236145f598eSKevin Wolf 3237145f598eSKevin Wolf QDECREF(reopen_state->explicit_options); 323830450259SKevin Wolf 323930450259SKevin Wolf bdrv_abort_perm_update(reopen_state->bs); 3240e971aa12SJeff Cody } 3241e971aa12SJeff Cody 3242e971aa12SJeff Cody 324364dff520SMax Reitz static void bdrv_close(BlockDriverState *bs) 3244fc01f7e7Sbellard { 324533384421SMax Reitz BdrvAioNotifier *ban, *ban_next; 324650a3efb0SAlberto Garcia BdrvChild *child, *next; 324733384421SMax Reitz 3248ca9bd24cSMax Reitz assert(!bs->job); 324930f55fb8SMax Reitz assert(!bs->refcnt); 325099b7e775SAlberto Garcia 3251fc27291dSPaolo Bonzini bdrv_drained_begin(bs); /* complete I/O */ 325258fda173SStefan Hajnoczi bdrv_flush(bs); 325353ec73e2SFam Zheng bdrv_drain(bs); /* in case flush left pending I/O */ 3254fc27291dSPaolo Bonzini 32553cbc002cSPaolo Bonzini if (bs->drv) { 32569a7dedbcSKevin Wolf bs->drv->bdrv_close(bs); 32579a4f4c31SKevin Wolf bs->drv = NULL; 325850a3efb0SAlberto Garcia } 32599a7dedbcSKevin Wolf 326012fa4af6SKevin Wolf bdrv_set_backing_hd(bs, NULL, &error_abort); 32619a7dedbcSKevin Wolf 32629a4f4c31SKevin Wolf if (bs->file != NULL) { 32639a4f4c31SKevin Wolf bdrv_unref_child(bs, bs->file); 32649a4f4c31SKevin Wolf bs->file = NULL; 32659a4f4c31SKevin Wolf } 32669a4f4c31SKevin Wolf 32676e93e7c4SKevin Wolf QLIST_FOREACH_SAFE(child, &bs->children, next, next) { 326833a60407SKevin Wolf /* TODO Remove bdrv_unref() from drivers' close function and use 326933a60407SKevin Wolf * bdrv_unref_child() here */ 3270bddcec37SKevin Wolf if (child->bs->inherits_from == bs) { 3271bddcec37SKevin Wolf child->bs->inherits_from = NULL; 3272bddcec37SKevin Wolf } 327333a60407SKevin Wolf bdrv_detach_child(child); 32746e93e7c4SKevin Wolf } 32756e93e7c4SKevin Wolf 32767267c094SAnthony Liguori g_free(bs->opaque); 3277ea2384d3Sbellard bs->opaque = NULL; 3278d3faa13eSPaolo Bonzini atomic_set(&bs->copy_on_read, 0); 3279a275fa42SPaolo Bonzini bs->backing_file[0] = '\0'; 3280a275fa42SPaolo Bonzini bs->backing_format[0] = '\0'; 32816405875cSPaolo Bonzini bs->total_sectors = 0; 328254115412SEric Blake bs->encrypted = false; 328354115412SEric Blake bs->sg = false; 3284de9c0cecSKevin Wolf QDECREF(bs->options); 3285145f598eSKevin Wolf QDECREF(bs->explicit_options); 3286de9c0cecSKevin Wolf bs->options = NULL; 3287998cbd6aSManos Pitsidianakis bs->explicit_options = NULL; 328891af7014SMax Reitz QDECREF(bs->full_open_options); 328991af7014SMax Reitz bs->full_open_options = NULL; 329066f82ceeSKevin Wolf 3291cca43ae1SVladimir Sementsov-Ogievskiy bdrv_release_named_dirty_bitmaps(bs); 3292cca43ae1SVladimir Sementsov-Ogievskiy assert(QLIST_EMPTY(&bs->dirty_bitmaps)); 3293cca43ae1SVladimir Sementsov-Ogievskiy 329433384421SMax Reitz QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 329533384421SMax Reitz g_free(ban); 329633384421SMax Reitz } 329733384421SMax Reitz QLIST_INIT(&bs->aio_notifiers); 3298fc27291dSPaolo Bonzini bdrv_drained_end(bs); 3299b338082bSbellard } 3300b338082bSbellard 33012bc93fedSMORITA Kazutaka void bdrv_close_all(void) 33022bc93fedSMORITA Kazutaka { 3303a1a2af07SKevin Wolf block_job_cancel_sync_all(); 3304cd7fca95SKevin Wolf nbd_export_close_all(); 33052bc93fedSMORITA Kazutaka 3306ca9bd24cSMax Reitz /* Drop references from requests still in flight, such as canceled block 3307ca9bd24cSMax Reitz * jobs whose AIO context has not been polled yet */ 3308ca9bd24cSMax Reitz bdrv_drain_all(); 3309ca9bd24cSMax Reitz 3310ca9bd24cSMax Reitz blk_remove_all_bs(); 3311ca9bd24cSMax Reitz blockdev_close_all_bdrv_states(); 3312ca9bd24cSMax Reitz 3313a1a2af07SKevin Wolf assert(QTAILQ_EMPTY(&all_bdrv_states)); 33142bc93fedSMORITA Kazutaka } 33152bc93fedSMORITA Kazutaka 3316d0ac0380SKevin Wolf static bool should_update_child(BdrvChild *c, BlockDriverState *to) 3317dd62f1caSKevin Wolf { 3318d0ac0380SKevin Wolf BdrvChild *to_c; 3319dd62f1caSKevin Wolf 332026de9438SKevin Wolf if (c->role->stay_at_node) { 3321d0ac0380SKevin Wolf return false; 332226de9438SKevin Wolf } 3323d0ac0380SKevin Wolf 33249bd910e2SMax Reitz if (c->role == &child_backing) { 33253e44c8e0SKevin Wolf /* If @from is a backing file of @to, ignore the child to avoid 33263e44c8e0SKevin Wolf * creating a loop. We only want to change the pointer of other 33273e44c8e0SKevin Wolf * parents. */ 33289bd910e2SMax Reitz QLIST_FOREACH(to_c, &to->children, next) { 33299bd910e2SMax Reitz if (to_c == c) { 33309bd910e2SMax Reitz break; 33319bd910e2SMax Reitz } 33329bd910e2SMax Reitz } 33339bd910e2SMax Reitz if (to_c) { 3334d0ac0380SKevin Wolf return false; 33359bd910e2SMax Reitz } 33369bd910e2SMax Reitz } 33379bd910e2SMax Reitz 3338d0ac0380SKevin Wolf return true; 3339d0ac0380SKevin Wolf } 3340d0ac0380SKevin Wolf 33415fe31c25SKevin Wolf void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to, 33425fe31c25SKevin Wolf Error **errp) 3343d0ac0380SKevin Wolf { 3344d0ac0380SKevin Wolf BdrvChild *c, *next; 3345234ac1a9SKevin Wolf GSList *list = NULL, *p; 3346234ac1a9SKevin Wolf uint64_t old_perm, old_shared; 3347234ac1a9SKevin Wolf uint64_t perm = 0, shared = BLK_PERM_ALL; 3348234ac1a9SKevin Wolf int ret; 3349d0ac0380SKevin Wolf 33505fe31c25SKevin Wolf assert(!atomic_read(&from->in_flight)); 33515fe31c25SKevin Wolf assert(!atomic_read(&to->in_flight)); 33525fe31c25SKevin Wolf 3353234ac1a9SKevin Wolf /* Make sure that @from doesn't go away until we have successfully attached 3354234ac1a9SKevin Wolf * all of its parents to @to. */ 3355234ac1a9SKevin Wolf bdrv_ref(from); 3356234ac1a9SKevin Wolf 3357234ac1a9SKevin Wolf /* Put all parents into @list and calculate their cumulative permissions */ 3358d0ac0380SKevin Wolf QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) { 3359d0ac0380SKevin Wolf if (!should_update_child(c, to)) { 3360d0ac0380SKevin Wolf continue; 3361d0ac0380SKevin Wolf } 3362234ac1a9SKevin Wolf list = g_slist_prepend(list, c); 3363234ac1a9SKevin Wolf perm |= c->perm; 3364234ac1a9SKevin Wolf shared &= c->shared_perm; 3365234ac1a9SKevin Wolf } 3366234ac1a9SKevin Wolf 3367234ac1a9SKevin Wolf /* Check whether the required permissions can be granted on @to, ignoring 3368234ac1a9SKevin Wolf * all BdrvChild in @list so that they can't block themselves. */ 33693121fb45SKevin Wolf ret = bdrv_check_update_perm(to, NULL, perm, shared, list, errp); 3370234ac1a9SKevin Wolf if (ret < 0) { 3371234ac1a9SKevin Wolf bdrv_abort_perm_update(to); 3372234ac1a9SKevin Wolf goto out; 3373234ac1a9SKevin Wolf } 3374234ac1a9SKevin Wolf 3375234ac1a9SKevin Wolf /* Now actually perform the change. We performed the permission check for 3376234ac1a9SKevin Wolf * all elements of @list at once, so set the permissions all at once at the 3377234ac1a9SKevin Wolf * very end. */ 3378234ac1a9SKevin Wolf for (p = list; p != NULL; p = p->next) { 3379234ac1a9SKevin Wolf c = p->data; 3380d0ac0380SKevin Wolf 3381dd62f1caSKevin Wolf bdrv_ref(to); 3382234ac1a9SKevin Wolf bdrv_replace_child_noperm(c, to); 3383dd62f1caSKevin Wolf bdrv_unref(from); 3384dd62f1caSKevin Wolf } 3385234ac1a9SKevin Wolf 3386234ac1a9SKevin Wolf bdrv_get_cumulative_perm(to, &old_perm, &old_shared); 3387234ac1a9SKevin Wolf bdrv_set_perm(to, old_perm | perm, old_shared | shared); 3388234ac1a9SKevin Wolf 3389234ac1a9SKevin Wolf out: 3390234ac1a9SKevin Wolf g_slist_free(list); 3391234ac1a9SKevin Wolf bdrv_unref(from); 3392dd62f1caSKevin Wolf } 3393dd62f1caSKevin Wolf 33948802d1fdSJeff Cody /* 33958802d1fdSJeff Cody * Add new bs contents at the top of an image chain while the chain is 33968802d1fdSJeff Cody * live, while keeping required fields on the top layer. 33978802d1fdSJeff Cody * 33988802d1fdSJeff Cody * This will modify the BlockDriverState fields, and swap contents 33998802d1fdSJeff Cody * between bs_new and bs_top. Both bs_new and bs_top are modified. 34008802d1fdSJeff Cody * 3401bfb197e0SMarkus Armbruster * bs_new must not be attached to a BlockBackend. 3402f6801b83SJeff Cody * 34038802d1fdSJeff Cody * This function does not create any image files. 3404dd62f1caSKevin Wolf * 3405dd62f1caSKevin Wolf * bdrv_append() takes ownership of a bs_new reference and unrefs it because 3406dd62f1caSKevin Wolf * that's what the callers commonly need. bs_new will be referenced by the old 3407dd62f1caSKevin Wolf * parents of bs_top after bdrv_append() returns. If the caller needs to keep a 3408dd62f1caSKevin Wolf * reference of its own, it must call bdrv_ref(). 34098802d1fdSJeff Cody */ 3410b2c2832cSKevin Wolf void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top, 3411b2c2832cSKevin Wolf Error **errp) 34128802d1fdSJeff Cody { 3413b2c2832cSKevin Wolf Error *local_err = NULL; 3414b2c2832cSKevin Wolf 3415b2c2832cSKevin Wolf bdrv_set_backing_hd(bs_new, bs_top, &local_err); 3416b2c2832cSKevin Wolf if (local_err) { 3417b2c2832cSKevin Wolf error_propagate(errp, local_err); 3418b2c2832cSKevin Wolf goto out; 3419b2c2832cSKevin Wolf } 3420dd62f1caSKevin Wolf 34215fe31c25SKevin Wolf bdrv_replace_node(bs_top, bs_new, &local_err); 3422234ac1a9SKevin Wolf if (local_err) { 3423234ac1a9SKevin Wolf error_propagate(errp, local_err); 3424234ac1a9SKevin Wolf bdrv_set_backing_hd(bs_new, NULL, &error_abort); 3425234ac1a9SKevin Wolf goto out; 3426234ac1a9SKevin Wolf } 3427dd62f1caSKevin Wolf 3428dd62f1caSKevin Wolf /* bs_new is now referenced by its new parents, we don't need the 3429dd62f1caSKevin Wolf * additional reference any more. */ 3430b2c2832cSKevin Wolf out: 3431dd62f1caSKevin Wolf bdrv_unref(bs_new); 34328802d1fdSJeff Cody } 34338802d1fdSJeff Cody 34344f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs) 3435b338082bSbellard { 34363e914655SPaolo Bonzini assert(!bs->job); 34373718d8abSFam Zheng assert(bdrv_op_blocker_is_empty(bs)); 34384f6fd349SFam Zheng assert(!bs->refcnt); 343918846deeSMarkus Armbruster 3440e1b5c52eSStefan Hajnoczi bdrv_close(bs); 3441e1b5c52eSStefan Hajnoczi 34421b7bdbc1SStefan Hajnoczi /* remove from list, if necessary */ 344363eaaae0SKevin Wolf if (bs->node_name[0] != '\0') { 344463eaaae0SKevin Wolf QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list); 344563eaaae0SKevin Wolf } 34462c1d04e0SMax Reitz QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list); 34472c1d04e0SMax Reitz 34487267c094SAnthony Liguori g_free(bs); 3449fc01f7e7Sbellard } 3450fc01f7e7Sbellard 3451e97fc193Saliguori /* 3452e97fc193Saliguori * Run consistency checks on an image 3453e97fc193Saliguori * 3454e076f338SKevin Wolf * Returns 0 if the check could be completed (it doesn't mean that the image is 3455a1c7273bSStefan Weil * free of errors) or -errno when an internal error occurred. The results of the 3456e076f338SKevin Wolf * check are stored in res. 3457e97fc193Saliguori */ 3458*2fd61638SPaolo Bonzini static int coroutine_fn bdrv_co_check(BlockDriverState *bs, 3459*2fd61638SPaolo Bonzini BdrvCheckResult *res, BdrvCheckMode fix) 3460e97fc193Saliguori { 3461908bcd54SMax Reitz if (bs->drv == NULL) { 3462908bcd54SMax Reitz return -ENOMEDIUM; 3463908bcd54SMax Reitz } 3464*2fd61638SPaolo Bonzini if (bs->drv->bdrv_co_check == NULL) { 3465e97fc193Saliguori return -ENOTSUP; 3466e97fc193Saliguori } 3467e97fc193Saliguori 3468e076f338SKevin Wolf memset(res, 0, sizeof(*res)); 3469*2fd61638SPaolo Bonzini return bs->drv->bdrv_co_check(bs, res, fix); 3470*2fd61638SPaolo Bonzini } 3471*2fd61638SPaolo Bonzini 3472*2fd61638SPaolo Bonzini typedef struct CheckCo { 3473*2fd61638SPaolo Bonzini BlockDriverState *bs; 3474*2fd61638SPaolo Bonzini BdrvCheckResult *res; 3475*2fd61638SPaolo Bonzini BdrvCheckMode fix; 3476*2fd61638SPaolo Bonzini int ret; 3477*2fd61638SPaolo Bonzini } CheckCo; 3478*2fd61638SPaolo Bonzini 3479*2fd61638SPaolo Bonzini static void bdrv_check_co_entry(void *opaque) 3480*2fd61638SPaolo Bonzini { 3481*2fd61638SPaolo Bonzini CheckCo *cco = opaque; 3482*2fd61638SPaolo Bonzini cco->ret = bdrv_co_check(cco->bs, cco->res, cco->fix); 3483*2fd61638SPaolo Bonzini } 3484*2fd61638SPaolo Bonzini 3485*2fd61638SPaolo Bonzini int bdrv_check(BlockDriverState *bs, 3486*2fd61638SPaolo Bonzini BdrvCheckResult *res, BdrvCheckMode fix) 3487*2fd61638SPaolo Bonzini { 3488*2fd61638SPaolo Bonzini Coroutine *co; 3489*2fd61638SPaolo Bonzini CheckCo cco = { 3490*2fd61638SPaolo Bonzini .bs = bs, 3491*2fd61638SPaolo Bonzini .res = res, 3492*2fd61638SPaolo Bonzini .ret = -EINPROGRESS, 3493*2fd61638SPaolo Bonzini .fix = fix, 3494*2fd61638SPaolo Bonzini }; 3495*2fd61638SPaolo Bonzini 3496*2fd61638SPaolo Bonzini if (qemu_in_coroutine()) { 3497*2fd61638SPaolo Bonzini /* Fast-path if already in coroutine context */ 3498*2fd61638SPaolo Bonzini bdrv_check_co_entry(&cco); 3499*2fd61638SPaolo Bonzini } else { 3500*2fd61638SPaolo Bonzini co = qemu_coroutine_create(bdrv_check_co_entry, &cco); 3501*2fd61638SPaolo Bonzini qemu_coroutine_enter(co); 3502*2fd61638SPaolo Bonzini BDRV_POLL_WHILE(bs, cco.ret == -EINPROGRESS); 3503*2fd61638SPaolo Bonzini } 3504*2fd61638SPaolo Bonzini 3505*2fd61638SPaolo Bonzini return cco.ret; 3506e97fc193Saliguori } 3507e97fc193Saliguori 3508756e6736SKevin Wolf /* 3509756e6736SKevin Wolf * Return values: 3510756e6736SKevin Wolf * 0 - success 3511756e6736SKevin Wolf * -EINVAL - backing format specified, but no file 3512756e6736SKevin Wolf * -ENOSPC - can't update the backing file because no space is left in the 3513756e6736SKevin Wolf * image file header 3514756e6736SKevin Wolf * -ENOTSUP - format driver doesn't support changing the backing file 3515756e6736SKevin Wolf */ 3516756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs, 3517756e6736SKevin Wolf const char *backing_file, const char *backing_fmt) 3518756e6736SKevin Wolf { 3519756e6736SKevin Wolf BlockDriver *drv = bs->drv; 3520469ef350SPaolo Bonzini int ret; 3521756e6736SKevin Wolf 3522d470ad42SMax Reitz if (!drv) { 3523d470ad42SMax Reitz return -ENOMEDIUM; 3524d470ad42SMax Reitz } 3525d470ad42SMax Reitz 35265f377794SPaolo Bonzini /* Backing file format doesn't make sense without a backing file */ 35275f377794SPaolo Bonzini if (backing_fmt && !backing_file) { 35285f377794SPaolo Bonzini return -EINVAL; 35295f377794SPaolo Bonzini } 35305f377794SPaolo Bonzini 3531756e6736SKevin Wolf if (drv->bdrv_change_backing_file != NULL) { 3532469ef350SPaolo Bonzini ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); 3533756e6736SKevin Wolf } else { 3534469ef350SPaolo Bonzini ret = -ENOTSUP; 3535756e6736SKevin Wolf } 3536469ef350SPaolo Bonzini 3537469ef350SPaolo Bonzini if (ret == 0) { 3538469ef350SPaolo Bonzini pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); 3539469ef350SPaolo Bonzini pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); 3540469ef350SPaolo Bonzini } 3541469ef350SPaolo Bonzini return ret; 3542756e6736SKevin Wolf } 3543756e6736SKevin Wolf 35446ebdcee2SJeff Cody /* 35456ebdcee2SJeff Cody * Finds the image layer in the chain that has 'bs' as its backing file. 35466ebdcee2SJeff Cody * 35476ebdcee2SJeff Cody * active is the current topmost image. 35486ebdcee2SJeff Cody * 35496ebdcee2SJeff Cody * Returns NULL if bs is not found in active's image chain, 35506ebdcee2SJeff Cody * or if active == bs. 35514caf0fcdSJeff Cody * 35524caf0fcdSJeff Cody * Returns the bottommost base image if bs == NULL. 35536ebdcee2SJeff Cody */ 35546ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active, 35556ebdcee2SJeff Cody BlockDriverState *bs) 35566ebdcee2SJeff Cody { 3557760e0063SKevin Wolf while (active && bs != backing_bs(active)) { 3558760e0063SKevin Wolf active = backing_bs(active); 35596ebdcee2SJeff Cody } 35606ebdcee2SJeff Cody 35614caf0fcdSJeff Cody return active; 35626ebdcee2SJeff Cody } 35636ebdcee2SJeff Cody 35644caf0fcdSJeff Cody /* Given a BDS, searches for the base layer. */ 35654caf0fcdSJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs) 35664caf0fcdSJeff Cody { 35674caf0fcdSJeff Cody return bdrv_find_overlay(bs, NULL); 35686ebdcee2SJeff Cody } 35696ebdcee2SJeff Cody 35706ebdcee2SJeff Cody /* 35716ebdcee2SJeff Cody * Drops images above 'base' up to and including 'top', and sets the image 35726ebdcee2SJeff Cody * above 'top' to have base as its backing file. 35736ebdcee2SJeff Cody * 35746ebdcee2SJeff Cody * Requires that the overlay to 'top' is opened r/w, so that the backing file 35756ebdcee2SJeff Cody * information in 'bs' can be properly updated. 35766ebdcee2SJeff Cody * 35776ebdcee2SJeff Cody * E.g., this will convert the following chain: 35786ebdcee2SJeff Cody * bottom <- base <- intermediate <- top <- active 35796ebdcee2SJeff Cody * 35806ebdcee2SJeff Cody * to 35816ebdcee2SJeff Cody * 35826ebdcee2SJeff Cody * bottom <- base <- active 35836ebdcee2SJeff Cody * 35846ebdcee2SJeff Cody * It is allowed for bottom==base, in which case it converts: 35856ebdcee2SJeff Cody * 35866ebdcee2SJeff Cody * base <- intermediate <- top <- active 35876ebdcee2SJeff Cody * 35886ebdcee2SJeff Cody * to 35896ebdcee2SJeff Cody * 35906ebdcee2SJeff Cody * base <- active 35916ebdcee2SJeff Cody * 359254e26900SJeff Cody * If backing_file_str is non-NULL, it will be used when modifying top's 359354e26900SJeff Cody * overlay image metadata. 359454e26900SJeff Cody * 35956ebdcee2SJeff Cody * Error conditions: 35966ebdcee2SJeff Cody * if active == top, that is considered an error 35976ebdcee2SJeff Cody * 35986ebdcee2SJeff Cody */ 3599bde70715SKevin Wolf int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base, 3600bde70715SKevin Wolf const char *backing_file_str) 36016ebdcee2SJeff Cody { 360261f09ceaSKevin Wolf BdrvChild *c, *next; 360312fa4af6SKevin Wolf Error *local_err = NULL; 36046ebdcee2SJeff Cody int ret = -EIO; 36056ebdcee2SJeff Cody 36066858eba0SKevin Wolf bdrv_ref(top); 36076858eba0SKevin Wolf 36086ebdcee2SJeff Cody if (!top->drv || !base->drv) { 36096ebdcee2SJeff Cody goto exit; 36106ebdcee2SJeff Cody } 36116ebdcee2SJeff Cody 36125db15a57SKevin Wolf /* Make sure that base is in the backing chain of top */ 36135db15a57SKevin Wolf if (!bdrv_chain_contains(top, base)) { 36146ebdcee2SJeff Cody goto exit; 36156ebdcee2SJeff Cody } 36166ebdcee2SJeff Cody 36176ebdcee2SJeff Cody /* success - we can delete the intermediate states, and link top->base */ 3618bde70715SKevin Wolf /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once 3619bde70715SKevin Wolf * we've figured out how they should work. */ 36205db15a57SKevin Wolf backing_file_str = backing_file_str ? backing_file_str : base->filename; 362112fa4af6SKevin Wolf 362261f09ceaSKevin Wolf QLIST_FOREACH_SAFE(c, &top->parents, next_parent, next) { 362361f09ceaSKevin Wolf /* Check whether we are allowed to switch c from top to base */ 362461f09ceaSKevin Wolf GSList *ignore_children = g_slist_prepend(NULL, c); 362561f09ceaSKevin Wolf bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm, 362661f09ceaSKevin Wolf ignore_children, &local_err); 362712fa4af6SKevin Wolf if (local_err) { 362812fa4af6SKevin Wolf ret = -EPERM; 362912fa4af6SKevin Wolf error_report_err(local_err); 363012fa4af6SKevin Wolf goto exit; 363112fa4af6SKevin Wolf } 363261f09ceaSKevin Wolf g_slist_free(ignore_children); 363361f09ceaSKevin Wolf 363461f09ceaSKevin Wolf /* If so, update the backing file path in the image file */ 363561f09ceaSKevin Wolf if (c->role->update_filename) { 363661f09ceaSKevin Wolf ret = c->role->update_filename(c, base, backing_file_str, 363761f09ceaSKevin Wolf &local_err); 363861f09ceaSKevin Wolf if (ret < 0) { 363961f09ceaSKevin Wolf bdrv_abort_perm_update(base); 364061f09ceaSKevin Wolf error_report_err(local_err); 364161f09ceaSKevin Wolf goto exit; 364261f09ceaSKevin Wolf } 364361f09ceaSKevin Wolf } 364461f09ceaSKevin Wolf 364561f09ceaSKevin Wolf /* Do the actual switch in the in-memory graph. 364661f09ceaSKevin Wolf * Completes bdrv_check_update_perm() transaction internally. */ 364761f09ceaSKevin Wolf bdrv_ref(base); 364861f09ceaSKevin Wolf bdrv_replace_child(c, base); 364961f09ceaSKevin Wolf bdrv_unref(top); 365061f09ceaSKevin Wolf } 36516ebdcee2SJeff Cody 36526ebdcee2SJeff Cody ret = 0; 36536ebdcee2SJeff Cody exit: 36546858eba0SKevin Wolf bdrv_unref(top); 36556ebdcee2SJeff Cody return ret; 36566ebdcee2SJeff Cody } 36576ebdcee2SJeff Cody 365883f64091Sbellard /** 365983f64091Sbellard * Truncate file to 'offset' bytes (needed only for file protocols) 366083f64091Sbellard */ 36617ea37c30SMax Reitz int bdrv_truncate(BdrvChild *child, int64_t offset, PreallocMode prealloc, 36627ea37c30SMax Reitz Error **errp) 366383f64091Sbellard { 366452cdbc58SKevin Wolf BlockDriverState *bs = child->bs; 366583f64091Sbellard BlockDriver *drv = bs->drv; 366651762288SStefan Hajnoczi int ret; 3667c8f6d58eSKevin Wolf 3668362b3786SMax Reitz assert(child->perm & BLK_PERM_RESIZE); 3669c8f6d58eSKevin Wolf 36705a612c00SManos Pitsidianakis /* if bs->drv == NULL, bs is closed, so there's nothing to do here */ 3671ed3d2ec9SMax Reitz if (!drv) { 3672ed3d2ec9SMax Reitz error_setg(errp, "No medium inserted"); 367319cb3738Sbellard return -ENOMEDIUM; 3674ed3d2ec9SMax Reitz } 3675ed3d2ec9SMax Reitz if (!drv->bdrv_truncate) { 36765a612c00SManos Pitsidianakis if (bs->file && drv->is_filter) { 36775a612c00SManos Pitsidianakis return bdrv_truncate(bs->file, offset, prealloc, errp); 36785a612c00SManos Pitsidianakis } 3679ed3d2ec9SMax Reitz error_setg(errp, "Image format driver does not support resize"); 368083f64091Sbellard return -ENOTSUP; 3681ed3d2ec9SMax Reitz } 3682ed3d2ec9SMax Reitz if (bs->read_only) { 3683ed3d2ec9SMax Reitz error_setg(errp, "Image is read-only"); 368459f2689dSNaphtali Sprei return -EACCES; 3685ed3d2ec9SMax Reitz } 36869c75e168SJeff Cody 3687504c205aSDenis V. Lunev assert(!(bs->open_flags & BDRV_O_INACTIVE)); 3688504c205aSDenis V. Lunev 36897ea37c30SMax Reitz ret = drv->bdrv_truncate(bs, offset, prealloc, errp); 36901b6cc579SEric Blake if (ret < 0) { 36911b6cc579SEric Blake return ret; 36921b6cc579SEric Blake } 369351762288SStefan Hajnoczi ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS); 36941b6cc579SEric Blake if (ret < 0) { 36951b6cc579SEric Blake error_setg_errno(errp, -ret, "Could not refresh total sector count"); 36961b6cc579SEric Blake } else { 36971b6cc579SEric Blake offset = bs->total_sectors * BDRV_SECTOR_SIZE; 36981b6cc579SEric Blake } 36991b6cc579SEric Blake bdrv_dirty_bitmap_truncate(bs, offset); 37005c8cab48SKevin Wolf bdrv_parent_cb_resize(bs); 370147fec599SPaolo Bonzini atomic_inc(&bs->write_gen); 370251762288SStefan Hajnoczi return ret; 370383f64091Sbellard } 370483f64091Sbellard 370583f64091Sbellard /** 37064a1d5e1fSFam Zheng * Length of a allocated file in bytes. Sparse files are counted by actual 37074a1d5e1fSFam Zheng * allocated space. Return < 0 if error or unknown. 37084a1d5e1fSFam Zheng */ 37094a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs) 37104a1d5e1fSFam Zheng { 37114a1d5e1fSFam Zheng BlockDriver *drv = bs->drv; 37124a1d5e1fSFam Zheng if (!drv) { 37134a1d5e1fSFam Zheng return -ENOMEDIUM; 37144a1d5e1fSFam Zheng } 37154a1d5e1fSFam Zheng if (drv->bdrv_get_allocated_file_size) { 37164a1d5e1fSFam Zheng return drv->bdrv_get_allocated_file_size(bs); 37174a1d5e1fSFam Zheng } 37184a1d5e1fSFam Zheng if (bs->file) { 37199a4f4c31SKevin Wolf return bdrv_get_allocated_file_size(bs->file->bs); 37204a1d5e1fSFam Zheng } 37214a1d5e1fSFam Zheng return -ENOTSUP; 37224a1d5e1fSFam Zheng } 37234a1d5e1fSFam Zheng 372490880ff1SStefan Hajnoczi /* 372590880ff1SStefan Hajnoczi * bdrv_measure: 372690880ff1SStefan Hajnoczi * @drv: Format driver 372790880ff1SStefan Hajnoczi * @opts: Creation options for new image 372890880ff1SStefan Hajnoczi * @in_bs: Existing image containing data for new image (may be NULL) 372990880ff1SStefan Hajnoczi * @errp: Error object 373090880ff1SStefan Hajnoczi * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo()) 373190880ff1SStefan Hajnoczi * or NULL on error 373290880ff1SStefan Hajnoczi * 373390880ff1SStefan Hajnoczi * Calculate file size required to create a new image. 373490880ff1SStefan Hajnoczi * 373590880ff1SStefan Hajnoczi * If @in_bs is given then space for allocated clusters and zero clusters 373690880ff1SStefan Hajnoczi * from that image are included in the calculation. If @opts contains a 373790880ff1SStefan Hajnoczi * backing file that is shared by @in_bs then backing clusters may be omitted 373890880ff1SStefan Hajnoczi * from the calculation. 373990880ff1SStefan Hajnoczi * 374090880ff1SStefan Hajnoczi * If @in_bs is NULL then the calculation includes no allocated clusters 374190880ff1SStefan Hajnoczi * unless a preallocation option is given in @opts. 374290880ff1SStefan Hajnoczi * 374390880ff1SStefan Hajnoczi * Note that @in_bs may use a different BlockDriver from @drv. 374490880ff1SStefan Hajnoczi * 374590880ff1SStefan Hajnoczi * If an error occurs the @errp pointer is set. 374690880ff1SStefan Hajnoczi */ 374790880ff1SStefan Hajnoczi BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts, 374890880ff1SStefan Hajnoczi BlockDriverState *in_bs, Error **errp) 374990880ff1SStefan Hajnoczi { 375090880ff1SStefan Hajnoczi if (!drv->bdrv_measure) { 375190880ff1SStefan Hajnoczi error_setg(errp, "Block driver '%s' does not support size measurement", 375290880ff1SStefan Hajnoczi drv->format_name); 375390880ff1SStefan Hajnoczi return NULL; 375490880ff1SStefan Hajnoczi } 375590880ff1SStefan Hajnoczi 375690880ff1SStefan Hajnoczi return drv->bdrv_measure(opts, in_bs, errp); 375790880ff1SStefan Hajnoczi } 375890880ff1SStefan Hajnoczi 37594a1d5e1fSFam Zheng /** 376065a9bb25SMarkus Armbruster * Return number of sectors on success, -errno on error. 376183f64091Sbellard */ 376265a9bb25SMarkus Armbruster int64_t bdrv_nb_sectors(BlockDriverState *bs) 376383f64091Sbellard { 376483f64091Sbellard BlockDriver *drv = bs->drv; 376565a9bb25SMarkus Armbruster 376683f64091Sbellard if (!drv) 376719cb3738Sbellard return -ENOMEDIUM; 376851762288SStefan Hajnoczi 3769b94a2610SKevin Wolf if (drv->has_variable_length) { 3770b94a2610SKevin Wolf int ret = refresh_total_sectors(bs, bs->total_sectors); 3771b94a2610SKevin Wolf if (ret < 0) { 3772b94a2610SKevin Wolf return ret; 3773fc01f7e7Sbellard } 377446a4e4e6SStefan Hajnoczi } 377565a9bb25SMarkus Armbruster return bs->total_sectors; 377665a9bb25SMarkus Armbruster } 377765a9bb25SMarkus Armbruster 377865a9bb25SMarkus Armbruster /** 377965a9bb25SMarkus Armbruster * Return length in bytes on success, -errno on error. 378065a9bb25SMarkus Armbruster * The length is always a multiple of BDRV_SECTOR_SIZE. 378165a9bb25SMarkus Armbruster */ 378265a9bb25SMarkus Armbruster int64_t bdrv_getlength(BlockDriverState *bs) 378365a9bb25SMarkus Armbruster { 378465a9bb25SMarkus Armbruster int64_t ret = bdrv_nb_sectors(bs); 378565a9bb25SMarkus Armbruster 37864a9c9ea0SFam Zheng ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret; 378765a9bb25SMarkus Armbruster return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE; 378846a4e4e6SStefan Hajnoczi } 3789fc01f7e7Sbellard 379019cb3738Sbellard /* return 0 as number of sectors if no device present or error */ 379196b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) 3792fc01f7e7Sbellard { 379365a9bb25SMarkus Armbruster int64_t nb_sectors = bdrv_nb_sectors(bs); 379465a9bb25SMarkus Armbruster 379565a9bb25SMarkus Armbruster *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors; 3796fc01f7e7Sbellard } 3797cf98951bSbellard 379854115412SEric Blake bool bdrv_is_sg(BlockDriverState *bs) 3799985a03b0Sths { 3800985a03b0Sths return bs->sg; 3801985a03b0Sths } 3802985a03b0Sths 380354115412SEric Blake bool bdrv_is_encrypted(BlockDriverState *bs) 3804ea2384d3Sbellard { 3805760e0063SKevin Wolf if (bs->backing && bs->backing->bs->encrypted) { 380654115412SEric Blake return true; 3807760e0063SKevin Wolf } 3808ea2384d3Sbellard return bs->encrypted; 3809ea2384d3Sbellard } 3810ea2384d3Sbellard 3811f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs) 3812ea2384d3Sbellard { 3813f8d6bba1SMarkus Armbruster return bs->drv ? bs->drv->format_name : NULL; 3814ea2384d3Sbellard } 3815ea2384d3Sbellard 3816ada42401SStefan Hajnoczi static int qsort_strcmp(const void *a, const void *b) 3817ada42401SStefan Hajnoczi { 3818ceff5bd7SMax Reitz return strcmp(*(char *const *)a, *(char *const *)b); 3819ada42401SStefan Hajnoczi } 3820ada42401SStefan Hajnoczi 3821ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name), 3822ea2384d3Sbellard void *opaque) 3823ea2384d3Sbellard { 3824ea2384d3Sbellard BlockDriver *drv; 3825e855e4fbSJeff Cody int count = 0; 3826ada42401SStefan Hajnoczi int i; 3827e855e4fbSJeff Cody const char **formats = NULL; 3828ea2384d3Sbellard 38298a22f02aSStefan Hajnoczi QLIST_FOREACH(drv, &bdrv_drivers, list) { 3830e855e4fbSJeff Cody if (drv->format_name) { 3831e855e4fbSJeff Cody bool found = false; 3832e855e4fbSJeff Cody int i = count; 3833e855e4fbSJeff Cody while (formats && i && !found) { 3834e855e4fbSJeff Cody found = !strcmp(formats[--i], drv->format_name); 3835e855e4fbSJeff Cody } 3836e855e4fbSJeff Cody 3837e855e4fbSJeff Cody if (!found) { 38385839e53bSMarkus Armbruster formats = g_renew(const char *, formats, count + 1); 3839e855e4fbSJeff Cody formats[count++] = drv->format_name; 3840ea2384d3Sbellard } 3841ea2384d3Sbellard } 3842e855e4fbSJeff Cody } 3843ada42401SStefan Hajnoczi 3844eb0df69fSMax Reitz for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) { 3845eb0df69fSMax Reitz const char *format_name = block_driver_modules[i].format_name; 3846eb0df69fSMax Reitz 3847eb0df69fSMax Reitz if (format_name) { 3848eb0df69fSMax Reitz bool found = false; 3849eb0df69fSMax Reitz int j = count; 3850eb0df69fSMax Reitz 3851eb0df69fSMax Reitz while (formats && j && !found) { 3852eb0df69fSMax Reitz found = !strcmp(formats[--j], format_name); 3853eb0df69fSMax Reitz } 3854eb0df69fSMax Reitz 3855eb0df69fSMax Reitz if (!found) { 3856eb0df69fSMax Reitz formats = g_renew(const char *, formats, count + 1); 3857eb0df69fSMax Reitz formats[count++] = format_name; 3858eb0df69fSMax Reitz } 3859eb0df69fSMax Reitz } 3860eb0df69fSMax Reitz } 3861eb0df69fSMax Reitz 3862ada42401SStefan Hajnoczi qsort(formats, count, sizeof(formats[0]), qsort_strcmp); 3863ada42401SStefan Hajnoczi 3864ada42401SStefan Hajnoczi for (i = 0; i < count; i++) { 3865ada42401SStefan Hajnoczi it(opaque, formats[i]); 3866ada42401SStefan Hajnoczi } 3867ada42401SStefan Hajnoczi 3868e855e4fbSJeff Cody g_free(formats); 3869e855e4fbSJeff Cody } 3870ea2384d3Sbellard 3871dc364f4cSBenoît Canet /* This function is to find a node in the bs graph */ 3872dc364f4cSBenoît Canet BlockDriverState *bdrv_find_node(const char *node_name) 3873dc364f4cSBenoît Canet { 3874dc364f4cSBenoît Canet BlockDriverState *bs; 3875dc364f4cSBenoît Canet 3876dc364f4cSBenoît Canet assert(node_name); 3877dc364f4cSBenoît Canet 3878dc364f4cSBenoît Canet QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 3879dc364f4cSBenoît Canet if (!strcmp(node_name, bs->node_name)) { 3880dc364f4cSBenoît Canet return bs; 3881dc364f4cSBenoît Canet } 3882dc364f4cSBenoît Canet } 3883dc364f4cSBenoît Canet return NULL; 3884dc364f4cSBenoît Canet } 3885dc364f4cSBenoît Canet 3886c13163fbSBenoît Canet /* Put this QMP function here so it can access the static graph_bdrv_states. */ 3887d5a8ee60SAlberto Garcia BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp) 3888c13163fbSBenoît Canet { 3889c13163fbSBenoît Canet BlockDeviceInfoList *list, *entry; 3890c13163fbSBenoît Canet BlockDriverState *bs; 3891c13163fbSBenoît Canet 3892c13163fbSBenoît Canet list = NULL; 3893c13163fbSBenoît Canet QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 3894c83f9fbaSKevin Wolf BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp); 3895d5a8ee60SAlberto Garcia if (!info) { 3896d5a8ee60SAlberto Garcia qapi_free_BlockDeviceInfoList(list); 3897d5a8ee60SAlberto Garcia return NULL; 3898d5a8ee60SAlberto Garcia } 3899c13163fbSBenoît Canet entry = g_malloc0(sizeof(*entry)); 3900d5a8ee60SAlberto Garcia entry->value = info; 3901c13163fbSBenoît Canet entry->next = list; 3902c13163fbSBenoît Canet list = entry; 3903c13163fbSBenoît Canet } 3904c13163fbSBenoît Canet 3905c13163fbSBenoît Canet return list; 3906c13163fbSBenoît Canet } 3907c13163fbSBenoît Canet 390812d3ba82SBenoît Canet BlockDriverState *bdrv_lookup_bs(const char *device, 390912d3ba82SBenoît Canet const char *node_name, 391012d3ba82SBenoît Canet Error **errp) 391112d3ba82SBenoît Canet { 39127f06d47eSMarkus Armbruster BlockBackend *blk; 39137f06d47eSMarkus Armbruster BlockDriverState *bs; 391412d3ba82SBenoît Canet 391512d3ba82SBenoît Canet if (device) { 39167f06d47eSMarkus Armbruster blk = blk_by_name(device); 391712d3ba82SBenoît Canet 39187f06d47eSMarkus Armbruster if (blk) { 39199f4ed6fbSAlberto Garcia bs = blk_bs(blk); 39209f4ed6fbSAlberto Garcia if (!bs) { 39215433c24fSMax Reitz error_setg(errp, "Device '%s' has no medium", device); 39225433c24fSMax Reitz } 39235433c24fSMax Reitz 39249f4ed6fbSAlberto Garcia return bs; 392512d3ba82SBenoît Canet } 3926dd67fa50SBenoît Canet } 392712d3ba82SBenoît Canet 3928dd67fa50SBenoît Canet if (node_name) { 392912d3ba82SBenoît Canet bs = bdrv_find_node(node_name); 393012d3ba82SBenoît Canet 3931dd67fa50SBenoît Canet if (bs) { 3932dd67fa50SBenoît Canet return bs; 3933dd67fa50SBenoît Canet } 393412d3ba82SBenoît Canet } 393512d3ba82SBenoît Canet 3936dd67fa50SBenoît Canet error_setg(errp, "Cannot find device=%s nor node_name=%s", 3937dd67fa50SBenoît Canet device ? device : "", 3938dd67fa50SBenoît Canet node_name ? node_name : ""); 3939dd67fa50SBenoît Canet return NULL; 394012d3ba82SBenoît Canet } 394112d3ba82SBenoît Canet 39425a6684d2SJeff Cody /* If 'base' is in the same chain as 'top', return true. Otherwise, 39435a6684d2SJeff Cody * return false. If either argument is NULL, return false. */ 39445a6684d2SJeff Cody bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base) 39455a6684d2SJeff Cody { 39465a6684d2SJeff Cody while (top && top != base) { 3947760e0063SKevin Wolf top = backing_bs(top); 39485a6684d2SJeff Cody } 39495a6684d2SJeff Cody 39505a6684d2SJeff Cody return top != NULL; 39515a6684d2SJeff Cody } 39525a6684d2SJeff Cody 395304df765aSFam Zheng BlockDriverState *bdrv_next_node(BlockDriverState *bs) 395404df765aSFam Zheng { 395504df765aSFam Zheng if (!bs) { 395604df765aSFam Zheng return QTAILQ_FIRST(&graph_bdrv_states); 395704df765aSFam Zheng } 395804df765aSFam Zheng return QTAILQ_NEXT(bs, node_list); 395904df765aSFam Zheng } 396004df765aSFam Zheng 396120a9e77dSFam Zheng const char *bdrv_get_node_name(const BlockDriverState *bs) 396220a9e77dSFam Zheng { 396320a9e77dSFam Zheng return bs->node_name; 396420a9e77dSFam Zheng } 396520a9e77dSFam Zheng 39661f0c461bSKevin Wolf const char *bdrv_get_parent_name(const BlockDriverState *bs) 39674c265bf9SKevin Wolf { 39684c265bf9SKevin Wolf BdrvChild *c; 39694c265bf9SKevin Wolf const char *name; 39704c265bf9SKevin Wolf 39714c265bf9SKevin Wolf /* If multiple parents have a name, just pick the first one. */ 39724c265bf9SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 39734c265bf9SKevin Wolf if (c->role->get_name) { 39744c265bf9SKevin Wolf name = c->role->get_name(c); 39754c265bf9SKevin Wolf if (name && *name) { 39764c265bf9SKevin Wolf return name; 39774c265bf9SKevin Wolf } 39784c265bf9SKevin Wolf } 39794c265bf9SKevin Wolf } 39804c265bf9SKevin Wolf 39814c265bf9SKevin Wolf return NULL; 39824c265bf9SKevin Wolf } 39834c265bf9SKevin Wolf 39847f06d47eSMarkus Armbruster /* TODO check what callers really want: bs->node_name or blk_name() */ 3985bfb197e0SMarkus Armbruster const char *bdrv_get_device_name(const BlockDriverState *bs) 3986ea2384d3Sbellard { 39874c265bf9SKevin Wolf return bdrv_get_parent_name(bs) ?: ""; 3988ea2384d3Sbellard } 3989ea2384d3Sbellard 39909b2aa84fSAlberto Garcia /* This can be used to identify nodes that might not have a device 39919b2aa84fSAlberto Garcia * name associated. Since node and device names live in the same 39929b2aa84fSAlberto Garcia * namespace, the result is unambiguous. The exception is if both are 39939b2aa84fSAlberto Garcia * absent, then this returns an empty (non-null) string. */ 39949b2aa84fSAlberto Garcia const char *bdrv_get_device_or_node_name(const BlockDriverState *bs) 39959b2aa84fSAlberto Garcia { 39964c265bf9SKevin Wolf return bdrv_get_parent_name(bs) ?: bs->node_name; 39979b2aa84fSAlberto Garcia } 39989b2aa84fSAlberto Garcia 3999c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs) 4000c8433287SMarkus Armbruster { 4001c8433287SMarkus Armbruster return bs->open_flags; 4002c8433287SMarkus Armbruster } 4003c8433287SMarkus Armbruster 40043ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs) 40053ac21627SPeter Lieven { 40063ac21627SPeter Lieven return 1; 40073ac21627SPeter Lieven } 40083ac21627SPeter Lieven 4009f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs) 4010f2feebbdSKevin Wolf { 4011d470ad42SMax Reitz if (!bs->drv) { 4012d470ad42SMax Reitz return 0; 4013d470ad42SMax Reitz } 4014f2feebbdSKevin Wolf 401511212d8fSPaolo Bonzini /* If BS is a copy on write image, it is initialized to 401611212d8fSPaolo Bonzini the contents of the base image, which may not be zeroes. */ 4017760e0063SKevin Wolf if (bs->backing) { 401811212d8fSPaolo Bonzini return 0; 401911212d8fSPaolo Bonzini } 4020336c1c12SKevin Wolf if (bs->drv->bdrv_has_zero_init) { 4021336c1c12SKevin Wolf return bs->drv->bdrv_has_zero_init(bs); 4022f2feebbdSKevin Wolf } 40235a612c00SManos Pitsidianakis if (bs->file && bs->drv->is_filter) { 40245a612c00SManos Pitsidianakis return bdrv_has_zero_init(bs->file->bs); 40255a612c00SManos Pitsidianakis } 4026f2feebbdSKevin Wolf 40273ac21627SPeter Lieven /* safe default */ 40283ac21627SPeter Lieven return 0; 4029f2feebbdSKevin Wolf } 4030f2feebbdSKevin Wolf 40314ce78691SPeter Lieven bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs) 40324ce78691SPeter Lieven { 40334ce78691SPeter Lieven BlockDriverInfo bdi; 40344ce78691SPeter Lieven 4035760e0063SKevin Wolf if (bs->backing) { 40364ce78691SPeter Lieven return false; 40374ce78691SPeter Lieven } 40384ce78691SPeter Lieven 40394ce78691SPeter Lieven if (bdrv_get_info(bs, &bdi) == 0) { 40404ce78691SPeter Lieven return bdi.unallocated_blocks_are_zero; 40414ce78691SPeter Lieven } 40424ce78691SPeter Lieven 40434ce78691SPeter Lieven return false; 40444ce78691SPeter Lieven } 40454ce78691SPeter Lieven 40464ce78691SPeter Lieven bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs) 40474ce78691SPeter Lieven { 40482f0342efSDenis V. Lunev if (!(bs->open_flags & BDRV_O_UNMAP)) { 40494ce78691SPeter Lieven return false; 40504ce78691SPeter Lieven } 40514ce78691SPeter Lieven 4052e24d813bSEric Blake return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP; 40534ce78691SPeter Lieven } 40544ce78691SPeter Lieven 4055045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs) 4056045df330Saliguori { 4057760e0063SKevin Wolf if (bs->backing && bs->backing->bs->encrypted) 4058045df330Saliguori return bs->backing_file; 4059045df330Saliguori else if (bs->encrypted) 4060045df330Saliguori return bs->filename; 4061045df330Saliguori else 4062045df330Saliguori return NULL; 4063045df330Saliguori } 4064045df330Saliguori 406583f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs, 406683f64091Sbellard char *filename, int filename_size) 406783f64091Sbellard { 406883f64091Sbellard pstrcpy(filename, filename_size, bs->backing_file); 406983f64091Sbellard } 407083f64091Sbellard 4071faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) 4072faea38e7Sbellard { 4073faea38e7Sbellard BlockDriver *drv = bs->drv; 40745a612c00SManos Pitsidianakis /* if bs->drv == NULL, bs is closed, so there's nothing to do here */ 40755a612c00SManos Pitsidianakis if (!drv) { 407619cb3738Sbellard return -ENOMEDIUM; 40775a612c00SManos Pitsidianakis } 40785a612c00SManos Pitsidianakis if (!drv->bdrv_get_info) { 40795a612c00SManos Pitsidianakis if (bs->file && drv->is_filter) { 40805a612c00SManos Pitsidianakis return bdrv_get_info(bs->file->bs, bdi); 40815a612c00SManos Pitsidianakis } 4082faea38e7Sbellard return -ENOTSUP; 40835a612c00SManos Pitsidianakis } 4084faea38e7Sbellard memset(bdi, 0, sizeof(*bdi)); 4085faea38e7Sbellard return drv->bdrv_get_info(bs, bdi); 4086faea38e7Sbellard } 4087faea38e7Sbellard 4088eae041feSMax Reitz ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs) 4089eae041feSMax Reitz { 4090eae041feSMax Reitz BlockDriver *drv = bs->drv; 4091eae041feSMax Reitz if (drv && drv->bdrv_get_specific_info) { 4092eae041feSMax Reitz return drv->bdrv_get_specific_info(bs); 4093eae041feSMax Reitz } 4094eae041feSMax Reitz return NULL; 4095eae041feSMax Reitz } 4096eae041feSMax Reitz 4097a31939e6SEric Blake void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event) 40988b9b0cc2SKevin Wolf { 4099bf736fe3SKevin Wolf if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) { 41008b9b0cc2SKevin Wolf return; 41018b9b0cc2SKevin Wolf } 41028b9b0cc2SKevin Wolf 4103bf736fe3SKevin Wolf bs->drv->bdrv_debug_event(bs, event); 410441c695c7SKevin Wolf } 41058b9b0cc2SKevin Wolf 410641c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, 410741c695c7SKevin Wolf const char *tag) 410841c695c7SKevin Wolf { 410941c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { 41109a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 411141c695c7SKevin Wolf } 411241c695c7SKevin Wolf 411341c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { 411441c695c7SKevin Wolf return bs->drv->bdrv_debug_breakpoint(bs, event, tag); 411541c695c7SKevin Wolf } 411641c695c7SKevin Wolf 411741c695c7SKevin Wolf return -ENOTSUP; 411841c695c7SKevin Wolf } 411941c695c7SKevin Wolf 41204cc70e93SFam Zheng int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag) 41214cc70e93SFam Zheng { 41224cc70e93SFam Zheng while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) { 41239a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 41244cc70e93SFam Zheng } 41254cc70e93SFam Zheng 41264cc70e93SFam Zheng if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) { 41274cc70e93SFam Zheng return bs->drv->bdrv_debug_remove_breakpoint(bs, tag); 41284cc70e93SFam Zheng } 41294cc70e93SFam Zheng 41304cc70e93SFam Zheng return -ENOTSUP; 41314cc70e93SFam Zheng } 41324cc70e93SFam Zheng 413341c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag) 413441c695c7SKevin Wolf { 4135938789eaSMax Reitz while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) { 41369a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 413741c695c7SKevin Wolf } 413841c695c7SKevin Wolf 413941c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_resume) { 414041c695c7SKevin Wolf return bs->drv->bdrv_debug_resume(bs, tag); 414141c695c7SKevin Wolf } 414241c695c7SKevin Wolf 414341c695c7SKevin Wolf return -ENOTSUP; 414441c695c7SKevin Wolf } 414541c695c7SKevin Wolf 414641c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) 414741c695c7SKevin Wolf { 414841c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { 41499a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 415041c695c7SKevin Wolf } 415141c695c7SKevin Wolf 415241c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { 415341c695c7SKevin Wolf return bs->drv->bdrv_debug_is_suspended(bs, tag); 415441c695c7SKevin Wolf } 415541c695c7SKevin Wolf 415641c695c7SKevin Wolf return false; 41578b9b0cc2SKevin Wolf } 41588b9b0cc2SKevin Wolf 4159b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol. If it is 4160b1b1d783SJeff Cody * relative, it must be relative to the chain. So, passing in bs->filename 4161b1b1d783SJeff Cody * from a BDS as backing_file should not be done, as that may be relative to 4162b1b1d783SJeff Cody * the CWD rather than the chain. */ 4163e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, 4164e8a6bb9cSMarcelo Tosatti const char *backing_file) 4165e8a6bb9cSMarcelo Tosatti { 4166b1b1d783SJeff Cody char *filename_full = NULL; 4167b1b1d783SJeff Cody char *backing_file_full = NULL; 4168b1b1d783SJeff Cody char *filename_tmp = NULL; 4169b1b1d783SJeff Cody int is_protocol = 0; 4170b1b1d783SJeff Cody BlockDriverState *curr_bs = NULL; 4171b1b1d783SJeff Cody BlockDriverState *retval = NULL; 4172418661e0SJeff Cody Error *local_error = NULL; 4173b1b1d783SJeff Cody 4174b1b1d783SJeff Cody if (!bs || !bs->drv || !backing_file) { 4175e8a6bb9cSMarcelo Tosatti return NULL; 4176e8a6bb9cSMarcelo Tosatti } 4177e8a6bb9cSMarcelo Tosatti 4178b1b1d783SJeff Cody filename_full = g_malloc(PATH_MAX); 4179b1b1d783SJeff Cody backing_file_full = g_malloc(PATH_MAX); 4180b1b1d783SJeff Cody filename_tmp = g_malloc(PATH_MAX); 4181b1b1d783SJeff Cody 4182b1b1d783SJeff Cody is_protocol = path_has_protocol(backing_file); 4183b1b1d783SJeff Cody 4184760e0063SKevin Wolf for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) { 4185b1b1d783SJeff Cody 4186b1b1d783SJeff Cody /* If either of the filename paths is actually a protocol, then 4187b1b1d783SJeff Cody * compare unmodified paths; otherwise make paths relative */ 4188b1b1d783SJeff Cody if (is_protocol || path_has_protocol(curr_bs->backing_file)) { 4189b1b1d783SJeff Cody if (strcmp(backing_file, curr_bs->backing_file) == 0) { 4190760e0063SKevin Wolf retval = curr_bs->backing->bs; 4191b1b1d783SJeff Cody break; 4192b1b1d783SJeff Cody } 4193418661e0SJeff Cody /* Also check against the full backing filename for the image */ 4194418661e0SJeff Cody bdrv_get_full_backing_filename(curr_bs, backing_file_full, PATH_MAX, 4195418661e0SJeff Cody &local_error); 4196418661e0SJeff Cody if (local_error == NULL) { 4197418661e0SJeff Cody if (strcmp(backing_file, backing_file_full) == 0) { 4198418661e0SJeff Cody retval = curr_bs->backing->bs; 4199418661e0SJeff Cody break; 4200418661e0SJeff Cody } 4201418661e0SJeff Cody } else { 4202418661e0SJeff Cody error_free(local_error); 4203418661e0SJeff Cody local_error = NULL; 4204418661e0SJeff Cody } 4205e8a6bb9cSMarcelo Tosatti } else { 4206b1b1d783SJeff Cody /* If not an absolute filename path, make it relative to the current 4207b1b1d783SJeff Cody * image's filename path */ 4208b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 4209b1b1d783SJeff Cody backing_file); 4210b1b1d783SJeff Cody 4211b1b1d783SJeff Cody /* We are going to compare absolute pathnames */ 4212b1b1d783SJeff Cody if (!realpath(filename_tmp, filename_full)) { 4213b1b1d783SJeff Cody continue; 4214b1b1d783SJeff Cody } 4215b1b1d783SJeff Cody 4216b1b1d783SJeff Cody /* We need to make sure the backing filename we are comparing against 4217b1b1d783SJeff Cody * is relative to the current image filename (or absolute) */ 4218b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 4219b1b1d783SJeff Cody curr_bs->backing_file); 4220b1b1d783SJeff Cody 4221b1b1d783SJeff Cody if (!realpath(filename_tmp, backing_file_full)) { 4222b1b1d783SJeff Cody continue; 4223b1b1d783SJeff Cody } 4224b1b1d783SJeff Cody 4225b1b1d783SJeff Cody if (strcmp(backing_file_full, filename_full) == 0) { 4226760e0063SKevin Wolf retval = curr_bs->backing->bs; 4227b1b1d783SJeff Cody break; 4228b1b1d783SJeff Cody } 4229e8a6bb9cSMarcelo Tosatti } 4230e8a6bb9cSMarcelo Tosatti } 4231e8a6bb9cSMarcelo Tosatti 4232b1b1d783SJeff Cody g_free(filename_full); 4233b1b1d783SJeff Cody g_free(backing_file_full); 4234b1b1d783SJeff Cody g_free(filename_tmp); 4235b1b1d783SJeff Cody return retval; 4236e8a6bb9cSMarcelo Tosatti } 4237e8a6bb9cSMarcelo Tosatti 4238ea2384d3Sbellard void bdrv_init(void) 4239ea2384d3Sbellard { 42405efa9d5aSAnthony Liguori module_call_init(MODULE_INIT_BLOCK); 4241ea2384d3Sbellard } 4242ce1a14dcSpbrook 4243eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void) 4244eb852011SMarkus Armbruster { 4245eb852011SMarkus Armbruster use_bdrv_whitelist = 1; 4246eb852011SMarkus Armbruster bdrv_init(); 4247eb852011SMarkus Armbruster } 4248eb852011SMarkus Armbruster 42492b148f39SPaolo Bonzini static void coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, 42502b148f39SPaolo Bonzini Error **errp) 42510f15423cSAnthony Liguori { 42524417ab7aSKevin Wolf BdrvChild *child, *parent; 42539c5e6594SKevin Wolf uint64_t perm, shared_perm; 42545a8a30dbSKevin Wolf Error *local_err = NULL; 42555a8a30dbSKevin Wolf int ret; 42565a8a30dbSKevin Wolf 42573456a8d1SKevin Wolf if (!bs->drv) { 42583456a8d1SKevin Wolf return; 42590f15423cSAnthony Liguori } 42603456a8d1SKevin Wolf 426104c01a5cSKevin Wolf if (!(bs->open_flags & BDRV_O_INACTIVE)) { 42627ea2d269SAlexey Kardashevskiy return; 42637ea2d269SAlexey Kardashevskiy } 42647ea2d269SAlexey Kardashevskiy 426516e977d5SVladimir Sementsov-Ogievskiy QLIST_FOREACH(child, &bs->children, next) { 42662b148f39SPaolo Bonzini bdrv_co_invalidate_cache(child->bs, &local_err); 42675a8a30dbSKevin Wolf if (local_err) { 42685a8a30dbSKevin Wolf error_propagate(errp, local_err); 42695a8a30dbSKevin Wolf return; 42703456a8d1SKevin Wolf } 42710d1c5c91SFam Zheng } 42720d1c5c91SFam Zheng 4273dafe0960SKevin Wolf /* 4274dafe0960SKevin Wolf * Update permissions, they may differ for inactive nodes. 4275dafe0960SKevin Wolf * 4276dafe0960SKevin Wolf * Note that the required permissions of inactive images are always a 4277dafe0960SKevin Wolf * subset of the permissions required after activating the image. This 4278dafe0960SKevin Wolf * allows us to just get the permissions upfront without restricting 4279dafe0960SKevin Wolf * drv->bdrv_invalidate_cache(). 4280dafe0960SKevin Wolf * 4281dafe0960SKevin Wolf * It also means that in error cases, we don't have to try and revert to 4282dafe0960SKevin Wolf * the old permissions (which is an operation that could fail, too). We can 4283dafe0960SKevin Wolf * just keep the extended permissions for the next time that an activation 4284dafe0960SKevin Wolf * of the image is tried. 4285dafe0960SKevin Wolf */ 428616e977d5SVladimir Sementsov-Ogievskiy bs->open_flags &= ~BDRV_O_INACTIVE; 4287dafe0960SKevin Wolf bdrv_get_cumulative_perm(bs, &perm, &shared_perm); 4288dafe0960SKevin Wolf ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &local_err); 4289dafe0960SKevin Wolf if (ret < 0) { 4290dafe0960SKevin Wolf bs->open_flags |= BDRV_O_INACTIVE; 4291dafe0960SKevin Wolf error_propagate(errp, local_err); 4292dafe0960SKevin Wolf return; 4293dafe0960SKevin Wolf } 4294dafe0960SKevin Wolf bdrv_set_perm(bs, perm, shared_perm); 4295dafe0960SKevin Wolf 42962b148f39SPaolo Bonzini if (bs->drv->bdrv_co_invalidate_cache) { 42972b148f39SPaolo Bonzini bs->drv->bdrv_co_invalidate_cache(bs, &local_err); 42980d1c5c91SFam Zheng if (local_err) { 42990d1c5c91SFam Zheng bs->open_flags |= BDRV_O_INACTIVE; 43000d1c5c91SFam Zheng error_propagate(errp, local_err); 43010d1c5c91SFam Zheng return; 43020d1c5c91SFam Zheng } 43030d1c5c91SFam Zheng } 43043456a8d1SKevin Wolf 43055a8a30dbSKevin Wolf ret = refresh_total_sectors(bs, bs->total_sectors); 43065a8a30dbSKevin Wolf if (ret < 0) { 430704c01a5cSKevin Wolf bs->open_flags |= BDRV_O_INACTIVE; 43085a8a30dbSKevin Wolf error_setg_errno(errp, -ret, "Could not refresh total sector count"); 43095a8a30dbSKevin Wolf return; 43105a8a30dbSKevin Wolf } 43114417ab7aSKevin Wolf 43124417ab7aSKevin Wolf QLIST_FOREACH(parent, &bs->parents, next_parent) { 43134417ab7aSKevin Wolf if (parent->role->activate) { 43144417ab7aSKevin Wolf parent->role->activate(parent, &local_err); 43154417ab7aSKevin Wolf if (local_err) { 43164417ab7aSKevin Wolf error_propagate(errp, local_err); 43174417ab7aSKevin Wolf return; 43184417ab7aSKevin Wolf } 43194417ab7aSKevin Wolf } 43204417ab7aSKevin Wolf } 43210f15423cSAnthony Liguori } 43220f15423cSAnthony Liguori 43232b148f39SPaolo Bonzini typedef struct InvalidateCacheCo { 43242b148f39SPaolo Bonzini BlockDriverState *bs; 43252b148f39SPaolo Bonzini Error **errp; 43262b148f39SPaolo Bonzini bool done; 43272b148f39SPaolo Bonzini } InvalidateCacheCo; 43282b148f39SPaolo Bonzini 43292b148f39SPaolo Bonzini static void coroutine_fn bdrv_invalidate_cache_co_entry(void *opaque) 43302b148f39SPaolo Bonzini { 43312b148f39SPaolo Bonzini InvalidateCacheCo *ico = opaque; 43322b148f39SPaolo Bonzini bdrv_co_invalidate_cache(ico->bs, ico->errp); 43332b148f39SPaolo Bonzini ico->done = true; 43342b148f39SPaolo Bonzini } 43352b148f39SPaolo Bonzini 43362b148f39SPaolo Bonzini void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp) 43372b148f39SPaolo Bonzini { 43382b148f39SPaolo Bonzini Coroutine *co; 43392b148f39SPaolo Bonzini InvalidateCacheCo ico = { 43402b148f39SPaolo Bonzini .bs = bs, 43412b148f39SPaolo Bonzini .done = false, 43422b148f39SPaolo Bonzini .errp = errp 43432b148f39SPaolo Bonzini }; 43442b148f39SPaolo Bonzini 43452b148f39SPaolo Bonzini if (qemu_in_coroutine()) { 43462b148f39SPaolo Bonzini /* Fast-path if already in coroutine context */ 43472b148f39SPaolo Bonzini bdrv_invalidate_cache_co_entry(&ico); 43482b148f39SPaolo Bonzini } else { 43492b148f39SPaolo Bonzini co = qemu_coroutine_create(bdrv_invalidate_cache_co_entry, &ico); 43502b148f39SPaolo Bonzini qemu_coroutine_enter(co); 43512b148f39SPaolo Bonzini BDRV_POLL_WHILE(bs, !ico.done); 43522b148f39SPaolo Bonzini } 43532b148f39SPaolo Bonzini } 43542b148f39SPaolo Bonzini 43555a8a30dbSKevin Wolf void bdrv_invalidate_cache_all(Error **errp) 43560f15423cSAnthony Liguori { 43577c8eece4SKevin Wolf BlockDriverState *bs; 43585a8a30dbSKevin Wolf Error *local_err = NULL; 435988be7b4bSKevin Wolf BdrvNextIterator it; 43600f15423cSAnthony Liguori 436188be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 4362ed78cda3SStefan Hajnoczi AioContext *aio_context = bdrv_get_aio_context(bs); 4363ed78cda3SStefan Hajnoczi 4364ed78cda3SStefan Hajnoczi aio_context_acquire(aio_context); 43655a8a30dbSKevin Wolf bdrv_invalidate_cache(bs, &local_err); 4366ed78cda3SStefan Hajnoczi aio_context_release(aio_context); 43675a8a30dbSKevin Wolf if (local_err) { 43685a8a30dbSKevin Wolf error_propagate(errp, local_err); 43695e003f17SMax Reitz bdrv_next_cleanup(&it); 43705a8a30dbSKevin Wolf return; 43715a8a30dbSKevin Wolf } 43720f15423cSAnthony Liguori } 43730f15423cSAnthony Liguori } 43740f15423cSAnthony Liguori 4375aad0b7a0SFam Zheng static int bdrv_inactivate_recurse(BlockDriverState *bs, 4376aad0b7a0SFam Zheng bool setting_flag) 437776b1c7feSKevin Wolf { 4378cfa1a572SKevin Wolf BdrvChild *child, *parent; 437976b1c7feSKevin Wolf int ret; 438076b1c7feSKevin Wolf 4381d470ad42SMax Reitz if (!bs->drv) { 4382d470ad42SMax Reitz return -ENOMEDIUM; 4383d470ad42SMax Reitz } 4384d470ad42SMax Reitz 4385aad0b7a0SFam Zheng if (!setting_flag && bs->drv->bdrv_inactivate) { 438676b1c7feSKevin Wolf ret = bs->drv->bdrv_inactivate(bs); 438776b1c7feSKevin Wolf if (ret < 0) { 438876b1c7feSKevin Wolf return ret; 438976b1c7feSKevin Wolf } 439076b1c7feSKevin Wolf } 439176b1c7feSKevin Wolf 43927d5b5261SStefan Hajnoczi if (setting_flag && !(bs->open_flags & BDRV_O_INACTIVE)) { 43939c5e6594SKevin Wolf uint64_t perm, shared_perm; 43949c5e6594SKevin Wolf 4395cfa1a572SKevin Wolf QLIST_FOREACH(parent, &bs->parents, next_parent) { 4396cfa1a572SKevin Wolf if (parent->role->inactivate) { 4397cfa1a572SKevin Wolf ret = parent->role->inactivate(parent); 4398cfa1a572SKevin Wolf if (ret < 0) { 4399cfa1a572SKevin Wolf return ret; 4400cfa1a572SKevin Wolf } 4401cfa1a572SKevin Wolf } 4402cfa1a572SKevin Wolf } 44039c5e6594SKevin Wolf 44047d5b5261SStefan Hajnoczi bs->open_flags |= BDRV_O_INACTIVE; 44057d5b5261SStefan Hajnoczi 44069c5e6594SKevin Wolf /* Update permissions, they may differ for inactive nodes */ 44079c5e6594SKevin Wolf bdrv_get_cumulative_perm(bs, &perm, &shared_perm); 44083121fb45SKevin Wolf bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &error_abort); 44099c5e6594SKevin Wolf bdrv_set_perm(bs, perm, shared_perm); 4410aad0b7a0SFam Zheng } 441138701b6aSKevin Wolf 441238701b6aSKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 441338701b6aSKevin Wolf ret = bdrv_inactivate_recurse(child->bs, setting_flag); 441438701b6aSKevin Wolf if (ret < 0) { 441538701b6aSKevin Wolf return ret; 441638701b6aSKevin Wolf } 441738701b6aSKevin Wolf } 441838701b6aSKevin Wolf 4419615b5dcfSVladimir Sementsov-Ogievskiy /* At this point persistent bitmaps should be already stored by the format 4420615b5dcfSVladimir Sementsov-Ogievskiy * driver */ 4421615b5dcfSVladimir Sementsov-Ogievskiy bdrv_release_persistent_dirty_bitmaps(bs); 4422615b5dcfSVladimir Sementsov-Ogievskiy 442376b1c7feSKevin Wolf return 0; 442476b1c7feSKevin Wolf } 442576b1c7feSKevin Wolf 442676b1c7feSKevin Wolf int bdrv_inactivate_all(void) 442776b1c7feSKevin Wolf { 442879720af6SMax Reitz BlockDriverState *bs = NULL; 442988be7b4bSKevin Wolf BdrvNextIterator it; 4430aad0b7a0SFam Zheng int ret = 0; 4431aad0b7a0SFam Zheng int pass; 4432bd6458e4SPaolo Bonzini GSList *aio_ctxs = NULL, *ctx; 443376b1c7feSKevin Wolf 443488be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 4435bd6458e4SPaolo Bonzini AioContext *aio_context = bdrv_get_aio_context(bs); 4436bd6458e4SPaolo Bonzini 4437bd6458e4SPaolo Bonzini if (!g_slist_find(aio_ctxs, aio_context)) { 4438bd6458e4SPaolo Bonzini aio_ctxs = g_slist_prepend(aio_ctxs, aio_context); 4439bd6458e4SPaolo Bonzini aio_context_acquire(aio_context); 4440bd6458e4SPaolo Bonzini } 4441aad0b7a0SFam Zheng } 444276b1c7feSKevin Wolf 4443aad0b7a0SFam Zheng /* We do two passes of inactivation. The first pass calls to drivers' 4444aad0b7a0SFam Zheng * .bdrv_inactivate callbacks recursively so all cache is flushed to disk; 4445aad0b7a0SFam Zheng * the second pass sets the BDRV_O_INACTIVE flag so that no further write 4446aad0b7a0SFam Zheng * is allowed. */ 4447aad0b7a0SFam Zheng for (pass = 0; pass < 2; pass++) { 444888be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 4449aad0b7a0SFam Zheng ret = bdrv_inactivate_recurse(bs, pass); 445076b1c7feSKevin Wolf if (ret < 0) { 44515e003f17SMax Reitz bdrv_next_cleanup(&it); 4452aad0b7a0SFam Zheng goto out; 4453aad0b7a0SFam Zheng } 445476b1c7feSKevin Wolf } 445576b1c7feSKevin Wolf } 445676b1c7feSKevin Wolf 4457aad0b7a0SFam Zheng out: 4458bd6458e4SPaolo Bonzini for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) { 4459bd6458e4SPaolo Bonzini AioContext *aio_context = ctx->data; 4460bd6458e4SPaolo Bonzini aio_context_release(aio_context); 4461aad0b7a0SFam Zheng } 4462bd6458e4SPaolo Bonzini g_slist_free(aio_ctxs); 4463aad0b7a0SFam Zheng 4464aad0b7a0SFam Zheng return ret; 446576b1c7feSKevin Wolf } 446676b1c7feSKevin Wolf 4467f9f05dc5SKevin Wolf /**************************************************************/ 446819cb3738Sbellard /* removable device support */ 446919cb3738Sbellard 447019cb3738Sbellard /** 447119cb3738Sbellard * Return TRUE if the media is present 447219cb3738Sbellard */ 4473e031f750SMax Reitz bool bdrv_is_inserted(BlockDriverState *bs) 447419cb3738Sbellard { 447519cb3738Sbellard BlockDriver *drv = bs->drv; 447628d7a789SMax Reitz BdrvChild *child; 4477a1aff5bfSMarkus Armbruster 4478e031f750SMax Reitz if (!drv) { 4479e031f750SMax Reitz return false; 4480e031f750SMax Reitz } 448128d7a789SMax Reitz if (drv->bdrv_is_inserted) { 4482a1aff5bfSMarkus Armbruster return drv->bdrv_is_inserted(bs); 448319cb3738Sbellard } 448428d7a789SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 448528d7a789SMax Reitz if (!bdrv_is_inserted(child->bs)) { 448628d7a789SMax Reitz return false; 448728d7a789SMax Reitz } 448828d7a789SMax Reitz } 448928d7a789SMax Reitz return true; 449028d7a789SMax Reitz } 449119cb3738Sbellard 449219cb3738Sbellard /** 449319cb3738Sbellard * If eject_flag is TRUE, eject the media. Otherwise, close the tray 449419cb3738Sbellard */ 4495f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag) 449619cb3738Sbellard { 449719cb3738Sbellard BlockDriver *drv = bs->drv; 449819cb3738Sbellard 4499822e1cd1SMarkus Armbruster if (drv && drv->bdrv_eject) { 4500822e1cd1SMarkus Armbruster drv->bdrv_eject(bs, eject_flag); 450119cb3738Sbellard } 450219cb3738Sbellard } 450319cb3738Sbellard 450419cb3738Sbellard /** 450519cb3738Sbellard * Lock or unlock the media (if it is locked, the user won't be able 450619cb3738Sbellard * to eject it manually). 450719cb3738Sbellard */ 4508025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked) 450919cb3738Sbellard { 451019cb3738Sbellard BlockDriver *drv = bs->drv; 451119cb3738Sbellard 4512025e849aSMarkus Armbruster trace_bdrv_lock_medium(bs, locked); 4513b8c6d095SStefan Hajnoczi 4514025e849aSMarkus Armbruster if (drv && drv->bdrv_lock_medium) { 4515025e849aSMarkus Armbruster drv->bdrv_lock_medium(bs, locked); 451619cb3738Sbellard } 451719cb3738Sbellard } 4518985a03b0Sths 45199fcb0251SFam Zheng /* Get a reference to bs */ 45209fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs) 45219fcb0251SFam Zheng { 45229fcb0251SFam Zheng bs->refcnt++; 45239fcb0251SFam Zheng } 45249fcb0251SFam Zheng 45259fcb0251SFam Zheng /* Release a previously grabbed reference to bs. 45269fcb0251SFam Zheng * If after releasing, reference count is zero, the BlockDriverState is 45279fcb0251SFam Zheng * deleted. */ 45289fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs) 45299fcb0251SFam Zheng { 45309a4d5ca6SJeff Cody if (!bs) { 45319a4d5ca6SJeff Cody return; 45329a4d5ca6SJeff Cody } 45339fcb0251SFam Zheng assert(bs->refcnt > 0); 45349fcb0251SFam Zheng if (--bs->refcnt == 0) { 45359fcb0251SFam Zheng bdrv_delete(bs); 45369fcb0251SFam Zheng } 45379fcb0251SFam Zheng } 45389fcb0251SFam Zheng 4539fbe40ff7SFam Zheng struct BdrvOpBlocker { 4540fbe40ff7SFam Zheng Error *reason; 4541fbe40ff7SFam Zheng QLIST_ENTRY(BdrvOpBlocker) list; 4542fbe40ff7SFam Zheng }; 4543fbe40ff7SFam Zheng 4544fbe40ff7SFam Zheng bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp) 4545fbe40ff7SFam Zheng { 4546fbe40ff7SFam Zheng BdrvOpBlocker *blocker; 4547fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 4548fbe40ff7SFam Zheng if (!QLIST_EMPTY(&bs->op_blockers[op])) { 4549fbe40ff7SFam Zheng blocker = QLIST_FIRST(&bs->op_blockers[op]); 455057ef3f12SEduardo Habkost error_propagate(errp, error_copy(blocker->reason)); 4551e43bfd9cSMarkus Armbruster error_prepend(errp, "Node '%s' is busy: ", 4552e43bfd9cSMarkus Armbruster bdrv_get_device_or_node_name(bs)); 4553fbe40ff7SFam Zheng return true; 4554fbe40ff7SFam Zheng } 4555fbe40ff7SFam Zheng return false; 4556fbe40ff7SFam Zheng } 4557fbe40ff7SFam Zheng 4558fbe40ff7SFam Zheng void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason) 4559fbe40ff7SFam Zheng { 4560fbe40ff7SFam Zheng BdrvOpBlocker *blocker; 4561fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 4562fbe40ff7SFam Zheng 45635839e53bSMarkus Armbruster blocker = g_new0(BdrvOpBlocker, 1); 4564fbe40ff7SFam Zheng blocker->reason = reason; 4565fbe40ff7SFam Zheng QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list); 4566fbe40ff7SFam Zheng } 4567fbe40ff7SFam Zheng 4568fbe40ff7SFam Zheng void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason) 4569fbe40ff7SFam Zheng { 4570fbe40ff7SFam Zheng BdrvOpBlocker *blocker, *next; 4571fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 4572fbe40ff7SFam Zheng QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) { 4573fbe40ff7SFam Zheng if (blocker->reason == reason) { 4574fbe40ff7SFam Zheng QLIST_REMOVE(blocker, list); 4575fbe40ff7SFam Zheng g_free(blocker); 4576fbe40ff7SFam Zheng } 4577fbe40ff7SFam Zheng } 4578fbe40ff7SFam Zheng } 4579fbe40ff7SFam Zheng 4580fbe40ff7SFam Zheng void bdrv_op_block_all(BlockDriverState *bs, Error *reason) 4581fbe40ff7SFam Zheng { 4582fbe40ff7SFam Zheng int i; 4583fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 4584fbe40ff7SFam Zheng bdrv_op_block(bs, i, reason); 4585fbe40ff7SFam Zheng } 4586fbe40ff7SFam Zheng } 4587fbe40ff7SFam Zheng 4588fbe40ff7SFam Zheng void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason) 4589fbe40ff7SFam Zheng { 4590fbe40ff7SFam Zheng int i; 4591fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 4592fbe40ff7SFam Zheng bdrv_op_unblock(bs, i, reason); 4593fbe40ff7SFam Zheng } 4594fbe40ff7SFam Zheng } 4595fbe40ff7SFam Zheng 4596fbe40ff7SFam Zheng bool bdrv_op_blocker_is_empty(BlockDriverState *bs) 4597fbe40ff7SFam Zheng { 4598fbe40ff7SFam Zheng int i; 4599fbe40ff7SFam Zheng 4600fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 4601fbe40ff7SFam Zheng if (!QLIST_EMPTY(&bs->op_blockers[i])) { 4602fbe40ff7SFam Zheng return false; 4603fbe40ff7SFam Zheng } 4604fbe40ff7SFam Zheng } 4605fbe40ff7SFam Zheng return true; 4606fbe40ff7SFam Zheng } 4607fbe40ff7SFam Zheng 4608d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt, 4609f88e1a42SJes Sorensen const char *base_filename, const char *base_fmt, 46109217283dSFam Zheng char *options, uint64_t img_size, int flags, bool quiet, 46119217283dSFam Zheng Error **errp) 4612f88e1a42SJes Sorensen { 461383d0521aSChunyan Liu QemuOptsList *create_opts = NULL; 461483d0521aSChunyan Liu QemuOpts *opts = NULL; 461583d0521aSChunyan Liu const char *backing_fmt, *backing_file; 461683d0521aSChunyan Liu int64_t size; 4617f88e1a42SJes Sorensen BlockDriver *drv, *proto_drv; 4618cc84d90fSMax Reitz Error *local_err = NULL; 4619f88e1a42SJes Sorensen int ret = 0; 4620f88e1a42SJes Sorensen 4621f88e1a42SJes Sorensen /* Find driver and parse its options */ 4622f88e1a42SJes Sorensen drv = bdrv_find_format(fmt); 4623f88e1a42SJes Sorensen if (!drv) { 462471c79813SLuiz Capitulino error_setg(errp, "Unknown file format '%s'", fmt); 4625d92ada22SLuiz Capitulino return; 4626f88e1a42SJes Sorensen } 4627f88e1a42SJes Sorensen 4628b65a5e12SMax Reitz proto_drv = bdrv_find_protocol(filename, true, errp); 4629f88e1a42SJes Sorensen if (!proto_drv) { 4630d92ada22SLuiz Capitulino return; 4631f88e1a42SJes Sorensen } 4632f88e1a42SJes Sorensen 4633c6149724SMax Reitz if (!drv->create_opts) { 4634c6149724SMax Reitz error_setg(errp, "Format driver '%s' does not support image creation", 4635c6149724SMax Reitz drv->format_name); 4636c6149724SMax Reitz return; 4637c6149724SMax Reitz } 4638c6149724SMax Reitz 4639c6149724SMax Reitz if (!proto_drv->create_opts) { 4640c6149724SMax Reitz error_setg(errp, "Protocol driver '%s' does not support image creation", 4641c6149724SMax Reitz proto_drv->format_name); 4642c6149724SMax Reitz return; 4643c6149724SMax Reitz } 4644c6149724SMax Reitz 4645c282e1fdSChunyan Liu create_opts = qemu_opts_append(create_opts, drv->create_opts); 4646c282e1fdSChunyan Liu create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); 4647f88e1a42SJes Sorensen 4648f88e1a42SJes Sorensen /* Create parameter list with default values */ 464983d0521aSChunyan Liu opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); 465039101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort); 4651f88e1a42SJes Sorensen 4652f88e1a42SJes Sorensen /* Parse -o options */ 4653f88e1a42SJes Sorensen if (options) { 4654dc523cd3SMarkus Armbruster qemu_opts_do_parse(opts, options, NULL, &local_err); 4655dc523cd3SMarkus Armbruster if (local_err) { 4656dc523cd3SMarkus Armbruster error_report_err(local_err); 4657dc523cd3SMarkus Armbruster local_err = NULL; 465883d0521aSChunyan Liu error_setg(errp, "Invalid options for file format '%s'", fmt); 4659f88e1a42SJes Sorensen goto out; 4660f88e1a42SJes Sorensen } 4661f88e1a42SJes Sorensen } 4662f88e1a42SJes Sorensen 4663f88e1a42SJes Sorensen if (base_filename) { 4664f43e47dbSMarkus Armbruster qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err); 46656be4194bSMarkus Armbruster if (local_err) { 466671c79813SLuiz Capitulino error_setg(errp, "Backing file not supported for file format '%s'", 466771c79813SLuiz Capitulino fmt); 4668f88e1a42SJes Sorensen goto out; 4669f88e1a42SJes Sorensen } 4670f88e1a42SJes Sorensen } 4671f88e1a42SJes Sorensen 4672f88e1a42SJes Sorensen if (base_fmt) { 4673f43e47dbSMarkus Armbruster qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err); 46746be4194bSMarkus Armbruster if (local_err) { 467571c79813SLuiz Capitulino error_setg(errp, "Backing file format not supported for file " 467671c79813SLuiz Capitulino "format '%s'", fmt); 4677f88e1a42SJes Sorensen goto out; 4678f88e1a42SJes Sorensen } 4679f88e1a42SJes Sorensen } 4680f88e1a42SJes Sorensen 468183d0521aSChunyan Liu backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); 468283d0521aSChunyan Liu if (backing_file) { 468383d0521aSChunyan Liu if (!strcmp(filename, backing_file)) { 468471c79813SLuiz Capitulino error_setg(errp, "Error: Trying to create an image with the " 468571c79813SLuiz Capitulino "same filename as the backing file"); 4686792da93aSJes Sorensen goto out; 4687792da93aSJes Sorensen } 4688792da93aSJes Sorensen } 4689792da93aSJes Sorensen 469083d0521aSChunyan Liu backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT); 4691f88e1a42SJes Sorensen 46926e6e55f5SJohn Snow /* The size for the image must always be specified, unless we have a backing 46936e6e55f5SJohn Snow * file and we have not been forbidden from opening it. */ 4694a8b42a1cSEric Blake size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size); 46956e6e55f5SJohn Snow if (backing_file && !(flags & BDRV_O_NO_BACKING)) { 469666f6b814SMax Reitz BlockDriverState *bs; 469729168018SMax Reitz char *full_backing = g_new0(char, PATH_MAX); 469863090dacSPaolo Bonzini int back_flags; 4699e6641719SMax Reitz QDict *backing_options = NULL; 470063090dacSPaolo Bonzini 470129168018SMax Reitz bdrv_get_full_backing_filename_from_filename(filename, backing_file, 470229168018SMax Reitz full_backing, PATH_MAX, 470329168018SMax Reitz &local_err); 470429168018SMax Reitz if (local_err) { 470529168018SMax Reitz g_free(full_backing); 470629168018SMax Reitz goto out; 470729168018SMax Reitz } 470829168018SMax Reitz 470963090dacSPaolo Bonzini /* backing files always opened read-only */ 471061de4c68SKevin Wolf back_flags = flags; 4711bfd18d1eSKevin Wolf back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); 4712f88e1a42SJes Sorensen 4713e6641719SMax Reitz backing_options = qdict_new(); 4714cc954f01SFam Zheng if (backing_fmt) { 471546f5ac20SEric Blake qdict_put_str(backing_options, "driver", backing_fmt); 4716e6641719SMax Reitz } 4717cc954f01SFam Zheng qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true); 4718e6641719SMax Reitz 47195b363937SMax Reitz bs = bdrv_open(full_backing, NULL, backing_options, back_flags, 47205b363937SMax Reitz &local_err); 472129168018SMax Reitz g_free(full_backing); 47226e6e55f5SJohn Snow if (!bs && size != -1) { 47236e6e55f5SJohn Snow /* Couldn't open BS, but we have a size, so it's nonfatal */ 47246e6e55f5SJohn Snow warn_reportf_err(local_err, 47256e6e55f5SJohn Snow "Could not verify backing image. " 47266e6e55f5SJohn Snow "This may become an error in future versions.\n"); 47276e6e55f5SJohn Snow local_err = NULL; 47286e6e55f5SJohn Snow } else if (!bs) { 47296e6e55f5SJohn Snow /* Couldn't open bs, do not have size */ 47306e6e55f5SJohn Snow error_append_hint(&local_err, 47316e6e55f5SJohn Snow "Could not open backing image to determine size.\n"); 4732f88e1a42SJes Sorensen goto out; 47336e6e55f5SJohn Snow } else { 47346e6e55f5SJohn Snow if (size == -1) { 47356e6e55f5SJohn Snow /* Opened BS, have no size */ 473652bf1e72SMarkus Armbruster size = bdrv_getlength(bs); 473752bf1e72SMarkus Armbruster if (size < 0) { 473852bf1e72SMarkus Armbruster error_setg_errno(errp, -size, "Could not get size of '%s'", 473952bf1e72SMarkus Armbruster backing_file); 474052bf1e72SMarkus Armbruster bdrv_unref(bs); 474152bf1e72SMarkus Armbruster goto out; 474252bf1e72SMarkus Armbruster } 474339101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort); 47446e6e55f5SJohn Snow } 474566f6b814SMax Reitz bdrv_unref(bs); 47466e6e55f5SJohn Snow } 47476e6e55f5SJohn Snow } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */ 47486e6e55f5SJohn Snow 47496e6e55f5SJohn Snow if (size == -1) { 475071c79813SLuiz Capitulino error_setg(errp, "Image creation needs a size parameter"); 4751f88e1a42SJes Sorensen goto out; 4752f88e1a42SJes Sorensen } 4753f88e1a42SJes Sorensen 4754f382d43aSMiroslav Rezanina if (!quiet) { 4755f88e1a42SJes Sorensen printf("Formatting '%s', fmt=%s ", filename, fmt); 475643c5d8f8SFam Zheng qemu_opts_print(opts, " "); 4757f88e1a42SJes Sorensen puts(""); 4758f382d43aSMiroslav Rezanina } 475983d0521aSChunyan Liu 4760c282e1fdSChunyan Liu ret = bdrv_create(drv, filename, opts, &local_err); 476183d0521aSChunyan Liu 4762cc84d90fSMax Reitz if (ret == -EFBIG) { 4763cc84d90fSMax Reitz /* This is generally a better message than whatever the driver would 4764cc84d90fSMax Reitz * deliver (especially because of the cluster_size_hint), since that 4765cc84d90fSMax Reitz * is most probably not much different from "image too large". */ 4766f3f4d2c0SKevin Wolf const char *cluster_size_hint = ""; 476783d0521aSChunyan Liu if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) { 4768f3f4d2c0SKevin Wolf cluster_size_hint = " (try using a larger cluster size)"; 4769f3f4d2c0SKevin Wolf } 4770cc84d90fSMax Reitz error_setg(errp, "The image size is too large for file format '%s'" 4771cc84d90fSMax Reitz "%s", fmt, cluster_size_hint); 4772cc84d90fSMax Reitz error_free(local_err); 4773cc84d90fSMax Reitz local_err = NULL; 4774f88e1a42SJes Sorensen } 4775f88e1a42SJes Sorensen 4776f88e1a42SJes Sorensen out: 477783d0521aSChunyan Liu qemu_opts_del(opts); 477883d0521aSChunyan Liu qemu_opts_free(create_opts); 4779cc84d90fSMax Reitz error_propagate(errp, local_err); 4780cc84d90fSMax Reitz } 478185d126f3SStefan Hajnoczi 478285d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs) 478385d126f3SStefan Hajnoczi { 478433f2a757SStefan Hajnoczi return bs ? bs->aio_context : qemu_get_aio_context(); 4785dcd04228SStefan Hajnoczi } 4786dcd04228SStefan Hajnoczi 47877719f3c9SStefan Hajnoczi AioWait *bdrv_get_aio_wait(BlockDriverState *bs) 47887719f3c9SStefan Hajnoczi { 47897719f3c9SStefan Hajnoczi return bs ? &bs->wait : NULL; 4790dcd04228SStefan Hajnoczi } 4791dcd04228SStefan Hajnoczi 4792052a7572SFam Zheng void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co) 4793052a7572SFam Zheng { 4794052a7572SFam Zheng aio_co_enter(bdrv_get_aio_context(bs), co); 4795052a7572SFam Zheng } 4796052a7572SFam Zheng 4797e8a095daSStefan Hajnoczi static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban) 4798e8a095daSStefan Hajnoczi { 4799e8a095daSStefan Hajnoczi QLIST_REMOVE(ban, list); 4800e8a095daSStefan Hajnoczi g_free(ban); 4801e8a095daSStefan Hajnoczi } 4802e8a095daSStefan Hajnoczi 4803dcd04228SStefan Hajnoczi void bdrv_detach_aio_context(BlockDriverState *bs) 4804dcd04228SStefan Hajnoczi { 4805e8a095daSStefan Hajnoczi BdrvAioNotifier *baf, *baf_tmp; 4806b97511c7SMax Reitz BdrvChild *child; 480733384421SMax Reitz 4808dcd04228SStefan Hajnoczi if (!bs->drv) { 4809dcd04228SStefan Hajnoczi return; 4810dcd04228SStefan Hajnoczi } 4811dcd04228SStefan Hajnoczi 4812e8a095daSStefan Hajnoczi assert(!bs->walking_aio_notifiers); 4813e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = true; 4814e8a095daSStefan Hajnoczi QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) { 4815e8a095daSStefan Hajnoczi if (baf->deleted) { 4816e8a095daSStefan Hajnoczi bdrv_do_remove_aio_context_notifier(baf); 4817e8a095daSStefan Hajnoczi } else { 481833384421SMax Reitz baf->detach_aio_context(baf->opaque); 481933384421SMax Reitz } 4820e8a095daSStefan Hajnoczi } 4821e8a095daSStefan Hajnoczi /* Never mind iterating again to check for ->deleted. bdrv_close() will 4822e8a095daSStefan Hajnoczi * remove remaining aio notifiers if we aren't called again. 4823e8a095daSStefan Hajnoczi */ 4824e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = false; 482533384421SMax Reitz 4826dcd04228SStefan Hajnoczi if (bs->drv->bdrv_detach_aio_context) { 4827dcd04228SStefan Hajnoczi bs->drv->bdrv_detach_aio_context(bs); 4828dcd04228SStefan Hajnoczi } 4829b97511c7SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 4830b97511c7SMax Reitz bdrv_detach_aio_context(child->bs); 4831dcd04228SStefan Hajnoczi } 4832dcd04228SStefan Hajnoczi 4833dcd04228SStefan Hajnoczi bs->aio_context = NULL; 4834dcd04228SStefan Hajnoczi } 4835dcd04228SStefan Hajnoczi 4836dcd04228SStefan Hajnoczi void bdrv_attach_aio_context(BlockDriverState *bs, 4837dcd04228SStefan Hajnoczi AioContext *new_context) 4838dcd04228SStefan Hajnoczi { 4839e8a095daSStefan Hajnoczi BdrvAioNotifier *ban, *ban_tmp; 4840b97511c7SMax Reitz BdrvChild *child; 484133384421SMax Reitz 4842dcd04228SStefan Hajnoczi if (!bs->drv) { 4843dcd04228SStefan Hajnoczi return; 4844dcd04228SStefan Hajnoczi } 4845dcd04228SStefan Hajnoczi 4846dcd04228SStefan Hajnoczi bs->aio_context = new_context; 4847dcd04228SStefan Hajnoczi 4848b97511c7SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 4849b97511c7SMax Reitz bdrv_attach_aio_context(child->bs, new_context); 4850dcd04228SStefan Hajnoczi } 4851dcd04228SStefan Hajnoczi if (bs->drv->bdrv_attach_aio_context) { 4852dcd04228SStefan Hajnoczi bs->drv->bdrv_attach_aio_context(bs, new_context); 4853dcd04228SStefan Hajnoczi } 485433384421SMax Reitz 4855e8a095daSStefan Hajnoczi assert(!bs->walking_aio_notifiers); 4856e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = true; 4857e8a095daSStefan Hajnoczi QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) { 4858e8a095daSStefan Hajnoczi if (ban->deleted) { 4859e8a095daSStefan Hajnoczi bdrv_do_remove_aio_context_notifier(ban); 4860e8a095daSStefan Hajnoczi } else { 486133384421SMax Reitz ban->attached_aio_context(new_context, ban->opaque); 486233384421SMax Reitz } 4863dcd04228SStefan Hajnoczi } 4864e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = false; 4865e8a095daSStefan Hajnoczi } 4866dcd04228SStefan Hajnoczi 4867dcd04228SStefan Hajnoczi void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context) 4868dcd04228SStefan Hajnoczi { 4869aabf5910SFam Zheng AioContext *ctx = bdrv_get_aio_context(bs); 4870c2b6428dSPaolo Bonzini 4871aabf5910SFam Zheng aio_disable_external(ctx); 48720152bf40SKevin Wolf bdrv_parent_drained_begin(bs, NULL); 487353ec73e2SFam Zheng bdrv_drain(bs); /* ensure there are no in-flight requests */ 4874dcd04228SStefan Hajnoczi 4875c2b6428dSPaolo Bonzini while (aio_poll(ctx, false)) { 4876c2b6428dSPaolo Bonzini /* wait for all bottom halves to execute */ 4877c2b6428dSPaolo Bonzini } 4878c2b6428dSPaolo Bonzini 4879dcd04228SStefan Hajnoczi bdrv_detach_aio_context(bs); 4880dcd04228SStefan Hajnoczi 4881dcd04228SStefan Hajnoczi /* This function executes in the old AioContext so acquire the new one in 4882dcd04228SStefan Hajnoczi * case it runs in a different thread. 4883dcd04228SStefan Hajnoczi */ 4884dcd04228SStefan Hajnoczi aio_context_acquire(new_context); 4885dcd04228SStefan Hajnoczi bdrv_attach_aio_context(bs, new_context); 48860152bf40SKevin Wolf bdrv_parent_drained_end(bs, NULL); 4887aabf5910SFam Zheng aio_enable_external(ctx); 4888dcd04228SStefan Hajnoczi aio_context_release(new_context); 488985d126f3SStefan Hajnoczi } 4890d616b224SStefan Hajnoczi 489133384421SMax Reitz void bdrv_add_aio_context_notifier(BlockDriverState *bs, 489233384421SMax Reitz void (*attached_aio_context)(AioContext *new_context, void *opaque), 489333384421SMax Reitz void (*detach_aio_context)(void *opaque), void *opaque) 489433384421SMax Reitz { 489533384421SMax Reitz BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1); 489633384421SMax Reitz *ban = (BdrvAioNotifier){ 489733384421SMax Reitz .attached_aio_context = attached_aio_context, 489833384421SMax Reitz .detach_aio_context = detach_aio_context, 489933384421SMax Reitz .opaque = opaque 490033384421SMax Reitz }; 490133384421SMax Reitz 490233384421SMax Reitz QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list); 490333384421SMax Reitz } 490433384421SMax Reitz 490533384421SMax Reitz void bdrv_remove_aio_context_notifier(BlockDriverState *bs, 490633384421SMax Reitz void (*attached_aio_context)(AioContext *, 490733384421SMax Reitz void *), 490833384421SMax Reitz void (*detach_aio_context)(void *), 490933384421SMax Reitz void *opaque) 491033384421SMax Reitz { 491133384421SMax Reitz BdrvAioNotifier *ban, *ban_next; 491233384421SMax Reitz 491333384421SMax Reitz QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 491433384421SMax Reitz if (ban->attached_aio_context == attached_aio_context && 491533384421SMax Reitz ban->detach_aio_context == detach_aio_context && 4916e8a095daSStefan Hajnoczi ban->opaque == opaque && 4917e8a095daSStefan Hajnoczi ban->deleted == false) 491833384421SMax Reitz { 4919e8a095daSStefan Hajnoczi if (bs->walking_aio_notifiers) { 4920e8a095daSStefan Hajnoczi ban->deleted = true; 4921e8a095daSStefan Hajnoczi } else { 4922e8a095daSStefan Hajnoczi bdrv_do_remove_aio_context_notifier(ban); 4923e8a095daSStefan Hajnoczi } 492433384421SMax Reitz return; 492533384421SMax Reitz } 492633384421SMax Reitz } 492733384421SMax Reitz 492833384421SMax Reitz abort(); 492933384421SMax Reitz } 493033384421SMax Reitz 493177485434SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts, 49328b13976dSMax Reitz BlockDriverAmendStatusCB *status_cb, void *cb_opaque) 49336f176b48SMax Reitz { 4934d470ad42SMax Reitz if (!bs->drv) { 4935d470ad42SMax Reitz return -ENOMEDIUM; 4936d470ad42SMax Reitz } 4937c282e1fdSChunyan Liu if (!bs->drv->bdrv_amend_options) { 49386f176b48SMax Reitz return -ENOTSUP; 49396f176b48SMax Reitz } 49408b13976dSMax Reitz return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque); 49416f176b48SMax Reitz } 4942f6186f49SBenoît Canet 4943b5042a36SBenoît Canet /* This function will be called by the bdrv_recurse_is_first_non_filter method 4944b5042a36SBenoît Canet * of block filter and by bdrv_is_first_non_filter. 4945b5042a36SBenoît Canet * It is used to test if the given bs is the candidate or recurse more in the 4946b5042a36SBenoît Canet * node graph. 4947212a5a8fSBenoît Canet */ 4948212a5a8fSBenoît Canet bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs, 4949212a5a8fSBenoît Canet BlockDriverState *candidate) 4950f6186f49SBenoît Canet { 4951b5042a36SBenoît Canet /* return false if basic checks fails */ 4952b5042a36SBenoît Canet if (!bs || !bs->drv) { 4953b5042a36SBenoît Canet return false; 4954b5042a36SBenoît Canet } 4955b5042a36SBenoît Canet 4956b5042a36SBenoît Canet /* the code reached a non block filter driver -> check if the bs is 4957b5042a36SBenoît Canet * the same as the candidate. It's the recursion termination condition. 4958b5042a36SBenoît Canet */ 4959b5042a36SBenoît Canet if (!bs->drv->is_filter) { 4960b5042a36SBenoît Canet return bs == candidate; 4961b5042a36SBenoît Canet } 4962b5042a36SBenoît Canet /* Down this path the driver is a block filter driver */ 4963b5042a36SBenoît Canet 4964b5042a36SBenoît Canet /* If the block filter recursion method is defined use it to recurse down 4965b5042a36SBenoît Canet * the node graph. 4966b5042a36SBenoît Canet */ 4967b5042a36SBenoît Canet if (bs->drv->bdrv_recurse_is_first_non_filter) { 4968212a5a8fSBenoît Canet return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate); 4969212a5a8fSBenoît Canet } 4970212a5a8fSBenoît Canet 4971b5042a36SBenoît Canet /* the driver is a block filter but don't allow to recurse -> return false 4972b5042a36SBenoît Canet */ 4973b5042a36SBenoît Canet return false; 4974212a5a8fSBenoît Canet } 4975212a5a8fSBenoît Canet 4976212a5a8fSBenoît Canet /* This function checks if the candidate is the first non filter bs down it's 4977212a5a8fSBenoît Canet * bs chain. Since we don't have pointers to parents it explore all bs chains 4978212a5a8fSBenoît Canet * from the top. Some filters can choose not to pass down the recursion. 4979212a5a8fSBenoît Canet */ 4980212a5a8fSBenoît Canet bool bdrv_is_first_non_filter(BlockDriverState *candidate) 4981212a5a8fSBenoît Canet { 49827c8eece4SKevin Wolf BlockDriverState *bs; 498388be7b4bSKevin Wolf BdrvNextIterator it; 4984212a5a8fSBenoît Canet 4985212a5a8fSBenoît Canet /* walk down the bs forest recursively */ 498688be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 4987212a5a8fSBenoît Canet bool perm; 4988212a5a8fSBenoît Canet 4989b5042a36SBenoît Canet /* try to recurse in this top level bs */ 4990e6dc8a1fSKevin Wolf perm = bdrv_recurse_is_first_non_filter(bs, candidate); 4991212a5a8fSBenoît Canet 4992212a5a8fSBenoît Canet /* candidate is the first non filter */ 4993212a5a8fSBenoît Canet if (perm) { 49945e003f17SMax Reitz bdrv_next_cleanup(&it); 4995212a5a8fSBenoît Canet return true; 4996212a5a8fSBenoît Canet } 4997212a5a8fSBenoît Canet } 4998212a5a8fSBenoît Canet 4999212a5a8fSBenoît Canet return false; 5000f6186f49SBenoît Canet } 500109158f00SBenoît Canet 5002e12f3784SWen Congyang BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs, 5003e12f3784SWen Congyang const char *node_name, Error **errp) 500409158f00SBenoît Canet { 500509158f00SBenoît Canet BlockDriverState *to_replace_bs = bdrv_find_node(node_name); 50065a7e7a0bSStefan Hajnoczi AioContext *aio_context; 50075a7e7a0bSStefan Hajnoczi 500809158f00SBenoît Canet if (!to_replace_bs) { 500909158f00SBenoît Canet error_setg(errp, "Node name '%s' not found", node_name); 501009158f00SBenoît Canet return NULL; 501109158f00SBenoît Canet } 501209158f00SBenoît Canet 50135a7e7a0bSStefan Hajnoczi aio_context = bdrv_get_aio_context(to_replace_bs); 50145a7e7a0bSStefan Hajnoczi aio_context_acquire(aio_context); 50155a7e7a0bSStefan Hajnoczi 501609158f00SBenoît Canet if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) { 50175a7e7a0bSStefan Hajnoczi to_replace_bs = NULL; 50185a7e7a0bSStefan Hajnoczi goto out; 501909158f00SBenoît Canet } 502009158f00SBenoît Canet 502109158f00SBenoît Canet /* We don't want arbitrary node of the BDS chain to be replaced only the top 502209158f00SBenoît Canet * most non filter in order to prevent data corruption. 502309158f00SBenoît Canet * Another benefit is that this tests exclude backing files which are 502409158f00SBenoît Canet * blocked by the backing blockers. 502509158f00SBenoît Canet */ 5026e12f3784SWen Congyang if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) { 502709158f00SBenoît Canet error_setg(errp, "Only top most non filter can be replaced"); 50285a7e7a0bSStefan Hajnoczi to_replace_bs = NULL; 50295a7e7a0bSStefan Hajnoczi goto out; 503009158f00SBenoît Canet } 503109158f00SBenoît Canet 50325a7e7a0bSStefan Hajnoczi out: 50335a7e7a0bSStefan Hajnoczi aio_context_release(aio_context); 503409158f00SBenoît Canet return to_replace_bs; 503509158f00SBenoît Canet } 5036448ad91dSMing Lei 503791af7014SMax Reitz static bool append_open_options(QDict *d, BlockDriverState *bs) 503891af7014SMax Reitz { 503991af7014SMax Reitz const QDictEntry *entry; 50409e700c1aSKevin Wolf QemuOptDesc *desc; 5041260fecf1SKevin Wolf BdrvChild *child; 504291af7014SMax Reitz bool found_any = false; 5043260fecf1SKevin Wolf const char *p; 504491af7014SMax Reitz 504591af7014SMax Reitz for (entry = qdict_first(bs->options); entry; 504691af7014SMax Reitz entry = qdict_next(bs->options, entry)) 504791af7014SMax Reitz { 5048260fecf1SKevin Wolf /* Exclude options for children */ 5049260fecf1SKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 5050260fecf1SKevin Wolf if (strstart(qdict_entry_key(entry), child->name, &p) 5051260fecf1SKevin Wolf && (!*p || *p == '.')) 5052260fecf1SKevin Wolf { 5053260fecf1SKevin Wolf break; 5054260fecf1SKevin Wolf } 5055260fecf1SKevin Wolf } 5056260fecf1SKevin Wolf if (child) { 50579e700c1aSKevin Wolf continue; 50589e700c1aSKevin Wolf } 50599e700c1aSKevin Wolf 50609e700c1aSKevin Wolf /* And exclude all non-driver-specific options */ 50619e700c1aSKevin Wolf for (desc = bdrv_runtime_opts.desc; desc->name; desc++) { 50629e700c1aSKevin Wolf if (!strcmp(qdict_entry_key(entry), desc->name)) { 50639e700c1aSKevin Wolf break; 50649e700c1aSKevin Wolf } 50659e700c1aSKevin Wolf } 50669e700c1aSKevin Wolf if (desc->name) { 50679e700c1aSKevin Wolf continue; 50689e700c1aSKevin Wolf } 50699e700c1aSKevin Wolf 507091af7014SMax Reitz qobject_incref(qdict_entry_value(entry)); 507191af7014SMax Reitz qdict_put_obj(d, qdict_entry_key(entry), qdict_entry_value(entry)); 507291af7014SMax Reitz found_any = true; 507391af7014SMax Reitz } 507491af7014SMax Reitz 507591af7014SMax Reitz return found_any; 507691af7014SMax Reitz } 507791af7014SMax Reitz 507891af7014SMax Reitz /* Updates the following BDS fields: 507991af7014SMax Reitz * - exact_filename: A filename which may be used for opening a block device 508091af7014SMax Reitz * which (mostly) equals the given BDS (even without any 508191af7014SMax Reitz * other options; so reading and writing must return the same 508291af7014SMax Reitz * results, but caching etc. may be different) 508391af7014SMax Reitz * - full_open_options: Options which, when given when opening a block device 508491af7014SMax Reitz * (without a filename), result in a BDS (mostly) 508591af7014SMax Reitz * equalling the given one 508691af7014SMax Reitz * - filename: If exact_filename is set, it is copied here. Otherwise, 508791af7014SMax Reitz * full_open_options is converted to a JSON object, prefixed with 508891af7014SMax Reitz * "json:" (for use through the JSON pseudo protocol) and put here. 508991af7014SMax Reitz */ 509091af7014SMax Reitz void bdrv_refresh_filename(BlockDriverState *bs) 509191af7014SMax Reitz { 509291af7014SMax Reitz BlockDriver *drv = bs->drv; 509391af7014SMax Reitz QDict *opts; 509491af7014SMax Reitz 509591af7014SMax Reitz if (!drv) { 509691af7014SMax Reitz return; 509791af7014SMax Reitz } 509891af7014SMax Reitz 509991af7014SMax Reitz /* This BDS's file name will most probably depend on its file's name, so 510091af7014SMax Reitz * refresh that first */ 510191af7014SMax Reitz if (bs->file) { 51029a4f4c31SKevin Wolf bdrv_refresh_filename(bs->file->bs); 510391af7014SMax Reitz } 510491af7014SMax Reitz 510591af7014SMax Reitz if (drv->bdrv_refresh_filename) { 510691af7014SMax Reitz /* Obsolete information is of no use here, so drop the old file name 510791af7014SMax Reitz * information before refreshing it */ 510891af7014SMax Reitz bs->exact_filename[0] = '\0'; 510991af7014SMax Reitz if (bs->full_open_options) { 511091af7014SMax Reitz QDECREF(bs->full_open_options); 511191af7014SMax Reitz bs->full_open_options = NULL; 511291af7014SMax Reitz } 511391af7014SMax Reitz 51144cdd01d3SKevin Wolf opts = qdict_new(); 51154cdd01d3SKevin Wolf append_open_options(opts, bs); 51164cdd01d3SKevin Wolf drv->bdrv_refresh_filename(bs, opts); 51174cdd01d3SKevin Wolf QDECREF(opts); 511891af7014SMax Reitz } else if (bs->file) { 511991af7014SMax Reitz /* Try to reconstruct valid information from the underlying file */ 512091af7014SMax Reitz bool has_open_options; 512191af7014SMax Reitz 512291af7014SMax Reitz bs->exact_filename[0] = '\0'; 512391af7014SMax Reitz if (bs->full_open_options) { 512491af7014SMax Reitz QDECREF(bs->full_open_options); 512591af7014SMax Reitz bs->full_open_options = NULL; 512691af7014SMax Reitz } 512791af7014SMax Reitz 512891af7014SMax Reitz opts = qdict_new(); 512991af7014SMax Reitz has_open_options = append_open_options(opts, bs); 513091af7014SMax Reitz 513191af7014SMax Reitz /* If no specific options have been given for this BDS, the filename of 513291af7014SMax Reitz * the underlying file should suffice for this one as well */ 51339a4f4c31SKevin Wolf if (bs->file->bs->exact_filename[0] && !has_open_options) { 51349a4f4c31SKevin Wolf strcpy(bs->exact_filename, bs->file->bs->exact_filename); 513591af7014SMax Reitz } 513691af7014SMax Reitz /* Reconstructing the full options QDict is simple for most format block 513791af7014SMax Reitz * drivers, as long as the full options are known for the underlying 513891af7014SMax Reitz * file BDS. The full options QDict of that file BDS should somehow 513991af7014SMax Reitz * contain a representation of the filename, therefore the following 514091af7014SMax Reitz * suffices without querying the (exact_)filename of this BDS. */ 51419a4f4c31SKevin Wolf if (bs->file->bs->full_open_options) { 514246f5ac20SEric Blake qdict_put_str(opts, "driver", drv->format_name); 51439a4f4c31SKevin Wolf QINCREF(bs->file->bs->full_open_options); 5144de6e7951SEric Blake qdict_put(opts, "file", bs->file->bs->full_open_options); 514591af7014SMax Reitz 514691af7014SMax Reitz bs->full_open_options = opts; 514791af7014SMax Reitz } else { 514891af7014SMax Reitz QDECREF(opts); 514991af7014SMax Reitz } 515091af7014SMax Reitz } else if (!bs->full_open_options && qdict_size(bs->options)) { 515191af7014SMax Reitz /* There is no underlying file BDS (at least referenced by BDS.file), 515291af7014SMax Reitz * so the full options QDict should be equal to the options given 515391af7014SMax Reitz * specifically for this block device when it was opened (plus the 515491af7014SMax Reitz * driver specification). 515591af7014SMax Reitz * Because those options don't change, there is no need to update 515691af7014SMax Reitz * full_open_options when it's already set. */ 515791af7014SMax Reitz 515891af7014SMax Reitz opts = qdict_new(); 515991af7014SMax Reitz append_open_options(opts, bs); 516046f5ac20SEric Blake qdict_put_str(opts, "driver", drv->format_name); 516191af7014SMax Reitz 516291af7014SMax Reitz if (bs->exact_filename[0]) { 516391af7014SMax Reitz /* This may not work for all block protocol drivers (some may 516491af7014SMax Reitz * require this filename to be parsed), but we have to find some 516591af7014SMax Reitz * default solution here, so just include it. If some block driver 516691af7014SMax Reitz * does not support pure options without any filename at all or 516791af7014SMax Reitz * needs some special format of the options QDict, it needs to 516891af7014SMax Reitz * implement the driver-specific bdrv_refresh_filename() function. 516991af7014SMax Reitz */ 517046f5ac20SEric Blake qdict_put_str(opts, "filename", bs->exact_filename); 517191af7014SMax Reitz } 517291af7014SMax Reitz 517391af7014SMax Reitz bs->full_open_options = opts; 517491af7014SMax Reitz } 517591af7014SMax Reitz 517691af7014SMax Reitz if (bs->exact_filename[0]) { 517791af7014SMax Reitz pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename); 517891af7014SMax Reitz } else if (bs->full_open_options) { 517991af7014SMax Reitz QString *json = qobject_to_json(QOBJECT(bs->full_open_options)); 518091af7014SMax Reitz snprintf(bs->filename, sizeof(bs->filename), "json:%s", 518191af7014SMax Reitz qstring_get_str(json)); 518291af7014SMax Reitz QDECREF(json); 518391af7014SMax Reitz } 518491af7014SMax Reitz } 5185e06018adSWen Congyang 5186e06018adSWen Congyang /* 5187e06018adSWen Congyang * Hot add/remove a BDS's child. So the user can take a child offline when 5188e06018adSWen Congyang * it is broken and take a new child online 5189e06018adSWen Congyang */ 5190e06018adSWen Congyang void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs, 5191e06018adSWen Congyang Error **errp) 5192e06018adSWen Congyang { 5193e06018adSWen Congyang 5194e06018adSWen Congyang if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) { 5195e06018adSWen Congyang error_setg(errp, "The node %s does not support adding a child", 5196e06018adSWen Congyang bdrv_get_device_or_node_name(parent_bs)); 5197e06018adSWen Congyang return; 5198e06018adSWen Congyang } 5199e06018adSWen Congyang 5200e06018adSWen Congyang if (!QLIST_EMPTY(&child_bs->parents)) { 5201e06018adSWen Congyang error_setg(errp, "The node %s already has a parent", 5202e06018adSWen Congyang child_bs->node_name); 5203e06018adSWen Congyang return; 5204e06018adSWen Congyang } 5205e06018adSWen Congyang 5206e06018adSWen Congyang parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp); 5207e06018adSWen Congyang } 5208e06018adSWen Congyang 5209e06018adSWen Congyang void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp) 5210e06018adSWen Congyang { 5211e06018adSWen Congyang BdrvChild *tmp; 5212e06018adSWen Congyang 5213e06018adSWen Congyang if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) { 5214e06018adSWen Congyang error_setg(errp, "The node %s does not support removing a child", 5215e06018adSWen Congyang bdrv_get_device_or_node_name(parent_bs)); 5216e06018adSWen Congyang return; 5217e06018adSWen Congyang } 5218e06018adSWen Congyang 5219e06018adSWen Congyang QLIST_FOREACH(tmp, &parent_bs->children, next) { 5220e06018adSWen Congyang if (tmp == child) { 5221e06018adSWen Congyang break; 5222e06018adSWen Congyang } 5223e06018adSWen Congyang } 5224e06018adSWen Congyang 5225e06018adSWen Congyang if (!tmp) { 5226e06018adSWen Congyang error_setg(errp, "The node %s does not have a child named %s", 5227e06018adSWen Congyang bdrv_get_device_or_node_name(parent_bs), 5228e06018adSWen Congyang bdrv_get_device_or_node_name(child->bs)); 5229e06018adSWen Congyang return; 5230e06018adSWen Congyang } 5231e06018adSWen Congyang 5232e06018adSWen Congyang parent_bs->drv->bdrv_del_child(parent_bs, child, errp); 5233e06018adSWen Congyang } 523467b792f5SVladimir Sementsov-Ogievskiy 523567b792f5SVladimir Sementsov-Ogievskiy bool bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name, 523667b792f5SVladimir Sementsov-Ogievskiy uint32_t granularity, Error **errp) 523767b792f5SVladimir Sementsov-Ogievskiy { 523867b792f5SVladimir Sementsov-Ogievskiy BlockDriver *drv = bs->drv; 523967b792f5SVladimir Sementsov-Ogievskiy 524067b792f5SVladimir Sementsov-Ogievskiy if (!drv) { 524167b792f5SVladimir Sementsov-Ogievskiy error_setg_errno(errp, ENOMEDIUM, 524267b792f5SVladimir Sementsov-Ogievskiy "Can't store persistent bitmaps to %s", 524367b792f5SVladimir Sementsov-Ogievskiy bdrv_get_device_or_node_name(bs)); 524467b792f5SVladimir Sementsov-Ogievskiy return false; 524567b792f5SVladimir Sementsov-Ogievskiy } 524667b792f5SVladimir Sementsov-Ogievskiy 524767b792f5SVladimir Sementsov-Ogievskiy if (!drv->bdrv_can_store_new_dirty_bitmap) { 524867b792f5SVladimir Sementsov-Ogievskiy error_setg_errno(errp, ENOTSUP, 524967b792f5SVladimir Sementsov-Ogievskiy "Can't store persistent bitmaps to %s", 525067b792f5SVladimir Sementsov-Ogievskiy bdrv_get_device_or_node_name(bs)); 525167b792f5SVladimir Sementsov-Ogievskiy return false; 525267b792f5SVladimir Sementsov-Ogievskiy } 525367b792f5SVladimir Sementsov-Ogievskiy 525467b792f5SVladimir Sementsov-Ogievskiy return drv->bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp); 525567b792f5SVladimir Sementsov-Ogievskiy } 5256