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 */ 24d38ea87aSPeter Maydell #include "qemu/osdep.h" 250ab8ed18SDaniel P. Berrange #include "block/trace.h" 26737e150eSPaolo Bonzini #include "block/block_int.h" 27737e150eSPaolo Bonzini #include "block/blockjob.h" 28cd7fca95SKevin Wolf #include "block/nbd.h" 29d49b6836SMarkus Armbruster #include "qemu/error-report.h" 3088d88798SMarc Mari #include "module_block.h" 311de7afc9SPaolo Bonzini #include "qemu/module.h" 32cc7a8ea7SMarkus Armbruster #include "qapi/qmp/qerror.h" 3391a097e7SKevin Wolf #include "qapi/qmp/qbool.h" 347b1b5d19SPaolo Bonzini #include "qapi/qmp/qjson.h" 35bfb197e0SMarkus Armbruster #include "sysemu/block-backend.h" 369c17d615SPaolo Bonzini #include "sysemu/sysemu.h" 371de7afc9SPaolo Bonzini #include "qemu/notify.h" 3810817bf0SDaniel P. Berrange #include "qemu/coroutine.h" 39c13163fbSBenoît Canet #include "block/qapi.h" 40b2023818SLuiz Capitulino #include "qmp-commands.h" 411de7afc9SPaolo Bonzini #include "qemu/timer.h" 42a5ee7bd4SWenchao Xia #include "qapi-event.h" 43f348b6d1SVeronia Bahaa #include "qemu/cutils.h" 44f348b6d1SVeronia Bahaa #include "qemu/id.h" 45692e01a2SKevin Wolf #include "qapi/util.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 { 16683f64091Sbellard p = strchr(base_path, ':'); 16783f64091Sbellard if (p) 16883f64091Sbellard p++; 16983f64091Sbellard else 17083f64091Sbellard p = base_path; 1713b9f94e1Sbellard p1 = strrchr(base_path, '/'); 1723b9f94e1Sbellard #ifdef _WIN32 1733b9f94e1Sbellard { 1743b9f94e1Sbellard const char *p2; 1753b9f94e1Sbellard p2 = strrchr(base_path, '\\'); 1763b9f94e1Sbellard if (!p1 || p2 > p1) 1773b9f94e1Sbellard p1 = p2; 1783b9f94e1Sbellard } 1793b9f94e1Sbellard #endif 18083f64091Sbellard if (p1) 18183f64091Sbellard p1++; 18283f64091Sbellard else 18383f64091Sbellard p1 = base_path; 18483f64091Sbellard if (p1 > p) 18583f64091Sbellard p = p1; 18683f64091Sbellard len = p - base_path; 18783f64091Sbellard if (len > dest_size - 1) 18883f64091Sbellard len = dest_size - 1; 18983f64091Sbellard memcpy(dest, base_path, len); 19083f64091Sbellard dest[len] = '\0'; 19183f64091Sbellard pstrcat(dest, dest_size, filename); 19283f64091Sbellard } 19383f64091Sbellard } 19483f64091Sbellard 1950a82855aSMax Reitz void bdrv_get_full_backing_filename_from_filename(const char *backed, 1960a82855aSMax Reitz const char *backing, 1979f07429eSMax Reitz char *dest, size_t sz, 1989f07429eSMax Reitz Error **errp) 1990a82855aSMax Reitz { 2009f07429eSMax Reitz if (backing[0] == '\0' || path_has_protocol(backing) || 2019f07429eSMax Reitz path_is_absolute(backing)) 2029f07429eSMax Reitz { 2030a82855aSMax Reitz pstrcpy(dest, sz, backing); 2049f07429eSMax Reitz } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) { 2059f07429eSMax Reitz error_setg(errp, "Cannot use relative backing file names for '%s'", 2069f07429eSMax Reitz backed); 2070a82855aSMax Reitz } else { 2080a82855aSMax Reitz path_combine(dest, sz, backed, backing); 2090a82855aSMax Reitz } 2100a82855aSMax Reitz } 2110a82855aSMax Reitz 2129f07429eSMax Reitz void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz, 2139f07429eSMax Reitz Error **errp) 214dc5a1371SPaolo Bonzini { 2159f07429eSMax Reitz char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename; 2169f07429eSMax Reitz 2179f07429eSMax Reitz bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file, 2189f07429eSMax Reitz dest, sz, errp); 219dc5a1371SPaolo Bonzini } 220dc5a1371SPaolo Bonzini 2210eb7217eSStefan Hajnoczi void bdrv_register(BlockDriver *bdrv) 2220eb7217eSStefan Hajnoczi { 2238a22f02aSStefan Hajnoczi QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list); 224ea2384d3Sbellard } 225b338082bSbellard 226e4e9986bSMarkus Armbruster BlockDriverState *bdrv_new(void) 227e4e9986bSMarkus Armbruster { 228e4e9986bSMarkus Armbruster BlockDriverState *bs; 229e4e9986bSMarkus Armbruster int i; 230e4e9986bSMarkus Armbruster 2315839e53bSMarkus Armbruster bs = g_new0(BlockDriverState, 1); 232e4654d2dSFam Zheng QLIST_INIT(&bs->dirty_bitmaps); 233fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 234fbe40ff7SFam Zheng QLIST_INIT(&bs->op_blockers[i]); 235fbe40ff7SFam Zheng } 236d616b224SStefan Hajnoczi notifier_with_return_list_init(&bs->before_write_notifiers); 2379fcb0251SFam Zheng bs->refcnt = 1; 238dcd04228SStefan Hajnoczi bs->aio_context = qemu_get_aio_context(); 239d7d512f6SPaolo Bonzini 2403ff2f67aSEvgeny Yakovlev qemu_co_queue_init(&bs->flush_queue); 2413ff2f67aSEvgeny Yakovlev 2422c1d04e0SMax Reitz QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list); 2432c1d04e0SMax Reitz 244b338082bSbellard return bs; 245b338082bSbellard } 246b338082bSbellard 24788d88798SMarc Mari static BlockDriver *bdrv_do_find_format(const char *format_name) 248ea2384d3Sbellard { 249ea2384d3Sbellard BlockDriver *drv1; 25088d88798SMarc Mari 2518a22f02aSStefan Hajnoczi QLIST_FOREACH(drv1, &bdrv_drivers, list) { 2528a22f02aSStefan Hajnoczi if (!strcmp(drv1->format_name, format_name)) { 253ea2384d3Sbellard return drv1; 254ea2384d3Sbellard } 2558a22f02aSStefan Hajnoczi } 25688d88798SMarc Mari 257ea2384d3Sbellard return NULL; 258ea2384d3Sbellard } 259ea2384d3Sbellard 26088d88798SMarc Mari BlockDriver *bdrv_find_format(const char *format_name) 26188d88798SMarc Mari { 26288d88798SMarc Mari BlockDriver *drv1; 26388d88798SMarc Mari int i; 26488d88798SMarc Mari 26588d88798SMarc Mari drv1 = bdrv_do_find_format(format_name); 26688d88798SMarc Mari if (drv1) { 26788d88798SMarc Mari return drv1; 26888d88798SMarc Mari } 26988d88798SMarc Mari 27088d88798SMarc Mari /* The driver isn't registered, maybe we need to load a module */ 27188d88798SMarc Mari for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { 27288d88798SMarc Mari if (!strcmp(block_driver_modules[i].format_name, format_name)) { 27388d88798SMarc Mari block_module_load_one(block_driver_modules[i].library_name); 27488d88798SMarc Mari break; 27588d88798SMarc Mari } 27688d88798SMarc Mari } 27788d88798SMarc Mari 27888d88798SMarc Mari return bdrv_do_find_format(format_name); 27988d88798SMarc Mari } 28088d88798SMarc Mari 281b64ec4e4SFam Zheng static int bdrv_is_whitelisted(BlockDriver *drv, bool read_only) 282eb852011SMarkus Armbruster { 283b64ec4e4SFam Zheng static const char *whitelist_rw[] = { 284b64ec4e4SFam Zheng CONFIG_BDRV_RW_WHITELIST 285b64ec4e4SFam Zheng }; 286b64ec4e4SFam Zheng static const char *whitelist_ro[] = { 287b64ec4e4SFam Zheng CONFIG_BDRV_RO_WHITELIST 288eb852011SMarkus Armbruster }; 289eb852011SMarkus Armbruster const char **p; 290eb852011SMarkus Armbruster 291b64ec4e4SFam Zheng if (!whitelist_rw[0] && !whitelist_ro[0]) { 292eb852011SMarkus Armbruster return 1; /* no whitelist, anything goes */ 293b64ec4e4SFam Zheng } 294eb852011SMarkus Armbruster 295b64ec4e4SFam Zheng for (p = whitelist_rw; *p; p++) { 296eb852011SMarkus Armbruster if (!strcmp(drv->format_name, *p)) { 297eb852011SMarkus Armbruster return 1; 298eb852011SMarkus Armbruster } 299eb852011SMarkus Armbruster } 300b64ec4e4SFam Zheng if (read_only) { 301b64ec4e4SFam Zheng for (p = whitelist_ro; *p; p++) { 302b64ec4e4SFam Zheng if (!strcmp(drv->format_name, *p)) { 303b64ec4e4SFam Zheng return 1; 304b64ec4e4SFam Zheng } 305b64ec4e4SFam Zheng } 306b64ec4e4SFam Zheng } 307eb852011SMarkus Armbruster return 0; 308eb852011SMarkus Armbruster } 309eb852011SMarkus Armbruster 310e6ff69bfSDaniel P. Berrange bool bdrv_uses_whitelist(void) 311e6ff69bfSDaniel P. Berrange { 312e6ff69bfSDaniel P. Berrange return use_bdrv_whitelist; 313e6ff69bfSDaniel P. Berrange } 314e6ff69bfSDaniel P. Berrange 3155b7e1542SZhi Yong Wu typedef struct CreateCo { 3165b7e1542SZhi Yong Wu BlockDriver *drv; 3175b7e1542SZhi Yong Wu char *filename; 31883d0521aSChunyan Liu QemuOpts *opts; 3195b7e1542SZhi Yong Wu int ret; 320cc84d90fSMax Reitz Error *err; 3215b7e1542SZhi Yong Wu } CreateCo; 3225b7e1542SZhi Yong Wu 3235b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque) 3245b7e1542SZhi Yong Wu { 325cc84d90fSMax Reitz Error *local_err = NULL; 326cc84d90fSMax Reitz int ret; 327cc84d90fSMax Reitz 3285b7e1542SZhi Yong Wu CreateCo *cco = opaque; 3295b7e1542SZhi Yong Wu assert(cco->drv); 3305b7e1542SZhi Yong Wu 331c282e1fdSChunyan Liu ret = cco->drv->bdrv_create(cco->filename, cco->opts, &local_err); 332cc84d90fSMax Reitz error_propagate(&cco->err, local_err); 333cc84d90fSMax Reitz cco->ret = ret; 3345b7e1542SZhi Yong Wu } 3355b7e1542SZhi Yong Wu 3360e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename, 33783d0521aSChunyan Liu QemuOpts *opts, Error **errp) 338ea2384d3Sbellard { 3395b7e1542SZhi Yong Wu int ret; 3400e7e1989SKevin Wolf 3415b7e1542SZhi Yong Wu Coroutine *co; 3425b7e1542SZhi Yong Wu CreateCo cco = { 3435b7e1542SZhi Yong Wu .drv = drv, 3445b7e1542SZhi Yong Wu .filename = g_strdup(filename), 34583d0521aSChunyan Liu .opts = opts, 3465b7e1542SZhi Yong Wu .ret = NOT_DONE, 347cc84d90fSMax Reitz .err = NULL, 3485b7e1542SZhi Yong Wu }; 3495b7e1542SZhi Yong Wu 350c282e1fdSChunyan Liu if (!drv->bdrv_create) { 351cc84d90fSMax Reitz error_setg(errp, "Driver '%s' does not support image creation", drv->format_name); 35280168bffSLuiz Capitulino ret = -ENOTSUP; 35380168bffSLuiz Capitulino goto out; 3545b7e1542SZhi Yong Wu } 3555b7e1542SZhi Yong Wu 3565b7e1542SZhi Yong Wu if (qemu_in_coroutine()) { 3575b7e1542SZhi Yong Wu /* Fast-path if already in coroutine context */ 3585b7e1542SZhi Yong Wu bdrv_create_co_entry(&cco); 3595b7e1542SZhi Yong Wu } else { 3600b8b8753SPaolo Bonzini co = qemu_coroutine_create(bdrv_create_co_entry, &cco); 3610b8b8753SPaolo Bonzini qemu_coroutine_enter(co); 3625b7e1542SZhi Yong Wu while (cco.ret == NOT_DONE) { 363b47ec2c4SPaolo Bonzini aio_poll(qemu_get_aio_context(), true); 3645b7e1542SZhi Yong Wu } 3655b7e1542SZhi Yong Wu } 3665b7e1542SZhi Yong Wu 3675b7e1542SZhi Yong Wu ret = cco.ret; 368cc84d90fSMax Reitz if (ret < 0) { 36984d18f06SMarkus Armbruster if (cco.err) { 370cc84d90fSMax Reitz error_propagate(errp, cco.err); 371cc84d90fSMax Reitz } else { 372cc84d90fSMax Reitz error_setg_errno(errp, -ret, "Could not create image"); 373cc84d90fSMax Reitz } 374cc84d90fSMax Reitz } 3755b7e1542SZhi Yong Wu 37680168bffSLuiz Capitulino out: 37780168bffSLuiz Capitulino g_free(cco.filename); 3785b7e1542SZhi Yong Wu return ret; 379ea2384d3Sbellard } 380ea2384d3Sbellard 381c282e1fdSChunyan Liu int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp) 38284a12e66SChristoph Hellwig { 38384a12e66SChristoph Hellwig BlockDriver *drv; 384cc84d90fSMax Reitz Error *local_err = NULL; 385cc84d90fSMax Reitz int ret; 38684a12e66SChristoph Hellwig 387b65a5e12SMax Reitz drv = bdrv_find_protocol(filename, true, errp); 38884a12e66SChristoph Hellwig if (drv == NULL) { 38916905d71SStefan Hajnoczi return -ENOENT; 39084a12e66SChristoph Hellwig } 39184a12e66SChristoph Hellwig 392c282e1fdSChunyan Liu ret = bdrv_create(drv, filename, opts, &local_err); 393cc84d90fSMax Reitz error_propagate(errp, local_err); 394cc84d90fSMax Reitz return ret; 39584a12e66SChristoph Hellwig } 39684a12e66SChristoph Hellwig 397892b7de8SEkaterina Tumanova /** 398892b7de8SEkaterina Tumanova * Try to get @bs's logical and physical block size. 399892b7de8SEkaterina Tumanova * On success, store them in @bsz struct and return 0. 400892b7de8SEkaterina Tumanova * On failure return -errno. 401892b7de8SEkaterina Tumanova * @bs must not be empty. 402892b7de8SEkaterina Tumanova */ 403892b7de8SEkaterina Tumanova int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz) 404892b7de8SEkaterina Tumanova { 405892b7de8SEkaterina Tumanova BlockDriver *drv = bs->drv; 406892b7de8SEkaterina Tumanova 407892b7de8SEkaterina Tumanova if (drv && drv->bdrv_probe_blocksizes) { 408892b7de8SEkaterina Tumanova return drv->bdrv_probe_blocksizes(bs, bsz); 409892b7de8SEkaterina Tumanova } 410892b7de8SEkaterina Tumanova 411892b7de8SEkaterina Tumanova return -ENOTSUP; 412892b7de8SEkaterina Tumanova } 413892b7de8SEkaterina Tumanova 414892b7de8SEkaterina Tumanova /** 415892b7de8SEkaterina Tumanova * Try to get @bs's geometry (cyls, heads, sectors). 416892b7de8SEkaterina Tumanova * On success, store them in @geo struct and return 0. 417892b7de8SEkaterina Tumanova * On failure return -errno. 418892b7de8SEkaterina Tumanova * @bs must not be empty. 419892b7de8SEkaterina Tumanova */ 420892b7de8SEkaterina Tumanova int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo) 421892b7de8SEkaterina Tumanova { 422892b7de8SEkaterina Tumanova BlockDriver *drv = bs->drv; 423892b7de8SEkaterina Tumanova 424892b7de8SEkaterina Tumanova if (drv && drv->bdrv_probe_geometry) { 425892b7de8SEkaterina Tumanova return drv->bdrv_probe_geometry(bs, geo); 426892b7de8SEkaterina Tumanova } 427892b7de8SEkaterina Tumanova 428892b7de8SEkaterina Tumanova return -ENOTSUP; 429892b7de8SEkaterina Tumanova } 430892b7de8SEkaterina Tumanova 431eba25057SJim Meyering /* 432eba25057SJim Meyering * Create a uniquely-named empty temporary file. 433eba25057SJim Meyering * Return 0 upon success, otherwise a negative errno value. 434eba25057SJim Meyering */ 435eba25057SJim Meyering int get_tmp_filename(char *filename, int size) 436eba25057SJim Meyering { 437d5249393Sbellard #ifdef _WIN32 4383b9f94e1Sbellard char temp_dir[MAX_PATH]; 439eba25057SJim Meyering /* GetTempFileName requires that its output buffer (4th param) 440eba25057SJim Meyering have length MAX_PATH or greater. */ 441eba25057SJim Meyering assert(size >= MAX_PATH); 442eba25057SJim Meyering return (GetTempPath(MAX_PATH, temp_dir) 443eba25057SJim Meyering && GetTempFileName(temp_dir, "qem", 0, filename) 444eba25057SJim Meyering ? 0 : -GetLastError()); 445d5249393Sbellard #else 446ea2384d3Sbellard int fd; 4477ccfb2ebSblueswir1 const char *tmpdir; 4480badc1eeSaurel32 tmpdir = getenv("TMPDIR"); 44969bef793SAmit Shah if (!tmpdir) { 45069bef793SAmit Shah tmpdir = "/var/tmp"; 45169bef793SAmit Shah } 452eba25057SJim Meyering if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) { 453eba25057SJim Meyering return -EOVERFLOW; 454ea2384d3Sbellard } 455eba25057SJim Meyering fd = mkstemp(filename); 456fe235a06SDunrong Huang if (fd < 0) { 457fe235a06SDunrong Huang return -errno; 458fe235a06SDunrong Huang } 459fe235a06SDunrong Huang if (close(fd) != 0) { 460fe235a06SDunrong Huang unlink(filename); 461eba25057SJim Meyering return -errno; 462eba25057SJim Meyering } 463eba25057SJim Meyering return 0; 464d5249393Sbellard #endif 465eba25057SJim Meyering } 466ea2384d3Sbellard 467f3a5d3f8SChristoph Hellwig /* 468f3a5d3f8SChristoph Hellwig * Detect host devices. By convention, /dev/cdrom[N] is always 469f3a5d3f8SChristoph Hellwig * recognized as a host CDROM. 470f3a5d3f8SChristoph Hellwig */ 471f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename) 472f3a5d3f8SChristoph Hellwig { 473508c7cb3SChristoph Hellwig int score_max = 0, score; 474508c7cb3SChristoph Hellwig BlockDriver *drv = NULL, *d; 475f3a5d3f8SChristoph Hellwig 4768a22f02aSStefan Hajnoczi QLIST_FOREACH(d, &bdrv_drivers, list) { 477508c7cb3SChristoph Hellwig if (d->bdrv_probe_device) { 478508c7cb3SChristoph Hellwig score = d->bdrv_probe_device(filename); 479508c7cb3SChristoph Hellwig if (score > score_max) { 480508c7cb3SChristoph Hellwig score_max = score; 481508c7cb3SChristoph Hellwig drv = d; 482f3a5d3f8SChristoph Hellwig } 483508c7cb3SChristoph Hellwig } 484f3a5d3f8SChristoph Hellwig } 485f3a5d3f8SChristoph Hellwig 486508c7cb3SChristoph Hellwig return drv; 487f3a5d3f8SChristoph Hellwig } 488f3a5d3f8SChristoph Hellwig 48988d88798SMarc Mari static BlockDriver *bdrv_do_find_protocol(const char *protocol) 49088d88798SMarc Mari { 49188d88798SMarc Mari BlockDriver *drv1; 49288d88798SMarc Mari 49388d88798SMarc Mari QLIST_FOREACH(drv1, &bdrv_drivers, list) { 49488d88798SMarc Mari if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) { 49588d88798SMarc Mari return drv1; 49688d88798SMarc Mari } 49788d88798SMarc Mari } 49888d88798SMarc Mari 49988d88798SMarc Mari return NULL; 50088d88798SMarc Mari } 50188d88798SMarc Mari 50298289620SKevin Wolf BlockDriver *bdrv_find_protocol(const char *filename, 503b65a5e12SMax Reitz bool allow_protocol_prefix, 504b65a5e12SMax Reitz Error **errp) 50584a12e66SChristoph Hellwig { 50684a12e66SChristoph Hellwig BlockDriver *drv1; 50784a12e66SChristoph Hellwig char protocol[128]; 50884a12e66SChristoph Hellwig int len; 50984a12e66SChristoph Hellwig const char *p; 51088d88798SMarc Mari int i; 51184a12e66SChristoph Hellwig 51266f82ceeSKevin Wolf /* TODO Drivers without bdrv_file_open must be specified explicitly */ 51366f82ceeSKevin Wolf 51439508e7aSChristoph Hellwig /* 51539508e7aSChristoph Hellwig * XXX(hch): we really should not let host device detection 51639508e7aSChristoph Hellwig * override an explicit protocol specification, but moving this 51739508e7aSChristoph Hellwig * later breaks access to device names with colons in them. 51839508e7aSChristoph Hellwig * Thanks to the brain-dead persistent naming schemes on udev- 51939508e7aSChristoph Hellwig * based Linux systems those actually are quite common. 52039508e7aSChristoph Hellwig */ 52184a12e66SChristoph Hellwig drv1 = find_hdev_driver(filename); 52239508e7aSChristoph Hellwig if (drv1) { 52384a12e66SChristoph Hellwig return drv1; 52484a12e66SChristoph Hellwig } 52539508e7aSChristoph Hellwig 52698289620SKevin Wolf if (!path_has_protocol(filename) || !allow_protocol_prefix) { 527ef810437SMax Reitz return &bdrv_file; 52839508e7aSChristoph Hellwig } 52998289620SKevin Wolf 5309e0b22f4SStefan Hajnoczi p = strchr(filename, ':'); 5319e0b22f4SStefan Hajnoczi assert(p != NULL); 53284a12e66SChristoph Hellwig len = p - filename; 53384a12e66SChristoph Hellwig if (len > sizeof(protocol) - 1) 53484a12e66SChristoph Hellwig len = sizeof(protocol) - 1; 53584a12e66SChristoph Hellwig memcpy(protocol, filename, len); 53684a12e66SChristoph Hellwig protocol[len] = '\0'; 53788d88798SMarc Mari 53888d88798SMarc Mari drv1 = bdrv_do_find_protocol(protocol); 53988d88798SMarc Mari if (drv1) { 54084a12e66SChristoph Hellwig return drv1; 54184a12e66SChristoph Hellwig } 54288d88798SMarc Mari 54388d88798SMarc Mari for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) { 54488d88798SMarc Mari if (block_driver_modules[i].protocol_name && 54588d88798SMarc Mari !strcmp(block_driver_modules[i].protocol_name, protocol)) { 54688d88798SMarc Mari block_module_load_one(block_driver_modules[i].library_name); 54788d88798SMarc Mari break; 54888d88798SMarc Mari } 54984a12e66SChristoph Hellwig } 550b65a5e12SMax Reitz 55188d88798SMarc Mari drv1 = bdrv_do_find_protocol(protocol); 55288d88798SMarc Mari if (!drv1) { 553b65a5e12SMax Reitz error_setg(errp, "Unknown protocol '%s'", protocol); 55488d88798SMarc Mari } 55588d88798SMarc Mari return drv1; 55684a12e66SChristoph Hellwig } 55784a12e66SChristoph Hellwig 558c6684249SMarkus Armbruster /* 559c6684249SMarkus Armbruster * Guess image format by probing its contents. 560c6684249SMarkus Armbruster * This is not a good idea when your image is raw (CVE-2008-2004), but 561c6684249SMarkus Armbruster * we do it anyway for backward compatibility. 562c6684249SMarkus Armbruster * 563c6684249SMarkus Armbruster * @buf contains the image's first @buf_size bytes. 5647cddd372SKevin Wolf * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE, 5657cddd372SKevin Wolf * but can be smaller if the image file is smaller) 566c6684249SMarkus Armbruster * @filename is its filename. 567c6684249SMarkus Armbruster * 568c6684249SMarkus Armbruster * For all block drivers, call the bdrv_probe() method to get its 569c6684249SMarkus Armbruster * probing score. 570c6684249SMarkus Armbruster * Return the first block driver with the highest probing score. 571c6684249SMarkus Armbruster */ 57238f3ef57SKevin Wolf BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size, 573c6684249SMarkus Armbruster const char *filename) 574c6684249SMarkus Armbruster { 575c6684249SMarkus Armbruster int score_max = 0, score; 576c6684249SMarkus Armbruster BlockDriver *drv = NULL, *d; 577c6684249SMarkus Armbruster 578c6684249SMarkus Armbruster QLIST_FOREACH(d, &bdrv_drivers, list) { 579c6684249SMarkus Armbruster if (d->bdrv_probe) { 580c6684249SMarkus Armbruster score = d->bdrv_probe(buf, buf_size, filename); 581c6684249SMarkus Armbruster if (score > score_max) { 582c6684249SMarkus Armbruster score_max = score; 583c6684249SMarkus Armbruster drv = d; 584c6684249SMarkus Armbruster } 585c6684249SMarkus Armbruster } 586c6684249SMarkus Armbruster } 587c6684249SMarkus Armbruster 588c6684249SMarkus Armbruster return drv; 589c6684249SMarkus Armbruster } 590c6684249SMarkus Armbruster 591*5696c6e3SKevin Wolf static int find_image_format(BlockBackend *file, const char *filename, 59234b5d2c6SMax Reitz BlockDriver **pdrv, Error **errp) 593ea2384d3Sbellard { 594c6684249SMarkus Armbruster BlockDriver *drv; 5957cddd372SKevin Wolf uint8_t buf[BLOCK_PROBE_BUF_SIZE]; 596f500a6d3SKevin Wolf int ret = 0; 597f8ea0b00SNicholas Bellinger 59808a00559SKevin Wolf /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ 599*5696c6e3SKevin Wolf if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) { 600ef810437SMax Reitz *pdrv = &bdrv_raw; 601c98ac35dSStefan Weil return ret; 6021a396859SNicholas A. Bellinger } 603f8ea0b00SNicholas Bellinger 604*5696c6e3SKevin Wolf ret = blk_pread(file, 0, buf, sizeof(buf)); 605ea2384d3Sbellard if (ret < 0) { 60634b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not read image for determining its " 60734b5d2c6SMax Reitz "format"); 608c98ac35dSStefan Weil *pdrv = NULL; 609c98ac35dSStefan Weil return ret; 610ea2384d3Sbellard } 611ea2384d3Sbellard 612c6684249SMarkus Armbruster drv = bdrv_probe_all(buf, ret, filename); 613c98ac35dSStefan Weil if (!drv) { 61434b5d2c6SMax Reitz error_setg(errp, "Could not determine image format: No compatible " 61534b5d2c6SMax Reitz "driver found"); 616c98ac35dSStefan Weil ret = -ENOENT; 617c98ac35dSStefan Weil } 618c98ac35dSStefan Weil *pdrv = drv; 619c98ac35dSStefan Weil return ret; 620ea2384d3Sbellard } 621ea2384d3Sbellard 62251762288SStefan Hajnoczi /** 62351762288SStefan Hajnoczi * Set the current 'total_sectors' value 62465a9bb25SMarkus Armbruster * Return 0 on success, -errno on error. 62551762288SStefan Hajnoczi */ 62651762288SStefan Hajnoczi static int refresh_total_sectors(BlockDriverState *bs, int64_t hint) 62751762288SStefan Hajnoczi { 62851762288SStefan Hajnoczi BlockDriver *drv = bs->drv; 62951762288SStefan Hajnoczi 630396759adSNicholas Bellinger /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */ 631b192af8aSDimitris Aragiorgis if (bdrv_is_sg(bs)) 632396759adSNicholas Bellinger return 0; 633396759adSNicholas Bellinger 63451762288SStefan Hajnoczi /* query actual device if possible, otherwise just trust the hint */ 63551762288SStefan Hajnoczi if (drv->bdrv_getlength) { 63651762288SStefan Hajnoczi int64_t length = drv->bdrv_getlength(bs); 63751762288SStefan Hajnoczi if (length < 0) { 63851762288SStefan Hajnoczi return length; 63951762288SStefan Hajnoczi } 6407e382003SFam Zheng hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE); 64151762288SStefan Hajnoczi } 64251762288SStefan Hajnoczi 64351762288SStefan Hajnoczi bs->total_sectors = hint; 64451762288SStefan Hajnoczi return 0; 64551762288SStefan Hajnoczi } 64651762288SStefan Hajnoczi 647c3993cdcSStefan Hajnoczi /** 648cddff5baSKevin Wolf * Combines a QDict of new block driver @options with any missing options taken 649cddff5baSKevin Wolf * from @old_options, so that leaving out an option defaults to its old value. 650cddff5baSKevin Wolf */ 651cddff5baSKevin Wolf static void bdrv_join_options(BlockDriverState *bs, QDict *options, 652cddff5baSKevin Wolf QDict *old_options) 653cddff5baSKevin Wolf { 654cddff5baSKevin Wolf if (bs->drv && bs->drv->bdrv_join_options) { 655cddff5baSKevin Wolf bs->drv->bdrv_join_options(options, old_options); 656cddff5baSKevin Wolf } else { 657cddff5baSKevin Wolf qdict_join(options, old_options, false); 658cddff5baSKevin Wolf } 659cddff5baSKevin Wolf } 660cddff5baSKevin Wolf 661cddff5baSKevin Wolf /** 6629e8f1835SPaolo Bonzini * Set open flags for a given discard mode 6639e8f1835SPaolo Bonzini * 6649e8f1835SPaolo Bonzini * Return 0 on success, -1 if the discard mode was invalid. 6659e8f1835SPaolo Bonzini */ 6669e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags) 6679e8f1835SPaolo Bonzini { 6689e8f1835SPaolo Bonzini *flags &= ~BDRV_O_UNMAP; 6699e8f1835SPaolo Bonzini 6709e8f1835SPaolo Bonzini if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) { 6719e8f1835SPaolo Bonzini /* do nothing */ 6729e8f1835SPaolo Bonzini } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) { 6739e8f1835SPaolo Bonzini *flags |= BDRV_O_UNMAP; 6749e8f1835SPaolo Bonzini } else { 6759e8f1835SPaolo Bonzini return -1; 6769e8f1835SPaolo Bonzini } 6779e8f1835SPaolo Bonzini 6789e8f1835SPaolo Bonzini return 0; 6799e8f1835SPaolo Bonzini } 6809e8f1835SPaolo Bonzini 6819e8f1835SPaolo Bonzini /** 682c3993cdcSStefan Hajnoczi * Set open flags for a given cache mode 683c3993cdcSStefan Hajnoczi * 684c3993cdcSStefan Hajnoczi * Return 0 on success, -1 if the cache mode was invalid. 685c3993cdcSStefan Hajnoczi */ 68653e8ae01SKevin Wolf int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough) 687c3993cdcSStefan Hajnoczi { 688c3993cdcSStefan Hajnoczi *flags &= ~BDRV_O_CACHE_MASK; 689c3993cdcSStefan Hajnoczi 690c3993cdcSStefan Hajnoczi if (!strcmp(mode, "off") || !strcmp(mode, "none")) { 69153e8ae01SKevin Wolf *writethrough = false; 69253e8ae01SKevin Wolf *flags |= BDRV_O_NOCACHE; 69392196b2fSStefan Hajnoczi } else if (!strcmp(mode, "directsync")) { 69453e8ae01SKevin Wolf *writethrough = true; 69592196b2fSStefan Hajnoczi *flags |= BDRV_O_NOCACHE; 696c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writeback")) { 69753e8ae01SKevin Wolf *writethrough = false; 698c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "unsafe")) { 69953e8ae01SKevin Wolf *writethrough = false; 700c3993cdcSStefan Hajnoczi *flags |= BDRV_O_NO_FLUSH; 701c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writethrough")) { 70253e8ae01SKevin Wolf *writethrough = true; 703c3993cdcSStefan Hajnoczi } else { 704c3993cdcSStefan Hajnoczi return -1; 705c3993cdcSStefan Hajnoczi } 706c3993cdcSStefan Hajnoczi 707c3993cdcSStefan Hajnoczi return 0; 708c3993cdcSStefan Hajnoczi } 709c3993cdcSStefan Hajnoczi 71020018e12SKevin Wolf static void bdrv_child_cb_drained_begin(BdrvChild *child) 71120018e12SKevin Wolf { 71220018e12SKevin Wolf BlockDriverState *bs = child->opaque; 71320018e12SKevin Wolf bdrv_drained_begin(bs); 71420018e12SKevin Wolf } 71520018e12SKevin Wolf 71620018e12SKevin Wolf static void bdrv_child_cb_drained_end(BdrvChild *child) 71720018e12SKevin Wolf { 71820018e12SKevin Wolf BlockDriverState *bs = child->opaque; 71920018e12SKevin Wolf bdrv_drained_end(bs); 72020018e12SKevin Wolf } 72120018e12SKevin Wolf 7220b50cc88SKevin Wolf /* 72373176beeSKevin Wolf * Returns the options and flags that a temporary snapshot should get, based on 72473176beeSKevin Wolf * the originally requested flags (the originally requested image will have 72573176beeSKevin Wolf * flags like a backing file) 726b1e6fc08SKevin Wolf */ 72773176beeSKevin Wolf static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options, 72873176beeSKevin Wolf int parent_flags, QDict *parent_options) 729b1e6fc08SKevin Wolf { 73073176beeSKevin Wolf *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY; 73173176beeSKevin Wolf 73273176beeSKevin Wolf /* For temporary files, unconditional cache=unsafe is fine */ 73373176beeSKevin Wolf qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off"); 73473176beeSKevin Wolf qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on"); 73541869044SKevin Wolf 736f87a0e29SAlberto Garcia /* Copy the read-only option from the parent */ 737f87a0e29SAlberto Garcia qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); 738f87a0e29SAlberto Garcia 73941869044SKevin Wolf /* aio=native doesn't work for cache.direct=off, so disable it for the 74041869044SKevin Wolf * temporary snapshot */ 74141869044SKevin Wolf *child_flags &= ~BDRV_O_NATIVE_AIO; 742b1e6fc08SKevin Wolf } 743b1e6fc08SKevin Wolf 744b1e6fc08SKevin Wolf /* 7458e2160e2SKevin Wolf * Returns the options and flags that bs->file should get if a protocol driver 7468e2160e2SKevin Wolf * is expected, based on the given options and flags for the parent BDS 7470b50cc88SKevin Wolf */ 7488e2160e2SKevin Wolf static void bdrv_inherited_options(int *child_flags, QDict *child_options, 7498e2160e2SKevin Wolf int parent_flags, QDict *parent_options) 7500b50cc88SKevin Wolf { 7518e2160e2SKevin Wolf int flags = parent_flags; 7528e2160e2SKevin Wolf 7530b50cc88SKevin Wolf /* Enable protocol handling, disable format probing for bs->file */ 7540b50cc88SKevin Wolf flags |= BDRV_O_PROTOCOL; 7550b50cc88SKevin Wolf 75691a097e7SKevin Wolf /* If the cache mode isn't explicitly set, inherit direct and no-flush from 75791a097e7SKevin Wolf * the parent. */ 75891a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); 75991a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); 76091a097e7SKevin Wolf 761f87a0e29SAlberto Garcia /* Inherit the read-only option from the parent if it's not set */ 762f87a0e29SAlberto Garcia qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); 763f87a0e29SAlberto Garcia 7640b50cc88SKevin Wolf /* Our block drivers take care to send flushes and respect unmap policy, 76591a097e7SKevin Wolf * so we can default to enable both on lower layers regardless of the 76691a097e7SKevin Wolf * corresponding parent options. */ 767818584a4SKevin Wolf qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap"); 7680b50cc88SKevin Wolf 7690b50cc88SKevin Wolf /* Clear flags that only apply to the top layer */ 770abb06c5aSDaniel P. Berrange flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ | 771abb06c5aSDaniel P. Berrange BDRV_O_NO_IO); 7720b50cc88SKevin Wolf 7738e2160e2SKevin Wolf *child_flags = flags; 7740b50cc88SKevin Wolf } 7750b50cc88SKevin Wolf 776f3930ed0SKevin Wolf const BdrvChildRole child_file = { 7778e2160e2SKevin Wolf .inherit_options = bdrv_inherited_options, 77820018e12SKevin Wolf .drained_begin = bdrv_child_cb_drained_begin, 77920018e12SKevin Wolf .drained_end = bdrv_child_cb_drained_end, 780f3930ed0SKevin Wolf }; 781f3930ed0SKevin Wolf 782f3930ed0SKevin Wolf /* 7838e2160e2SKevin Wolf * Returns the options and flags that bs->file should get if the use of formats 7848e2160e2SKevin Wolf * (and not only protocols) is permitted for it, based on the given options and 7858e2160e2SKevin Wolf * flags for the parent BDS 786f3930ed0SKevin Wolf */ 7878e2160e2SKevin Wolf static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options, 7888e2160e2SKevin Wolf int parent_flags, QDict *parent_options) 789f3930ed0SKevin Wolf { 7908e2160e2SKevin Wolf child_file.inherit_options(child_flags, child_options, 7918e2160e2SKevin Wolf parent_flags, parent_options); 7928e2160e2SKevin Wolf 793abb06c5aSDaniel P. Berrange *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO); 794f3930ed0SKevin Wolf } 795f3930ed0SKevin Wolf 796f3930ed0SKevin Wolf const BdrvChildRole child_format = { 7978e2160e2SKevin Wolf .inherit_options = bdrv_inherited_fmt_options, 79820018e12SKevin Wolf .drained_begin = bdrv_child_cb_drained_begin, 79920018e12SKevin Wolf .drained_end = bdrv_child_cb_drained_end, 800f3930ed0SKevin Wolf }; 801f3930ed0SKevin Wolf 802317fc44eSKevin Wolf /* 8038e2160e2SKevin Wolf * Returns the options and flags that bs->backing should get, based on the 8048e2160e2SKevin Wolf * given options and flags for the parent BDS 805317fc44eSKevin Wolf */ 8068e2160e2SKevin Wolf static void bdrv_backing_options(int *child_flags, QDict *child_options, 8078e2160e2SKevin Wolf int parent_flags, QDict *parent_options) 808317fc44eSKevin Wolf { 8098e2160e2SKevin Wolf int flags = parent_flags; 8108e2160e2SKevin Wolf 811b8816a43SKevin Wolf /* The cache mode is inherited unmodified for backing files; except WCE, 812b8816a43SKevin Wolf * which is only applied on the top level (BlockBackend) */ 81391a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); 81491a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); 81591a097e7SKevin Wolf 816317fc44eSKevin Wolf /* backing files always opened read-only */ 817f87a0e29SAlberto Garcia qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on"); 818f87a0e29SAlberto Garcia flags &= ~BDRV_O_COPY_ON_READ; 819317fc44eSKevin Wolf 820317fc44eSKevin Wolf /* snapshot=on is handled on the top layer */ 8218bfea15dSKevin Wolf flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY); 822317fc44eSKevin Wolf 8238e2160e2SKevin Wolf *child_flags = flags; 824317fc44eSKevin Wolf } 825317fc44eSKevin Wolf 826f3930ed0SKevin Wolf static const BdrvChildRole child_backing = { 8278e2160e2SKevin Wolf .inherit_options = bdrv_backing_options, 82820018e12SKevin Wolf .drained_begin = bdrv_child_cb_drained_begin, 82920018e12SKevin Wolf .drained_end = bdrv_child_cb_drained_end, 830f3930ed0SKevin Wolf }; 831f3930ed0SKevin Wolf 8327b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags) 8337b272452SKevin Wolf { 83461de4c68SKevin Wolf int open_flags = flags; 8357b272452SKevin Wolf 8367b272452SKevin Wolf /* 8377b272452SKevin Wolf * Clear flags that are internal to the block layer before opening the 8387b272452SKevin Wolf * image. 8397b272452SKevin Wolf */ 84020cca275SKevin Wolf open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL); 8417b272452SKevin Wolf 8427b272452SKevin Wolf /* 8437b272452SKevin Wolf * Snapshots should be writable. 8447b272452SKevin Wolf */ 8458bfea15dSKevin Wolf if (flags & BDRV_O_TEMPORARY) { 8467b272452SKevin Wolf open_flags |= BDRV_O_RDWR; 8477b272452SKevin Wolf } 8487b272452SKevin Wolf 8497b272452SKevin Wolf return open_flags; 8507b272452SKevin Wolf } 8517b272452SKevin Wolf 85291a097e7SKevin Wolf static void update_flags_from_options(int *flags, QemuOpts *opts) 85391a097e7SKevin Wolf { 85491a097e7SKevin Wolf *flags &= ~BDRV_O_CACHE_MASK; 85591a097e7SKevin Wolf 85691a097e7SKevin Wolf assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH)); 85791a097e7SKevin Wolf if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) { 85891a097e7SKevin Wolf *flags |= BDRV_O_NO_FLUSH; 85991a097e7SKevin Wolf } 86091a097e7SKevin Wolf 86191a097e7SKevin Wolf assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT)); 86291a097e7SKevin Wolf if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) { 86391a097e7SKevin Wolf *flags |= BDRV_O_NOCACHE; 86491a097e7SKevin Wolf } 865f87a0e29SAlberto Garcia 866f87a0e29SAlberto Garcia *flags &= ~BDRV_O_RDWR; 867f87a0e29SAlberto Garcia 868f87a0e29SAlberto Garcia assert(qemu_opt_find(opts, BDRV_OPT_READ_ONLY)); 869f87a0e29SAlberto Garcia if (!qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false)) { 870f87a0e29SAlberto Garcia *flags |= BDRV_O_RDWR; 871f87a0e29SAlberto Garcia } 872f87a0e29SAlberto Garcia 87391a097e7SKevin Wolf } 87491a097e7SKevin Wolf 87591a097e7SKevin Wolf static void update_options_from_flags(QDict *options, int flags) 87691a097e7SKevin Wolf { 87791a097e7SKevin Wolf if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) { 87891a097e7SKevin Wolf qdict_put(options, BDRV_OPT_CACHE_DIRECT, 87991a097e7SKevin Wolf qbool_from_bool(flags & BDRV_O_NOCACHE)); 88091a097e7SKevin Wolf } 88191a097e7SKevin Wolf if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) { 88291a097e7SKevin Wolf qdict_put(options, BDRV_OPT_CACHE_NO_FLUSH, 88391a097e7SKevin Wolf qbool_from_bool(flags & BDRV_O_NO_FLUSH)); 88491a097e7SKevin Wolf } 885f87a0e29SAlberto Garcia if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) { 886f87a0e29SAlberto Garcia qdict_put(options, BDRV_OPT_READ_ONLY, 887f87a0e29SAlberto Garcia qbool_from_bool(!(flags & BDRV_O_RDWR))); 888f87a0e29SAlberto Garcia } 88991a097e7SKevin Wolf } 89091a097e7SKevin Wolf 891636ea370SKevin Wolf static void bdrv_assign_node_name(BlockDriverState *bs, 8926913c0c2SBenoît Canet const char *node_name, 8936913c0c2SBenoît Canet Error **errp) 8946913c0c2SBenoît Canet { 89515489c76SJeff Cody char *gen_node_name = NULL; 8966913c0c2SBenoît Canet 89715489c76SJeff Cody if (!node_name) { 89815489c76SJeff Cody node_name = gen_node_name = id_generate(ID_BLOCK); 89915489c76SJeff Cody } else if (!id_wellformed(node_name)) { 90015489c76SJeff Cody /* 90115489c76SJeff Cody * Check for empty string or invalid characters, but not if it is 90215489c76SJeff Cody * generated (generated names use characters not available to the user) 90315489c76SJeff Cody */ 9049aebf3b8SKevin Wolf error_setg(errp, "Invalid node name"); 905636ea370SKevin Wolf return; 9066913c0c2SBenoît Canet } 9076913c0c2SBenoît Canet 9080c5e94eeSBenoît Canet /* takes care of avoiding namespaces collisions */ 9097f06d47eSMarkus Armbruster if (blk_by_name(node_name)) { 9100c5e94eeSBenoît Canet error_setg(errp, "node-name=%s is conflicting with a device id", 9110c5e94eeSBenoît Canet node_name); 91215489c76SJeff Cody goto out; 9130c5e94eeSBenoît Canet } 9140c5e94eeSBenoît Canet 9156913c0c2SBenoît Canet /* takes care of avoiding duplicates node names */ 9166913c0c2SBenoît Canet if (bdrv_find_node(node_name)) { 9176913c0c2SBenoît Canet error_setg(errp, "Duplicate node name"); 91815489c76SJeff Cody goto out; 9196913c0c2SBenoît Canet } 9206913c0c2SBenoît Canet 9216913c0c2SBenoît Canet /* copy node name into the bs and insert it into the graph list */ 9226913c0c2SBenoît Canet pstrcpy(bs->node_name, sizeof(bs->node_name), node_name); 9236913c0c2SBenoît Canet QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list); 92415489c76SJeff Cody out: 92515489c76SJeff Cody g_free(gen_node_name); 9266913c0c2SBenoît Canet } 9276913c0c2SBenoît Canet 928c5f3014bSKevin Wolf QemuOptsList bdrv_runtime_opts = { 92918edf289SKevin Wolf .name = "bdrv_common", 93018edf289SKevin Wolf .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head), 93118edf289SKevin Wolf .desc = { 93218edf289SKevin Wolf { 93318edf289SKevin Wolf .name = "node-name", 93418edf289SKevin Wolf .type = QEMU_OPT_STRING, 93518edf289SKevin Wolf .help = "Node name of the block device node", 93618edf289SKevin Wolf }, 93762392ebbSKevin Wolf { 93862392ebbSKevin Wolf .name = "driver", 93962392ebbSKevin Wolf .type = QEMU_OPT_STRING, 94062392ebbSKevin Wolf .help = "Block driver to use for the node", 94162392ebbSKevin Wolf }, 94291a097e7SKevin Wolf { 94391a097e7SKevin Wolf .name = BDRV_OPT_CACHE_DIRECT, 94491a097e7SKevin Wolf .type = QEMU_OPT_BOOL, 94591a097e7SKevin Wolf .help = "Bypass software writeback cache on the host", 94691a097e7SKevin Wolf }, 94791a097e7SKevin Wolf { 94891a097e7SKevin Wolf .name = BDRV_OPT_CACHE_NO_FLUSH, 94991a097e7SKevin Wolf .type = QEMU_OPT_BOOL, 95091a097e7SKevin Wolf .help = "Ignore flush requests", 95191a097e7SKevin Wolf }, 952f87a0e29SAlberto Garcia { 953f87a0e29SAlberto Garcia .name = BDRV_OPT_READ_ONLY, 954f87a0e29SAlberto Garcia .type = QEMU_OPT_BOOL, 955f87a0e29SAlberto Garcia .help = "Node is opened in read-only mode", 956f87a0e29SAlberto Garcia }, 957692e01a2SKevin Wolf { 958692e01a2SKevin Wolf .name = "detect-zeroes", 959692e01a2SKevin Wolf .type = QEMU_OPT_STRING, 960692e01a2SKevin Wolf .help = "try to optimize zero writes (off, on, unmap)", 961692e01a2SKevin Wolf }, 962818584a4SKevin Wolf { 963818584a4SKevin Wolf .name = "discard", 964818584a4SKevin Wolf .type = QEMU_OPT_STRING, 965818584a4SKevin Wolf .help = "discard operation (ignore/off, unmap/on)", 966818584a4SKevin Wolf }, 96718edf289SKevin Wolf { /* end of list */ } 96818edf289SKevin Wolf }, 96918edf289SKevin Wolf }; 97018edf289SKevin Wolf 971b6ce07aaSKevin Wolf /* 97257915332SKevin Wolf * Common part for opening disk images and files 973b6ad491aSKevin Wolf * 974b6ad491aSKevin Wolf * Removes all processed options from *options. 97557915332SKevin Wolf */ 976*5696c6e3SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file, 97782dc8b41SKevin Wolf QDict *options, Error **errp) 97857915332SKevin Wolf { 97957915332SKevin Wolf int ret, open_flags; 980035fccdfSKevin Wolf const char *filename; 98162392ebbSKevin Wolf const char *driver_name = NULL; 9826913c0c2SBenoît Canet const char *node_name = NULL; 983818584a4SKevin Wolf const char *discard; 984692e01a2SKevin Wolf const char *detect_zeroes; 98518edf289SKevin Wolf QemuOpts *opts; 98662392ebbSKevin Wolf BlockDriver *drv; 98734b5d2c6SMax Reitz Error *local_err = NULL; 98857915332SKevin Wolf 9896405875cSPaolo Bonzini assert(bs->file == NULL); 990707ff828SKevin Wolf assert(options != NULL && bs->options != options); 99157915332SKevin Wolf 99262392ebbSKevin Wolf opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 99362392ebbSKevin Wolf qemu_opts_absorb_qdict(opts, options, &local_err); 99462392ebbSKevin Wolf if (local_err) { 99562392ebbSKevin Wolf error_propagate(errp, local_err); 99662392ebbSKevin Wolf ret = -EINVAL; 99762392ebbSKevin Wolf goto fail_opts; 99862392ebbSKevin Wolf } 99962392ebbSKevin Wolf 10009b7e8691SAlberto Garcia update_flags_from_options(&bs->open_flags, opts); 10019b7e8691SAlberto Garcia 100262392ebbSKevin Wolf driver_name = qemu_opt_get(opts, "driver"); 100362392ebbSKevin Wolf drv = bdrv_find_format(driver_name); 100462392ebbSKevin Wolf assert(drv != NULL); 100562392ebbSKevin Wolf 100645673671SKevin Wolf if (file != NULL) { 1007*5696c6e3SKevin Wolf filename = blk_bs(file)->filename; 100845673671SKevin Wolf } else { 100945673671SKevin Wolf filename = qdict_get_try_str(options, "filename"); 101045673671SKevin Wolf } 101145673671SKevin Wolf 1012765003dbSKevin Wolf if (drv->bdrv_needs_filename && !filename) { 1013765003dbSKevin Wolf error_setg(errp, "The '%s' block driver requires a file name", 1014765003dbSKevin Wolf drv->format_name); 101518edf289SKevin Wolf ret = -EINVAL; 101618edf289SKevin Wolf goto fail_opts; 101718edf289SKevin Wolf } 101818edf289SKevin Wolf 101982dc8b41SKevin Wolf trace_bdrv_open_common(bs, filename ?: "", bs->open_flags, 102082dc8b41SKevin Wolf drv->format_name); 102162392ebbSKevin Wolf 102218edf289SKevin Wolf node_name = qemu_opt_get(opts, "node-name"); 1023636ea370SKevin Wolf bdrv_assign_node_name(bs, node_name, &local_err); 10240fb6395cSMarkus Armbruster if (local_err) { 1025636ea370SKevin Wolf error_propagate(errp, local_err); 102618edf289SKevin Wolf ret = -EINVAL; 102718edf289SKevin Wolf goto fail_opts; 10285d186eb0SKevin Wolf } 10295d186eb0SKevin Wolf 103082dc8b41SKevin Wolf bs->read_only = !(bs->open_flags & BDRV_O_RDWR); 1031b64ec4e4SFam Zheng 1032b64ec4e4SFam Zheng if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) { 10338f94a6e4SKevin Wolf error_setg(errp, 10348f94a6e4SKevin Wolf !bs->read_only && bdrv_is_whitelisted(drv, true) 10358f94a6e4SKevin Wolf ? "Driver '%s' can only be used for read-only devices" 10368f94a6e4SKevin Wolf : "Driver '%s' is not whitelisted", 10378f94a6e4SKevin Wolf drv->format_name); 103818edf289SKevin Wolf ret = -ENOTSUP; 103918edf289SKevin Wolf goto fail_opts; 1040b64ec4e4SFam Zheng } 104157915332SKevin Wolf 104253fec9d3SStefan Hajnoczi assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */ 104382dc8b41SKevin Wolf if (bs->open_flags & BDRV_O_COPY_ON_READ) { 10440ebd24e0SKevin Wolf if (!bs->read_only) { 104553fec9d3SStefan Hajnoczi bdrv_enable_copy_on_read(bs); 10460ebd24e0SKevin Wolf } else { 10470ebd24e0SKevin Wolf error_setg(errp, "Can't use copy-on-read on read-only device"); 104818edf289SKevin Wolf ret = -EINVAL; 104918edf289SKevin Wolf goto fail_opts; 10500ebd24e0SKevin Wolf } 105153fec9d3SStefan Hajnoczi } 105253fec9d3SStefan Hajnoczi 1053818584a4SKevin Wolf discard = qemu_opt_get(opts, "discard"); 1054818584a4SKevin Wolf if (discard != NULL) { 1055818584a4SKevin Wolf if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) { 1056818584a4SKevin Wolf error_setg(errp, "Invalid discard option"); 1057818584a4SKevin Wolf ret = -EINVAL; 1058818584a4SKevin Wolf goto fail_opts; 1059818584a4SKevin Wolf } 1060818584a4SKevin Wolf } 1061818584a4SKevin Wolf 1062692e01a2SKevin Wolf detect_zeroes = qemu_opt_get(opts, "detect-zeroes"); 1063692e01a2SKevin Wolf if (detect_zeroes) { 1064692e01a2SKevin Wolf BlockdevDetectZeroesOptions value = 1065692e01a2SKevin Wolf qapi_enum_parse(BlockdevDetectZeroesOptions_lookup, 1066692e01a2SKevin Wolf detect_zeroes, 1067692e01a2SKevin Wolf BLOCKDEV_DETECT_ZEROES_OPTIONS__MAX, 1068692e01a2SKevin Wolf BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, 1069692e01a2SKevin Wolf &local_err); 1070692e01a2SKevin Wolf if (local_err) { 1071692e01a2SKevin Wolf error_propagate(errp, local_err); 1072692e01a2SKevin Wolf ret = -EINVAL; 1073692e01a2SKevin Wolf goto fail_opts; 1074692e01a2SKevin Wolf } 1075692e01a2SKevin Wolf 1076692e01a2SKevin Wolf if (value == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP && 1077692e01a2SKevin Wolf !(bs->open_flags & BDRV_O_UNMAP)) 1078692e01a2SKevin Wolf { 1079692e01a2SKevin Wolf error_setg(errp, "setting detect-zeroes to unmap is not allowed " 1080692e01a2SKevin Wolf "without setting discard operation to unmap"); 1081692e01a2SKevin Wolf ret = -EINVAL; 1082692e01a2SKevin Wolf goto fail_opts; 1083692e01a2SKevin Wolf } 1084692e01a2SKevin Wolf 1085692e01a2SKevin Wolf bs->detect_zeroes = value; 1086692e01a2SKevin Wolf } 1087692e01a2SKevin Wolf 1088c2ad1b0cSKevin Wolf if (filename != NULL) { 108957915332SKevin Wolf pstrcpy(bs->filename, sizeof(bs->filename), filename); 1090c2ad1b0cSKevin Wolf } else { 1091c2ad1b0cSKevin Wolf bs->filename[0] = '\0'; 1092c2ad1b0cSKevin Wolf } 109391af7014SMax Reitz pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename); 109457915332SKevin Wolf 109557915332SKevin Wolf bs->drv = drv; 10967267c094SAnthony Liguori bs->opaque = g_malloc0(drv->instance_size); 109757915332SKevin Wolf 109866f82ceeSKevin Wolf /* Open the image, either directly or using a protocol */ 109982dc8b41SKevin Wolf open_flags = bdrv_open_flags(bs, bs->open_flags); 110066f82ceeSKevin Wolf if (drv->bdrv_file_open) { 11015d186eb0SKevin Wolf assert(file == NULL); 1102030be321SBenoît Canet assert(!drv->bdrv_needs_filename || filename != NULL); 110334b5d2c6SMax Reitz ret = drv->bdrv_file_open(bs, options, open_flags, &local_err); 1104f500a6d3SKevin Wolf } else { 110534b5d2c6SMax Reitz ret = drv->bdrv_open(bs, options, open_flags, &local_err); 110666f82ceeSKevin Wolf } 110766f82ceeSKevin Wolf 110857915332SKevin Wolf if (ret < 0) { 110984d18f06SMarkus Armbruster if (local_err) { 111034b5d2c6SMax Reitz error_propagate(errp, local_err); 11112fa9aa59SDunrong Huang } else if (bs->filename[0]) { 11122fa9aa59SDunrong Huang error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename); 111334b5d2c6SMax Reitz } else { 111434b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not open image"); 111534b5d2c6SMax Reitz } 111657915332SKevin Wolf goto free_and_fail; 111757915332SKevin Wolf } 111857915332SKevin Wolf 111951762288SStefan Hajnoczi ret = refresh_total_sectors(bs, bs->total_sectors); 112051762288SStefan Hajnoczi if (ret < 0) { 112134b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not refresh total sector count"); 112251762288SStefan Hajnoczi goto free_and_fail; 112357915332SKevin Wolf } 112451762288SStefan Hajnoczi 11253baca891SKevin Wolf bdrv_refresh_limits(bs, &local_err); 11263baca891SKevin Wolf if (local_err) { 11273baca891SKevin Wolf error_propagate(errp, local_err); 11283baca891SKevin Wolf ret = -EINVAL; 11293baca891SKevin Wolf goto free_and_fail; 11303baca891SKevin Wolf } 11313baca891SKevin Wolf 1132c25f53b0SPaolo Bonzini assert(bdrv_opt_mem_align(bs) != 0); 11334196d2f0SDenis V. Lunev assert(bdrv_min_mem_align(bs) != 0); 1134a5b8dd2cSEric Blake assert(is_power_of_2(bs->bl.request_alignment)); 113518edf289SKevin Wolf 113618edf289SKevin Wolf qemu_opts_del(opts); 113757915332SKevin Wolf return 0; 113857915332SKevin Wolf 113957915332SKevin Wolf free_and_fail: 11407267c094SAnthony Liguori g_free(bs->opaque); 114157915332SKevin Wolf bs->opaque = NULL; 114257915332SKevin Wolf bs->drv = NULL; 114318edf289SKevin Wolf fail_opts: 114418edf289SKevin Wolf qemu_opts_del(opts); 114557915332SKevin Wolf return ret; 114657915332SKevin Wolf } 114757915332SKevin Wolf 11485e5c4f63SKevin Wolf static QDict *parse_json_filename(const char *filename, Error **errp) 11495e5c4f63SKevin Wolf { 11505e5c4f63SKevin Wolf QObject *options_obj; 11515e5c4f63SKevin Wolf QDict *options; 11525e5c4f63SKevin Wolf int ret; 11535e5c4f63SKevin Wolf 11545e5c4f63SKevin Wolf ret = strstart(filename, "json:", &filename); 11555e5c4f63SKevin Wolf assert(ret); 11565e5c4f63SKevin Wolf 11575e5c4f63SKevin Wolf options_obj = qobject_from_json(filename); 11585e5c4f63SKevin Wolf if (!options_obj) { 11595e5c4f63SKevin Wolf error_setg(errp, "Could not parse the JSON options"); 11605e5c4f63SKevin Wolf return NULL; 11615e5c4f63SKevin Wolf } 11625e5c4f63SKevin Wolf 11635e5c4f63SKevin Wolf if (qobject_type(options_obj) != QTYPE_QDICT) { 11645e5c4f63SKevin Wolf qobject_decref(options_obj); 11655e5c4f63SKevin Wolf error_setg(errp, "Invalid JSON object given"); 11665e5c4f63SKevin Wolf return NULL; 11675e5c4f63SKevin Wolf } 11685e5c4f63SKevin Wolf 11695e5c4f63SKevin Wolf options = qobject_to_qdict(options_obj); 11705e5c4f63SKevin Wolf qdict_flatten(options); 11715e5c4f63SKevin Wolf 11725e5c4f63SKevin Wolf return options; 11735e5c4f63SKevin Wolf } 11745e5c4f63SKevin Wolf 1175de3b53f0SKevin Wolf static void parse_json_protocol(QDict *options, const char **pfilename, 1176de3b53f0SKevin Wolf Error **errp) 1177de3b53f0SKevin Wolf { 1178de3b53f0SKevin Wolf QDict *json_options; 1179de3b53f0SKevin Wolf Error *local_err = NULL; 1180de3b53f0SKevin Wolf 1181de3b53f0SKevin Wolf /* Parse json: pseudo-protocol */ 1182de3b53f0SKevin Wolf if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) { 1183de3b53f0SKevin Wolf return; 1184de3b53f0SKevin Wolf } 1185de3b53f0SKevin Wolf 1186de3b53f0SKevin Wolf json_options = parse_json_filename(*pfilename, &local_err); 1187de3b53f0SKevin Wolf if (local_err) { 1188de3b53f0SKevin Wolf error_propagate(errp, local_err); 1189de3b53f0SKevin Wolf return; 1190de3b53f0SKevin Wolf } 1191de3b53f0SKevin Wolf 1192de3b53f0SKevin Wolf /* Options given in the filename have lower priority than options 1193de3b53f0SKevin Wolf * specified directly */ 1194de3b53f0SKevin Wolf qdict_join(options, json_options, false); 1195de3b53f0SKevin Wolf QDECREF(json_options); 1196de3b53f0SKevin Wolf *pfilename = NULL; 1197de3b53f0SKevin Wolf } 1198de3b53f0SKevin Wolf 119957915332SKevin Wolf /* 1200f54120ffSKevin Wolf * Fills in default options for opening images and converts the legacy 1201f54120ffSKevin Wolf * filename/flags pair to option QDict entries. 120253a29513SMax Reitz * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a 120353a29513SMax Reitz * block driver has been specified explicitly. 1204f54120ffSKevin Wolf */ 1205de3b53f0SKevin Wolf static int bdrv_fill_options(QDict **options, const char *filename, 1206053e1578SMax Reitz int *flags, Error **errp) 1207f54120ffSKevin Wolf { 1208f54120ffSKevin Wolf const char *drvname; 120953a29513SMax Reitz bool protocol = *flags & BDRV_O_PROTOCOL; 1210f54120ffSKevin Wolf bool parse_filename = false; 1211053e1578SMax Reitz BlockDriver *drv = NULL; 1212f54120ffSKevin Wolf Error *local_err = NULL; 1213f54120ffSKevin Wolf 121453a29513SMax Reitz drvname = qdict_get_try_str(*options, "driver"); 1215053e1578SMax Reitz if (drvname) { 1216053e1578SMax Reitz drv = bdrv_find_format(drvname); 1217053e1578SMax Reitz if (!drv) { 1218053e1578SMax Reitz error_setg(errp, "Unknown driver '%s'", drvname); 1219053e1578SMax Reitz return -ENOENT; 1220053e1578SMax Reitz } 122153a29513SMax Reitz /* If the user has explicitly specified the driver, this choice should 122253a29513SMax Reitz * override the BDRV_O_PROTOCOL flag */ 1223053e1578SMax Reitz protocol = drv->bdrv_file_open; 122453a29513SMax Reitz } 122553a29513SMax Reitz 122653a29513SMax Reitz if (protocol) { 122753a29513SMax Reitz *flags |= BDRV_O_PROTOCOL; 122853a29513SMax Reitz } else { 122953a29513SMax Reitz *flags &= ~BDRV_O_PROTOCOL; 123053a29513SMax Reitz } 123153a29513SMax Reitz 123291a097e7SKevin Wolf /* Translate cache options from flags into options */ 123391a097e7SKevin Wolf update_options_from_flags(*options, *flags); 123491a097e7SKevin Wolf 1235f54120ffSKevin Wolf /* Fetch the file name from the options QDict if necessary */ 123617b005f1SKevin Wolf if (protocol && filename) { 1237f54120ffSKevin Wolf if (!qdict_haskey(*options, "filename")) { 1238f54120ffSKevin Wolf qdict_put(*options, "filename", qstring_from_str(filename)); 1239f54120ffSKevin Wolf parse_filename = true; 1240f54120ffSKevin Wolf } else { 1241f54120ffSKevin Wolf error_setg(errp, "Can't specify 'file' and 'filename' options at " 1242f54120ffSKevin Wolf "the same time"); 1243f54120ffSKevin Wolf return -EINVAL; 1244f54120ffSKevin Wolf } 1245f54120ffSKevin Wolf } 1246f54120ffSKevin Wolf 1247f54120ffSKevin Wolf /* Find the right block driver */ 1248f54120ffSKevin Wolf filename = qdict_get_try_str(*options, "filename"); 1249f54120ffSKevin Wolf 125017b005f1SKevin Wolf if (!drvname && protocol) { 1251f54120ffSKevin Wolf if (filename) { 1252b65a5e12SMax Reitz drv = bdrv_find_protocol(filename, parse_filename, errp); 1253f54120ffSKevin Wolf if (!drv) { 1254f54120ffSKevin Wolf return -EINVAL; 1255f54120ffSKevin Wolf } 1256f54120ffSKevin Wolf 1257f54120ffSKevin Wolf drvname = drv->format_name; 1258f54120ffSKevin Wolf qdict_put(*options, "driver", qstring_from_str(drvname)); 1259f54120ffSKevin Wolf } else { 1260f54120ffSKevin Wolf error_setg(errp, "Must specify either driver or file"); 1261f54120ffSKevin Wolf return -EINVAL; 1262f54120ffSKevin Wolf } 126317b005f1SKevin Wolf } 126417b005f1SKevin Wolf 126517b005f1SKevin Wolf assert(drv || !protocol); 1266f54120ffSKevin Wolf 1267f54120ffSKevin Wolf /* Driver-specific filename parsing */ 126817b005f1SKevin Wolf if (drv && drv->bdrv_parse_filename && parse_filename) { 1269f54120ffSKevin Wolf drv->bdrv_parse_filename(filename, *options, &local_err); 1270f54120ffSKevin Wolf if (local_err) { 1271f54120ffSKevin Wolf error_propagate(errp, local_err); 1272f54120ffSKevin Wolf return -EINVAL; 1273f54120ffSKevin Wolf } 1274f54120ffSKevin Wolf 1275f54120ffSKevin Wolf if (!drv->bdrv_needs_filename) { 1276f54120ffSKevin Wolf qdict_del(*options, "filename"); 1277f54120ffSKevin Wolf } 1278f54120ffSKevin Wolf } 1279f54120ffSKevin Wolf 1280f54120ffSKevin Wolf return 0; 1281f54120ffSKevin Wolf } 1282f54120ffSKevin Wolf 1283e9740bc6SKevin Wolf static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs) 1284e9740bc6SKevin Wolf { 1285e9740bc6SKevin Wolf BlockDriverState *old_bs = child->bs; 1286e9740bc6SKevin Wolf 1287e9740bc6SKevin Wolf if (old_bs) { 128836fe1331SKevin Wolf if (old_bs->quiesce_counter && child->role->drained_end) { 128936fe1331SKevin Wolf child->role->drained_end(child); 1290e9740bc6SKevin Wolf } 129136fe1331SKevin Wolf QLIST_REMOVE(child, next_parent); 1292e9740bc6SKevin Wolf } 1293e9740bc6SKevin Wolf 1294e9740bc6SKevin Wolf child->bs = new_bs; 129536fe1331SKevin Wolf 129636fe1331SKevin Wolf if (new_bs) { 129736fe1331SKevin Wolf QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent); 129836fe1331SKevin Wolf if (new_bs->quiesce_counter && child->role->drained_begin) { 129936fe1331SKevin Wolf child->role->drained_begin(child); 130036fe1331SKevin Wolf } 130136fe1331SKevin Wolf } 1302e9740bc6SKevin Wolf } 1303e9740bc6SKevin Wolf 1304f21d96d0SKevin Wolf BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs, 1305260fecf1SKevin Wolf const char *child_name, 130636fe1331SKevin Wolf const BdrvChildRole *child_role, 130736fe1331SKevin Wolf void *opaque) 1308df581792SKevin Wolf { 1309df581792SKevin Wolf BdrvChild *child = g_new(BdrvChild, 1); 1310df581792SKevin Wolf *child = (BdrvChild) { 1311e9740bc6SKevin Wolf .bs = NULL, 1312260fecf1SKevin Wolf .name = g_strdup(child_name), 1313df581792SKevin Wolf .role = child_role, 131436fe1331SKevin Wolf .opaque = opaque, 1315df581792SKevin Wolf }; 1316df581792SKevin Wolf 1317e9740bc6SKevin Wolf bdrv_replace_child(child, child_bs); 1318b4b059f6SKevin Wolf 1319b4b059f6SKevin Wolf return child; 1320df581792SKevin Wolf } 1321df581792SKevin Wolf 132298292c61SWen Congyang BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs, 1323f21d96d0SKevin Wolf BlockDriverState *child_bs, 1324f21d96d0SKevin Wolf const char *child_name, 1325f21d96d0SKevin Wolf const BdrvChildRole *child_role) 1326f21d96d0SKevin Wolf { 132736fe1331SKevin Wolf BdrvChild *child = bdrv_root_attach_child(child_bs, child_name, child_role, 132820018e12SKevin Wolf parent_bs); 1329f21d96d0SKevin Wolf QLIST_INSERT_HEAD(&parent_bs->children, child, next); 1330f21d96d0SKevin Wolf return child; 1331f21d96d0SKevin Wolf } 1332f21d96d0SKevin Wolf 13333f09bfbcSKevin Wolf static void bdrv_detach_child(BdrvChild *child) 133433a60407SKevin Wolf { 1335f21d96d0SKevin Wolf if (child->next.le_prev) { 133633a60407SKevin Wolf QLIST_REMOVE(child, next); 1337f21d96d0SKevin Wolf child->next.le_prev = NULL; 1338f21d96d0SKevin Wolf } 1339e9740bc6SKevin Wolf 1340e9740bc6SKevin Wolf bdrv_replace_child(child, NULL); 1341e9740bc6SKevin Wolf 1342260fecf1SKevin Wolf g_free(child->name); 134333a60407SKevin Wolf g_free(child); 134433a60407SKevin Wolf } 134533a60407SKevin Wolf 1346f21d96d0SKevin Wolf void bdrv_root_unref_child(BdrvChild *child) 134733a60407SKevin Wolf { 1348779020cbSKevin Wolf BlockDriverState *child_bs; 1349779020cbSKevin Wolf 1350f21d96d0SKevin Wolf child_bs = child->bs; 1351f21d96d0SKevin Wolf bdrv_detach_child(child); 1352f21d96d0SKevin Wolf bdrv_unref(child_bs); 1353f21d96d0SKevin Wolf } 1354f21d96d0SKevin Wolf 1355f21d96d0SKevin Wolf void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child) 1356f21d96d0SKevin Wolf { 1357779020cbSKevin Wolf if (child == NULL) { 1358779020cbSKevin Wolf return; 1359779020cbSKevin Wolf } 136033a60407SKevin Wolf 136133a60407SKevin Wolf if (child->bs->inherits_from == parent) { 13624e4bf5c4SKevin Wolf BdrvChild *c; 13634e4bf5c4SKevin Wolf 13644e4bf5c4SKevin Wolf /* Remove inherits_from only when the last reference between parent and 13654e4bf5c4SKevin Wolf * child->bs goes away. */ 13664e4bf5c4SKevin Wolf QLIST_FOREACH(c, &parent->children, next) { 13674e4bf5c4SKevin Wolf if (c != child && c->bs == child->bs) { 13684e4bf5c4SKevin Wolf break; 13694e4bf5c4SKevin Wolf } 13704e4bf5c4SKevin Wolf } 13714e4bf5c4SKevin Wolf if (c == NULL) { 137233a60407SKevin Wolf child->bs->inherits_from = NULL; 137333a60407SKevin Wolf } 13744e4bf5c4SKevin Wolf } 137533a60407SKevin Wolf 1376f21d96d0SKevin Wolf bdrv_root_unref_child(child); 137733a60407SKevin Wolf } 137833a60407SKevin Wolf 13795c8cab48SKevin Wolf 13805c8cab48SKevin Wolf static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load) 13815c8cab48SKevin Wolf { 13825c8cab48SKevin Wolf BdrvChild *c; 13835c8cab48SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 13845c8cab48SKevin Wolf if (c->role->change_media) { 13855c8cab48SKevin Wolf c->role->change_media(c, load); 13865c8cab48SKevin Wolf } 13875c8cab48SKevin Wolf } 13885c8cab48SKevin Wolf } 13895c8cab48SKevin Wolf 13905c8cab48SKevin Wolf static void bdrv_parent_cb_resize(BlockDriverState *bs) 13915c8cab48SKevin Wolf { 13925c8cab48SKevin Wolf BdrvChild *c; 13935c8cab48SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 13945c8cab48SKevin Wolf if (c->role->resize) { 13955c8cab48SKevin Wolf c->role->resize(c); 13965c8cab48SKevin Wolf } 13975c8cab48SKevin Wolf } 13985c8cab48SKevin Wolf } 13995c8cab48SKevin Wolf 14005db15a57SKevin Wolf /* 14015db15a57SKevin Wolf * Sets the backing file link of a BDS. A new reference is created; callers 14025db15a57SKevin Wolf * which don't need their own reference any more must call bdrv_unref(). 14035db15a57SKevin Wolf */ 14048d24cce1SFam Zheng void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd) 14058d24cce1SFam Zheng { 14065db15a57SKevin Wolf if (backing_hd) { 14075db15a57SKevin Wolf bdrv_ref(backing_hd); 14085db15a57SKevin Wolf } 14098d24cce1SFam Zheng 1410760e0063SKevin Wolf if (bs->backing) { 1411826b6ca0SFam Zheng assert(bs->backing_blocker); 1412760e0063SKevin Wolf bdrv_op_unblock_all(bs->backing->bs, bs->backing_blocker); 14135db15a57SKevin Wolf bdrv_unref_child(bs, bs->backing); 1414826b6ca0SFam Zheng } else if (backing_hd) { 1415826b6ca0SFam Zheng error_setg(&bs->backing_blocker, 141681e5f78aSAlberto Garcia "node is used as backing hd of '%s'", 141781e5f78aSAlberto Garcia bdrv_get_device_or_node_name(bs)); 1418826b6ca0SFam Zheng } 1419826b6ca0SFam Zheng 14208d24cce1SFam Zheng if (!backing_hd) { 1421826b6ca0SFam Zheng error_free(bs->backing_blocker); 1422826b6ca0SFam Zheng bs->backing_blocker = NULL; 1423760e0063SKevin Wolf bs->backing = NULL; 14248d24cce1SFam Zheng goto out; 14258d24cce1SFam Zheng } 1426260fecf1SKevin Wolf bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing); 14278d24cce1SFam Zheng bs->open_flags &= ~BDRV_O_NO_BACKING; 14288d24cce1SFam Zheng pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_hd->filename); 14298d24cce1SFam Zheng pstrcpy(bs->backing_format, sizeof(bs->backing_format), 14308d24cce1SFam Zheng backing_hd->drv ? backing_hd->drv->format_name : ""); 1431826b6ca0SFam Zheng 1432760e0063SKevin Wolf bdrv_op_block_all(backing_hd, bs->backing_blocker); 143361b49e48SAlberto Garcia /* Otherwise we won't be able to commit or stream */ 1434760e0063SKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET, 1435826b6ca0SFam Zheng bs->backing_blocker); 143661b49e48SAlberto Garcia bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM, 143761b49e48SAlberto Garcia bs->backing_blocker); 1438e9d6456eSWen Congyang /* 1439e9d6456eSWen Congyang * We do backup in 3 ways: 1440e9d6456eSWen Congyang * 1. drive backup 1441e9d6456eSWen Congyang * The target bs is new opened, and the source is top BDS 1442e9d6456eSWen Congyang * 2. blockdev backup 1443e9d6456eSWen Congyang * Both the source and the target are top BDSes. 1444e9d6456eSWen Congyang * 3. internal backup(used for block replication) 1445e9d6456eSWen Congyang * Both the source and the target are backing file 1446e9d6456eSWen Congyang * 1447e9d6456eSWen Congyang * In case 1 and 2, neither the source nor the target is the backing file. 1448e9d6456eSWen Congyang * In case 3, we will block the top BDS, so there is only one block job 1449e9d6456eSWen Congyang * for the top BDS and its backing chain. 1450e9d6456eSWen Congyang */ 1451e9d6456eSWen Congyang bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE, 1452e9d6456eSWen Congyang bs->backing_blocker); 1453e9d6456eSWen Congyang bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET, 1454e9d6456eSWen Congyang bs->backing_blocker); 14558d24cce1SFam Zheng out: 14563baca891SKevin Wolf bdrv_refresh_limits(bs, NULL); 14578d24cce1SFam Zheng } 14588d24cce1SFam Zheng 145931ca6d07SKevin Wolf /* 146031ca6d07SKevin Wolf * Opens the backing file for a BlockDriverState if not yet open 146131ca6d07SKevin Wolf * 1462d9b7b057SKevin Wolf * bdref_key specifies the key for the image's BlockdevRef in the options QDict. 1463d9b7b057SKevin Wolf * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict 1464d9b7b057SKevin Wolf * itself, all options starting with "${bdref_key}." are considered part of the 1465d9b7b057SKevin Wolf * BlockdevRef. 1466d9b7b057SKevin Wolf * 1467d9b7b057SKevin Wolf * TODO Can this be unified with bdrv_open_image()? 146831ca6d07SKevin Wolf */ 1469d9b7b057SKevin Wolf int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options, 1470d9b7b057SKevin Wolf const char *bdref_key, Error **errp) 14719156df12SPaolo Bonzini { 14721ba4b6a5SBenoît Canet char *backing_filename = g_malloc0(PATH_MAX); 1473d9b7b057SKevin Wolf char *bdref_key_dot; 1474d9b7b057SKevin Wolf const char *reference = NULL; 1475317fc44eSKevin Wolf int ret = 0; 14768d24cce1SFam Zheng BlockDriverState *backing_hd; 1477d9b7b057SKevin Wolf QDict *options; 1478d9b7b057SKevin Wolf QDict *tmp_parent_options = NULL; 147934b5d2c6SMax Reitz Error *local_err = NULL; 14809156df12SPaolo Bonzini 1481760e0063SKevin Wolf if (bs->backing != NULL) { 14821ba4b6a5SBenoît Canet goto free_exit; 14839156df12SPaolo Bonzini } 14849156df12SPaolo Bonzini 148531ca6d07SKevin Wolf /* NULL means an empty set of options */ 1486d9b7b057SKevin Wolf if (parent_options == NULL) { 1487d9b7b057SKevin Wolf tmp_parent_options = qdict_new(); 1488d9b7b057SKevin Wolf parent_options = tmp_parent_options; 148931ca6d07SKevin Wolf } 149031ca6d07SKevin Wolf 14919156df12SPaolo Bonzini bs->open_flags &= ~BDRV_O_NO_BACKING; 1492d9b7b057SKevin Wolf 1493d9b7b057SKevin Wolf bdref_key_dot = g_strdup_printf("%s.", bdref_key); 1494d9b7b057SKevin Wolf qdict_extract_subqdict(parent_options, &options, bdref_key_dot); 1495d9b7b057SKevin Wolf g_free(bdref_key_dot); 1496d9b7b057SKevin Wolf 1497d9b7b057SKevin Wolf reference = qdict_get_try_str(parent_options, bdref_key); 1498d9b7b057SKevin Wolf if (reference || qdict_haskey(options, "file.filename")) { 14991cb6f506SKevin Wolf backing_filename[0] = '\0'; 15001cb6f506SKevin Wolf } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { 150131ca6d07SKevin Wolf QDECREF(options); 15021ba4b6a5SBenoît Canet goto free_exit; 1503dbecebddSFam Zheng } else { 15049f07429eSMax Reitz bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX, 15059f07429eSMax Reitz &local_err); 15069f07429eSMax Reitz if (local_err) { 15079f07429eSMax Reitz ret = -EINVAL; 15089f07429eSMax Reitz error_propagate(errp, local_err); 15099f07429eSMax Reitz QDECREF(options); 15109f07429eSMax Reitz goto free_exit; 15119f07429eSMax Reitz } 15129156df12SPaolo Bonzini } 15139156df12SPaolo Bonzini 15148ee79e70SKevin Wolf if (!bs->drv || !bs->drv->supports_backing) { 15158ee79e70SKevin Wolf ret = -EINVAL; 15168ee79e70SKevin Wolf error_setg(errp, "Driver doesn't support backing files"); 15178ee79e70SKevin Wolf QDECREF(options); 15188ee79e70SKevin Wolf goto free_exit; 15198ee79e70SKevin Wolf } 15208ee79e70SKevin Wolf 1521c5f6e493SKevin Wolf if (bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) { 1522c5f6e493SKevin Wolf qdict_put(options, "driver", qstring_from_str(bs->backing_format)); 15239156df12SPaolo Bonzini } 15249156df12SPaolo Bonzini 15255b363937SMax Reitz backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL, 1526d9b7b057SKevin Wolf reference, options, 0, bs, &child_backing, 1527e43bfd9cSMarkus Armbruster errp); 15285b363937SMax Reitz if (!backing_hd) { 15299156df12SPaolo Bonzini bs->open_flags |= BDRV_O_NO_BACKING; 1530e43bfd9cSMarkus Armbruster error_prepend(errp, "Could not open backing file: "); 15315b363937SMax Reitz ret = -EINVAL; 15321ba4b6a5SBenoît Canet goto free_exit; 15339156df12SPaolo Bonzini } 1534df581792SKevin Wolf 15355db15a57SKevin Wolf /* Hook up the backing file link; drop our reference, bs owns the 15365db15a57SKevin Wolf * backing_hd reference now */ 15378d24cce1SFam Zheng bdrv_set_backing_hd(bs, backing_hd); 15385db15a57SKevin Wolf bdrv_unref(backing_hd); 1539d80ac658SPeter Feiner 1540d9b7b057SKevin Wolf qdict_del(parent_options, bdref_key); 1541d9b7b057SKevin Wolf 15421ba4b6a5SBenoît Canet free_exit: 15431ba4b6a5SBenoît Canet g_free(backing_filename); 1544d9b7b057SKevin Wolf QDECREF(tmp_parent_options); 15451ba4b6a5SBenoît Canet return ret; 15469156df12SPaolo Bonzini } 15479156df12SPaolo Bonzini 15482d6b86afSKevin Wolf static BlockDriverState * 15492d6b86afSKevin Wolf bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key, 15502d6b86afSKevin Wolf BlockDriverState *parent, const BdrvChildRole *child_role, 1551f7d9fd8cSMax Reitz bool allow_none, Error **errp) 1552da557aacSMax Reitz { 15532d6b86afSKevin Wolf BlockDriverState *bs = NULL; 1554da557aacSMax Reitz QDict *image_options; 1555da557aacSMax Reitz char *bdref_key_dot; 1556da557aacSMax Reitz const char *reference; 1557da557aacSMax Reitz 1558df581792SKevin Wolf assert(child_role != NULL); 1559f67503e5SMax Reitz 1560da557aacSMax Reitz bdref_key_dot = g_strdup_printf("%s.", bdref_key); 1561da557aacSMax Reitz qdict_extract_subqdict(options, &image_options, bdref_key_dot); 1562da557aacSMax Reitz g_free(bdref_key_dot); 1563da557aacSMax Reitz 1564da557aacSMax Reitz reference = qdict_get_try_str(options, bdref_key); 1565da557aacSMax Reitz if (!filename && !reference && !qdict_size(image_options)) { 1566b4b059f6SKevin Wolf if (!allow_none) { 1567da557aacSMax Reitz error_setg(errp, "A block device must be specified for \"%s\"", 1568da557aacSMax Reitz bdref_key); 1569da557aacSMax Reitz } 1570b20e61e0SMarkus Armbruster QDECREF(image_options); 1571da557aacSMax Reitz goto done; 1572da557aacSMax Reitz } 1573da557aacSMax Reitz 15745b363937SMax Reitz bs = bdrv_open_inherit(filename, reference, image_options, 0, 1575ce343771SMax Reitz parent, child_role, errp); 15765b363937SMax Reitz if (!bs) { 1577df581792SKevin Wolf goto done; 1578df581792SKevin Wolf } 1579df581792SKevin Wolf 1580da557aacSMax Reitz done: 1581da557aacSMax Reitz qdict_del(options, bdref_key); 15822d6b86afSKevin Wolf return bs; 15832d6b86afSKevin Wolf } 15842d6b86afSKevin Wolf 15852d6b86afSKevin Wolf /* 15862d6b86afSKevin Wolf * Opens a disk image whose options are given as BlockdevRef in another block 15872d6b86afSKevin Wolf * device's options. 15882d6b86afSKevin Wolf * 15892d6b86afSKevin Wolf * If allow_none is true, no image will be opened if filename is false and no 15902d6b86afSKevin Wolf * BlockdevRef is given. NULL will be returned, but errp remains unset. 15912d6b86afSKevin Wolf * 15922d6b86afSKevin Wolf * bdrev_key specifies the key for the image's BlockdevRef in the options QDict. 15932d6b86afSKevin Wolf * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict 15942d6b86afSKevin Wolf * itself, all options starting with "${bdref_key}." are considered part of the 15952d6b86afSKevin Wolf * BlockdevRef. 15962d6b86afSKevin Wolf * 15972d6b86afSKevin Wolf * The BlockdevRef will be removed from the options QDict. 15982d6b86afSKevin Wolf */ 15992d6b86afSKevin Wolf BdrvChild *bdrv_open_child(const char *filename, 16002d6b86afSKevin Wolf QDict *options, const char *bdref_key, 16012d6b86afSKevin Wolf BlockDriverState *parent, 16022d6b86afSKevin Wolf const BdrvChildRole *child_role, 16032d6b86afSKevin Wolf bool allow_none, Error **errp) 16042d6b86afSKevin Wolf { 16052d6b86afSKevin Wolf BlockDriverState *bs; 16062d6b86afSKevin Wolf 16072d6b86afSKevin Wolf bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role, 16082d6b86afSKevin Wolf allow_none, errp); 16092d6b86afSKevin Wolf if (bs == NULL) { 16102d6b86afSKevin Wolf return NULL; 16112d6b86afSKevin Wolf } 16122d6b86afSKevin Wolf 16132d6b86afSKevin Wolf return bdrv_attach_child(parent, bs, bdref_key, child_role); 1614b4b059f6SKevin Wolf } 1615b4b059f6SKevin Wolf 161666836189SMax Reitz static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs, 161766836189SMax Reitz int flags, 161866836189SMax Reitz QDict *snapshot_options, 161966836189SMax Reitz Error **errp) 1620b998875dSKevin Wolf { 1621b998875dSKevin Wolf /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */ 16221ba4b6a5SBenoît Canet char *tmp_filename = g_malloc0(PATH_MAX + 1); 1623b998875dSKevin Wolf int64_t total_size; 162483d0521aSChunyan Liu QemuOpts *opts = NULL; 1625b998875dSKevin Wolf BlockDriverState *bs_snapshot; 1626b998875dSKevin Wolf int ret; 1627b998875dSKevin Wolf 1628b998875dSKevin Wolf /* if snapshot, we create a temporary backing file and open it 1629b998875dSKevin Wolf instead of opening 'filename' directly */ 1630b998875dSKevin Wolf 1631b998875dSKevin Wolf /* Get the required size from the image */ 1632f187743aSKevin Wolf total_size = bdrv_getlength(bs); 1633f187743aSKevin Wolf if (total_size < 0) { 1634f187743aSKevin Wolf error_setg_errno(errp, -total_size, "Could not get image size"); 16351ba4b6a5SBenoît Canet goto out; 1636f187743aSKevin Wolf } 1637b998875dSKevin Wolf 1638b998875dSKevin Wolf /* Create the temporary image */ 16391ba4b6a5SBenoît Canet ret = get_tmp_filename(tmp_filename, PATH_MAX + 1); 1640b998875dSKevin Wolf if (ret < 0) { 1641b998875dSKevin Wolf error_setg_errno(errp, -ret, "Could not get temporary filename"); 16421ba4b6a5SBenoît Canet goto out; 1643b998875dSKevin Wolf } 1644b998875dSKevin Wolf 1645ef810437SMax Reitz opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0, 1646c282e1fdSChunyan Liu &error_abort); 164739101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort); 1648e43bfd9cSMarkus Armbruster ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp); 164983d0521aSChunyan Liu qemu_opts_del(opts); 1650b998875dSKevin Wolf if (ret < 0) { 1651e43bfd9cSMarkus Armbruster error_prepend(errp, "Could not create temporary overlay '%s': ", 1652e43bfd9cSMarkus Armbruster tmp_filename); 16531ba4b6a5SBenoît Canet goto out; 1654b998875dSKevin Wolf } 1655b998875dSKevin Wolf 165673176beeSKevin Wolf /* Prepare options QDict for the temporary file */ 1657b998875dSKevin Wolf qdict_put(snapshot_options, "file.driver", 1658b998875dSKevin Wolf qstring_from_str("file")); 1659b998875dSKevin Wolf qdict_put(snapshot_options, "file.filename", 1660b998875dSKevin Wolf qstring_from_str(tmp_filename)); 1661e6641719SMax Reitz qdict_put(snapshot_options, "driver", 1662e6641719SMax Reitz qstring_from_str("qcow2")); 1663b998875dSKevin Wolf 16645b363937SMax Reitz bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp); 166573176beeSKevin Wolf snapshot_options = NULL; 16665b363937SMax Reitz if (!bs_snapshot) { 16675b363937SMax Reitz ret = -EINVAL; 16681ba4b6a5SBenoît Canet goto out; 1669b998875dSKevin Wolf } 1670b998875dSKevin Wolf 167166836189SMax Reitz /* bdrv_append() consumes a strong reference to bs_snapshot (i.e. it will 167266836189SMax Reitz * call bdrv_unref() on it), so in order to be able to return one, we have 167366836189SMax Reitz * to increase bs_snapshot's refcount here */ 167466836189SMax Reitz bdrv_ref(bs_snapshot); 1675b998875dSKevin Wolf bdrv_append(bs_snapshot, bs); 16761ba4b6a5SBenoît Canet 167766836189SMax Reitz g_free(tmp_filename); 167866836189SMax Reitz return bs_snapshot; 167966836189SMax Reitz 16801ba4b6a5SBenoît Canet out: 168173176beeSKevin Wolf QDECREF(snapshot_options); 16821ba4b6a5SBenoît Canet g_free(tmp_filename); 168366836189SMax Reitz return NULL; 1684b998875dSKevin Wolf } 1685b998875dSKevin Wolf 1686da557aacSMax Reitz /* 1687b6ce07aaSKevin Wolf * Opens a disk image (raw, qcow2, vmdk, ...) 1688de9c0cecSKevin Wolf * 1689de9c0cecSKevin Wolf * options is a QDict of options to pass to the block drivers, or NULL for an 1690de9c0cecSKevin Wolf * empty set of options. The reference to the QDict belongs to the block layer 1691de9c0cecSKevin Wolf * after the call (even on failure), so if the caller intends to reuse the 1692de9c0cecSKevin Wolf * dictionary, it needs to use QINCREF() before calling bdrv_open. 1693f67503e5SMax Reitz * 1694f67503e5SMax Reitz * If *pbs is NULL, a new BDS will be created with a pointer to it stored there. 1695f67503e5SMax Reitz * If it is not NULL, the referenced BDS will be reused. 1696ddf5636dSMax Reitz * 1697ddf5636dSMax Reitz * The reference parameter may be used to specify an existing block device which 1698ddf5636dSMax Reitz * should be opened. If specified, neither options nor a filename may be given, 1699ddf5636dSMax Reitz * nor can an existing BDS be reused (that is, *pbs has to be NULL). 1700b6ce07aaSKevin Wolf */ 17015b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename, 17025b363937SMax Reitz const char *reference, 17035b363937SMax Reitz QDict *options, int flags, 1704f3930ed0SKevin Wolf BlockDriverState *parent, 17055b363937SMax Reitz const BdrvChildRole *child_role, 17065b363937SMax Reitz Error **errp) 1707ea2384d3Sbellard { 1708b6ce07aaSKevin Wolf int ret; 1709*5696c6e3SKevin Wolf BlockBackend *file = NULL; 17109a4f4c31SKevin Wolf BlockDriverState *bs; 1711ce343771SMax Reitz BlockDriver *drv = NULL; 171274fe54f2SKevin Wolf const char *drvname; 17133e8c2e57SAlberto Garcia const char *backing; 171434b5d2c6SMax Reitz Error *local_err = NULL; 171573176beeSKevin Wolf QDict *snapshot_options = NULL; 1716b1e6fc08SKevin Wolf int snapshot_flags = 0; 171733e3963eSbellard 1718f3930ed0SKevin Wolf assert(!child_role || !flags); 1719f3930ed0SKevin Wolf assert(!child_role == !parent); 1720f67503e5SMax Reitz 1721ddf5636dSMax Reitz if (reference) { 1722ddf5636dSMax Reitz bool options_non_empty = options ? qdict_size(options) : false; 1723ddf5636dSMax Reitz QDECREF(options); 1724ddf5636dSMax Reitz 1725ddf5636dSMax Reitz if (filename || options_non_empty) { 1726ddf5636dSMax Reitz error_setg(errp, "Cannot reference an existing block device with " 1727ddf5636dSMax Reitz "additional options or a new filename"); 17285b363937SMax Reitz return NULL; 1729ddf5636dSMax Reitz } 1730ddf5636dSMax Reitz 1731ddf5636dSMax Reitz bs = bdrv_lookup_bs(reference, reference, errp); 1732ddf5636dSMax Reitz if (!bs) { 17335b363937SMax Reitz return NULL; 1734ddf5636dSMax Reitz } 173576b22320SKevin Wolf 1736ddf5636dSMax Reitz bdrv_ref(bs); 17375b363937SMax Reitz return bs; 1738ddf5636dSMax Reitz } 1739ddf5636dSMax Reitz 1740e4e9986bSMarkus Armbruster bs = bdrv_new(); 1741f67503e5SMax Reitz 1742de9c0cecSKevin Wolf /* NULL means an empty set of options */ 1743de9c0cecSKevin Wolf if (options == NULL) { 1744de9c0cecSKevin Wolf options = qdict_new(); 1745de9c0cecSKevin Wolf } 1746de9c0cecSKevin Wolf 1747145f598eSKevin Wolf /* json: syntax counts as explicit options, as if in the QDict */ 1748de3b53f0SKevin Wolf parse_json_protocol(options, &filename, &local_err); 1749de3b53f0SKevin Wolf if (local_err) { 1750de3b53f0SKevin Wolf goto fail; 1751de3b53f0SKevin Wolf } 1752de3b53f0SKevin Wolf 1753145f598eSKevin Wolf bs->explicit_options = qdict_clone_shallow(options); 1754145f598eSKevin Wolf 1755f3930ed0SKevin Wolf if (child_role) { 1756bddcec37SKevin Wolf bs->inherits_from = parent; 17578e2160e2SKevin Wolf child_role->inherit_options(&flags, options, 17588e2160e2SKevin Wolf parent->open_flags, parent->options); 1759f3930ed0SKevin Wolf } 1760f3930ed0SKevin Wolf 1761de3b53f0SKevin Wolf ret = bdrv_fill_options(&options, filename, &flags, &local_err); 1762462f5bcfSKevin Wolf if (local_err) { 1763462f5bcfSKevin Wolf goto fail; 1764462f5bcfSKevin Wolf } 1765462f5bcfSKevin Wolf 1766f87a0e29SAlberto Garcia /* Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags. 1767f87a0e29SAlberto Garcia * FIXME: we're parsing the QDict to avoid having to create a 1768f87a0e29SAlberto Garcia * QemuOpts just for this, but neither option is optimal. */ 1769f87a0e29SAlberto Garcia if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") && 1770f87a0e29SAlberto Garcia !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) { 1771f87a0e29SAlberto Garcia flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR); 1772f87a0e29SAlberto Garcia } else { 1773f87a0e29SAlberto Garcia flags &= ~BDRV_O_RDWR; 177414499ea5SAlberto Garcia } 177514499ea5SAlberto Garcia 177614499ea5SAlberto Garcia if (flags & BDRV_O_SNAPSHOT) { 177714499ea5SAlberto Garcia snapshot_options = qdict_new(); 177814499ea5SAlberto Garcia bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options, 177914499ea5SAlberto Garcia flags, options); 1780f87a0e29SAlberto Garcia /* Let bdrv_backing_options() override "read-only" */ 1781f87a0e29SAlberto Garcia qdict_del(options, BDRV_OPT_READ_ONLY); 178214499ea5SAlberto Garcia bdrv_backing_options(&flags, options, flags, options); 178314499ea5SAlberto Garcia } 178414499ea5SAlberto Garcia 178562392ebbSKevin Wolf bs->open_flags = flags; 178662392ebbSKevin Wolf bs->options = options; 178762392ebbSKevin Wolf options = qdict_clone_shallow(options); 178862392ebbSKevin Wolf 178976c591b0SKevin Wolf /* Find the right image format driver */ 179076c591b0SKevin Wolf drvname = qdict_get_try_str(options, "driver"); 179176c591b0SKevin Wolf if (drvname) { 179276c591b0SKevin Wolf drv = bdrv_find_format(drvname); 179376c591b0SKevin Wolf if (!drv) { 179476c591b0SKevin Wolf error_setg(errp, "Unknown driver: '%s'", drvname); 179576c591b0SKevin Wolf goto fail; 179676c591b0SKevin Wolf } 179776c591b0SKevin Wolf } 179876c591b0SKevin Wolf 179976c591b0SKevin Wolf assert(drvname || !(flags & BDRV_O_PROTOCOL)); 180076c591b0SKevin Wolf 18013e8c2e57SAlberto Garcia backing = qdict_get_try_str(options, "backing"); 18023e8c2e57SAlberto Garcia if (backing && *backing == '\0') { 18033e8c2e57SAlberto Garcia flags |= BDRV_O_NO_BACKING; 18043e8c2e57SAlberto Garcia qdict_del(options, "backing"); 18053e8c2e57SAlberto Garcia } 18063e8c2e57SAlberto Garcia 1807*5696c6e3SKevin Wolf /* Open image file without format layer. This BlockBackend is only used for 18084e4bf5c4SKevin Wolf * probing, the block drivers will do their own bdrv_open_child() for the 18094e4bf5c4SKevin Wolf * same BDS, which is why we put the node name back into options. */ 1810f4788adcSKevin Wolf if ((flags & BDRV_O_PROTOCOL) == 0) { 1811*5696c6e3SKevin Wolf BlockDriverState *file_bs; 1812*5696c6e3SKevin Wolf 1813*5696c6e3SKevin Wolf file_bs = bdrv_open_child_bs(filename, options, "file", bs, 18141fdd6933SKevin Wolf &child_file, true, &local_err); 18151fdd6933SKevin Wolf if (local_err) { 18168bfea15dSKevin Wolf goto fail; 1817f500a6d3SKevin Wolf } 1818*5696c6e3SKevin Wolf if (file_bs != NULL) { 1819*5696c6e3SKevin Wolf file = blk_new(); 1820*5696c6e3SKevin Wolf blk_insert_bs(file, file_bs); 1821*5696c6e3SKevin Wolf bdrv_unref(file_bs); 1822*5696c6e3SKevin Wolf 18234e4bf5c4SKevin Wolf qdict_put(options, "file", 1824*5696c6e3SKevin Wolf qstring_from_str(bdrv_get_node_name(file_bs))); 18254e4bf5c4SKevin Wolf } 1826f4788adcSKevin Wolf } 1827f500a6d3SKevin Wolf 182876c591b0SKevin Wolf /* Image format probing */ 182938f3ef57SKevin Wolf bs->probed = !drv; 183076c591b0SKevin Wolf if (!drv && file) { 1831cf2ab8fcSKevin Wolf ret = find_image_format(file, filename, &drv, &local_err); 183217b005f1SKevin Wolf if (ret < 0) { 183317b005f1SKevin Wolf goto fail; 183417b005f1SKevin Wolf } 183562392ebbSKevin Wolf /* 183662392ebbSKevin Wolf * This option update would logically belong in bdrv_fill_options(), 183762392ebbSKevin Wolf * but we first need to open bs->file for the probing to work, while 183862392ebbSKevin Wolf * opening bs->file already requires the (mostly) final set of options 183962392ebbSKevin Wolf * so that cache mode etc. can be inherited. 184062392ebbSKevin Wolf * 184162392ebbSKevin Wolf * Adding the driver later is somewhat ugly, but it's not an option 184262392ebbSKevin Wolf * that would ever be inherited, so it's correct. We just need to make 184362392ebbSKevin Wolf * sure to update both bs->options (which has the full effective 184462392ebbSKevin Wolf * options for bs) and options (which has file.* already removed). 184562392ebbSKevin Wolf */ 184662392ebbSKevin Wolf qdict_put(bs->options, "driver", qstring_from_str(drv->format_name)); 184762392ebbSKevin Wolf qdict_put(options, "driver", qstring_from_str(drv->format_name)); 184876c591b0SKevin Wolf } else if (!drv) { 18492a05cbe4SMax Reitz error_setg(errp, "Must specify either driver or file"); 18508bfea15dSKevin Wolf goto fail; 18512a05cbe4SMax Reitz } 1852f500a6d3SKevin Wolf 185353a29513SMax Reitz /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */ 185453a29513SMax Reitz assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open); 185553a29513SMax Reitz /* file must be NULL if a protocol BDS is about to be created 185653a29513SMax Reitz * (the inverse results in an error message from bdrv_open_common()) */ 185753a29513SMax Reitz assert(!(flags & BDRV_O_PROTOCOL) || !file); 185853a29513SMax Reitz 1859b6ce07aaSKevin Wolf /* Open the image */ 186082dc8b41SKevin Wolf ret = bdrv_open_common(bs, file, options, &local_err); 1861b6ce07aaSKevin Wolf if (ret < 0) { 18628bfea15dSKevin Wolf goto fail; 18636987307cSChristoph Hellwig } 18646987307cSChristoph Hellwig 18654e4bf5c4SKevin Wolf if (file) { 1866*5696c6e3SKevin Wolf blk_unref(file); 1867f500a6d3SKevin Wolf file = NULL; 1868f500a6d3SKevin Wolf } 1869f500a6d3SKevin Wolf 1870b6ce07aaSKevin Wolf /* If there is a backing file, use it */ 18719156df12SPaolo Bonzini if ((flags & BDRV_O_NO_BACKING) == 0) { 1872d9b7b057SKevin Wolf ret = bdrv_open_backing_file(bs, options, "backing", &local_err); 1873b6ce07aaSKevin Wolf if (ret < 0) { 1874b6ad491aSKevin Wolf goto close_and_fail; 1875b6ce07aaSKevin Wolf } 1876b6ce07aaSKevin Wolf } 1877b6ce07aaSKevin Wolf 187891af7014SMax Reitz bdrv_refresh_filename(bs); 187991af7014SMax Reitz 1880b6ad491aSKevin Wolf /* Check if any unknown options were used */ 18817ad2757fSPaolo Bonzini if (qdict_size(options) != 0) { 1882b6ad491aSKevin Wolf const QDictEntry *entry = qdict_first(options); 18835acd9d81SMax Reitz if (flags & BDRV_O_PROTOCOL) { 18845acd9d81SMax Reitz error_setg(errp, "Block protocol '%s' doesn't support the option " 18855acd9d81SMax Reitz "'%s'", drv->format_name, entry->key); 18865acd9d81SMax Reitz } else { 1887d0e46a55SMax Reitz error_setg(errp, 1888d0e46a55SMax Reitz "Block format '%s' does not support the option '%s'", 1889d0e46a55SMax Reitz drv->format_name, entry->key); 18905acd9d81SMax Reitz } 1891b6ad491aSKevin Wolf 1892b6ad491aSKevin Wolf goto close_and_fail; 1893b6ad491aSKevin Wolf } 1894b6ad491aSKevin Wolf 1895b6ce07aaSKevin Wolf if (!bdrv_key_required(bs)) { 18965c8cab48SKevin Wolf bdrv_parent_cb_change_media(bs, true); 1897c3adb58fSMarkus Armbruster } else if (!runstate_check(RUN_STATE_PRELAUNCH) 1898c3adb58fSMarkus Armbruster && !runstate_check(RUN_STATE_INMIGRATE) 1899c3adb58fSMarkus Armbruster && !runstate_check(RUN_STATE_PAUSED)) { /* HACK */ 1900c3adb58fSMarkus Armbruster error_setg(errp, 1901c3adb58fSMarkus Armbruster "Guest must be stopped for opening of encrypted image"); 1902c3adb58fSMarkus Armbruster goto close_and_fail; 1903b6ce07aaSKevin Wolf } 1904b6ce07aaSKevin Wolf 1905c3adb58fSMarkus Armbruster QDECREF(options); 1906dd62f1caSKevin Wolf 1907dd62f1caSKevin Wolf /* For snapshot=on, create a temporary qcow2 overlay. bs points to the 1908dd62f1caSKevin Wolf * temporary snapshot afterwards. */ 1909dd62f1caSKevin Wolf if (snapshot_flags) { 191066836189SMax Reitz BlockDriverState *snapshot_bs; 191166836189SMax Reitz snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags, 191266836189SMax Reitz snapshot_options, &local_err); 191373176beeSKevin Wolf snapshot_options = NULL; 1914dd62f1caSKevin Wolf if (local_err) { 1915dd62f1caSKevin Wolf goto close_and_fail; 1916dd62f1caSKevin Wolf } 191766836189SMax Reitz /* We are not going to return bs but the overlay on top of it 191866836189SMax Reitz * (snapshot_bs); thus, we have to drop the strong reference to bs 19195b363937SMax Reitz * (which we obtained by calling bdrv_new()). bs will not be deleted, 19205b363937SMax Reitz * though, because the overlay still has a reference to it. */ 192166836189SMax Reitz bdrv_unref(bs); 192266836189SMax Reitz bs = snapshot_bs; 192366836189SMax Reitz } 192466836189SMax Reitz 19255b363937SMax Reitz return bs; 1926b6ce07aaSKevin Wolf 19278bfea15dSKevin Wolf fail: 1928*5696c6e3SKevin Wolf blk_unref(file); 19294e4bf5c4SKevin Wolf if (bs->file != NULL) { 19304e4bf5c4SKevin Wolf bdrv_unref_child(bs, bs->file); 19314e4bf5c4SKevin Wolf } 193273176beeSKevin Wolf QDECREF(snapshot_options); 1933145f598eSKevin Wolf QDECREF(bs->explicit_options); 1934de9c0cecSKevin Wolf QDECREF(bs->options); 1935b6ad491aSKevin Wolf QDECREF(options); 1936de9c0cecSKevin Wolf bs->options = NULL; 1937f67503e5SMax Reitz bdrv_unref(bs); 193834b5d2c6SMax Reitz error_propagate(errp, local_err); 19395b363937SMax Reitz return NULL; 1940de9c0cecSKevin Wolf 1941b6ad491aSKevin Wolf close_and_fail: 1942f67503e5SMax Reitz bdrv_unref(bs); 194373176beeSKevin Wolf QDECREF(snapshot_options); 1944b6ad491aSKevin Wolf QDECREF(options); 194534b5d2c6SMax Reitz error_propagate(errp, local_err); 19465b363937SMax Reitz return NULL; 1947b6ce07aaSKevin Wolf } 1948b6ce07aaSKevin Wolf 19495b363937SMax Reitz BlockDriverState *bdrv_open(const char *filename, const char *reference, 19505b363937SMax Reitz QDict *options, int flags, Error **errp) 1951f3930ed0SKevin Wolf { 19525b363937SMax Reitz return bdrv_open_inherit(filename, reference, options, flags, NULL, 1953ce343771SMax Reitz NULL, errp); 1954f3930ed0SKevin Wolf } 1955f3930ed0SKevin Wolf 1956e971aa12SJeff Cody typedef struct BlockReopenQueueEntry { 1957e971aa12SJeff Cody bool prepared; 1958e971aa12SJeff Cody BDRVReopenState state; 1959e971aa12SJeff Cody QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry; 1960e971aa12SJeff Cody } BlockReopenQueueEntry; 1961e971aa12SJeff Cody 1962e971aa12SJeff Cody /* 1963e971aa12SJeff Cody * Adds a BlockDriverState to a simple queue for an atomic, transactional 1964e971aa12SJeff Cody * reopen of multiple devices. 1965e971aa12SJeff Cody * 1966e971aa12SJeff Cody * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT 1967e971aa12SJeff Cody * already performed, or alternatively may be NULL a new BlockReopenQueue will 1968e971aa12SJeff Cody * be created and initialized. This newly created BlockReopenQueue should be 1969e971aa12SJeff Cody * passed back in for subsequent calls that are intended to be of the same 1970e971aa12SJeff Cody * atomic 'set'. 1971e971aa12SJeff Cody * 1972e971aa12SJeff Cody * bs is the BlockDriverState to add to the reopen queue. 1973e971aa12SJeff Cody * 19744d2cb092SKevin Wolf * options contains the changed options for the associated bs 19754d2cb092SKevin Wolf * (the BlockReopenQueue takes ownership) 19764d2cb092SKevin Wolf * 1977e971aa12SJeff Cody * flags contains the open flags for the associated bs 1978e971aa12SJeff Cody * 1979e971aa12SJeff Cody * returns a pointer to bs_queue, which is either the newly allocated 1980e971aa12SJeff Cody * bs_queue, or the existing bs_queue being used. 1981e971aa12SJeff Cody * 1982e971aa12SJeff Cody */ 198328518102SKevin Wolf static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, 19844d2cb092SKevin Wolf BlockDriverState *bs, 198528518102SKevin Wolf QDict *options, 198628518102SKevin Wolf int flags, 198728518102SKevin Wolf const BdrvChildRole *role, 198828518102SKevin Wolf QDict *parent_options, 198928518102SKevin Wolf int parent_flags) 1990e971aa12SJeff Cody { 1991e971aa12SJeff Cody assert(bs != NULL); 1992e971aa12SJeff Cody 1993e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry; 199467251a31SKevin Wolf BdrvChild *child; 1995145f598eSKevin Wolf QDict *old_options, *explicit_options; 199667251a31SKevin Wolf 1997e971aa12SJeff Cody if (bs_queue == NULL) { 1998e971aa12SJeff Cody bs_queue = g_new0(BlockReopenQueue, 1); 1999e971aa12SJeff Cody QSIMPLEQ_INIT(bs_queue); 2000e971aa12SJeff Cody } 2001e971aa12SJeff Cody 20024d2cb092SKevin Wolf if (!options) { 20034d2cb092SKevin Wolf options = qdict_new(); 20044d2cb092SKevin Wolf } 20054d2cb092SKevin Wolf 20065b7ba05fSAlberto Garcia /* Check if this BlockDriverState is already in the queue */ 20075b7ba05fSAlberto Garcia QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 20085b7ba05fSAlberto Garcia if (bs == bs_entry->state.bs) { 20095b7ba05fSAlberto Garcia break; 20105b7ba05fSAlberto Garcia } 20115b7ba05fSAlberto Garcia } 20125b7ba05fSAlberto Garcia 201328518102SKevin Wolf /* 201428518102SKevin Wolf * Precedence of options: 201528518102SKevin Wolf * 1. Explicitly passed in options (highest) 201691a097e7SKevin Wolf * 2. Set in flags (only for top level) 2017145f598eSKevin Wolf * 3. Retained from explicitly set options of bs 20188e2160e2SKevin Wolf * 4. Inherited from parent node 201928518102SKevin Wolf * 5. Retained from effective options of bs 202028518102SKevin Wolf */ 202128518102SKevin Wolf 202291a097e7SKevin Wolf if (!parent_options) { 202391a097e7SKevin Wolf /* 202491a097e7SKevin Wolf * Any setting represented by flags is always updated. If the 202591a097e7SKevin Wolf * corresponding QDict option is set, it takes precedence. Otherwise 202691a097e7SKevin Wolf * the flag is translated into a QDict option. The old setting of bs is 202791a097e7SKevin Wolf * not considered. 202891a097e7SKevin Wolf */ 202991a097e7SKevin Wolf update_options_from_flags(options, flags); 203091a097e7SKevin Wolf } 203191a097e7SKevin Wolf 2032145f598eSKevin Wolf /* Old explicitly set values (don't overwrite by inherited value) */ 20335b7ba05fSAlberto Garcia if (bs_entry) { 20345b7ba05fSAlberto Garcia old_options = qdict_clone_shallow(bs_entry->state.explicit_options); 20355b7ba05fSAlberto Garcia } else { 2036145f598eSKevin Wolf old_options = qdict_clone_shallow(bs->explicit_options); 20375b7ba05fSAlberto Garcia } 2038145f598eSKevin Wolf bdrv_join_options(bs, options, old_options); 2039145f598eSKevin Wolf QDECREF(old_options); 2040145f598eSKevin Wolf 2041145f598eSKevin Wolf explicit_options = qdict_clone_shallow(options); 2042145f598eSKevin Wolf 204328518102SKevin Wolf /* Inherit from parent node */ 204428518102SKevin Wolf if (parent_options) { 204528518102SKevin Wolf assert(!flags); 20468e2160e2SKevin Wolf role->inherit_options(&flags, options, parent_flags, parent_options); 204728518102SKevin Wolf } 204828518102SKevin Wolf 204928518102SKevin Wolf /* Old values are used for options that aren't set yet */ 20504d2cb092SKevin Wolf old_options = qdict_clone_shallow(bs->options); 2051cddff5baSKevin Wolf bdrv_join_options(bs, options, old_options); 20524d2cb092SKevin Wolf QDECREF(old_options); 20534d2cb092SKevin Wolf 2054f1f25a2eSKevin Wolf /* bdrv_open() masks this flag out */ 2055f1f25a2eSKevin Wolf flags &= ~BDRV_O_PROTOCOL; 2056f1f25a2eSKevin Wolf 205767251a31SKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 20584c9dfe5dSKevin Wolf QDict *new_child_options; 20594c9dfe5dSKevin Wolf char *child_key_dot; 206067251a31SKevin Wolf 20614c9dfe5dSKevin Wolf /* reopen can only change the options of block devices that were 20624c9dfe5dSKevin Wolf * implicitly created and inherited options. For other (referenced) 20634c9dfe5dSKevin Wolf * block devices, a syntax like "backing.foo" results in an error. */ 206467251a31SKevin Wolf if (child->bs->inherits_from != bs) { 206567251a31SKevin Wolf continue; 206667251a31SKevin Wolf } 206767251a31SKevin Wolf 20684c9dfe5dSKevin Wolf child_key_dot = g_strdup_printf("%s.", child->name); 20694c9dfe5dSKevin Wolf qdict_extract_subqdict(options, &new_child_options, child_key_dot); 20704c9dfe5dSKevin Wolf g_free(child_key_dot); 20714c9dfe5dSKevin Wolf 207228518102SKevin Wolf bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0, 207328518102SKevin Wolf child->role, options, flags); 2074e971aa12SJeff Cody } 2075e971aa12SJeff Cody 20765b7ba05fSAlberto Garcia if (!bs_entry) { 2077e971aa12SJeff Cody bs_entry = g_new0(BlockReopenQueueEntry, 1); 2078e971aa12SJeff Cody QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry); 20795b7ba05fSAlberto Garcia } else { 20805b7ba05fSAlberto Garcia QDECREF(bs_entry->state.options); 20815b7ba05fSAlberto Garcia QDECREF(bs_entry->state.explicit_options); 20825b7ba05fSAlberto Garcia } 2083e971aa12SJeff Cody 2084e971aa12SJeff Cody bs_entry->state.bs = bs; 20854d2cb092SKevin Wolf bs_entry->state.options = options; 2086145f598eSKevin Wolf bs_entry->state.explicit_options = explicit_options; 2087e971aa12SJeff Cody bs_entry->state.flags = flags; 2088e971aa12SJeff Cody 2089e971aa12SJeff Cody return bs_queue; 2090e971aa12SJeff Cody } 2091e971aa12SJeff Cody 209228518102SKevin Wolf BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, 209328518102SKevin Wolf BlockDriverState *bs, 209428518102SKevin Wolf QDict *options, int flags) 209528518102SKevin Wolf { 209628518102SKevin Wolf return bdrv_reopen_queue_child(bs_queue, bs, options, flags, 209728518102SKevin Wolf NULL, NULL, 0); 209828518102SKevin Wolf } 209928518102SKevin Wolf 2100e971aa12SJeff Cody /* 2101e971aa12SJeff Cody * Reopen multiple BlockDriverStates atomically & transactionally. 2102e971aa12SJeff Cody * 2103e971aa12SJeff Cody * The queue passed in (bs_queue) must have been built up previous 2104e971aa12SJeff Cody * via bdrv_reopen_queue(). 2105e971aa12SJeff Cody * 2106e971aa12SJeff Cody * Reopens all BDS specified in the queue, with the appropriate 2107e971aa12SJeff Cody * flags. All devices are prepared for reopen, and failure of any 2108e971aa12SJeff Cody * device will cause all device changes to be abandonded, and intermediate 2109e971aa12SJeff Cody * data cleaned up. 2110e971aa12SJeff Cody * 2111e971aa12SJeff Cody * If all devices prepare successfully, then the changes are committed 2112e971aa12SJeff Cody * to all devices. 2113e971aa12SJeff Cody * 2114e971aa12SJeff Cody */ 2115720150f3SPaolo Bonzini int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp) 2116e971aa12SJeff Cody { 2117e971aa12SJeff Cody int ret = -1; 2118e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry, *next; 2119e971aa12SJeff Cody Error *local_err = NULL; 2120e971aa12SJeff Cody 2121e971aa12SJeff Cody assert(bs_queue != NULL); 2122e971aa12SJeff Cody 2123c9d1a561SPaolo Bonzini aio_context_release(ctx); 212440840e41SAlberto Garcia bdrv_drain_all_begin(); 2125c9d1a561SPaolo Bonzini aio_context_acquire(ctx); 2126e971aa12SJeff Cody 2127e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 2128e971aa12SJeff Cody if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) { 2129e971aa12SJeff Cody error_propagate(errp, local_err); 2130e971aa12SJeff Cody goto cleanup; 2131e971aa12SJeff Cody } 2132e971aa12SJeff Cody bs_entry->prepared = true; 2133e971aa12SJeff Cody } 2134e971aa12SJeff Cody 2135e971aa12SJeff Cody /* If we reach this point, we have success and just need to apply the 2136e971aa12SJeff Cody * changes 2137e971aa12SJeff Cody */ 2138e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 2139e971aa12SJeff Cody bdrv_reopen_commit(&bs_entry->state); 2140e971aa12SJeff Cody } 2141e971aa12SJeff Cody 2142e971aa12SJeff Cody ret = 0; 2143e971aa12SJeff Cody 2144e971aa12SJeff Cody cleanup: 2145e971aa12SJeff Cody QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { 2146e971aa12SJeff Cody if (ret && bs_entry->prepared) { 2147e971aa12SJeff Cody bdrv_reopen_abort(&bs_entry->state); 2148145f598eSKevin Wolf } else if (ret) { 2149145f598eSKevin Wolf QDECREF(bs_entry->state.explicit_options); 2150e971aa12SJeff Cody } 21514d2cb092SKevin Wolf QDECREF(bs_entry->state.options); 2152e971aa12SJeff Cody g_free(bs_entry); 2153e971aa12SJeff Cody } 2154e971aa12SJeff Cody g_free(bs_queue); 215540840e41SAlberto Garcia 215640840e41SAlberto Garcia bdrv_drain_all_end(); 215740840e41SAlberto Garcia 2158e971aa12SJeff Cody return ret; 2159e971aa12SJeff Cody } 2160e971aa12SJeff Cody 2161e971aa12SJeff Cody 2162e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */ 2163e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp) 2164e971aa12SJeff Cody { 2165e971aa12SJeff Cody int ret = -1; 2166e971aa12SJeff Cody Error *local_err = NULL; 21674d2cb092SKevin Wolf BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags); 2168e971aa12SJeff Cody 2169720150f3SPaolo Bonzini ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, &local_err); 2170e971aa12SJeff Cody if (local_err != NULL) { 2171e971aa12SJeff Cody error_propagate(errp, local_err); 2172e971aa12SJeff Cody } 2173e971aa12SJeff Cody return ret; 2174e971aa12SJeff Cody } 2175e971aa12SJeff Cody 2176e971aa12SJeff Cody 2177e971aa12SJeff Cody /* 2178e971aa12SJeff Cody * Prepares a BlockDriverState for reopen. All changes are staged in the 2179e971aa12SJeff Cody * 'opaque' field of the BDRVReopenState, which is used and allocated by 2180e971aa12SJeff Cody * the block driver layer .bdrv_reopen_prepare() 2181e971aa12SJeff Cody * 2182e971aa12SJeff Cody * bs is the BlockDriverState to reopen 2183e971aa12SJeff Cody * flags are the new open flags 2184e971aa12SJeff Cody * queue is the reopen queue 2185e971aa12SJeff Cody * 2186e971aa12SJeff Cody * Returns 0 on success, non-zero on error. On error errp will be set 2187e971aa12SJeff Cody * as well. 2188e971aa12SJeff Cody * 2189e971aa12SJeff Cody * On failure, bdrv_reopen_abort() will be called to clean up any data. 2190e971aa12SJeff Cody * It is the responsibility of the caller to then call the abort() or 2191e971aa12SJeff Cody * commit() for any other BDS that have been left in a prepare() state 2192e971aa12SJeff Cody * 2193e971aa12SJeff Cody */ 2194e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue, 2195e971aa12SJeff Cody Error **errp) 2196e971aa12SJeff Cody { 2197e971aa12SJeff Cody int ret = -1; 2198e971aa12SJeff Cody Error *local_err = NULL; 2199e971aa12SJeff Cody BlockDriver *drv; 2200ccf9dc07SKevin Wolf QemuOpts *opts; 2201ccf9dc07SKevin Wolf const char *value; 2202e971aa12SJeff Cody 2203e971aa12SJeff Cody assert(reopen_state != NULL); 2204e971aa12SJeff Cody assert(reopen_state->bs->drv != NULL); 2205e971aa12SJeff Cody drv = reopen_state->bs->drv; 2206e971aa12SJeff Cody 2207ccf9dc07SKevin Wolf /* Process generic block layer options */ 2208ccf9dc07SKevin Wolf opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 2209ccf9dc07SKevin Wolf qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err); 2210ccf9dc07SKevin Wolf if (local_err) { 2211ccf9dc07SKevin Wolf error_propagate(errp, local_err); 2212ccf9dc07SKevin Wolf ret = -EINVAL; 2213ccf9dc07SKevin Wolf goto error; 2214ccf9dc07SKevin Wolf } 2215ccf9dc07SKevin Wolf 221691a097e7SKevin Wolf update_flags_from_options(&reopen_state->flags, opts); 221791a097e7SKevin Wolf 2218ccf9dc07SKevin Wolf /* node-name and driver must be unchanged. Put them back into the QDict, so 2219ccf9dc07SKevin Wolf * that they are checked at the end of this function. */ 2220ccf9dc07SKevin Wolf value = qemu_opt_get(opts, "node-name"); 2221ccf9dc07SKevin Wolf if (value) { 2222ccf9dc07SKevin Wolf qdict_put(reopen_state->options, "node-name", qstring_from_str(value)); 2223ccf9dc07SKevin Wolf } 2224ccf9dc07SKevin Wolf 2225ccf9dc07SKevin Wolf value = qemu_opt_get(opts, "driver"); 2226ccf9dc07SKevin Wolf if (value) { 2227ccf9dc07SKevin Wolf qdict_put(reopen_state->options, "driver", qstring_from_str(value)); 2228ccf9dc07SKevin Wolf } 2229ccf9dc07SKevin Wolf 2230e971aa12SJeff Cody /* if we are to stay read-only, do not allow permission change 2231e971aa12SJeff Cody * to r/w */ 2232e971aa12SJeff Cody if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) && 2233e971aa12SJeff Cody reopen_state->flags & BDRV_O_RDWR) { 223481e5f78aSAlberto Garcia error_setg(errp, "Node '%s' is read only", 223581e5f78aSAlberto Garcia bdrv_get_device_or_node_name(reopen_state->bs)); 2236e971aa12SJeff Cody goto error; 2237e971aa12SJeff Cody } 2238e971aa12SJeff Cody 2239e971aa12SJeff Cody 2240e971aa12SJeff Cody ret = bdrv_flush(reopen_state->bs); 2241e971aa12SJeff Cody if (ret) { 2242455b0fdeSEric Blake error_setg_errno(errp, -ret, "Error flushing drive"); 2243e971aa12SJeff Cody goto error; 2244e971aa12SJeff Cody } 2245e971aa12SJeff Cody 2246e971aa12SJeff Cody if (drv->bdrv_reopen_prepare) { 2247e971aa12SJeff Cody ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); 2248e971aa12SJeff Cody if (ret) { 2249e971aa12SJeff Cody if (local_err != NULL) { 2250e971aa12SJeff Cody error_propagate(errp, local_err); 2251e971aa12SJeff Cody } else { 2252d8b6895fSLuiz Capitulino error_setg(errp, "failed while preparing to reopen image '%s'", 2253e971aa12SJeff Cody reopen_state->bs->filename); 2254e971aa12SJeff Cody } 2255e971aa12SJeff Cody goto error; 2256e971aa12SJeff Cody } 2257e971aa12SJeff Cody } else { 2258e971aa12SJeff Cody /* It is currently mandatory to have a bdrv_reopen_prepare() 2259e971aa12SJeff Cody * handler for each supported drv. */ 226081e5f78aSAlberto Garcia error_setg(errp, "Block format '%s' used by node '%s' " 226181e5f78aSAlberto Garcia "does not support reopening files", drv->format_name, 226281e5f78aSAlberto Garcia bdrv_get_device_or_node_name(reopen_state->bs)); 2263e971aa12SJeff Cody ret = -1; 2264e971aa12SJeff Cody goto error; 2265e971aa12SJeff Cody } 2266e971aa12SJeff Cody 22674d2cb092SKevin Wolf /* Options that are not handled are only okay if they are unchanged 22684d2cb092SKevin Wolf * compared to the old state. It is expected that some options are only 22694d2cb092SKevin Wolf * used for the initial open, but not reopen (e.g. filename) */ 22704d2cb092SKevin Wolf if (qdict_size(reopen_state->options)) { 22714d2cb092SKevin Wolf const QDictEntry *entry = qdict_first(reopen_state->options); 22724d2cb092SKevin Wolf 22734d2cb092SKevin Wolf do { 22744d2cb092SKevin Wolf QString *new_obj = qobject_to_qstring(entry->value); 22754d2cb092SKevin Wolf const char *new = qstring_get_str(new_obj); 22764d2cb092SKevin Wolf const char *old = qdict_get_try_str(reopen_state->bs->options, 22774d2cb092SKevin Wolf entry->key); 22784d2cb092SKevin Wolf 22794d2cb092SKevin Wolf if (!old || strcmp(new, old)) { 22804d2cb092SKevin Wolf error_setg(errp, "Cannot change the option '%s'", entry->key); 22814d2cb092SKevin Wolf ret = -EINVAL; 22824d2cb092SKevin Wolf goto error; 22834d2cb092SKevin Wolf } 22844d2cb092SKevin Wolf } while ((entry = qdict_next(reopen_state->options, entry))); 22854d2cb092SKevin Wolf } 22864d2cb092SKevin Wolf 2287e971aa12SJeff Cody ret = 0; 2288e971aa12SJeff Cody 2289e971aa12SJeff Cody error: 2290ccf9dc07SKevin Wolf qemu_opts_del(opts); 2291e971aa12SJeff Cody return ret; 2292e971aa12SJeff Cody } 2293e971aa12SJeff Cody 2294e971aa12SJeff Cody /* 2295e971aa12SJeff Cody * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and 2296e971aa12SJeff Cody * makes them final by swapping the staging BlockDriverState contents into 2297e971aa12SJeff Cody * the active BlockDriverState contents. 2298e971aa12SJeff Cody */ 2299e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state) 2300e971aa12SJeff Cody { 2301e971aa12SJeff Cody BlockDriver *drv; 2302e971aa12SJeff Cody 2303e971aa12SJeff Cody assert(reopen_state != NULL); 2304e971aa12SJeff Cody drv = reopen_state->bs->drv; 2305e971aa12SJeff Cody assert(drv != NULL); 2306e971aa12SJeff Cody 2307e971aa12SJeff Cody /* If there are any driver level actions to take */ 2308e971aa12SJeff Cody if (drv->bdrv_reopen_commit) { 2309e971aa12SJeff Cody drv->bdrv_reopen_commit(reopen_state); 2310e971aa12SJeff Cody } 2311e971aa12SJeff Cody 2312e971aa12SJeff Cody /* set BDS specific flags now */ 2313145f598eSKevin Wolf QDECREF(reopen_state->bs->explicit_options); 2314145f598eSKevin Wolf 2315145f598eSKevin Wolf reopen_state->bs->explicit_options = reopen_state->explicit_options; 2316e971aa12SJeff Cody reopen_state->bs->open_flags = reopen_state->flags; 2317e971aa12SJeff Cody reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR); 2318355ef4acSKevin Wolf 23193baca891SKevin Wolf bdrv_refresh_limits(reopen_state->bs, NULL); 2320e971aa12SJeff Cody } 2321e971aa12SJeff Cody 2322e971aa12SJeff Cody /* 2323e971aa12SJeff Cody * Abort the reopen, and delete and free the staged changes in 2324e971aa12SJeff Cody * reopen_state 2325e971aa12SJeff Cody */ 2326e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state) 2327e971aa12SJeff Cody { 2328e971aa12SJeff Cody BlockDriver *drv; 2329e971aa12SJeff Cody 2330e971aa12SJeff Cody assert(reopen_state != NULL); 2331e971aa12SJeff Cody drv = reopen_state->bs->drv; 2332e971aa12SJeff Cody assert(drv != NULL); 2333e971aa12SJeff Cody 2334e971aa12SJeff Cody if (drv->bdrv_reopen_abort) { 2335e971aa12SJeff Cody drv->bdrv_reopen_abort(reopen_state); 2336e971aa12SJeff Cody } 2337145f598eSKevin Wolf 2338145f598eSKevin Wolf QDECREF(reopen_state->explicit_options); 2339e971aa12SJeff Cody } 2340e971aa12SJeff Cody 2341e971aa12SJeff Cody 234264dff520SMax Reitz static void bdrv_close(BlockDriverState *bs) 2343fc01f7e7Sbellard { 234433384421SMax Reitz BdrvAioNotifier *ban, *ban_next; 234533384421SMax Reitz 2346ca9bd24cSMax Reitz assert(!bs->job); 234730f55fb8SMax Reitz assert(!bs->refcnt); 234899b7e775SAlberto Garcia 2349fc27291dSPaolo Bonzini bdrv_drained_begin(bs); /* complete I/O */ 235058fda173SStefan Hajnoczi bdrv_flush(bs); 235153ec73e2SFam Zheng bdrv_drain(bs); /* in case flush left pending I/O */ 2352fc27291dSPaolo Bonzini 2353c5acdc9aSMax Reitz bdrv_release_named_dirty_bitmaps(bs); 2354c5acdc9aSMax Reitz assert(QLIST_EMPTY(&bs->dirty_bitmaps)); 2355c5acdc9aSMax Reitz 23563cbc002cSPaolo Bonzini if (bs->drv) { 23576e93e7c4SKevin Wolf BdrvChild *child, *next; 23586e93e7c4SKevin Wolf 23599a7dedbcSKevin Wolf bs->drv->bdrv_close(bs); 23609a4f4c31SKevin Wolf bs->drv = NULL; 23619a7dedbcSKevin Wolf 23629a7dedbcSKevin Wolf bdrv_set_backing_hd(bs, NULL); 23639a7dedbcSKevin Wolf 23649a4f4c31SKevin Wolf if (bs->file != NULL) { 23659a4f4c31SKevin Wolf bdrv_unref_child(bs, bs->file); 23669a4f4c31SKevin Wolf bs->file = NULL; 23679a4f4c31SKevin Wolf } 23689a4f4c31SKevin Wolf 23696e93e7c4SKevin Wolf QLIST_FOREACH_SAFE(child, &bs->children, next, next) { 237033a60407SKevin Wolf /* TODO Remove bdrv_unref() from drivers' close function and use 237133a60407SKevin Wolf * bdrv_unref_child() here */ 2372bddcec37SKevin Wolf if (child->bs->inherits_from == bs) { 2373bddcec37SKevin Wolf child->bs->inherits_from = NULL; 2374bddcec37SKevin Wolf } 237533a60407SKevin Wolf bdrv_detach_child(child); 23766e93e7c4SKevin Wolf } 23776e93e7c4SKevin Wolf 23787267c094SAnthony Liguori g_free(bs->opaque); 2379ea2384d3Sbellard bs->opaque = NULL; 238053fec9d3SStefan Hajnoczi bs->copy_on_read = 0; 2381a275fa42SPaolo Bonzini bs->backing_file[0] = '\0'; 2382a275fa42SPaolo Bonzini bs->backing_format[0] = '\0'; 23836405875cSPaolo Bonzini bs->total_sectors = 0; 238454115412SEric Blake bs->encrypted = false; 238554115412SEric Blake bs->valid_key = false; 238654115412SEric Blake bs->sg = false; 2387de9c0cecSKevin Wolf QDECREF(bs->options); 2388145f598eSKevin Wolf QDECREF(bs->explicit_options); 2389de9c0cecSKevin Wolf bs->options = NULL; 239091af7014SMax Reitz QDECREF(bs->full_open_options); 239191af7014SMax Reitz bs->full_open_options = NULL; 23929ca11154SPavel Hrdina } 239366f82ceeSKevin Wolf 239433384421SMax Reitz QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 239533384421SMax Reitz g_free(ban); 239633384421SMax Reitz } 239733384421SMax Reitz QLIST_INIT(&bs->aio_notifiers); 2398fc27291dSPaolo Bonzini bdrv_drained_end(bs); 2399b338082bSbellard } 2400b338082bSbellard 24012bc93fedSMORITA Kazutaka void bdrv_close_all(void) 24022bc93fedSMORITA Kazutaka { 2403a1a2af07SKevin Wolf block_job_cancel_sync_all(); 2404cd7fca95SKevin Wolf nbd_export_close_all(); 24052bc93fedSMORITA Kazutaka 2406ca9bd24cSMax Reitz /* Drop references from requests still in flight, such as canceled block 2407ca9bd24cSMax Reitz * jobs whose AIO context has not been polled yet */ 2408ca9bd24cSMax Reitz bdrv_drain_all(); 2409ca9bd24cSMax Reitz 2410ca9bd24cSMax Reitz blk_remove_all_bs(); 2411ca9bd24cSMax Reitz blockdev_close_all_bdrv_states(); 2412ca9bd24cSMax Reitz 2413a1a2af07SKevin Wolf assert(QTAILQ_EMPTY(&all_bdrv_states)); 24142bc93fedSMORITA Kazutaka } 24152bc93fedSMORITA Kazutaka 2416dd62f1caSKevin Wolf static void change_parent_backing_link(BlockDriverState *from, 2417dd62f1caSKevin Wolf BlockDriverState *to) 2418dd62f1caSKevin Wolf { 24199bd910e2SMax Reitz BdrvChild *c, *next, *to_c; 2420dd62f1caSKevin Wolf 2421dd62f1caSKevin Wolf QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) { 24229bd910e2SMax Reitz if (c->role == &child_backing) { 24239bd910e2SMax Reitz /* @from is generally not allowed to be a backing file, except for 24249bd910e2SMax Reitz * when @to is the overlay. In that case, @from may not be replaced 24259bd910e2SMax Reitz * by @to as @to's backing node. */ 24269bd910e2SMax Reitz QLIST_FOREACH(to_c, &to->children, next) { 24279bd910e2SMax Reitz if (to_c == c) { 24289bd910e2SMax Reitz break; 24299bd910e2SMax Reitz } 24309bd910e2SMax Reitz } 24319bd910e2SMax Reitz if (to_c) { 24329bd910e2SMax Reitz continue; 24339bd910e2SMax Reitz } 24349bd910e2SMax Reitz } 24359bd910e2SMax Reitz 2436dd62f1caSKevin Wolf assert(c->role != &child_backing); 2437dd62f1caSKevin Wolf bdrv_ref(to); 2438e9740bc6SKevin Wolf bdrv_replace_child(c, to); 2439dd62f1caSKevin Wolf bdrv_unref(from); 2440dd62f1caSKevin Wolf } 2441dd62f1caSKevin Wolf } 2442dd62f1caSKevin Wolf 24438802d1fdSJeff Cody /* 24448802d1fdSJeff Cody * Add new bs contents at the top of an image chain while the chain is 24458802d1fdSJeff Cody * live, while keeping required fields on the top layer. 24468802d1fdSJeff Cody * 24478802d1fdSJeff Cody * This will modify the BlockDriverState fields, and swap contents 24488802d1fdSJeff Cody * between bs_new and bs_top. Both bs_new and bs_top are modified. 24498802d1fdSJeff Cody * 2450bfb197e0SMarkus Armbruster * bs_new must not be attached to a BlockBackend. 2451f6801b83SJeff Cody * 24528802d1fdSJeff Cody * This function does not create any image files. 2453dd62f1caSKevin Wolf * 2454dd62f1caSKevin Wolf * bdrv_append() takes ownership of a bs_new reference and unrefs it because 2455dd62f1caSKevin Wolf * that's what the callers commonly need. bs_new will be referenced by the old 2456dd62f1caSKevin Wolf * parents of bs_top after bdrv_append() returns. If the caller needs to keep a 2457dd62f1caSKevin Wolf * reference of its own, it must call bdrv_ref(). 24588802d1fdSJeff Cody */ 24598802d1fdSJeff Cody void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top) 24608802d1fdSJeff Cody { 2461dd62f1caSKevin Wolf assert(!bdrv_requests_pending(bs_top)); 2462dd62f1caSKevin Wolf assert(!bdrv_requests_pending(bs_new)); 24638802d1fdSJeff Cody 2464dd62f1caSKevin Wolf bdrv_ref(bs_top); 2465dd62f1caSKevin Wolf 246627ccdd52SKevin Wolf change_parent_backing_link(bs_top, bs_new); 2467dd62f1caSKevin Wolf bdrv_set_backing_hd(bs_new, bs_top); 2468dd62f1caSKevin Wolf bdrv_unref(bs_top); 2469dd62f1caSKevin Wolf 2470dd62f1caSKevin Wolf /* bs_new is now referenced by its new parents, we don't need the 2471dd62f1caSKevin Wolf * additional reference any more. */ 2472dd62f1caSKevin Wolf bdrv_unref(bs_new); 24738802d1fdSJeff Cody } 24748802d1fdSJeff Cody 24753f09bfbcSKevin Wolf void bdrv_replace_in_backing_chain(BlockDriverState *old, BlockDriverState *new) 24763f09bfbcSKevin Wolf { 24773f09bfbcSKevin Wolf assert(!bdrv_requests_pending(old)); 24783f09bfbcSKevin Wolf assert(!bdrv_requests_pending(new)); 24793f09bfbcSKevin Wolf 24803f09bfbcSKevin Wolf bdrv_ref(old); 24813f09bfbcSKevin Wolf 24823f09bfbcSKevin Wolf change_parent_backing_link(old, new); 24833f09bfbcSKevin Wolf 24843f09bfbcSKevin Wolf bdrv_unref(old); 24853f09bfbcSKevin Wolf } 24863f09bfbcSKevin Wolf 24874f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs) 2488b338082bSbellard { 24893e914655SPaolo Bonzini assert(!bs->job); 24903718d8abSFam Zheng assert(bdrv_op_blocker_is_empty(bs)); 24914f6fd349SFam Zheng assert(!bs->refcnt); 249218846deeSMarkus Armbruster 2493e1b5c52eSStefan Hajnoczi bdrv_close(bs); 2494e1b5c52eSStefan Hajnoczi 24951b7bdbc1SStefan Hajnoczi /* remove from list, if necessary */ 249663eaaae0SKevin Wolf if (bs->node_name[0] != '\0') { 249763eaaae0SKevin Wolf QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list); 249863eaaae0SKevin Wolf } 24992c1d04e0SMax Reitz QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list); 25002c1d04e0SMax Reitz 25017267c094SAnthony Liguori g_free(bs); 2502fc01f7e7Sbellard } 2503fc01f7e7Sbellard 2504e97fc193Saliguori /* 2505e97fc193Saliguori * Run consistency checks on an image 2506e97fc193Saliguori * 2507e076f338SKevin Wolf * Returns 0 if the check could be completed (it doesn't mean that the image is 2508a1c7273bSStefan Weil * free of errors) or -errno when an internal error occurred. The results of the 2509e076f338SKevin Wolf * check are stored in res. 2510e97fc193Saliguori */ 25114534ff54SKevin Wolf int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix) 2512e97fc193Saliguori { 2513908bcd54SMax Reitz if (bs->drv == NULL) { 2514908bcd54SMax Reitz return -ENOMEDIUM; 2515908bcd54SMax Reitz } 2516e97fc193Saliguori if (bs->drv->bdrv_check == NULL) { 2517e97fc193Saliguori return -ENOTSUP; 2518e97fc193Saliguori } 2519e97fc193Saliguori 2520e076f338SKevin Wolf memset(res, 0, sizeof(*res)); 25214534ff54SKevin Wolf return bs->drv->bdrv_check(bs, res, fix); 2522e97fc193Saliguori } 2523e97fc193Saliguori 2524756e6736SKevin Wolf /* 2525756e6736SKevin Wolf * Return values: 2526756e6736SKevin Wolf * 0 - success 2527756e6736SKevin Wolf * -EINVAL - backing format specified, but no file 2528756e6736SKevin Wolf * -ENOSPC - can't update the backing file because no space is left in the 2529756e6736SKevin Wolf * image file header 2530756e6736SKevin Wolf * -ENOTSUP - format driver doesn't support changing the backing file 2531756e6736SKevin Wolf */ 2532756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs, 2533756e6736SKevin Wolf const char *backing_file, const char *backing_fmt) 2534756e6736SKevin Wolf { 2535756e6736SKevin Wolf BlockDriver *drv = bs->drv; 2536469ef350SPaolo Bonzini int ret; 2537756e6736SKevin Wolf 25385f377794SPaolo Bonzini /* Backing file format doesn't make sense without a backing file */ 25395f377794SPaolo Bonzini if (backing_fmt && !backing_file) { 25405f377794SPaolo Bonzini return -EINVAL; 25415f377794SPaolo Bonzini } 25425f377794SPaolo Bonzini 2543756e6736SKevin Wolf if (drv->bdrv_change_backing_file != NULL) { 2544469ef350SPaolo Bonzini ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); 2545756e6736SKevin Wolf } else { 2546469ef350SPaolo Bonzini ret = -ENOTSUP; 2547756e6736SKevin Wolf } 2548469ef350SPaolo Bonzini 2549469ef350SPaolo Bonzini if (ret == 0) { 2550469ef350SPaolo Bonzini pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); 2551469ef350SPaolo Bonzini pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); 2552469ef350SPaolo Bonzini } 2553469ef350SPaolo Bonzini return ret; 2554756e6736SKevin Wolf } 2555756e6736SKevin Wolf 25566ebdcee2SJeff Cody /* 25576ebdcee2SJeff Cody * Finds the image layer in the chain that has 'bs' as its backing file. 25586ebdcee2SJeff Cody * 25596ebdcee2SJeff Cody * active is the current topmost image. 25606ebdcee2SJeff Cody * 25616ebdcee2SJeff Cody * Returns NULL if bs is not found in active's image chain, 25626ebdcee2SJeff Cody * or if active == bs. 25634caf0fcdSJeff Cody * 25644caf0fcdSJeff Cody * Returns the bottommost base image if bs == NULL. 25656ebdcee2SJeff Cody */ 25666ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active, 25676ebdcee2SJeff Cody BlockDriverState *bs) 25686ebdcee2SJeff Cody { 2569760e0063SKevin Wolf while (active && bs != backing_bs(active)) { 2570760e0063SKevin Wolf active = backing_bs(active); 25716ebdcee2SJeff Cody } 25726ebdcee2SJeff Cody 25734caf0fcdSJeff Cody return active; 25746ebdcee2SJeff Cody } 25756ebdcee2SJeff Cody 25764caf0fcdSJeff Cody /* Given a BDS, searches for the base layer. */ 25774caf0fcdSJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs) 25784caf0fcdSJeff Cody { 25794caf0fcdSJeff Cody return bdrv_find_overlay(bs, NULL); 25806ebdcee2SJeff Cody } 25816ebdcee2SJeff Cody 25826ebdcee2SJeff Cody /* 25836ebdcee2SJeff Cody * Drops images above 'base' up to and including 'top', and sets the image 25846ebdcee2SJeff Cody * above 'top' to have base as its backing file. 25856ebdcee2SJeff Cody * 25866ebdcee2SJeff Cody * Requires that the overlay to 'top' is opened r/w, so that the backing file 25876ebdcee2SJeff Cody * information in 'bs' can be properly updated. 25886ebdcee2SJeff Cody * 25896ebdcee2SJeff Cody * E.g., this will convert the following chain: 25906ebdcee2SJeff Cody * bottom <- base <- intermediate <- top <- active 25916ebdcee2SJeff Cody * 25926ebdcee2SJeff Cody * to 25936ebdcee2SJeff Cody * 25946ebdcee2SJeff Cody * bottom <- base <- active 25956ebdcee2SJeff Cody * 25966ebdcee2SJeff Cody * It is allowed for bottom==base, in which case it converts: 25976ebdcee2SJeff Cody * 25986ebdcee2SJeff Cody * base <- intermediate <- top <- active 25996ebdcee2SJeff Cody * 26006ebdcee2SJeff Cody * to 26016ebdcee2SJeff Cody * 26026ebdcee2SJeff Cody * base <- active 26036ebdcee2SJeff Cody * 260454e26900SJeff Cody * If backing_file_str is non-NULL, it will be used when modifying top's 260554e26900SJeff Cody * overlay image metadata. 260654e26900SJeff Cody * 26076ebdcee2SJeff Cody * Error conditions: 26086ebdcee2SJeff Cody * if active == top, that is considered an error 26096ebdcee2SJeff Cody * 26106ebdcee2SJeff Cody */ 26116ebdcee2SJeff Cody int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top, 261254e26900SJeff Cody BlockDriverState *base, const char *backing_file_str) 26136ebdcee2SJeff Cody { 26146ebdcee2SJeff Cody BlockDriverState *new_top_bs = NULL; 26156ebdcee2SJeff Cody int ret = -EIO; 26166ebdcee2SJeff Cody 26176ebdcee2SJeff Cody if (!top->drv || !base->drv) { 26186ebdcee2SJeff Cody goto exit; 26196ebdcee2SJeff Cody } 26206ebdcee2SJeff Cody 26216ebdcee2SJeff Cody new_top_bs = bdrv_find_overlay(active, top); 26226ebdcee2SJeff Cody 26236ebdcee2SJeff Cody if (new_top_bs == NULL) { 26246ebdcee2SJeff Cody /* we could not find the image above 'top', this is an error */ 26256ebdcee2SJeff Cody goto exit; 26266ebdcee2SJeff Cody } 26276ebdcee2SJeff Cody 2628760e0063SKevin Wolf /* special case of new_top_bs->backing->bs already pointing to base - nothing 26296ebdcee2SJeff Cody * to do, no intermediate images */ 2630760e0063SKevin Wolf if (backing_bs(new_top_bs) == base) { 26316ebdcee2SJeff Cody ret = 0; 26326ebdcee2SJeff Cody goto exit; 26336ebdcee2SJeff Cody } 26346ebdcee2SJeff Cody 26355db15a57SKevin Wolf /* Make sure that base is in the backing chain of top */ 26365db15a57SKevin Wolf if (!bdrv_chain_contains(top, base)) { 26376ebdcee2SJeff Cody goto exit; 26386ebdcee2SJeff Cody } 26396ebdcee2SJeff Cody 26406ebdcee2SJeff Cody /* success - we can delete the intermediate states, and link top->base */ 26415db15a57SKevin Wolf backing_file_str = backing_file_str ? backing_file_str : base->filename; 264254e26900SJeff Cody ret = bdrv_change_backing_file(new_top_bs, backing_file_str, 26435db15a57SKevin Wolf base->drv ? base->drv->format_name : ""); 26446ebdcee2SJeff Cody if (ret) { 26456ebdcee2SJeff Cody goto exit; 26466ebdcee2SJeff Cody } 26475db15a57SKevin Wolf bdrv_set_backing_hd(new_top_bs, base); 26486ebdcee2SJeff Cody 26496ebdcee2SJeff Cody ret = 0; 26506ebdcee2SJeff Cody exit: 26516ebdcee2SJeff Cody return ret; 26526ebdcee2SJeff Cody } 26536ebdcee2SJeff Cody 265483f64091Sbellard /** 265583f64091Sbellard * Truncate file to 'offset' bytes (needed only for file protocols) 265683f64091Sbellard */ 265752cdbc58SKevin Wolf int bdrv_truncate(BdrvChild *child, int64_t offset) 265883f64091Sbellard { 265952cdbc58SKevin Wolf BlockDriverState *bs = child->bs; 266083f64091Sbellard BlockDriver *drv = bs->drv; 266151762288SStefan Hajnoczi int ret; 266283f64091Sbellard if (!drv) 266319cb3738Sbellard return -ENOMEDIUM; 266483f64091Sbellard if (!drv->bdrv_truncate) 266583f64091Sbellard return -ENOTSUP; 266659f2689dSNaphtali Sprei if (bs->read_only) 266759f2689dSNaphtali Sprei return -EACCES; 26689c75e168SJeff Cody 266951762288SStefan Hajnoczi ret = drv->bdrv_truncate(bs, offset); 267051762288SStefan Hajnoczi if (ret == 0) { 267151762288SStefan Hajnoczi ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS); 2672ce1ffea8SJohn Snow bdrv_dirty_bitmap_truncate(bs); 26735c8cab48SKevin Wolf bdrv_parent_cb_resize(bs); 26743ff2f67aSEvgeny Yakovlev ++bs->write_gen; 267551762288SStefan Hajnoczi } 267651762288SStefan Hajnoczi return ret; 267783f64091Sbellard } 267883f64091Sbellard 267983f64091Sbellard /** 26804a1d5e1fSFam Zheng * Length of a allocated file in bytes. Sparse files are counted by actual 26814a1d5e1fSFam Zheng * allocated space. Return < 0 if error or unknown. 26824a1d5e1fSFam Zheng */ 26834a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs) 26844a1d5e1fSFam Zheng { 26854a1d5e1fSFam Zheng BlockDriver *drv = bs->drv; 26864a1d5e1fSFam Zheng if (!drv) { 26874a1d5e1fSFam Zheng return -ENOMEDIUM; 26884a1d5e1fSFam Zheng } 26894a1d5e1fSFam Zheng if (drv->bdrv_get_allocated_file_size) { 26904a1d5e1fSFam Zheng return drv->bdrv_get_allocated_file_size(bs); 26914a1d5e1fSFam Zheng } 26924a1d5e1fSFam Zheng if (bs->file) { 26939a4f4c31SKevin Wolf return bdrv_get_allocated_file_size(bs->file->bs); 26944a1d5e1fSFam Zheng } 26954a1d5e1fSFam Zheng return -ENOTSUP; 26964a1d5e1fSFam Zheng } 26974a1d5e1fSFam Zheng 26984a1d5e1fSFam Zheng /** 269965a9bb25SMarkus Armbruster * Return number of sectors on success, -errno on error. 270083f64091Sbellard */ 270165a9bb25SMarkus Armbruster int64_t bdrv_nb_sectors(BlockDriverState *bs) 270283f64091Sbellard { 270383f64091Sbellard BlockDriver *drv = bs->drv; 270465a9bb25SMarkus Armbruster 270583f64091Sbellard if (!drv) 270619cb3738Sbellard return -ENOMEDIUM; 270751762288SStefan Hajnoczi 2708b94a2610SKevin Wolf if (drv->has_variable_length) { 2709b94a2610SKevin Wolf int ret = refresh_total_sectors(bs, bs->total_sectors); 2710b94a2610SKevin Wolf if (ret < 0) { 2711b94a2610SKevin Wolf return ret; 2712fc01f7e7Sbellard } 271346a4e4e6SStefan Hajnoczi } 271465a9bb25SMarkus Armbruster return bs->total_sectors; 271565a9bb25SMarkus Armbruster } 271665a9bb25SMarkus Armbruster 271765a9bb25SMarkus Armbruster /** 271865a9bb25SMarkus Armbruster * Return length in bytes on success, -errno on error. 271965a9bb25SMarkus Armbruster * The length is always a multiple of BDRV_SECTOR_SIZE. 272065a9bb25SMarkus Armbruster */ 272165a9bb25SMarkus Armbruster int64_t bdrv_getlength(BlockDriverState *bs) 272265a9bb25SMarkus Armbruster { 272365a9bb25SMarkus Armbruster int64_t ret = bdrv_nb_sectors(bs); 272465a9bb25SMarkus Armbruster 27254a9c9ea0SFam Zheng ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret; 272665a9bb25SMarkus Armbruster return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE; 272746a4e4e6SStefan Hajnoczi } 2728fc01f7e7Sbellard 272919cb3738Sbellard /* return 0 as number of sectors if no device present or error */ 273096b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) 2731fc01f7e7Sbellard { 273265a9bb25SMarkus Armbruster int64_t nb_sectors = bdrv_nb_sectors(bs); 273365a9bb25SMarkus Armbruster 273465a9bb25SMarkus Armbruster *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors; 2735fc01f7e7Sbellard } 2736cf98951bSbellard 273754115412SEric Blake bool bdrv_is_read_only(BlockDriverState *bs) 2738b338082bSbellard { 2739b338082bSbellard return bs->read_only; 2740b338082bSbellard } 2741b338082bSbellard 274254115412SEric Blake bool bdrv_is_sg(BlockDriverState *bs) 2743985a03b0Sths { 2744985a03b0Sths return bs->sg; 2745985a03b0Sths } 2746985a03b0Sths 274754115412SEric Blake bool bdrv_is_encrypted(BlockDriverState *bs) 2748ea2384d3Sbellard { 2749760e0063SKevin Wolf if (bs->backing && bs->backing->bs->encrypted) { 275054115412SEric Blake return true; 2751760e0063SKevin Wolf } 2752ea2384d3Sbellard return bs->encrypted; 2753ea2384d3Sbellard } 2754ea2384d3Sbellard 275554115412SEric Blake bool bdrv_key_required(BlockDriverState *bs) 2756c0f4ce77Saliguori { 2757760e0063SKevin Wolf BdrvChild *backing = bs->backing; 2758c0f4ce77Saliguori 2759760e0063SKevin Wolf if (backing && backing->bs->encrypted && !backing->bs->valid_key) { 276054115412SEric Blake return true; 2761760e0063SKevin Wolf } 2762c0f4ce77Saliguori return (bs->encrypted && !bs->valid_key); 2763c0f4ce77Saliguori } 2764c0f4ce77Saliguori 2765ea2384d3Sbellard int bdrv_set_key(BlockDriverState *bs, const char *key) 2766ea2384d3Sbellard { 2767ea2384d3Sbellard int ret; 2768760e0063SKevin Wolf if (bs->backing && bs->backing->bs->encrypted) { 2769760e0063SKevin Wolf ret = bdrv_set_key(bs->backing->bs, key); 2770ea2384d3Sbellard if (ret < 0) 2771ea2384d3Sbellard return ret; 2772ea2384d3Sbellard if (!bs->encrypted) 2773ea2384d3Sbellard return 0; 2774ea2384d3Sbellard } 2775fd04a2aeSShahar Havivi if (!bs->encrypted) { 2776fd04a2aeSShahar Havivi return -EINVAL; 2777fd04a2aeSShahar Havivi } else if (!bs->drv || !bs->drv->bdrv_set_key) { 2778fd04a2aeSShahar Havivi return -ENOMEDIUM; 2779fd04a2aeSShahar Havivi } 2780c0f4ce77Saliguori ret = bs->drv->bdrv_set_key(bs, key); 2781bb5fc20fSaliguori if (ret < 0) { 278254115412SEric Blake bs->valid_key = false; 2783bb5fc20fSaliguori } else if (!bs->valid_key) { 2784bb5fc20fSaliguori /* call the change callback now, we skipped it on open */ 278554115412SEric Blake bs->valid_key = true; 27865c8cab48SKevin Wolf bdrv_parent_cb_change_media(bs, true); 2787bb5fc20fSaliguori } 2788c0f4ce77Saliguori return ret; 2789ea2384d3Sbellard } 2790ea2384d3Sbellard 27914d2855a3SMarkus Armbruster /* 27924d2855a3SMarkus Armbruster * Provide an encryption key for @bs. 27934d2855a3SMarkus Armbruster * If @key is non-null: 27944d2855a3SMarkus Armbruster * If @bs is not encrypted, fail. 27954d2855a3SMarkus Armbruster * Else if the key is invalid, fail. 27964d2855a3SMarkus Armbruster * Else set @bs's key to @key, replacing the existing key, if any. 27974d2855a3SMarkus Armbruster * If @key is null: 27984d2855a3SMarkus Armbruster * If @bs is encrypted and still lacks a key, fail. 27994d2855a3SMarkus Armbruster * Else do nothing. 28004d2855a3SMarkus Armbruster * On failure, store an error object through @errp if non-null. 28014d2855a3SMarkus Armbruster */ 28024d2855a3SMarkus Armbruster void bdrv_add_key(BlockDriverState *bs, const char *key, Error **errp) 28034d2855a3SMarkus Armbruster { 28044d2855a3SMarkus Armbruster if (key) { 28054d2855a3SMarkus Armbruster if (!bdrv_is_encrypted(bs)) { 280681e5f78aSAlberto Garcia error_setg(errp, "Node '%s' is not encrypted", 280781e5f78aSAlberto Garcia bdrv_get_device_or_node_name(bs)); 28084d2855a3SMarkus Armbruster } else if (bdrv_set_key(bs, key) < 0) { 2809c6bd8c70SMarkus Armbruster error_setg(errp, QERR_INVALID_PASSWORD); 28104d2855a3SMarkus Armbruster } 28114d2855a3SMarkus Armbruster } else { 28124d2855a3SMarkus Armbruster if (bdrv_key_required(bs)) { 2813b1ca6391SMarkus Armbruster error_set(errp, ERROR_CLASS_DEVICE_ENCRYPTED, 2814b1ca6391SMarkus Armbruster "'%s' (%s) is encrypted", 281581e5f78aSAlberto Garcia bdrv_get_device_or_node_name(bs), 28164d2855a3SMarkus Armbruster bdrv_get_encrypted_filename(bs)); 28174d2855a3SMarkus Armbruster } 28184d2855a3SMarkus Armbruster } 28194d2855a3SMarkus Armbruster } 28204d2855a3SMarkus Armbruster 2821f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs) 2822ea2384d3Sbellard { 2823f8d6bba1SMarkus Armbruster return bs->drv ? bs->drv->format_name : NULL; 2824ea2384d3Sbellard } 2825ea2384d3Sbellard 2826ada42401SStefan Hajnoczi static int qsort_strcmp(const void *a, const void *b) 2827ada42401SStefan Hajnoczi { 2828ceff5bd7SMax Reitz return strcmp(*(char *const *)a, *(char *const *)b); 2829ada42401SStefan Hajnoczi } 2830ada42401SStefan Hajnoczi 2831ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name), 2832ea2384d3Sbellard void *opaque) 2833ea2384d3Sbellard { 2834ea2384d3Sbellard BlockDriver *drv; 2835e855e4fbSJeff Cody int count = 0; 2836ada42401SStefan Hajnoczi int i; 2837e855e4fbSJeff Cody const char **formats = NULL; 2838ea2384d3Sbellard 28398a22f02aSStefan Hajnoczi QLIST_FOREACH(drv, &bdrv_drivers, list) { 2840e855e4fbSJeff Cody if (drv->format_name) { 2841e855e4fbSJeff Cody bool found = false; 2842e855e4fbSJeff Cody int i = count; 2843e855e4fbSJeff Cody while (formats && i && !found) { 2844e855e4fbSJeff Cody found = !strcmp(formats[--i], drv->format_name); 2845e855e4fbSJeff Cody } 2846e855e4fbSJeff Cody 2847e855e4fbSJeff Cody if (!found) { 28485839e53bSMarkus Armbruster formats = g_renew(const char *, formats, count + 1); 2849e855e4fbSJeff Cody formats[count++] = drv->format_name; 2850ea2384d3Sbellard } 2851ea2384d3Sbellard } 2852e855e4fbSJeff Cody } 2853ada42401SStefan Hajnoczi 2854eb0df69fSMax Reitz for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) { 2855eb0df69fSMax Reitz const char *format_name = block_driver_modules[i].format_name; 2856eb0df69fSMax Reitz 2857eb0df69fSMax Reitz if (format_name) { 2858eb0df69fSMax Reitz bool found = false; 2859eb0df69fSMax Reitz int j = count; 2860eb0df69fSMax Reitz 2861eb0df69fSMax Reitz while (formats && j && !found) { 2862eb0df69fSMax Reitz found = !strcmp(formats[--j], format_name); 2863eb0df69fSMax Reitz } 2864eb0df69fSMax Reitz 2865eb0df69fSMax Reitz if (!found) { 2866eb0df69fSMax Reitz formats = g_renew(const char *, formats, count + 1); 2867eb0df69fSMax Reitz formats[count++] = format_name; 2868eb0df69fSMax Reitz } 2869eb0df69fSMax Reitz } 2870eb0df69fSMax Reitz } 2871eb0df69fSMax Reitz 2872ada42401SStefan Hajnoczi qsort(formats, count, sizeof(formats[0]), qsort_strcmp); 2873ada42401SStefan Hajnoczi 2874ada42401SStefan Hajnoczi for (i = 0; i < count; i++) { 2875ada42401SStefan Hajnoczi it(opaque, formats[i]); 2876ada42401SStefan Hajnoczi } 2877ada42401SStefan Hajnoczi 2878e855e4fbSJeff Cody g_free(formats); 2879e855e4fbSJeff Cody } 2880ea2384d3Sbellard 2881dc364f4cSBenoît Canet /* This function is to find a node in the bs graph */ 2882dc364f4cSBenoît Canet BlockDriverState *bdrv_find_node(const char *node_name) 2883dc364f4cSBenoît Canet { 2884dc364f4cSBenoît Canet BlockDriverState *bs; 2885dc364f4cSBenoît Canet 2886dc364f4cSBenoît Canet assert(node_name); 2887dc364f4cSBenoît Canet 2888dc364f4cSBenoît Canet QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 2889dc364f4cSBenoît Canet if (!strcmp(node_name, bs->node_name)) { 2890dc364f4cSBenoît Canet return bs; 2891dc364f4cSBenoît Canet } 2892dc364f4cSBenoît Canet } 2893dc364f4cSBenoît Canet return NULL; 2894dc364f4cSBenoît Canet } 2895dc364f4cSBenoît Canet 2896c13163fbSBenoît Canet /* Put this QMP function here so it can access the static graph_bdrv_states. */ 2897d5a8ee60SAlberto Garcia BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp) 2898c13163fbSBenoît Canet { 2899c13163fbSBenoît Canet BlockDeviceInfoList *list, *entry; 2900c13163fbSBenoît Canet BlockDriverState *bs; 2901c13163fbSBenoît Canet 2902c13163fbSBenoît Canet list = NULL; 2903c13163fbSBenoît Canet QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 2904c83f9fbaSKevin Wolf BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp); 2905d5a8ee60SAlberto Garcia if (!info) { 2906d5a8ee60SAlberto Garcia qapi_free_BlockDeviceInfoList(list); 2907d5a8ee60SAlberto Garcia return NULL; 2908d5a8ee60SAlberto Garcia } 2909c13163fbSBenoît Canet entry = g_malloc0(sizeof(*entry)); 2910d5a8ee60SAlberto Garcia entry->value = info; 2911c13163fbSBenoît Canet entry->next = list; 2912c13163fbSBenoît Canet list = entry; 2913c13163fbSBenoît Canet } 2914c13163fbSBenoît Canet 2915c13163fbSBenoît Canet return list; 2916c13163fbSBenoît Canet } 2917c13163fbSBenoît Canet 291812d3ba82SBenoît Canet BlockDriverState *bdrv_lookup_bs(const char *device, 291912d3ba82SBenoît Canet const char *node_name, 292012d3ba82SBenoît Canet Error **errp) 292112d3ba82SBenoît Canet { 29227f06d47eSMarkus Armbruster BlockBackend *blk; 29237f06d47eSMarkus Armbruster BlockDriverState *bs; 292412d3ba82SBenoît Canet 292512d3ba82SBenoît Canet if (device) { 29267f06d47eSMarkus Armbruster blk = blk_by_name(device); 292712d3ba82SBenoît Canet 29287f06d47eSMarkus Armbruster if (blk) { 29299f4ed6fbSAlberto Garcia bs = blk_bs(blk); 29309f4ed6fbSAlberto Garcia if (!bs) { 29315433c24fSMax Reitz error_setg(errp, "Device '%s' has no medium", device); 29325433c24fSMax Reitz } 29335433c24fSMax Reitz 29349f4ed6fbSAlberto Garcia return bs; 293512d3ba82SBenoît Canet } 2936dd67fa50SBenoît Canet } 293712d3ba82SBenoît Canet 2938dd67fa50SBenoît Canet if (node_name) { 293912d3ba82SBenoît Canet bs = bdrv_find_node(node_name); 294012d3ba82SBenoît Canet 2941dd67fa50SBenoît Canet if (bs) { 2942dd67fa50SBenoît Canet return bs; 2943dd67fa50SBenoît Canet } 294412d3ba82SBenoît Canet } 294512d3ba82SBenoît Canet 2946dd67fa50SBenoît Canet error_setg(errp, "Cannot find device=%s nor node_name=%s", 2947dd67fa50SBenoît Canet device ? device : "", 2948dd67fa50SBenoît Canet node_name ? node_name : ""); 2949dd67fa50SBenoît Canet return NULL; 295012d3ba82SBenoît Canet } 295112d3ba82SBenoît Canet 29525a6684d2SJeff Cody /* If 'base' is in the same chain as 'top', return true. Otherwise, 29535a6684d2SJeff Cody * return false. If either argument is NULL, return false. */ 29545a6684d2SJeff Cody bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base) 29555a6684d2SJeff Cody { 29565a6684d2SJeff Cody while (top && top != base) { 2957760e0063SKevin Wolf top = backing_bs(top); 29585a6684d2SJeff Cody } 29595a6684d2SJeff Cody 29605a6684d2SJeff Cody return top != NULL; 29615a6684d2SJeff Cody } 29625a6684d2SJeff Cody 296304df765aSFam Zheng BlockDriverState *bdrv_next_node(BlockDriverState *bs) 296404df765aSFam Zheng { 296504df765aSFam Zheng if (!bs) { 296604df765aSFam Zheng return QTAILQ_FIRST(&graph_bdrv_states); 296704df765aSFam Zheng } 296804df765aSFam Zheng return QTAILQ_NEXT(bs, node_list); 296904df765aSFam Zheng } 297004df765aSFam Zheng 297120a9e77dSFam Zheng const char *bdrv_get_node_name(const BlockDriverState *bs) 297220a9e77dSFam Zheng { 297320a9e77dSFam Zheng return bs->node_name; 297420a9e77dSFam Zheng } 297520a9e77dSFam Zheng 29761f0c461bSKevin Wolf const char *bdrv_get_parent_name(const BlockDriverState *bs) 29774c265bf9SKevin Wolf { 29784c265bf9SKevin Wolf BdrvChild *c; 29794c265bf9SKevin Wolf const char *name; 29804c265bf9SKevin Wolf 29814c265bf9SKevin Wolf /* If multiple parents have a name, just pick the first one. */ 29824c265bf9SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 29834c265bf9SKevin Wolf if (c->role->get_name) { 29844c265bf9SKevin Wolf name = c->role->get_name(c); 29854c265bf9SKevin Wolf if (name && *name) { 29864c265bf9SKevin Wolf return name; 29874c265bf9SKevin Wolf } 29884c265bf9SKevin Wolf } 29894c265bf9SKevin Wolf } 29904c265bf9SKevin Wolf 29914c265bf9SKevin Wolf return NULL; 29924c265bf9SKevin Wolf } 29934c265bf9SKevin Wolf 29947f06d47eSMarkus Armbruster /* TODO check what callers really want: bs->node_name or blk_name() */ 2995bfb197e0SMarkus Armbruster const char *bdrv_get_device_name(const BlockDriverState *bs) 2996ea2384d3Sbellard { 29974c265bf9SKevin Wolf return bdrv_get_parent_name(bs) ?: ""; 2998ea2384d3Sbellard } 2999ea2384d3Sbellard 30009b2aa84fSAlberto Garcia /* This can be used to identify nodes that might not have a device 30019b2aa84fSAlberto Garcia * name associated. Since node and device names live in the same 30029b2aa84fSAlberto Garcia * namespace, the result is unambiguous. The exception is if both are 30039b2aa84fSAlberto Garcia * absent, then this returns an empty (non-null) string. */ 30049b2aa84fSAlberto Garcia const char *bdrv_get_device_or_node_name(const BlockDriverState *bs) 30059b2aa84fSAlberto Garcia { 30064c265bf9SKevin Wolf return bdrv_get_parent_name(bs) ?: bs->node_name; 30079b2aa84fSAlberto Garcia } 30089b2aa84fSAlberto Garcia 3009c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs) 3010c8433287SMarkus Armbruster { 3011c8433287SMarkus Armbruster return bs->open_flags; 3012c8433287SMarkus Armbruster } 3013c8433287SMarkus Armbruster 30143ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs) 30153ac21627SPeter Lieven { 30163ac21627SPeter Lieven return 1; 30173ac21627SPeter Lieven } 30183ac21627SPeter Lieven 3019f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs) 3020f2feebbdSKevin Wolf { 3021f2feebbdSKevin Wolf assert(bs->drv); 3022f2feebbdSKevin Wolf 302311212d8fSPaolo Bonzini /* If BS is a copy on write image, it is initialized to 302411212d8fSPaolo Bonzini the contents of the base image, which may not be zeroes. */ 3025760e0063SKevin Wolf if (bs->backing) { 302611212d8fSPaolo Bonzini return 0; 302711212d8fSPaolo Bonzini } 3028336c1c12SKevin Wolf if (bs->drv->bdrv_has_zero_init) { 3029336c1c12SKevin Wolf return bs->drv->bdrv_has_zero_init(bs); 3030f2feebbdSKevin Wolf } 3031f2feebbdSKevin Wolf 30323ac21627SPeter Lieven /* safe default */ 30333ac21627SPeter Lieven return 0; 3034f2feebbdSKevin Wolf } 3035f2feebbdSKevin Wolf 30364ce78691SPeter Lieven bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs) 30374ce78691SPeter Lieven { 30384ce78691SPeter Lieven BlockDriverInfo bdi; 30394ce78691SPeter Lieven 3040760e0063SKevin Wolf if (bs->backing) { 30414ce78691SPeter Lieven return false; 30424ce78691SPeter Lieven } 30434ce78691SPeter Lieven 30444ce78691SPeter Lieven if (bdrv_get_info(bs, &bdi) == 0) { 30454ce78691SPeter Lieven return bdi.unallocated_blocks_are_zero; 30464ce78691SPeter Lieven } 30474ce78691SPeter Lieven 30484ce78691SPeter Lieven return false; 30494ce78691SPeter Lieven } 30504ce78691SPeter Lieven 30514ce78691SPeter Lieven bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs) 30524ce78691SPeter Lieven { 30534ce78691SPeter Lieven BlockDriverInfo bdi; 30544ce78691SPeter Lieven 30552f0342efSDenis V. Lunev if (!(bs->open_flags & BDRV_O_UNMAP)) { 30564ce78691SPeter Lieven return false; 30574ce78691SPeter Lieven } 30584ce78691SPeter Lieven 30594ce78691SPeter Lieven if (bdrv_get_info(bs, &bdi) == 0) { 30604ce78691SPeter Lieven return bdi.can_write_zeroes_with_unmap; 30614ce78691SPeter Lieven } 30624ce78691SPeter Lieven 30634ce78691SPeter Lieven return false; 30644ce78691SPeter Lieven } 30654ce78691SPeter Lieven 3066045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs) 3067045df330Saliguori { 3068760e0063SKevin Wolf if (bs->backing && bs->backing->bs->encrypted) 3069045df330Saliguori return bs->backing_file; 3070045df330Saliguori else if (bs->encrypted) 3071045df330Saliguori return bs->filename; 3072045df330Saliguori else 3073045df330Saliguori return NULL; 3074045df330Saliguori } 3075045df330Saliguori 307683f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs, 307783f64091Sbellard char *filename, int filename_size) 307883f64091Sbellard { 307983f64091Sbellard pstrcpy(filename, filename_size, bs->backing_file); 308083f64091Sbellard } 308183f64091Sbellard 3082faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) 3083faea38e7Sbellard { 3084faea38e7Sbellard BlockDriver *drv = bs->drv; 3085faea38e7Sbellard if (!drv) 308619cb3738Sbellard return -ENOMEDIUM; 3087faea38e7Sbellard if (!drv->bdrv_get_info) 3088faea38e7Sbellard return -ENOTSUP; 3089faea38e7Sbellard memset(bdi, 0, sizeof(*bdi)); 3090faea38e7Sbellard return drv->bdrv_get_info(bs, bdi); 3091faea38e7Sbellard } 3092faea38e7Sbellard 3093eae041feSMax Reitz ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs) 3094eae041feSMax Reitz { 3095eae041feSMax Reitz BlockDriver *drv = bs->drv; 3096eae041feSMax Reitz if (drv && drv->bdrv_get_specific_info) { 3097eae041feSMax Reitz return drv->bdrv_get_specific_info(bs); 3098eae041feSMax Reitz } 3099eae041feSMax Reitz return NULL; 3100eae041feSMax Reitz } 3101eae041feSMax Reitz 3102a31939e6SEric Blake void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event) 31038b9b0cc2SKevin Wolf { 3104bf736fe3SKevin Wolf if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) { 31058b9b0cc2SKevin Wolf return; 31068b9b0cc2SKevin Wolf } 31078b9b0cc2SKevin Wolf 3108bf736fe3SKevin Wolf bs->drv->bdrv_debug_event(bs, event); 310941c695c7SKevin Wolf } 31108b9b0cc2SKevin Wolf 311141c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, 311241c695c7SKevin Wolf const char *tag) 311341c695c7SKevin Wolf { 311441c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { 31159a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 311641c695c7SKevin Wolf } 311741c695c7SKevin Wolf 311841c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { 311941c695c7SKevin Wolf return bs->drv->bdrv_debug_breakpoint(bs, event, tag); 312041c695c7SKevin Wolf } 312141c695c7SKevin Wolf 312241c695c7SKevin Wolf return -ENOTSUP; 312341c695c7SKevin Wolf } 312441c695c7SKevin Wolf 31254cc70e93SFam Zheng int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag) 31264cc70e93SFam Zheng { 31274cc70e93SFam Zheng while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) { 31289a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 31294cc70e93SFam Zheng } 31304cc70e93SFam Zheng 31314cc70e93SFam Zheng if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) { 31324cc70e93SFam Zheng return bs->drv->bdrv_debug_remove_breakpoint(bs, tag); 31334cc70e93SFam Zheng } 31344cc70e93SFam Zheng 31354cc70e93SFam Zheng return -ENOTSUP; 31364cc70e93SFam Zheng } 31374cc70e93SFam Zheng 313841c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag) 313941c695c7SKevin Wolf { 3140938789eaSMax Reitz while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) { 31419a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 314241c695c7SKevin Wolf } 314341c695c7SKevin Wolf 314441c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_resume) { 314541c695c7SKevin Wolf return bs->drv->bdrv_debug_resume(bs, tag); 314641c695c7SKevin Wolf } 314741c695c7SKevin Wolf 314841c695c7SKevin Wolf return -ENOTSUP; 314941c695c7SKevin Wolf } 315041c695c7SKevin Wolf 315141c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) 315241c695c7SKevin Wolf { 315341c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { 31549a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 315541c695c7SKevin Wolf } 315641c695c7SKevin Wolf 315741c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { 315841c695c7SKevin Wolf return bs->drv->bdrv_debug_is_suspended(bs, tag); 315941c695c7SKevin Wolf } 316041c695c7SKevin Wolf 316141c695c7SKevin Wolf return false; 31628b9b0cc2SKevin Wolf } 31638b9b0cc2SKevin Wolf 3164b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol. If it is 3165b1b1d783SJeff Cody * relative, it must be relative to the chain. So, passing in bs->filename 3166b1b1d783SJeff Cody * from a BDS as backing_file should not be done, as that may be relative to 3167b1b1d783SJeff Cody * the CWD rather than the chain. */ 3168e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, 3169e8a6bb9cSMarcelo Tosatti const char *backing_file) 3170e8a6bb9cSMarcelo Tosatti { 3171b1b1d783SJeff Cody char *filename_full = NULL; 3172b1b1d783SJeff Cody char *backing_file_full = NULL; 3173b1b1d783SJeff Cody char *filename_tmp = NULL; 3174b1b1d783SJeff Cody int is_protocol = 0; 3175b1b1d783SJeff Cody BlockDriverState *curr_bs = NULL; 3176b1b1d783SJeff Cody BlockDriverState *retval = NULL; 3177418661e0SJeff Cody Error *local_error = NULL; 3178b1b1d783SJeff Cody 3179b1b1d783SJeff Cody if (!bs || !bs->drv || !backing_file) { 3180e8a6bb9cSMarcelo Tosatti return NULL; 3181e8a6bb9cSMarcelo Tosatti } 3182e8a6bb9cSMarcelo Tosatti 3183b1b1d783SJeff Cody filename_full = g_malloc(PATH_MAX); 3184b1b1d783SJeff Cody backing_file_full = g_malloc(PATH_MAX); 3185b1b1d783SJeff Cody filename_tmp = g_malloc(PATH_MAX); 3186b1b1d783SJeff Cody 3187b1b1d783SJeff Cody is_protocol = path_has_protocol(backing_file); 3188b1b1d783SJeff Cody 3189760e0063SKevin Wolf for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) { 3190b1b1d783SJeff Cody 3191b1b1d783SJeff Cody /* If either of the filename paths is actually a protocol, then 3192b1b1d783SJeff Cody * compare unmodified paths; otherwise make paths relative */ 3193b1b1d783SJeff Cody if (is_protocol || path_has_protocol(curr_bs->backing_file)) { 3194b1b1d783SJeff Cody if (strcmp(backing_file, curr_bs->backing_file) == 0) { 3195760e0063SKevin Wolf retval = curr_bs->backing->bs; 3196b1b1d783SJeff Cody break; 3197b1b1d783SJeff Cody } 3198418661e0SJeff Cody /* Also check against the full backing filename for the image */ 3199418661e0SJeff Cody bdrv_get_full_backing_filename(curr_bs, backing_file_full, PATH_MAX, 3200418661e0SJeff Cody &local_error); 3201418661e0SJeff Cody if (local_error == NULL) { 3202418661e0SJeff Cody if (strcmp(backing_file, backing_file_full) == 0) { 3203418661e0SJeff Cody retval = curr_bs->backing->bs; 3204418661e0SJeff Cody break; 3205418661e0SJeff Cody } 3206418661e0SJeff Cody } else { 3207418661e0SJeff Cody error_free(local_error); 3208418661e0SJeff Cody local_error = NULL; 3209418661e0SJeff Cody } 3210e8a6bb9cSMarcelo Tosatti } else { 3211b1b1d783SJeff Cody /* If not an absolute filename path, make it relative to the current 3212b1b1d783SJeff Cody * image's filename path */ 3213b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 3214b1b1d783SJeff Cody backing_file); 3215b1b1d783SJeff Cody 3216b1b1d783SJeff Cody /* We are going to compare absolute pathnames */ 3217b1b1d783SJeff Cody if (!realpath(filename_tmp, filename_full)) { 3218b1b1d783SJeff Cody continue; 3219b1b1d783SJeff Cody } 3220b1b1d783SJeff Cody 3221b1b1d783SJeff Cody /* We need to make sure the backing filename we are comparing against 3222b1b1d783SJeff Cody * is relative to the current image filename (or absolute) */ 3223b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 3224b1b1d783SJeff Cody curr_bs->backing_file); 3225b1b1d783SJeff Cody 3226b1b1d783SJeff Cody if (!realpath(filename_tmp, backing_file_full)) { 3227b1b1d783SJeff Cody continue; 3228b1b1d783SJeff Cody } 3229b1b1d783SJeff Cody 3230b1b1d783SJeff Cody if (strcmp(backing_file_full, filename_full) == 0) { 3231760e0063SKevin Wolf retval = curr_bs->backing->bs; 3232b1b1d783SJeff Cody break; 3233b1b1d783SJeff Cody } 3234e8a6bb9cSMarcelo Tosatti } 3235e8a6bb9cSMarcelo Tosatti } 3236e8a6bb9cSMarcelo Tosatti 3237b1b1d783SJeff Cody g_free(filename_full); 3238b1b1d783SJeff Cody g_free(backing_file_full); 3239b1b1d783SJeff Cody g_free(filename_tmp); 3240b1b1d783SJeff Cody return retval; 3241e8a6bb9cSMarcelo Tosatti } 3242e8a6bb9cSMarcelo Tosatti 3243f198fd1cSBenoît Canet int bdrv_get_backing_file_depth(BlockDriverState *bs) 3244f198fd1cSBenoît Canet { 3245f198fd1cSBenoît Canet if (!bs->drv) { 3246f198fd1cSBenoît Canet return 0; 3247f198fd1cSBenoît Canet } 3248f198fd1cSBenoît Canet 3249760e0063SKevin Wolf if (!bs->backing) { 3250f198fd1cSBenoît Canet return 0; 3251f198fd1cSBenoît Canet } 3252f198fd1cSBenoît Canet 3253760e0063SKevin Wolf return 1 + bdrv_get_backing_file_depth(bs->backing->bs); 3254f198fd1cSBenoît Canet } 3255f198fd1cSBenoît Canet 3256ea2384d3Sbellard void bdrv_init(void) 3257ea2384d3Sbellard { 32585efa9d5aSAnthony Liguori module_call_init(MODULE_INIT_BLOCK); 3259ea2384d3Sbellard } 3260ce1a14dcSpbrook 3261eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void) 3262eb852011SMarkus Armbruster { 3263eb852011SMarkus Armbruster use_bdrv_whitelist = 1; 3264eb852011SMarkus Armbruster bdrv_init(); 3265eb852011SMarkus Armbruster } 3266eb852011SMarkus Armbruster 32675a8a30dbSKevin Wolf void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp) 32680f15423cSAnthony Liguori { 32690d1c5c91SFam Zheng BdrvChild *child; 32705a8a30dbSKevin Wolf Error *local_err = NULL; 32715a8a30dbSKevin Wolf int ret; 32725a8a30dbSKevin Wolf 32733456a8d1SKevin Wolf if (!bs->drv) { 32743456a8d1SKevin Wolf return; 32750f15423cSAnthony Liguori } 32763456a8d1SKevin Wolf 327704c01a5cSKevin Wolf if (!(bs->open_flags & BDRV_O_INACTIVE)) { 32787ea2d269SAlexey Kardashevskiy return; 32797ea2d269SAlexey Kardashevskiy } 32807ea2d269SAlexey Kardashevskiy 328116e977d5SVladimir Sementsov-Ogievskiy QLIST_FOREACH(child, &bs->children, next) { 328216e977d5SVladimir Sementsov-Ogievskiy bdrv_invalidate_cache(child->bs, &local_err); 32835a8a30dbSKevin Wolf if (local_err) { 32845a8a30dbSKevin Wolf error_propagate(errp, local_err); 32855a8a30dbSKevin Wolf return; 32863456a8d1SKevin Wolf } 32870d1c5c91SFam Zheng } 32880d1c5c91SFam Zheng 328916e977d5SVladimir Sementsov-Ogievskiy bs->open_flags &= ~BDRV_O_INACTIVE; 329016e977d5SVladimir Sementsov-Ogievskiy if (bs->drv->bdrv_invalidate_cache) { 329116e977d5SVladimir Sementsov-Ogievskiy bs->drv->bdrv_invalidate_cache(bs, &local_err); 32920d1c5c91SFam Zheng if (local_err) { 32930d1c5c91SFam Zheng bs->open_flags |= BDRV_O_INACTIVE; 32940d1c5c91SFam Zheng error_propagate(errp, local_err); 32950d1c5c91SFam Zheng return; 32960d1c5c91SFam Zheng } 32970d1c5c91SFam Zheng } 32983456a8d1SKevin Wolf 32995a8a30dbSKevin Wolf ret = refresh_total_sectors(bs, bs->total_sectors); 33005a8a30dbSKevin Wolf if (ret < 0) { 330104c01a5cSKevin Wolf bs->open_flags |= BDRV_O_INACTIVE; 33025a8a30dbSKevin Wolf error_setg_errno(errp, -ret, "Could not refresh total sector count"); 33035a8a30dbSKevin Wolf return; 33045a8a30dbSKevin Wolf } 33050f15423cSAnthony Liguori } 33060f15423cSAnthony Liguori 33075a8a30dbSKevin Wolf void bdrv_invalidate_cache_all(Error **errp) 33080f15423cSAnthony Liguori { 33097c8eece4SKevin Wolf BlockDriverState *bs; 33105a8a30dbSKevin Wolf Error *local_err = NULL; 331188be7b4bSKevin Wolf BdrvNextIterator it; 33120f15423cSAnthony Liguori 331388be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 3314ed78cda3SStefan Hajnoczi AioContext *aio_context = bdrv_get_aio_context(bs); 3315ed78cda3SStefan Hajnoczi 3316ed78cda3SStefan Hajnoczi aio_context_acquire(aio_context); 33175a8a30dbSKevin Wolf bdrv_invalidate_cache(bs, &local_err); 3318ed78cda3SStefan Hajnoczi aio_context_release(aio_context); 33195a8a30dbSKevin Wolf if (local_err) { 33205a8a30dbSKevin Wolf error_propagate(errp, local_err); 33215a8a30dbSKevin Wolf return; 33225a8a30dbSKevin Wolf } 33230f15423cSAnthony Liguori } 33240f15423cSAnthony Liguori } 33250f15423cSAnthony Liguori 3326aad0b7a0SFam Zheng static int bdrv_inactivate_recurse(BlockDriverState *bs, 3327aad0b7a0SFam Zheng bool setting_flag) 332876b1c7feSKevin Wolf { 3329aad0b7a0SFam Zheng BdrvChild *child; 333076b1c7feSKevin Wolf int ret; 333176b1c7feSKevin Wolf 3332aad0b7a0SFam Zheng if (!setting_flag && bs->drv->bdrv_inactivate) { 333376b1c7feSKevin Wolf ret = bs->drv->bdrv_inactivate(bs); 333476b1c7feSKevin Wolf if (ret < 0) { 333576b1c7feSKevin Wolf return ret; 333676b1c7feSKevin Wolf } 333776b1c7feSKevin Wolf } 333876b1c7feSKevin Wolf 3339aad0b7a0SFam Zheng QLIST_FOREACH(child, &bs->children, next) { 3340aad0b7a0SFam Zheng ret = bdrv_inactivate_recurse(child->bs, setting_flag); 3341aad0b7a0SFam Zheng if (ret < 0) { 3342aad0b7a0SFam Zheng return ret; 3343aad0b7a0SFam Zheng } 3344aad0b7a0SFam Zheng } 3345aad0b7a0SFam Zheng 3346aad0b7a0SFam Zheng if (setting_flag) { 334776b1c7feSKevin Wolf bs->open_flags |= BDRV_O_INACTIVE; 3348aad0b7a0SFam Zheng } 334976b1c7feSKevin Wolf return 0; 335076b1c7feSKevin Wolf } 335176b1c7feSKevin Wolf 335276b1c7feSKevin Wolf int bdrv_inactivate_all(void) 335376b1c7feSKevin Wolf { 335479720af6SMax Reitz BlockDriverState *bs = NULL; 335588be7b4bSKevin Wolf BdrvNextIterator it; 3356aad0b7a0SFam Zheng int ret = 0; 3357aad0b7a0SFam Zheng int pass; 335876b1c7feSKevin Wolf 335988be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 3360aad0b7a0SFam Zheng aio_context_acquire(bdrv_get_aio_context(bs)); 3361aad0b7a0SFam Zheng } 336276b1c7feSKevin Wolf 3363aad0b7a0SFam Zheng /* We do two passes of inactivation. The first pass calls to drivers' 3364aad0b7a0SFam Zheng * .bdrv_inactivate callbacks recursively so all cache is flushed to disk; 3365aad0b7a0SFam Zheng * the second pass sets the BDRV_O_INACTIVE flag so that no further write 3366aad0b7a0SFam Zheng * is allowed. */ 3367aad0b7a0SFam Zheng for (pass = 0; pass < 2; pass++) { 336888be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 3369aad0b7a0SFam Zheng ret = bdrv_inactivate_recurse(bs, pass); 337076b1c7feSKevin Wolf if (ret < 0) { 3371aad0b7a0SFam Zheng goto out; 3372aad0b7a0SFam Zheng } 337376b1c7feSKevin Wolf } 337476b1c7feSKevin Wolf } 337576b1c7feSKevin Wolf 3376aad0b7a0SFam Zheng out: 337788be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 3378aad0b7a0SFam Zheng aio_context_release(bdrv_get_aio_context(bs)); 3379aad0b7a0SFam Zheng } 3380aad0b7a0SFam Zheng 3381aad0b7a0SFam Zheng return ret; 338276b1c7feSKevin Wolf } 338376b1c7feSKevin Wolf 3384f9f05dc5SKevin Wolf /**************************************************************/ 338519cb3738Sbellard /* removable device support */ 338619cb3738Sbellard 338719cb3738Sbellard /** 338819cb3738Sbellard * Return TRUE if the media is present 338919cb3738Sbellard */ 3390e031f750SMax Reitz bool bdrv_is_inserted(BlockDriverState *bs) 339119cb3738Sbellard { 339219cb3738Sbellard BlockDriver *drv = bs->drv; 339328d7a789SMax Reitz BdrvChild *child; 3394a1aff5bfSMarkus Armbruster 3395e031f750SMax Reitz if (!drv) { 3396e031f750SMax Reitz return false; 3397e031f750SMax Reitz } 339828d7a789SMax Reitz if (drv->bdrv_is_inserted) { 3399a1aff5bfSMarkus Armbruster return drv->bdrv_is_inserted(bs); 340019cb3738Sbellard } 340128d7a789SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 340228d7a789SMax Reitz if (!bdrv_is_inserted(child->bs)) { 340328d7a789SMax Reitz return false; 340428d7a789SMax Reitz } 340528d7a789SMax Reitz } 340628d7a789SMax Reitz return true; 340728d7a789SMax Reitz } 340819cb3738Sbellard 340919cb3738Sbellard /** 34108e49ca46SMarkus Armbruster * Return whether the media changed since the last call to this 34118e49ca46SMarkus Armbruster * function, or -ENOTSUP if we don't know. Most drivers don't know. 341219cb3738Sbellard */ 341319cb3738Sbellard int bdrv_media_changed(BlockDriverState *bs) 341419cb3738Sbellard { 341519cb3738Sbellard BlockDriver *drv = bs->drv; 341619cb3738Sbellard 34178e49ca46SMarkus Armbruster if (drv && drv->bdrv_media_changed) { 34188e49ca46SMarkus Armbruster return drv->bdrv_media_changed(bs); 34198e49ca46SMarkus Armbruster } 34208e49ca46SMarkus Armbruster return -ENOTSUP; 342119cb3738Sbellard } 342219cb3738Sbellard 342319cb3738Sbellard /** 342419cb3738Sbellard * If eject_flag is TRUE, eject the media. Otherwise, close the tray 342519cb3738Sbellard */ 3426f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag) 342719cb3738Sbellard { 342819cb3738Sbellard BlockDriver *drv = bs->drv; 342919cb3738Sbellard 3430822e1cd1SMarkus Armbruster if (drv && drv->bdrv_eject) { 3431822e1cd1SMarkus Armbruster drv->bdrv_eject(bs, eject_flag); 343219cb3738Sbellard } 343319cb3738Sbellard } 343419cb3738Sbellard 343519cb3738Sbellard /** 343619cb3738Sbellard * Lock or unlock the media (if it is locked, the user won't be able 343719cb3738Sbellard * to eject it manually). 343819cb3738Sbellard */ 3439025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked) 344019cb3738Sbellard { 344119cb3738Sbellard BlockDriver *drv = bs->drv; 344219cb3738Sbellard 3443025e849aSMarkus Armbruster trace_bdrv_lock_medium(bs, locked); 3444b8c6d095SStefan Hajnoczi 3445025e849aSMarkus Armbruster if (drv && drv->bdrv_lock_medium) { 3446025e849aSMarkus Armbruster drv->bdrv_lock_medium(bs, locked); 344719cb3738Sbellard } 344819cb3738Sbellard } 3449985a03b0Sths 34509fcb0251SFam Zheng /* Get a reference to bs */ 34519fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs) 34529fcb0251SFam Zheng { 34539fcb0251SFam Zheng bs->refcnt++; 34549fcb0251SFam Zheng } 34559fcb0251SFam Zheng 34569fcb0251SFam Zheng /* Release a previously grabbed reference to bs. 34579fcb0251SFam Zheng * If after releasing, reference count is zero, the BlockDriverState is 34589fcb0251SFam Zheng * deleted. */ 34599fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs) 34609fcb0251SFam Zheng { 34619a4d5ca6SJeff Cody if (!bs) { 34629a4d5ca6SJeff Cody return; 34639a4d5ca6SJeff Cody } 34649fcb0251SFam Zheng assert(bs->refcnt > 0); 34659fcb0251SFam Zheng if (--bs->refcnt == 0) { 34669fcb0251SFam Zheng bdrv_delete(bs); 34679fcb0251SFam Zheng } 34689fcb0251SFam Zheng } 34699fcb0251SFam Zheng 3470fbe40ff7SFam Zheng struct BdrvOpBlocker { 3471fbe40ff7SFam Zheng Error *reason; 3472fbe40ff7SFam Zheng QLIST_ENTRY(BdrvOpBlocker) list; 3473fbe40ff7SFam Zheng }; 3474fbe40ff7SFam Zheng 3475fbe40ff7SFam Zheng bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp) 3476fbe40ff7SFam Zheng { 3477fbe40ff7SFam Zheng BdrvOpBlocker *blocker; 3478fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 3479fbe40ff7SFam Zheng if (!QLIST_EMPTY(&bs->op_blockers[op])) { 3480fbe40ff7SFam Zheng blocker = QLIST_FIRST(&bs->op_blockers[op]); 3481fbe40ff7SFam Zheng if (errp) { 3482e43bfd9cSMarkus Armbruster *errp = error_copy(blocker->reason); 3483e43bfd9cSMarkus Armbruster error_prepend(errp, "Node '%s' is busy: ", 3484e43bfd9cSMarkus Armbruster bdrv_get_device_or_node_name(bs)); 3485fbe40ff7SFam Zheng } 3486fbe40ff7SFam Zheng return true; 3487fbe40ff7SFam Zheng } 3488fbe40ff7SFam Zheng return false; 3489fbe40ff7SFam Zheng } 3490fbe40ff7SFam Zheng 3491fbe40ff7SFam Zheng void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason) 3492fbe40ff7SFam Zheng { 3493fbe40ff7SFam Zheng BdrvOpBlocker *blocker; 3494fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 3495fbe40ff7SFam Zheng 34965839e53bSMarkus Armbruster blocker = g_new0(BdrvOpBlocker, 1); 3497fbe40ff7SFam Zheng blocker->reason = reason; 3498fbe40ff7SFam Zheng QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list); 3499fbe40ff7SFam Zheng } 3500fbe40ff7SFam Zheng 3501fbe40ff7SFam Zheng void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason) 3502fbe40ff7SFam Zheng { 3503fbe40ff7SFam Zheng BdrvOpBlocker *blocker, *next; 3504fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 3505fbe40ff7SFam Zheng QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) { 3506fbe40ff7SFam Zheng if (blocker->reason == reason) { 3507fbe40ff7SFam Zheng QLIST_REMOVE(blocker, list); 3508fbe40ff7SFam Zheng g_free(blocker); 3509fbe40ff7SFam Zheng } 3510fbe40ff7SFam Zheng } 3511fbe40ff7SFam Zheng } 3512fbe40ff7SFam Zheng 3513fbe40ff7SFam Zheng void bdrv_op_block_all(BlockDriverState *bs, Error *reason) 3514fbe40ff7SFam Zheng { 3515fbe40ff7SFam Zheng int i; 3516fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 3517fbe40ff7SFam Zheng bdrv_op_block(bs, i, reason); 3518fbe40ff7SFam Zheng } 3519fbe40ff7SFam Zheng } 3520fbe40ff7SFam Zheng 3521fbe40ff7SFam Zheng void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason) 3522fbe40ff7SFam Zheng { 3523fbe40ff7SFam Zheng int i; 3524fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 3525fbe40ff7SFam Zheng bdrv_op_unblock(bs, i, reason); 3526fbe40ff7SFam Zheng } 3527fbe40ff7SFam Zheng } 3528fbe40ff7SFam Zheng 3529fbe40ff7SFam Zheng bool bdrv_op_blocker_is_empty(BlockDriverState *bs) 3530fbe40ff7SFam Zheng { 3531fbe40ff7SFam Zheng int i; 3532fbe40ff7SFam Zheng 3533fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 3534fbe40ff7SFam Zheng if (!QLIST_EMPTY(&bs->op_blockers[i])) { 3535fbe40ff7SFam Zheng return false; 3536fbe40ff7SFam Zheng } 3537fbe40ff7SFam Zheng } 3538fbe40ff7SFam Zheng return true; 3539fbe40ff7SFam Zheng } 3540fbe40ff7SFam Zheng 3541d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt, 3542f88e1a42SJes Sorensen const char *base_filename, const char *base_fmt, 3543f382d43aSMiroslav Rezanina char *options, uint64_t img_size, int flags, 3544f382d43aSMiroslav Rezanina Error **errp, bool quiet) 3545f88e1a42SJes Sorensen { 354683d0521aSChunyan Liu QemuOptsList *create_opts = NULL; 354783d0521aSChunyan Liu QemuOpts *opts = NULL; 354883d0521aSChunyan Liu const char *backing_fmt, *backing_file; 354983d0521aSChunyan Liu int64_t size; 3550f88e1a42SJes Sorensen BlockDriver *drv, *proto_drv; 3551cc84d90fSMax Reitz Error *local_err = NULL; 3552f88e1a42SJes Sorensen int ret = 0; 3553f88e1a42SJes Sorensen 3554f88e1a42SJes Sorensen /* Find driver and parse its options */ 3555f88e1a42SJes Sorensen drv = bdrv_find_format(fmt); 3556f88e1a42SJes Sorensen if (!drv) { 355771c79813SLuiz Capitulino error_setg(errp, "Unknown file format '%s'", fmt); 3558d92ada22SLuiz Capitulino return; 3559f88e1a42SJes Sorensen } 3560f88e1a42SJes Sorensen 3561b65a5e12SMax Reitz proto_drv = bdrv_find_protocol(filename, true, errp); 3562f88e1a42SJes Sorensen if (!proto_drv) { 3563d92ada22SLuiz Capitulino return; 3564f88e1a42SJes Sorensen } 3565f88e1a42SJes Sorensen 3566c6149724SMax Reitz if (!drv->create_opts) { 3567c6149724SMax Reitz error_setg(errp, "Format driver '%s' does not support image creation", 3568c6149724SMax Reitz drv->format_name); 3569c6149724SMax Reitz return; 3570c6149724SMax Reitz } 3571c6149724SMax Reitz 3572c6149724SMax Reitz if (!proto_drv->create_opts) { 3573c6149724SMax Reitz error_setg(errp, "Protocol driver '%s' does not support image creation", 3574c6149724SMax Reitz proto_drv->format_name); 3575c6149724SMax Reitz return; 3576c6149724SMax Reitz } 3577c6149724SMax Reitz 3578c282e1fdSChunyan Liu create_opts = qemu_opts_append(create_opts, drv->create_opts); 3579c282e1fdSChunyan Liu create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); 3580f88e1a42SJes Sorensen 3581f88e1a42SJes Sorensen /* Create parameter list with default values */ 358283d0521aSChunyan Liu opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); 358339101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort); 3584f88e1a42SJes Sorensen 3585f88e1a42SJes Sorensen /* Parse -o options */ 3586f88e1a42SJes Sorensen if (options) { 3587dc523cd3SMarkus Armbruster qemu_opts_do_parse(opts, options, NULL, &local_err); 3588dc523cd3SMarkus Armbruster if (local_err) { 3589dc523cd3SMarkus Armbruster error_report_err(local_err); 3590dc523cd3SMarkus Armbruster local_err = NULL; 359183d0521aSChunyan Liu error_setg(errp, "Invalid options for file format '%s'", fmt); 3592f88e1a42SJes Sorensen goto out; 3593f88e1a42SJes Sorensen } 3594f88e1a42SJes Sorensen } 3595f88e1a42SJes Sorensen 3596f88e1a42SJes Sorensen if (base_filename) { 3597f43e47dbSMarkus Armbruster qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err); 35986be4194bSMarkus Armbruster if (local_err) { 359971c79813SLuiz Capitulino error_setg(errp, "Backing file not supported for file format '%s'", 360071c79813SLuiz Capitulino fmt); 3601f88e1a42SJes Sorensen goto out; 3602f88e1a42SJes Sorensen } 3603f88e1a42SJes Sorensen } 3604f88e1a42SJes Sorensen 3605f88e1a42SJes Sorensen if (base_fmt) { 3606f43e47dbSMarkus Armbruster qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err); 36076be4194bSMarkus Armbruster if (local_err) { 360871c79813SLuiz Capitulino error_setg(errp, "Backing file format not supported for file " 360971c79813SLuiz Capitulino "format '%s'", fmt); 3610f88e1a42SJes Sorensen goto out; 3611f88e1a42SJes Sorensen } 3612f88e1a42SJes Sorensen } 3613f88e1a42SJes Sorensen 361483d0521aSChunyan Liu backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); 361583d0521aSChunyan Liu if (backing_file) { 361683d0521aSChunyan Liu if (!strcmp(filename, backing_file)) { 361771c79813SLuiz Capitulino error_setg(errp, "Error: Trying to create an image with the " 361871c79813SLuiz Capitulino "same filename as the backing file"); 3619792da93aSJes Sorensen goto out; 3620792da93aSJes Sorensen } 3621792da93aSJes Sorensen } 3622792da93aSJes Sorensen 362383d0521aSChunyan Liu backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT); 3624f88e1a42SJes Sorensen 3625f88e1a42SJes Sorensen // The size for the image must always be specified, with one exception: 3626f88e1a42SJes Sorensen // If we are using a backing file, we can obtain the size from there 362783d0521aSChunyan Liu size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0); 362883d0521aSChunyan Liu if (size == -1) { 362983d0521aSChunyan Liu if (backing_file) { 363066f6b814SMax Reitz BlockDriverState *bs; 363129168018SMax Reitz char *full_backing = g_new0(char, PATH_MAX); 363252bf1e72SMarkus Armbruster int64_t size; 363363090dacSPaolo Bonzini int back_flags; 3634e6641719SMax Reitz QDict *backing_options = NULL; 363563090dacSPaolo Bonzini 363629168018SMax Reitz bdrv_get_full_backing_filename_from_filename(filename, backing_file, 363729168018SMax Reitz full_backing, PATH_MAX, 363829168018SMax Reitz &local_err); 363929168018SMax Reitz if (local_err) { 364029168018SMax Reitz g_free(full_backing); 364129168018SMax Reitz goto out; 364229168018SMax Reitz } 364329168018SMax Reitz 364463090dacSPaolo Bonzini /* backing files always opened read-only */ 364561de4c68SKevin Wolf back_flags = flags; 3646bfd18d1eSKevin Wolf back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); 3647f88e1a42SJes Sorensen 3648e6641719SMax Reitz if (backing_fmt) { 3649e6641719SMax Reitz backing_options = qdict_new(); 3650e6641719SMax Reitz qdict_put(backing_options, "driver", 3651e6641719SMax Reitz qstring_from_str(backing_fmt)); 3652e6641719SMax Reitz } 3653e6641719SMax Reitz 36545b363937SMax Reitz bs = bdrv_open(full_backing, NULL, backing_options, back_flags, 36555b363937SMax Reitz &local_err); 365629168018SMax Reitz g_free(full_backing); 36575b363937SMax Reitz if (!bs) { 3658f88e1a42SJes Sorensen goto out; 3659f88e1a42SJes Sorensen } 366052bf1e72SMarkus Armbruster size = bdrv_getlength(bs); 366152bf1e72SMarkus Armbruster if (size < 0) { 366252bf1e72SMarkus Armbruster error_setg_errno(errp, -size, "Could not get size of '%s'", 366352bf1e72SMarkus Armbruster backing_file); 366452bf1e72SMarkus Armbruster bdrv_unref(bs); 366552bf1e72SMarkus Armbruster goto out; 366652bf1e72SMarkus Armbruster } 3667f88e1a42SJes Sorensen 366839101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort); 366966f6b814SMax Reitz 367066f6b814SMax Reitz bdrv_unref(bs); 3671f88e1a42SJes Sorensen } else { 367271c79813SLuiz Capitulino error_setg(errp, "Image creation needs a size parameter"); 3673f88e1a42SJes Sorensen goto out; 3674f88e1a42SJes Sorensen } 3675f88e1a42SJes Sorensen } 3676f88e1a42SJes Sorensen 3677f382d43aSMiroslav Rezanina if (!quiet) { 3678f88e1a42SJes Sorensen printf("Formatting '%s', fmt=%s ", filename, fmt); 367943c5d8f8SFam Zheng qemu_opts_print(opts, " "); 3680f88e1a42SJes Sorensen puts(""); 3681f382d43aSMiroslav Rezanina } 368283d0521aSChunyan Liu 3683c282e1fdSChunyan Liu ret = bdrv_create(drv, filename, opts, &local_err); 368483d0521aSChunyan Liu 3685cc84d90fSMax Reitz if (ret == -EFBIG) { 3686cc84d90fSMax Reitz /* This is generally a better message than whatever the driver would 3687cc84d90fSMax Reitz * deliver (especially because of the cluster_size_hint), since that 3688cc84d90fSMax Reitz * is most probably not much different from "image too large". */ 3689f3f4d2c0SKevin Wolf const char *cluster_size_hint = ""; 369083d0521aSChunyan Liu if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) { 3691f3f4d2c0SKevin Wolf cluster_size_hint = " (try using a larger cluster size)"; 3692f3f4d2c0SKevin Wolf } 3693cc84d90fSMax Reitz error_setg(errp, "The image size is too large for file format '%s'" 3694cc84d90fSMax Reitz "%s", fmt, cluster_size_hint); 3695cc84d90fSMax Reitz error_free(local_err); 3696cc84d90fSMax Reitz local_err = NULL; 3697f88e1a42SJes Sorensen } 3698f88e1a42SJes Sorensen 3699f88e1a42SJes Sorensen out: 370083d0521aSChunyan Liu qemu_opts_del(opts); 370183d0521aSChunyan Liu qemu_opts_free(create_opts); 3702cc84d90fSMax Reitz error_propagate(errp, local_err); 3703cc84d90fSMax Reitz } 370485d126f3SStefan Hajnoczi 370585d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs) 370685d126f3SStefan Hajnoczi { 3707dcd04228SStefan Hajnoczi return bs->aio_context; 3708dcd04228SStefan Hajnoczi } 3709dcd04228SStefan Hajnoczi 3710e8a095daSStefan Hajnoczi static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban) 3711e8a095daSStefan Hajnoczi { 3712e8a095daSStefan Hajnoczi QLIST_REMOVE(ban, list); 3713e8a095daSStefan Hajnoczi g_free(ban); 3714e8a095daSStefan Hajnoczi } 3715e8a095daSStefan Hajnoczi 3716dcd04228SStefan Hajnoczi void bdrv_detach_aio_context(BlockDriverState *bs) 3717dcd04228SStefan Hajnoczi { 3718e8a095daSStefan Hajnoczi BdrvAioNotifier *baf, *baf_tmp; 3719b97511c7SMax Reitz BdrvChild *child; 372033384421SMax Reitz 3721dcd04228SStefan Hajnoczi if (!bs->drv) { 3722dcd04228SStefan Hajnoczi return; 3723dcd04228SStefan Hajnoczi } 3724dcd04228SStefan Hajnoczi 3725e8a095daSStefan Hajnoczi assert(!bs->walking_aio_notifiers); 3726e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = true; 3727e8a095daSStefan Hajnoczi QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) { 3728e8a095daSStefan Hajnoczi if (baf->deleted) { 3729e8a095daSStefan Hajnoczi bdrv_do_remove_aio_context_notifier(baf); 3730e8a095daSStefan Hajnoczi } else { 373133384421SMax Reitz baf->detach_aio_context(baf->opaque); 373233384421SMax Reitz } 3733e8a095daSStefan Hajnoczi } 3734e8a095daSStefan Hajnoczi /* Never mind iterating again to check for ->deleted. bdrv_close() will 3735e8a095daSStefan Hajnoczi * remove remaining aio notifiers if we aren't called again. 3736e8a095daSStefan Hajnoczi */ 3737e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = false; 373833384421SMax Reitz 3739dcd04228SStefan Hajnoczi if (bs->drv->bdrv_detach_aio_context) { 3740dcd04228SStefan Hajnoczi bs->drv->bdrv_detach_aio_context(bs); 3741dcd04228SStefan Hajnoczi } 3742b97511c7SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 3743b97511c7SMax Reitz bdrv_detach_aio_context(child->bs); 3744dcd04228SStefan Hajnoczi } 3745dcd04228SStefan Hajnoczi 3746dcd04228SStefan Hajnoczi bs->aio_context = NULL; 3747dcd04228SStefan Hajnoczi } 3748dcd04228SStefan Hajnoczi 3749dcd04228SStefan Hajnoczi void bdrv_attach_aio_context(BlockDriverState *bs, 3750dcd04228SStefan Hajnoczi AioContext *new_context) 3751dcd04228SStefan Hajnoczi { 3752e8a095daSStefan Hajnoczi BdrvAioNotifier *ban, *ban_tmp; 3753b97511c7SMax Reitz BdrvChild *child; 375433384421SMax Reitz 3755dcd04228SStefan Hajnoczi if (!bs->drv) { 3756dcd04228SStefan Hajnoczi return; 3757dcd04228SStefan Hajnoczi } 3758dcd04228SStefan Hajnoczi 3759dcd04228SStefan Hajnoczi bs->aio_context = new_context; 3760dcd04228SStefan Hajnoczi 3761b97511c7SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 3762b97511c7SMax Reitz bdrv_attach_aio_context(child->bs, new_context); 3763dcd04228SStefan Hajnoczi } 3764dcd04228SStefan Hajnoczi if (bs->drv->bdrv_attach_aio_context) { 3765dcd04228SStefan Hajnoczi bs->drv->bdrv_attach_aio_context(bs, new_context); 3766dcd04228SStefan Hajnoczi } 376733384421SMax Reitz 3768e8a095daSStefan Hajnoczi assert(!bs->walking_aio_notifiers); 3769e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = true; 3770e8a095daSStefan Hajnoczi QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) { 3771e8a095daSStefan Hajnoczi if (ban->deleted) { 3772e8a095daSStefan Hajnoczi bdrv_do_remove_aio_context_notifier(ban); 3773e8a095daSStefan Hajnoczi } else { 377433384421SMax Reitz ban->attached_aio_context(new_context, ban->opaque); 377533384421SMax Reitz } 3776dcd04228SStefan Hajnoczi } 3777e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = false; 3778e8a095daSStefan Hajnoczi } 3779dcd04228SStefan Hajnoczi 3780dcd04228SStefan Hajnoczi void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context) 3781dcd04228SStefan Hajnoczi { 378253ec73e2SFam Zheng bdrv_drain(bs); /* ensure there are no in-flight requests */ 3783dcd04228SStefan Hajnoczi 3784dcd04228SStefan Hajnoczi bdrv_detach_aio_context(bs); 3785dcd04228SStefan Hajnoczi 3786dcd04228SStefan Hajnoczi /* This function executes in the old AioContext so acquire the new one in 3787dcd04228SStefan Hajnoczi * case it runs in a different thread. 3788dcd04228SStefan Hajnoczi */ 3789dcd04228SStefan Hajnoczi aio_context_acquire(new_context); 3790dcd04228SStefan Hajnoczi bdrv_attach_aio_context(bs, new_context); 3791dcd04228SStefan Hajnoczi aio_context_release(new_context); 379285d126f3SStefan Hajnoczi } 3793d616b224SStefan Hajnoczi 379433384421SMax Reitz void bdrv_add_aio_context_notifier(BlockDriverState *bs, 379533384421SMax Reitz void (*attached_aio_context)(AioContext *new_context, void *opaque), 379633384421SMax Reitz void (*detach_aio_context)(void *opaque), void *opaque) 379733384421SMax Reitz { 379833384421SMax Reitz BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1); 379933384421SMax Reitz *ban = (BdrvAioNotifier){ 380033384421SMax Reitz .attached_aio_context = attached_aio_context, 380133384421SMax Reitz .detach_aio_context = detach_aio_context, 380233384421SMax Reitz .opaque = opaque 380333384421SMax Reitz }; 380433384421SMax Reitz 380533384421SMax Reitz QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list); 380633384421SMax Reitz } 380733384421SMax Reitz 380833384421SMax Reitz void bdrv_remove_aio_context_notifier(BlockDriverState *bs, 380933384421SMax Reitz void (*attached_aio_context)(AioContext *, 381033384421SMax Reitz void *), 381133384421SMax Reitz void (*detach_aio_context)(void *), 381233384421SMax Reitz void *opaque) 381333384421SMax Reitz { 381433384421SMax Reitz BdrvAioNotifier *ban, *ban_next; 381533384421SMax Reitz 381633384421SMax Reitz QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 381733384421SMax Reitz if (ban->attached_aio_context == attached_aio_context && 381833384421SMax Reitz ban->detach_aio_context == detach_aio_context && 3819e8a095daSStefan Hajnoczi ban->opaque == opaque && 3820e8a095daSStefan Hajnoczi ban->deleted == false) 382133384421SMax Reitz { 3822e8a095daSStefan Hajnoczi if (bs->walking_aio_notifiers) { 3823e8a095daSStefan Hajnoczi ban->deleted = true; 3824e8a095daSStefan Hajnoczi } else { 3825e8a095daSStefan Hajnoczi bdrv_do_remove_aio_context_notifier(ban); 3826e8a095daSStefan Hajnoczi } 382733384421SMax Reitz return; 382833384421SMax Reitz } 382933384421SMax Reitz } 383033384421SMax Reitz 383133384421SMax Reitz abort(); 383233384421SMax Reitz } 383333384421SMax Reitz 383477485434SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts, 38358b13976dSMax Reitz BlockDriverAmendStatusCB *status_cb, void *cb_opaque) 38366f176b48SMax Reitz { 3837c282e1fdSChunyan Liu if (!bs->drv->bdrv_amend_options) { 38386f176b48SMax Reitz return -ENOTSUP; 38396f176b48SMax Reitz } 38408b13976dSMax Reitz return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque); 38416f176b48SMax Reitz } 3842f6186f49SBenoît Canet 3843b5042a36SBenoît Canet /* This function will be called by the bdrv_recurse_is_first_non_filter method 3844b5042a36SBenoît Canet * of block filter and by bdrv_is_first_non_filter. 3845b5042a36SBenoît Canet * It is used to test if the given bs is the candidate or recurse more in the 3846b5042a36SBenoît Canet * node graph. 3847212a5a8fSBenoît Canet */ 3848212a5a8fSBenoît Canet bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs, 3849212a5a8fSBenoît Canet BlockDriverState *candidate) 3850f6186f49SBenoît Canet { 3851b5042a36SBenoît Canet /* return false if basic checks fails */ 3852b5042a36SBenoît Canet if (!bs || !bs->drv) { 3853b5042a36SBenoît Canet return false; 3854b5042a36SBenoît Canet } 3855b5042a36SBenoît Canet 3856b5042a36SBenoît Canet /* the code reached a non block filter driver -> check if the bs is 3857b5042a36SBenoît Canet * the same as the candidate. It's the recursion termination condition. 3858b5042a36SBenoît Canet */ 3859b5042a36SBenoît Canet if (!bs->drv->is_filter) { 3860b5042a36SBenoît Canet return bs == candidate; 3861b5042a36SBenoît Canet } 3862b5042a36SBenoît Canet /* Down this path the driver is a block filter driver */ 3863b5042a36SBenoît Canet 3864b5042a36SBenoît Canet /* If the block filter recursion method is defined use it to recurse down 3865b5042a36SBenoît Canet * the node graph. 3866b5042a36SBenoît Canet */ 3867b5042a36SBenoît Canet if (bs->drv->bdrv_recurse_is_first_non_filter) { 3868212a5a8fSBenoît Canet return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate); 3869212a5a8fSBenoît Canet } 3870212a5a8fSBenoît Canet 3871b5042a36SBenoît Canet /* the driver is a block filter but don't allow to recurse -> return false 3872b5042a36SBenoît Canet */ 3873b5042a36SBenoît Canet return false; 3874212a5a8fSBenoît Canet } 3875212a5a8fSBenoît Canet 3876212a5a8fSBenoît Canet /* This function checks if the candidate is the first non filter bs down it's 3877212a5a8fSBenoît Canet * bs chain. Since we don't have pointers to parents it explore all bs chains 3878212a5a8fSBenoît Canet * from the top. Some filters can choose not to pass down the recursion. 3879212a5a8fSBenoît Canet */ 3880212a5a8fSBenoît Canet bool bdrv_is_first_non_filter(BlockDriverState *candidate) 3881212a5a8fSBenoît Canet { 38827c8eece4SKevin Wolf BlockDriverState *bs; 388388be7b4bSKevin Wolf BdrvNextIterator it; 3884212a5a8fSBenoît Canet 3885212a5a8fSBenoît Canet /* walk down the bs forest recursively */ 388688be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 3887212a5a8fSBenoît Canet bool perm; 3888212a5a8fSBenoît Canet 3889b5042a36SBenoît Canet /* try to recurse in this top level bs */ 3890e6dc8a1fSKevin Wolf perm = bdrv_recurse_is_first_non_filter(bs, candidate); 3891212a5a8fSBenoît Canet 3892212a5a8fSBenoît Canet /* candidate is the first non filter */ 3893212a5a8fSBenoît Canet if (perm) { 3894212a5a8fSBenoît Canet return true; 3895212a5a8fSBenoît Canet } 3896212a5a8fSBenoît Canet } 3897212a5a8fSBenoît Canet 3898212a5a8fSBenoît Canet return false; 3899f6186f49SBenoît Canet } 390009158f00SBenoît Canet 3901e12f3784SWen Congyang BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs, 3902e12f3784SWen Congyang const char *node_name, Error **errp) 390309158f00SBenoît Canet { 390409158f00SBenoît Canet BlockDriverState *to_replace_bs = bdrv_find_node(node_name); 39055a7e7a0bSStefan Hajnoczi AioContext *aio_context; 39065a7e7a0bSStefan Hajnoczi 390709158f00SBenoît Canet if (!to_replace_bs) { 390809158f00SBenoît Canet error_setg(errp, "Node name '%s' not found", node_name); 390909158f00SBenoît Canet return NULL; 391009158f00SBenoît Canet } 391109158f00SBenoît Canet 39125a7e7a0bSStefan Hajnoczi aio_context = bdrv_get_aio_context(to_replace_bs); 39135a7e7a0bSStefan Hajnoczi aio_context_acquire(aio_context); 39145a7e7a0bSStefan Hajnoczi 391509158f00SBenoît Canet if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) { 39165a7e7a0bSStefan Hajnoczi to_replace_bs = NULL; 39175a7e7a0bSStefan Hajnoczi goto out; 391809158f00SBenoît Canet } 391909158f00SBenoît Canet 392009158f00SBenoît Canet /* We don't want arbitrary node of the BDS chain to be replaced only the top 392109158f00SBenoît Canet * most non filter in order to prevent data corruption. 392209158f00SBenoît Canet * Another benefit is that this tests exclude backing files which are 392309158f00SBenoît Canet * blocked by the backing blockers. 392409158f00SBenoît Canet */ 3925e12f3784SWen Congyang if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) { 392609158f00SBenoît Canet error_setg(errp, "Only top most non filter can be replaced"); 39275a7e7a0bSStefan Hajnoczi to_replace_bs = NULL; 39285a7e7a0bSStefan Hajnoczi goto out; 392909158f00SBenoît Canet } 393009158f00SBenoît Canet 39315a7e7a0bSStefan Hajnoczi out: 39325a7e7a0bSStefan Hajnoczi aio_context_release(aio_context); 393309158f00SBenoît Canet return to_replace_bs; 393409158f00SBenoît Canet } 3935448ad91dSMing Lei 393691af7014SMax Reitz static bool append_open_options(QDict *d, BlockDriverState *bs) 393791af7014SMax Reitz { 393891af7014SMax Reitz const QDictEntry *entry; 39399e700c1aSKevin Wolf QemuOptDesc *desc; 3940260fecf1SKevin Wolf BdrvChild *child; 394191af7014SMax Reitz bool found_any = false; 3942260fecf1SKevin Wolf const char *p; 394391af7014SMax Reitz 394491af7014SMax Reitz for (entry = qdict_first(bs->options); entry; 394591af7014SMax Reitz entry = qdict_next(bs->options, entry)) 394691af7014SMax Reitz { 3947260fecf1SKevin Wolf /* Exclude options for children */ 3948260fecf1SKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 3949260fecf1SKevin Wolf if (strstart(qdict_entry_key(entry), child->name, &p) 3950260fecf1SKevin Wolf && (!*p || *p == '.')) 3951260fecf1SKevin Wolf { 3952260fecf1SKevin Wolf break; 3953260fecf1SKevin Wolf } 3954260fecf1SKevin Wolf } 3955260fecf1SKevin Wolf if (child) { 39569e700c1aSKevin Wolf continue; 39579e700c1aSKevin Wolf } 39589e700c1aSKevin Wolf 39599e700c1aSKevin Wolf /* And exclude all non-driver-specific options */ 39609e700c1aSKevin Wolf for (desc = bdrv_runtime_opts.desc; desc->name; desc++) { 39619e700c1aSKevin Wolf if (!strcmp(qdict_entry_key(entry), desc->name)) { 39629e700c1aSKevin Wolf break; 39639e700c1aSKevin Wolf } 39649e700c1aSKevin Wolf } 39659e700c1aSKevin Wolf if (desc->name) { 39669e700c1aSKevin Wolf continue; 39679e700c1aSKevin Wolf } 39689e700c1aSKevin Wolf 396991af7014SMax Reitz qobject_incref(qdict_entry_value(entry)); 397091af7014SMax Reitz qdict_put_obj(d, qdict_entry_key(entry), qdict_entry_value(entry)); 397191af7014SMax Reitz found_any = true; 397291af7014SMax Reitz } 397391af7014SMax Reitz 397491af7014SMax Reitz return found_any; 397591af7014SMax Reitz } 397691af7014SMax Reitz 397791af7014SMax Reitz /* Updates the following BDS fields: 397891af7014SMax Reitz * - exact_filename: A filename which may be used for opening a block device 397991af7014SMax Reitz * which (mostly) equals the given BDS (even without any 398091af7014SMax Reitz * other options; so reading and writing must return the same 398191af7014SMax Reitz * results, but caching etc. may be different) 398291af7014SMax Reitz * - full_open_options: Options which, when given when opening a block device 398391af7014SMax Reitz * (without a filename), result in a BDS (mostly) 398491af7014SMax Reitz * equalling the given one 398591af7014SMax Reitz * - filename: If exact_filename is set, it is copied here. Otherwise, 398691af7014SMax Reitz * full_open_options is converted to a JSON object, prefixed with 398791af7014SMax Reitz * "json:" (for use through the JSON pseudo protocol) and put here. 398891af7014SMax Reitz */ 398991af7014SMax Reitz void bdrv_refresh_filename(BlockDriverState *bs) 399091af7014SMax Reitz { 399191af7014SMax Reitz BlockDriver *drv = bs->drv; 399291af7014SMax Reitz QDict *opts; 399391af7014SMax Reitz 399491af7014SMax Reitz if (!drv) { 399591af7014SMax Reitz return; 399691af7014SMax Reitz } 399791af7014SMax Reitz 399891af7014SMax Reitz /* This BDS's file name will most probably depend on its file's name, so 399991af7014SMax Reitz * refresh that first */ 400091af7014SMax Reitz if (bs->file) { 40019a4f4c31SKevin Wolf bdrv_refresh_filename(bs->file->bs); 400291af7014SMax Reitz } 400391af7014SMax Reitz 400491af7014SMax Reitz if (drv->bdrv_refresh_filename) { 400591af7014SMax Reitz /* Obsolete information is of no use here, so drop the old file name 400691af7014SMax Reitz * information before refreshing it */ 400791af7014SMax Reitz bs->exact_filename[0] = '\0'; 400891af7014SMax Reitz if (bs->full_open_options) { 400991af7014SMax Reitz QDECREF(bs->full_open_options); 401091af7014SMax Reitz bs->full_open_options = NULL; 401191af7014SMax Reitz } 401291af7014SMax Reitz 40134cdd01d3SKevin Wolf opts = qdict_new(); 40144cdd01d3SKevin Wolf append_open_options(opts, bs); 40154cdd01d3SKevin Wolf drv->bdrv_refresh_filename(bs, opts); 40164cdd01d3SKevin Wolf QDECREF(opts); 401791af7014SMax Reitz } else if (bs->file) { 401891af7014SMax Reitz /* Try to reconstruct valid information from the underlying file */ 401991af7014SMax Reitz bool has_open_options; 402091af7014SMax Reitz 402191af7014SMax Reitz bs->exact_filename[0] = '\0'; 402291af7014SMax Reitz if (bs->full_open_options) { 402391af7014SMax Reitz QDECREF(bs->full_open_options); 402491af7014SMax Reitz bs->full_open_options = NULL; 402591af7014SMax Reitz } 402691af7014SMax Reitz 402791af7014SMax Reitz opts = qdict_new(); 402891af7014SMax Reitz has_open_options = append_open_options(opts, bs); 402991af7014SMax Reitz 403091af7014SMax Reitz /* If no specific options have been given for this BDS, the filename of 403191af7014SMax Reitz * the underlying file should suffice for this one as well */ 40329a4f4c31SKevin Wolf if (bs->file->bs->exact_filename[0] && !has_open_options) { 40339a4f4c31SKevin Wolf strcpy(bs->exact_filename, bs->file->bs->exact_filename); 403491af7014SMax Reitz } 403591af7014SMax Reitz /* Reconstructing the full options QDict is simple for most format block 403691af7014SMax Reitz * drivers, as long as the full options are known for the underlying 403791af7014SMax Reitz * file BDS. The full options QDict of that file BDS should somehow 403891af7014SMax Reitz * contain a representation of the filename, therefore the following 403991af7014SMax Reitz * suffices without querying the (exact_)filename of this BDS. */ 40409a4f4c31SKevin Wolf if (bs->file->bs->full_open_options) { 404191af7014SMax Reitz qdict_put_obj(opts, "driver", 404291af7014SMax Reitz QOBJECT(qstring_from_str(drv->format_name))); 40439a4f4c31SKevin Wolf QINCREF(bs->file->bs->full_open_options); 40449a4f4c31SKevin Wolf qdict_put_obj(opts, "file", 40459a4f4c31SKevin Wolf QOBJECT(bs->file->bs->full_open_options)); 404691af7014SMax Reitz 404791af7014SMax Reitz bs->full_open_options = opts; 404891af7014SMax Reitz } else { 404991af7014SMax Reitz QDECREF(opts); 405091af7014SMax Reitz } 405191af7014SMax Reitz } else if (!bs->full_open_options && qdict_size(bs->options)) { 405291af7014SMax Reitz /* There is no underlying file BDS (at least referenced by BDS.file), 405391af7014SMax Reitz * so the full options QDict should be equal to the options given 405491af7014SMax Reitz * specifically for this block device when it was opened (plus the 405591af7014SMax Reitz * driver specification). 405691af7014SMax Reitz * Because those options don't change, there is no need to update 405791af7014SMax Reitz * full_open_options when it's already set. */ 405891af7014SMax Reitz 405991af7014SMax Reitz opts = qdict_new(); 406091af7014SMax Reitz append_open_options(opts, bs); 406191af7014SMax Reitz qdict_put_obj(opts, "driver", 406291af7014SMax Reitz QOBJECT(qstring_from_str(drv->format_name))); 406391af7014SMax Reitz 406491af7014SMax Reitz if (bs->exact_filename[0]) { 406591af7014SMax Reitz /* This may not work for all block protocol drivers (some may 406691af7014SMax Reitz * require this filename to be parsed), but we have to find some 406791af7014SMax Reitz * default solution here, so just include it. If some block driver 406891af7014SMax Reitz * does not support pure options without any filename at all or 406991af7014SMax Reitz * needs some special format of the options QDict, it needs to 407091af7014SMax Reitz * implement the driver-specific bdrv_refresh_filename() function. 407191af7014SMax Reitz */ 407291af7014SMax Reitz qdict_put_obj(opts, "filename", 407391af7014SMax Reitz QOBJECT(qstring_from_str(bs->exact_filename))); 407491af7014SMax Reitz } 407591af7014SMax Reitz 407691af7014SMax Reitz bs->full_open_options = opts; 407791af7014SMax Reitz } 407891af7014SMax Reitz 407991af7014SMax Reitz if (bs->exact_filename[0]) { 408091af7014SMax Reitz pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename); 408191af7014SMax Reitz } else if (bs->full_open_options) { 408291af7014SMax Reitz QString *json = qobject_to_json(QOBJECT(bs->full_open_options)); 408391af7014SMax Reitz snprintf(bs->filename, sizeof(bs->filename), "json:%s", 408491af7014SMax Reitz qstring_get_str(json)); 408591af7014SMax Reitz QDECREF(json); 408691af7014SMax Reitz } 408791af7014SMax Reitz } 4088e06018adSWen Congyang 4089e06018adSWen Congyang /* 4090e06018adSWen Congyang * Hot add/remove a BDS's child. So the user can take a child offline when 4091e06018adSWen Congyang * it is broken and take a new child online 4092e06018adSWen Congyang */ 4093e06018adSWen Congyang void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs, 4094e06018adSWen Congyang Error **errp) 4095e06018adSWen Congyang { 4096e06018adSWen Congyang 4097e06018adSWen Congyang if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) { 4098e06018adSWen Congyang error_setg(errp, "The node %s does not support adding a child", 4099e06018adSWen Congyang bdrv_get_device_or_node_name(parent_bs)); 4100e06018adSWen Congyang return; 4101e06018adSWen Congyang } 4102e06018adSWen Congyang 4103e06018adSWen Congyang if (!QLIST_EMPTY(&child_bs->parents)) { 4104e06018adSWen Congyang error_setg(errp, "The node %s already has a parent", 4105e06018adSWen Congyang child_bs->node_name); 4106e06018adSWen Congyang return; 4107e06018adSWen Congyang } 4108e06018adSWen Congyang 4109e06018adSWen Congyang parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp); 4110e06018adSWen Congyang } 4111e06018adSWen Congyang 4112e06018adSWen Congyang void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp) 4113e06018adSWen Congyang { 4114e06018adSWen Congyang BdrvChild *tmp; 4115e06018adSWen Congyang 4116e06018adSWen Congyang if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) { 4117e06018adSWen Congyang error_setg(errp, "The node %s does not support removing a child", 4118e06018adSWen Congyang bdrv_get_device_or_node_name(parent_bs)); 4119e06018adSWen Congyang return; 4120e06018adSWen Congyang } 4121e06018adSWen Congyang 4122e06018adSWen Congyang QLIST_FOREACH(tmp, &parent_bs->children, next) { 4123e06018adSWen Congyang if (tmp == child) { 4124e06018adSWen Congyang break; 4125e06018adSWen Congyang } 4126e06018adSWen Congyang } 4127e06018adSWen Congyang 4128e06018adSWen Congyang if (!tmp) { 4129e06018adSWen Congyang error_setg(errp, "The node %s does not have a child named %s", 4130e06018adSWen Congyang bdrv_get_device_or_node_name(parent_bs), 4131e06018adSWen Congyang bdrv_get_device_or_node_name(child->bs)); 4132e06018adSWen Congyang return; 4133e06018adSWen Congyang } 4134e06018adSWen Congyang 4135e06018adSWen Congyang parent_bs->drv->bdrv_del_child(parent_bs, child, errp); 4136e06018adSWen Congyang } 4137