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 5915696c6e3SKevin 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 */ 5995696c6e3SKevin 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 6045696c6e3SKevin 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 710*b5411555SKevin Wolf static char *bdrv_child_get_parent_desc(BdrvChild *c) 711*b5411555SKevin Wolf { 712*b5411555SKevin Wolf BlockDriverState *parent = c->opaque; 713*b5411555SKevin Wolf return g_strdup(bdrv_get_device_or_node_name(parent)); 714*b5411555SKevin Wolf } 715*b5411555SKevin Wolf 71620018e12SKevin Wolf static void bdrv_child_cb_drained_begin(BdrvChild *child) 71720018e12SKevin Wolf { 71820018e12SKevin Wolf BlockDriverState *bs = child->opaque; 71920018e12SKevin Wolf bdrv_drained_begin(bs); 72020018e12SKevin Wolf } 72120018e12SKevin Wolf 72220018e12SKevin Wolf static void bdrv_child_cb_drained_end(BdrvChild *child) 72320018e12SKevin Wolf { 72420018e12SKevin Wolf BlockDriverState *bs = child->opaque; 72520018e12SKevin Wolf bdrv_drained_end(bs); 72620018e12SKevin Wolf } 72720018e12SKevin Wolf 7280b50cc88SKevin Wolf /* 72973176beeSKevin Wolf * Returns the options and flags that a temporary snapshot should get, based on 73073176beeSKevin Wolf * the originally requested flags (the originally requested image will have 73173176beeSKevin Wolf * flags like a backing file) 732b1e6fc08SKevin Wolf */ 73373176beeSKevin Wolf static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options, 73473176beeSKevin Wolf int parent_flags, QDict *parent_options) 735b1e6fc08SKevin Wolf { 73673176beeSKevin Wolf *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY; 73773176beeSKevin Wolf 73873176beeSKevin Wolf /* For temporary files, unconditional cache=unsafe is fine */ 73973176beeSKevin Wolf qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off"); 74073176beeSKevin Wolf qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on"); 74141869044SKevin Wolf 742f87a0e29SAlberto Garcia /* Copy the read-only option from the parent */ 743f87a0e29SAlberto Garcia qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); 744f87a0e29SAlberto Garcia 74541869044SKevin Wolf /* aio=native doesn't work for cache.direct=off, so disable it for the 74641869044SKevin Wolf * temporary snapshot */ 74741869044SKevin Wolf *child_flags &= ~BDRV_O_NATIVE_AIO; 748b1e6fc08SKevin Wolf } 749b1e6fc08SKevin Wolf 750b1e6fc08SKevin Wolf /* 7518e2160e2SKevin Wolf * Returns the options and flags that bs->file should get if a protocol driver 7528e2160e2SKevin Wolf * is expected, based on the given options and flags for the parent BDS 7530b50cc88SKevin Wolf */ 7548e2160e2SKevin Wolf static void bdrv_inherited_options(int *child_flags, QDict *child_options, 7558e2160e2SKevin Wolf int parent_flags, QDict *parent_options) 7560b50cc88SKevin Wolf { 7578e2160e2SKevin Wolf int flags = parent_flags; 7588e2160e2SKevin Wolf 7590b50cc88SKevin Wolf /* Enable protocol handling, disable format probing for bs->file */ 7600b50cc88SKevin Wolf flags |= BDRV_O_PROTOCOL; 7610b50cc88SKevin Wolf 76291a097e7SKevin Wolf /* If the cache mode isn't explicitly set, inherit direct and no-flush from 76391a097e7SKevin Wolf * the parent. */ 76491a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); 76591a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); 76691a097e7SKevin Wolf 767f87a0e29SAlberto Garcia /* Inherit the read-only option from the parent if it's not set */ 768f87a0e29SAlberto Garcia qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY); 769f87a0e29SAlberto Garcia 7700b50cc88SKevin Wolf /* Our block drivers take care to send flushes and respect unmap policy, 77191a097e7SKevin Wolf * so we can default to enable both on lower layers regardless of the 77291a097e7SKevin Wolf * corresponding parent options. */ 773818584a4SKevin Wolf qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap"); 7740b50cc88SKevin Wolf 7750b50cc88SKevin Wolf /* Clear flags that only apply to the top layer */ 776abb06c5aSDaniel P. Berrange flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ | 777abb06c5aSDaniel P. Berrange BDRV_O_NO_IO); 7780b50cc88SKevin Wolf 7798e2160e2SKevin Wolf *child_flags = flags; 7800b50cc88SKevin Wolf } 7810b50cc88SKevin Wolf 782f3930ed0SKevin Wolf const BdrvChildRole child_file = { 783*b5411555SKevin Wolf .get_parent_desc = bdrv_child_get_parent_desc, 7848e2160e2SKevin Wolf .inherit_options = bdrv_inherited_options, 78520018e12SKevin Wolf .drained_begin = bdrv_child_cb_drained_begin, 78620018e12SKevin Wolf .drained_end = bdrv_child_cb_drained_end, 787f3930ed0SKevin Wolf }; 788f3930ed0SKevin Wolf 789f3930ed0SKevin Wolf /* 7908e2160e2SKevin Wolf * Returns the options and flags that bs->file should get if the use of formats 7918e2160e2SKevin Wolf * (and not only protocols) is permitted for it, based on the given options and 7928e2160e2SKevin Wolf * flags for the parent BDS 793f3930ed0SKevin Wolf */ 7948e2160e2SKevin Wolf static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options, 7958e2160e2SKevin Wolf int parent_flags, QDict *parent_options) 796f3930ed0SKevin Wolf { 7978e2160e2SKevin Wolf child_file.inherit_options(child_flags, child_options, 7988e2160e2SKevin Wolf parent_flags, parent_options); 7998e2160e2SKevin Wolf 800abb06c5aSDaniel P. Berrange *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO); 801f3930ed0SKevin Wolf } 802f3930ed0SKevin Wolf 803f3930ed0SKevin Wolf const BdrvChildRole child_format = { 804*b5411555SKevin Wolf .get_parent_desc = bdrv_child_get_parent_desc, 8058e2160e2SKevin Wolf .inherit_options = bdrv_inherited_fmt_options, 80620018e12SKevin Wolf .drained_begin = bdrv_child_cb_drained_begin, 80720018e12SKevin Wolf .drained_end = bdrv_child_cb_drained_end, 808f3930ed0SKevin Wolf }; 809f3930ed0SKevin Wolf 810317fc44eSKevin Wolf /* 8118e2160e2SKevin Wolf * Returns the options and flags that bs->backing should get, based on the 8128e2160e2SKevin Wolf * given options and flags for the parent BDS 813317fc44eSKevin Wolf */ 8148e2160e2SKevin Wolf static void bdrv_backing_options(int *child_flags, QDict *child_options, 8158e2160e2SKevin Wolf int parent_flags, QDict *parent_options) 816317fc44eSKevin Wolf { 8178e2160e2SKevin Wolf int flags = parent_flags; 8188e2160e2SKevin Wolf 819b8816a43SKevin Wolf /* The cache mode is inherited unmodified for backing files; except WCE, 820b8816a43SKevin Wolf * which is only applied on the top level (BlockBackend) */ 82191a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT); 82291a097e7SKevin Wolf qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH); 82391a097e7SKevin Wolf 824317fc44eSKevin Wolf /* backing files always opened read-only */ 825f87a0e29SAlberto Garcia qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on"); 826f87a0e29SAlberto Garcia flags &= ~BDRV_O_COPY_ON_READ; 827317fc44eSKevin Wolf 828317fc44eSKevin Wolf /* snapshot=on is handled on the top layer */ 8298bfea15dSKevin Wolf flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY); 830317fc44eSKevin Wolf 8318e2160e2SKevin Wolf *child_flags = flags; 832317fc44eSKevin Wolf } 833317fc44eSKevin Wolf 83491ef3825SKevin Wolf const BdrvChildRole child_backing = { 835*b5411555SKevin Wolf .get_parent_desc = bdrv_child_get_parent_desc, 8368e2160e2SKevin Wolf .inherit_options = bdrv_backing_options, 83720018e12SKevin Wolf .drained_begin = bdrv_child_cb_drained_begin, 83820018e12SKevin Wolf .drained_end = bdrv_child_cb_drained_end, 839f3930ed0SKevin Wolf }; 840f3930ed0SKevin Wolf 8417b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags) 8427b272452SKevin Wolf { 84361de4c68SKevin Wolf int open_flags = flags; 8447b272452SKevin Wolf 8457b272452SKevin Wolf /* 8467b272452SKevin Wolf * Clear flags that are internal to the block layer before opening the 8477b272452SKevin Wolf * image. 8487b272452SKevin Wolf */ 84920cca275SKevin Wolf open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL); 8507b272452SKevin Wolf 8517b272452SKevin Wolf /* 8527b272452SKevin Wolf * Snapshots should be writable. 8537b272452SKevin Wolf */ 8548bfea15dSKevin Wolf if (flags & BDRV_O_TEMPORARY) { 8557b272452SKevin Wolf open_flags |= BDRV_O_RDWR; 8567b272452SKevin Wolf } 8577b272452SKevin Wolf 8587b272452SKevin Wolf return open_flags; 8597b272452SKevin Wolf } 8607b272452SKevin Wolf 86191a097e7SKevin Wolf static void update_flags_from_options(int *flags, QemuOpts *opts) 86291a097e7SKevin Wolf { 86391a097e7SKevin Wolf *flags &= ~BDRV_O_CACHE_MASK; 86491a097e7SKevin Wolf 86591a097e7SKevin Wolf assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH)); 86691a097e7SKevin Wolf if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) { 86791a097e7SKevin Wolf *flags |= BDRV_O_NO_FLUSH; 86891a097e7SKevin Wolf } 86991a097e7SKevin Wolf 87091a097e7SKevin Wolf assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT)); 87191a097e7SKevin Wolf if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) { 87291a097e7SKevin Wolf *flags |= BDRV_O_NOCACHE; 87391a097e7SKevin Wolf } 874f87a0e29SAlberto Garcia 875f87a0e29SAlberto Garcia *flags &= ~BDRV_O_RDWR; 876f87a0e29SAlberto Garcia 877f87a0e29SAlberto Garcia assert(qemu_opt_find(opts, BDRV_OPT_READ_ONLY)); 878f87a0e29SAlberto Garcia if (!qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false)) { 879f87a0e29SAlberto Garcia *flags |= BDRV_O_RDWR; 880f87a0e29SAlberto Garcia } 881f87a0e29SAlberto Garcia 88291a097e7SKevin Wolf } 88391a097e7SKevin Wolf 88491a097e7SKevin Wolf static void update_options_from_flags(QDict *options, int flags) 88591a097e7SKevin Wolf { 88691a097e7SKevin Wolf if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) { 88791a097e7SKevin Wolf qdict_put(options, BDRV_OPT_CACHE_DIRECT, 88891a097e7SKevin Wolf qbool_from_bool(flags & BDRV_O_NOCACHE)); 88991a097e7SKevin Wolf } 89091a097e7SKevin Wolf if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) { 89191a097e7SKevin Wolf qdict_put(options, BDRV_OPT_CACHE_NO_FLUSH, 89291a097e7SKevin Wolf qbool_from_bool(flags & BDRV_O_NO_FLUSH)); 89391a097e7SKevin Wolf } 894f87a0e29SAlberto Garcia if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) { 895f87a0e29SAlberto Garcia qdict_put(options, BDRV_OPT_READ_ONLY, 896f87a0e29SAlberto Garcia qbool_from_bool(!(flags & BDRV_O_RDWR))); 897f87a0e29SAlberto Garcia } 89891a097e7SKevin Wolf } 89991a097e7SKevin Wolf 900636ea370SKevin Wolf static void bdrv_assign_node_name(BlockDriverState *bs, 9016913c0c2SBenoît Canet const char *node_name, 9026913c0c2SBenoît Canet Error **errp) 9036913c0c2SBenoît Canet { 90415489c76SJeff Cody char *gen_node_name = NULL; 9056913c0c2SBenoît Canet 90615489c76SJeff Cody if (!node_name) { 90715489c76SJeff Cody node_name = gen_node_name = id_generate(ID_BLOCK); 90815489c76SJeff Cody } else if (!id_wellformed(node_name)) { 90915489c76SJeff Cody /* 91015489c76SJeff Cody * Check for empty string or invalid characters, but not if it is 91115489c76SJeff Cody * generated (generated names use characters not available to the user) 91215489c76SJeff Cody */ 9139aebf3b8SKevin Wolf error_setg(errp, "Invalid node name"); 914636ea370SKevin Wolf return; 9156913c0c2SBenoît Canet } 9166913c0c2SBenoît Canet 9170c5e94eeSBenoît Canet /* takes care of avoiding namespaces collisions */ 9187f06d47eSMarkus Armbruster if (blk_by_name(node_name)) { 9190c5e94eeSBenoît Canet error_setg(errp, "node-name=%s is conflicting with a device id", 9200c5e94eeSBenoît Canet node_name); 92115489c76SJeff Cody goto out; 9220c5e94eeSBenoît Canet } 9230c5e94eeSBenoît Canet 9246913c0c2SBenoît Canet /* takes care of avoiding duplicates node names */ 9256913c0c2SBenoît Canet if (bdrv_find_node(node_name)) { 9266913c0c2SBenoît Canet error_setg(errp, "Duplicate node name"); 92715489c76SJeff Cody goto out; 9286913c0c2SBenoît Canet } 9296913c0c2SBenoît Canet 9306913c0c2SBenoît Canet /* copy node name into the bs and insert it into the graph list */ 9316913c0c2SBenoît Canet pstrcpy(bs->node_name, sizeof(bs->node_name), node_name); 9326913c0c2SBenoît Canet QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list); 93315489c76SJeff Cody out: 93415489c76SJeff Cody g_free(gen_node_name); 9356913c0c2SBenoît Canet } 9366913c0c2SBenoît Canet 93701a56501SKevin Wolf static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv, 93801a56501SKevin Wolf const char *node_name, QDict *options, 93901a56501SKevin Wolf int open_flags, Error **errp) 94001a56501SKevin Wolf { 94101a56501SKevin Wolf Error *local_err = NULL; 94201a56501SKevin Wolf int ret; 94301a56501SKevin Wolf 94401a56501SKevin Wolf bdrv_assign_node_name(bs, node_name, &local_err); 94501a56501SKevin Wolf if (local_err) { 94601a56501SKevin Wolf error_propagate(errp, local_err); 94701a56501SKevin Wolf return -EINVAL; 94801a56501SKevin Wolf } 94901a56501SKevin Wolf 95001a56501SKevin Wolf bs->drv = drv; 951680c7f96SKevin Wolf bs->read_only = !(bs->open_flags & BDRV_O_RDWR); 95201a56501SKevin Wolf bs->opaque = g_malloc0(drv->instance_size); 95301a56501SKevin Wolf 95401a56501SKevin Wolf if (drv->bdrv_file_open) { 95501a56501SKevin Wolf assert(!drv->bdrv_needs_filename || bs->filename[0]); 95601a56501SKevin Wolf ret = drv->bdrv_file_open(bs, options, open_flags, &local_err); 957680c7f96SKevin Wolf } else if (drv->bdrv_open) { 95801a56501SKevin Wolf ret = drv->bdrv_open(bs, options, open_flags, &local_err); 959680c7f96SKevin Wolf } else { 960680c7f96SKevin Wolf ret = 0; 96101a56501SKevin Wolf } 96201a56501SKevin Wolf 96301a56501SKevin Wolf if (ret < 0) { 96401a56501SKevin Wolf if (local_err) { 96501a56501SKevin Wolf error_propagate(errp, local_err); 96601a56501SKevin Wolf } else if (bs->filename[0]) { 96701a56501SKevin Wolf error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename); 96801a56501SKevin Wolf } else { 96901a56501SKevin Wolf error_setg_errno(errp, -ret, "Could not open image"); 97001a56501SKevin Wolf } 97101a56501SKevin Wolf goto free_and_fail; 97201a56501SKevin Wolf } 97301a56501SKevin Wolf 97401a56501SKevin Wolf ret = refresh_total_sectors(bs, bs->total_sectors); 97501a56501SKevin Wolf if (ret < 0) { 97601a56501SKevin Wolf error_setg_errno(errp, -ret, "Could not refresh total sector count"); 97701a56501SKevin Wolf goto free_and_fail; 97801a56501SKevin Wolf } 97901a56501SKevin Wolf 98001a56501SKevin Wolf bdrv_refresh_limits(bs, &local_err); 98101a56501SKevin Wolf if (local_err) { 98201a56501SKevin Wolf error_propagate(errp, local_err); 98301a56501SKevin Wolf ret = -EINVAL; 98401a56501SKevin Wolf goto free_and_fail; 98501a56501SKevin Wolf } 98601a56501SKevin Wolf 98701a56501SKevin Wolf assert(bdrv_opt_mem_align(bs) != 0); 98801a56501SKevin Wolf assert(bdrv_min_mem_align(bs) != 0); 98901a56501SKevin Wolf assert(is_power_of_2(bs->bl.request_alignment)); 99001a56501SKevin Wolf 99101a56501SKevin Wolf return 0; 99201a56501SKevin Wolf 99301a56501SKevin Wolf free_and_fail: 99401a56501SKevin Wolf /* FIXME Close bs first if already opened*/ 99501a56501SKevin Wolf g_free(bs->opaque); 99601a56501SKevin Wolf bs->opaque = NULL; 99701a56501SKevin Wolf bs->drv = NULL; 99801a56501SKevin Wolf return ret; 99901a56501SKevin Wolf } 100001a56501SKevin Wolf 1001680c7f96SKevin Wolf BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name, 1002680c7f96SKevin Wolf int flags, Error **errp) 1003680c7f96SKevin Wolf { 1004680c7f96SKevin Wolf BlockDriverState *bs; 1005680c7f96SKevin Wolf int ret; 1006680c7f96SKevin Wolf 1007680c7f96SKevin Wolf bs = bdrv_new(); 1008680c7f96SKevin Wolf bs->open_flags = flags; 1009680c7f96SKevin Wolf bs->explicit_options = qdict_new(); 1010680c7f96SKevin Wolf bs->options = qdict_new(); 1011680c7f96SKevin Wolf bs->opaque = NULL; 1012680c7f96SKevin Wolf 1013680c7f96SKevin Wolf update_options_from_flags(bs->options, flags); 1014680c7f96SKevin Wolf 1015680c7f96SKevin Wolf ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp); 1016680c7f96SKevin Wolf if (ret < 0) { 1017680c7f96SKevin Wolf QDECREF(bs->explicit_options); 1018680c7f96SKevin Wolf QDECREF(bs->options); 1019680c7f96SKevin Wolf bdrv_unref(bs); 1020680c7f96SKevin Wolf return NULL; 1021680c7f96SKevin Wolf } 1022680c7f96SKevin Wolf 1023680c7f96SKevin Wolf return bs; 1024680c7f96SKevin Wolf } 1025680c7f96SKevin Wolf 1026c5f3014bSKevin Wolf QemuOptsList bdrv_runtime_opts = { 102718edf289SKevin Wolf .name = "bdrv_common", 102818edf289SKevin Wolf .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head), 102918edf289SKevin Wolf .desc = { 103018edf289SKevin Wolf { 103118edf289SKevin Wolf .name = "node-name", 103218edf289SKevin Wolf .type = QEMU_OPT_STRING, 103318edf289SKevin Wolf .help = "Node name of the block device node", 103418edf289SKevin Wolf }, 103562392ebbSKevin Wolf { 103662392ebbSKevin Wolf .name = "driver", 103762392ebbSKevin Wolf .type = QEMU_OPT_STRING, 103862392ebbSKevin Wolf .help = "Block driver to use for the node", 103962392ebbSKevin Wolf }, 104091a097e7SKevin Wolf { 104191a097e7SKevin Wolf .name = BDRV_OPT_CACHE_DIRECT, 104291a097e7SKevin Wolf .type = QEMU_OPT_BOOL, 104391a097e7SKevin Wolf .help = "Bypass software writeback cache on the host", 104491a097e7SKevin Wolf }, 104591a097e7SKevin Wolf { 104691a097e7SKevin Wolf .name = BDRV_OPT_CACHE_NO_FLUSH, 104791a097e7SKevin Wolf .type = QEMU_OPT_BOOL, 104891a097e7SKevin Wolf .help = "Ignore flush requests", 104991a097e7SKevin Wolf }, 1050f87a0e29SAlberto Garcia { 1051f87a0e29SAlberto Garcia .name = BDRV_OPT_READ_ONLY, 1052f87a0e29SAlberto Garcia .type = QEMU_OPT_BOOL, 1053f87a0e29SAlberto Garcia .help = "Node is opened in read-only mode", 1054f87a0e29SAlberto Garcia }, 1055692e01a2SKevin Wolf { 1056692e01a2SKevin Wolf .name = "detect-zeroes", 1057692e01a2SKevin Wolf .type = QEMU_OPT_STRING, 1058692e01a2SKevin Wolf .help = "try to optimize zero writes (off, on, unmap)", 1059692e01a2SKevin Wolf }, 1060818584a4SKevin Wolf { 1061818584a4SKevin Wolf .name = "discard", 1062818584a4SKevin Wolf .type = QEMU_OPT_STRING, 1063818584a4SKevin Wolf .help = "discard operation (ignore/off, unmap/on)", 1064818584a4SKevin Wolf }, 106518edf289SKevin Wolf { /* end of list */ } 106618edf289SKevin Wolf }, 106718edf289SKevin Wolf }; 106818edf289SKevin Wolf 1069b6ce07aaSKevin Wolf /* 107057915332SKevin Wolf * Common part for opening disk images and files 1071b6ad491aSKevin Wolf * 1072b6ad491aSKevin Wolf * Removes all processed options from *options. 107357915332SKevin Wolf */ 10745696c6e3SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file, 107582dc8b41SKevin Wolf QDict *options, Error **errp) 107657915332SKevin Wolf { 107757915332SKevin Wolf int ret, open_flags; 1078035fccdfSKevin Wolf const char *filename; 107962392ebbSKevin Wolf const char *driver_name = NULL; 10806913c0c2SBenoît Canet const char *node_name = NULL; 1081818584a4SKevin Wolf const char *discard; 1082692e01a2SKevin Wolf const char *detect_zeroes; 108318edf289SKevin Wolf QemuOpts *opts; 108462392ebbSKevin Wolf BlockDriver *drv; 108534b5d2c6SMax Reitz Error *local_err = NULL; 108657915332SKevin Wolf 10876405875cSPaolo Bonzini assert(bs->file == NULL); 1088707ff828SKevin Wolf assert(options != NULL && bs->options != options); 108957915332SKevin Wolf 109062392ebbSKevin Wolf opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 109162392ebbSKevin Wolf qemu_opts_absorb_qdict(opts, options, &local_err); 109262392ebbSKevin Wolf if (local_err) { 109362392ebbSKevin Wolf error_propagate(errp, local_err); 109462392ebbSKevin Wolf ret = -EINVAL; 109562392ebbSKevin Wolf goto fail_opts; 109662392ebbSKevin Wolf } 109762392ebbSKevin Wolf 10989b7e8691SAlberto Garcia update_flags_from_options(&bs->open_flags, opts); 10999b7e8691SAlberto Garcia 110062392ebbSKevin Wolf driver_name = qemu_opt_get(opts, "driver"); 110162392ebbSKevin Wolf drv = bdrv_find_format(driver_name); 110262392ebbSKevin Wolf assert(drv != NULL); 110362392ebbSKevin Wolf 110445673671SKevin Wolf if (file != NULL) { 11055696c6e3SKevin Wolf filename = blk_bs(file)->filename; 110645673671SKevin Wolf } else { 110745673671SKevin Wolf filename = qdict_get_try_str(options, "filename"); 110845673671SKevin Wolf } 110945673671SKevin Wolf 1110765003dbSKevin Wolf if (drv->bdrv_needs_filename && !filename) { 1111765003dbSKevin Wolf error_setg(errp, "The '%s' block driver requires a file name", 1112765003dbSKevin Wolf drv->format_name); 111318edf289SKevin Wolf ret = -EINVAL; 111418edf289SKevin Wolf goto fail_opts; 111518edf289SKevin Wolf } 111618edf289SKevin Wolf 111782dc8b41SKevin Wolf trace_bdrv_open_common(bs, filename ?: "", bs->open_flags, 111882dc8b41SKevin Wolf drv->format_name); 111962392ebbSKevin Wolf 112082dc8b41SKevin Wolf bs->read_only = !(bs->open_flags & BDRV_O_RDWR); 1121b64ec4e4SFam Zheng 1122b64ec4e4SFam Zheng if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) { 11238f94a6e4SKevin Wolf error_setg(errp, 11248f94a6e4SKevin Wolf !bs->read_only && bdrv_is_whitelisted(drv, true) 11258f94a6e4SKevin Wolf ? "Driver '%s' can only be used for read-only devices" 11268f94a6e4SKevin Wolf : "Driver '%s' is not whitelisted", 11278f94a6e4SKevin Wolf drv->format_name); 112818edf289SKevin Wolf ret = -ENOTSUP; 112918edf289SKevin Wolf goto fail_opts; 1130b64ec4e4SFam Zheng } 113157915332SKevin Wolf 113253fec9d3SStefan Hajnoczi assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */ 113382dc8b41SKevin Wolf if (bs->open_flags & BDRV_O_COPY_ON_READ) { 11340ebd24e0SKevin Wolf if (!bs->read_only) { 113553fec9d3SStefan Hajnoczi bdrv_enable_copy_on_read(bs); 11360ebd24e0SKevin Wolf } else { 11370ebd24e0SKevin Wolf error_setg(errp, "Can't use copy-on-read on read-only device"); 113818edf289SKevin Wolf ret = -EINVAL; 113918edf289SKevin Wolf goto fail_opts; 11400ebd24e0SKevin Wolf } 114153fec9d3SStefan Hajnoczi } 114253fec9d3SStefan Hajnoczi 1143818584a4SKevin Wolf discard = qemu_opt_get(opts, "discard"); 1144818584a4SKevin Wolf if (discard != NULL) { 1145818584a4SKevin Wolf if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) { 1146818584a4SKevin Wolf error_setg(errp, "Invalid discard option"); 1147818584a4SKevin Wolf ret = -EINVAL; 1148818584a4SKevin Wolf goto fail_opts; 1149818584a4SKevin Wolf } 1150818584a4SKevin Wolf } 1151818584a4SKevin Wolf 1152692e01a2SKevin Wolf detect_zeroes = qemu_opt_get(opts, "detect-zeroes"); 1153692e01a2SKevin Wolf if (detect_zeroes) { 1154692e01a2SKevin Wolf BlockdevDetectZeroesOptions value = 1155692e01a2SKevin Wolf qapi_enum_parse(BlockdevDetectZeroesOptions_lookup, 1156692e01a2SKevin Wolf detect_zeroes, 1157692e01a2SKevin Wolf BLOCKDEV_DETECT_ZEROES_OPTIONS__MAX, 1158692e01a2SKevin Wolf BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, 1159692e01a2SKevin Wolf &local_err); 1160692e01a2SKevin Wolf if (local_err) { 1161692e01a2SKevin Wolf error_propagate(errp, local_err); 1162692e01a2SKevin Wolf ret = -EINVAL; 1163692e01a2SKevin Wolf goto fail_opts; 1164692e01a2SKevin Wolf } 1165692e01a2SKevin Wolf 1166692e01a2SKevin Wolf if (value == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP && 1167692e01a2SKevin Wolf !(bs->open_flags & BDRV_O_UNMAP)) 1168692e01a2SKevin Wolf { 1169692e01a2SKevin Wolf error_setg(errp, "setting detect-zeroes to unmap is not allowed " 1170692e01a2SKevin Wolf "without setting discard operation to unmap"); 1171692e01a2SKevin Wolf ret = -EINVAL; 1172692e01a2SKevin Wolf goto fail_opts; 1173692e01a2SKevin Wolf } 1174692e01a2SKevin Wolf 1175692e01a2SKevin Wolf bs->detect_zeroes = value; 1176692e01a2SKevin Wolf } 1177692e01a2SKevin Wolf 1178c2ad1b0cSKevin Wolf if (filename != NULL) { 117957915332SKevin Wolf pstrcpy(bs->filename, sizeof(bs->filename), filename); 1180c2ad1b0cSKevin Wolf } else { 1181c2ad1b0cSKevin Wolf bs->filename[0] = '\0'; 1182c2ad1b0cSKevin Wolf } 118391af7014SMax Reitz pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename); 118457915332SKevin Wolf 118566f82ceeSKevin Wolf /* Open the image, either directly or using a protocol */ 118682dc8b41SKevin Wolf open_flags = bdrv_open_flags(bs, bs->open_flags); 118701a56501SKevin Wolf node_name = qemu_opt_get(opts, "node-name"); 118866f82ceeSKevin Wolf 118901a56501SKevin Wolf assert(!drv->bdrv_file_open || file == NULL); 119001a56501SKevin Wolf ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp); 119157915332SKevin Wolf if (ret < 0) { 119201a56501SKevin Wolf goto fail_opts; 119334b5d2c6SMax Reitz } 119418edf289SKevin Wolf 119518edf289SKevin Wolf qemu_opts_del(opts); 119657915332SKevin Wolf return 0; 119757915332SKevin Wolf 119818edf289SKevin Wolf fail_opts: 119918edf289SKevin Wolf qemu_opts_del(opts); 120057915332SKevin Wolf return ret; 120157915332SKevin Wolf } 120257915332SKevin Wolf 12035e5c4f63SKevin Wolf static QDict *parse_json_filename(const char *filename, Error **errp) 12045e5c4f63SKevin Wolf { 12055e5c4f63SKevin Wolf QObject *options_obj; 12065e5c4f63SKevin Wolf QDict *options; 12075e5c4f63SKevin Wolf int ret; 12085e5c4f63SKevin Wolf 12095e5c4f63SKevin Wolf ret = strstart(filename, "json:", &filename); 12105e5c4f63SKevin Wolf assert(ret); 12115e5c4f63SKevin Wolf 12125e5c4f63SKevin Wolf options_obj = qobject_from_json(filename); 12135e5c4f63SKevin Wolf if (!options_obj) { 12145e5c4f63SKevin Wolf error_setg(errp, "Could not parse the JSON options"); 12155e5c4f63SKevin Wolf return NULL; 12165e5c4f63SKevin Wolf } 12175e5c4f63SKevin Wolf 1218ca6b6e1eSMarkus Armbruster options = qobject_to_qdict(options_obj); 1219ca6b6e1eSMarkus Armbruster if (!options) { 12205e5c4f63SKevin Wolf qobject_decref(options_obj); 12215e5c4f63SKevin Wolf error_setg(errp, "Invalid JSON object given"); 12225e5c4f63SKevin Wolf return NULL; 12235e5c4f63SKevin Wolf } 12245e5c4f63SKevin Wolf 12255e5c4f63SKevin Wolf qdict_flatten(options); 12265e5c4f63SKevin Wolf 12275e5c4f63SKevin Wolf return options; 12285e5c4f63SKevin Wolf } 12295e5c4f63SKevin Wolf 1230de3b53f0SKevin Wolf static void parse_json_protocol(QDict *options, const char **pfilename, 1231de3b53f0SKevin Wolf Error **errp) 1232de3b53f0SKevin Wolf { 1233de3b53f0SKevin Wolf QDict *json_options; 1234de3b53f0SKevin Wolf Error *local_err = NULL; 1235de3b53f0SKevin Wolf 1236de3b53f0SKevin Wolf /* Parse json: pseudo-protocol */ 1237de3b53f0SKevin Wolf if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) { 1238de3b53f0SKevin Wolf return; 1239de3b53f0SKevin Wolf } 1240de3b53f0SKevin Wolf 1241de3b53f0SKevin Wolf json_options = parse_json_filename(*pfilename, &local_err); 1242de3b53f0SKevin Wolf if (local_err) { 1243de3b53f0SKevin Wolf error_propagate(errp, local_err); 1244de3b53f0SKevin Wolf return; 1245de3b53f0SKevin Wolf } 1246de3b53f0SKevin Wolf 1247de3b53f0SKevin Wolf /* Options given in the filename have lower priority than options 1248de3b53f0SKevin Wolf * specified directly */ 1249de3b53f0SKevin Wolf qdict_join(options, json_options, false); 1250de3b53f0SKevin Wolf QDECREF(json_options); 1251de3b53f0SKevin Wolf *pfilename = NULL; 1252de3b53f0SKevin Wolf } 1253de3b53f0SKevin Wolf 125457915332SKevin Wolf /* 1255f54120ffSKevin Wolf * Fills in default options for opening images and converts the legacy 1256f54120ffSKevin Wolf * filename/flags pair to option QDict entries. 125753a29513SMax Reitz * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a 125853a29513SMax Reitz * block driver has been specified explicitly. 1259f54120ffSKevin Wolf */ 1260de3b53f0SKevin Wolf static int bdrv_fill_options(QDict **options, const char *filename, 1261053e1578SMax Reitz int *flags, Error **errp) 1262f54120ffSKevin Wolf { 1263f54120ffSKevin Wolf const char *drvname; 126453a29513SMax Reitz bool protocol = *flags & BDRV_O_PROTOCOL; 1265f54120ffSKevin Wolf bool parse_filename = false; 1266053e1578SMax Reitz BlockDriver *drv = NULL; 1267f54120ffSKevin Wolf Error *local_err = NULL; 1268f54120ffSKevin Wolf 126953a29513SMax Reitz drvname = qdict_get_try_str(*options, "driver"); 1270053e1578SMax Reitz if (drvname) { 1271053e1578SMax Reitz drv = bdrv_find_format(drvname); 1272053e1578SMax Reitz if (!drv) { 1273053e1578SMax Reitz error_setg(errp, "Unknown driver '%s'", drvname); 1274053e1578SMax Reitz return -ENOENT; 1275053e1578SMax Reitz } 127653a29513SMax Reitz /* If the user has explicitly specified the driver, this choice should 127753a29513SMax Reitz * override the BDRV_O_PROTOCOL flag */ 1278053e1578SMax Reitz protocol = drv->bdrv_file_open; 127953a29513SMax Reitz } 128053a29513SMax Reitz 128153a29513SMax Reitz if (protocol) { 128253a29513SMax Reitz *flags |= BDRV_O_PROTOCOL; 128353a29513SMax Reitz } else { 128453a29513SMax Reitz *flags &= ~BDRV_O_PROTOCOL; 128553a29513SMax Reitz } 128653a29513SMax Reitz 128791a097e7SKevin Wolf /* Translate cache options from flags into options */ 128891a097e7SKevin Wolf update_options_from_flags(*options, *flags); 128991a097e7SKevin Wolf 1290f54120ffSKevin Wolf /* Fetch the file name from the options QDict if necessary */ 129117b005f1SKevin Wolf if (protocol && filename) { 1292f54120ffSKevin Wolf if (!qdict_haskey(*options, "filename")) { 1293f54120ffSKevin Wolf qdict_put(*options, "filename", qstring_from_str(filename)); 1294f54120ffSKevin Wolf parse_filename = true; 1295f54120ffSKevin Wolf } else { 1296f54120ffSKevin Wolf error_setg(errp, "Can't specify 'file' and 'filename' options at " 1297f54120ffSKevin Wolf "the same time"); 1298f54120ffSKevin Wolf return -EINVAL; 1299f54120ffSKevin Wolf } 1300f54120ffSKevin Wolf } 1301f54120ffSKevin Wolf 1302f54120ffSKevin Wolf /* Find the right block driver */ 1303f54120ffSKevin Wolf filename = qdict_get_try_str(*options, "filename"); 1304f54120ffSKevin Wolf 130517b005f1SKevin Wolf if (!drvname && protocol) { 1306f54120ffSKevin Wolf if (filename) { 1307b65a5e12SMax Reitz drv = bdrv_find_protocol(filename, parse_filename, errp); 1308f54120ffSKevin Wolf if (!drv) { 1309f54120ffSKevin Wolf return -EINVAL; 1310f54120ffSKevin Wolf } 1311f54120ffSKevin Wolf 1312f54120ffSKevin Wolf drvname = drv->format_name; 1313f54120ffSKevin Wolf qdict_put(*options, "driver", qstring_from_str(drvname)); 1314f54120ffSKevin Wolf } else { 1315f54120ffSKevin Wolf error_setg(errp, "Must specify either driver or file"); 1316f54120ffSKevin Wolf return -EINVAL; 1317f54120ffSKevin Wolf } 131817b005f1SKevin Wolf } 131917b005f1SKevin Wolf 132017b005f1SKevin Wolf assert(drv || !protocol); 1321f54120ffSKevin Wolf 1322f54120ffSKevin Wolf /* Driver-specific filename parsing */ 132317b005f1SKevin Wolf if (drv && drv->bdrv_parse_filename && parse_filename) { 1324f54120ffSKevin Wolf drv->bdrv_parse_filename(filename, *options, &local_err); 1325f54120ffSKevin Wolf if (local_err) { 1326f54120ffSKevin Wolf error_propagate(errp, local_err); 1327f54120ffSKevin Wolf return -EINVAL; 1328f54120ffSKevin Wolf } 1329f54120ffSKevin Wolf 1330f54120ffSKevin Wolf if (!drv->bdrv_needs_filename) { 1331f54120ffSKevin Wolf qdict_del(*options, "filename"); 1332f54120ffSKevin Wolf } 1333f54120ffSKevin Wolf } 1334f54120ffSKevin Wolf 1335f54120ffSKevin Wolf return 0; 1336f54120ffSKevin Wolf } 1337f54120ffSKevin Wolf 133833a610c3SKevin Wolf /* 133933a610c3SKevin Wolf * Check whether permissions on this node can be changed in a way that 134033a610c3SKevin Wolf * @cumulative_perms and @cumulative_shared_perms are the new cumulative 134133a610c3SKevin Wolf * permissions of all its parents. This involves checking whether all necessary 134233a610c3SKevin Wolf * permission changes to child nodes can be performed. 134333a610c3SKevin Wolf * 134433a610c3SKevin Wolf * A call to this function must always be followed by a call to bdrv_set_perm() 134533a610c3SKevin Wolf * or bdrv_abort_perm_update(). 134633a610c3SKevin Wolf */ 134733a610c3SKevin Wolf static int bdrv_check_perm(BlockDriverState *bs, uint64_t cumulative_perms, 134833a610c3SKevin Wolf uint64_t cumulative_shared_perms, Error **errp) 134933a610c3SKevin Wolf { 135033a610c3SKevin Wolf BlockDriver *drv = bs->drv; 135133a610c3SKevin Wolf BdrvChild *c; 135233a610c3SKevin Wolf int ret; 135333a610c3SKevin Wolf 135433a610c3SKevin Wolf /* Write permissions never work with read-only images */ 135533a610c3SKevin Wolf if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) && 135633a610c3SKevin Wolf bdrv_is_read_only(bs)) 135733a610c3SKevin Wolf { 135833a610c3SKevin Wolf error_setg(errp, "Block node is read-only"); 135933a610c3SKevin Wolf return -EPERM; 136033a610c3SKevin Wolf } 136133a610c3SKevin Wolf 136233a610c3SKevin Wolf /* Check this node */ 136333a610c3SKevin Wolf if (!drv) { 136433a610c3SKevin Wolf return 0; 136533a610c3SKevin Wolf } 136633a610c3SKevin Wolf 136733a610c3SKevin Wolf if (drv->bdrv_check_perm) { 136833a610c3SKevin Wolf return drv->bdrv_check_perm(bs, cumulative_perms, 136933a610c3SKevin Wolf cumulative_shared_perms, errp); 137033a610c3SKevin Wolf } 137133a610c3SKevin Wolf 137278e421c9SKevin Wolf /* Drivers that never have children can omit .bdrv_child_perm() */ 137333a610c3SKevin Wolf if (!drv->bdrv_child_perm) { 137478e421c9SKevin Wolf assert(QLIST_EMPTY(&bs->children)); 137533a610c3SKevin Wolf return 0; 137633a610c3SKevin Wolf } 137733a610c3SKevin Wolf 137833a610c3SKevin Wolf /* Check all children */ 137933a610c3SKevin Wolf QLIST_FOREACH(c, &bs->children, next) { 138033a610c3SKevin Wolf uint64_t cur_perm, cur_shared; 138133a610c3SKevin Wolf drv->bdrv_child_perm(bs, c, c->role, 138233a610c3SKevin Wolf cumulative_perms, cumulative_shared_perms, 138333a610c3SKevin Wolf &cur_perm, &cur_shared); 138433a610c3SKevin Wolf ret = bdrv_child_check_perm(c, cur_perm, cur_shared, errp); 138533a610c3SKevin Wolf if (ret < 0) { 138633a610c3SKevin Wolf return ret; 138733a610c3SKevin Wolf } 138833a610c3SKevin Wolf } 138933a610c3SKevin Wolf 139033a610c3SKevin Wolf return 0; 139133a610c3SKevin Wolf } 139233a610c3SKevin Wolf 139333a610c3SKevin Wolf /* 139433a610c3SKevin Wolf * Notifies drivers that after a previous bdrv_check_perm() call, the 139533a610c3SKevin Wolf * permission update is not performed and any preparations made for it (e.g. 139633a610c3SKevin Wolf * taken file locks) need to be undone. 139733a610c3SKevin Wolf * 139833a610c3SKevin Wolf * This function recursively notifies all child nodes. 139933a610c3SKevin Wolf */ 140033a610c3SKevin Wolf static void bdrv_abort_perm_update(BlockDriverState *bs) 140133a610c3SKevin Wolf { 140233a610c3SKevin Wolf BlockDriver *drv = bs->drv; 140333a610c3SKevin Wolf BdrvChild *c; 140433a610c3SKevin Wolf 140533a610c3SKevin Wolf if (!drv) { 140633a610c3SKevin Wolf return; 140733a610c3SKevin Wolf } 140833a610c3SKevin Wolf 140933a610c3SKevin Wolf if (drv->bdrv_abort_perm_update) { 141033a610c3SKevin Wolf drv->bdrv_abort_perm_update(bs); 141133a610c3SKevin Wolf } 141233a610c3SKevin Wolf 141333a610c3SKevin Wolf QLIST_FOREACH(c, &bs->children, next) { 141433a610c3SKevin Wolf bdrv_child_abort_perm_update(c); 141533a610c3SKevin Wolf } 141633a610c3SKevin Wolf } 141733a610c3SKevin Wolf 141833a610c3SKevin Wolf static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms, 141933a610c3SKevin Wolf uint64_t cumulative_shared_perms) 142033a610c3SKevin Wolf { 142133a610c3SKevin Wolf BlockDriver *drv = bs->drv; 142233a610c3SKevin Wolf BdrvChild *c; 142333a610c3SKevin Wolf 142433a610c3SKevin Wolf if (!drv) { 142533a610c3SKevin Wolf return; 142633a610c3SKevin Wolf } 142733a610c3SKevin Wolf 142833a610c3SKevin Wolf /* Update this node */ 142933a610c3SKevin Wolf if (drv->bdrv_set_perm) { 143033a610c3SKevin Wolf drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms); 143133a610c3SKevin Wolf } 143233a610c3SKevin Wolf 143378e421c9SKevin Wolf /* Drivers that never have children can omit .bdrv_child_perm() */ 143433a610c3SKevin Wolf if (!drv->bdrv_child_perm) { 143578e421c9SKevin Wolf assert(QLIST_EMPTY(&bs->children)); 143633a610c3SKevin Wolf return; 143733a610c3SKevin Wolf } 143833a610c3SKevin Wolf 143933a610c3SKevin Wolf /* Update all children */ 144033a610c3SKevin Wolf QLIST_FOREACH(c, &bs->children, next) { 144133a610c3SKevin Wolf uint64_t cur_perm, cur_shared; 144233a610c3SKevin Wolf drv->bdrv_child_perm(bs, c, c->role, 144333a610c3SKevin Wolf cumulative_perms, cumulative_shared_perms, 144433a610c3SKevin Wolf &cur_perm, &cur_shared); 144533a610c3SKevin Wolf bdrv_child_set_perm(c, cur_perm, cur_shared); 144633a610c3SKevin Wolf } 144733a610c3SKevin Wolf } 144833a610c3SKevin Wolf 144933a610c3SKevin Wolf static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm, 145033a610c3SKevin Wolf uint64_t *shared_perm) 145133a610c3SKevin Wolf { 145233a610c3SKevin Wolf BdrvChild *c; 145333a610c3SKevin Wolf uint64_t cumulative_perms = 0; 145433a610c3SKevin Wolf uint64_t cumulative_shared_perms = BLK_PERM_ALL; 145533a610c3SKevin Wolf 145633a610c3SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 145733a610c3SKevin Wolf cumulative_perms |= c->perm; 145833a610c3SKevin Wolf cumulative_shared_perms &= c->shared_perm; 145933a610c3SKevin Wolf } 146033a610c3SKevin Wolf 146133a610c3SKevin Wolf *perm = cumulative_perms; 146233a610c3SKevin Wolf *shared_perm = cumulative_shared_perms; 146333a610c3SKevin Wolf } 146433a610c3SKevin Wolf 146533a610c3SKevin Wolf /* 146633a610c3SKevin Wolf * Checks whether a new reference to @bs can be added if the new user requires 146733a610c3SKevin Wolf * @new_used_perm/@new_shared_perm as its permissions. If @ignore_child is set, 146833a610c3SKevin Wolf * this old reference is ignored in the calculations; this allows checking 146933a610c3SKevin Wolf * permission updates for an existing reference. 147033a610c3SKevin Wolf * 147133a610c3SKevin Wolf * Needs to be followed by a call to either bdrv_set_perm() or 147233a610c3SKevin Wolf * bdrv_abort_perm_update(). */ 1473d5e6f437SKevin Wolf static int bdrv_check_update_perm(BlockDriverState *bs, uint64_t new_used_perm, 1474d5e6f437SKevin Wolf uint64_t new_shared_perm, 1475d5e6f437SKevin Wolf BdrvChild *ignore_child, Error **errp) 1476d5e6f437SKevin Wolf { 1477d5e6f437SKevin Wolf BdrvChild *c; 147833a610c3SKevin Wolf uint64_t cumulative_perms = new_used_perm; 147933a610c3SKevin Wolf uint64_t cumulative_shared_perms = new_shared_perm; 1480d5e6f437SKevin Wolf 1481d5e6f437SKevin Wolf /* There is no reason why anyone couldn't tolerate write_unchanged */ 1482d5e6f437SKevin Wolf assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED); 1483d5e6f437SKevin Wolf 1484d5e6f437SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 1485d5e6f437SKevin Wolf if (c == ignore_child) { 1486d5e6f437SKevin Wolf continue; 1487d5e6f437SKevin Wolf } 1488d5e6f437SKevin Wolf 1489d5e6f437SKevin Wolf if ((new_used_perm & c->shared_perm) != new_used_perm || 1490d5e6f437SKevin Wolf (c->perm & new_shared_perm) != c->perm) 1491d5e6f437SKevin Wolf { 1492d5e6f437SKevin Wolf const char *user = NULL; 1493d5e6f437SKevin Wolf if (c->role->get_name) { 1494d5e6f437SKevin Wolf user = c->role->get_name(c); 1495d5e6f437SKevin Wolf if (user && !*user) { 1496d5e6f437SKevin Wolf user = NULL; 1497d5e6f437SKevin Wolf } 1498d5e6f437SKevin Wolf } 1499d5e6f437SKevin Wolf error_setg(errp, "Conflicts with %s", user ?: "another operation"); 1500d5e6f437SKevin Wolf return -EPERM; 1501d5e6f437SKevin Wolf } 150233a610c3SKevin Wolf 150333a610c3SKevin Wolf cumulative_perms |= c->perm; 150433a610c3SKevin Wolf cumulative_shared_perms &= c->shared_perm; 1505d5e6f437SKevin Wolf } 1506d5e6f437SKevin Wolf 150733a610c3SKevin Wolf return bdrv_check_perm(bs, cumulative_perms, cumulative_shared_perms, errp); 150833a610c3SKevin Wolf } 150933a610c3SKevin Wolf 151033a610c3SKevin Wolf /* Needs to be followed by a call to either bdrv_child_set_perm() or 151133a610c3SKevin Wolf * bdrv_child_abort_perm_update(). */ 151233a610c3SKevin Wolf int bdrv_child_check_perm(BdrvChild *c, uint64_t perm, uint64_t shared, 151333a610c3SKevin Wolf Error **errp) 151433a610c3SKevin Wolf { 151533a610c3SKevin Wolf return bdrv_check_update_perm(c->bs, perm, shared, c, errp); 151633a610c3SKevin Wolf } 151733a610c3SKevin Wolf 151833a610c3SKevin Wolf void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared) 151933a610c3SKevin Wolf { 152033a610c3SKevin Wolf uint64_t cumulative_perms, cumulative_shared_perms; 152133a610c3SKevin Wolf 152233a610c3SKevin Wolf c->perm = perm; 152333a610c3SKevin Wolf c->shared_perm = shared; 152433a610c3SKevin Wolf 152533a610c3SKevin Wolf bdrv_get_cumulative_perm(c->bs, &cumulative_perms, 152633a610c3SKevin Wolf &cumulative_shared_perms); 152733a610c3SKevin Wolf bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms); 152833a610c3SKevin Wolf } 152933a610c3SKevin Wolf 153033a610c3SKevin Wolf void bdrv_child_abort_perm_update(BdrvChild *c) 153133a610c3SKevin Wolf { 153233a610c3SKevin Wolf bdrv_abort_perm_update(c->bs); 153333a610c3SKevin Wolf } 153433a610c3SKevin Wolf 153533a610c3SKevin Wolf int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared, 153633a610c3SKevin Wolf Error **errp) 153733a610c3SKevin Wolf { 153833a610c3SKevin Wolf int ret; 153933a610c3SKevin Wolf 154033a610c3SKevin Wolf ret = bdrv_child_check_perm(c, perm, shared, errp); 154133a610c3SKevin Wolf if (ret < 0) { 154233a610c3SKevin Wolf bdrv_child_abort_perm_update(c); 154333a610c3SKevin Wolf return ret; 154433a610c3SKevin Wolf } 154533a610c3SKevin Wolf 154633a610c3SKevin Wolf bdrv_child_set_perm(c, perm, shared); 154733a610c3SKevin Wolf 1548d5e6f437SKevin Wolf return 0; 1549d5e6f437SKevin Wolf } 1550d5e6f437SKevin Wolf 15516a1b9ee1SKevin Wolf #define DEFAULT_PERM_PASSTHROUGH (BLK_PERM_CONSISTENT_READ \ 15526a1b9ee1SKevin Wolf | BLK_PERM_WRITE \ 15536a1b9ee1SKevin Wolf | BLK_PERM_WRITE_UNCHANGED \ 15546a1b9ee1SKevin Wolf | BLK_PERM_RESIZE) 15556a1b9ee1SKevin Wolf #define DEFAULT_PERM_UNCHANGED (BLK_PERM_ALL & ~DEFAULT_PERM_PASSTHROUGH) 15566a1b9ee1SKevin Wolf 15576a1b9ee1SKevin Wolf void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c, 15586a1b9ee1SKevin Wolf const BdrvChildRole *role, 15596a1b9ee1SKevin Wolf uint64_t perm, uint64_t shared, 15606a1b9ee1SKevin Wolf uint64_t *nperm, uint64_t *nshared) 15616a1b9ee1SKevin Wolf { 15626a1b9ee1SKevin Wolf if (c == NULL) { 15636a1b9ee1SKevin Wolf *nperm = perm & DEFAULT_PERM_PASSTHROUGH; 15646a1b9ee1SKevin Wolf *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED; 15656a1b9ee1SKevin Wolf return; 15666a1b9ee1SKevin Wolf } 15676a1b9ee1SKevin Wolf 15686a1b9ee1SKevin Wolf *nperm = (perm & DEFAULT_PERM_PASSTHROUGH) | 15696a1b9ee1SKevin Wolf (c->perm & DEFAULT_PERM_UNCHANGED); 15706a1b9ee1SKevin Wolf *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | 15716a1b9ee1SKevin Wolf (c->shared_perm & DEFAULT_PERM_UNCHANGED); 15726a1b9ee1SKevin Wolf } 15736a1b9ee1SKevin Wolf 15746b1a044aSKevin Wolf void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c, 15756b1a044aSKevin Wolf const BdrvChildRole *role, 15766b1a044aSKevin Wolf uint64_t perm, uint64_t shared, 15776b1a044aSKevin Wolf uint64_t *nperm, uint64_t *nshared) 15786b1a044aSKevin Wolf { 15796b1a044aSKevin Wolf bool backing = (role == &child_backing); 15806b1a044aSKevin Wolf assert(role == &child_backing || role == &child_file); 15816b1a044aSKevin Wolf 15826b1a044aSKevin Wolf if (!backing) { 15836b1a044aSKevin Wolf /* Apart from the modifications below, the same permissions are 15846b1a044aSKevin Wolf * forwarded and left alone as for filters */ 15856b1a044aSKevin Wolf bdrv_filter_default_perms(bs, c, role, perm, shared, &perm, &shared); 15866b1a044aSKevin Wolf 15876b1a044aSKevin Wolf /* Format drivers may touch metadata even if the guest doesn't write */ 15886b1a044aSKevin Wolf if (!bdrv_is_read_only(bs)) { 15896b1a044aSKevin Wolf perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE; 15906b1a044aSKevin Wolf } 15916b1a044aSKevin Wolf 15926b1a044aSKevin Wolf /* bs->file always needs to be consistent because of the metadata. We 15936b1a044aSKevin Wolf * can never allow other users to resize or write to it. */ 15946b1a044aSKevin Wolf perm |= BLK_PERM_CONSISTENT_READ; 15956b1a044aSKevin Wolf shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE); 15966b1a044aSKevin Wolf } else { 15976b1a044aSKevin Wolf /* We want consistent read from backing files if the parent needs it. 15986b1a044aSKevin Wolf * No other operations are performed on backing files. */ 15996b1a044aSKevin Wolf perm &= BLK_PERM_CONSISTENT_READ; 16006b1a044aSKevin Wolf 16016b1a044aSKevin Wolf /* If the parent can deal with changing data, we're okay with a 16026b1a044aSKevin Wolf * writable and resizable backing file. */ 16036b1a044aSKevin Wolf /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */ 16046b1a044aSKevin Wolf if (shared & BLK_PERM_WRITE) { 16056b1a044aSKevin Wolf shared = BLK_PERM_WRITE | BLK_PERM_RESIZE; 16066b1a044aSKevin Wolf } else { 16076b1a044aSKevin Wolf shared = 0; 16086b1a044aSKevin Wolf } 16096b1a044aSKevin Wolf 16106b1a044aSKevin Wolf shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD | 16116b1a044aSKevin Wolf BLK_PERM_WRITE_UNCHANGED; 16126b1a044aSKevin Wolf } 16136b1a044aSKevin Wolf 16146b1a044aSKevin Wolf *nperm = perm; 16156b1a044aSKevin Wolf *nshared = shared; 16166b1a044aSKevin Wolf } 16176b1a044aSKevin Wolf 161833a610c3SKevin Wolf static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs, 161933a610c3SKevin Wolf bool check_new_perm) 1620e9740bc6SKevin Wolf { 1621e9740bc6SKevin Wolf BlockDriverState *old_bs = child->bs; 162233a610c3SKevin Wolf uint64_t perm, shared_perm; 1623e9740bc6SKevin Wolf 1624e9740bc6SKevin Wolf if (old_bs) { 162536fe1331SKevin Wolf if (old_bs->quiesce_counter && child->role->drained_end) { 162636fe1331SKevin Wolf child->role->drained_end(child); 1627e9740bc6SKevin Wolf } 162836fe1331SKevin Wolf QLIST_REMOVE(child, next_parent); 162933a610c3SKevin Wolf 163033a610c3SKevin Wolf /* Update permissions for old node. This is guaranteed to succeed 163133a610c3SKevin Wolf * because we're just taking a parent away, so we're loosening 163233a610c3SKevin Wolf * restrictions. */ 163333a610c3SKevin Wolf bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm); 163433a610c3SKevin Wolf bdrv_check_perm(old_bs, perm, shared_perm, &error_abort); 163533a610c3SKevin Wolf bdrv_set_perm(old_bs, perm, shared_perm); 1636e9740bc6SKevin Wolf } 1637e9740bc6SKevin Wolf 1638e9740bc6SKevin Wolf child->bs = new_bs; 163936fe1331SKevin Wolf 164036fe1331SKevin Wolf if (new_bs) { 164136fe1331SKevin Wolf QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent); 164236fe1331SKevin Wolf if (new_bs->quiesce_counter && child->role->drained_begin) { 164336fe1331SKevin Wolf child->role->drained_begin(child); 164436fe1331SKevin Wolf } 164533a610c3SKevin Wolf 164633a610c3SKevin Wolf bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm); 164733a610c3SKevin Wolf if (check_new_perm) { 164833a610c3SKevin Wolf bdrv_check_perm(new_bs, perm, shared_perm, &error_abort); 164933a610c3SKevin Wolf } 165033a610c3SKevin Wolf bdrv_set_perm(new_bs, perm, shared_perm); 165136fe1331SKevin Wolf } 1652e9740bc6SKevin Wolf } 1653e9740bc6SKevin Wolf 1654f21d96d0SKevin Wolf BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs, 1655260fecf1SKevin Wolf const char *child_name, 165636fe1331SKevin Wolf const BdrvChildRole *child_role, 1657d5e6f437SKevin Wolf uint64_t perm, uint64_t shared_perm, 1658d5e6f437SKevin Wolf void *opaque, Error **errp) 1659df581792SKevin Wolf { 1660d5e6f437SKevin Wolf BdrvChild *child; 1661d5e6f437SKevin Wolf int ret; 1662d5e6f437SKevin Wolf 1663d5e6f437SKevin Wolf ret = bdrv_check_update_perm(child_bs, perm, shared_perm, NULL, errp); 1664d5e6f437SKevin Wolf if (ret < 0) { 166533a610c3SKevin Wolf bdrv_abort_perm_update(child_bs); 1666d5e6f437SKevin Wolf return NULL; 1667d5e6f437SKevin Wolf } 1668d5e6f437SKevin Wolf 1669d5e6f437SKevin Wolf child = g_new(BdrvChild, 1); 1670df581792SKevin Wolf *child = (BdrvChild) { 1671e9740bc6SKevin Wolf .bs = NULL, 1672260fecf1SKevin Wolf .name = g_strdup(child_name), 1673df581792SKevin Wolf .role = child_role, 1674d5e6f437SKevin Wolf .perm = perm, 1675d5e6f437SKevin Wolf .shared_perm = shared_perm, 167636fe1331SKevin Wolf .opaque = opaque, 1677df581792SKevin Wolf }; 1678df581792SKevin Wolf 167933a610c3SKevin Wolf /* This performs the matching bdrv_set_perm() for the above check. */ 168033a610c3SKevin Wolf bdrv_replace_child(child, child_bs, false); 1681b4b059f6SKevin Wolf 1682b4b059f6SKevin Wolf return child; 1683df581792SKevin Wolf } 1684df581792SKevin Wolf 168598292c61SWen Congyang BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs, 1686f21d96d0SKevin Wolf BlockDriverState *child_bs, 1687f21d96d0SKevin Wolf const char *child_name, 16888b2ff529SKevin Wolf const BdrvChildRole *child_role, 16898b2ff529SKevin Wolf Error **errp) 1690f21d96d0SKevin Wolf { 1691d5e6f437SKevin Wolf BdrvChild *child; 1692f68c598bSKevin Wolf uint64_t perm, shared_perm; 1693d5e6f437SKevin Wolf 1694f68c598bSKevin Wolf bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm); 1695f68c598bSKevin Wolf 1696f68c598bSKevin Wolf assert(parent_bs->drv); 1697f68c598bSKevin Wolf parent_bs->drv->bdrv_child_perm(parent_bs, NULL, child_role, 1698f68c598bSKevin Wolf perm, shared_perm, &perm, &shared_perm); 1699f68c598bSKevin Wolf 1700d5e6f437SKevin Wolf child = bdrv_root_attach_child(child_bs, child_name, child_role, 1701f68c598bSKevin Wolf perm, shared_perm, parent_bs, errp); 1702d5e6f437SKevin Wolf if (child == NULL) { 1703d5e6f437SKevin Wolf return NULL; 1704d5e6f437SKevin Wolf } 1705d5e6f437SKevin Wolf 1706f21d96d0SKevin Wolf QLIST_INSERT_HEAD(&parent_bs->children, child, next); 1707f21d96d0SKevin Wolf return child; 1708f21d96d0SKevin Wolf } 1709f21d96d0SKevin Wolf 17103f09bfbcSKevin Wolf static void bdrv_detach_child(BdrvChild *child) 171133a60407SKevin Wolf { 1712f21d96d0SKevin Wolf if (child->next.le_prev) { 171333a60407SKevin Wolf QLIST_REMOVE(child, next); 1714f21d96d0SKevin Wolf child->next.le_prev = NULL; 1715f21d96d0SKevin Wolf } 1716e9740bc6SKevin Wolf 171733a610c3SKevin Wolf bdrv_replace_child(child, NULL, false); 1718e9740bc6SKevin Wolf 1719260fecf1SKevin Wolf g_free(child->name); 172033a60407SKevin Wolf g_free(child); 172133a60407SKevin Wolf } 172233a60407SKevin Wolf 1723f21d96d0SKevin Wolf void bdrv_root_unref_child(BdrvChild *child) 172433a60407SKevin Wolf { 1725779020cbSKevin Wolf BlockDriverState *child_bs; 1726779020cbSKevin Wolf 1727f21d96d0SKevin Wolf child_bs = child->bs; 1728f21d96d0SKevin Wolf bdrv_detach_child(child); 1729f21d96d0SKevin Wolf bdrv_unref(child_bs); 1730f21d96d0SKevin Wolf } 1731f21d96d0SKevin Wolf 1732f21d96d0SKevin Wolf void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child) 1733f21d96d0SKevin Wolf { 1734779020cbSKevin Wolf if (child == NULL) { 1735779020cbSKevin Wolf return; 1736779020cbSKevin Wolf } 173733a60407SKevin Wolf 173833a60407SKevin Wolf if (child->bs->inherits_from == parent) { 17394e4bf5c4SKevin Wolf BdrvChild *c; 17404e4bf5c4SKevin Wolf 17414e4bf5c4SKevin Wolf /* Remove inherits_from only when the last reference between parent and 17424e4bf5c4SKevin Wolf * child->bs goes away. */ 17434e4bf5c4SKevin Wolf QLIST_FOREACH(c, &parent->children, next) { 17444e4bf5c4SKevin Wolf if (c != child && c->bs == child->bs) { 17454e4bf5c4SKevin Wolf break; 17464e4bf5c4SKevin Wolf } 17474e4bf5c4SKevin Wolf } 17484e4bf5c4SKevin Wolf if (c == NULL) { 174933a60407SKevin Wolf child->bs->inherits_from = NULL; 175033a60407SKevin Wolf } 17514e4bf5c4SKevin Wolf } 175233a60407SKevin Wolf 1753f21d96d0SKevin Wolf bdrv_root_unref_child(child); 175433a60407SKevin Wolf } 175533a60407SKevin Wolf 17565c8cab48SKevin Wolf 17575c8cab48SKevin Wolf static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load) 17585c8cab48SKevin Wolf { 17595c8cab48SKevin Wolf BdrvChild *c; 17605c8cab48SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 17615c8cab48SKevin Wolf if (c->role->change_media) { 17625c8cab48SKevin Wolf c->role->change_media(c, load); 17635c8cab48SKevin Wolf } 17645c8cab48SKevin Wolf } 17655c8cab48SKevin Wolf } 17665c8cab48SKevin Wolf 17675c8cab48SKevin Wolf static void bdrv_parent_cb_resize(BlockDriverState *bs) 17685c8cab48SKevin Wolf { 17695c8cab48SKevin Wolf BdrvChild *c; 17705c8cab48SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 17715c8cab48SKevin Wolf if (c->role->resize) { 17725c8cab48SKevin Wolf c->role->resize(c); 17735c8cab48SKevin Wolf } 17745c8cab48SKevin Wolf } 17755c8cab48SKevin Wolf } 17765c8cab48SKevin Wolf 17775db15a57SKevin Wolf /* 17785db15a57SKevin Wolf * Sets the backing file link of a BDS. A new reference is created; callers 17795db15a57SKevin Wolf * which don't need their own reference any more must call bdrv_unref(). 17805db15a57SKevin Wolf */ 17818d24cce1SFam Zheng void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd) 17828d24cce1SFam Zheng { 17835db15a57SKevin Wolf if (backing_hd) { 17845db15a57SKevin Wolf bdrv_ref(backing_hd); 17855db15a57SKevin Wolf } 17868d24cce1SFam Zheng 1787760e0063SKevin Wolf if (bs->backing) { 1788826b6ca0SFam Zheng assert(bs->backing_blocker); 1789760e0063SKevin Wolf bdrv_op_unblock_all(bs->backing->bs, bs->backing_blocker); 17905db15a57SKevin Wolf bdrv_unref_child(bs, bs->backing); 1791826b6ca0SFam Zheng } else if (backing_hd) { 1792826b6ca0SFam Zheng error_setg(&bs->backing_blocker, 179381e5f78aSAlberto Garcia "node is used as backing hd of '%s'", 179481e5f78aSAlberto Garcia bdrv_get_device_or_node_name(bs)); 1795826b6ca0SFam Zheng } 1796826b6ca0SFam Zheng 17978d24cce1SFam Zheng if (!backing_hd) { 1798826b6ca0SFam Zheng error_free(bs->backing_blocker); 1799826b6ca0SFam Zheng bs->backing_blocker = NULL; 1800760e0063SKevin Wolf bs->backing = NULL; 18018d24cce1SFam Zheng goto out; 18028d24cce1SFam Zheng } 18038b2ff529SKevin Wolf /* FIXME Error handling */ 18048b2ff529SKevin Wolf bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing, 18058b2ff529SKevin Wolf &error_abort); 18068d24cce1SFam Zheng bs->open_flags &= ~BDRV_O_NO_BACKING; 18078d24cce1SFam Zheng pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_hd->filename); 18088d24cce1SFam Zheng pstrcpy(bs->backing_format, sizeof(bs->backing_format), 18098d24cce1SFam Zheng backing_hd->drv ? backing_hd->drv->format_name : ""); 1810826b6ca0SFam Zheng 1811760e0063SKevin Wolf bdrv_op_block_all(backing_hd, bs->backing_blocker); 181261b49e48SAlberto Garcia /* Otherwise we won't be able to commit or stream */ 1813760e0063SKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET, 1814826b6ca0SFam Zheng bs->backing_blocker); 181561b49e48SAlberto Garcia bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM, 181661b49e48SAlberto Garcia bs->backing_blocker); 1817e9d6456eSWen Congyang /* 1818e9d6456eSWen Congyang * We do backup in 3 ways: 1819e9d6456eSWen Congyang * 1. drive backup 1820e9d6456eSWen Congyang * The target bs is new opened, and the source is top BDS 1821e9d6456eSWen Congyang * 2. blockdev backup 1822e9d6456eSWen Congyang * Both the source and the target are top BDSes. 1823e9d6456eSWen Congyang * 3. internal backup(used for block replication) 1824e9d6456eSWen Congyang * Both the source and the target are backing file 1825e9d6456eSWen Congyang * 1826e9d6456eSWen Congyang * In case 1 and 2, neither the source nor the target is the backing file. 1827e9d6456eSWen Congyang * In case 3, we will block the top BDS, so there is only one block job 1828e9d6456eSWen Congyang * for the top BDS and its backing chain. 1829e9d6456eSWen Congyang */ 1830e9d6456eSWen Congyang bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE, 1831e9d6456eSWen Congyang bs->backing_blocker); 1832e9d6456eSWen Congyang bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET, 1833e9d6456eSWen Congyang bs->backing_blocker); 18348d24cce1SFam Zheng out: 18353baca891SKevin Wolf bdrv_refresh_limits(bs, NULL); 18368d24cce1SFam Zheng } 18378d24cce1SFam Zheng 183831ca6d07SKevin Wolf /* 183931ca6d07SKevin Wolf * Opens the backing file for a BlockDriverState if not yet open 184031ca6d07SKevin Wolf * 1841d9b7b057SKevin Wolf * bdref_key specifies the key for the image's BlockdevRef in the options QDict. 1842d9b7b057SKevin Wolf * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict 1843d9b7b057SKevin Wolf * itself, all options starting with "${bdref_key}." are considered part of the 1844d9b7b057SKevin Wolf * BlockdevRef. 1845d9b7b057SKevin Wolf * 1846d9b7b057SKevin Wolf * TODO Can this be unified with bdrv_open_image()? 184731ca6d07SKevin Wolf */ 1848d9b7b057SKevin Wolf int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options, 1849d9b7b057SKevin Wolf const char *bdref_key, Error **errp) 18509156df12SPaolo Bonzini { 18511ba4b6a5SBenoît Canet char *backing_filename = g_malloc0(PATH_MAX); 1852d9b7b057SKevin Wolf char *bdref_key_dot; 1853d9b7b057SKevin Wolf const char *reference = NULL; 1854317fc44eSKevin Wolf int ret = 0; 18558d24cce1SFam Zheng BlockDriverState *backing_hd; 1856d9b7b057SKevin Wolf QDict *options; 1857d9b7b057SKevin Wolf QDict *tmp_parent_options = NULL; 185834b5d2c6SMax Reitz Error *local_err = NULL; 18599156df12SPaolo Bonzini 1860760e0063SKevin Wolf if (bs->backing != NULL) { 18611ba4b6a5SBenoît Canet goto free_exit; 18629156df12SPaolo Bonzini } 18639156df12SPaolo Bonzini 186431ca6d07SKevin Wolf /* NULL means an empty set of options */ 1865d9b7b057SKevin Wolf if (parent_options == NULL) { 1866d9b7b057SKevin Wolf tmp_parent_options = qdict_new(); 1867d9b7b057SKevin Wolf parent_options = tmp_parent_options; 186831ca6d07SKevin Wolf } 186931ca6d07SKevin Wolf 18709156df12SPaolo Bonzini bs->open_flags &= ~BDRV_O_NO_BACKING; 1871d9b7b057SKevin Wolf 1872d9b7b057SKevin Wolf bdref_key_dot = g_strdup_printf("%s.", bdref_key); 1873d9b7b057SKevin Wolf qdict_extract_subqdict(parent_options, &options, bdref_key_dot); 1874d9b7b057SKevin Wolf g_free(bdref_key_dot); 1875d9b7b057SKevin Wolf 1876d9b7b057SKevin Wolf reference = qdict_get_try_str(parent_options, bdref_key); 1877d9b7b057SKevin Wolf if (reference || qdict_haskey(options, "file.filename")) { 18781cb6f506SKevin Wolf backing_filename[0] = '\0'; 18791cb6f506SKevin Wolf } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { 188031ca6d07SKevin Wolf QDECREF(options); 18811ba4b6a5SBenoît Canet goto free_exit; 1882dbecebddSFam Zheng } else { 18839f07429eSMax Reitz bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX, 18849f07429eSMax Reitz &local_err); 18859f07429eSMax Reitz if (local_err) { 18869f07429eSMax Reitz ret = -EINVAL; 18879f07429eSMax Reitz error_propagate(errp, local_err); 18889f07429eSMax Reitz QDECREF(options); 18899f07429eSMax Reitz goto free_exit; 18909f07429eSMax Reitz } 18919156df12SPaolo Bonzini } 18929156df12SPaolo Bonzini 18938ee79e70SKevin Wolf if (!bs->drv || !bs->drv->supports_backing) { 18948ee79e70SKevin Wolf ret = -EINVAL; 18958ee79e70SKevin Wolf error_setg(errp, "Driver doesn't support backing files"); 18968ee79e70SKevin Wolf QDECREF(options); 18978ee79e70SKevin Wolf goto free_exit; 18988ee79e70SKevin Wolf } 18998ee79e70SKevin Wolf 1900c5f6e493SKevin Wolf if (bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) { 1901c5f6e493SKevin Wolf qdict_put(options, "driver", qstring_from_str(bs->backing_format)); 19029156df12SPaolo Bonzini } 19039156df12SPaolo Bonzini 19045b363937SMax Reitz backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL, 1905d9b7b057SKevin Wolf reference, options, 0, bs, &child_backing, 1906e43bfd9cSMarkus Armbruster errp); 19075b363937SMax Reitz if (!backing_hd) { 19089156df12SPaolo Bonzini bs->open_flags |= BDRV_O_NO_BACKING; 1909e43bfd9cSMarkus Armbruster error_prepend(errp, "Could not open backing file: "); 19105b363937SMax Reitz ret = -EINVAL; 19111ba4b6a5SBenoît Canet goto free_exit; 19129156df12SPaolo Bonzini } 1913df581792SKevin Wolf 19145db15a57SKevin Wolf /* Hook up the backing file link; drop our reference, bs owns the 19155db15a57SKevin Wolf * backing_hd reference now */ 19168d24cce1SFam Zheng bdrv_set_backing_hd(bs, backing_hd); 19175db15a57SKevin Wolf bdrv_unref(backing_hd); 1918d80ac658SPeter Feiner 1919d9b7b057SKevin Wolf qdict_del(parent_options, bdref_key); 1920d9b7b057SKevin Wolf 19211ba4b6a5SBenoît Canet free_exit: 19221ba4b6a5SBenoît Canet g_free(backing_filename); 1923d9b7b057SKevin Wolf QDECREF(tmp_parent_options); 19241ba4b6a5SBenoît Canet return ret; 19259156df12SPaolo Bonzini } 19269156df12SPaolo Bonzini 19272d6b86afSKevin Wolf static BlockDriverState * 19282d6b86afSKevin Wolf bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key, 19292d6b86afSKevin Wolf BlockDriverState *parent, const BdrvChildRole *child_role, 1930f7d9fd8cSMax Reitz bool allow_none, Error **errp) 1931da557aacSMax Reitz { 19322d6b86afSKevin Wolf BlockDriverState *bs = NULL; 1933da557aacSMax Reitz QDict *image_options; 1934da557aacSMax Reitz char *bdref_key_dot; 1935da557aacSMax Reitz const char *reference; 1936da557aacSMax Reitz 1937df581792SKevin Wolf assert(child_role != NULL); 1938f67503e5SMax Reitz 1939da557aacSMax Reitz bdref_key_dot = g_strdup_printf("%s.", bdref_key); 1940da557aacSMax Reitz qdict_extract_subqdict(options, &image_options, bdref_key_dot); 1941da557aacSMax Reitz g_free(bdref_key_dot); 1942da557aacSMax Reitz 1943da557aacSMax Reitz reference = qdict_get_try_str(options, bdref_key); 1944da557aacSMax Reitz if (!filename && !reference && !qdict_size(image_options)) { 1945b4b059f6SKevin Wolf if (!allow_none) { 1946da557aacSMax Reitz error_setg(errp, "A block device must be specified for \"%s\"", 1947da557aacSMax Reitz bdref_key); 1948da557aacSMax Reitz } 1949b20e61e0SMarkus Armbruster QDECREF(image_options); 1950da557aacSMax Reitz goto done; 1951da557aacSMax Reitz } 1952da557aacSMax Reitz 19535b363937SMax Reitz bs = bdrv_open_inherit(filename, reference, image_options, 0, 1954ce343771SMax Reitz parent, child_role, errp); 19555b363937SMax Reitz if (!bs) { 1956df581792SKevin Wolf goto done; 1957df581792SKevin Wolf } 1958df581792SKevin Wolf 1959da557aacSMax Reitz done: 1960da557aacSMax Reitz qdict_del(options, bdref_key); 19612d6b86afSKevin Wolf return bs; 19622d6b86afSKevin Wolf } 19632d6b86afSKevin Wolf 19642d6b86afSKevin Wolf /* 19652d6b86afSKevin Wolf * Opens a disk image whose options are given as BlockdevRef in another block 19662d6b86afSKevin Wolf * device's options. 19672d6b86afSKevin Wolf * 19682d6b86afSKevin Wolf * If allow_none is true, no image will be opened if filename is false and no 19692d6b86afSKevin Wolf * BlockdevRef is given. NULL will be returned, but errp remains unset. 19702d6b86afSKevin Wolf * 19712d6b86afSKevin Wolf * bdrev_key specifies the key for the image's BlockdevRef in the options QDict. 19722d6b86afSKevin Wolf * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict 19732d6b86afSKevin Wolf * itself, all options starting with "${bdref_key}." are considered part of the 19742d6b86afSKevin Wolf * BlockdevRef. 19752d6b86afSKevin Wolf * 19762d6b86afSKevin Wolf * The BlockdevRef will be removed from the options QDict. 19772d6b86afSKevin Wolf */ 19782d6b86afSKevin Wolf BdrvChild *bdrv_open_child(const char *filename, 19792d6b86afSKevin Wolf QDict *options, const char *bdref_key, 19802d6b86afSKevin Wolf BlockDriverState *parent, 19812d6b86afSKevin Wolf const BdrvChildRole *child_role, 19822d6b86afSKevin Wolf bool allow_none, Error **errp) 19832d6b86afSKevin Wolf { 19848b2ff529SKevin Wolf BdrvChild *c; 19852d6b86afSKevin Wolf BlockDriverState *bs; 19862d6b86afSKevin Wolf 19872d6b86afSKevin Wolf bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role, 19882d6b86afSKevin Wolf allow_none, errp); 19892d6b86afSKevin Wolf if (bs == NULL) { 19902d6b86afSKevin Wolf return NULL; 19912d6b86afSKevin Wolf } 19922d6b86afSKevin Wolf 19938b2ff529SKevin Wolf c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp); 19948b2ff529SKevin Wolf if (!c) { 19958b2ff529SKevin Wolf bdrv_unref(bs); 19968b2ff529SKevin Wolf return NULL; 19978b2ff529SKevin Wolf } 19988b2ff529SKevin Wolf 19998b2ff529SKevin Wolf return c; 2000b4b059f6SKevin Wolf } 2001b4b059f6SKevin Wolf 200266836189SMax Reitz static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs, 200366836189SMax Reitz int flags, 200466836189SMax Reitz QDict *snapshot_options, 200566836189SMax Reitz Error **errp) 2006b998875dSKevin Wolf { 2007b998875dSKevin Wolf /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */ 20081ba4b6a5SBenoît Canet char *tmp_filename = g_malloc0(PATH_MAX + 1); 2009b998875dSKevin Wolf int64_t total_size; 201083d0521aSChunyan Liu QemuOpts *opts = NULL; 2011b998875dSKevin Wolf BlockDriverState *bs_snapshot; 2012b998875dSKevin Wolf int ret; 2013b998875dSKevin Wolf 2014b998875dSKevin Wolf /* if snapshot, we create a temporary backing file and open it 2015b998875dSKevin Wolf instead of opening 'filename' directly */ 2016b998875dSKevin Wolf 2017b998875dSKevin Wolf /* Get the required size from the image */ 2018f187743aSKevin Wolf total_size = bdrv_getlength(bs); 2019f187743aSKevin Wolf if (total_size < 0) { 2020f187743aSKevin Wolf error_setg_errno(errp, -total_size, "Could not get image size"); 20211ba4b6a5SBenoît Canet goto out; 2022f187743aSKevin Wolf } 2023b998875dSKevin Wolf 2024b998875dSKevin Wolf /* Create the temporary image */ 20251ba4b6a5SBenoît Canet ret = get_tmp_filename(tmp_filename, PATH_MAX + 1); 2026b998875dSKevin Wolf if (ret < 0) { 2027b998875dSKevin Wolf error_setg_errno(errp, -ret, "Could not get temporary filename"); 20281ba4b6a5SBenoît Canet goto out; 2029b998875dSKevin Wolf } 2030b998875dSKevin Wolf 2031ef810437SMax Reitz opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0, 2032c282e1fdSChunyan Liu &error_abort); 203339101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort); 2034e43bfd9cSMarkus Armbruster ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp); 203583d0521aSChunyan Liu qemu_opts_del(opts); 2036b998875dSKevin Wolf if (ret < 0) { 2037e43bfd9cSMarkus Armbruster error_prepend(errp, "Could not create temporary overlay '%s': ", 2038e43bfd9cSMarkus Armbruster tmp_filename); 20391ba4b6a5SBenoît Canet goto out; 2040b998875dSKevin Wolf } 2041b998875dSKevin Wolf 204273176beeSKevin Wolf /* Prepare options QDict for the temporary file */ 2043b998875dSKevin Wolf qdict_put(snapshot_options, "file.driver", 2044b998875dSKevin Wolf qstring_from_str("file")); 2045b998875dSKevin Wolf qdict_put(snapshot_options, "file.filename", 2046b998875dSKevin Wolf qstring_from_str(tmp_filename)); 2047e6641719SMax Reitz qdict_put(snapshot_options, "driver", 2048e6641719SMax Reitz qstring_from_str("qcow2")); 2049b998875dSKevin Wolf 20505b363937SMax Reitz bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp); 205173176beeSKevin Wolf snapshot_options = NULL; 20525b363937SMax Reitz if (!bs_snapshot) { 20535b363937SMax Reitz ret = -EINVAL; 20541ba4b6a5SBenoît Canet goto out; 2055b998875dSKevin Wolf } 2056b998875dSKevin Wolf 205766836189SMax Reitz /* bdrv_append() consumes a strong reference to bs_snapshot (i.e. it will 205866836189SMax Reitz * call bdrv_unref() on it), so in order to be able to return one, we have 205966836189SMax Reitz * to increase bs_snapshot's refcount here */ 206066836189SMax Reitz bdrv_ref(bs_snapshot); 2061b998875dSKevin Wolf bdrv_append(bs_snapshot, bs); 20621ba4b6a5SBenoît Canet 206366836189SMax Reitz g_free(tmp_filename); 206466836189SMax Reitz return bs_snapshot; 206566836189SMax Reitz 20661ba4b6a5SBenoît Canet out: 206773176beeSKevin Wolf QDECREF(snapshot_options); 20681ba4b6a5SBenoît Canet g_free(tmp_filename); 206966836189SMax Reitz return NULL; 2070b998875dSKevin Wolf } 2071b998875dSKevin Wolf 2072da557aacSMax Reitz /* 2073b6ce07aaSKevin Wolf * Opens a disk image (raw, qcow2, vmdk, ...) 2074de9c0cecSKevin Wolf * 2075de9c0cecSKevin Wolf * options is a QDict of options to pass to the block drivers, or NULL for an 2076de9c0cecSKevin Wolf * empty set of options. The reference to the QDict belongs to the block layer 2077de9c0cecSKevin Wolf * after the call (even on failure), so if the caller intends to reuse the 2078de9c0cecSKevin Wolf * dictionary, it needs to use QINCREF() before calling bdrv_open. 2079f67503e5SMax Reitz * 2080f67503e5SMax Reitz * If *pbs is NULL, a new BDS will be created with a pointer to it stored there. 2081f67503e5SMax Reitz * If it is not NULL, the referenced BDS will be reused. 2082ddf5636dSMax Reitz * 2083ddf5636dSMax Reitz * The reference parameter may be used to specify an existing block device which 2084ddf5636dSMax Reitz * should be opened. If specified, neither options nor a filename may be given, 2085ddf5636dSMax Reitz * nor can an existing BDS be reused (that is, *pbs has to be NULL). 2086b6ce07aaSKevin Wolf */ 20875b363937SMax Reitz static BlockDriverState *bdrv_open_inherit(const char *filename, 20885b363937SMax Reitz const char *reference, 20895b363937SMax Reitz QDict *options, int flags, 2090f3930ed0SKevin Wolf BlockDriverState *parent, 20915b363937SMax Reitz const BdrvChildRole *child_role, 20925b363937SMax Reitz Error **errp) 2093ea2384d3Sbellard { 2094b6ce07aaSKevin Wolf int ret; 20955696c6e3SKevin Wolf BlockBackend *file = NULL; 20969a4f4c31SKevin Wolf BlockDriverState *bs; 2097ce343771SMax Reitz BlockDriver *drv = NULL; 209874fe54f2SKevin Wolf const char *drvname; 20993e8c2e57SAlberto Garcia const char *backing; 210034b5d2c6SMax Reitz Error *local_err = NULL; 210173176beeSKevin Wolf QDict *snapshot_options = NULL; 2102b1e6fc08SKevin Wolf int snapshot_flags = 0; 210333e3963eSbellard 2104f3930ed0SKevin Wolf assert(!child_role || !flags); 2105f3930ed0SKevin Wolf assert(!child_role == !parent); 2106f67503e5SMax Reitz 2107ddf5636dSMax Reitz if (reference) { 2108ddf5636dSMax Reitz bool options_non_empty = options ? qdict_size(options) : false; 2109ddf5636dSMax Reitz QDECREF(options); 2110ddf5636dSMax Reitz 2111ddf5636dSMax Reitz if (filename || options_non_empty) { 2112ddf5636dSMax Reitz error_setg(errp, "Cannot reference an existing block device with " 2113ddf5636dSMax Reitz "additional options or a new filename"); 21145b363937SMax Reitz return NULL; 2115ddf5636dSMax Reitz } 2116ddf5636dSMax Reitz 2117ddf5636dSMax Reitz bs = bdrv_lookup_bs(reference, reference, errp); 2118ddf5636dSMax Reitz if (!bs) { 21195b363937SMax Reitz return NULL; 2120ddf5636dSMax Reitz } 212176b22320SKevin Wolf 2122ddf5636dSMax Reitz bdrv_ref(bs); 21235b363937SMax Reitz return bs; 2124ddf5636dSMax Reitz } 2125ddf5636dSMax Reitz 2126e4e9986bSMarkus Armbruster bs = bdrv_new(); 2127f67503e5SMax Reitz 2128de9c0cecSKevin Wolf /* NULL means an empty set of options */ 2129de9c0cecSKevin Wolf if (options == NULL) { 2130de9c0cecSKevin Wolf options = qdict_new(); 2131de9c0cecSKevin Wolf } 2132de9c0cecSKevin Wolf 2133145f598eSKevin Wolf /* json: syntax counts as explicit options, as if in the QDict */ 2134de3b53f0SKevin Wolf parse_json_protocol(options, &filename, &local_err); 2135de3b53f0SKevin Wolf if (local_err) { 2136de3b53f0SKevin Wolf goto fail; 2137de3b53f0SKevin Wolf } 2138de3b53f0SKevin Wolf 2139145f598eSKevin Wolf bs->explicit_options = qdict_clone_shallow(options); 2140145f598eSKevin Wolf 2141f3930ed0SKevin Wolf if (child_role) { 2142bddcec37SKevin Wolf bs->inherits_from = parent; 21438e2160e2SKevin Wolf child_role->inherit_options(&flags, options, 21448e2160e2SKevin Wolf parent->open_flags, parent->options); 2145f3930ed0SKevin Wolf } 2146f3930ed0SKevin Wolf 2147de3b53f0SKevin Wolf ret = bdrv_fill_options(&options, filename, &flags, &local_err); 2148462f5bcfSKevin Wolf if (local_err) { 2149462f5bcfSKevin Wolf goto fail; 2150462f5bcfSKevin Wolf } 2151462f5bcfSKevin Wolf 2152f87a0e29SAlberto Garcia /* Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags. 2153f87a0e29SAlberto Garcia * FIXME: we're parsing the QDict to avoid having to create a 2154f87a0e29SAlberto Garcia * QemuOpts just for this, but neither option is optimal. */ 2155f87a0e29SAlberto Garcia if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") && 2156f87a0e29SAlberto Garcia !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) { 2157f87a0e29SAlberto Garcia flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR); 2158f87a0e29SAlberto Garcia } else { 2159f87a0e29SAlberto Garcia flags &= ~BDRV_O_RDWR; 216014499ea5SAlberto Garcia } 216114499ea5SAlberto Garcia 216214499ea5SAlberto Garcia if (flags & BDRV_O_SNAPSHOT) { 216314499ea5SAlberto Garcia snapshot_options = qdict_new(); 216414499ea5SAlberto Garcia bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options, 216514499ea5SAlberto Garcia flags, options); 2166f87a0e29SAlberto Garcia /* Let bdrv_backing_options() override "read-only" */ 2167f87a0e29SAlberto Garcia qdict_del(options, BDRV_OPT_READ_ONLY); 216814499ea5SAlberto Garcia bdrv_backing_options(&flags, options, flags, options); 216914499ea5SAlberto Garcia } 217014499ea5SAlberto Garcia 217162392ebbSKevin Wolf bs->open_flags = flags; 217262392ebbSKevin Wolf bs->options = options; 217362392ebbSKevin Wolf options = qdict_clone_shallow(options); 217462392ebbSKevin Wolf 217576c591b0SKevin Wolf /* Find the right image format driver */ 217676c591b0SKevin Wolf drvname = qdict_get_try_str(options, "driver"); 217776c591b0SKevin Wolf if (drvname) { 217876c591b0SKevin Wolf drv = bdrv_find_format(drvname); 217976c591b0SKevin Wolf if (!drv) { 218076c591b0SKevin Wolf error_setg(errp, "Unknown driver: '%s'", drvname); 218176c591b0SKevin Wolf goto fail; 218276c591b0SKevin Wolf } 218376c591b0SKevin Wolf } 218476c591b0SKevin Wolf 218576c591b0SKevin Wolf assert(drvname || !(flags & BDRV_O_PROTOCOL)); 218676c591b0SKevin Wolf 21873e8c2e57SAlberto Garcia backing = qdict_get_try_str(options, "backing"); 21883e8c2e57SAlberto Garcia if (backing && *backing == '\0') { 21893e8c2e57SAlberto Garcia flags |= BDRV_O_NO_BACKING; 21903e8c2e57SAlberto Garcia qdict_del(options, "backing"); 21913e8c2e57SAlberto Garcia } 21923e8c2e57SAlberto Garcia 21935696c6e3SKevin Wolf /* Open image file without format layer. This BlockBackend is only used for 21944e4bf5c4SKevin Wolf * probing, the block drivers will do their own bdrv_open_child() for the 21954e4bf5c4SKevin Wolf * same BDS, which is why we put the node name back into options. */ 2196f4788adcSKevin Wolf if ((flags & BDRV_O_PROTOCOL) == 0) { 21975696c6e3SKevin Wolf BlockDriverState *file_bs; 21985696c6e3SKevin Wolf 21995696c6e3SKevin Wolf file_bs = bdrv_open_child_bs(filename, options, "file", bs, 22001fdd6933SKevin Wolf &child_file, true, &local_err); 22011fdd6933SKevin Wolf if (local_err) { 22028bfea15dSKevin Wolf goto fail; 2203f500a6d3SKevin Wolf } 22045696c6e3SKevin Wolf if (file_bs != NULL) { 22056d0eb64dSKevin Wolf file = blk_new(BLK_PERM_CONSISTENT_READ, BLK_PERM_ALL); 2206d7086422SKevin Wolf blk_insert_bs(file, file_bs, &local_err); 22075696c6e3SKevin Wolf bdrv_unref(file_bs); 2208d7086422SKevin Wolf if (local_err) { 2209d7086422SKevin Wolf goto fail; 2210d7086422SKevin Wolf } 22115696c6e3SKevin Wolf 22124e4bf5c4SKevin Wolf qdict_put(options, "file", 22135696c6e3SKevin Wolf qstring_from_str(bdrv_get_node_name(file_bs))); 22144e4bf5c4SKevin Wolf } 2215f4788adcSKevin Wolf } 2216f500a6d3SKevin Wolf 221776c591b0SKevin Wolf /* Image format probing */ 221838f3ef57SKevin Wolf bs->probed = !drv; 221976c591b0SKevin Wolf if (!drv && file) { 2220cf2ab8fcSKevin Wolf ret = find_image_format(file, filename, &drv, &local_err); 222117b005f1SKevin Wolf if (ret < 0) { 222217b005f1SKevin Wolf goto fail; 222317b005f1SKevin Wolf } 222462392ebbSKevin Wolf /* 222562392ebbSKevin Wolf * This option update would logically belong in bdrv_fill_options(), 222662392ebbSKevin Wolf * but we first need to open bs->file for the probing to work, while 222762392ebbSKevin Wolf * opening bs->file already requires the (mostly) final set of options 222862392ebbSKevin Wolf * so that cache mode etc. can be inherited. 222962392ebbSKevin Wolf * 223062392ebbSKevin Wolf * Adding the driver later is somewhat ugly, but it's not an option 223162392ebbSKevin Wolf * that would ever be inherited, so it's correct. We just need to make 223262392ebbSKevin Wolf * sure to update both bs->options (which has the full effective 223362392ebbSKevin Wolf * options for bs) and options (which has file.* already removed). 223462392ebbSKevin Wolf */ 223562392ebbSKevin Wolf qdict_put(bs->options, "driver", qstring_from_str(drv->format_name)); 223662392ebbSKevin Wolf qdict_put(options, "driver", qstring_from_str(drv->format_name)); 223776c591b0SKevin Wolf } else if (!drv) { 22382a05cbe4SMax Reitz error_setg(errp, "Must specify either driver or file"); 22398bfea15dSKevin Wolf goto fail; 22402a05cbe4SMax Reitz } 2241f500a6d3SKevin Wolf 224253a29513SMax Reitz /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */ 224353a29513SMax Reitz assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open); 224453a29513SMax Reitz /* file must be NULL if a protocol BDS is about to be created 224553a29513SMax Reitz * (the inverse results in an error message from bdrv_open_common()) */ 224653a29513SMax Reitz assert(!(flags & BDRV_O_PROTOCOL) || !file); 224753a29513SMax Reitz 2248b6ce07aaSKevin Wolf /* Open the image */ 224982dc8b41SKevin Wolf ret = bdrv_open_common(bs, file, options, &local_err); 2250b6ce07aaSKevin Wolf if (ret < 0) { 22518bfea15dSKevin Wolf goto fail; 22526987307cSChristoph Hellwig } 22536987307cSChristoph Hellwig 22544e4bf5c4SKevin Wolf if (file) { 22555696c6e3SKevin Wolf blk_unref(file); 2256f500a6d3SKevin Wolf file = NULL; 2257f500a6d3SKevin Wolf } 2258f500a6d3SKevin Wolf 2259b6ce07aaSKevin Wolf /* If there is a backing file, use it */ 22609156df12SPaolo Bonzini if ((flags & BDRV_O_NO_BACKING) == 0) { 2261d9b7b057SKevin Wolf ret = bdrv_open_backing_file(bs, options, "backing", &local_err); 2262b6ce07aaSKevin Wolf if (ret < 0) { 2263b6ad491aSKevin Wolf goto close_and_fail; 2264b6ce07aaSKevin Wolf } 2265b6ce07aaSKevin Wolf } 2266b6ce07aaSKevin Wolf 226791af7014SMax Reitz bdrv_refresh_filename(bs); 226891af7014SMax Reitz 2269b6ad491aSKevin Wolf /* Check if any unknown options were used */ 22707ad2757fSPaolo Bonzini if (qdict_size(options) != 0) { 2271b6ad491aSKevin Wolf const QDictEntry *entry = qdict_first(options); 22725acd9d81SMax Reitz if (flags & BDRV_O_PROTOCOL) { 22735acd9d81SMax Reitz error_setg(errp, "Block protocol '%s' doesn't support the option " 22745acd9d81SMax Reitz "'%s'", drv->format_name, entry->key); 22755acd9d81SMax Reitz } else { 2276d0e46a55SMax Reitz error_setg(errp, 2277d0e46a55SMax Reitz "Block format '%s' does not support the option '%s'", 2278d0e46a55SMax Reitz drv->format_name, entry->key); 22795acd9d81SMax Reitz } 2280b6ad491aSKevin Wolf 2281b6ad491aSKevin Wolf goto close_and_fail; 2282b6ad491aSKevin Wolf } 2283b6ad491aSKevin Wolf 2284b6ce07aaSKevin Wolf if (!bdrv_key_required(bs)) { 22855c8cab48SKevin Wolf bdrv_parent_cb_change_media(bs, true); 2286c3adb58fSMarkus Armbruster } else if (!runstate_check(RUN_STATE_PRELAUNCH) 2287c3adb58fSMarkus Armbruster && !runstate_check(RUN_STATE_INMIGRATE) 2288c3adb58fSMarkus Armbruster && !runstate_check(RUN_STATE_PAUSED)) { /* HACK */ 2289c3adb58fSMarkus Armbruster error_setg(errp, 2290c3adb58fSMarkus Armbruster "Guest must be stopped for opening of encrypted image"); 2291c3adb58fSMarkus Armbruster goto close_and_fail; 2292b6ce07aaSKevin Wolf } 2293b6ce07aaSKevin Wolf 2294c3adb58fSMarkus Armbruster QDECREF(options); 2295dd62f1caSKevin Wolf 2296dd62f1caSKevin Wolf /* For snapshot=on, create a temporary qcow2 overlay. bs points to the 2297dd62f1caSKevin Wolf * temporary snapshot afterwards. */ 2298dd62f1caSKevin Wolf if (snapshot_flags) { 229966836189SMax Reitz BlockDriverState *snapshot_bs; 230066836189SMax Reitz snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags, 230166836189SMax Reitz snapshot_options, &local_err); 230273176beeSKevin Wolf snapshot_options = NULL; 2303dd62f1caSKevin Wolf if (local_err) { 2304dd62f1caSKevin Wolf goto close_and_fail; 2305dd62f1caSKevin Wolf } 230666836189SMax Reitz /* We are not going to return bs but the overlay on top of it 230766836189SMax Reitz * (snapshot_bs); thus, we have to drop the strong reference to bs 23085b363937SMax Reitz * (which we obtained by calling bdrv_new()). bs will not be deleted, 23095b363937SMax Reitz * though, because the overlay still has a reference to it. */ 231066836189SMax Reitz bdrv_unref(bs); 231166836189SMax Reitz bs = snapshot_bs; 231266836189SMax Reitz } 231366836189SMax Reitz 23145b363937SMax Reitz return bs; 2315b6ce07aaSKevin Wolf 23168bfea15dSKevin Wolf fail: 23175696c6e3SKevin Wolf blk_unref(file); 23184e4bf5c4SKevin Wolf if (bs->file != NULL) { 23194e4bf5c4SKevin Wolf bdrv_unref_child(bs, bs->file); 2320f500a6d3SKevin Wolf } 232173176beeSKevin Wolf QDECREF(snapshot_options); 2322145f598eSKevin Wolf QDECREF(bs->explicit_options); 2323de9c0cecSKevin Wolf QDECREF(bs->options); 2324b6ad491aSKevin Wolf QDECREF(options); 2325de9c0cecSKevin Wolf bs->options = NULL; 2326f67503e5SMax Reitz bdrv_unref(bs); 232734b5d2c6SMax Reitz error_propagate(errp, local_err); 23285b363937SMax Reitz return NULL; 2329de9c0cecSKevin Wolf 2330b6ad491aSKevin Wolf close_and_fail: 2331f67503e5SMax Reitz bdrv_unref(bs); 233273176beeSKevin Wolf QDECREF(snapshot_options); 2333b6ad491aSKevin Wolf QDECREF(options); 233434b5d2c6SMax Reitz error_propagate(errp, local_err); 23355b363937SMax Reitz return NULL; 2336b6ce07aaSKevin Wolf } 2337b6ce07aaSKevin Wolf 23385b363937SMax Reitz BlockDriverState *bdrv_open(const char *filename, const char *reference, 23395b363937SMax Reitz QDict *options, int flags, Error **errp) 2340f3930ed0SKevin Wolf { 23415b363937SMax Reitz return bdrv_open_inherit(filename, reference, options, flags, NULL, 2342ce343771SMax Reitz NULL, errp); 2343f3930ed0SKevin Wolf } 2344f3930ed0SKevin Wolf 2345e971aa12SJeff Cody typedef struct BlockReopenQueueEntry { 2346e971aa12SJeff Cody bool prepared; 2347e971aa12SJeff Cody BDRVReopenState state; 2348e971aa12SJeff Cody QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry; 2349e971aa12SJeff Cody } BlockReopenQueueEntry; 2350e971aa12SJeff Cody 2351e971aa12SJeff Cody /* 2352e971aa12SJeff Cody * Adds a BlockDriverState to a simple queue for an atomic, transactional 2353e971aa12SJeff Cody * reopen of multiple devices. 2354e971aa12SJeff Cody * 2355e971aa12SJeff Cody * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT 2356e971aa12SJeff Cody * already performed, or alternatively may be NULL a new BlockReopenQueue will 2357e971aa12SJeff Cody * be created and initialized. This newly created BlockReopenQueue should be 2358e971aa12SJeff Cody * passed back in for subsequent calls that are intended to be of the same 2359e971aa12SJeff Cody * atomic 'set'. 2360e971aa12SJeff Cody * 2361e971aa12SJeff Cody * bs is the BlockDriverState to add to the reopen queue. 2362e971aa12SJeff Cody * 23634d2cb092SKevin Wolf * options contains the changed options for the associated bs 23644d2cb092SKevin Wolf * (the BlockReopenQueue takes ownership) 23654d2cb092SKevin Wolf * 2366e971aa12SJeff Cody * flags contains the open flags for the associated bs 2367e971aa12SJeff Cody * 2368e971aa12SJeff Cody * returns a pointer to bs_queue, which is either the newly allocated 2369e971aa12SJeff Cody * bs_queue, or the existing bs_queue being used. 2370e971aa12SJeff Cody * 2371e971aa12SJeff Cody */ 237228518102SKevin Wolf static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, 23734d2cb092SKevin Wolf BlockDriverState *bs, 237428518102SKevin Wolf QDict *options, 237528518102SKevin Wolf int flags, 237628518102SKevin Wolf const BdrvChildRole *role, 237728518102SKevin Wolf QDict *parent_options, 237828518102SKevin Wolf int parent_flags) 2379e971aa12SJeff Cody { 2380e971aa12SJeff Cody assert(bs != NULL); 2381e971aa12SJeff Cody 2382e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry; 238367251a31SKevin Wolf BdrvChild *child; 2384145f598eSKevin Wolf QDict *old_options, *explicit_options; 238567251a31SKevin Wolf 2386e971aa12SJeff Cody if (bs_queue == NULL) { 2387e971aa12SJeff Cody bs_queue = g_new0(BlockReopenQueue, 1); 2388e971aa12SJeff Cody QSIMPLEQ_INIT(bs_queue); 2389e971aa12SJeff Cody } 2390e971aa12SJeff Cody 23914d2cb092SKevin Wolf if (!options) { 23924d2cb092SKevin Wolf options = qdict_new(); 23934d2cb092SKevin Wolf } 23944d2cb092SKevin Wolf 23955b7ba05fSAlberto Garcia /* Check if this BlockDriverState is already in the queue */ 23965b7ba05fSAlberto Garcia QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 23975b7ba05fSAlberto Garcia if (bs == bs_entry->state.bs) { 23985b7ba05fSAlberto Garcia break; 23995b7ba05fSAlberto Garcia } 24005b7ba05fSAlberto Garcia } 24015b7ba05fSAlberto Garcia 240228518102SKevin Wolf /* 240328518102SKevin Wolf * Precedence of options: 240428518102SKevin Wolf * 1. Explicitly passed in options (highest) 240591a097e7SKevin Wolf * 2. Set in flags (only for top level) 2406145f598eSKevin Wolf * 3. Retained from explicitly set options of bs 24078e2160e2SKevin Wolf * 4. Inherited from parent node 240828518102SKevin Wolf * 5. Retained from effective options of bs 240928518102SKevin Wolf */ 241028518102SKevin Wolf 241191a097e7SKevin Wolf if (!parent_options) { 241291a097e7SKevin Wolf /* 241391a097e7SKevin Wolf * Any setting represented by flags is always updated. If the 241491a097e7SKevin Wolf * corresponding QDict option is set, it takes precedence. Otherwise 241591a097e7SKevin Wolf * the flag is translated into a QDict option. The old setting of bs is 241691a097e7SKevin Wolf * not considered. 241791a097e7SKevin Wolf */ 241891a097e7SKevin Wolf update_options_from_flags(options, flags); 241991a097e7SKevin Wolf } 242091a097e7SKevin Wolf 2421145f598eSKevin Wolf /* Old explicitly set values (don't overwrite by inherited value) */ 24225b7ba05fSAlberto Garcia if (bs_entry) { 24235b7ba05fSAlberto Garcia old_options = qdict_clone_shallow(bs_entry->state.explicit_options); 24245b7ba05fSAlberto Garcia } else { 2425145f598eSKevin Wolf old_options = qdict_clone_shallow(bs->explicit_options); 24265b7ba05fSAlberto Garcia } 2427145f598eSKevin Wolf bdrv_join_options(bs, options, old_options); 2428145f598eSKevin Wolf QDECREF(old_options); 2429145f598eSKevin Wolf 2430145f598eSKevin Wolf explicit_options = qdict_clone_shallow(options); 2431145f598eSKevin Wolf 243228518102SKevin Wolf /* Inherit from parent node */ 243328518102SKevin Wolf if (parent_options) { 243428518102SKevin Wolf assert(!flags); 24358e2160e2SKevin Wolf role->inherit_options(&flags, options, parent_flags, parent_options); 243628518102SKevin Wolf } 243728518102SKevin Wolf 243828518102SKevin Wolf /* Old values are used for options that aren't set yet */ 24394d2cb092SKevin Wolf old_options = qdict_clone_shallow(bs->options); 2440cddff5baSKevin Wolf bdrv_join_options(bs, options, old_options); 24414d2cb092SKevin Wolf QDECREF(old_options); 24424d2cb092SKevin Wolf 2443f1f25a2eSKevin Wolf /* bdrv_open() masks this flag out */ 2444f1f25a2eSKevin Wolf flags &= ~BDRV_O_PROTOCOL; 2445f1f25a2eSKevin Wolf 244667251a31SKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 24474c9dfe5dSKevin Wolf QDict *new_child_options; 24484c9dfe5dSKevin Wolf char *child_key_dot; 244967251a31SKevin Wolf 24504c9dfe5dSKevin Wolf /* reopen can only change the options of block devices that were 24514c9dfe5dSKevin Wolf * implicitly created and inherited options. For other (referenced) 24524c9dfe5dSKevin Wolf * block devices, a syntax like "backing.foo" results in an error. */ 245367251a31SKevin Wolf if (child->bs->inherits_from != bs) { 245467251a31SKevin Wolf continue; 245567251a31SKevin Wolf } 245667251a31SKevin Wolf 24574c9dfe5dSKevin Wolf child_key_dot = g_strdup_printf("%s.", child->name); 24584c9dfe5dSKevin Wolf qdict_extract_subqdict(options, &new_child_options, child_key_dot); 24594c9dfe5dSKevin Wolf g_free(child_key_dot); 24604c9dfe5dSKevin Wolf 246128518102SKevin Wolf bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0, 246228518102SKevin Wolf child->role, options, flags); 2463e971aa12SJeff Cody } 2464e971aa12SJeff Cody 24655b7ba05fSAlberto Garcia if (!bs_entry) { 2466e971aa12SJeff Cody bs_entry = g_new0(BlockReopenQueueEntry, 1); 2467e971aa12SJeff Cody QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry); 24685b7ba05fSAlberto Garcia } else { 24695b7ba05fSAlberto Garcia QDECREF(bs_entry->state.options); 24705b7ba05fSAlberto Garcia QDECREF(bs_entry->state.explicit_options); 24715b7ba05fSAlberto Garcia } 2472e971aa12SJeff Cody 2473e971aa12SJeff Cody bs_entry->state.bs = bs; 24744d2cb092SKevin Wolf bs_entry->state.options = options; 2475145f598eSKevin Wolf bs_entry->state.explicit_options = explicit_options; 2476e971aa12SJeff Cody bs_entry->state.flags = flags; 2477e971aa12SJeff Cody 2478e971aa12SJeff Cody return bs_queue; 2479e971aa12SJeff Cody } 2480e971aa12SJeff Cody 248128518102SKevin Wolf BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, 248228518102SKevin Wolf BlockDriverState *bs, 248328518102SKevin Wolf QDict *options, int flags) 248428518102SKevin Wolf { 248528518102SKevin Wolf return bdrv_reopen_queue_child(bs_queue, bs, options, flags, 248628518102SKevin Wolf NULL, NULL, 0); 248728518102SKevin Wolf } 248828518102SKevin Wolf 2489e971aa12SJeff Cody /* 2490e971aa12SJeff Cody * Reopen multiple BlockDriverStates atomically & transactionally. 2491e971aa12SJeff Cody * 2492e971aa12SJeff Cody * The queue passed in (bs_queue) must have been built up previous 2493e971aa12SJeff Cody * via bdrv_reopen_queue(). 2494e971aa12SJeff Cody * 2495e971aa12SJeff Cody * Reopens all BDS specified in the queue, with the appropriate 2496e971aa12SJeff Cody * flags. All devices are prepared for reopen, and failure of any 2497e971aa12SJeff Cody * device will cause all device changes to be abandonded, and intermediate 2498e971aa12SJeff Cody * data cleaned up. 2499e971aa12SJeff Cody * 2500e971aa12SJeff Cody * If all devices prepare successfully, then the changes are committed 2501e971aa12SJeff Cody * to all devices. 2502e971aa12SJeff Cody * 2503e971aa12SJeff Cody */ 2504720150f3SPaolo Bonzini int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp) 2505e971aa12SJeff Cody { 2506e971aa12SJeff Cody int ret = -1; 2507e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry, *next; 2508e971aa12SJeff Cody Error *local_err = NULL; 2509e971aa12SJeff Cody 2510e971aa12SJeff Cody assert(bs_queue != NULL); 2511e971aa12SJeff Cody 2512c9d1a561SPaolo Bonzini aio_context_release(ctx); 251340840e41SAlberto Garcia bdrv_drain_all_begin(); 2514c9d1a561SPaolo Bonzini aio_context_acquire(ctx); 2515e971aa12SJeff Cody 2516e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 2517e971aa12SJeff Cody if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) { 2518e971aa12SJeff Cody error_propagate(errp, local_err); 2519e971aa12SJeff Cody goto cleanup; 2520e971aa12SJeff Cody } 2521e971aa12SJeff Cody bs_entry->prepared = true; 2522e971aa12SJeff Cody } 2523e971aa12SJeff Cody 2524e971aa12SJeff Cody /* If we reach this point, we have success and just need to apply the 2525e971aa12SJeff Cody * changes 2526e971aa12SJeff Cody */ 2527e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 2528e971aa12SJeff Cody bdrv_reopen_commit(&bs_entry->state); 2529e971aa12SJeff Cody } 2530e971aa12SJeff Cody 2531e971aa12SJeff Cody ret = 0; 2532e971aa12SJeff Cody 2533e971aa12SJeff Cody cleanup: 2534e971aa12SJeff Cody QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { 2535e971aa12SJeff Cody if (ret && bs_entry->prepared) { 2536e971aa12SJeff Cody bdrv_reopen_abort(&bs_entry->state); 2537145f598eSKevin Wolf } else if (ret) { 2538145f598eSKevin Wolf QDECREF(bs_entry->state.explicit_options); 2539e971aa12SJeff Cody } 25404d2cb092SKevin Wolf QDECREF(bs_entry->state.options); 2541e971aa12SJeff Cody g_free(bs_entry); 2542e971aa12SJeff Cody } 2543e971aa12SJeff Cody g_free(bs_queue); 254440840e41SAlberto Garcia 254540840e41SAlberto Garcia bdrv_drain_all_end(); 254640840e41SAlberto Garcia 2547e971aa12SJeff Cody return ret; 2548e971aa12SJeff Cody } 2549e971aa12SJeff Cody 2550e971aa12SJeff Cody 2551e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */ 2552e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp) 2553e971aa12SJeff Cody { 2554e971aa12SJeff Cody int ret = -1; 2555e971aa12SJeff Cody Error *local_err = NULL; 25564d2cb092SKevin Wolf BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags); 2557e971aa12SJeff Cody 2558720150f3SPaolo Bonzini ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, &local_err); 2559e971aa12SJeff Cody if (local_err != NULL) { 2560e971aa12SJeff Cody error_propagate(errp, local_err); 2561e971aa12SJeff Cody } 2562e971aa12SJeff Cody return ret; 2563e971aa12SJeff Cody } 2564e971aa12SJeff Cody 2565e971aa12SJeff Cody 2566e971aa12SJeff Cody /* 2567e971aa12SJeff Cody * Prepares a BlockDriverState for reopen. All changes are staged in the 2568e971aa12SJeff Cody * 'opaque' field of the BDRVReopenState, which is used and allocated by 2569e971aa12SJeff Cody * the block driver layer .bdrv_reopen_prepare() 2570e971aa12SJeff Cody * 2571e971aa12SJeff Cody * bs is the BlockDriverState to reopen 2572e971aa12SJeff Cody * flags are the new open flags 2573e971aa12SJeff Cody * queue is the reopen queue 2574e971aa12SJeff Cody * 2575e971aa12SJeff Cody * Returns 0 on success, non-zero on error. On error errp will be set 2576e971aa12SJeff Cody * as well. 2577e971aa12SJeff Cody * 2578e971aa12SJeff Cody * On failure, bdrv_reopen_abort() will be called to clean up any data. 2579e971aa12SJeff Cody * It is the responsibility of the caller to then call the abort() or 2580e971aa12SJeff Cody * commit() for any other BDS that have been left in a prepare() state 2581e971aa12SJeff Cody * 2582e971aa12SJeff Cody */ 2583e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue, 2584e971aa12SJeff Cody Error **errp) 2585e971aa12SJeff Cody { 2586e971aa12SJeff Cody int ret = -1; 2587e971aa12SJeff Cody Error *local_err = NULL; 2588e971aa12SJeff Cody BlockDriver *drv; 2589ccf9dc07SKevin Wolf QemuOpts *opts; 2590ccf9dc07SKevin Wolf const char *value; 2591e971aa12SJeff Cody 2592e971aa12SJeff Cody assert(reopen_state != NULL); 2593e971aa12SJeff Cody assert(reopen_state->bs->drv != NULL); 2594e971aa12SJeff Cody drv = reopen_state->bs->drv; 2595e971aa12SJeff Cody 2596ccf9dc07SKevin Wolf /* Process generic block layer options */ 2597ccf9dc07SKevin Wolf opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 2598ccf9dc07SKevin Wolf qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err); 2599ccf9dc07SKevin Wolf if (local_err) { 2600ccf9dc07SKevin Wolf error_propagate(errp, local_err); 2601ccf9dc07SKevin Wolf ret = -EINVAL; 2602ccf9dc07SKevin Wolf goto error; 2603ccf9dc07SKevin Wolf } 2604ccf9dc07SKevin Wolf 260591a097e7SKevin Wolf update_flags_from_options(&reopen_state->flags, opts); 260691a097e7SKevin Wolf 2607ccf9dc07SKevin Wolf /* node-name and driver must be unchanged. Put them back into the QDict, so 2608ccf9dc07SKevin Wolf * that they are checked at the end of this function. */ 2609ccf9dc07SKevin Wolf value = qemu_opt_get(opts, "node-name"); 2610ccf9dc07SKevin Wolf if (value) { 2611ccf9dc07SKevin Wolf qdict_put(reopen_state->options, "node-name", qstring_from_str(value)); 2612ccf9dc07SKevin Wolf } 2613ccf9dc07SKevin Wolf 2614ccf9dc07SKevin Wolf value = qemu_opt_get(opts, "driver"); 2615ccf9dc07SKevin Wolf if (value) { 2616ccf9dc07SKevin Wolf qdict_put(reopen_state->options, "driver", qstring_from_str(value)); 2617ccf9dc07SKevin Wolf } 2618ccf9dc07SKevin Wolf 2619e971aa12SJeff Cody /* if we are to stay read-only, do not allow permission change 2620e971aa12SJeff Cody * to r/w */ 2621e971aa12SJeff Cody if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) && 2622e971aa12SJeff Cody reopen_state->flags & BDRV_O_RDWR) { 262381e5f78aSAlberto Garcia error_setg(errp, "Node '%s' is read only", 262481e5f78aSAlberto Garcia bdrv_get_device_or_node_name(reopen_state->bs)); 2625e971aa12SJeff Cody goto error; 2626e971aa12SJeff Cody } 2627e971aa12SJeff Cody 2628e971aa12SJeff Cody 2629e971aa12SJeff Cody ret = bdrv_flush(reopen_state->bs); 2630e971aa12SJeff Cody if (ret) { 2631455b0fdeSEric Blake error_setg_errno(errp, -ret, "Error flushing drive"); 2632e971aa12SJeff Cody goto error; 2633e971aa12SJeff Cody } 2634e971aa12SJeff Cody 2635e971aa12SJeff Cody if (drv->bdrv_reopen_prepare) { 2636e971aa12SJeff Cody ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); 2637e971aa12SJeff Cody if (ret) { 2638e971aa12SJeff Cody if (local_err != NULL) { 2639e971aa12SJeff Cody error_propagate(errp, local_err); 2640e971aa12SJeff Cody } else { 2641d8b6895fSLuiz Capitulino error_setg(errp, "failed while preparing to reopen image '%s'", 2642e971aa12SJeff Cody reopen_state->bs->filename); 2643e971aa12SJeff Cody } 2644e971aa12SJeff Cody goto error; 2645e971aa12SJeff Cody } 2646e971aa12SJeff Cody } else { 2647e971aa12SJeff Cody /* It is currently mandatory to have a bdrv_reopen_prepare() 2648e971aa12SJeff Cody * handler for each supported drv. */ 264981e5f78aSAlberto Garcia error_setg(errp, "Block format '%s' used by node '%s' " 265081e5f78aSAlberto Garcia "does not support reopening files", drv->format_name, 265181e5f78aSAlberto Garcia bdrv_get_device_or_node_name(reopen_state->bs)); 2652e971aa12SJeff Cody ret = -1; 2653e971aa12SJeff Cody goto error; 2654e971aa12SJeff Cody } 2655e971aa12SJeff Cody 26564d2cb092SKevin Wolf /* Options that are not handled are only okay if they are unchanged 26574d2cb092SKevin Wolf * compared to the old state. It is expected that some options are only 26584d2cb092SKevin Wolf * used for the initial open, but not reopen (e.g. filename) */ 26594d2cb092SKevin Wolf if (qdict_size(reopen_state->options)) { 26604d2cb092SKevin Wolf const QDictEntry *entry = qdict_first(reopen_state->options); 26614d2cb092SKevin Wolf 26624d2cb092SKevin Wolf do { 26634d2cb092SKevin Wolf QString *new_obj = qobject_to_qstring(entry->value); 26644d2cb092SKevin Wolf const char *new = qstring_get_str(new_obj); 26654d2cb092SKevin Wolf const char *old = qdict_get_try_str(reopen_state->bs->options, 26664d2cb092SKevin Wolf entry->key); 26674d2cb092SKevin Wolf 26684d2cb092SKevin Wolf if (!old || strcmp(new, old)) { 26694d2cb092SKevin Wolf error_setg(errp, "Cannot change the option '%s'", entry->key); 26704d2cb092SKevin Wolf ret = -EINVAL; 26714d2cb092SKevin Wolf goto error; 26724d2cb092SKevin Wolf } 26734d2cb092SKevin Wolf } while ((entry = qdict_next(reopen_state->options, entry))); 26744d2cb092SKevin Wolf } 26754d2cb092SKevin Wolf 2676e971aa12SJeff Cody ret = 0; 2677e971aa12SJeff Cody 2678e971aa12SJeff Cody error: 2679ccf9dc07SKevin Wolf qemu_opts_del(opts); 2680e971aa12SJeff Cody return ret; 2681e971aa12SJeff Cody } 2682e971aa12SJeff Cody 2683e971aa12SJeff Cody /* 2684e971aa12SJeff Cody * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and 2685e971aa12SJeff Cody * makes them final by swapping the staging BlockDriverState contents into 2686e971aa12SJeff Cody * the active BlockDriverState contents. 2687e971aa12SJeff Cody */ 2688e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state) 2689e971aa12SJeff Cody { 2690e971aa12SJeff Cody BlockDriver *drv; 2691e971aa12SJeff Cody 2692e971aa12SJeff Cody assert(reopen_state != NULL); 2693e971aa12SJeff Cody drv = reopen_state->bs->drv; 2694e971aa12SJeff Cody assert(drv != NULL); 2695e971aa12SJeff Cody 2696e971aa12SJeff Cody /* If there are any driver level actions to take */ 2697e971aa12SJeff Cody if (drv->bdrv_reopen_commit) { 2698e971aa12SJeff Cody drv->bdrv_reopen_commit(reopen_state); 2699e971aa12SJeff Cody } 2700e971aa12SJeff Cody 2701e971aa12SJeff Cody /* set BDS specific flags now */ 2702145f598eSKevin Wolf QDECREF(reopen_state->bs->explicit_options); 2703145f598eSKevin Wolf 2704145f598eSKevin Wolf reopen_state->bs->explicit_options = reopen_state->explicit_options; 2705e971aa12SJeff Cody reopen_state->bs->open_flags = reopen_state->flags; 2706e971aa12SJeff Cody reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR); 2707355ef4acSKevin Wolf 27083baca891SKevin Wolf bdrv_refresh_limits(reopen_state->bs, NULL); 2709e971aa12SJeff Cody } 2710e971aa12SJeff Cody 2711e971aa12SJeff Cody /* 2712e971aa12SJeff Cody * Abort the reopen, and delete and free the staged changes in 2713e971aa12SJeff Cody * reopen_state 2714e971aa12SJeff Cody */ 2715e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state) 2716e971aa12SJeff Cody { 2717e971aa12SJeff Cody BlockDriver *drv; 2718e971aa12SJeff Cody 2719e971aa12SJeff Cody assert(reopen_state != NULL); 2720e971aa12SJeff Cody drv = reopen_state->bs->drv; 2721e971aa12SJeff Cody assert(drv != NULL); 2722e971aa12SJeff Cody 2723e971aa12SJeff Cody if (drv->bdrv_reopen_abort) { 2724e971aa12SJeff Cody drv->bdrv_reopen_abort(reopen_state); 2725e971aa12SJeff Cody } 2726145f598eSKevin Wolf 2727145f598eSKevin Wolf QDECREF(reopen_state->explicit_options); 2728e971aa12SJeff Cody } 2729e971aa12SJeff Cody 2730e971aa12SJeff Cody 273164dff520SMax Reitz static void bdrv_close(BlockDriverState *bs) 2732fc01f7e7Sbellard { 273333384421SMax Reitz BdrvAioNotifier *ban, *ban_next; 273433384421SMax Reitz 2735ca9bd24cSMax Reitz assert(!bs->job); 273630f55fb8SMax Reitz assert(!bs->refcnt); 273799b7e775SAlberto Garcia 2738fc27291dSPaolo Bonzini bdrv_drained_begin(bs); /* complete I/O */ 273958fda173SStefan Hajnoczi bdrv_flush(bs); 274053ec73e2SFam Zheng bdrv_drain(bs); /* in case flush left pending I/O */ 2741fc27291dSPaolo Bonzini 2742c5acdc9aSMax Reitz bdrv_release_named_dirty_bitmaps(bs); 2743c5acdc9aSMax Reitz assert(QLIST_EMPTY(&bs->dirty_bitmaps)); 2744c5acdc9aSMax Reitz 27453cbc002cSPaolo Bonzini if (bs->drv) { 27466e93e7c4SKevin Wolf BdrvChild *child, *next; 27476e93e7c4SKevin Wolf 27489a7dedbcSKevin Wolf bs->drv->bdrv_close(bs); 27499a4f4c31SKevin Wolf bs->drv = NULL; 27509a7dedbcSKevin Wolf 27519a7dedbcSKevin Wolf bdrv_set_backing_hd(bs, NULL); 27529a7dedbcSKevin Wolf 27539a4f4c31SKevin Wolf if (bs->file != NULL) { 27549a4f4c31SKevin Wolf bdrv_unref_child(bs, bs->file); 27559a4f4c31SKevin Wolf bs->file = NULL; 27569a4f4c31SKevin Wolf } 27579a4f4c31SKevin Wolf 27586e93e7c4SKevin Wolf QLIST_FOREACH_SAFE(child, &bs->children, next, next) { 275933a60407SKevin Wolf /* TODO Remove bdrv_unref() from drivers' close function and use 276033a60407SKevin Wolf * bdrv_unref_child() here */ 2761bddcec37SKevin Wolf if (child->bs->inherits_from == bs) { 2762bddcec37SKevin Wolf child->bs->inherits_from = NULL; 2763bddcec37SKevin Wolf } 276433a60407SKevin Wolf bdrv_detach_child(child); 27656e93e7c4SKevin Wolf } 27666e93e7c4SKevin Wolf 27677267c094SAnthony Liguori g_free(bs->opaque); 2768ea2384d3Sbellard bs->opaque = NULL; 276953fec9d3SStefan Hajnoczi bs->copy_on_read = 0; 2770a275fa42SPaolo Bonzini bs->backing_file[0] = '\0'; 2771a275fa42SPaolo Bonzini bs->backing_format[0] = '\0'; 27726405875cSPaolo Bonzini bs->total_sectors = 0; 277354115412SEric Blake bs->encrypted = false; 277454115412SEric Blake bs->valid_key = false; 277554115412SEric Blake bs->sg = false; 2776de9c0cecSKevin Wolf QDECREF(bs->options); 2777145f598eSKevin Wolf QDECREF(bs->explicit_options); 2778de9c0cecSKevin Wolf bs->options = NULL; 277991af7014SMax Reitz QDECREF(bs->full_open_options); 278091af7014SMax Reitz bs->full_open_options = NULL; 27819ca11154SPavel Hrdina } 278266f82ceeSKevin Wolf 278333384421SMax Reitz QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 278433384421SMax Reitz g_free(ban); 278533384421SMax Reitz } 278633384421SMax Reitz QLIST_INIT(&bs->aio_notifiers); 2787fc27291dSPaolo Bonzini bdrv_drained_end(bs); 2788b338082bSbellard } 2789b338082bSbellard 27902bc93fedSMORITA Kazutaka void bdrv_close_all(void) 27912bc93fedSMORITA Kazutaka { 2792a1a2af07SKevin Wolf block_job_cancel_sync_all(); 2793cd7fca95SKevin Wolf nbd_export_close_all(); 27942bc93fedSMORITA Kazutaka 2795ca9bd24cSMax Reitz /* Drop references from requests still in flight, such as canceled block 2796ca9bd24cSMax Reitz * jobs whose AIO context has not been polled yet */ 2797ca9bd24cSMax Reitz bdrv_drain_all(); 2798ca9bd24cSMax Reitz 2799ca9bd24cSMax Reitz blk_remove_all_bs(); 2800ca9bd24cSMax Reitz blockdev_close_all_bdrv_states(); 2801ca9bd24cSMax Reitz 2802a1a2af07SKevin Wolf assert(QTAILQ_EMPTY(&all_bdrv_states)); 28032bc93fedSMORITA Kazutaka } 28042bc93fedSMORITA Kazutaka 2805dd62f1caSKevin Wolf static void change_parent_backing_link(BlockDriverState *from, 2806dd62f1caSKevin Wolf BlockDriverState *to) 2807dd62f1caSKevin Wolf { 28089bd910e2SMax Reitz BdrvChild *c, *next, *to_c; 2809dd62f1caSKevin Wolf 2810dd62f1caSKevin Wolf QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) { 28119bd910e2SMax Reitz if (c->role == &child_backing) { 28129bd910e2SMax Reitz /* @from is generally not allowed to be a backing file, except for 28139bd910e2SMax Reitz * when @to is the overlay. In that case, @from may not be replaced 28149bd910e2SMax Reitz * by @to as @to's backing node. */ 28159bd910e2SMax Reitz QLIST_FOREACH(to_c, &to->children, next) { 28169bd910e2SMax Reitz if (to_c == c) { 28179bd910e2SMax Reitz break; 28189bd910e2SMax Reitz } 28199bd910e2SMax Reitz } 28209bd910e2SMax Reitz if (to_c) { 28219bd910e2SMax Reitz continue; 28229bd910e2SMax Reitz } 28239bd910e2SMax Reitz } 28249bd910e2SMax Reitz 2825dd62f1caSKevin Wolf assert(c->role != &child_backing); 2826dd62f1caSKevin Wolf bdrv_ref(to); 282733a610c3SKevin Wolf /* FIXME Are we sure that bdrv_replace_child() can't run into 282833a610c3SKevin Wolf * &error_abort because of permissions? */ 282933a610c3SKevin Wolf bdrv_replace_child(c, to, true); 2830dd62f1caSKevin Wolf bdrv_unref(from); 2831dd62f1caSKevin Wolf } 2832dd62f1caSKevin Wolf } 2833dd62f1caSKevin Wolf 28348802d1fdSJeff Cody /* 28358802d1fdSJeff Cody * Add new bs contents at the top of an image chain while the chain is 28368802d1fdSJeff Cody * live, while keeping required fields on the top layer. 28378802d1fdSJeff Cody * 28388802d1fdSJeff Cody * This will modify the BlockDriverState fields, and swap contents 28398802d1fdSJeff Cody * between bs_new and bs_top. Both bs_new and bs_top are modified. 28408802d1fdSJeff Cody * 2841bfb197e0SMarkus Armbruster * bs_new must not be attached to a BlockBackend. 2842f6801b83SJeff Cody * 28438802d1fdSJeff Cody * This function does not create any image files. 2844dd62f1caSKevin Wolf * 2845dd62f1caSKevin Wolf * bdrv_append() takes ownership of a bs_new reference and unrefs it because 2846dd62f1caSKevin Wolf * that's what the callers commonly need. bs_new will be referenced by the old 2847dd62f1caSKevin Wolf * parents of bs_top after bdrv_append() returns. If the caller needs to keep a 2848dd62f1caSKevin Wolf * reference of its own, it must call bdrv_ref(). 28498802d1fdSJeff Cody */ 28508802d1fdSJeff Cody void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top) 28518802d1fdSJeff Cody { 2852dd62f1caSKevin Wolf assert(!bdrv_requests_pending(bs_top)); 2853dd62f1caSKevin Wolf assert(!bdrv_requests_pending(bs_new)); 28548802d1fdSJeff Cody 2855dd62f1caSKevin Wolf bdrv_ref(bs_top); 2856dd62f1caSKevin Wolf 285727ccdd52SKevin Wolf change_parent_backing_link(bs_top, bs_new); 2858dd62f1caSKevin Wolf bdrv_set_backing_hd(bs_new, bs_top); 2859dd62f1caSKevin Wolf bdrv_unref(bs_top); 2860dd62f1caSKevin Wolf 2861dd62f1caSKevin Wolf /* bs_new is now referenced by its new parents, we don't need the 2862dd62f1caSKevin Wolf * additional reference any more. */ 2863dd62f1caSKevin Wolf bdrv_unref(bs_new); 28648802d1fdSJeff Cody } 28658802d1fdSJeff Cody 28663f09bfbcSKevin Wolf void bdrv_replace_in_backing_chain(BlockDriverState *old, BlockDriverState *new) 28673f09bfbcSKevin Wolf { 28683f09bfbcSKevin Wolf assert(!bdrv_requests_pending(old)); 28693f09bfbcSKevin Wolf assert(!bdrv_requests_pending(new)); 28703f09bfbcSKevin Wolf 28713f09bfbcSKevin Wolf bdrv_ref(old); 28723f09bfbcSKevin Wolf 28733f09bfbcSKevin Wolf change_parent_backing_link(old, new); 28743f09bfbcSKevin Wolf 28753f09bfbcSKevin Wolf bdrv_unref(old); 28763f09bfbcSKevin Wolf } 28773f09bfbcSKevin Wolf 28784f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs) 2879b338082bSbellard { 28803e914655SPaolo Bonzini assert(!bs->job); 28813718d8abSFam Zheng assert(bdrv_op_blocker_is_empty(bs)); 28824f6fd349SFam Zheng assert(!bs->refcnt); 288318846deeSMarkus Armbruster 2884e1b5c52eSStefan Hajnoczi bdrv_close(bs); 2885e1b5c52eSStefan Hajnoczi 28861b7bdbc1SStefan Hajnoczi /* remove from list, if necessary */ 288763eaaae0SKevin Wolf if (bs->node_name[0] != '\0') { 288863eaaae0SKevin Wolf QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list); 288963eaaae0SKevin Wolf } 28902c1d04e0SMax Reitz QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list); 28912c1d04e0SMax Reitz 28927267c094SAnthony Liguori g_free(bs); 2893fc01f7e7Sbellard } 2894fc01f7e7Sbellard 2895e97fc193Saliguori /* 2896e97fc193Saliguori * Run consistency checks on an image 2897e97fc193Saliguori * 2898e076f338SKevin Wolf * Returns 0 if the check could be completed (it doesn't mean that the image is 2899a1c7273bSStefan Weil * free of errors) or -errno when an internal error occurred. The results of the 2900e076f338SKevin Wolf * check are stored in res. 2901e97fc193Saliguori */ 29024534ff54SKevin Wolf int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix) 2903e97fc193Saliguori { 2904908bcd54SMax Reitz if (bs->drv == NULL) { 2905908bcd54SMax Reitz return -ENOMEDIUM; 2906908bcd54SMax Reitz } 2907e97fc193Saliguori if (bs->drv->bdrv_check == NULL) { 2908e97fc193Saliguori return -ENOTSUP; 2909e97fc193Saliguori } 2910e97fc193Saliguori 2911e076f338SKevin Wolf memset(res, 0, sizeof(*res)); 29124534ff54SKevin Wolf return bs->drv->bdrv_check(bs, res, fix); 2913e97fc193Saliguori } 2914e97fc193Saliguori 2915756e6736SKevin Wolf /* 2916756e6736SKevin Wolf * Return values: 2917756e6736SKevin Wolf * 0 - success 2918756e6736SKevin Wolf * -EINVAL - backing format specified, but no file 2919756e6736SKevin Wolf * -ENOSPC - can't update the backing file because no space is left in the 2920756e6736SKevin Wolf * image file header 2921756e6736SKevin Wolf * -ENOTSUP - format driver doesn't support changing the backing file 2922756e6736SKevin Wolf */ 2923756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs, 2924756e6736SKevin Wolf const char *backing_file, const char *backing_fmt) 2925756e6736SKevin Wolf { 2926756e6736SKevin Wolf BlockDriver *drv = bs->drv; 2927469ef350SPaolo Bonzini int ret; 2928756e6736SKevin Wolf 29295f377794SPaolo Bonzini /* Backing file format doesn't make sense without a backing file */ 29305f377794SPaolo Bonzini if (backing_fmt && !backing_file) { 29315f377794SPaolo Bonzini return -EINVAL; 29325f377794SPaolo Bonzini } 29335f377794SPaolo Bonzini 2934756e6736SKevin Wolf if (drv->bdrv_change_backing_file != NULL) { 2935469ef350SPaolo Bonzini ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); 2936756e6736SKevin Wolf } else { 2937469ef350SPaolo Bonzini ret = -ENOTSUP; 2938756e6736SKevin Wolf } 2939469ef350SPaolo Bonzini 2940469ef350SPaolo Bonzini if (ret == 0) { 2941469ef350SPaolo Bonzini pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); 2942469ef350SPaolo Bonzini pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); 2943469ef350SPaolo Bonzini } 2944469ef350SPaolo Bonzini return ret; 2945756e6736SKevin Wolf } 2946756e6736SKevin Wolf 29476ebdcee2SJeff Cody /* 29486ebdcee2SJeff Cody * Finds the image layer in the chain that has 'bs' as its backing file. 29496ebdcee2SJeff Cody * 29506ebdcee2SJeff Cody * active is the current topmost image. 29516ebdcee2SJeff Cody * 29526ebdcee2SJeff Cody * Returns NULL if bs is not found in active's image chain, 29536ebdcee2SJeff Cody * or if active == bs. 29544caf0fcdSJeff Cody * 29554caf0fcdSJeff Cody * Returns the bottommost base image if bs == NULL. 29566ebdcee2SJeff Cody */ 29576ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active, 29586ebdcee2SJeff Cody BlockDriverState *bs) 29596ebdcee2SJeff Cody { 2960760e0063SKevin Wolf while (active && bs != backing_bs(active)) { 2961760e0063SKevin Wolf active = backing_bs(active); 29626ebdcee2SJeff Cody } 29636ebdcee2SJeff Cody 29644caf0fcdSJeff Cody return active; 29656ebdcee2SJeff Cody } 29666ebdcee2SJeff Cody 29674caf0fcdSJeff Cody /* Given a BDS, searches for the base layer. */ 29684caf0fcdSJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs) 29694caf0fcdSJeff Cody { 29704caf0fcdSJeff Cody return bdrv_find_overlay(bs, NULL); 29716ebdcee2SJeff Cody } 29726ebdcee2SJeff Cody 29736ebdcee2SJeff Cody /* 29746ebdcee2SJeff Cody * Drops images above 'base' up to and including 'top', and sets the image 29756ebdcee2SJeff Cody * above 'top' to have base as its backing file. 29766ebdcee2SJeff Cody * 29776ebdcee2SJeff Cody * Requires that the overlay to 'top' is opened r/w, so that the backing file 29786ebdcee2SJeff Cody * information in 'bs' can be properly updated. 29796ebdcee2SJeff Cody * 29806ebdcee2SJeff Cody * E.g., this will convert the following chain: 29816ebdcee2SJeff Cody * bottom <- base <- intermediate <- top <- active 29826ebdcee2SJeff Cody * 29836ebdcee2SJeff Cody * to 29846ebdcee2SJeff Cody * 29856ebdcee2SJeff Cody * bottom <- base <- active 29866ebdcee2SJeff Cody * 29876ebdcee2SJeff Cody * It is allowed for bottom==base, in which case it converts: 29886ebdcee2SJeff Cody * 29896ebdcee2SJeff Cody * base <- intermediate <- top <- active 29906ebdcee2SJeff Cody * 29916ebdcee2SJeff Cody * to 29926ebdcee2SJeff Cody * 29936ebdcee2SJeff Cody * base <- active 29946ebdcee2SJeff Cody * 299554e26900SJeff Cody * If backing_file_str is non-NULL, it will be used when modifying top's 299654e26900SJeff Cody * overlay image metadata. 299754e26900SJeff Cody * 29986ebdcee2SJeff Cody * Error conditions: 29996ebdcee2SJeff Cody * if active == top, that is considered an error 30006ebdcee2SJeff Cody * 30016ebdcee2SJeff Cody */ 30026ebdcee2SJeff Cody int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top, 300354e26900SJeff Cody BlockDriverState *base, const char *backing_file_str) 30046ebdcee2SJeff Cody { 30056ebdcee2SJeff Cody BlockDriverState *new_top_bs = NULL; 30066ebdcee2SJeff Cody int ret = -EIO; 30076ebdcee2SJeff Cody 30086ebdcee2SJeff Cody if (!top->drv || !base->drv) { 30096ebdcee2SJeff Cody goto exit; 30106ebdcee2SJeff Cody } 30116ebdcee2SJeff Cody 30126ebdcee2SJeff Cody new_top_bs = bdrv_find_overlay(active, top); 30136ebdcee2SJeff Cody 30146ebdcee2SJeff Cody if (new_top_bs == NULL) { 30156ebdcee2SJeff Cody /* we could not find the image above 'top', this is an error */ 30166ebdcee2SJeff Cody goto exit; 30176ebdcee2SJeff Cody } 30186ebdcee2SJeff Cody 3019760e0063SKevin Wolf /* special case of new_top_bs->backing->bs already pointing to base - nothing 30206ebdcee2SJeff Cody * to do, no intermediate images */ 3021760e0063SKevin Wolf if (backing_bs(new_top_bs) == base) { 30226ebdcee2SJeff Cody ret = 0; 30236ebdcee2SJeff Cody goto exit; 30246ebdcee2SJeff Cody } 30256ebdcee2SJeff Cody 30265db15a57SKevin Wolf /* Make sure that base is in the backing chain of top */ 30275db15a57SKevin Wolf if (!bdrv_chain_contains(top, base)) { 30286ebdcee2SJeff Cody goto exit; 30296ebdcee2SJeff Cody } 30306ebdcee2SJeff Cody 30316ebdcee2SJeff Cody /* success - we can delete the intermediate states, and link top->base */ 30325db15a57SKevin Wolf backing_file_str = backing_file_str ? backing_file_str : base->filename; 303354e26900SJeff Cody ret = bdrv_change_backing_file(new_top_bs, backing_file_str, 30345db15a57SKevin Wolf base->drv ? base->drv->format_name : ""); 30356ebdcee2SJeff Cody if (ret) { 30366ebdcee2SJeff Cody goto exit; 30376ebdcee2SJeff Cody } 30385db15a57SKevin Wolf bdrv_set_backing_hd(new_top_bs, base); 30396ebdcee2SJeff Cody 30406ebdcee2SJeff Cody ret = 0; 30416ebdcee2SJeff Cody exit: 30426ebdcee2SJeff Cody return ret; 30436ebdcee2SJeff Cody } 30446ebdcee2SJeff Cody 304583f64091Sbellard /** 304683f64091Sbellard * Truncate file to 'offset' bytes (needed only for file protocols) 304783f64091Sbellard */ 304852cdbc58SKevin Wolf int bdrv_truncate(BdrvChild *child, int64_t offset) 304983f64091Sbellard { 305052cdbc58SKevin Wolf BlockDriverState *bs = child->bs; 305183f64091Sbellard BlockDriver *drv = bs->drv; 305251762288SStefan Hajnoczi int ret; 305383f64091Sbellard if (!drv) 305419cb3738Sbellard return -ENOMEDIUM; 305583f64091Sbellard if (!drv->bdrv_truncate) 305683f64091Sbellard return -ENOTSUP; 305759f2689dSNaphtali Sprei if (bs->read_only) 305859f2689dSNaphtali Sprei return -EACCES; 30599c75e168SJeff Cody 306051762288SStefan Hajnoczi ret = drv->bdrv_truncate(bs, offset); 306151762288SStefan Hajnoczi if (ret == 0) { 306251762288SStefan Hajnoczi ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS); 3063ce1ffea8SJohn Snow bdrv_dirty_bitmap_truncate(bs); 30645c8cab48SKevin Wolf bdrv_parent_cb_resize(bs); 30653ff2f67aSEvgeny Yakovlev ++bs->write_gen; 306651762288SStefan Hajnoczi } 306751762288SStefan Hajnoczi return ret; 306883f64091Sbellard } 306983f64091Sbellard 307083f64091Sbellard /** 30714a1d5e1fSFam Zheng * Length of a allocated file in bytes. Sparse files are counted by actual 30724a1d5e1fSFam Zheng * allocated space. Return < 0 if error or unknown. 30734a1d5e1fSFam Zheng */ 30744a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs) 30754a1d5e1fSFam Zheng { 30764a1d5e1fSFam Zheng BlockDriver *drv = bs->drv; 30774a1d5e1fSFam Zheng if (!drv) { 30784a1d5e1fSFam Zheng return -ENOMEDIUM; 30794a1d5e1fSFam Zheng } 30804a1d5e1fSFam Zheng if (drv->bdrv_get_allocated_file_size) { 30814a1d5e1fSFam Zheng return drv->bdrv_get_allocated_file_size(bs); 30824a1d5e1fSFam Zheng } 30834a1d5e1fSFam Zheng if (bs->file) { 30849a4f4c31SKevin Wolf return bdrv_get_allocated_file_size(bs->file->bs); 30854a1d5e1fSFam Zheng } 30864a1d5e1fSFam Zheng return -ENOTSUP; 30874a1d5e1fSFam Zheng } 30884a1d5e1fSFam Zheng 30894a1d5e1fSFam Zheng /** 309065a9bb25SMarkus Armbruster * Return number of sectors on success, -errno on error. 309183f64091Sbellard */ 309265a9bb25SMarkus Armbruster int64_t bdrv_nb_sectors(BlockDriverState *bs) 309383f64091Sbellard { 309483f64091Sbellard BlockDriver *drv = bs->drv; 309565a9bb25SMarkus Armbruster 309683f64091Sbellard if (!drv) 309719cb3738Sbellard return -ENOMEDIUM; 309851762288SStefan Hajnoczi 3099b94a2610SKevin Wolf if (drv->has_variable_length) { 3100b94a2610SKevin Wolf int ret = refresh_total_sectors(bs, bs->total_sectors); 3101b94a2610SKevin Wolf if (ret < 0) { 3102b94a2610SKevin Wolf return ret; 3103fc01f7e7Sbellard } 310446a4e4e6SStefan Hajnoczi } 310565a9bb25SMarkus Armbruster return bs->total_sectors; 310665a9bb25SMarkus Armbruster } 310765a9bb25SMarkus Armbruster 310865a9bb25SMarkus Armbruster /** 310965a9bb25SMarkus Armbruster * Return length in bytes on success, -errno on error. 311065a9bb25SMarkus Armbruster * The length is always a multiple of BDRV_SECTOR_SIZE. 311165a9bb25SMarkus Armbruster */ 311265a9bb25SMarkus Armbruster int64_t bdrv_getlength(BlockDriverState *bs) 311365a9bb25SMarkus Armbruster { 311465a9bb25SMarkus Armbruster int64_t ret = bdrv_nb_sectors(bs); 311565a9bb25SMarkus Armbruster 31164a9c9ea0SFam Zheng ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret; 311765a9bb25SMarkus Armbruster return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE; 311846a4e4e6SStefan Hajnoczi } 3119fc01f7e7Sbellard 312019cb3738Sbellard /* return 0 as number of sectors if no device present or error */ 312196b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) 3122fc01f7e7Sbellard { 312365a9bb25SMarkus Armbruster int64_t nb_sectors = bdrv_nb_sectors(bs); 312465a9bb25SMarkus Armbruster 312565a9bb25SMarkus Armbruster *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors; 3126fc01f7e7Sbellard } 3127cf98951bSbellard 312854115412SEric Blake bool bdrv_is_read_only(BlockDriverState *bs) 3129b338082bSbellard { 3130b338082bSbellard return bs->read_only; 3131b338082bSbellard } 3132b338082bSbellard 313354115412SEric Blake bool bdrv_is_sg(BlockDriverState *bs) 3134985a03b0Sths { 3135985a03b0Sths return bs->sg; 3136985a03b0Sths } 3137985a03b0Sths 313854115412SEric Blake bool bdrv_is_encrypted(BlockDriverState *bs) 3139ea2384d3Sbellard { 3140760e0063SKevin Wolf if (bs->backing && bs->backing->bs->encrypted) { 314154115412SEric Blake return true; 3142760e0063SKevin Wolf } 3143ea2384d3Sbellard return bs->encrypted; 3144ea2384d3Sbellard } 3145ea2384d3Sbellard 314654115412SEric Blake bool bdrv_key_required(BlockDriverState *bs) 3147c0f4ce77Saliguori { 3148760e0063SKevin Wolf BdrvChild *backing = bs->backing; 3149c0f4ce77Saliguori 3150760e0063SKevin Wolf if (backing && backing->bs->encrypted && !backing->bs->valid_key) { 315154115412SEric Blake return true; 3152760e0063SKevin Wolf } 3153c0f4ce77Saliguori return (bs->encrypted && !bs->valid_key); 3154c0f4ce77Saliguori } 3155c0f4ce77Saliguori 3156ea2384d3Sbellard int bdrv_set_key(BlockDriverState *bs, const char *key) 3157ea2384d3Sbellard { 3158ea2384d3Sbellard int ret; 3159760e0063SKevin Wolf if (bs->backing && bs->backing->bs->encrypted) { 3160760e0063SKevin Wolf ret = bdrv_set_key(bs->backing->bs, key); 3161ea2384d3Sbellard if (ret < 0) 3162ea2384d3Sbellard return ret; 3163ea2384d3Sbellard if (!bs->encrypted) 3164ea2384d3Sbellard return 0; 3165ea2384d3Sbellard } 3166fd04a2aeSShahar Havivi if (!bs->encrypted) { 3167fd04a2aeSShahar Havivi return -EINVAL; 3168fd04a2aeSShahar Havivi } else if (!bs->drv || !bs->drv->bdrv_set_key) { 3169fd04a2aeSShahar Havivi return -ENOMEDIUM; 3170fd04a2aeSShahar Havivi } 3171c0f4ce77Saliguori ret = bs->drv->bdrv_set_key(bs, key); 3172bb5fc20fSaliguori if (ret < 0) { 317354115412SEric Blake bs->valid_key = false; 3174bb5fc20fSaliguori } else if (!bs->valid_key) { 3175bb5fc20fSaliguori /* call the change callback now, we skipped it on open */ 317654115412SEric Blake bs->valid_key = true; 31775c8cab48SKevin Wolf bdrv_parent_cb_change_media(bs, true); 3178bb5fc20fSaliguori } 3179c0f4ce77Saliguori return ret; 3180ea2384d3Sbellard } 3181ea2384d3Sbellard 31824d2855a3SMarkus Armbruster /* 31834d2855a3SMarkus Armbruster * Provide an encryption key for @bs. 31844d2855a3SMarkus Armbruster * If @key is non-null: 31854d2855a3SMarkus Armbruster * If @bs is not encrypted, fail. 31864d2855a3SMarkus Armbruster * Else if the key is invalid, fail. 31874d2855a3SMarkus Armbruster * Else set @bs's key to @key, replacing the existing key, if any. 31884d2855a3SMarkus Armbruster * If @key is null: 31894d2855a3SMarkus Armbruster * If @bs is encrypted and still lacks a key, fail. 31904d2855a3SMarkus Armbruster * Else do nothing. 31914d2855a3SMarkus Armbruster * On failure, store an error object through @errp if non-null. 31924d2855a3SMarkus Armbruster */ 31934d2855a3SMarkus Armbruster void bdrv_add_key(BlockDriverState *bs, const char *key, Error **errp) 31944d2855a3SMarkus Armbruster { 31954d2855a3SMarkus Armbruster if (key) { 31964d2855a3SMarkus Armbruster if (!bdrv_is_encrypted(bs)) { 319781e5f78aSAlberto Garcia error_setg(errp, "Node '%s' is not encrypted", 319881e5f78aSAlberto Garcia bdrv_get_device_or_node_name(bs)); 31994d2855a3SMarkus Armbruster } else if (bdrv_set_key(bs, key) < 0) { 3200c6bd8c70SMarkus Armbruster error_setg(errp, QERR_INVALID_PASSWORD); 32014d2855a3SMarkus Armbruster } 32024d2855a3SMarkus Armbruster } else { 32034d2855a3SMarkus Armbruster if (bdrv_key_required(bs)) { 3204b1ca6391SMarkus Armbruster error_set(errp, ERROR_CLASS_DEVICE_ENCRYPTED, 3205b1ca6391SMarkus Armbruster "'%s' (%s) is encrypted", 320681e5f78aSAlberto Garcia bdrv_get_device_or_node_name(bs), 32074d2855a3SMarkus Armbruster bdrv_get_encrypted_filename(bs)); 32084d2855a3SMarkus Armbruster } 32094d2855a3SMarkus Armbruster } 32104d2855a3SMarkus Armbruster } 32114d2855a3SMarkus Armbruster 3212f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs) 3213ea2384d3Sbellard { 3214f8d6bba1SMarkus Armbruster return bs->drv ? bs->drv->format_name : NULL; 3215ea2384d3Sbellard } 3216ea2384d3Sbellard 3217ada42401SStefan Hajnoczi static int qsort_strcmp(const void *a, const void *b) 3218ada42401SStefan Hajnoczi { 3219ceff5bd7SMax Reitz return strcmp(*(char *const *)a, *(char *const *)b); 3220ada42401SStefan Hajnoczi } 3221ada42401SStefan Hajnoczi 3222ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name), 3223ea2384d3Sbellard void *opaque) 3224ea2384d3Sbellard { 3225ea2384d3Sbellard BlockDriver *drv; 3226e855e4fbSJeff Cody int count = 0; 3227ada42401SStefan Hajnoczi int i; 3228e855e4fbSJeff Cody const char **formats = NULL; 3229ea2384d3Sbellard 32308a22f02aSStefan Hajnoczi QLIST_FOREACH(drv, &bdrv_drivers, list) { 3231e855e4fbSJeff Cody if (drv->format_name) { 3232e855e4fbSJeff Cody bool found = false; 3233e855e4fbSJeff Cody int i = count; 3234e855e4fbSJeff Cody while (formats && i && !found) { 3235e855e4fbSJeff Cody found = !strcmp(formats[--i], drv->format_name); 3236e855e4fbSJeff Cody } 3237e855e4fbSJeff Cody 3238e855e4fbSJeff Cody if (!found) { 32395839e53bSMarkus Armbruster formats = g_renew(const char *, formats, count + 1); 3240e855e4fbSJeff Cody formats[count++] = drv->format_name; 3241ea2384d3Sbellard } 3242ea2384d3Sbellard } 3243e855e4fbSJeff Cody } 3244ada42401SStefan Hajnoczi 3245eb0df69fSMax Reitz for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) { 3246eb0df69fSMax Reitz const char *format_name = block_driver_modules[i].format_name; 3247eb0df69fSMax Reitz 3248eb0df69fSMax Reitz if (format_name) { 3249eb0df69fSMax Reitz bool found = false; 3250eb0df69fSMax Reitz int j = count; 3251eb0df69fSMax Reitz 3252eb0df69fSMax Reitz while (formats && j && !found) { 3253eb0df69fSMax Reitz found = !strcmp(formats[--j], format_name); 3254eb0df69fSMax Reitz } 3255eb0df69fSMax Reitz 3256eb0df69fSMax Reitz if (!found) { 3257eb0df69fSMax Reitz formats = g_renew(const char *, formats, count + 1); 3258eb0df69fSMax Reitz formats[count++] = format_name; 3259eb0df69fSMax Reitz } 3260eb0df69fSMax Reitz } 3261eb0df69fSMax Reitz } 3262eb0df69fSMax Reitz 3263ada42401SStefan Hajnoczi qsort(formats, count, sizeof(formats[0]), qsort_strcmp); 3264ada42401SStefan Hajnoczi 3265ada42401SStefan Hajnoczi for (i = 0; i < count; i++) { 3266ada42401SStefan Hajnoczi it(opaque, formats[i]); 3267ada42401SStefan Hajnoczi } 3268ada42401SStefan Hajnoczi 3269e855e4fbSJeff Cody g_free(formats); 3270e855e4fbSJeff Cody } 3271ea2384d3Sbellard 3272dc364f4cSBenoît Canet /* This function is to find a node in the bs graph */ 3273dc364f4cSBenoît Canet BlockDriverState *bdrv_find_node(const char *node_name) 3274dc364f4cSBenoît Canet { 3275dc364f4cSBenoît Canet BlockDriverState *bs; 3276dc364f4cSBenoît Canet 3277dc364f4cSBenoît Canet assert(node_name); 3278dc364f4cSBenoît Canet 3279dc364f4cSBenoît Canet QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 3280dc364f4cSBenoît Canet if (!strcmp(node_name, bs->node_name)) { 3281dc364f4cSBenoît Canet return bs; 3282dc364f4cSBenoît Canet } 3283dc364f4cSBenoît Canet } 3284dc364f4cSBenoît Canet return NULL; 3285dc364f4cSBenoît Canet } 3286dc364f4cSBenoît Canet 3287c13163fbSBenoît Canet /* Put this QMP function here so it can access the static graph_bdrv_states. */ 3288d5a8ee60SAlberto Garcia BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp) 3289c13163fbSBenoît Canet { 3290c13163fbSBenoît Canet BlockDeviceInfoList *list, *entry; 3291c13163fbSBenoît Canet BlockDriverState *bs; 3292c13163fbSBenoît Canet 3293c13163fbSBenoît Canet list = NULL; 3294c13163fbSBenoît Canet QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 3295c83f9fbaSKevin Wolf BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp); 3296d5a8ee60SAlberto Garcia if (!info) { 3297d5a8ee60SAlberto Garcia qapi_free_BlockDeviceInfoList(list); 3298d5a8ee60SAlberto Garcia return NULL; 3299d5a8ee60SAlberto Garcia } 3300c13163fbSBenoît Canet entry = g_malloc0(sizeof(*entry)); 3301d5a8ee60SAlberto Garcia entry->value = info; 3302c13163fbSBenoît Canet entry->next = list; 3303c13163fbSBenoît Canet list = entry; 3304c13163fbSBenoît Canet } 3305c13163fbSBenoît Canet 3306c13163fbSBenoît Canet return list; 3307c13163fbSBenoît Canet } 3308c13163fbSBenoît Canet 330912d3ba82SBenoît Canet BlockDriverState *bdrv_lookup_bs(const char *device, 331012d3ba82SBenoît Canet const char *node_name, 331112d3ba82SBenoît Canet Error **errp) 331212d3ba82SBenoît Canet { 33137f06d47eSMarkus Armbruster BlockBackend *blk; 33147f06d47eSMarkus Armbruster BlockDriverState *bs; 331512d3ba82SBenoît Canet 331612d3ba82SBenoît Canet if (device) { 33177f06d47eSMarkus Armbruster blk = blk_by_name(device); 331812d3ba82SBenoît Canet 33197f06d47eSMarkus Armbruster if (blk) { 33209f4ed6fbSAlberto Garcia bs = blk_bs(blk); 33219f4ed6fbSAlberto Garcia if (!bs) { 33225433c24fSMax Reitz error_setg(errp, "Device '%s' has no medium", device); 33235433c24fSMax Reitz } 33245433c24fSMax Reitz 33259f4ed6fbSAlberto Garcia return bs; 332612d3ba82SBenoît Canet } 3327dd67fa50SBenoît Canet } 332812d3ba82SBenoît Canet 3329dd67fa50SBenoît Canet if (node_name) { 333012d3ba82SBenoît Canet bs = bdrv_find_node(node_name); 333112d3ba82SBenoît Canet 3332dd67fa50SBenoît Canet if (bs) { 3333dd67fa50SBenoît Canet return bs; 3334dd67fa50SBenoît Canet } 333512d3ba82SBenoît Canet } 333612d3ba82SBenoît Canet 3337dd67fa50SBenoît Canet error_setg(errp, "Cannot find device=%s nor node_name=%s", 3338dd67fa50SBenoît Canet device ? device : "", 3339dd67fa50SBenoît Canet node_name ? node_name : ""); 3340dd67fa50SBenoît Canet return NULL; 334112d3ba82SBenoît Canet } 334212d3ba82SBenoît Canet 33435a6684d2SJeff Cody /* If 'base' is in the same chain as 'top', return true. Otherwise, 33445a6684d2SJeff Cody * return false. If either argument is NULL, return false. */ 33455a6684d2SJeff Cody bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base) 33465a6684d2SJeff Cody { 33475a6684d2SJeff Cody while (top && top != base) { 3348760e0063SKevin Wolf top = backing_bs(top); 33495a6684d2SJeff Cody } 33505a6684d2SJeff Cody 33515a6684d2SJeff Cody return top != NULL; 33525a6684d2SJeff Cody } 33535a6684d2SJeff Cody 335404df765aSFam Zheng BlockDriverState *bdrv_next_node(BlockDriverState *bs) 335504df765aSFam Zheng { 335604df765aSFam Zheng if (!bs) { 335704df765aSFam Zheng return QTAILQ_FIRST(&graph_bdrv_states); 335804df765aSFam Zheng } 335904df765aSFam Zheng return QTAILQ_NEXT(bs, node_list); 336004df765aSFam Zheng } 336104df765aSFam Zheng 336220a9e77dSFam Zheng const char *bdrv_get_node_name(const BlockDriverState *bs) 336320a9e77dSFam Zheng { 336420a9e77dSFam Zheng return bs->node_name; 336520a9e77dSFam Zheng } 336620a9e77dSFam Zheng 33671f0c461bSKevin Wolf const char *bdrv_get_parent_name(const BlockDriverState *bs) 33684c265bf9SKevin Wolf { 33694c265bf9SKevin Wolf BdrvChild *c; 33704c265bf9SKevin Wolf const char *name; 33714c265bf9SKevin Wolf 33724c265bf9SKevin Wolf /* If multiple parents have a name, just pick the first one. */ 33734c265bf9SKevin Wolf QLIST_FOREACH(c, &bs->parents, next_parent) { 33744c265bf9SKevin Wolf if (c->role->get_name) { 33754c265bf9SKevin Wolf name = c->role->get_name(c); 33764c265bf9SKevin Wolf if (name && *name) { 33774c265bf9SKevin Wolf return name; 33784c265bf9SKevin Wolf } 33794c265bf9SKevin Wolf } 33804c265bf9SKevin Wolf } 33814c265bf9SKevin Wolf 33824c265bf9SKevin Wolf return NULL; 33834c265bf9SKevin Wolf } 33844c265bf9SKevin Wolf 33857f06d47eSMarkus Armbruster /* TODO check what callers really want: bs->node_name or blk_name() */ 3386bfb197e0SMarkus Armbruster const char *bdrv_get_device_name(const BlockDriverState *bs) 3387ea2384d3Sbellard { 33884c265bf9SKevin Wolf return bdrv_get_parent_name(bs) ?: ""; 3389ea2384d3Sbellard } 3390ea2384d3Sbellard 33919b2aa84fSAlberto Garcia /* This can be used to identify nodes that might not have a device 33929b2aa84fSAlberto Garcia * name associated. Since node and device names live in the same 33939b2aa84fSAlberto Garcia * namespace, the result is unambiguous. The exception is if both are 33949b2aa84fSAlberto Garcia * absent, then this returns an empty (non-null) string. */ 33959b2aa84fSAlberto Garcia const char *bdrv_get_device_or_node_name(const BlockDriverState *bs) 33969b2aa84fSAlberto Garcia { 33974c265bf9SKevin Wolf return bdrv_get_parent_name(bs) ?: bs->node_name; 33989b2aa84fSAlberto Garcia } 33999b2aa84fSAlberto Garcia 3400c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs) 3401c8433287SMarkus Armbruster { 3402c8433287SMarkus Armbruster return bs->open_flags; 3403c8433287SMarkus Armbruster } 3404c8433287SMarkus Armbruster 34053ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs) 34063ac21627SPeter Lieven { 34073ac21627SPeter Lieven return 1; 34083ac21627SPeter Lieven } 34093ac21627SPeter Lieven 3410f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs) 3411f2feebbdSKevin Wolf { 3412f2feebbdSKevin Wolf assert(bs->drv); 3413f2feebbdSKevin Wolf 341411212d8fSPaolo Bonzini /* If BS is a copy on write image, it is initialized to 341511212d8fSPaolo Bonzini the contents of the base image, which may not be zeroes. */ 3416760e0063SKevin Wolf if (bs->backing) { 341711212d8fSPaolo Bonzini return 0; 341811212d8fSPaolo Bonzini } 3419336c1c12SKevin Wolf if (bs->drv->bdrv_has_zero_init) { 3420336c1c12SKevin Wolf return bs->drv->bdrv_has_zero_init(bs); 3421f2feebbdSKevin Wolf } 3422f2feebbdSKevin Wolf 34233ac21627SPeter Lieven /* safe default */ 34243ac21627SPeter Lieven return 0; 3425f2feebbdSKevin Wolf } 3426f2feebbdSKevin Wolf 34274ce78691SPeter Lieven bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs) 34284ce78691SPeter Lieven { 34294ce78691SPeter Lieven BlockDriverInfo bdi; 34304ce78691SPeter Lieven 3431760e0063SKevin Wolf if (bs->backing) { 34324ce78691SPeter Lieven return false; 34334ce78691SPeter Lieven } 34344ce78691SPeter Lieven 34354ce78691SPeter Lieven if (bdrv_get_info(bs, &bdi) == 0) { 34364ce78691SPeter Lieven return bdi.unallocated_blocks_are_zero; 34374ce78691SPeter Lieven } 34384ce78691SPeter Lieven 34394ce78691SPeter Lieven return false; 34404ce78691SPeter Lieven } 34414ce78691SPeter Lieven 34424ce78691SPeter Lieven bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs) 34434ce78691SPeter Lieven { 34444ce78691SPeter Lieven BlockDriverInfo bdi; 34454ce78691SPeter Lieven 34462f0342efSDenis V. Lunev if (!(bs->open_flags & BDRV_O_UNMAP)) { 34474ce78691SPeter Lieven return false; 34484ce78691SPeter Lieven } 34494ce78691SPeter Lieven 34504ce78691SPeter Lieven if (bdrv_get_info(bs, &bdi) == 0) { 34514ce78691SPeter Lieven return bdi.can_write_zeroes_with_unmap; 34524ce78691SPeter Lieven } 34534ce78691SPeter Lieven 34544ce78691SPeter Lieven return false; 34554ce78691SPeter Lieven } 34564ce78691SPeter Lieven 3457045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs) 3458045df330Saliguori { 3459760e0063SKevin Wolf if (bs->backing && bs->backing->bs->encrypted) 3460045df330Saliguori return bs->backing_file; 3461045df330Saliguori else if (bs->encrypted) 3462045df330Saliguori return bs->filename; 3463045df330Saliguori else 3464045df330Saliguori return NULL; 3465045df330Saliguori } 3466045df330Saliguori 346783f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs, 346883f64091Sbellard char *filename, int filename_size) 346983f64091Sbellard { 347083f64091Sbellard pstrcpy(filename, filename_size, bs->backing_file); 347183f64091Sbellard } 347283f64091Sbellard 3473faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) 3474faea38e7Sbellard { 3475faea38e7Sbellard BlockDriver *drv = bs->drv; 3476faea38e7Sbellard if (!drv) 347719cb3738Sbellard return -ENOMEDIUM; 3478faea38e7Sbellard if (!drv->bdrv_get_info) 3479faea38e7Sbellard return -ENOTSUP; 3480faea38e7Sbellard memset(bdi, 0, sizeof(*bdi)); 3481faea38e7Sbellard return drv->bdrv_get_info(bs, bdi); 3482faea38e7Sbellard } 3483faea38e7Sbellard 3484eae041feSMax Reitz ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs) 3485eae041feSMax Reitz { 3486eae041feSMax Reitz BlockDriver *drv = bs->drv; 3487eae041feSMax Reitz if (drv && drv->bdrv_get_specific_info) { 3488eae041feSMax Reitz return drv->bdrv_get_specific_info(bs); 3489eae041feSMax Reitz } 3490eae041feSMax Reitz return NULL; 3491eae041feSMax Reitz } 3492eae041feSMax Reitz 3493a31939e6SEric Blake void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event) 34948b9b0cc2SKevin Wolf { 3495bf736fe3SKevin Wolf if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) { 34968b9b0cc2SKevin Wolf return; 34978b9b0cc2SKevin Wolf } 34988b9b0cc2SKevin Wolf 3499bf736fe3SKevin Wolf bs->drv->bdrv_debug_event(bs, event); 350041c695c7SKevin Wolf } 35018b9b0cc2SKevin Wolf 350241c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, 350341c695c7SKevin Wolf const char *tag) 350441c695c7SKevin Wolf { 350541c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { 35069a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 350741c695c7SKevin Wolf } 350841c695c7SKevin Wolf 350941c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { 351041c695c7SKevin Wolf return bs->drv->bdrv_debug_breakpoint(bs, event, tag); 351141c695c7SKevin Wolf } 351241c695c7SKevin Wolf 351341c695c7SKevin Wolf return -ENOTSUP; 351441c695c7SKevin Wolf } 351541c695c7SKevin Wolf 35164cc70e93SFam Zheng int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag) 35174cc70e93SFam Zheng { 35184cc70e93SFam Zheng while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) { 35199a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 35204cc70e93SFam Zheng } 35214cc70e93SFam Zheng 35224cc70e93SFam Zheng if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) { 35234cc70e93SFam Zheng return bs->drv->bdrv_debug_remove_breakpoint(bs, tag); 35244cc70e93SFam Zheng } 35254cc70e93SFam Zheng 35264cc70e93SFam Zheng return -ENOTSUP; 35274cc70e93SFam Zheng } 35284cc70e93SFam Zheng 352941c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag) 353041c695c7SKevin Wolf { 3531938789eaSMax Reitz while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) { 35329a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 353341c695c7SKevin Wolf } 353441c695c7SKevin Wolf 353541c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_resume) { 353641c695c7SKevin Wolf return bs->drv->bdrv_debug_resume(bs, tag); 353741c695c7SKevin Wolf } 353841c695c7SKevin Wolf 353941c695c7SKevin Wolf return -ENOTSUP; 354041c695c7SKevin Wolf } 354141c695c7SKevin Wolf 354241c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) 354341c695c7SKevin Wolf { 354441c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { 35459a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 354641c695c7SKevin Wolf } 354741c695c7SKevin Wolf 354841c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { 354941c695c7SKevin Wolf return bs->drv->bdrv_debug_is_suspended(bs, tag); 355041c695c7SKevin Wolf } 355141c695c7SKevin Wolf 355241c695c7SKevin Wolf return false; 35538b9b0cc2SKevin Wolf } 35548b9b0cc2SKevin Wolf 3555b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol. If it is 3556b1b1d783SJeff Cody * relative, it must be relative to the chain. So, passing in bs->filename 3557b1b1d783SJeff Cody * from a BDS as backing_file should not be done, as that may be relative to 3558b1b1d783SJeff Cody * the CWD rather than the chain. */ 3559e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, 3560e8a6bb9cSMarcelo Tosatti const char *backing_file) 3561e8a6bb9cSMarcelo Tosatti { 3562b1b1d783SJeff Cody char *filename_full = NULL; 3563b1b1d783SJeff Cody char *backing_file_full = NULL; 3564b1b1d783SJeff Cody char *filename_tmp = NULL; 3565b1b1d783SJeff Cody int is_protocol = 0; 3566b1b1d783SJeff Cody BlockDriverState *curr_bs = NULL; 3567b1b1d783SJeff Cody BlockDriverState *retval = NULL; 3568418661e0SJeff Cody Error *local_error = NULL; 3569b1b1d783SJeff Cody 3570b1b1d783SJeff Cody if (!bs || !bs->drv || !backing_file) { 3571e8a6bb9cSMarcelo Tosatti return NULL; 3572e8a6bb9cSMarcelo Tosatti } 3573e8a6bb9cSMarcelo Tosatti 3574b1b1d783SJeff Cody filename_full = g_malloc(PATH_MAX); 3575b1b1d783SJeff Cody backing_file_full = g_malloc(PATH_MAX); 3576b1b1d783SJeff Cody filename_tmp = g_malloc(PATH_MAX); 3577b1b1d783SJeff Cody 3578b1b1d783SJeff Cody is_protocol = path_has_protocol(backing_file); 3579b1b1d783SJeff Cody 3580760e0063SKevin Wolf for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) { 3581b1b1d783SJeff Cody 3582b1b1d783SJeff Cody /* If either of the filename paths is actually a protocol, then 3583b1b1d783SJeff Cody * compare unmodified paths; otherwise make paths relative */ 3584b1b1d783SJeff Cody if (is_protocol || path_has_protocol(curr_bs->backing_file)) { 3585b1b1d783SJeff Cody if (strcmp(backing_file, curr_bs->backing_file) == 0) { 3586760e0063SKevin Wolf retval = curr_bs->backing->bs; 3587b1b1d783SJeff Cody break; 3588b1b1d783SJeff Cody } 3589418661e0SJeff Cody /* Also check against the full backing filename for the image */ 3590418661e0SJeff Cody bdrv_get_full_backing_filename(curr_bs, backing_file_full, PATH_MAX, 3591418661e0SJeff Cody &local_error); 3592418661e0SJeff Cody if (local_error == NULL) { 3593418661e0SJeff Cody if (strcmp(backing_file, backing_file_full) == 0) { 3594418661e0SJeff Cody retval = curr_bs->backing->bs; 3595418661e0SJeff Cody break; 3596418661e0SJeff Cody } 3597418661e0SJeff Cody } else { 3598418661e0SJeff Cody error_free(local_error); 3599418661e0SJeff Cody local_error = NULL; 3600418661e0SJeff Cody } 3601e8a6bb9cSMarcelo Tosatti } else { 3602b1b1d783SJeff Cody /* If not an absolute filename path, make it relative to the current 3603b1b1d783SJeff Cody * image's filename path */ 3604b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 3605b1b1d783SJeff Cody backing_file); 3606b1b1d783SJeff Cody 3607b1b1d783SJeff Cody /* We are going to compare absolute pathnames */ 3608b1b1d783SJeff Cody if (!realpath(filename_tmp, filename_full)) { 3609b1b1d783SJeff Cody continue; 3610b1b1d783SJeff Cody } 3611b1b1d783SJeff Cody 3612b1b1d783SJeff Cody /* We need to make sure the backing filename we are comparing against 3613b1b1d783SJeff Cody * is relative to the current image filename (or absolute) */ 3614b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 3615b1b1d783SJeff Cody curr_bs->backing_file); 3616b1b1d783SJeff Cody 3617b1b1d783SJeff Cody if (!realpath(filename_tmp, backing_file_full)) { 3618b1b1d783SJeff Cody continue; 3619b1b1d783SJeff Cody } 3620b1b1d783SJeff Cody 3621b1b1d783SJeff Cody if (strcmp(backing_file_full, filename_full) == 0) { 3622760e0063SKevin Wolf retval = curr_bs->backing->bs; 3623b1b1d783SJeff Cody break; 3624b1b1d783SJeff Cody } 3625e8a6bb9cSMarcelo Tosatti } 3626e8a6bb9cSMarcelo Tosatti } 3627e8a6bb9cSMarcelo Tosatti 3628b1b1d783SJeff Cody g_free(filename_full); 3629b1b1d783SJeff Cody g_free(backing_file_full); 3630b1b1d783SJeff Cody g_free(filename_tmp); 3631b1b1d783SJeff Cody return retval; 3632e8a6bb9cSMarcelo Tosatti } 3633e8a6bb9cSMarcelo Tosatti 3634f198fd1cSBenoît Canet int bdrv_get_backing_file_depth(BlockDriverState *bs) 3635f198fd1cSBenoît Canet { 3636f198fd1cSBenoît Canet if (!bs->drv) { 3637f198fd1cSBenoît Canet return 0; 3638f198fd1cSBenoît Canet } 3639f198fd1cSBenoît Canet 3640760e0063SKevin Wolf if (!bs->backing) { 3641f198fd1cSBenoît Canet return 0; 3642f198fd1cSBenoît Canet } 3643f198fd1cSBenoît Canet 3644760e0063SKevin Wolf return 1 + bdrv_get_backing_file_depth(bs->backing->bs); 3645f198fd1cSBenoît Canet } 3646f198fd1cSBenoît Canet 3647ea2384d3Sbellard void bdrv_init(void) 3648ea2384d3Sbellard { 36495efa9d5aSAnthony Liguori module_call_init(MODULE_INIT_BLOCK); 3650ea2384d3Sbellard } 3651ce1a14dcSpbrook 3652eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void) 3653eb852011SMarkus Armbruster { 3654eb852011SMarkus Armbruster use_bdrv_whitelist = 1; 3655eb852011SMarkus Armbruster bdrv_init(); 3656eb852011SMarkus Armbruster } 3657eb852011SMarkus Armbruster 36585a8a30dbSKevin Wolf void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp) 36590f15423cSAnthony Liguori { 36600d1c5c91SFam Zheng BdrvChild *child; 36615a8a30dbSKevin Wolf Error *local_err = NULL; 36625a8a30dbSKevin Wolf int ret; 36635a8a30dbSKevin Wolf 36643456a8d1SKevin Wolf if (!bs->drv) { 36653456a8d1SKevin Wolf return; 36660f15423cSAnthony Liguori } 36673456a8d1SKevin Wolf 366804c01a5cSKevin Wolf if (!(bs->open_flags & BDRV_O_INACTIVE)) { 36697ea2d269SAlexey Kardashevskiy return; 36707ea2d269SAlexey Kardashevskiy } 36717ea2d269SAlexey Kardashevskiy 367216e977d5SVladimir Sementsov-Ogievskiy QLIST_FOREACH(child, &bs->children, next) { 367316e977d5SVladimir Sementsov-Ogievskiy bdrv_invalidate_cache(child->bs, &local_err); 36745a8a30dbSKevin Wolf if (local_err) { 36755a8a30dbSKevin Wolf error_propagate(errp, local_err); 36765a8a30dbSKevin Wolf return; 36773456a8d1SKevin Wolf } 36780d1c5c91SFam Zheng } 36790d1c5c91SFam Zheng 368016e977d5SVladimir Sementsov-Ogievskiy bs->open_flags &= ~BDRV_O_INACTIVE; 368116e977d5SVladimir Sementsov-Ogievskiy if (bs->drv->bdrv_invalidate_cache) { 368216e977d5SVladimir Sementsov-Ogievskiy bs->drv->bdrv_invalidate_cache(bs, &local_err); 36830d1c5c91SFam Zheng if (local_err) { 36840d1c5c91SFam Zheng bs->open_flags |= BDRV_O_INACTIVE; 36850d1c5c91SFam Zheng error_propagate(errp, local_err); 36860d1c5c91SFam Zheng return; 36870d1c5c91SFam Zheng } 36880d1c5c91SFam Zheng } 36893456a8d1SKevin Wolf 36905a8a30dbSKevin Wolf ret = refresh_total_sectors(bs, bs->total_sectors); 36915a8a30dbSKevin Wolf if (ret < 0) { 369204c01a5cSKevin Wolf bs->open_flags |= BDRV_O_INACTIVE; 36935a8a30dbSKevin Wolf error_setg_errno(errp, -ret, "Could not refresh total sector count"); 36945a8a30dbSKevin Wolf return; 36955a8a30dbSKevin Wolf } 36960f15423cSAnthony Liguori } 36970f15423cSAnthony Liguori 36985a8a30dbSKevin Wolf void bdrv_invalidate_cache_all(Error **errp) 36990f15423cSAnthony Liguori { 37007c8eece4SKevin Wolf BlockDriverState *bs; 37015a8a30dbSKevin Wolf Error *local_err = NULL; 370288be7b4bSKevin Wolf BdrvNextIterator it; 37030f15423cSAnthony Liguori 370488be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 3705ed78cda3SStefan Hajnoczi AioContext *aio_context = bdrv_get_aio_context(bs); 3706ed78cda3SStefan Hajnoczi 3707ed78cda3SStefan Hajnoczi aio_context_acquire(aio_context); 37085a8a30dbSKevin Wolf bdrv_invalidate_cache(bs, &local_err); 3709ed78cda3SStefan Hajnoczi aio_context_release(aio_context); 37105a8a30dbSKevin Wolf if (local_err) { 37115a8a30dbSKevin Wolf error_propagate(errp, local_err); 37125a8a30dbSKevin Wolf return; 37135a8a30dbSKevin Wolf } 37140f15423cSAnthony Liguori } 37150f15423cSAnthony Liguori } 37160f15423cSAnthony Liguori 3717aad0b7a0SFam Zheng static int bdrv_inactivate_recurse(BlockDriverState *bs, 3718aad0b7a0SFam Zheng bool setting_flag) 371976b1c7feSKevin Wolf { 3720aad0b7a0SFam Zheng BdrvChild *child; 372176b1c7feSKevin Wolf int ret; 372276b1c7feSKevin Wolf 3723aad0b7a0SFam Zheng if (!setting_flag && bs->drv->bdrv_inactivate) { 372476b1c7feSKevin Wolf ret = bs->drv->bdrv_inactivate(bs); 372576b1c7feSKevin Wolf if (ret < 0) { 372676b1c7feSKevin Wolf return ret; 372776b1c7feSKevin Wolf } 372876b1c7feSKevin Wolf } 372976b1c7feSKevin Wolf 3730aad0b7a0SFam Zheng QLIST_FOREACH(child, &bs->children, next) { 3731aad0b7a0SFam Zheng ret = bdrv_inactivate_recurse(child->bs, setting_flag); 3732aad0b7a0SFam Zheng if (ret < 0) { 3733aad0b7a0SFam Zheng return ret; 3734aad0b7a0SFam Zheng } 3735aad0b7a0SFam Zheng } 3736aad0b7a0SFam Zheng 3737aad0b7a0SFam Zheng if (setting_flag) { 373876b1c7feSKevin Wolf bs->open_flags |= BDRV_O_INACTIVE; 3739aad0b7a0SFam Zheng } 374076b1c7feSKevin Wolf return 0; 374176b1c7feSKevin Wolf } 374276b1c7feSKevin Wolf 374376b1c7feSKevin Wolf int bdrv_inactivate_all(void) 374476b1c7feSKevin Wolf { 374579720af6SMax Reitz BlockDriverState *bs = NULL; 374688be7b4bSKevin Wolf BdrvNextIterator it; 3747aad0b7a0SFam Zheng int ret = 0; 3748aad0b7a0SFam Zheng int pass; 374976b1c7feSKevin Wolf 375088be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 3751aad0b7a0SFam Zheng aio_context_acquire(bdrv_get_aio_context(bs)); 3752aad0b7a0SFam Zheng } 375376b1c7feSKevin Wolf 3754aad0b7a0SFam Zheng /* We do two passes of inactivation. The first pass calls to drivers' 3755aad0b7a0SFam Zheng * .bdrv_inactivate callbacks recursively so all cache is flushed to disk; 3756aad0b7a0SFam Zheng * the second pass sets the BDRV_O_INACTIVE flag so that no further write 3757aad0b7a0SFam Zheng * is allowed. */ 3758aad0b7a0SFam Zheng for (pass = 0; pass < 2; pass++) { 375988be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 3760aad0b7a0SFam Zheng ret = bdrv_inactivate_recurse(bs, pass); 376176b1c7feSKevin Wolf if (ret < 0) { 3762aad0b7a0SFam Zheng goto out; 3763aad0b7a0SFam Zheng } 376476b1c7feSKevin Wolf } 376576b1c7feSKevin Wolf } 376676b1c7feSKevin Wolf 3767aad0b7a0SFam Zheng out: 376888be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 3769aad0b7a0SFam Zheng aio_context_release(bdrv_get_aio_context(bs)); 3770aad0b7a0SFam Zheng } 3771aad0b7a0SFam Zheng 3772aad0b7a0SFam Zheng return ret; 377376b1c7feSKevin Wolf } 377476b1c7feSKevin Wolf 3775f9f05dc5SKevin Wolf /**************************************************************/ 377619cb3738Sbellard /* removable device support */ 377719cb3738Sbellard 377819cb3738Sbellard /** 377919cb3738Sbellard * Return TRUE if the media is present 378019cb3738Sbellard */ 3781e031f750SMax Reitz bool bdrv_is_inserted(BlockDriverState *bs) 378219cb3738Sbellard { 378319cb3738Sbellard BlockDriver *drv = bs->drv; 378428d7a789SMax Reitz BdrvChild *child; 3785a1aff5bfSMarkus Armbruster 3786e031f750SMax Reitz if (!drv) { 3787e031f750SMax Reitz return false; 3788e031f750SMax Reitz } 378928d7a789SMax Reitz if (drv->bdrv_is_inserted) { 3790a1aff5bfSMarkus Armbruster return drv->bdrv_is_inserted(bs); 379119cb3738Sbellard } 379228d7a789SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 379328d7a789SMax Reitz if (!bdrv_is_inserted(child->bs)) { 379428d7a789SMax Reitz return false; 379528d7a789SMax Reitz } 379628d7a789SMax Reitz } 379728d7a789SMax Reitz return true; 379828d7a789SMax Reitz } 379919cb3738Sbellard 380019cb3738Sbellard /** 38018e49ca46SMarkus Armbruster * Return whether the media changed since the last call to this 38028e49ca46SMarkus Armbruster * function, or -ENOTSUP if we don't know. Most drivers don't know. 380319cb3738Sbellard */ 380419cb3738Sbellard int bdrv_media_changed(BlockDriverState *bs) 380519cb3738Sbellard { 380619cb3738Sbellard BlockDriver *drv = bs->drv; 380719cb3738Sbellard 38088e49ca46SMarkus Armbruster if (drv && drv->bdrv_media_changed) { 38098e49ca46SMarkus Armbruster return drv->bdrv_media_changed(bs); 38108e49ca46SMarkus Armbruster } 38118e49ca46SMarkus Armbruster return -ENOTSUP; 381219cb3738Sbellard } 381319cb3738Sbellard 381419cb3738Sbellard /** 381519cb3738Sbellard * If eject_flag is TRUE, eject the media. Otherwise, close the tray 381619cb3738Sbellard */ 3817f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag) 381819cb3738Sbellard { 381919cb3738Sbellard BlockDriver *drv = bs->drv; 382019cb3738Sbellard 3821822e1cd1SMarkus Armbruster if (drv && drv->bdrv_eject) { 3822822e1cd1SMarkus Armbruster drv->bdrv_eject(bs, eject_flag); 382319cb3738Sbellard } 382419cb3738Sbellard } 382519cb3738Sbellard 382619cb3738Sbellard /** 382719cb3738Sbellard * Lock or unlock the media (if it is locked, the user won't be able 382819cb3738Sbellard * to eject it manually). 382919cb3738Sbellard */ 3830025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked) 383119cb3738Sbellard { 383219cb3738Sbellard BlockDriver *drv = bs->drv; 383319cb3738Sbellard 3834025e849aSMarkus Armbruster trace_bdrv_lock_medium(bs, locked); 3835b8c6d095SStefan Hajnoczi 3836025e849aSMarkus Armbruster if (drv && drv->bdrv_lock_medium) { 3837025e849aSMarkus Armbruster drv->bdrv_lock_medium(bs, locked); 383819cb3738Sbellard } 383919cb3738Sbellard } 3840985a03b0Sths 38419fcb0251SFam Zheng /* Get a reference to bs */ 38429fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs) 38439fcb0251SFam Zheng { 38449fcb0251SFam Zheng bs->refcnt++; 38459fcb0251SFam Zheng } 38469fcb0251SFam Zheng 38479fcb0251SFam Zheng /* Release a previously grabbed reference to bs. 38489fcb0251SFam Zheng * If after releasing, reference count is zero, the BlockDriverState is 38499fcb0251SFam Zheng * deleted. */ 38509fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs) 38519fcb0251SFam Zheng { 38529a4d5ca6SJeff Cody if (!bs) { 38539a4d5ca6SJeff Cody return; 38549a4d5ca6SJeff Cody } 38559fcb0251SFam Zheng assert(bs->refcnt > 0); 38569fcb0251SFam Zheng if (--bs->refcnt == 0) { 38579fcb0251SFam Zheng bdrv_delete(bs); 38589fcb0251SFam Zheng } 38599fcb0251SFam Zheng } 38609fcb0251SFam Zheng 3861fbe40ff7SFam Zheng struct BdrvOpBlocker { 3862fbe40ff7SFam Zheng Error *reason; 3863fbe40ff7SFam Zheng QLIST_ENTRY(BdrvOpBlocker) list; 3864fbe40ff7SFam Zheng }; 3865fbe40ff7SFam Zheng 3866fbe40ff7SFam Zheng bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp) 3867fbe40ff7SFam Zheng { 3868fbe40ff7SFam Zheng BdrvOpBlocker *blocker; 3869fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 3870fbe40ff7SFam Zheng if (!QLIST_EMPTY(&bs->op_blockers[op])) { 3871fbe40ff7SFam Zheng blocker = QLIST_FIRST(&bs->op_blockers[op]); 3872fbe40ff7SFam Zheng if (errp) { 3873e43bfd9cSMarkus Armbruster *errp = error_copy(blocker->reason); 3874e43bfd9cSMarkus Armbruster error_prepend(errp, "Node '%s' is busy: ", 3875e43bfd9cSMarkus Armbruster bdrv_get_device_or_node_name(bs)); 3876fbe40ff7SFam Zheng } 3877fbe40ff7SFam Zheng return true; 3878fbe40ff7SFam Zheng } 3879fbe40ff7SFam Zheng return false; 3880fbe40ff7SFam Zheng } 3881fbe40ff7SFam Zheng 3882fbe40ff7SFam Zheng void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason) 3883fbe40ff7SFam Zheng { 3884fbe40ff7SFam Zheng BdrvOpBlocker *blocker; 3885fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 3886fbe40ff7SFam Zheng 38875839e53bSMarkus Armbruster blocker = g_new0(BdrvOpBlocker, 1); 3888fbe40ff7SFam Zheng blocker->reason = reason; 3889fbe40ff7SFam Zheng QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list); 3890fbe40ff7SFam Zheng } 3891fbe40ff7SFam Zheng 3892fbe40ff7SFam Zheng void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason) 3893fbe40ff7SFam Zheng { 3894fbe40ff7SFam Zheng BdrvOpBlocker *blocker, *next; 3895fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 3896fbe40ff7SFam Zheng QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) { 3897fbe40ff7SFam Zheng if (blocker->reason == reason) { 3898fbe40ff7SFam Zheng QLIST_REMOVE(blocker, list); 3899fbe40ff7SFam Zheng g_free(blocker); 3900fbe40ff7SFam Zheng } 3901fbe40ff7SFam Zheng } 3902fbe40ff7SFam Zheng } 3903fbe40ff7SFam Zheng 3904fbe40ff7SFam Zheng void bdrv_op_block_all(BlockDriverState *bs, Error *reason) 3905fbe40ff7SFam Zheng { 3906fbe40ff7SFam Zheng int i; 3907fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 3908fbe40ff7SFam Zheng bdrv_op_block(bs, i, reason); 3909fbe40ff7SFam Zheng } 3910fbe40ff7SFam Zheng } 3911fbe40ff7SFam Zheng 3912fbe40ff7SFam Zheng void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason) 3913fbe40ff7SFam Zheng { 3914fbe40ff7SFam Zheng int i; 3915fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 3916fbe40ff7SFam Zheng bdrv_op_unblock(bs, i, reason); 3917fbe40ff7SFam Zheng } 3918fbe40ff7SFam Zheng } 3919fbe40ff7SFam Zheng 3920fbe40ff7SFam Zheng bool bdrv_op_blocker_is_empty(BlockDriverState *bs) 3921fbe40ff7SFam Zheng { 3922fbe40ff7SFam Zheng int i; 3923fbe40ff7SFam Zheng 3924fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 3925fbe40ff7SFam Zheng if (!QLIST_EMPTY(&bs->op_blockers[i])) { 3926fbe40ff7SFam Zheng return false; 3927fbe40ff7SFam Zheng } 3928fbe40ff7SFam Zheng } 3929fbe40ff7SFam Zheng return true; 3930fbe40ff7SFam Zheng } 3931fbe40ff7SFam Zheng 3932d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt, 3933f88e1a42SJes Sorensen const char *base_filename, const char *base_fmt, 3934f382d43aSMiroslav Rezanina char *options, uint64_t img_size, int flags, 3935f382d43aSMiroslav Rezanina Error **errp, bool quiet) 3936f88e1a42SJes Sorensen { 393783d0521aSChunyan Liu QemuOptsList *create_opts = NULL; 393883d0521aSChunyan Liu QemuOpts *opts = NULL; 393983d0521aSChunyan Liu const char *backing_fmt, *backing_file; 394083d0521aSChunyan Liu int64_t size; 3941f88e1a42SJes Sorensen BlockDriver *drv, *proto_drv; 3942cc84d90fSMax Reitz Error *local_err = NULL; 3943f88e1a42SJes Sorensen int ret = 0; 3944f88e1a42SJes Sorensen 3945f88e1a42SJes Sorensen /* Find driver and parse its options */ 3946f88e1a42SJes Sorensen drv = bdrv_find_format(fmt); 3947f88e1a42SJes Sorensen if (!drv) { 394871c79813SLuiz Capitulino error_setg(errp, "Unknown file format '%s'", fmt); 3949d92ada22SLuiz Capitulino return; 3950f88e1a42SJes Sorensen } 3951f88e1a42SJes Sorensen 3952b65a5e12SMax Reitz proto_drv = bdrv_find_protocol(filename, true, errp); 3953f88e1a42SJes Sorensen if (!proto_drv) { 3954d92ada22SLuiz Capitulino return; 3955f88e1a42SJes Sorensen } 3956f88e1a42SJes Sorensen 3957c6149724SMax Reitz if (!drv->create_opts) { 3958c6149724SMax Reitz error_setg(errp, "Format driver '%s' does not support image creation", 3959c6149724SMax Reitz drv->format_name); 3960c6149724SMax Reitz return; 3961c6149724SMax Reitz } 3962c6149724SMax Reitz 3963c6149724SMax Reitz if (!proto_drv->create_opts) { 3964c6149724SMax Reitz error_setg(errp, "Protocol driver '%s' does not support image creation", 3965c6149724SMax Reitz proto_drv->format_name); 3966c6149724SMax Reitz return; 3967c6149724SMax Reitz } 3968c6149724SMax Reitz 3969c282e1fdSChunyan Liu create_opts = qemu_opts_append(create_opts, drv->create_opts); 3970c282e1fdSChunyan Liu create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); 3971f88e1a42SJes Sorensen 3972f88e1a42SJes Sorensen /* Create parameter list with default values */ 397383d0521aSChunyan Liu opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); 397439101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort); 3975f88e1a42SJes Sorensen 3976f88e1a42SJes Sorensen /* Parse -o options */ 3977f88e1a42SJes Sorensen if (options) { 3978dc523cd3SMarkus Armbruster qemu_opts_do_parse(opts, options, NULL, &local_err); 3979dc523cd3SMarkus Armbruster if (local_err) { 3980dc523cd3SMarkus Armbruster error_report_err(local_err); 3981dc523cd3SMarkus Armbruster local_err = NULL; 398283d0521aSChunyan Liu error_setg(errp, "Invalid options for file format '%s'", fmt); 3983f88e1a42SJes Sorensen goto out; 3984f88e1a42SJes Sorensen } 3985f88e1a42SJes Sorensen } 3986f88e1a42SJes Sorensen 3987f88e1a42SJes Sorensen if (base_filename) { 3988f43e47dbSMarkus Armbruster qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err); 39896be4194bSMarkus Armbruster if (local_err) { 399071c79813SLuiz Capitulino error_setg(errp, "Backing file not supported for file format '%s'", 399171c79813SLuiz Capitulino fmt); 3992f88e1a42SJes Sorensen goto out; 3993f88e1a42SJes Sorensen } 3994f88e1a42SJes Sorensen } 3995f88e1a42SJes Sorensen 3996f88e1a42SJes Sorensen if (base_fmt) { 3997f43e47dbSMarkus Armbruster qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err); 39986be4194bSMarkus Armbruster if (local_err) { 399971c79813SLuiz Capitulino error_setg(errp, "Backing file format not supported for file " 400071c79813SLuiz Capitulino "format '%s'", fmt); 4001f88e1a42SJes Sorensen goto out; 4002f88e1a42SJes Sorensen } 4003f88e1a42SJes Sorensen } 4004f88e1a42SJes Sorensen 400583d0521aSChunyan Liu backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); 400683d0521aSChunyan Liu if (backing_file) { 400783d0521aSChunyan Liu if (!strcmp(filename, backing_file)) { 400871c79813SLuiz Capitulino error_setg(errp, "Error: Trying to create an image with the " 400971c79813SLuiz Capitulino "same filename as the backing file"); 4010792da93aSJes Sorensen goto out; 4011792da93aSJes Sorensen } 4012792da93aSJes Sorensen } 4013792da93aSJes Sorensen 401483d0521aSChunyan Liu backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT); 4015f88e1a42SJes Sorensen 4016f88e1a42SJes Sorensen // The size for the image must always be specified, with one exception: 4017f88e1a42SJes Sorensen // If we are using a backing file, we can obtain the size from there 401883d0521aSChunyan Liu size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0); 401983d0521aSChunyan Liu if (size == -1) { 402083d0521aSChunyan Liu if (backing_file) { 402166f6b814SMax Reitz BlockDriverState *bs; 402229168018SMax Reitz char *full_backing = g_new0(char, PATH_MAX); 402352bf1e72SMarkus Armbruster int64_t size; 402463090dacSPaolo Bonzini int back_flags; 4025e6641719SMax Reitz QDict *backing_options = NULL; 402663090dacSPaolo Bonzini 402729168018SMax Reitz bdrv_get_full_backing_filename_from_filename(filename, backing_file, 402829168018SMax Reitz full_backing, PATH_MAX, 402929168018SMax Reitz &local_err); 403029168018SMax Reitz if (local_err) { 403129168018SMax Reitz g_free(full_backing); 403229168018SMax Reitz goto out; 403329168018SMax Reitz } 403429168018SMax Reitz 403563090dacSPaolo Bonzini /* backing files always opened read-only */ 403661de4c68SKevin Wolf back_flags = flags; 4037bfd18d1eSKevin Wolf back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); 4038f88e1a42SJes Sorensen 4039e6641719SMax Reitz if (backing_fmt) { 4040e6641719SMax Reitz backing_options = qdict_new(); 4041e6641719SMax Reitz qdict_put(backing_options, "driver", 4042e6641719SMax Reitz qstring_from_str(backing_fmt)); 4043e6641719SMax Reitz } 4044e6641719SMax Reitz 40455b363937SMax Reitz bs = bdrv_open(full_backing, NULL, backing_options, back_flags, 40465b363937SMax Reitz &local_err); 404729168018SMax Reitz g_free(full_backing); 40485b363937SMax Reitz if (!bs) { 4049f88e1a42SJes Sorensen goto out; 4050f88e1a42SJes Sorensen } 405152bf1e72SMarkus Armbruster size = bdrv_getlength(bs); 405252bf1e72SMarkus Armbruster if (size < 0) { 405352bf1e72SMarkus Armbruster error_setg_errno(errp, -size, "Could not get size of '%s'", 405452bf1e72SMarkus Armbruster backing_file); 405552bf1e72SMarkus Armbruster bdrv_unref(bs); 405652bf1e72SMarkus Armbruster goto out; 405752bf1e72SMarkus Armbruster } 4058f88e1a42SJes Sorensen 405939101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort); 406066f6b814SMax Reitz 406166f6b814SMax Reitz bdrv_unref(bs); 4062f88e1a42SJes Sorensen } else { 406371c79813SLuiz Capitulino error_setg(errp, "Image creation needs a size parameter"); 4064f88e1a42SJes Sorensen goto out; 4065f88e1a42SJes Sorensen } 4066f88e1a42SJes Sorensen } 4067f88e1a42SJes Sorensen 4068f382d43aSMiroslav Rezanina if (!quiet) { 4069f88e1a42SJes Sorensen printf("Formatting '%s', fmt=%s ", filename, fmt); 407043c5d8f8SFam Zheng qemu_opts_print(opts, " "); 4071f88e1a42SJes Sorensen puts(""); 4072f382d43aSMiroslav Rezanina } 407383d0521aSChunyan Liu 4074c282e1fdSChunyan Liu ret = bdrv_create(drv, filename, opts, &local_err); 407583d0521aSChunyan Liu 4076cc84d90fSMax Reitz if (ret == -EFBIG) { 4077cc84d90fSMax Reitz /* This is generally a better message than whatever the driver would 4078cc84d90fSMax Reitz * deliver (especially because of the cluster_size_hint), since that 4079cc84d90fSMax Reitz * is most probably not much different from "image too large". */ 4080f3f4d2c0SKevin Wolf const char *cluster_size_hint = ""; 408183d0521aSChunyan Liu if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) { 4082f3f4d2c0SKevin Wolf cluster_size_hint = " (try using a larger cluster size)"; 4083f3f4d2c0SKevin Wolf } 4084cc84d90fSMax Reitz error_setg(errp, "The image size is too large for file format '%s'" 4085cc84d90fSMax Reitz "%s", fmt, cluster_size_hint); 4086cc84d90fSMax Reitz error_free(local_err); 4087cc84d90fSMax Reitz local_err = NULL; 4088f88e1a42SJes Sorensen } 4089f88e1a42SJes Sorensen 4090f88e1a42SJes Sorensen out: 409183d0521aSChunyan Liu qemu_opts_del(opts); 409283d0521aSChunyan Liu qemu_opts_free(create_opts); 4093cc84d90fSMax Reitz error_propagate(errp, local_err); 4094cc84d90fSMax Reitz } 409585d126f3SStefan Hajnoczi 409685d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs) 409785d126f3SStefan Hajnoczi { 4098dcd04228SStefan Hajnoczi return bs->aio_context; 4099dcd04228SStefan Hajnoczi } 4100dcd04228SStefan Hajnoczi 4101e8a095daSStefan Hajnoczi static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban) 4102e8a095daSStefan Hajnoczi { 4103e8a095daSStefan Hajnoczi QLIST_REMOVE(ban, list); 4104e8a095daSStefan Hajnoczi g_free(ban); 4105e8a095daSStefan Hajnoczi } 4106e8a095daSStefan Hajnoczi 4107dcd04228SStefan Hajnoczi void bdrv_detach_aio_context(BlockDriverState *bs) 4108dcd04228SStefan Hajnoczi { 4109e8a095daSStefan Hajnoczi BdrvAioNotifier *baf, *baf_tmp; 4110b97511c7SMax Reitz BdrvChild *child; 411133384421SMax Reitz 4112dcd04228SStefan Hajnoczi if (!bs->drv) { 4113dcd04228SStefan Hajnoczi return; 4114dcd04228SStefan Hajnoczi } 4115dcd04228SStefan Hajnoczi 4116e8a095daSStefan Hajnoczi assert(!bs->walking_aio_notifiers); 4117e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = true; 4118e8a095daSStefan Hajnoczi QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) { 4119e8a095daSStefan Hajnoczi if (baf->deleted) { 4120e8a095daSStefan Hajnoczi bdrv_do_remove_aio_context_notifier(baf); 4121e8a095daSStefan Hajnoczi } else { 412233384421SMax Reitz baf->detach_aio_context(baf->opaque); 412333384421SMax Reitz } 4124e8a095daSStefan Hajnoczi } 4125e8a095daSStefan Hajnoczi /* Never mind iterating again to check for ->deleted. bdrv_close() will 4126e8a095daSStefan Hajnoczi * remove remaining aio notifiers if we aren't called again. 4127e8a095daSStefan Hajnoczi */ 4128e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = false; 412933384421SMax Reitz 4130dcd04228SStefan Hajnoczi if (bs->drv->bdrv_detach_aio_context) { 4131dcd04228SStefan Hajnoczi bs->drv->bdrv_detach_aio_context(bs); 4132dcd04228SStefan Hajnoczi } 4133b97511c7SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 4134b97511c7SMax Reitz bdrv_detach_aio_context(child->bs); 4135dcd04228SStefan Hajnoczi } 4136dcd04228SStefan Hajnoczi 4137dcd04228SStefan Hajnoczi bs->aio_context = NULL; 4138dcd04228SStefan Hajnoczi } 4139dcd04228SStefan Hajnoczi 4140dcd04228SStefan Hajnoczi void bdrv_attach_aio_context(BlockDriverState *bs, 4141dcd04228SStefan Hajnoczi AioContext *new_context) 4142dcd04228SStefan Hajnoczi { 4143e8a095daSStefan Hajnoczi BdrvAioNotifier *ban, *ban_tmp; 4144b97511c7SMax Reitz BdrvChild *child; 414533384421SMax Reitz 4146dcd04228SStefan Hajnoczi if (!bs->drv) { 4147dcd04228SStefan Hajnoczi return; 4148dcd04228SStefan Hajnoczi } 4149dcd04228SStefan Hajnoczi 4150dcd04228SStefan Hajnoczi bs->aio_context = new_context; 4151dcd04228SStefan Hajnoczi 4152b97511c7SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 4153b97511c7SMax Reitz bdrv_attach_aio_context(child->bs, new_context); 4154dcd04228SStefan Hajnoczi } 4155dcd04228SStefan Hajnoczi if (bs->drv->bdrv_attach_aio_context) { 4156dcd04228SStefan Hajnoczi bs->drv->bdrv_attach_aio_context(bs, new_context); 4157dcd04228SStefan Hajnoczi } 415833384421SMax Reitz 4159e8a095daSStefan Hajnoczi assert(!bs->walking_aio_notifiers); 4160e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = true; 4161e8a095daSStefan Hajnoczi QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) { 4162e8a095daSStefan Hajnoczi if (ban->deleted) { 4163e8a095daSStefan Hajnoczi bdrv_do_remove_aio_context_notifier(ban); 4164e8a095daSStefan Hajnoczi } else { 416533384421SMax Reitz ban->attached_aio_context(new_context, ban->opaque); 416633384421SMax Reitz } 4167dcd04228SStefan Hajnoczi } 4168e8a095daSStefan Hajnoczi bs->walking_aio_notifiers = false; 4169e8a095daSStefan Hajnoczi } 4170dcd04228SStefan Hajnoczi 4171dcd04228SStefan Hajnoczi void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context) 4172dcd04228SStefan Hajnoczi { 417353ec73e2SFam Zheng bdrv_drain(bs); /* ensure there are no in-flight requests */ 4174dcd04228SStefan Hajnoczi 4175dcd04228SStefan Hajnoczi bdrv_detach_aio_context(bs); 4176dcd04228SStefan Hajnoczi 4177dcd04228SStefan Hajnoczi /* This function executes in the old AioContext so acquire the new one in 4178dcd04228SStefan Hajnoczi * case it runs in a different thread. 4179dcd04228SStefan Hajnoczi */ 4180dcd04228SStefan Hajnoczi aio_context_acquire(new_context); 4181dcd04228SStefan Hajnoczi bdrv_attach_aio_context(bs, new_context); 4182dcd04228SStefan Hajnoczi aio_context_release(new_context); 418385d126f3SStefan Hajnoczi } 4184d616b224SStefan Hajnoczi 418533384421SMax Reitz void bdrv_add_aio_context_notifier(BlockDriverState *bs, 418633384421SMax Reitz void (*attached_aio_context)(AioContext *new_context, void *opaque), 418733384421SMax Reitz void (*detach_aio_context)(void *opaque), void *opaque) 418833384421SMax Reitz { 418933384421SMax Reitz BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1); 419033384421SMax Reitz *ban = (BdrvAioNotifier){ 419133384421SMax Reitz .attached_aio_context = attached_aio_context, 419233384421SMax Reitz .detach_aio_context = detach_aio_context, 419333384421SMax Reitz .opaque = opaque 419433384421SMax Reitz }; 419533384421SMax Reitz 419633384421SMax Reitz QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list); 419733384421SMax Reitz } 419833384421SMax Reitz 419933384421SMax Reitz void bdrv_remove_aio_context_notifier(BlockDriverState *bs, 420033384421SMax Reitz void (*attached_aio_context)(AioContext *, 420133384421SMax Reitz void *), 420233384421SMax Reitz void (*detach_aio_context)(void *), 420333384421SMax Reitz void *opaque) 420433384421SMax Reitz { 420533384421SMax Reitz BdrvAioNotifier *ban, *ban_next; 420633384421SMax Reitz 420733384421SMax Reitz QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 420833384421SMax Reitz if (ban->attached_aio_context == attached_aio_context && 420933384421SMax Reitz ban->detach_aio_context == detach_aio_context && 4210e8a095daSStefan Hajnoczi ban->opaque == opaque && 4211e8a095daSStefan Hajnoczi ban->deleted == false) 421233384421SMax Reitz { 4213e8a095daSStefan Hajnoczi if (bs->walking_aio_notifiers) { 4214e8a095daSStefan Hajnoczi ban->deleted = true; 4215e8a095daSStefan Hajnoczi } else { 4216e8a095daSStefan Hajnoczi bdrv_do_remove_aio_context_notifier(ban); 4217e8a095daSStefan Hajnoczi } 421833384421SMax Reitz return; 421933384421SMax Reitz } 422033384421SMax Reitz } 422133384421SMax Reitz 422233384421SMax Reitz abort(); 422333384421SMax Reitz } 422433384421SMax Reitz 422577485434SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts, 42268b13976dSMax Reitz BlockDriverAmendStatusCB *status_cb, void *cb_opaque) 42276f176b48SMax Reitz { 4228c282e1fdSChunyan Liu if (!bs->drv->bdrv_amend_options) { 42296f176b48SMax Reitz return -ENOTSUP; 42306f176b48SMax Reitz } 42318b13976dSMax Reitz return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque); 42326f176b48SMax Reitz } 4233f6186f49SBenoît Canet 4234b5042a36SBenoît Canet /* This function will be called by the bdrv_recurse_is_first_non_filter method 4235b5042a36SBenoît Canet * of block filter and by bdrv_is_first_non_filter. 4236b5042a36SBenoît Canet * It is used to test if the given bs is the candidate or recurse more in the 4237b5042a36SBenoît Canet * node graph. 4238212a5a8fSBenoît Canet */ 4239212a5a8fSBenoît Canet bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs, 4240212a5a8fSBenoît Canet BlockDriverState *candidate) 4241f6186f49SBenoît Canet { 4242b5042a36SBenoît Canet /* return false if basic checks fails */ 4243b5042a36SBenoît Canet if (!bs || !bs->drv) { 4244b5042a36SBenoît Canet return false; 4245b5042a36SBenoît Canet } 4246b5042a36SBenoît Canet 4247b5042a36SBenoît Canet /* the code reached a non block filter driver -> check if the bs is 4248b5042a36SBenoît Canet * the same as the candidate. It's the recursion termination condition. 4249b5042a36SBenoît Canet */ 4250b5042a36SBenoît Canet if (!bs->drv->is_filter) { 4251b5042a36SBenoît Canet return bs == candidate; 4252b5042a36SBenoît Canet } 4253b5042a36SBenoît Canet /* Down this path the driver is a block filter driver */ 4254b5042a36SBenoît Canet 4255b5042a36SBenoît Canet /* If the block filter recursion method is defined use it to recurse down 4256b5042a36SBenoît Canet * the node graph. 4257b5042a36SBenoît Canet */ 4258b5042a36SBenoît Canet if (bs->drv->bdrv_recurse_is_first_non_filter) { 4259212a5a8fSBenoît Canet return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate); 4260212a5a8fSBenoît Canet } 4261212a5a8fSBenoît Canet 4262b5042a36SBenoît Canet /* the driver is a block filter but don't allow to recurse -> return false 4263b5042a36SBenoît Canet */ 4264b5042a36SBenoît Canet return false; 4265212a5a8fSBenoît Canet } 4266212a5a8fSBenoît Canet 4267212a5a8fSBenoît Canet /* This function checks if the candidate is the first non filter bs down it's 4268212a5a8fSBenoît Canet * bs chain. Since we don't have pointers to parents it explore all bs chains 4269212a5a8fSBenoît Canet * from the top. Some filters can choose not to pass down the recursion. 4270212a5a8fSBenoît Canet */ 4271212a5a8fSBenoît Canet bool bdrv_is_first_non_filter(BlockDriverState *candidate) 4272212a5a8fSBenoît Canet { 42737c8eece4SKevin Wolf BlockDriverState *bs; 427488be7b4bSKevin Wolf BdrvNextIterator it; 4275212a5a8fSBenoît Canet 4276212a5a8fSBenoît Canet /* walk down the bs forest recursively */ 427788be7b4bSKevin Wolf for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) { 4278212a5a8fSBenoît Canet bool perm; 4279212a5a8fSBenoît Canet 4280b5042a36SBenoît Canet /* try to recurse in this top level bs */ 4281e6dc8a1fSKevin Wolf perm = bdrv_recurse_is_first_non_filter(bs, candidate); 4282212a5a8fSBenoît Canet 4283212a5a8fSBenoît Canet /* candidate is the first non filter */ 4284212a5a8fSBenoît Canet if (perm) { 4285212a5a8fSBenoît Canet return true; 4286212a5a8fSBenoît Canet } 4287212a5a8fSBenoît Canet } 4288212a5a8fSBenoît Canet 4289212a5a8fSBenoît Canet return false; 4290f6186f49SBenoît Canet } 429109158f00SBenoît Canet 4292e12f3784SWen Congyang BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs, 4293e12f3784SWen Congyang const char *node_name, Error **errp) 429409158f00SBenoît Canet { 429509158f00SBenoît Canet BlockDriverState *to_replace_bs = bdrv_find_node(node_name); 42965a7e7a0bSStefan Hajnoczi AioContext *aio_context; 42975a7e7a0bSStefan Hajnoczi 429809158f00SBenoît Canet if (!to_replace_bs) { 429909158f00SBenoît Canet error_setg(errp, "Node name '%s' not found", node_name); 430009158f00SBenoît Canet return NULL; 430109158f00SBenoît Canet } 430209158f00SBenoît Canet 43035a7e7a0bSStefan Hajnoczi aio_context = bdrv_get_aio_context(to_replace_bs); 43045a7e7a0bSStefan Hajnoczi aio_context_acquire(aio_context); 43055a7e7a0bSStefan Hajnoczi 430609158f00SBenoît Canet if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) { 43075a7e7a0bSStefan Hajnoczi to_replace_bs = NULL; 43085a7e7a0bSStefan Hajnoczi goto out; 430909158f00SBenoît Canet } 431009158f00SBenoît Canet 431109158f00SBenoît Canet /* We don't want arbitrary node of the BDS chain to be replaced only the top 431209158f00SBenoît Canet * most non filter in order to prevent data corruption. 431309158f00SBenoît Canet * Another benefit is that this tests exclude backing files which are 431409158f00SBenoît Canet * blocked by the backing blockers. 431509158f00SBenoît Canet */ 4316e12f3784SWen Congyang if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) { 431709158f00SBenoît Canet error_setg(errp, "Only top most non filter can be replaced"); 43185a7e7a0bSStefan Hajnoczi to_replace_bs = NULL; 43195a7e7a0bSStefan Hajnoczi goto out; 432009158f00SBenoît Canet } 432109158f00SBenoît Canet 43225a7e7a0bSStefan Hajnoczi out: 43235a7e7a0bSStefan Hajnoczi aio_context_release(aio_context); 432409158f00SBenoît Canet return to_replace_bs; 432509158f00SBenoît Canet } 4326448ad91dSMing Lei 432791af7014SMax Reitz static bool append_open_options(QDict *d, BlockDriverState *bs) 432891af7014SMax Reitz { 432991af7014SMax Reitz const QDictEntry *entry; 43309e700c1aSKevin Wolf QemuOptDesc *desc; 4331260fecf1SKevin Wolf BdrvChild *child; 433291af7014SMax Reitz bool found_any = false; 4333260fecf1SKevin Wolf const char *p; 433491af7014SMax Reitz 433591af7014SMax Reitz for (entry = qdict_first(bs->options); entry; 433691af7014SMax Reitz entry = qdict_next(bs->options, entry)) 433791af7014SMax Reitz { 4338260fecf1SKevin Wolf /* Exclude options for children */ 4339260fecf1SKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 4340260fecf1SKevin Wolf if (strstart(qdict_entry_key(entry), child->name, &p) 4341260fecf1SKevin Wolf && (!*p || *p == '.')) 4342260fecf1SKevin Wolf { 4343260fecf1SKevin Wolf break; 4344260fecf1SKevin Wolf } 4345260fecf1SKevin Wolf } 4346260fecf1SKevin Wolf if (child) { 43479e700c1aSKevin Wolf continue; 43489e700c1aSKevin Wolf } 43499e700c1aSKevin Wolf 43509e700c1aSKevin Wolf /* And exclude all non-driver-specific options */ 43519e700c1aSKevin Wolf for (desc = bdrv_runtime_opts.desc; desc->name; desc++) { 43529e700c1aSKevin Wolf if (!strcmp(qdict_entry_key(entry), desc->name)) { 43539e700c1aSKevin Wolf break; 43549e700c1aSKevin Wolf } 43559e700c1aSKevin Wolf } 43569e700c1aSKevin Wolf if (desc->name) { 43579e700c1aSKevin Wolf continue; 43589e700c1aSKevin Wolf } 43599e700c1aSKevin Wolf 436091af7014SMax Reitz qobject_incref(qdict_entry_value(entry)); 436191af7014SMax Reitz qdict_put_obj(d, qdict_entry_key(entry), qdict_entry_value(entry)); 436291af7014SMax Reitz found_any = true; 436391af7014SMax Reitz } 436491af7014SMax Reitz 436591af7014SMax Reitz return found_any; 436691af7014SMax Reitz } 436791af7014SMax Reitz 436891af7014SMax Reitz /* Updates the following BDS fields: 436991af7014SMax Reitz * - exact_filename: A filename which may be used for opening a block device 437091af7014SMax Reitz * which (mostly) equals the given BDS (even without any 437191af7014SMax Reitz * other options; so reading and writing must return the same 437291af7014SMax Reitz * results, but caching etc. may be different) 437391af7014SMax Reitz * - full_open_options: Options which, when given when opening a block device 437491af7014SMax Reitz * (without a filename), result in a BDS (mostly) 437591af7014SMax Reitz * equalling the given one 437691af7014SMax Reitz * - filename: If exact_filename is set, it is copied here. Otherwise, 437791af7014SMax Reitz * full_open_options is converted to a JSON object, prefixed with 437891af7014SMax Reitz * "json:" (for use through the JSON pseudo protocol) and put here. 437991af7014SMax Reitz */ 438091af7014SMax Reitz void bdrv_refresh_filename(BlockDriverState *bs) 438191af7014SMax Reitz { 438291af7014SMax Reitz BlockDriver *drv = bs->drv; 438391af7014SMax Reitz QDict *opts; 438491af7014SMax Reitz 438591af7014SMax Reitz if (!drv) { 438691af7014SMax Reitz return; 438791af7014SMax Reitz } 438891af7014SMax Reitz 438991af7014SMax Reitz /* This BDS's file name will most probably depend on its file's name, so 439091af7014SMax Reitz * refresh that first */ 439191af7014SMax Reitz if (bs->file) { 43929a4f4c31SKevin Wolf bdrv_refresh_filename(bs->file->bs); 439391af7014SMax Reitz } 439491af7014SMax Reitz 439591af7014SMax Reitz if (drv->bdrv_refresh_filename) { 439691af7014SMax Reitz /* Obsolete information is of no use here, so drop the old file name 439791af7014SMax Reitz * information before refreshing it */ 439891af7014SMax Reitz bs->exact_filename[0] = '\0'; 439991af7014SMax Reitz if (bs->full_open_options) { 440091af7014SMax Reitz QDECREF(bs->full_open_options); 440191af7014SMax Reitz bs->full_open_options = NULL; 440291af7014SMax Reitz } 440391af7014SMax Reitz 44044cdd01d3SKevin Wolf opts = qdict_new(); 44054cdd01d3SKevin Wolf append_open_options(opts, bs); 44064cdd01d3SKevin Wolf drv->bdrv_refresh_filename(bs, opts); 44074cdd01d3SKevin Wolf QDECREF(opts); 440891af7014SMax Reitz } else if (bs->file) { 440991af7014SMax Reitz /* Try to reconstruct valid information from the underlying file */ 441091af7014SMax Reitz bool has_open_options; 441191af7014SMax Reitz 441291af7014SMax Reitz bs->exact_filename[0] = '\0'; 441391af7014SMax Reitz if (bs->full_open_options) { 441491af7014SMax Reitz QDECREF(bs->full_open_options); 441591af7014SMax Reitz bs->full_open_options = NULL; 441691af7014SMax Reitz } 441791af7014SMax Reitz 441891af7014SMax Reitz opts = qdict_new(); 441991af7014SMax Reitz has_open_options = append_open_options(opts, bs); 442091af7014SMax Reitz 442191af7014SMax Reitz /* If no specific options have been given for this BDS, the filename of 442291af7014SMax Reitz * the underlying file should suffice for this one as well */ 44239a4f4c31SKevin Wolf if (bs->file->bs->exact_filename[0] && !has_open_options) { 44249a4f4c31SKevin Wolf strcpy(bs->exact_filename, bs->file->bs->exact_filename); 442591af7014SMax Reitz } 442691af7014SMax Reitz /* Reconstructing the full options QDict is simple for most format block 442791af7014SMax Reitz * drivers, as long as the full options are known for the underlying 442891af7014SMax Reitz * file BDS. The full options QDict of that file BDS should somehow 442991af7014SMax Reitz * contain a representation of the filename, therefore the following 443091af7014SMax Reitz * suffices without querying the (exact_)filename of this BDS. */ 44319a4f4c31SKevin Wolf if (bs->file->bs->full_open_options) { 443291af7014SMax Reitz qdict_put_obj(opts, "driver", 443391af7014SMax Reitz QOBJECT(qstring_from_str(drv->format_name))); 44349a4f4c31SKevin Wolf QINCREF(bs->file->bs->full_open_options); 44359a4f4c31SKevin Wolf qdict_put_obj(opts, "file", 44369a4f4c31SKevin Wolf QOBJECT(bs->file->bs->full_open_options)); 443791af7014SMax Reitz 443891af7014SMax Reitz bs->full_open_options = opts; 443991af7014SMax Reitz } else { 444091af7014SMax Reitz QDECREF(opts); 444191af7014SMax Reitz } 444291af7014SMax Reitz } else if (!bs->full_open_options && qdict_size(bs->options)) { 444391af7014SMax Reitz /* There is no underlying file BDS (at least referenced by BDS.file), 444491af7014SMax Reitz * so the full options QDict should be equal to the options given 444591af7014SMax Reitz * specifically for this block device when it was opened (plus the 444691af7014SMax Reitz * driver specification). 444791af7014SMax Reitz * Because those options don't change, there is no need to update 444891af7014SMax Reitz * full_open_options when it's already set. */ 444991af7014SMax Reitz 445091af7014SMax Reitz opts = qdict_new(); 445191af7014SMax Reitz append_open_options(opts, bs); 445291af7014SMax Reitz qdict_put_obj(opts, "driver", 445391af7014SMax Reitz QOBJECT(qstring_from_str(drv->format_name))); 445491af7014SMax Reitz 445591af7014SMax Reitz if (bs->exact_filename[0]) { 445691af7014SMax Reitz /* This may not work for all block protocol drivers (some may 445791af7014SMax Reitz * require this filename to be parsed), but we have to find some 445891af7014SMax Reitz * default solution here, so just include it. If some block driver 445991af7014SMax Reitz * does not support pure options without any filename at all or 446091af7014SMax Reitz * needs some special format of the options QDict, it needs to 446191af7014SMax Reitz * implement the driver-specific bdrv_refresh_filename() function. 446291af7014SMax Reitz */ 446391af7014SMax Reitz qdict_put_obj(opts, "filename", 446491af7014SMax Reitz QOBJECT(qstring_from_str(bs->exact_filename))); 446591af7014SMax Reitz } 446691af7014SMax Reitz 446791af7014SMax Reitz bs->full_open_options = opts; 446891af7014SMax Reitz } 446991af7014SMax Reitz 447091af7014SMax Reitz if (bs->exact_filename[0]) { 447191af7014SMax Reitz pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename); 447291af7014SMax Reitz } else if (bs->full_open_options) { 447391af7014SMax Reitz QString *json = qobject_to_json(QOBJECT(bs->full_open_options)); 447491af7014SMax Reitz snprintf(bs->filename, sizeof(bs->filename), "json:%s", 447591af7014SMax Reitz qstring_get_str(json)); 447691af7014SMax Reitz QDECREF(json); 447791af7014SMax Reitz } 447891af7014SMax Reitz } 4479e06018adSWen Congyang 4480e06018adSWen Congyang /* 4481e06018adSWen Congyang * Hot add/remove a BDS's child. So the user can take a child offline when 4482e06018adSWen Congyang * it is broken and take a new child online 4483e06018adSWen Congyang */ 4484e06018adSWen Congyang void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs, 4485e06018adSWen Congyang Error **errp) 4486e06018adSWen Congyang { 4487e06018adSWen Congyang 4488e06018adSWen Congyang if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) { 4489e06018adSWen Congyang error_setg(errp, "The node %s does not support adding a child", 4490e06018adSWen Congyang bdrv_get_device_or_node_name(parent_bs)); 4491e06018adSWen Congyang return; 4492e06018adSWen Congyang } 4493e06018adSWen Congyang 4494e06018adSWen Congyang if (!QLIST_EMPTY(&child_bs->parents)) { 4495e06018adSWen Congyang error_setg(errp, "The node %s already has a parent", 4496e06018adSWen Congyang child_bs->node_name); 4497e06018adSWen Congyang return; 4498e06018adSWen Congyang } 4499e06018adSWen Congyang 4500e06018adSWen Congyang parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp); 4501e06018adSWen Congyang } 4502e06018adSWen Congyang 4503e06018adSWen Congyang void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp) 4504e06018adSWen Congyang { 4505e06018adSWen Congyang BdrvChild *tmp; 4506e06018adSWen Congyang 4507e06018adSWen Congyang if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) { 4508e06018adSWen Congyang error_setg(errp, "The node %s does not support removing a child", 4509e06018adSWen Congyang bdrv_get_device_or_node_name(parent_bs)); 4510e06018adSWen Congyang return; 4511e06018adSWen Congyang } 4512e06018adSWen Congyang 4513e06018adSWen Congyang QLIST_FOREACH(tmp, &parent_bs->children, next) { 4514e06018adSWen Congyang if (tmp == child) { 4515e06018adSWen Congyang break; 4516e06018adSWen Congyang } 4517e06018adSWen Congyang } 4518e06018adSWen Congyang 4519e06018adSWen Congyang if (!tmp) { 4520e06018adSWen Congyang error_setg(errp, "The node %s does not have a child named %s", 4521e06018adSWen Congyang bdrv_get_device_or_node_name(parent_bs), 4522e06018adSWen Congyang bdrv_get_device_or_node_name(child->bs)); 4523e06018adSWen Congyang return; 4524e06018adSWen Congyang } 4525e06018adSWen Congyang 4526e06018adSWen Congyang parent_bs->drv->bdrv_del_child(parent_bs, child, errp); 4527e06018adSWen Congyang } 4528