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 */ 243990d09aSblueswir1 #include "config-host.h" 25faf07963Spbrook #include "qemu-common.h" 266d519a5fSStefan Hajnoczi #include "trace.h" 27737e150eSPaolo Bonzini #include "block/block_int.h" 28737e150eSPaolo Bonzini #include "block/blockjob.h" 29d49b6836SMarkus Armbruster #include "qemu/error-report.h" 301de7afc9SPaolo Bonzini #include "qemu/module.h" 31cc7a8ea7SMarkus Armbruster #include "qapi/qmp/qerror.h" 327b1b5d19SPaolo Bonzini #include "qapi/qmp/qjson.h" 33bfb197e0SMarkus Armbruster #include "sysemu/block-backend.h" 349c17d615SPaolo Bonzini #include "sysemu/sysemu.h" 351de7afc9SPaolo Bonzini #include "qemu/notify.h" 3610817bf0SDaniel P. Berrange #include "qemu/coroutine.h" 37c13163fbSBenoît Canet #include "block/qapi.h" 38b2023818SLuiz Capitulino #include "qmp-commands.h" 391de7afc9SPaolo Bonzini #include "qemu/timer.h" 40a5ee7bd4SWenchao Xia #include "qapi-event.h" 41db628338SAlberto Garcia #include "block/throttle-groups.h" 42fc01f7e7Sbellard 4371e72a19SJuan Quintela #ifdef CONFIG_BSD 447674e7bfSbellard #include <sys/types.h> 457674e7bfSbellard #include <sys/stat.h> 467674e7bfSbellard #include <sys/ioctl.h> 4772cf2d4fSBlue Swirl #include <sys/queue.h> 48c5e97233Sblueswir1 #ifndef __DragonFly__ 497674e7bfSbellard #include <sys/disk.h> 507674e7bfSbellard #endif 51c5e97233Sblueswir1 #endif 527674e7bfSbellard 5349dc768dSaliguori #ifdef _WIN32 5449dc768dSaliguori #include <windows.h> 5549dc768dSaliguori #endif 5649dc768dSaliguori 579bd2b08fSJohn Snow /** 589bd2b08fSJohn Snow * A BdrvDirtyBitmap can be in three possible states: 599bd2b08fSJohn Snow * (1) successor is NULL and disabled is false: full r/w mode 609bd2b08fSJohn Snow * (2) successor is NULL and disabled is true: read only mode ("disabled") 619bd2b08fSJohn Snow * (3) successor is set: frozen mode. 629bd2b08fSJohn Snow * A frozen bitmap cannot be renamed, deleted, anonymized, cleared, set, 639bd2b08fSJohn Snow * or enabled. A frozen bitmap can only abdicate() or reclaim(). 649bd2b08fSJohn Snow */ 65e4654d2dSFam Zheng struct BdrvDirtyBitmap { 66aa0c7ca5SJohn Snow HBitmap *bitmap; /* Dirty sector bitmap implementation */ 67aa0c7ca5SJohn Snow BdrvDirtyBitmap *successor; /* Anonymous child; implies frozen status */ 68aa0c7ca5SJohn Snow char *name; /* Optional non-empty unique ID */ 69aa0c7ca5SJohn Snow int64_t size; /* Size of the bitmap (Number of sectors) */ 70aa0c7ca5SJohn Snow bool disabled; /* Bitmap is read-only */ 71e4654d2dSFam Zheng QLIST_ENTRY(BdrvDirtyBitmap) list; 72e4654d2dSFam Zheng }; 73e4654d2dSFam Zheng 741c9805a3SStefan Hajnoczi #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */ 751c9805a3SStefan Hajnoczi 76c69a4dd8SMax Reitz struct BdrvStates bdrv_states = QTAILQ_HEAD_INITIALIZER(bdrv_states); 777ee930d0Sblueswir1 78dc364f4cSBenoît Canet static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states = 79dc364f4cSBenoît Canet QTAILQ_HEAD_INITIALIZER(graph_bdrv_states); 80dc364f4cSBenoît Canet 818a22f02aSStefan Hajnoczi static QLIST_HEAD(, BlockDriver) bdrv_drivers = 828a22f02aSStefan Hajnoczi QLIST_HEAD_INITIALIZER(bdrv_drivers); 83ea2384d3Sbellard 84f3930ed0SKevin Wolf static int bdrv_open_inherit(BlockDriverState **pbs, const char *filename, 85f3930ed0SKevin Wolf const char *reference, QDict *options, int flags, 86f3930ed0SKevin Wolf BlockDriverState *parent, 87ce343771SMax Reitz const BdrvChildRole *child_role, Error **errp); 88f3930ed0SKevin Wolf 89ce1ffea8SJohn Snow static void bdrv_dirty_bitmap_truncate(BlockDriverState *bs); 90eb852011SMarkus Armbruster /* If non-zero, use only whitelisted block drivers */ 91eb852011SMarkus Armbruster static int use_bdrv_whitelist; 92eb852011SMarkus Armbruster 939e0b22f4SStefan Hajnoczi #ifdef _WIN32 949e0b22f4SStefan Hajnoczi static int is_windows_drive_prefix(const char *filename) 959e0b22f4SStefan Hajnoczi { 969e0b22f4SStefan Hajnoczi return (((filename[0] >= 'a' && filename[0] <= 'z') || 979e0b22f4SStefan Hajnoczi (filename[0] >= 'A' && filename[0] <= 'Z')) && 989e0b22f4SStefan Hajnoczi filename[1] == ':'); 999e0b22f4SStefan Hajnoczi } 1009e0b22f4SStefan Hajnoczi 1019e0b22f4SStefan Hajnoczi int is_windows_drive(const char *filename) 1029e0b22f4SStefan Hajnoczi { 1039e0b22f4SStefan Hajnoczi if (is_windows_drive_prefix(filename) && 1049e0b22f4SStefan Hajnoczi filename[2] == '\0') 1059e0b22f4SStefan Hajnoczi return 1; 1069e0b22f4SStefan Hajnoczi if (strstart(filename, "\\\\.\\", NULL) || 1079e0b22f4SStefan Hajnoczi strstart(filename, "//./", NULL)) 1089e0b22f4SStefan Hajnoczi return 1; 1099e0b22f4SStefan Hajnoczi return 0; 1109e0b22f4SStefan Hajnoczi } 1119e0b22f4SStefan Hajnoczi #endif 1129e0b22f4SStefan Hajnoczi 113339064d5SKevin Wolf size_t bdrv_opt_mem_align(BlockDriverState *bs) 114339064d5SKevin Wolf { 115339064d5SKevin Wolf if (!bs || !bs->drv) { 116459b4e66SDenis V. Lunev /* page size or 4k (hdd sector size) should be on the safe side */ 117459b4e66SDenis V. Lunev return MAX(4096, getpagesize()); 118339064d5SKevin Wolf } 119339064d5SKevin Wolf 120339064d5SKevin Wolf return bs->bl.opt_mem_alignment; 121339064d5SKevin Wolf } 122339064d5SKevin Wolf 1234196d2f0SDenis V. Lunev size_t bdrv_min_mem_align(BlockDriverState *bs) 1244196d2f0SDenis V. Lunev { 1254196d2f0SDenis V. Lunev if (!bs || !bs->drv) { 126459b4e66SDenis V. Lunev /* page size or 4k (hdd sector size) should be on the safe side */ 127459b4e66SDenis V. Lunev return MAX(4096, getpagesize()); 1284196d2f0SDenis V. Lunev } 1294196d2f0SDenis V. Lunev 1304196d2f0SDenis V. Lunev return bs->bl.min_mem_alignment; 1314196d2f0SDenis V. Lunev } 1324196d2f0SDenis V. Lunev 1339e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */ 1345c98415bSMax Reitz int path_has_protocol(const char *path) 1359e0b22f4SStefan Hajnoczi { 136947995c0SPaolo Bonzini const char *p; 137947995c0SPaolo Bonzini 1389e0b22f4SStefan Hajnoczi #ifdef _WIN32 1399e0b22f4SStefan Hajnoczi if (is_windows_drive(path) || 1409e0b22f4SStefan Hajnoczi is_windows_drive_prefix(path)) { 1419e0b22f4SStefan Hajnoczi return 0; 1429e0b22f4SStefan Hajnoczi } 143947995c0SPaolo Bonzini p = path + strcspn(path, ":/\\"); 144947995c0SPaolo Bonzini #else 145947995c0SPaolo Bonzini p = path + strcspn(path, ":/"); 1469e0b22f4SStefan Hajnoczi #endif 1479e0b22f4SStefan Hajnoczi 148947995c0SPaolo Bonzini return *p == ':'; 1499e0b22f4SStefan Hajnoczi } 1509e0b22f4SStefan Hajnoczi 15183f64091Sbellard int path_is_absolute(const char *path) 15283f64091Sbellard { 15321664424Sbellard #ifdef _WIN32 15421664424Sbellard /* specific case for names like: "\\.\d:" */ 155f53f4da9SPaolo Bonzini if (is_windows_drive(path) || is_windows_drive_prefix(path)) { 15621664424Sbellard return 1; 157f53f4da9SPaolo Bonzini } 158f53f4da9SPaolo Bonzini return (*path == '/' || *path == '\\'); 1593b9f94e1Sbellard #else 160f53f4da9SPaolo Bonzini return (*path == '/'); 1613b9f94e1Sbellard #endif 16283f64091Sbellard } 16383f64091Sbellard 16483f64091Sbellard /* if filename is absolute, just copy it to dest. Otherwise, build a 16583f64091Sbellard path to it by considering it is relative to base_path. URL are 16683f64091Sbellard supported. */ 16783f64091Sbellard void path_combine(char *dest, int dest_size, 16883f64091Sbellard const char *base_path, 16983f64091Sbellard const char *filename) 17083f64091Sbellard { 17183f64091Sbellard const char *p, *p1; 17283f64091Sbellard int len; 17383f64091Sbellard 17483f64091Sbellard if (dest_size <= 0) 17583f64091Sbellard return; 17683f64091Sbellard if (path_is_absolute(filename)) { 17783f64091Sbellard pstrcpy(dest, dest_size, filename); 17883f64091Sbellard } else { 17983f64091Sbellard p = strchr(base_path, ':'); 18083f64091Sbellard if (p) 18183f64091Sbellard p++; 18283f64091Sbellard else 18383f64091Sbellard p = base_path; 1843b9f94e1Sbellard p1 = strrchr(base_path, '/'); 1853b9f94e1Sbellard #ifdef _WIN32 1863b9f94e1Sbellard { 1873b9f94e1Sbellard const char *p2; 1883b9f94e1Sbellard p2 = strrchr(base_path, '\\'); 1893b9f94e1Sbellard if (!p1 || p2 > p1) 1903b9f94e1Sbellard p1 = p2; 1913b9f94e1Sbellard } 1923b9f94e1Sbellard #endif 19383f64091Sbellard if (p1) 19483f64091Sbellard p1++; 19583f64091Sbellard else 19683f64091Sbellard p1 = base_path; 19783f64091Sbellard if (p1 > p) 19883f64091Sbellard p = p1; 19983f64091Sbellard len = p - base_path; 20083f64091Sbellard if (len > dest_size - 1) 20183f64091Sbellard len = dest_size - 1; 20283f64091Sbellard memcpy(dest, base_path, len); 20383f64091Sbellard dest[len] = '\0'; 20483f64091Sbellard pstrcat(dest, dest_size, filename); 20583f64091Sbellard } 20683f64091Sbellard } 20783f64091Sbellard 2080a82855aSMax Reitz void bdrv_get_full_backing_filename_from_filename(const char *backed, 2090a82855aSMax Reitz const char *backing, 2109f07429eSMax Reitz char *dest, size_t sz, 2119f07429eSMax Reitz Error **errp) 2120a82855aSMax Reitz { 2139f07429eSMax Reitz if (backing[0] == '\0' || path_has_protocol(backing) || 2149f07429eSMax Reitz path_is_absolute(backing)) 2159f07429eSMax Reitz { 2160a82855aSMax Reitz pstrcpy(dest, sz, backing); 2179f07429eSMax Reitz } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) { 2189f07429eSMax Reitz error_setg(errp, "Cannot use relative backing file names for '%s'", 2199f07429eSMax Reitz backed); 2200a82855aSMax Reitz } else { 2210a82855aSMax Reitz path_combine(dest, sz, backed, backing); 2220a82855aSMax Reitz } 2230a82855aSMax Reitz } 2240a82855aSMax Reitz 2259f07429eSMax Reitz void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz, 2269f07429eSMax Reitz Error **errp) 227dc5a1371SPaolo Bonzini { 2289f07429eSMax Reitz char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename; 2299f07429eSMax Reitz 2309f07429eSMax Reitz bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file, 2319f07429eSMax Reitz dest, sz, errp); 232dc5a1371SPaolo Bonzini } 233dc5a1371SPaolo Bonzini 2340eb7217eSStefan Hajnoczi void bdrv_register(BlockDriver *bdrv) 2350eb7217eSStefan Hajnoczi { 2360eb7217eSStefan Hajnoczi bdrv_setup_io_funcs(bdrv); 237b2e12bc6SChristoph Hellwig 2388a22f02aSStefan Hajnoczi QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list); 239ea2384d3Sbellard } 240b338082bSbellard 2417f06d47eSMarkus Armbruster BlockDriverState *bdrv_new_root(void) 242fc01f7e7Sbellard { 2437f06d47eSMarkus Armbruster BlockDriverState *bs = bdrv_new(); 244e4e9986bSMarkus Armbruster 245e4e9986bSMarkus Armbruster QTAILQ_INSERT_TAIL(&bdrv_states, bs, device_list); 246e4e9986bSMarkus Armbruster return bs; 247e4e9986bSMarkus Armbruster } 248e4e9986bSMarkus Armbruster 249e4e9986bSMarkus Armbruster BlockDriverState *bdrv_new(void) 250e4e9986bSMarkus Armbruster { 251e4e9986bSMarkus Armbruster BlockDriverState *bs; 252e4e9986bSMarkus Armbruster int i; 253e4e9986bSMarkus Armbruster 2545839e53bSMarkus Armbruster bs = g_new0(BlockDriverState, 1); 255e4654d2dSFam Zheng QLIST_INIT(&bs->dirty_bitmaps); 256fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 257fbe40ff7SFam Zheng QLIST_INIT(&bs->op_blockers[i]); 258fbe40ff7SFam Zheng } 259d7d512f6SPaolo Bonzini notifier_list_init(&bs->close_notifiers); 260d616b224SStefan Hajnoczi notifier_with_return_list_init(&bs->before_write_notifiers); 261cc0681c4SBenoît Canet qemu_co_queue_init(&bs->throttled_reqs[0]); 262cc0681c4SBenoît Canet qemu_co_queue_init(&bs->throttled_reqs[1]); 2639fcb0251SFam Zheng bs->refcnt = 1; 264dcd04228SStefan Hajnoczi bs->aio_context = qemu_get_aio_context(); 265d7d512f6SPaolo Bonzini 266b338082bSbellard return bs; 267b338082bSbellard } 268b338082bSbellard 269d7d512f6SPaolo Bonzini void bdrv_add_close_notifier(BlockDriverState *bs, Notifier *notify) 270d7d512f6SPaolo Bonzini { 271d7d512f6SPaolo Bonzini notifier_list_add(&bs->close_notifiers, notify); 272d7d512f6SPaolo Bonzini } 273d7d512f6SPaolo Bonzini 274ea2384d3Sbellard BlockDriver *bdrv_find_format(const char *format_name) 275ea2384d3Sbellard { 276ea2384d3Sbellard BlockDriver *drv1; 2778a22f02aSStefan Hajnoczi QLIST_FOREACH(drv1, &bdrv_drivers, list) { 2788a22f02aSStefan Hajnoczi if (!strcmp(drv1->format_name, format_name)) { 279ea2384d3Sbellard return drv1; 280ea2384d3Sbellard } 2818a22f02aSStefan Hajnoczi } 282ea2384d3Sbellard return NULL; 283ea2384d3Sbellard } 284ea2384d3Sbellard 285b64ec4e4SFam Zheng static int bdrv_is_whitelisted(BlockDriver *drv, bool read_only) 286eb852011SMarkus Armbruster { 287b64ec4e4SFam Zheng static const char *whitelist_rw[] = { 288b64ec4e4SFam Zheng CONFIG_BDRV_RW_WHITELIST 289b64ec4e4SFam Zheng }; 290b64ec4e4SFam Zheng static const char *whitelist_ro[] = { 291b64ec4e4SFam Zheng CONFIG_BDRV_RO_WHITELIST 292eb852011SMarkus Armbruster }; 293eb852011SMarkus Armbruster const char **p; 294eb852011SMarkus Armbruster 295b64ec4e4SFam Zheng if (!whitelist_rw[0] && !whitelist_ro[0]) { 296eb852011SMarkus Armbruster return 1; /* no whitelist, anything goes */ 297b64ec4e4SFam Zheng } 298eb852011SMarkus Armbruster 299b64ec4e4SFam Zheng for (p = whitelist_rw; *p; p++) { 300eb852011SMarkus Armbruster if (!strcmp(drv->format_name, *p)) { 301eb852011SMarkus Armbruster return 1; 302eb852011SMarkus Armbruster } 303eb852011SMarkus Armbruster } 304b64ec4e4SFam Zheng if (read_only) { 305b64ec4e4SFam Zheng for (p = whitelist_ro; *p; p++) { 306b64ec4e4SFam Zheng if (!strcmp(drv->format_name, *p)) { 307b64ec4e4SFam Zheng return 1; 308b64ec4e4SFam Zheng } 309b64ec4e4SFam Zheng } 310b64ec4e4SFam Zheng } 311eb852011SMarkus Armbruster return 0; 312eb852011SMarkus Armbruster } 313eb852011SMarkus Armbruster 3145b7e1542SZhi Yong Wu typedef struct CreateCo { 3155b7e1542SZhi Yong Wu BlockDriver *drv; 3165b7e1542SZhi Yong Wu char *filename; 31783d0521aSChunyan Liu QemuOpts *opts; 3185b7e1542SZhi Yong Wu int ret; 319cc84d90fSMax Reitz Error *err; 3205b7e1542SZhi Yong Wu } CreateCo; 3215b7e1542SZhi Yong Wu 3225b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque) 3235b7e1542SZhi Yong Wu { 324cc84d90fSMax Reitz Error *local_err = NULL; 325cc84d90fSMax Reitz int ret; 326cc84d90fSMax Reitz 3275b7e1542SZhi Yong Wu CreateCo *cco = opaque; 3285b7e1542SZhi Yong Wu assert(cco->drv); 3295b7e1542SZhi Yong Wu 330c282e1fdSChunyan Liu ret = cco->drv->bdrv_create(cco->filename, cco->opts, &local_err); 33184d18f06SMarkus Armbruster if (local_err) { 332cc84d90fSMax Reitz error_propagate(&cco->err, local_err); 333cc84d90fSMax Reitz } 334cc84d90fSMax Reitz cco->ret = ret; 3355b7e1542SZhi Yong Wu } 3365b7e1542SZhi Yong Wu 3370e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename, 33883d0521aSChunyan Liu QemuOpts *opts, Error **errp) 339ea2384d3Sbellard { 3405b7e1542SZhi Yong Wu int ret; 3410e7e1989SKevin Wolf 3425b7e1542SZhi Yong Wu Coroutine *co; 3435b7e1542SZhi Yong Wu CreateCo cco = { 3445b7e1542SZhi Yong Wu .drv = drv, 3455b7e1542SZhi Yong Wu .filename = g_strdup(filename), 34683d0521aSChunyan Liu .opts = opts, 3475b7e1542SZhi Yong Wu .ret = NOT_DONE, 348cc84d90fSMax Reitz .err = NULL, 3495b7e1542SZhi Yong Wu }; 3505b7e1542SZhi Yong Wu 351c282e1fdSChunyan Liu if (!drv->bdrv_create) { 352cc84d90fSMax Reitz error_setg(errp, "Driver '%s' does not support image creation", drv->format_name); 35380168bffSLuiz Capitulino ret = -ENOTSUP; 35480168bffSLuiz Capitulino goto out; 3555b7e1542SZhi Yong Wu } 3565b7e1542SZhi Yong Wu 3575b7e1542SZhi Yong Wu if (qemu_in_coroutine()) { 3585b7e1542SZhi Yong Wu /* Fast-path if already in coroutine context */ 3595b7e1542SZhi Yong Wu bdrv_create_co_entry(&cco); 3605b7e1542SZhi Yong Wu } else { 3615b7e1542SZhi Yong Wu co = qemu_coroutine_create(bdrv_create_co_entry); 3625b7e1542SZhi Yong Wu qemu_coroutine_enter(co, &cco); 3635b7e1542SZhi Yong Wu while (cco.ret == NOT_DONE) { 364b47ec2c4SPaolo Bonzini aio_poll(qemu_get_aio_context(), true); 3655b7e1542SZhi Yong Wu } 3665b7e1542SZhi Yong Wu } 3675b7e1542SZhi Yong Wu 3685b7e1542SZhi Yong Wu ret = cco.ret; 369cc84d90fSMax Reitz if (ret < 0) { 37084d18f06SMarkus Armbruster if (cco.err) { 371cc84d90fSMax Reitz error_propagate(errp, cco.err); 372cc84d90fSMax Reitz } else { 373cc84d90fSMax Reitz error_setg_errno(errp, -ret, "Could not create image"); 374cc84d90fSMax Reitz } 375cc84d90fSMax Reitz } 3765b7e1542SZhi Yong Wu 37780168bffSLuiz Capitulino out: 37880168bffSLuiz Capitulino g_free(cco.filename); 3795b7e1542SZhi Yong Wu return ret; 380ea2384d3Sbellard } 381ea2384d3Sbellard 382c282e1fdSChunyan Liu int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp) 38384a12e66SChristoph Hellwig { 38484a12e66SChristoph Hellwig BlockDriver *drv; 385cc84d90fSMax Reitz Error *local_err = NULL; 386cc84d90fSMax Reitz int ret; 38784a12e66SChristoph Hellwig 388b65a5e12SMax Reitz drv = bdrv_find_protocol(filename, true, errp); 38984a12e66SChristoph Hellwig if (drv == NULL) { 39016905d71SStefan Hajnoczi return -ENOENT; 39184a12e66SChristoph Hellwig } 39284a12e66SChristoph Hellwig 393c282e1fdSChunyan Liu ret = bdrv_create(drv, filename, opts, &local_err); 39484d18f06SMarkus Armbruster if (local_err) { 395cc84d90fSMax Reitz error_propagate(errp, local_err); 396cc84d90fSMax Reitz } 397cc84d90fSMax Reitz return ret; 39884a12e66SChristoph Hellwig } 39984a12e66SChristoph Hellwig 400892b7de8SEkaterina Tumanova /** 401892b7de8SEkaterina Tumanova * Try to get @bs's logical and physical block size. 402892b7de8SEkaterina Tumanova * On success, store them in @bsz struct and return 0. 403892b7de8SEkaterina Tumanova * On failure return -errno. 404892b7de8SEkaterina Tumanova * @bs must not be empty. 405892b7de8SEkaterina Tumanova */ 406892b7de8SEkaterina Tumanova int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz) 407892b7de8SEkaterina Tumanova { 408892b7de8SEkaterina Tumanova BlockDriver *drv = bs->drv; 409892b7de8SEkaterina Tumanova 410892b7de8SEkaterina Tumanova if (drv && drv->bdrv_probe_blocksizes) { 411892b7de8SEkaterina Tumanova return drv->bdrv_probe_blocksizes(bs, bsz); 412892b7de8SEkaterina Tumanova } 413892b7de8SEkaterina Tumanova 414892b7de8SEkaterina Tumanova return -ENOTSUP; 415892b7de8SEkaterina Tumanova } 416892b7de8SEkaterina Tumanova 417892b7de8SEkaterina Tumanova /** 418892b7de8SEkaterina Tumanova * Try to get @bs's geometry (cyls, heads, sectors). 419892b7de8SEkaterina Tumanova * On success, store them in @geo struct and return 0. 420892b7de8SEkaterina Tumanova * On failure return -errno. 421892b7de8SEkaterina Tumanova * @bs must not be empty. 422892b7de8SEkaterina Tumanova */ 423892b7de8SEkaterina Tumanova int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo) 424892b7de8SEkaterina Tumanova { 425892b7de8SEkaterina Tumanova BlockDriver *drv = bs->drv; 426892b7de8SEkaterina Tumanova 427892b7de8SEkaterina Tumanova if (drv && drv->bdrv_probe_geometry) { 428892b7de8SEkaterina Tumanova return drv->bdrv_probe_geometry(bs, geo); 429892b7de8SEkaterina Tumanova } 430892b7de8SEkaterina Tumanova 431892b7de8SEkaterina Tumanova return -ENOTSUP; 432892b7de8SEkaterina Tumanova } 433892b7de8SEkaterina Tumanova 434eba25057SJim Meyering /* 435eba25057SJim Meyering * Create a uniquely-named empty temporary file. 436eba25057SJim Meyering * Return 0 upon success, otherwise a negative errno value. 437eba25057SJim Meyering */ 438eba25057SJim Meyering int get_tmp_filename(char *filename, int size) 439eba25057SJim Meyering { 440d5249393Sbellard #ifdef _WIN32 4413b9f94e1Sbellard char temp_dir[MAX_PATH]; 442eba25057SJim Meyering /* GetTempFileName requires that its output buffer (4th param) 443eba25057SJim Meyering have length MAX_PATH or greater. */ 444eba25057SJim Meyering assert(size >= MAX_PATH); 445eba25057SJim Meyering return (GetTempPath(MAX_PATH, temp_dir) 446eba25057SJim Meyering && GetTempFileName(temp_dir, "qem", 0, filename) 447eba25057SJim Meyering ? 0 : -GetLastError()); 448d5249393Sbellard #else 449ea2384d3Sbellard int fd; 4507ccfb2ebSblueswir1 const char *tmpdir; 4510badc1eeSaurel32 tmpdir = getenv("TMPDIR"); 45269bef793SAmit Shah if (!tmpdir) { 45369bef793SAmit Shah tmpdir = "/var/tmp"; 45469bef793SAmit Shah } 455eba25057SJim Meyering if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) { 456eba25057SJim Meyering return -EOVERFLOW; 457ea2384d3Sbellard } 458eba25057SJim Meyering fd = mkstemp(filename); 459fe235a06SDunrong Huang if (fd < 0) { 460fe235a06SDunrong Huang return -errno; 461fe235a06SDunrong Huang } 462fe235a06SDunrong Huang if (close(fd) != 0) { 463fe235a06SDunrong Huang unlink(filename); 464eba25057SJim Meyering return -errno; 465eba25057SJim Meyering } 466eba25057SJim Meyering return 0; 467d5249393Sbellard #endif 468eba25057SJim Meyering } 469ea2384d3Sbellard 470f3a5d3f8SChristoph Hellwig /* 471f3a5d3f8SChristoph Hellwig * Detect host devices. By convention, /dev/cdrom[N] is always 472f3a5d3f8SChristoph Hellwig * recognized as a host CDROM. 473f3a5d3f8SChristoph Hellwig */ 474f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename) 475f3a5d3f8SChristoph Hellwig { 476508c7cb3SChristoph Hellwig int score_max = 0, score; 477508c7cb3SChristoph Hellwig BlockDriver *drv = NULL, *d; 478f3a5d3f8SChristoph Hellwig 4798a22f02aSStefan Hajnoczi QLIST_FOREACH(d, &bdrv_drivers, list) { 480508c7cb3SChristoph Hellwig if (d->bdrv_probe_device) { 481508c7cb3SChristoph Hellwig score = d->bdrv_probe_device(filename); 482508c7cb3SChristoph Hellwig if (score > score_max) { 483508c7cb3SChristoph Hellwig score_max = score; 484508c7cb3SChristoph Hellwig drv = d; 485f3a5d3f8SChristoph Hellwig } 486508c7cb3SChristoph Hellwig } 487f3a5d3f8SChristoph Hellwig } 488f3a5d3f8SChristoph Hellwig 489508c7cb3SChristoph Hellwig return drv; 490f3a5d3f8SChristoph Hellwig } 491f3a5d3f8SChristoph Hellwig 49298289620SKevin Wolf BlockDriver *bdrv_find_protocol(const char *filename, 493b65a5e12SMax Reitz bool allow_protocol_prefix, 494b65a5e12SMax Reitz Error **errp) 49584a12e66SChristoph Hellwig { 49684a12e66SChristoph Hellwig BlockDriver *drv1; 49784a12e66SChristoph Hellwig char protocol[128]; 49884a12e66SChristoph Hellwig int len; 49984a12e66SChristoph Hellwig const char *p; 50084a12e66SChristoph Hellwig 50166f82ceeSKevin Wolf /* TODO Drivers without bdrv_file_open must be specified explicitly */ 50266f82ceeSKevin Wolf 50339508e7aSChristoph Hellwig /* 50439508e7aSChristoph Hellwig * XXX(hch): we really should not let host device detection 50539508e7aSChristoph Hellwig * override an explicit protocol specification, but moving this 50639508e7aSChristoph Hellwig * later breaks access to device names with colons in them. 50739508e7aSChristoph Hellwig * Thanks to the brain-dead persistent naming schemes on udev- 50839508e7aSChristoph Hellwig * based Linux systems those actually are quite common. 50939508e7aSChristoph Hellwig */ 51084a12e66SChristoph Hellwig drv1 = find_hdev_driver(filename); 51139508e7aSChristoph Hellwig if (drv1) { 51284a12e66SChristoph Hellwig return drv1; 51384a12e66SChristoph Hellwig } 51439508e7aSChristoph Hellwig 51598289620SKevin Wolf if (!path_has_protocol(filename) || !allow_protocol_prefix) { 516ef810437SMax Reitz return &bdrv_file; 51739508e7aSChristoph Hellwig } 51898289620SKevin Wolf 5199e0b22f4SStefan Hajnoczi p = strchr(filename, ':'); 5209e0b22f4SStefan Hajnoczi assert(p != NULL); 52184a12e66SChristoph Hellwig len = p - filename; 52284a12e66SChristoph Hellwig if (len > sizeof(protocol) - 1) 52384a12e66SChristoph Hellwig len = sizeof(protocol) - 1; 52484a12e66SChristoph Hellwig memcpy(protocol, filename, len); 52584a12e66SChristoph Hellwig protocol[len] = '\0'; 52684a12e66SChristoph Hellwig QLIST_FOREACH(drv1, &bdrv_drivers, list) { 52784a12e66SChristoph Hellwig if (drv1->protocol_name && 52884a12e66SChristoph Hellwig !strcmp(drv1->protocol_name, protocol)) { 52984a12e66SChristoph Hellwig return drv1; 53084a12e66SChristoph Hellwig } 53184a12e66SChristoph Hellwig } 532b65a5e12SMax Reitz 533b65a5e12SMax Reitz error_setg(errp, "Unknown protocol '%s'", protocol); 53484a12e66SChristoph Hellwig return NULL; 53584a12e66SChristoph Hellwig } 53684a12e66SChristoph Hellwig 537c6684249SMarkus Armbruster /* 538c6684249SMarkus Armbruster * Guess image format by probing its contents. 539c6684249SMarkus Armbruster * This is not a good idea when your image is raw (CVE-2008-2004), but 540c6684249SMarkus Armbruster * we do it anyway for backward compatibility. 541c6684249SMarkus Armbruster * 542c6684249SMarkus Armbruster * @buf contains the image's first @buf_size bytes. 5437cddd372SKevin Wolf * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE, 5447cddd372SKevin Wolf * but can be smaller if the image file is smaller) 545c6684249SMarkus Armbruster * @filename is its filename. 546c6684249SMarkus Armbruster * 547c6684249SMarkus Armbruster * For all block drivers, call the bdrv_probe() method to get its 548c6684249SMarkus Armbruster * probing score. 549c6684249SMarkus Armbruster * Return the first block driver with the highest probing score. 550c6684249SMarkus Armbruster */ 55138f3ef57SKevin Wolf BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size, 552c6684249SMarkus Armbruster const char *filename) 553c6684249SMarkus Armbruster { 554c6684249SMarkus Armbruster int score_max = 0, score; 555c6684249SMarkus Armbruster BlockDriver *drv = NULL, *d; 556c6684249SMarkus Armbruster 557c6684249SMarkus Armbruster QLIST_FOREACH(d, &bdrv_drivers, list) { 558c6684249SMarkus Armbruster if (d->bdrv_probe) { 559c6684249SMarkus Armbruster score = d->bdrv_probe(buf, buf_size, filename); 560c6684249SMarkus Armbruster if (score > score_max) { 561c6684249SMarkus Armbruster score_max = score; 562c6684249SMarkus Armbruster drv = d; 563c6684249SMarkus Armbruster } 564c6684249SMarkus Armbruster } 565c6684249SMarkus Armbruster } 566c6684249SMarkus Armbruster 567c6684249SMarkus Armbruster return drv; 568c6684249SMarkus Armbruster } 569c6684249SMarkus Armbruster 570f500a6d3SKevin Wolf static int find_image_format(BlockDriverState *bs, const char *filename, 57134b5d2c6SMax Reitz BlockDriver **pdrv, Error **errp) 572ea2384d3Sbellard { 573c6684249SMarkus Armbruster BlockDriver *drv; 5747cddd372SKevin Wolf uint8_t buf[BLOCK_PROBE_BUF_SIZE]; 575f500a6d3SKevin Wolf int ret = 0; 576f8ea0b00SNicholas Bellinger 57708a00559SKevin Wolf /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ 578b192af8aSDimitris Aragiorgis if (bdrv_is_sg(bs) || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) { 579ef810437SMax Reitz *pdrv = &bdrv_raw; 580c98ac35dSStefan Weil return ret; 5811a396859SNicholas A. Bellinger } 582f8ea0b00SNicholas Bellinger 58383f64091Sbellard ret = bdrv_pread(bs, 0, buf, sizeof(buf)); 584ea2384d3Sbellard if (ret < 0) { 58534b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not read image for determining its " 58634b5d2c6SMax Reitz "format"); 587c98ac35dSStefan Weil *pdrv = NULL; 588c98ac35dSStefan Weil return ret; 589ea2384d3Sbellard } 590ea2384d3Sbellard 591c6684249SMarkus Armbruster drv = bdrv_probe_all(buf, ret, filename); 592c98ac35dSStefan Weil if (!drv) { 59334b5d2c6SMax Reitz error_setg(errp, "Could not determine image format: No compatible " 59434b5d2c6SMax Reitz "driver found"); 595c98ac35dSStefan Weil ret = -ENOENT; 596c98ac35dSStefan Weil } 597c98ac35dSStefan Weil *pdrv = drv; 598c98ac35dSStefan Weil return ret; 599ea2384d3Sbellard } 600ea2384d3Sbellard 60151762288SStefan Hajnoczi /** 60251762288SStefan Hajnoczi * Set the current 'total_sectors' value 60365a9bb25SMarkus Armbruster * Return 0 on success, -errno on error. 60451762288SStefan Hajnoczi */ 60551762288SStefan Hajnoczi static int refresh_total_sectors(BlockDriverState *bs, int64_t hint) 60651762288SStefan Hajnoczi { 60751762288SStefan Hajnoczi BlockDriver *drv = bs->drv; 60851762288SStefan Hajnoczi 609396759adSNicholas Bellinger /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */ 610b192af8aSDimitris Aragiorgis if (bdrv_is_sg(bs)) 611396759adSNicholas Bellinger return 0; 612396759adSNicholas Bellinger 61351762288SStefan Hajnoczi /* query actual device if possible, otherwise just trust the hint */ 61451762288SStefan Hajnoczi if (drv->bdrv_getlength) { 61551762288SStefan Hajnoczi int64_t length = drv->bdrv_getlength(bs); 61651762288SStefan Hajnoczi if (length < 0) { 61751762288SStefan Hajnoczi return length; 61851762288SStefan Hajnoczi } 6197e382003SFam Zheng hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE); 62051762288SStefan Hajnoczi } 62151762288SStefan Hajnoczi 62251762288SStefan Hajnoczi bs->total_sectors = hint; 62351762288SStefan Hajnoczi return 0; 62451762288SStefan Hajnoczi } 62551762288SStefan Hajnoczi 626c3993cdcSStefan Hajnoczi /** 627cddff5baSKevin Wolf * Combines a QDict of new block driver @options with any missing options taken 628cddff5baSKevin Wolf * from @old_options, so that leaving out an option defaults to its old value. 629cddff5baSKevin Wolf */ 630cddff5baSKevin Wolf static void bdrv_join_options(BlockDriverState *bs, QDict *options, 631cddff5baSKevin Wolf QDict *old_options) 632cddff5baSKevin Wolf { 633cddff5baSKevin Wolf if (bs->drv && bs->drv->bdrv_join_options) { 634cddff5baSKevin Wolf bs->drv->bdrv_join_options(options, old_options); 635cddff5baSKevin Wolf } else { 636cddff5baSKevin Wolf qdict_join(options, old_options, false); 637cddff5baSKevin Wolf } 638cddff5baSKevin Wolf } 639cddff5baSKevin Wolf 640cddff5baSKevin Wolf /** 6419e8f1835SPaolo Bonzini * Set open flags for a given discard mode 6429e8f1835SPaolo Bonzini * 6439e8f1835SPaolo Bonzini * Return 0 on success, -1 if the discard mode was invalid. 6449e8f1835SPaolo Bonzini */ 6459e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags) 6469e8f1835SPaolo Bonzini { 6479e8f1835SPaolo Bonzini *flags &= ~BDRV_O_UNMAP; 6489e8f1835SPaolo Bonzini 6499e8f1835SPaolo Bonzini if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) { 6509e8f1835SPaolo Bonzini /* do nothing */ 6519e8f1835SPaolo Bonzini } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) { 6529e8f1835SPaolo Bonzini *flags |= BDRV_O_UNMAP; 6539e8f1835SPaolo Bonzini } else { 6549e8f1835SPaolo Bonzini return -1; 6559e8f1835SPaolo Bonzini } 6569e8f1835SPaolo Bonzini 6579e8f1835SPaolo Bonzini return 0; 6589e8f1835SPaolo Bonzini } 6599e8f1835SPaolo Bonzini 6609e8f1835SPaolo Bonzini /** 661c3993cdcSStefan Hajnoczi * Set open flags for a given cache mode 662c3993cdcSStefan Hajnoczi * 663c3993cdcSStefan Hajnoczi * Return 0 on success, -1 if the cache mode was invalid. 664c3993cdcSStefan Hajnoczi */ 665c3993cdcSStefan Hajnoczi int bdrv_parse_cache_flags(const char *mode, int *flags) 666c3993cdcSStefan Hajnoczi { 667c3993cdcSStefan Hajnoczi *flags &= ~BDRV_O_CACHE_MASK; 668c3993cdcSStefan Hajnoczi 669c3993cdcSStefan Hajnoczi if (!strcmp(mode, "off") || !strcmp(mode, "none")) { 670c3993cdcSStefan Hajnoczi *flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB; 67192196b2fSStefan Hajnoczi } else if (!strcmp(mode, "directsync")) { 67292196b2fSStefan Hajnoczi *flags |= BDRV_O_NOCACHE; 673c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writeback")) { 674c3993cdcSStefan Hajnoczi *flags |= BDRV_O_CACHE_WB; 675c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "unsafe")) { 676c3993cdcSStefan Hajnoczi *flags |= BDRV_O_CACHE_WB; 677c3993cdcSStefan Hajnoczi *flags |= BDRV_O_NO_FLUSH; 678c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writethrough")) { 679c3993cdcSStefan Hajnoczi /* this is the default */ 680c3993cdcSStefan Hajnoczi } else { 681c3993cdcSStefan Hajnoczi return -1; 682c3993cdcSStefan Hajnoczi } 683c3993cdcSStefan Hajnoczi 684c3993cdcSStefan Hajnoczi return 0; 685c3993cdcSStefan Hajnoczi } 686c3993cdcSStefan Hajnoczi 6870b50cc88SKevin Wolf /* 688b1e6fc08SKevin Wolf * Returns the flags that a temporary snapshot should get, based on the 689b1e6fc08SKevin Wolf * originally requested flags (the originally requested image will have flags 690b1e6fc08SKevin Wolf * like a backing file) 691b1e6fc08SKevin Wolf */ 692b1e6fc08SKevin Wolf static int bdrv_temp_snapshot_flags(int flags) 693b1e6fc08SKevin Wolf { 694b1e6fc08SKevin Wolf return (flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY; 695b1e6fc08SKevin Wolf } 696b1e6fc08SKevin Wolf 697b1e6fc08SKevin Wolf /* 6988e2160e2SKevin Wolf * Returns the options and flags that bs->file should get if a protocol driver 6998e2160e2SKevin Wolf * is expected, based on the given options and flags for the parent BDS 7000b50cc88SKevin Wolf */ 7018e2160e2SKevin Wolf static void bdrv_inherited_options(int *child_flags, QDict *child_options, 7028e2160e2SKevin Wolf int parent_flags, QDict *parent_options) 7030b50cc88SKevin Wolf { 7048e2160e2SKevin Wolf int flags = parent_flags; 7058e2160e2SKevin Wolf 7060b50cc88SKevin Wolf /* Enable protocol handling, disable format probing for bs->file */ 7070b50cc88SKevin Wolf flags |= BDRV_O_PROTOCOL; 7080b50cc88SKevin Wolf 7090b50cc88SKevin Wolf /* Our block drivers take care to send flushes and respect unmap policy, 7100b50cc88SKevin Wolf * so we can enable both unconditionally on lower layers. */ 7110b50cc88SKevin Wolf flags |= BDRV_O_CACHE_WB | BDRV_O_UNMAP; 7120b50cc88SKevin Wolf 7130b50cc88SKevin Wolf /* Clear flags that only apply to the top layer */ 7145669b44dSKevin Wolf flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ); 7150b50cc88SKevin Wolf 7168e2160e2SKevin Wolf *child_flags = flags; 7170b50cc88SKevin Wolf } 7180b50cc88SKevin Wolf 719f3930ed0SKevin Wolf const BdrvChildRole child_file = { 7208e2160e2SKevin Wolf .inherit_options = bdrv_inherited_options, 721f3930ed0SKevin Wolf }; 722f3930ed0SKevin Wolf 723f3930ed0SKevin Wolf /* 7248e2160e2SKevin Wolf * Returns the options and flags that bs->file should get if the use of formats 7258e2160e2SKevin Wolf * (and not only protocols) is permitted for it, based on the given options and 7268e2160e2SKevin Wolf * flags for the parent BDS 727f3930ed0SKevin Wolf */ 7288e2160e2SKevin Wolf static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options, 7298e2160e2SKevin Wolf int parent_flags, QDict *parent_options) 730f3930ed0SKevin Wolf { 7318e2160e2SKevin Wolf child_file.inherit_options(child_flags, child_options, 7328e2160e2SKevin Wolf parent_flags, parent_options); 7338e2160e2SKevin Wolf 7348e2160e2SKevin Wolf *child_flags &= ~BDRV_O_PROTOCOL; 735f3930ed0SKevin Wolf } 736f3930ed0SKevin Wolf 737f3930ed0SKevin Wolf const BdrvChildRole child_format = { 7388e2160e2SKevin Wolf .inherit_options = bdrv_inherited_fmt_options, 739f3930ed0SKevin Wolf }; 740f3930ed0SKevin Wolf 741317fc44eSKevin Wolf /* 7428e2160e2SKevin Wolf * Returns the options and flags that bs->backing should get, based on the 7438e2160e2SKevin Wolf * given options and flags for the parent BDS 744317fc44eSKevin Wolf */ 7458e2160e2SKevin Wolf static void bdrv_backing_options(int *child_flags, QDict *child_options, 7468e2160e2SKevin Wolf int parent_flags, QDict *parent_options) 747317fc44eSKevin Wolf { 7488e2160e2SKevin Wolf int flags = parent_flags; 7498e2160e2SKevin Wolf 750317fc44eSKevin Wolf /* backing files always opened read-only */ 751317fc44eSKevin Wolf flags &= ~(BDRV_O_RDWR | BDRV_O_COPY_ON_READ); 752317fc44eSKevin Wolf 753317fc44eSKevin Wolf /* snapshot=on is handled on the top layer */ 7548bfea15dSKevin Wolf flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY); 755317fc44eSKevin Wolf 7568e2160e2SKevin Wolf *child_flags = flags; 757317fc44eSKevin Wolf } 758317fc44eSKevin Wolf 759f3930ed0SKevin Wolf static const BdrvChildRole child_backing = { 7608e2160e2SKevin Wolf .inherit_options = bdrv_backing_options, 761f3930ed0SKevin Wolf }; 762f3930ed0SKevin Wolf 7637b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags) 7647b272452SKevin Wolf { 7657b272452SKevin Wolf int open_flags = flags | BDRV_O_CACHE_WB; 7667b272452SKevin Wolf 7677b272452SKevin Wolf /* 7687b272452SKevin Wolf * Clear flags that are internal to the block layer before opening the 7697b272452SKevin Wolf * image. 7707b272452SKevin Wolf */ 77120cca275SKevin Wolf open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL); 7727b272452SKevin Wolf 7737b272452SKevin Wolf /* 7747b272452SKevin Wolf * Snapshots should be writable. 7757b272452SKevin Wolf */ 7768bfea15dSKevin Wolf if (flags & BDRV_O_TEMPORARY) { 7777b272452SKevin Wolf open_flags |= BDRV_O_RDWR; 7787b272452SKevin Wolf } 7797b272452SKevin Wolf 7807b272452SKevin Wolf return open_flags; 7817b272452SKevin Wolf } 7827b272452SKevin Wolf 783636ea370SKevin Wolf static void bdrv_assign_node_name(BlockDriverState *bs, 7846913c0c2SBenoît Canet const char *node_name, 7856913c0c2SBenoît Canet Error **errp) 7866913c0c2SBenoît Canet { 78715489c76SJeff Cody char *gen_node_name = NULL; 7886913c0c2SBenoît Canet 78915489c76SJeff Cody if (!node_name) { 79015489c76SJeff Cody node_name = gen_node_name = id_generate(ID_BLOCK); 79115489c76SJeff Cody } else if (!id_wellformed(node_name)) { 79215489c76SJeff Cody /* 79315489c76SJeff Cody * Check for empty string or invalid characters, but not if it is 79415489c76SJeff Cody * generated (generated names use characters not available to the user) 79515489c76SJeff Cody */ 7969aebf3b8SKevin Wolf error_setg(errp, "Invalid node name"); 797636ea370SKevin Wolf return; 7986913c0c2SBenoît Canet } 7996913c0c2SBenoît Canet 8000c5e94eeSBenoît Canet /* takes care of avoiding namespaces collisions */ 8017f06d47eSMarkus Armbruster if (blk_by_name(node_name)) { 8020c5e94eeSBenoît Canet error_setg(errp, "node-name=%s is conflicting with a device id", 8030c5e94eeSBenoît Canet node_name); 80415489c76SJeff Cody goto out; 8050c5e94eeSBenoît Canet } 8060c5e94eeSBenoît Canet 8076913c0c2SBenoît Canet /* takes care of avoiding duplicates node names */ 8086913c0c2SBenoît Canet if (bdrv_find_node(node_name)) { 8096913c0c2SBenoît Canet error_setg(errp, "Duplicate node name"); 81015489c76SJeff Cody goto out; 8116913c0c2SBenoît Canet } 8126913c0c2SBenoît Canet 8136913c0c2SBenoît Canet /* copy node name into the bs and insert it into the graph list */ 8146913c0c2SBenoît Canet pstrcpy(bs->node_name, sizeof(bs->node_name), node_name); 8156913c0c2SBenoît Canet QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list); 81615489c76SJeff Cody out: 81715489c76SJeff Cody g_free(gen_node_name); 8186913c0c2SBenoît Canet } 8196913c0c2SBenoît Canet 82018edf289SKevin Wolf static QemuOptsList bdrv_runtime_opts = { 82118edf289SKevin Wolf .name = "bdrv_common", 82218edf289SKevin Wolf .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head), 82318edf289SKevin Wolf .desc = { 82418edf289SKevin Wolf { 82518edf289SKevin Wolf .name = "node-name", 82618edf289SKevin Wolf .type = QEMU_OPT_STRING, 82718edf289SKevin Wolf .help = "Node name of the block device node", 82818edf289SKevin Wolf }, 82962392ebbSKevin Wolf { 83062392ebbSKevin Wolf .name = "driver", 83162392ebbSKevin Wolf .type = QEMU_OPT_STRING, 83262392ebbSKevin Wolf .help = "Block driver to use for the node", 83362392ebbSKevin Wolf }, 83418edf289SKevin Wolf { /* end of list */ } 83518edf289SKevin Wolf }, 83618edf289SKevin Wolf }; 83718edf289SKevin Wolf 838b6ce07aaSKevin Wolf /* 83957915332SKevin Wolf * Common part for opening disk images and files 840b6ad491aSKevin Wolf * 841b6ad491aSKevin Wolf * Removes all processed options from *options. 84257915332SKevin Wolf */ 8439a4f4c31SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BdrvChild *file, 84462392ebbSKevin Wolf QDict *options, int flags, Error **errp) 84557915332SKevin Wolf { 84657915332SKevin Wolf int ret, open_flags; 847035fccdfSKevin Wolf const char *filename; 84862392ebbSKevin Wolf const char *driver_name = NULL; 8496913c0c2SBenoît Canet const char *node_name = NULL; 85018edf289SKevin Wolf QemuOpts *opts; 85162392ebbSKevin Wolf BlockDriver *drv; 85234b5d2c6SMax Reitz Error *local_err = NULL; 85357915332SKevin Wolf 8546405875cSPaolo Bonzini assert(bs->file == NULL); 855707ff828SKevin Wolf assert(options != NULL && bs->options != options); 85657915332SKevin Wolf 85762392ebbSKevin Wolf opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort); 85862392ebbSKevin Wolf qemu_opts_absorb_qdict(opts, options, &local_err); 85962392ebbSKevin Wolf if (local_err) { 86062392ebbSKevin Wolf error_propagate(errp, local_err); 86162392ebbSKevin Wolf ret = -EINVAL; 86262392ebbSKevin Wolf goto fail_opts; 86362392ebbSKevin Wolf } 86462392ebbSKevin Wolf 86562392ebbSKevin Wolf driver_name = qemu_opt_get(opts, "driver"); 86662392ebbSKevin Wolf drv = bdrv_find_format(driver_name); 86762392ebbSKevin Wolf assert(drv != NULL); 86862392ebbSKevin Wolf 86945673671SKevin Wolf if (file != NULL) { 8709a4f4c31SKevin Wolf filename = file->bs->filename; 87145673671SKevin Wolf } else { 87245673671SKevin Wolf filename = qdict_get_try_str(options, "filename"); 87345673671SKevin Wolf } 87445673671SKevin Wolf 875765003dbSKevin Wolf if (drv->bdrv_needs_filename && !filename) { 876765003dbSKevin Wolf error_setg(errp, "The '%s' block driver requires a file name", 877765003dbSKevin Wolf drv->format_name); 87818edf289SKevin Wolf ret = -EINVAL; 87918edf289SKevin Wolf goto fail_opts; 88018edf289SKevin Wolf } 88118edf289SKevin Wolf 88262392ebbSKevin Wolf trace_bdrv_open_common(bs, filename ?: "", flags, drv->format_name); 88362392ebbSKevin Wolf 88418edf289SKevin Wolf node_name = qemu_opt_get(opts, "node-name"); 885636ea370SKevin Wolf bdrv_assign_node_name(bs, node_name, &local_err); 8860fb6395cSMarkus Armbruster if (local_err) { 887636ea370SKevin Wolf error_propagate(errp, local_err); 88818edf289SKevin Wolf ret = -EINVAL; 88918edf289SKevin Wolf goto fail_opts; 8905d186eb0SKevin Wolf } 8915d186eb0SKevin Wolf 892c25f53b0SPaolo Bonzini bs->request_alignment = 512; 8930d51b4deSAsias He bs->zero_beyond_eof = true; 894b64ec4e4SFam Zheng open_flags = bdrv_open_flags(bs, flags); 895b64ec4e4SFam Zheng bs->read_only = !(open_flags & BDRV_O_RDWR); 896b64ec4e4SFam Zheng 897b64ec4e4SFam Zheng if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) { 8988f94a6e4SKevin Wolf error_setg(errp, 8998f94a6e4SKevin Wolf !bs->read_only && bdrv_is_whitelisted(drv, true) 9008f94a6e4SKevin Wolf ? "Driver '%s' can only be used for read-only devices" 9018f94a6e4SKevin Wolf : "Driver '%s' is not whitelisted", 9028f94a6e4SKevin Wolf drv->format_name); 90318edf289SKevin Wolf ret = -ENOTSUP; 90418edf289SKevin Wolf goto fail_opts; 905b64ec4e4SFam Zheng } 90657915332SKevin Wolf 90753fec9d3SStefan Hajnoczi assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */ 9080ebd24e0SKevin Wolf if (flags & BDRV_O_COPY_ON_READ) { 9090ebd24e0SKevin Wolf if (!bs->read_only) { 91053fec9d3SStefan Hajnoczi bdrv_enable_copy_on_read(bs); 9110ebd24e0SKevin Wolf } else { 9120ebd24e0SKevin Wolf error_setg(errp, "Can't use copy-on-read on read-only device"); 91318edf289SKevin Wolf ret = -EINVAL; 91418edf289SKevin Wolf goto fail_opts; 9150ebd24e0SKevin Wolf } 91653fec9d3SStefan Hajnoczi } 91753fec9d3SStefan Hajnoczi 918c2ad1b0cSKevin Wolf if (filename != NULL) { 91957915332SKevin Wolf pstrcpy(bs->filename, sizeof(bs->filename), filename); 920c2ad1b0cSKevin Wolf } else { 921c2ad1b0cSKevin Wolf bs->filename[0] = '\0'; 922c2ad1b0cSKevin Wolf } 92391af7014SMax Reitz pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename); 92457915332SKevin Wolf 92557915332SKevin Wolf bs->drv = drv; 9267267c094SAnthony Liguori bs->opaque = g_malloc0(drv->instance_size); 92757915332SKevin Wolf 92803f541bdSStefan Hajnoczi bs->enable_write_cache = !!(flags & BDRV_O_CACHE_WB); 929e7c63796SStefan Hajnoczi 93066f82ceeSKevin Wolf /* Open the image, either directly or using a protocol */ 93166f82ceeSKevin Wolf if (drv->bdrv_file_open) { 9325d186eb0SKevin Wolf assert(file == NULL); 933030be321SBenoît Canet assert(!drv->bdrv_needs_filename || filename != NULL); 93434b5d2c6SMax Reitz ret = drv->bdrv_file_open(bs, options, open_flags, &local_err); 935f500a6d3SKevin Wolf } else { 9362af5ef70SKevin Wolf if (file == NULL) { 93734b5d2c6SMax Reitz error_setg(errp, "Can't use '%s' as a block driver for the " 93834b5d2c6SMax Reitz "protocol level", drv->format_name); 9392af5ef70SKevin Wolf ret = -EINVAL; 9402af5ef70SKevin Wolf goto free_and_fail; 9412af5ef70SKevin Wolf } 942f500a6d3SKevin Wolf bs->file = file; 94334b5d2c6SMax Reitz ret = drv->bdrv_open(bs, options, open_flags, &local_err); 94466f82ceeSKevin Wolf } 94566f82ceeSKevin Wolf 94657915332SKevin Wolf if (ret < 0) { 94784d18f06SMarkus Armbruster if (local_err) { 94834b5d2c6SMax Reitz error_propagate(errp, local_err); 9492fa9aa59SDunrong Huang } else if (bs->filename[0]) { 9502fa9aa59SDunrong Huang error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename); 95134b5d2c6SMax Reitz } else { 95234b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not open image"); 95334b5d2c6SMax Reitz } 95457915332SKevin Wolf goto free_and_fail; 95557915332SKevin Wolf } 95657915332SKevin Wolf 957a1f688f4SMarkus Armbruster if (bs->encrypted) { 958a1f688f4SMarkus Armbruster error_report("Encrypted images are deprecated"); 959a1f688f4SMarkus Armbruster error_printf("Support for them will be removed in a future release.\n" 960a1f688f4SMarkus Armbruster "You can use 'qemu-img convert' to convert your image" 961a1f688f4SMarkus Armbruster " to an unencrypted one.\n"); 962a1f688f4SMarkus Armbruster } 963a1f688f4SMarkus Armbruster 96451762288SStefan Hajnoczi ret = refresh_total_sectors(bs, bs->total_sectors); 96551762288SStefan Hajnoczi if (ret < 0) { 96634b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not refresh total sector count"); 96751762288SStefan Hajnoczi goto free_and_fail; 96857915332SKevin Wolf } 96951762288SStefan Hajnoczi 9703baca891SKevin Wolf bdrv_refresh_limits(bs, &local_err); 9713baca891SKevin Wolf if (local_err) { 9723baca891SKevin Wolf error_propagate(errp, local_err); 9733baca891SKevin Wolf ret = -EINVAL; 9743baca891SKevin Wolf goto free_and_fail; 9753baca891SKevin Wolf } 9763baca891SKevin Wolf 977c25f53b0SPaolo Bonzini assert(bdrv_opt_mem_align(bs) != 0); 9784196d2f0SDenis V. Lunev assert(bdrv_min_mem_align(bs) != 0); 979b192af8aSDimitris Aragiorgis assert((bs->request_alignment != 0) || bdrv_is_sg(bs)); 98018edf289SKevin Wolf 98118edf289SKevin Wolf qemu_opts_del(opts); 98257915332SKevin Wolf return 0; 98357915332SKevin Wolf 98457915332SKevin Wolf free_and_fail: 98566f82ceeSKevin Wolf bs->file = NULL; 9867267c094SAnthony Liguori g_free(bs->opaque); 98757915332SKevin Wolf bs->opaque = NULL; 98857915332SKevin Wolf bs->drv = NULL; 98918edf289SKevin Wolf fail_opts: 99018edf289SKevin Wolf qemu_opts_del(opts); 99157915332SKevin Wolf return ret; 99257915332SKevin Wolf } 99357915332SKevin Wolf 9945e5c4f63SKevin Wolf static QDict *parse_json_filename(const char *filename, Error **errp) 9955e5c4f63SKevin Wolf { 9965e5c4f63SKevin Wolf QObject *options_obj; 9975e5c4f63SKevin Wolf QDict *options; 9985e5c4f63SKevin Wolf int ret; 9995e5c4f63SKevin Wolf 10005e5c4f63SKevin Wolf ret = strstart(filename, "json:", &filename); 10015e5c4f63SKevin Wolf assert(ret); 10025e5c4f63SKevin Wolf 10035e5c4f63SKevin Wolf options_obj = qobject_from_json(filename); 10045e5c4f63SKevin Wolf if (!options_obj) { 10055e5c4f63SKevin Wolf error_setg(errp, "Could not parse the JSON options"); 10065e5c4f63SKevin Wolf return NULL; 10075e5c4f63SKevin Wolf } 10085e5c4f63SKevin Wolf 10095e5c4f63SKevin Wolf if (qobject_type(options_obj) != QTYPE_QDICT) { 10105e5c4f63SKevin Wolf qobject_decref(options_obj); 10115e5c4f63SKevin Wolf error_setg(errp, "Invalid JSON object given"); 10125e5c4f63SKevin Wolf return NULL; 10135e5c4f63SKevin Wolf } 10145e5c4f63SKevin Wolf 10155e5c4f63SKevin Wolf options = qobject_to_qdict(options_obj); 10165e5c4f63SKevin Wolf qdict_flatten(options); 10175e5c4f63SKevin Wolf 10185e5c4f63SKevin Wolf return options; 10195e5c4f63SKevin Wolf } 10205e5c4f63SKevin Wolf 1021*de3b53f0SKevin Wolf static void parse_json_protocol(QDict *options, const char **pfilename, 1022*de3b53f0SKevin Wolf Error **errp) 1023*de3b53f0SKevin Wolf { 1024*de3b53f0SKevin Wolf QDict *json_options; 1025*de3b53f0SKevin Wolf Error *local_err = NULL; 1026*de3b53f0SKevin Wolf 1027*de3b53f0SKevin Wolf /* Parse json: pseudo-protocol */ 1028*de3b53f0SKevin Wolf if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) { 1029*de3b53f0SKevin Wolf return; 1030*de3b53f0SKevin Wolf } 1031*de3b53f0SKevin Wolf 1032*de3b53f0SKevin Wolf json_options = parse_json_filename(*pfilename, &local_err); 1033*de3b53f0SKevin Wolf if (local_err) { 1034*de3b53f0SKevin Wolf error_propagate(errp, local_err); 1035*de3b53f0SKevin Wolf return; 1036*de3b53f0SKevin Wolf } 1037*de3b53f0SKevin Wolf 1038*de3b53f0SKevin Wolf /* Options given in the filename have lower priority than options 1039*de3b53f0SKevin Wolf * specified directly */ 1040*de3b53f0SKevin Wolf qdict_join(options, json_options, false); 1041*de3b53f0SKevin Wolf QDECREF(json_options); 1042*de3b53f0SKevin Wolf *pfilename = NULL; 1043*de3b53f0SKevin Wolf } 1044*de3b53f0SKevin Wolf 104557915332SKevin Wolf /* 1046f54120ffSKevin Wolf * Fills in default options for opening images and converts the legacy 1047f54120ffSKevin Wolf * filename/flags pair to option QDict entries. 104853a29513SMax Reitz * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a 104953a29513SMax Reitz * block driver has been specified explicitly. 1050f54120ffSKevin Wolf */ 1051*de3b53f0SKevin Wolf static int bdrv_fill_options(QDict **options, const char *filename, 1052053e1578SMax Reitz int *flags, Error **errp) 1053f54120ffSKevin Wolf { 1054f54120ffSKevin Wolf const char *drvname; 105553a29513SMax Reitz bool protocol = *flags & BDRV_O_PROTOCOL; 1056f54120ffSKevin Wolf bool parse_filename = false; 1057053e1578SMax Reitz BlockDriver *drv = NULL; 1058f54120ffSKevin Wolf Error *local_err = NULL; 1059f54120ffSKevin Wolf 106053a29513SMax Reitz drvname = qdict_get_try_str(*options, "driver"); 1061053e1578SMax Reitz if (drvname) { 1062053e1578SMax Reitz drv = bdrv_find_format(drvname); 1063053e1578SMax Reitz if (!drv) { 1064053e1578SMax Reitz error_setg(errp, "Unknown driver '%s'", drvname); 1065053e1578SMax Reitz return -ENOENT; 1066053e1578SMax Reitz } 106753a29513SMax Reitz /* If the user has explicitly specified the driver, this choice should 106853a29513SMax Reitz * override the BDRV_O_PROTOCOL flag */ 1069053e1578SMax Reitz protocol = drv->bdrv_file_open; 107053a29513SMax Reitz } 107153a29513SMax Reitz 107253a29513SMax Reitz if (protocol) { 107353a29513SMax Reitz *flags |= BDRV_O_PROTOCOL; 107453a29513SMax Reitz } else { 107553a29513SMax Reitz *flags &= ~BDRV_O_PROTOCOL; 107653a29513SMax Reitz } 107753a29513SMax Reitz 1078f54120ffSKevin Wolf /* Fetch the file name from the options QDict if necessary */ 107917b005f1SKevin Wolf if (protocol && filename) { 1080f54120ffSKevin Wolf if (!qdict_haskey(*options, "filename")) { 1081f54120ffSKevin Wolf qdict_put(*options, "filename", qstring_from_str(filename)); 1082f54120ffSKevin Wolf parse_filename = true; 1083f54120ffSKevin Wolf } else { 1084f54120ffSKevin Wolf error_setg(errp, "Can't specify 'file' and 'filename' options at " 1085f54120ffSKevin Wolf "the same time"); 1086f54120ffSKevin Wolf return -EINVAL; 1087f54120ffSKevin Wolf } 1088f54120ffSKevin Wolf } 1089f54120ffSKevin Wolf 1090f54120ffSKevin Wolf /* Find the right block driver */ 1091f54120ffSKevin Wolf filename = qdict_get_try_str(*options, "filename"); 1092f54120ffSKevin Wolf 109317b005f1SKevin Wolf if (!drvname && protocol) { 1094f54120ffSKevin Wolf if (filename) { 1095b65a5e12SMax Reitz drv = bdrv_find_protocol(filename, parse_filename, errp); 1096f54120ffSKevin Wolf if (!drv) { 1097f54120ffSKevin Wolf return -EINVAL; 1098f54120ffSKevin Wolf } 1099f54120ffSKevin Wolf 1100f54120ffSKevin Wolf drvname = drv->format_name; 1101f54120ffSKevin Wolf qdict_put(*options, "driver", qstring_from_str(drvname)); 1102f54120ffSKevin Wolf } else { 1103f54120ffSKevin Wolf error_setg(errp, "Must specify either driver or file"); 1104f54120ffSKevin Wolf return -EINVAL; 1105f54120ffSKevin Wolf } 110617b005f1SKevin Wolf } 110717b005f1SKevin Wolf 110817b005f1SKevin Wolf assert(drv || !protocol); 1109f54120ffSKevin Wolf 1110f54120ffSKevin Wolf /* Driver-specific filename parsing */ 111117b005f1SKevin Wolf if (drv && drv->bdrv_parse_filename && parse_filename) { 1112f54120ffSKevin Wolf drv->bdrv_parse_filename(filename, *options, &local_err); 1113f54120ffSKevin Wolf if (local_err) { 1114f54120ffSKevin Wolf error_propagate(errp, local_err); 1115f54120ffSKevin Wolf return -EINVAL; 1116f54120ffSKevin Wolf } 1117f54120ffSKevin Wolf 1118f54120ffSKevin Wolf if (!drv->bdrv_needs_filename) { 1119f54120ffSKevin Wolf qdict_del(*options, "filename"); 1120f54120ffSKevin Wolf } 1121f54120ffSKevin Wolf } 1122f54120ffSKevin Wolf 1123d44f928aSMax Reitz if (runstate_check(RUN_STATE_INMIGRATE)) { 1124d44f928aSMax Reitz *flags |= BDRV_O_INCOMING; 1125d44f928aSMax Reitz } 1126d44f928aSMax Reitz 1127f54120ffSKevin Wolf return 0; 1128f54120ffSKevin Wolf } 1129f54120ffSKevin Wolf 1130b4b059f6SKevin Wolf static BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs, 1131df581792SKevin Wolf BlockDriverState *child_bs, 1132260fecf1SKevin Wolf const char *child_name, 1133df581792SKevin Wolf const BdrvChildRole *child_role) 1134df581792SKevin Wolf { 1135df581792SKevin Wolf BdrvChild *child = g_new(BdrvChild, 1); 1136df581792SKevin Wolf *child = (BdrvChild) { 1137df581792SKevin Wolf .bs = child_bs, 1138260fecf1SKevin Wolf .name = g_strdup(child_name), 1139df581792SKevin Wolf .role = child_role, 1140df581792SKevin Wolf }; 1141df581792SKevin Wolf 1142df581792SKevin Wolf QLIST_INSERT_HEAD(&parent_bs->children, child, next); 1143d42a8a93SKevin Wolf QLIST_INSERT_HEAD(&child_bs->parents, child, next_parent); 1144b4b059f6SKevin Wolf 1145b4b059f6SKevin Wolf return child; 1146df581792SKevin Wolf } 1147df581792SKevin Wolf 11483f09bfbcSKevin Wolf static void bdrv_detach_child(BdrvChild *child) 114933a60407SKevin Wolf { 115033a60407SKevin Wolf QLIST_REMOVE(child, next); 1151d42a8a93SKevin Wolf QLIST_REMOVE(child, next_parent); 1152260fecf1SKevin Wolf g_free(child->name); 115333a60407SKevin Wolf g_free(child); 115433a60407SKevin Wolf } 115533a60407SKevin Wolf 115633a60407SKevin Wolf void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child) 115733a60407SKevin Wolf { 1158779020cbSKevin Wolf BlockDriverState *child_bs; 1159779020cbSKevin Wolf 1160779020cbSKevin Wolf if (child == NULL) { 1161779020cbSKevin Wolf return; 1162779020cbSKevin Wolf } 116333a60407SKevin Wolf 116433a60407SKevin Wolf if (child->bs->inherits_from == parent) { 116533a60407SKevin Wolf child->bs->inherits_from = NULL; 116633a60407SKevin Wolf } 116733a60407SKevin Wolf 1168779020cbSKevin Wolf child_bs = child->bs; 116933a60407SKevin Wolf bdrv_detach_child(child); 117033a60407SKevin Wolf bdrv_unref(child_bs); 117133a60407SKevin Wolf } 117233a60407SKevin Wolf 11735db15a57SKevin Wolf /* 11745db15a57SKevin Wolf * Sets the backing file link of a BDS. A new reference is created; callers 11755db15a57SKevin Wolf * which don't need their own reference any more must call bdrv_unref(). 11765db15a57SKevin Wolf */ 11778d24cce1SFam Zheng void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd) 11788d24cce1SFam Zheng { 11795db15a57SKevin Wolf if (backing_hd) { 11805db15a57SKevin Wolf bdrv_ref(backing_hd); 11815db15a57SKevin Wolf } 11828d24cce1SFam Zheng 1183760e0063SKevin Wolf if (bs->backing) { 1184826b6ca0SFam Zheng assert(bs->backing_blocker); 1185760e0063SKevin Wolf bdrv_op_unblock_all(bs->backing->bs, bs->backing_blocker); 11865db15a57SKevin Wolf bdrv_unref_child(bs, bs->backing); 1187826b6ca0SFam Zheng } else if (backing_hd) { 1188826b6ca0SFam Zheng error_setg(&bs->backing_blocker, 118981e5f78aSAlberto Garcia "node is used as backing hd of '%s'", 119081e5f78aSAlberto Garcia bdrv_get_device_or_node_name(bs)); 1191826b6ca0SFam Zheng } 1192826b6ca0SFam Zheng 11938d24cce1SFam Zheng if (!backing_hd) { 1194826b6ca0SFam Zheng error_free(bs->backing_blocker); 1195826b6ca0SFam Zheng bs->backing_blocker = NULL; 1196760e0063SKevin Wolf bs->backing = NULL; 11978d24cce1SFam Zheng goto out; 11988d24cce1SFam Zheng } 1199260fecf1SKevin Wolf bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing); 12008d24cce1SFam Zheng bs->open_flags &= ~BDRV_O_NO_BACKING; 12018d24cce1SFam Zheng pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_hd->filename); 12028d24cce1SFam Zheng pstrcpy(bs->backing_format, sizeof(bs->backing_format), 12038d24cce1SFam Zheng backing_hd->drv ? backing_hd->drv->format_name : ""); 1204826b6ca0SFam Zheng 1205760e0063SKevin Wolf bdrv_op_block_all(backing_hd, bs->backing_blocker); 1206826b6ca0SFam Zheng /* Otherwise we won't be able to commit due to check in bdrv_commit */ 1207760e0063SKevin Wolf bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET, 1208826b6ca0SFam Zheng bs->backing_blocker); 12098d24cce1SFam Zheng out: 12103baca891SKevin Wolf bdrv_refresh_limits(bs, NULL); 12118d24cce1SFam Zheng } 12128d24cce1SFam Zheng 121331ca6d07SKevin Wolf /* 121431ca6d07SKevin Wolf * Opens the backing file for a BlockDriverState if not yet open 121531ca6d07SKevin Wolf * 1216d9b7b057SKevin Wolf * bdref_key specifies the key for the image's BlockdevRef in the options QDict. 1217d9b7b057SKevin Wolf * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict 1218d9b7b057SKevin Wolf * itself, all options starting with "${bdref_key}." are considered part of the 1219d9b7b057SKevin Wolf * BlockdevRef. 1220d9b7b057SKevin Wolf * 1221d9b7b057SKevin Wolf * TODO Can this be unified with bdrv_open_image()? 122231ca6d07SKevin Wolf */ 1223d9b7b057SKevin Wolf int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options, 1224d9b7b057SKevin Wolf const char *bdref_key, Error **errp) 12259156df12SPaolo Bonzini { 12261ba4b6a5SBenoît Canet char *backing_filename = g_malloc0(PATH_MAX); 1227d9b7b057SKevin Wolf char *bdref_key_dot; 1228d9b7b057SKevin Wolf const char *reference = NULL; 1229317fc44eSKevin Wolf int ret = 0; 12308d24cce1SFam Zheng BlockDriverState *backing_hd; 1231d9b7b057SKevin Wolf QDict *options; 1232d9b7b057SKevin Wolf QDict *tmp_parent_options = NULL; 123334b5d2c6SMax Reitz Error *local_err = NULL; 12349156df12SPaolo Bonzini 1235760e0063SKevin Wolf if (bs->backing != NULL) { 12361ba4b6a5SBenoît Canet goto free_exit; 12379156df12SPaolo Bonzini } 12389156df12SPaolo Bonzini 123931ca6d07SKevin Wolf /* NULL means an empty set of options */ 1240d9b7b057SKevin Wolf if (parent_options == NULL) { 1241d9b7b057SKevin Wolf tmp_parent_options = qdict_new(); 1242d9b7b057SKevin Wolf parent_options = tmp_parent_options; 124331ca6d07SKevin Wolf } 124431ca6d07SKevin Wolf 12459156df12SPaolo Bonzini bs->open_flags &= ~BDRV_O_NO_BACKING; 1246d9b7b057SKevin Wolf 1247d9b7b057SKevin Wolf bdref_key_dot = g_strdup_printf("%s.", bdref_key); 1248d9b7b057SKevin Wolf qdict_extract_subqdict(parent_options, &options, bdref_key_dot); 1249d9b7b057SKevin Wolf g_free(bdref_key_dot); 1250d9b7b057SKevin Wolf 1251d9b7b057SKevin Wolf reference = qdict_get_try_str(parent_options, bdref_key); 1252d9b7b057SKevin Wolf if (reference || qdict_haskey(options, "file.filename")) { 12531cb6f506SKevin Wolf backing_filename[0] = '\0'; 12541cb6f506SKevin Wolf } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { 125531ca6d07SKevin Wolf QDECREF(options); 12561ba4b6a5SBenoît Canet goto free_exit; 1257dbecebddSFam Zheng } else { 12589f07429eSMax Reitz bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX, 12599f07429eSMax Reitz &local_err); 12609f07429eSMax Reitz if (local_err) { 12619f07429eSMax Reitz ret = -EINVAL; 12629f07429eSMax Reitz error_propagate(errp, local_err); 12639f07429eSMax Reitz QDECREF(options); 12649f07429eSMax Reitz goto free_exit; 12659f07429eSMax Reitz } 12669156df12SPaolo Bonzini } 12679156df12SPaolo Bonzini 12688ee79e70SKevin Wolf if (!bs->drv || !bs->drv->supports_backing) { 12698ee79e70SKevin Wolf ret = -EINVAL; 12708ee79e70SKevin Wolf error_setg(errp, "Driver doesn't support backing files"); 12718ee79e70SKevin Wolf QDECREF(options); 12728ee79e70SKevin Wolf goto free_exit; 12738ee79e70SKevin Wolf } 12748ee79e70SKevin Wolf 1275c5f6e493SKevin Wolf if (bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) { 1276c5f6e493SKevin Wolf qdict_put(options, "driver", qstring_from_str(bs->backing_format)); 12779156df12SPaolo Bonzini } 12789156df12SPaolo Bonzini 1279d9b7b057SKevin Wolf backing_hd = NULL; 1280f3930ed0SKevin Wolf ret = bdrv_open_inherit(&backing_hd, 1281f3930ed0SKevin Wolf *backing_filename ? backing_filename : NULL, 1282d9b7b057SKevin Wolf reference, options, 0, bs, &child_backing, 1283d9b7b057SKevin Wolf &local_err); 12849156df12SPaolo Bonzini if (ret < 0) { 12859156df12SPaolo Bonzini bs->open_flags |= BDRV_O_NO_BACKING; 1286b04b6b6eSFam Zheng error_setg(errp, "Could not open backing file: %s", 1287b04b6b6eSFam Zheng error_get_pretty(local_err)); 1288b04b6b6eSFam Zheng error_free(local_err); 12891ba4b6a5SBenoît Canet goto free_exit; 12909156df12SPaolo Bonzini } 1291df581792SKevin Wolf 12925db15a57SKevin Wolf /* Hook up the backing file link; drop our reference, bs owns the 12935db15a57SKevin Wolf * backing_hd reference now */ 12948d24cce1SFam Zheng bdrv_set_backing_hd(bs, backing_hd); 12955db15a57SKevin Wolf bdrv_unref(backing_hd); 1296d80ac658SPeter Feiner 1297d9b7b057SKevin Wolf qdict_del(parent_options, bdref_key); 1298d9b7b057SKevin Wolf 12991ba4b6a5SBenoît Canet free_exit: 13001ba4b6a5SBenoît Canet g_free(backing_filename); 1301d9b7b057SKevin Wolf QDECREF(tmp_parent_options); 13021ba4b6a5SBenoît Canet return ret; 13039156df12SPaolo Bonzini } 13049156df12SPaolo Bonzini 1305b6ce07aaSKevin Wolf /* 1306da557aacSMax Reitz * Opens a disk image whose options are given as BlockdevRef in another block 1307da557aacSMax Reitz * device's options. 1308da557aacSMax Reitz * 1309da557aacSMax Reitz * If allow_none is true, no image will be opened if filename is false and no 1310b4b059f6SKevin Wolf * BlockdevRef is given. NULL will be returned, but errp remains unset. 1311da557aacSMax Reitz * 1312da557aacSMax Reitz * bdrev_key specifies the key for the image's BlockdevRef in the options QDict. 1313da557aacSMax Reitz * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict 1314da557aacSMax Reitz * itself, all options starting with "${bdref_key}." are considered part of the 1315da557aacSMax Reitz * BlockdevRef. 1316da557aacSMax Reitz * 1317da557aacSMax Reitz * The BlockdevRef will be removed from the options QDict. 1318da557aacSMax Reitz */ 1319b4b059f6SKevin Wolf BdrvChild *bdrv_open_child(const char *filename, 1320f3930ed0SKevin Wolf QDict *options, const char *bdref_key, 1321b4b059f6SKevin Wolf BlockDriverState* parent, 1322b4b059f6SKevin Wolf const BdrvChildRole *child_role, 1323f7d9fd8cSMax Reitz bool allow_none, Error **errp) 1324da557aacSMax Reitz { 1325b4b059f6SKevin Wolf BdrvChild *c = NULL; 1326b4b059f6SKevin Wolf BlockDriverState *bs; 1327da557aacSMax Reitz QDict *image_options; 1328da557aacSMax Reitz int ret; 1329da557aacSMax Reitz char *bdref_key_dot; 1330da557aacSMax Reitz const char *reference; 1331da557aacSMax Reitz 1332df581792SKevin Wolf assert(child_role != NULL); 1333f67503e5SMax Reitz 1334da557aacSMax Reitz bdref_key_dot = g_strdup_printf("%s.", bdref_key); 1335da557aacSMax Reitz qdict_extract_subqdict(options, &image_options, bdref_key_dot); 1336da557aacSMax Reitz g_free(bdref_key_dot); 1337da557aacSMax Reitz 1338da557aacSMax Reitz reference = qdict_get_try_str(options, bdref_key); 1339da557aacSMax Reitz if (!filename && !reference && !qdict_size(image_options)) { 1340b4b059f6SKevin Wolf if (!allow_none) { 1341da557aacSMax Reitz error_setg(errp, "A block device must be specified for \"%s\"", 1342da557aacSMax Reitz bdref_key); 1343da557aacSMax Reitz } 1344b20e61e0SMarkus Armbruster QDECREF(image_options); 1345da557aacSMax Reitz goto done; 1346da557aacSMax Reitz } 1347da557aacSMax Reitz 1348b4b059f6SKevin Wolf bs = NULL; 1349b4b059f6SKevin Wolf ret = bdrv_open_inherit(&bs, filename, reference, image_options, 0, 1350ce343771SMax Reitz parent, child_role, errp); 1351df581792SKevin Wolf if (ret < 0) { 1352df581792SKevin Wolf goto done; 1353df581792SKevin Wolf } 1354df581792SKevin Wolf 1355260fecf1SKevin Wolf c = bdrv_attach_child(parent, bs, bdref_key, child_role); 1356da557aacSMax Reitz 1357da557aacSMax Reitz done: 1358da557aacSMax Reitz qdict_del(options, bdref_key); 1359b4b059f6SKevin Wolf return c; 1360b4b059f6SKevin Wolf } 1361b4b059f6SKevin Wolf 13626b8aeca5SChen Gang int bdrv_append_temp_snapshot(BlockDriverState *bs, int flags, Error **errp) 1363b998875dSKevin Wolf { 1364b998875dSKevin Wolf /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */ 13651ba4b6a5SBenoît Canet char *tmp_filename = g_malloc0(PATH_MAX + 1); 1366b998875dSKevin Wolf int64_t total_size; 136783d0521aSChunyan Liu QemuOpts *opts = NULL; 1368b998875dSKevin Wolf QDict *snapshot_options; 1369b998875dSKevin Wolf BlockDriverState *bs_snapshot; 1370c2e0dbbfSFam Zheng Error *local_err = NULL; 1371b998875dSKevin Wolf int ret; 1372b998875dSKevin Wolf 1373b998875dSKevin Wolf /* if snapshot, we create a temporary backing file and open it 1374b998875dSKevin Wolf instead of opening 'filename' directly */ 1375b998875dSKevin Wolf 1376b998875dSKevin Wolf /* Get the required size from the image */ 1377f187743aSKevin Wolf total_size = bdrv_getlength(bs); 1378f187743aSKevin Wolf if (total_size < 0) { 13796b8aeca5SChen Gang ret = total_size; 1380f187743aSKevin Wolf error_setg_errno(errp, -total_size, "Could not get image size"); 13811ba4b6a5SBenoît Canet goto out; 1382f187743aSKevin Wolf } 1383b998875dSKevin Wolf 1384b998875dSKevin Wolf /* Create the temporary image */ 13851ba4b6a5SBenoît Canet ret = get_tmp_filename(tmp_filename, PATH_MAX + 1); 1386b998875dSKevin Wolf if (ret < 0) { 1387b998875dSKevin Wolf error_setg_errno(errp, -ret, "Could not get temporary filename"); 13881ba4b6a5SBenoît Canet goto out; 1389b998875dSKevin Wolf } 1390b998875dSKevin Wolf 1391ef810437SMax Reitz opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0, 1392c282e1fdSChunyan Liu &error_abort); 139339101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort); 1394ef810437SMax Reitz ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, &local_err); 139583d0521aSChunyan Liu qemu_opts_del(opts); 1396b998875dSKevin Wolf if (ret < 0) { 1397b998875dSKevin Wolf error_setg_errno(errp, -ret, "Could not create temporary overlay " 1398b998875dSKevin Wolf "'%s': %s", tmp_filename, 1399b998875dSKevin Wolf error_get_pretty(local_err)); 1400b998875dSKevin Wolf error_free(local_err); 14011ba4b6a5SBenoît Canet goto out; 1402b998875dSKevin Wolf } 1403b998875dSKevin Wolf 1404b998875dSKevin Wolf /* Prepare a new options QDict for the temporary file */ 1405b998875dSKevin Wolf snapshot_options = qdict_new(); 1406b998875dSKevin Wolf qdict_put(snapshot_options, "file.driver", 1407b998875dSKevin Wolf qstring_from_str("file")); 1408b998875dSKevin Wolf qdict_put(snapshot_options, "file.filename", 1409b998875dSKevin Wolf qstring_from_str(tmp_filename)); 1410e6641719SMax Reitz qdict_put(snapshot_options, "driver", 1411e6641719SMax Reitz qstring_from_str("qcow2")); 1412b998875dSKevin Wolf 1413e4e9986bSMarkus Armbruster bs_snapshot = bdrv_new(); 1414b998875dSKevin Wolf 1415b998875dSKevin Wolf ret = bdrv_open(&bs_snapshot, NULL, NULL, snapshot_options, 14166ebf9aa2SMax Reitz flags, &local_err); 1417b998875dSKevin Wolf if (ret < 0) { 1418b998875dSKevin Wolf error_propagate(errp, local_err); 14191ba4b6a5SBenoît Canet goto out; 1420b998875dSKevin Wolf } 1421b998875dSKevin Wolf 1422b998875dSKevin Wolf bdrv_append(bs_snapshot, bs); 14231ba4b6a5SBenoît Canet 14241ba4b6a5SBenoît Canet out: 14251ba4b6a5SBenoît Canet g_free(tmp_filename); 14266b8aeca5SChen Gang return ret; 1427b998875dSKevin Wolf } 1428b998875dSKevin Wolf 1429da557aacSMax Reitz /* 1430b6ce07aaSKevin Wolf * Opens a disk image (raw, qcow2, vmdk, ...) 1431de9c0cecSKevin Wolf * 1432de9c0cecSKevin Wolf * options is a QDict of options to pass to the block drivers, or NULL for an 1433de9c0cecSKevin Wolf * empty set of options. The reference to the QDict belongs to the block layer 1434de9c0cecSKevin Wolf * after the call (even on failure), so if the caller intends to reuse the 1435de9c0cecSKevin Wolf * dictionary, it needs to use QINCREF() before calling bdrv_open. 1436f67503e5SMax Reitz * 1437f67503e5SMax Reitz * If *pbs is NULL, a new BDS will be created with a pointer to it stored there. 1438f67503e5SMax Reitz * If it is not NULL, the referenced BDS will be reused. 1439ddf5636dSMax Reitz * 1440ddf5636dSMax Reitz * The reference parameter may be used to specify an existing block device which 1441ddf5636dSMax Reitz * should be opened. If specified, neither options nor a filename may be given, 1442ddf5636dSMax Reitz * nor can an existing BDS be reused (that is, *pbs has to be NULL). 1443b6ce07aaSKevin Wolf */ 1444f3930ed0SKevin Wolf static int bdrv_open_inherit(BlockDriverState **pbs, const char *filename, 1445ddf5636dSMax Reitz const char *reference, QDict *options, int flags, 1446f3930ed0SKevin Wolf BlockDriverState *parent, 1447ce343771SMax Reitz const BdrvChildRole *child_role, Error **errp) 1448ea2384d3Sbellard { 1449b6ce07aaSKevin Wolf int ret; 14509a4f4c31SKevin Wolf BdrvChild *file = NULL; 14519a4f4c31SKevin Wolf BlockDriverState *bs; 1452ce343771SMax Reitz BlockDriver *drv = NULL; 145374fe54f2SKevin Wolf const char *drvname; 14543e8c2e57SAlberto Garcia const char *backing; 145534b5d2c6SMax Reitz Error *local_err = NULL; 1456b1e6fc08SKevin Wolf int snapshot_flags = 0; 145733e3963eSbellard 1458f67503e5SMax Reitz assert(pbs); 1459f3930ed0SKevin Wolf assert(!child_role || !flags); 1460f3930ed0SKevin Wolf assert(!child_role == !parent); 1461f67503e5SMax Reitz 1462ddf5636dSMax Reitz if (reference) { 1463ddf5636dSMax Reitz bool options_non_empty = options ? qdict_size(options) : false; 1464ddf5636dSMax Reitz QDECREF(options); 1465ddf5636dSMax Reitz 1466ddf5636dSMax Reitz if (*pbs) { 1467ddf5636dSMax Reitz error_setg(errp, "Cannot reuse an existing BDS when referencing " 1468ddf5636dSMax Reitz "another block device"); 1469ddf5636dSMax Reitz return -EINVAL; 1470ddf5636dSMax Reitz } 1471ddf5636dSMax Reitz 1472ddf5636dSMax Reitz if (filename || options_non_empty) { 1473ddf5636dSMax Reitz error_setg(errp, "Cannot reference an existing block device with " 1474ddf5636dSMax Reitz "additional options or a new filename"); 1475ddf5636dSMax Reitz return -EINVAL; 1476ddf5636dSMax Reitz } 1477ddf5636dSMax Reitz 1478ddf5636dSMax Reitz bs = bdrv_lookup_bs(reference, reference, errp); 1479ddf5636dSMax Reitz if (!bs) { 1480ddf5636dSMax Reitz return -ENODEV; 1481ddf5636dSMax Reitz } 1482ddf5636dSMax Reitz bdrv_ref(bs); 1483ddf5636dSMax Reitz *pbs = bs; 1484ddf5636dSMax Reitz return 0; 1485ddf5636dSMax Reitz } 1486ddf5636dSMax Reitz 1487f67503e5SMax Reitz if (*pbs) { 1488f67503e5SMax Reitz bs = *pbs; 1489f67503e5SMax Reitz } else { 1490e4e9986bSMarkus Armbruster bs = bdrv_new(); 1491f67503e5SMax Reitz } 1492f67503e5SMax Reitz 1493de9c0cecSKevin Wolf /* NULL means an empty set of options */ 1494de9c0cecSKevin Wolf if (options == NULL) { 1495de9c0cecSKevin Wolf options = qdict_new(); 1496de9c0cecSKevin Wolf } 1497de9c0cecSKevin Wolf 1498*de3b53f0SKevin Wolf parse_json_protocol(options, &filename, &local_err); 1499*de3b53f0SKevin Wolf if (local_err) { 1500*de3b53f0SKevin Wolf ret = -EINVAL; 1501*de3b53f0SKevin Wolf goto fail; 1502*de3b53f0SKevin Wolf } 1503*de3b53f0SKevin Wolf 1504f3930ed0SKevin Wolf if (child_role) { 1505bddcec37SKevin Wolf bs->inherits_from = parent; 15068e2160e2SKevin Wolf child_role->inherit_options(&flags, options, 15078e2160e2SKevin Wolf parent->open_flags, parent->options); 1508f3930ed0SKevin Wolf } 1509f3930ed0SKevin Wolf 1510*de3b53f0SKevin Wolf ret = bdrv_fill_options(&options, filename, &flags, &local_err); 1511462f5bcfSKevin Wolf if (local_err) { 1512462f5bcfSKevin Wolf goto fail; 1513462f5bcfSKevin Wolf } 1514462f5bcfSKevin Wolf 151562392ebbSKevin Wolf bs->open_flags = flags; 151662392ebbSKevin Wolf bs->options = options; 151762392ebbSKevin Wolf options = qdict_clone_shallow(options); 151862392ebbSKevin Wolf 151976c591b0SKevin Wolf /* Find the right image format driver */ 152076c591b0SKevin Wolf drvname = qdict_get_try_str(options, "driver"); 152176c591b0SKevin Wolf if (drvname) { 152276c591b0SKevin Wolf drv = bdrv_find_format(drvname); 152376c591b0SKevin Wolf if (!drv) { 152476c591b0SKevin Wolf error_setg(errp, "Unknown driver: '%s'", drvname); 152576c591b0SKevin Wolf ret = -EINVAL; 152676c591b0SKevin Wolf goto fail; 152776c591b0SKevin Wolf } 152876c591b0SKevin Wolf } 152976c591b0SKevin Wolf 153076c591b0SKevin Wolf assert(drvname || !(flags & BDRV_O_PROTOCOL)); 153176c591b0SKevin Wolf 15323e8c2e57SAlberto Garcia backing = qdict_get_try_str(options, "backing"); 15333e8c2e57SAlberto Garcia if (backing && *backing == '\0') { 15343e8c2e57SAlberto Garcia flags |= BDRV_O_NO_BACKING; 15353e8c2e57SAlberto Garcia qdict_del(options, "backing"); 15363e8c2e57SAlberto Garcia } 15373e8c2e57SAlberto Garcia 1538f500a6d3SKevin Wolf /* Open image file without format layer */ 1539f4788adcSKevin Wolf if ((flags & BDRV_O_PROTOCOL) == 0) { 1540be028adcSJeff Cody if (flags & BDRV_O_RDWR) { 1541be028adcSJeff Cody flags |= BDRV_O_ALLOW_RDWR; 1542be028adcSJeff Cody } 1543b1e6fc08SKevin Wolf if (flags & BDRV_O_SNAPSHOT) { 1544b1e6fc08SKevin Wolf snapshot_flags = bdrv_temp_snapshot_flags(flags); 15458e2160e2SKevin Wolf bdrv_backing_options(&flags, options, flags, options); 1546b1e6fc08SKevin Wolf } 1547be028adcSJeff Cody 1548f3930ed0SKevin Wolf bs->open_flags = flags; 15491fdd6933SKevin Wolf 15509a4f4c31SKevin Wolf file = bdrv_open_child(filename, options, "file", bs, 15511fdd6933SKevin Wolf &child_file, true, &local_err); 15521fdd6933SKevin Wolf if (local_err) { 15531fdd6933SKevin Wolf ret = -EINVAL; 15548bfea15dSKevin Wolf goto fail; 1555f500a6d3SKevin Wolf } 1556f4788adcSKevin Wolf } 1557f500a6d3SKevin Wolf 155876c591b0SKevin Wolf /* Image format probing */ 155938f3ef57SKevin Wolf bs->probed = !drv; 156076c591b0SKevin Wolf if (!drv && file) { 15619a4f4c31SKevin Wolf ret = find_image_format(file->bs, filename, &drv, &local_err); 156217b005f1SKevin Wolf if (ret < 0) { 156317b005f1SKevin Wolf goto fail; 156417b005f1SKevin Wolf } 156562392ebbSKevin Wolf /* 156662392ebbSKevin Wolf * This option update would logically belong in bdrv_fill_options(), 156762392ebbSKevin Wolf * but we first need to open bs->file for the probing to work, while 156862392ebbSKevin Wolf * opening bs->file already requires the (mostly) final set of options 156962392ebbSKevin Wolf * so that cache mode etc. can be inherited. 157062392ebbSKevin Wolf * 157162392ebbSKevin Wolf * Adding the driver later is somewhat ugly, but it's not an option 157262392ebbSKevin Wolf * that would ever be inherited, so it's correct. We just need to make 157362392ebbSKevin Wolf * sure to update both bs->options (which has the full effective 157462392ebbSKevin Wolf * options for bs) and options (which has file.* already removed). 157562392ebbSKevin Wolf */ 157662392ebbSKevin Wolf qdict_put(bs->options, "driver", qstring_from_str(drv->format_name)); 157762392ebbSKevin Wolf qdict_put(options, "driver", qstring_from_str(drv->format_name)); 157876c591b0SKevin Wolf } else if (!drv) { 15792a05cbe4SMax Reitz error_setg(errp, "Must specify either driver or file"); 15802a05cbe4SMax Reitz ret = -EINVAL; 15818bfea15dSKevin Wolf goto fail; 15822a05cbe4SMax Reitz } 1583f500a6d3SKevin Wolf 158453a29513SMax Reitz /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */ 158553a29513SMax Reitz assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open); 158653a29513SMax Reitz /* file must be NULL if a protocol BDS is about to be created 158753a29513SMax Reitz * (the inverse results in an error message from bdrv_open_common()) */ 158853a29513SMax Reitz assert(!(flags & BDRV_O_PROTOCOL) || !file); 158953a29513SMax Reitz 1590b6ce07aaSKevin Wolf /* Open the image */ 159162392ebbSKevin Wolf ret = bdrv_open_common(bs, file, options, flags, &local_err); 1592b6ce07aaSKevin Wolf if (ret < 0) { 15938bfea15dSKevin Wolf goto fail; 15946987307cSChristoph Hellwig } 15956987307cSChristoph Hellwig 15962a05cbe4SMax Reitz if (file && (bs->file != file)) { 15979a4f4c31SKevin Wolf bdrv_unref_child(bs, file); 1598f500a6d3SKevin Wolf file = NULL; 1599f500a6d3SKevin Wolf } 1600f500a6d3SKevin Wolf 1601b6ce07aaSKevin Wolf /* If there is a backing file, use it */ 16029156df12SPaolo Bonzini if ((flags & BDRV_O_NO_BACKING) == 0) { 1603d9b7b057SKevin Wolf ret = bdrv_open_backing_file(bs, options, "backing", &local_err); 1604b6ce07aaSKevin Wolf if (ret < 0) { 1605b6ad491aSKevin Wolf goto close_and_fail; 1606b6ce07aaSKevin Wolf } 1607b6ce07aaSKevin Wolf } 1608b6ce07aaSKevin Wolf 160991af7014SMax Reitz bdrv_refresh_filename(bs); 161091af7014SMax Reitz 1611b6ad491aSKevin Wolf /* Check if any unknown options were used */ 16125acd9d81SMax Reitz if (options && (qdict_size(options) != 0)) { 1613b6ad491aSKevin Wolf const QDictEntry *entry = qdict_first(options); 16145acd9d81SMax Reitz if (flags & BDRV_O_PROTOCOL) { 16155acd9d81SMax Reitz error_setg(errp, "Block protocol '%s' doesn't support the option " 16165acd9d81SMax Reitz "'%s'", drv->format_name, entry->key); 16175acd9d81SMax Reitz } else { 161834b5d2c6SMax Reitz error_setg(errp, "Block format '%s' used by device '%s' doesn't " 16195acd9d81SMax Reitz "support the option '%s'", drv->format_name, 1620bfb197e0SMarkus Armbruster bdrv_get_device_name(bs), entry->key); 16215acd9d81SMax Reitz } 1622b6ad491aSKevin Wolf 1623b6ad491aSKevin Wolf ret = -EINVAL; 1624b6ad491aSKevin Wolf goto close_and_fail; 1625b6ad491aSKevin Wolf } 1626b6ad491aSKevin Wolf 1627b6ce07aaSKevin Wolf if (!bdrv_key_required(bs)) { 1628a7f53e26SMarkus Armbruster if (bs->blk) { 1629a7f53e26SMarkus Armbruster blk_dev_change_media_cb(bs->blk, true); 1630a7f53e26SMarkus Armbruster } 1631c3adb58fSMarkus Armbruster } else if (!runstate_check(RUN_STATE_PRELAUNCH) 1632c3adb58fSMarkus Armbruster && !runstate_check(RUN_STATE_INMIGRATE) 1633c3adb58fSMarkus Armbruster && !runstate_check(RUN_STATE_PAUSED)) { /* HACK */ 1634c3adb58fSMarkus Armbruster error_setg(errp, 1635c3adb58fSMarkus Armbruster "Guest must be stopped for opening of encrypted image"); 1636c3adb58fSMarkus Armbruster ret = -EBUSY; 1637c3adb58fSMarkus Armbruster goto close_and_fail; 1638b6ce07aaSKevin Wolf } 1639b6ce07aaSKevin Wolf 1640c3adb58fSMarkus Armbruster QDECREF(options); 1641f67503e5SMax Reitz *pbs = bs; 1642dd62f1caSKevin Wolf 1643dd62f1caSKevin Wolf /* For snapshot=on, create a temporary qcow2 overlay. bs points to the 1644dd62f1caSKevin Wolf * temporary snapshot afterwards. */ 1645dd62f1caSKevin Wolf if (snapshot_flags) { 1646dd62f1caSKevin Wolf ret = bdrv_append_temp_snapshot(bs, snapshot_flags, &local_err); 1647dd62f1caSKevin Wolf if (local_err) { 1648dd62f1caSKevin Wolf goto close_and_fail; 1649dd62f1caSKevin Wolf } 1650dd62f1caSKevin Wolf } 1651dd62f1caSKevin Wolf 1652b6ce07aaSKevin Wolf return 0; 1653b6ce07aaSKevin Wolf 16548bfea15dSKevin Wolf fail: 1655f500a6d3SKevin Wolf if (file != NULL) { 16569a4f4c31SKevin Wolf bdrv_unref_child(bs, file); 1657f500a6d3SKevin Wolf } 1658de9c0cecSKevin Wolf QDECREF(bs->options); 1659b6ad491aSKevin Wolf QDECREF(options); 1660de9c0cecSKevin Wolf bs->options = NULL; 1661f67503e5SMax Reitz if (!*pbs) { 1662f67503e5SMax Reitz /* If *pbs is NULL, a new BDS has been created in this function and 1663f67503e5SMax Reitz needs to be freed now. Otherwise, it does not need to be closed, 1664f67503e5SMax Reitz since it has not really been opened yet. */ 1665f67503e5SMax Reitz bdrv_unref(bs); 1666f67503e5SMax Reitz } 166784d18f06SMarkus Armbruster if (local_err) { 166834b5d2c6SMax Reitz error_propagate(errp, local_err); 166934b5d2c6SMax Reitz } 1670b6ad491aSKevin Wolf return ret; 1671de9c0cecSKevin Wolf 1672b6ad491aSKevin Wolf close_and_fail: 1673f67503e5SMax Reitz /* See fail path, but now the BDS has to be always closed */ 1674f67503e5SMax Reitz if (*pbs) { 1675b6ad491aSKevin Wolf bdrv_close(bs); 1676f67503e5SMax Reitz } else { 1677f67503e5SMax Reitz bdrv_unref(bs); 1678f67503e5SMax Reitz } 1679b6ad491aSKevin Wolf QDECREF(options); 168084d18f06SMarkus Armbruster if (local_err) { 168134b5d2c6SMax Reitz error_propagate(errp, local_err); 168234b5d2c6SMax Reitz } 1683b6ce07aaSKevin Wolf return ret; 1684b6ce07aaSKevin Wolf } 1685b6ce07aaSKevin Wolf 1686f3930ed0SKevin Wolf int bdrv_open(BlockDriverState **pbs, const char *filename, 16876ebf9aa2SMax Reitz const char *reference, QDict *options, int flags, Error **errp) 1688f3930ed0SKevin Wolf { 1689f3930ed0SKevin Wolf return bdrv_open_inherit(pbs, filename, reference, options, flags, NULL, 1690ce343771SMax Reitz NULL, errp); 1691f3930ed0SKevin Wolf } 1692f3930ed0SKevin Wolf 1693e971aa12SJeff Cody typedef struct BlockReopenQueueEntry { 1694e971aa12SJeff Cody bool prepared; 1695e971aa12SJeff Cody BDRVReopenState state; 1696e971aa12SJeff Cody QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry; 1697e971aa12SJeff Cody } BlockReopenQueueEntry; 1698e971aa12SJeff Cody 1699e971aa12SJeff Cody /* 1700e971aa12SJeff Cody * Adds a BlockDriverState to a simple queue for an atomic, transactional 1701e971aa12SJeff Cody * reopen of multiple devices. 1702e971aa12SJeff Cody * 1703e971aa12SJeff Cody * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT 1704e971aa12SJeff Cody * already performed, or alternatively may be NULL a new BlockReopenQueue will 1705e971aa12SJeff Cody * be created and initialized. This newly created BlockReopenQueue should be 1706e971aa12SJeff Cody * passed back in for subsequent calls that are intended to be of the same 1707e971aa12SJeff Cody * atomic 'set'. 1708e971aa12SJeff Cody * 1709e971aa12SJeff Cody * bs is the BlockDriverState to add to the reopen queue. 1710e971aa12SJeff Cody * 17114d2cb092SKevin Wolf * options contains the changed options for the associated bs 17124d2cb092SKevin Wolf * (the BlockReopenQueue takes ownership) 17134d2cb092SKevin Wolf * 1714e971aa12SJeff Cody * flags contains the open flags for the associated bs 1715e971aa12SJeff Cody * 1716e971aa12SJeff Cody * returns a pointer to bs_queue, which is either the newly allocated 1717e971aa12SJeff Cody * bs_queue, or the existing bs_queue being used. 1718e971aa12SJeff Cody * 1719e971aa12SJeff Cody */ 172028518102SKevin Wolf static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, 17214d2cb092SKevin Wolf BlockDriverState *bs, 172228518102SKevin Wolf QDict *options, 172328518102SKevin Wolf int flags, 172428518102SKevin Wolf const BdrvChildRole *role, 172528518102SKevin Wolf QDict *parent_options, 172628518102SKevin Wolf int parent_flags) 1727e971aa12SJeff Cody { 1728e971aa12SJeff Cody assert(bs != NULL); 1729e971aa12SJeff Cody 1730e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry; 173167251a31SKevin Wolf BdrvChild *child; 17324d2cb092SKevin Wolf QDict *old_options; 173367251a31SKevin Wolf 1734e971aa12SJeff Cody if (bs_queue == NULL) { 1735e971aa12SJeff Cody bs_queue = g_new0(BlockReopenQueue, 1); 1736e971aa12SJeff Cody QSIMPLEQ_INIT(bs_queue); 1737e971aa12SJeff Cody } 1738e971aa12SJeff Cody 17394d2cb092SKevin Wolf if (!options) { 17404d2cb092SKevin Wolf options = qdict_new(); 17414d2cb092SKevin Wolf } 17424d2cb092SKevin Wolf 174328518102SKevin Wolf /* 174428518102SKevin Wolf * Precedence of options: 174528518102SKevin Wolf * 1. Explicitly passed in options (highest) 174628518102SKevin Wolf * 2. TODO Set in flags (only for top level) 174728518102SKevin Wolf * 3. TODO Retained from explicitly set options of bs 17488e2160e2SKevin Wolf * 4. Inherited from parent node 174928518102SKevin Wolf * 5. Retained from effective options of bs 175028518102SKevin Wolf */ 175128518102SKevin Wolf 175228518102SKevin Wolf /* Inherit from parent node */ 175328518102SKevin Wolf if (parent_options) { 175428518102SKevin Wolf assert(!flags); 17558e2160e2SKevin Wolf role->inherit_options(&flags, options, parent_flags, parent_options); 175628518102SKevin Wolf } 175728518102SKevin Wolf 175828518102SKevin Wolf /* Old values are used for options that aren't set yet */ 17594d2cb092SKevin Wolf old_options = qdict_clone_shallow(bs->options); 1760cddff5baSKevin Wolf bdrv_join_options(bs, options, old_options); 17614d2cb092SKevin Wolf QDECREF(old_options); 17624d2cb092SKevin Wolf 1763f1f25a2eSKevin Wolf /* bdrv_open() masks this flag out */ 1764f1f25a2eSKevin Wolf flags &= ~BDRV_O_PROTOCOL; 1765f1f25a2eSKevin Wolf 176667251a31SKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 17674c9dfe5dSKevin Wolf QDict *new_child_options; 17684c9dfe5dSKevin Wolf char *child_key_dot; 176967251a31SKevin Wolf 17704c9dfe5dSKevin Wolf /* reopen can only change the options of block devices that were 17714c9dfe5dSKevin Wolf * implicitly created and inherited options. For other (referenced) 17724c9dfe5dSKevin Wolf * block devices, a syntax like "backing.foo" results in an error. */ 177367251a31SKevin Wolf if (child->bs->inherits_from != bs) { 177467251a31SKevin Wolf continue; 177567251a31SKevin Wolf } 177667251a31SKevin Wolf 17774c9dfe5dSKevin Wolf child_key_dot = g_strdup_printf("%s.", child->name); 17784c9dfe5dSKevin Wolf qdict_extract_subqdict(options, &new_child_options, child_key_dot); 17794c9dfe5dSKevin Wolf g_free(child_key_dot); 17804c9dfe5dSKevin Wolf 178128518102SKevin Wolf bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0, 178228518102SKevin Wolf child->role, options, flags); 1783e971aa12SJeff Cody } 1784e971aa12SJeff Cody 1785e971aa12SJeff Cody bs_entry = g_new0(BlockReopenQueueEntry, 1); 1786e971aa12SJeff Cody QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry); 1787e971aa12SJeff Cody 1788e971aa12SJeff Cody bs_entry->state.bs = bs; 17894d2cb092SKevin Wolf bs_entry->state.options = options; 1790e971aa12SJeff Cody bs_entry->state.flags = flags; 1791e971aa12SJeff Cody 1792e971aa12SJeff Cody return bs_queue; 1793e971aa12SJeff Cody } 1794e971aa12SJeff Cody 179528518102SKevin Wolf BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, 179628518102SKevin Wolf BlockDriverState *bs, 179728518102SKevin Wolf QDict *options, int flags) 179828518102SKevin Wolf { 179928518102SKevin Wolf return bdrv_reopen_queue_child(bs_queue, bs, options, flags, 180028518102SKevin Wolf NULL, NULL, 0); 180128518102SKevin Wolf } 180228518102SKevin Wolf 1803e971aa12SJeff Cody /* 1804e971aa12SJeff Cody * Reopen multiple BlockDriverStates atomically & transactionally. 1805e971aa12SJeff Cody * 1806e971aa12SJeff Cody * The queue passed in (bs_queue) must have been built up previous 1807e971aa12SJeff Cody * via bdrv_reopen_queue(). 1808e971aa12SJeff Cody * 1809e971aa12SJeff Cody * Reopens all BDS specified in the queue, with the appropriate 1810e971aa12SJeff Cody * flags. All devices are prepared for reopen, and failure of any 1811e971aa12SJeff Cody * device will cause all device changes to be abandonded, and intermediate 1812e971aa12SJeff Cody * data cleaned up. 1813e971aa12SJeff Cody * 1814e971aa12SJeff Cody * If all devices prepare successfully, then the changes are committed 1815e971aa12SJeff Cody * to all devices. 1816e971aa12SJeff Cody * 1817e971aa12SJeff Cody */ 1818e971aa12SJeff Cody int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp) 1819e971aa12SJeff Cody { 1820e971aa12SJeff Cody int ret = -1; 1821e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry, *next; 1822e971aa12SJeff Cody Error *local_err = NULL; 1823e971aa12SJeff Cody 1824e971aa12SJeff Cody assert(bs_queue != NULL); 1825e971aa12SJeff Cody 1826e971aa12SJeff Cody bdrv_drain_all(); 1827e971aa12SJeff Cody 1828e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 1829e971aa12SJeff Cody if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) { 1830e971aa12SJeff Cody error_propagate(errp, local_err); 1831e971aa12SJeff Cody goto cleanup; 1832e971aa12SJeff Cody } 1833e971aa12SJeff Cody bs_entry->prepared = true; 1834e971aa12SJeff Cody } 1835e971aa12SJeff Cody 1836e971aa12SJeff Cody /* If we reach this point, we have success and just need to apply the 1837e971aa12SJeff Cody * changes 1838e971aa12SJeff Cody */ 1839e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 1840e971aa12SJeff Cody bdrv_reopen_commit(&bs_entry->state); 1841e971aa12SJeff Cody } 1842e971aa12SJeff Cody 1843e971aa12SJeff Cody ret = 0; 1844e971aa12SJeff Cody 1845e971aa12SJeff Cody cleanup: 1846e971aa12SJeff Cody QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { 1847e971aa12SJeff Cody if (ret && bs_entry->prepared) { 1848e971aa12SJeff Cody bdrv_reopen_abort(&bs_entry->state); 1849e971aa12SJeff Cody } 18504d2cb092SKevin Wolf QDECREF(bs_entry->state.options); 1851e971aa12SJeff Cody g_free(bs_entry); 1852e971aa12SJeff Cody } 1853e971aa12SJeff Cody g_free(bs_queue); 1854e971aa12SJeff Cody return ret; 1855e971aa12SJeff Cody } 1856e971aa12SJeff Cody 1857e971aa12SJeff Cody 1858e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */ 1859e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp) 1860e971aa12SJeff Cody { 1861e971aa12SJeff Cody int ret = -1; 1862e971aa12SJeff Cody Error *local_err = NULL; 18634d2cb092SKevin Wolf BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags); 1864e971aa12SJeff Cody 1865e971aa12SJeff Cody ret = bdrv_reopen_multiple(queue, &local_err); 1866e971aa12SJeff Cody if (local_err != NULL) { 1867e971aa12SJeff Cody error_propagate(errp, local_err); 1868e971aa12SJeff Cody } 1869e971aa12SJeff Cody return ret; 1870e971aa12SJeff Cody } 1871e971aa12SJeff Cody 1872e971aa12SJeff Cody 1873e971aa12SJeff Cody /* 1874e971aa12SJeff Cody * Prepares a BlockDriverState for reopen. All changes are staged in the 1875e971aa12SJeff Cody * 'opaque' field of the BDRVReopenState, which is used and allocated by 1876e971aa12SJeff Cody * the block driver layer .bdrv_reopen_prepare() 1877e971aa12SJeff Cody * 1878e971aa12SJeff Cody * bs is the BlockDriverState to reopen 1879e971aa12SJeff Cody * flags are the new open flags 1880e971aa12SJeff Cody * queue is the reopen queue 1881e971aa12SJeff Cody * 1882e971aa12SJeff Cody * Returns 0 on success, non-zero on error. On error errp will be set 1883e971aa12SJeff Cody * as well. 1884e971aa12SJeff Cody * 1885e971aa12SJeff Cody * On failure, bdrv_reopen_abort() will be called to clean up any data. 1886e971aa12SJeff Cody * It is the responsibility of the caller to then call the abort() or 1887e971aa12SJeff Cody * commit() for any other BDS that have been left in a prepare() state 1888e971aa12SJeff Cody * 1889e971aa12SJeff Cody */ 1890e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue, 1891e971aa12SJeff Cody Error **errp) 1892e971aa12SJeff Cody { 1893e971aa12SJeff Cody int ret = -1; 1894e971aa12SJeff Cody Error *local_err = NULL; 1895e971aa12SJeff Cody BlockDriver *drv; 1896e971aa12SJeff Cody 1897e971aa12SJeff Cody assert(reopen_state != NULL); 1898e971aa12SJeff Cody assert(reopen_state->bs->drv != NULL); 1899e971aa12SJeff Cody drv = reopen_state->bs->drv; 1900e971aa12SJeff Cody 1901e971aa12SJeff Cody /* if we are to stay read-only, do not allow permission change 1902e971aa12SJeff Cody * to r/w */ 1903e971aa12SJeff Cody if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) && 1904e971aa12SJeff Cody reopen_state->flags & BDRV_O_RDWR) { 190581e5f78aSAlberto Garcia error_setg(errp, "Node '%s' is read only", 190681e5f78aSAlberto Garcia bdrv_get_device_or_node_name(reopen_state->bs)); 1907e971aa12SJeff Cody goto error; 1908e971aa12SJeff Cody } 1909e971aa12SJeff Cody 1910e971aa12SJeff Cody 1911e971aa12SJeff Cody ret = bdrv_flush(reopen_state->bs); 1912e971aa12SJeff Cody if (ret) { 1913455b0fdeSEric Blake error_setg_errno(errp, -ret, "Error flushing drive"); 1914e971aa12SJeff Cody goto error; 1915e971aa12SJeff Cody } 1916e971aa12SJeff Cody 1917e971aa12SJeff Cody if (drv->bdrv_reopen_prepare) { 1918e971aa12SJeff Cody ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); 1919e971aa12SJeff Cody if (ret) { 1920e971aa12SJeff Cody if (local_err != NULL) { 1921e971aa12SJeff Cody error_propagate(errp, local_err); 1922e971aa12SJeff Cody } else { 1923d8b6895fSLuiz Capitulino error_setg(errp, "failed while preparing to reopen image '%s'", 1924e971aa12SJeff Cody reopen_state->bs->filename); 1925e971aa12SJeff Cody } 1926e971aa12SJeff Cody goto error; 1927e971aa12SJeff Cody } 1928e971aa12SJeff Cody } else { 1929e971aa12SJeff Cody /* It is currently mandatory to have a bdrv_reopen_prepare() 1930e971aa12SJeff Cody * handler for each supported drv. */ 193181e5f78aSAlberto Garcia error_setg(errp, "Block format '%s' used by node '%s' " 193281e5f78aSAlberto Garcia "does not support reopening files", drv->format_name, 193381e5f78aSAlberto Garcia bdrv_get_device_or_node_name(reopen_state->bs)); 1934e971aa12SJeff Cody ret = -1; 1935e971aa12SJeff Cody goto error; 1936e971aa12SJeff Cody } 1937e971aa12SJeff Cody 19384d2cb092SKevin Wolf /* Options that are not handled are only okay if they are unchanged 19394d2cb092SKevin Wolf * compared to the old state. It is expected that some options are only 19404d2cb092SKevin Wolf * used for the initial open, but not reopen (e.g. filename) */ 19414d2cb092SKevin Wolf if (qdict_size(reopen_state->options)) { 19424d2cb092SKevin Wolf const QDictEntry *entry = qdict_first(reopen_state->options); 19434d2cb092SKevin Wolf 19444d2cb092SKevin Wolf do { 19454d2cb092SKevin Wolf QString *new_obj = qobject_to_qstring(entry->value); 19464d2cb092SKevin Wolf const char *new = qstring_get_str(new_obj); 19474d2cb092SKevin Wolf const char *old = qdict_get_try_str(reopen_state->bs->options, 19484d2cb092SKevin Wolf entry->key); 19494d2cb092SKevin Wolf 19504d2cb092SKevin Wolf if (!old || strcmp(new, old)) { 19514d2cb092SKevin Wolf error_setg(errp, "Cannot change the option '%s'", entry->key); 19524d2cb092SKevin Wolf ret = -EINVAL; 19534d2cb092SKevin Wolf goto error; 19544d2cb092SKevin Wolf } 19554d2cb092SKevin Wolf } while ((entry = qdict_next(reopen_state->options, entry))); 19564d2cb092SKevin Wolf } 19574d2cb092SKevin Wolf 1958e971aa12SJeff Cody ret = 0; 1959e971aa12SJeff Cody 1960e971aa12SJeff Cody error: 1961e971aa12SJeff Cody return ret; 1962e971aa12SJeff Cody } 1963e971aa12SJeff Cody 1964e971aa12SJeff Cody /* 1965e971aa12SJeff Cody * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and 1966e971aa12SJeff Cody * makes them final by swapping the staging BlockDriverState contents into 1967e971aa12SJeff Cody * the active BlockDriverState contents. 1968e971aa12SJeff Cody */ 1969e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state) 1970e971aa12SJeff Cody { 1971e971aa12SJeff Cody BlockDriver *drv; 1972e971aa12SJeff Cody 1973e971aa12SJeff Cody assert(reopen_state != NULL); 1974e971aa12SJeff Cody drv = reopen_state->bs->drv; 1975e971aa12SJeff Cody assert(drv != NULL); 1976e971aa12SJeff Cody 1977e971aa12SJeff Cody /* If there are any driver level actions to take */ 1978e971aa12SJeff Cody if (drv->bdrv_reopen_commit) { 1979e971aa12SJeff Cody drv->bdrv_reopen_commit(reopen_state); 1980e971aa12SJeff Cody } 1981e971aa12SJeff Cody 1982e971aa12SJeff Cody /* set BDS specific flags now */ 1983e971aa12SJeff Cody reopen_state->bs->open_flags = reopen_state->flags; 1984e971aa12SJeff Cody reopen_state->bs->enable_write_cache = !!(reopen_state->flags & 1985e971aa12SJeff Cody BDRV_O_CACHE_WB); 1986e971aa12SJeff Cody reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR); 1987355ef4acSKevin Wolf 19883baca891SKevin Wolf bdrv_refresh_limits(reopen_state->bs, NULL); 1989e971aa12SJeff Cody } 1990e971aa12SJeff Cody 1991e971aa12SJeff Cody /* 1992e971aa12SJeff Cody * Abort the reopen, and delete and free the staged changes in 1993e971aa12SJeff Cody * reopen_state 1994e971aa12SJeff Cody */ 1995e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state) 1996e971aa12SJeff Cody { 1997e971aa12SJeff Cody BlockDriver *drv; 1998e971aa12SJeff Cody 1999e971aa12SJeff Cody assert(reopen_state != NULL); 2000e971aa12SJeff Cody drv = reopen_state->bs->drv; 2001e971aa12SJeff Cody assert(drv != NULL); 2002e971aa12SJeff Cody 2003e971aa12SJeff Cody if (drv->bdrv_reopen_abort) { 2004e971aa12SJeff Cody drv->bdrv_reopen_abort(reopen_state); 2005e971aa12SJeff Cody } 2006e971aa12SJeff Cody } 2007e971aa12SJeff Cody 2008e971aa12SJeff Cody 2009fc01f7e7Sbellard void bdrv_close(BlockDriverState *bs) 2010fc01f7e7Sbellard { 201133384421SMax Reitz BdrvAioNotifier *ban, *ban_next; 201233384421SMax Reitz 20133e914655SPaolo Bonzini if (bs->job) { 20143e914655SPaolo Bonzini block_job_cancel_sync(bs->job); 20153e914655SPaolo Bonzini } 201699b7e775SAlberto Garcia 201799b7e775SAlberto Garcia /* Disable I/O limits and drain all pending throttled requests */ 2018a0d64a61SAlberto Garcia if (bs->throttle_state) { 201999b7e775SAlberto Garcia bdrv_io_limits_disable(bs); 202099b7e775SAlberto Garcia } 202199b7e775SAlberto Garcia 202253ec73e2SFam Zheng bdrv_drain(bs); /* complete I/O */ 202358fda173SStefan Hajnoczi bdrv_flush(bs); 202453ec73e2SFam Zheng bdrv_drain(bs); /* in case flush left pending I/O */ 2025d7d512f6SPaolo Bonzini notifier_list_notify(&bs->close_notifiers, bs); 20267094f12fSKevin Wolf 2027b4d02820SMax Reitz if (bs->blk) { 2028b4d02820SMax Reitz blk_dev_change_media_cb(bs->blk, false); 2029b4d02820SMax Reitz } 2030b4d02820SMax Reitz 20313cbc002cSPaolo Bonzini if (bs->drv) { 20326e93e7c4SKevin Wolf BdrvChild *child, *next; 20336e93e7c4SKevin Wolf 20349a7dedbcSKevin Wolf bs->drv->bdrv_close(bs); 20359a4f4c31SKevin Wolf bs->drv = NULL; 20369a7dedbcSKevin Wolf 20379a7dedbcSKevin Wolf bdrv_set_backing_hd(bs, NULL); 20389a7dedbcSKevin Wolf 20399a4f4c31SKevin Wolf if (bs->file != NULL) { 20409a4f4c31SKevin Wolf bdrv_unref_child(bs, bs->file); 20419a4f4c31SKevin Wolf bs->file = NULL; 20429a4f4c31SKevin Wolf } 20439a4f4c31SKevin Wolf 20446e93e7c4SKevin Wolf QLIST_FOREACH_SAFE(child, &bs->children, next, next) { 204533a60407SKevin Wolf /* TODO Remove bdrv_unref() from drivers' close function and use 204633a60407SKevin Wolf * bdrv_unref_child() here */ 2047bddcec37SKevin Wolf if (child->bs->inherits_from == bs) { 2048bddcec37SKevin Wolf child->bs->inherits_from = NULL; 2049bddcec37SKevin Wolf } 205033a60407SKevin Wolf bdrv_detach_child(child); 20516e93e7c4SKevin Wolf } 20526e93e7c4SKevin Wolf 20537267c094SAnthony Liguori g_free(bs->opaque); 2054ea2384d3Sbellard bs->opaque = NULL; 205553fec9d3SStefan Hajnoczi bs->copy_on_read = 0; 2056a275fa42SPaolo Bonzini bs->backing_file[0] = '\0'; 2057a275fa42SPaolo Bonzini bs->backing_format[0] = '\0'; 20586405875cSPaolo Bonzini bs->total_sectors = 0; 20596405875cSPaolo Bonzini bs->encrypted = 0; 20606405875cSPaolo Bonzini bs->valid_key = 0; 20616405875cSPaolo Bonzini bs->sg = 0; 20620d51b4deSAsias He bs->zero_beyond_eof = false; 2063de9c0cecSKevin Wolf QDECREF(bs->options); 2064de9c0cecSKevin Wolf bs->options = NULL; 206591af7014SMax Reitz QDECREF(bs->full_open_options); 206691af7014SMax Reitz bs->full_open_options = NULL; 20679ca11154SPavel Hrdina } 206866f82ceeSKevin Wolf 206933384421SMax Reitz QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 207033384421SMax Reitz g_free(ban); 207133384421SMax Reitz } 207233384421SMax Reitz QLIST_INIT(&bs->aio_notifiers); 2073b338082bSbellard } 2074b338082bSbellard 20752bc93fedSMORITA Kazutaka void bdrv_close_all(void) 20762bc93fedSMORITA Kazutaka { 20772bc93fedSMORITA Kazutaka BlockDriverState *bs; 20782bc93fedSMORITA Kazutaka 2079dc364f4cSBenoît Canet QTAILQ_FOREACH(bs, &bdrv_states, device_list) { 2080ed78cda3SStefan Hajnoczi AioContext *aio_context = bdrv_get_aio_context(bs); 2081ed78cda3SStefan Hajnoczi 2082ed78cda3SStefan Hajnoczi aio_context_acquire(aio_context); 20832bc93fedSMORITA Kazutaka bdrv_close(bs); 2084ed78cda3SStefan Hajnoczi aio_context_release(aio_context); 20852bc93fedSMORITA Kazutaka } 20862bc93fedSMORITA Kazutaka } 20872bc93fedSMORITA Kazutaka 2088dc364f4cSBenoît Canet /* make a BlockDriverState anonymous by removing from bdrv_state and 2089dc364f4cSBenoît Canet * graph_bdrv_state list. 2090d22b2f41SRyan Harper Also, NULL terminate the device_name to prevent double remove */ 2091d22b2f41SRyan Harper void bdrv_make_anon(BlockDriverState *bs) 2092d22b2f41SRyan Harper { 2093bfb197e0SMarkus Armbruster /* 2094bfb197e0SMarkus Armbruster * Take care to remove bs from bdrv_states only when it's actually 2095bfb197e0SMarkus Armbruster * in it. Note that bs->device_list.tqe_prev is initially null, 2096bfb197e0SMarkus Armbruster * and gets set to non-null by QTAILQ_INSERT_TAIL(). Establish 2097bfb197e0SMarkus Armbruster * the useful invariant "bs in bdrv_states iff bs->tqe_prev" by 2098bfb197e0SMarkus Armbruster * resetting it to null on remove. 2099bfb197e0SMarkus Armbruster */ 2100bfb197e0SMarkus Armbruster if (bs->device_list.tqe_prev) { 2101dc364f4cSBenoît Canet QTAILQ_REMOVE(&bdrv_states, bs, device_list); 2102bfb197e0SMarkus Armbruster bs->device_list.tqe_prev = NULL; 2103d22b2f41SRyan Harper } 2104dc364f4cSBenoît Canet if (bs->node_name[0] != '\0') { 2105dc364f4cSBenoît Canet QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list); 2106dc364f4cSBenoît Canet } 2107dc364f4cSBenoît Canet bs->node_name[0] = '\0'; 2108d22b2f41SRyan Harper } 2109d22b2f41SRyan Harper 21108e419aefSKevin Wolf /* Fields that need to stay with the top-level BDS */ 21114ddc07caSPaolo Bonzini static void bdrv_move_feature_fields(BlockDriverState *bs_dest, 21124ddc07caSPaolo Bonzini BlockDriverState *bs_src) 21134ddc07caSPaolo Bonzini { 21144ddc07caSPaolo Bonzini /* move some fields that need to stay attached to the device */ 21154ddc07caSPaolo Bonzini 21164ddc07caSPaolo Bonzini /* dev info */ 21174ddc07caSPaolo Bonzini bs_dest->copy_on_read = bs_src->copy_on_read; 21184ddc07caSPaolo Bonzini 21194ddc07caSPaolo Bonzini bs_dest->enable_write_cache = bs_src->enable_write_cache; 21204ddc07caSPaolo Bonzini 2121dd62f1caSKevin Wolf /* dirty bitmap */ 2122dd62f1caSKevin Wolf bs_dest->dirty_bitmaps = bs_src->dirty_bitmaps; 2123dd62f1caSKevin Wolf } 2124dd62f1caSKevin Wolf 2125dd62f1caSKevin Wolf static void change_parent_backing_link(BlockDriverState *from, 2126dd62f1caSKevin Wolf BlockDriverState *to) 2127dd62f1caSKevin Wolf { 2128dd62f1caSKevin Wolf BdrvChild *c, *next; 2129dd62f1caSKevin Wolf 2130dd62f1caSKevin Wolf QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) { 2131dd62f1caSKevin Wolf assert(c->role != &child_backing); 2132dd62f1caSKevin Wolf c->bs = to; 2133dd62f1caSKevin Wolf QLIST_REMOVE(c, next_parent); 2134dd62f1caSKevin Wolf QLIST_INSERT_HEAD(&to->parents, c, next_parent); 2135dd62f1caSKevin Wolf bdrv_ref(to); 2136dd62f1caSKevin Wolf bdrv_unref(from); 2137dd62f1caSKevin Wolf } 2138dd62f1caSKevin Wolf if (from->blk) { 2139dd62f1caSKevin Wolf blk_set_bs(from->blk, to); 2140dd62f1caSKevin Wolf if (!to->device_list.tqe_prev) { 2141dd62f1caSKevin Wolf QTAILQ_INSERT_BEFORE(from, to, device_list); 2142dd62f1caSKevin Wolf } 2143dd62f1caSKevin Wolf QTAILQ_REMOVE(&bdrv_states, from, device_list); 2144dd62f1caSKevin Wolf } 2145dd62f1caSKevin Wolf } 2146dd62f1caSKevin Wolf 2147dd62f1caSKevin Wolf static void swap_feature_fields(BlockDriverState *bs_top, 2148dd62f1caSKevin Wolf BlockDriverState *bs_new) 2149dd62f1caSKevin Wolf { 2150dd62f1caSKevin Wolf BlockDriverState tmp; 2151dd62f1caSKevin Wolf 2152dd62f1caSKevin Wolf bdrv_move_feature_fields(&tmp, bs_top); 2153dd62f1caSKevin Wolf bdrv_move_feature_fields(bs_top, bs_new); 2154dd62f1caSKevin Wolf bdrv_move_feature_fields(bs_new, &tmp); 2155dd62f1caSKevin Wolf 2156dd62f1caSKevin Wolf assert(!bs_new->throttle_state); 2157dd62f1caSKevin Wolf if (bs_top->throttle_state) { 2158dd62f1caSKevin Wolf assert(bs_top->io_limits_enabled); 2159dd62f1caSKevin Wolf bdrv_io_limits_enable(bs_new, throttle_group_get_name(bs_top)); 2160dd62f1caSKevin Wolf bdrv_io_limits_disable(bs_top); 2161dd62f1caSKevin Wolf } 2162dd62f1caSKevin Wolf } 2163dd62f1caSKevin Wolf 21648802d1fdSJeff Cody /* 21658802d1fdSJeff Cody * Add new bs contents at the top of an image chain while the chain is 21668802d1fdSJeff Cody * live, while keeping required fields on the top layer. 21678802d1fdSJeff Cody * 21688802d1fdSJeff Cody * This will modify the BlockDriverState fields, and swap contents 21698802d1fdSJeff Cody * between bs_new and bs_top. Both bs_new and bs_top are modified. 21708802d1fdSJeff Cody * 2171bfb197e0SMarkus Armbruster * bs_new must not be attached to a BlockBackend. 2172f6801b83SJeff Cody * 21738802d1fdSJeff Cody * This function does not create any image files. 2174dd62f1caSKevin Wolf * 2175dd62f1caSKevin Wolf * bdrv_append() takes ownership of a bs_new reference and unrefs it because 2176dd62f1caSKevin Wolf * that's what the callers commonly need. bs_new will be referenced by the old 2177dd62f1caSKevin Wolf * parents of bs_top after bdrv_append() returns. If the caller needs to keep a 2178dd62f1caSKevin Wolf * reference of its own, it must call bdrv_ref(). 21798802d1fdSJeff Cody */ 21808802d1fdSJeff Cody void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top) 21818802d1fdSJeff Cody { 2182dd62f1caSKevin Wolf assert(!bdrv_requests_pending(bs_top)); 2183dd62f1caSKevin Wolf assert(!bdrv_requests_pending(bs_new)); 21848802d1fdSJeff Cody 2185dd62f1caSKevin Wolf bdrv_ref(bs_top); 2186dd62f1caSKevin Wolf change_parent_backing_link(bs_top, bs_new); 2187dd62f1caSKevin Wolf 2188dd62f1caSKevin Wolf /* Some fields always stay on top of the backing file chain */ 2189dd62f1caSKevin Wolf swap_feature_fields(bs_top, bs_new); 2190dd62f1caSKevin Wolf 2191dd62f1caSKevin Wolf bdrv_set_backing_hd(bs_new, bs_top); 2192dd62f1caSKevin Wolf bdrv_unref(bs_top); 2193dd62f1caSKevin Wolf 2194dd62f1caSKevin Wolf /* bs_new is now referenced by its new parents, we don't need the 2195dd62f1caSKevin Wolf * additional reference any more. */ 2196dd62f1caSKevin Wolf bdrv_unref(bs_new); 21978802d1fdSJeff Cody } 21988802d1fdSJeff Cody 21993f09bfbcSKevin Wolf void bdrv_replace_in_backing_chain(BlockDriverState *old, BlockDriverState *new) 22003f09bfbcSKevin Wolf { 22013f09bfbcSKevin Wolf assert(!bdrv_requests_pending(old)); 22023f09bfbcSKevin Wolf assert(!bdrv_requests_pending(new)); 22033f09bfbcSKevin Wolf 22043f09bfbcSKevin Wolf bdrv_ref(old); 22053f09bfbcSKevin Wolf 22063f09bfbcSKevin Wolf if (old->blk) { 22073f09bfbcSKevin Wolf /* As long as these fields aren't in BlockBackend, but in the top-level 22083f09bfbcSKevin Wolf * BlockDriverState, it's not possible for a BDS to have two BBs. 22093f09bfbcSKevin Wolf * 22103f09bfbcSKevin Wolf * We really want to copy the fields from old to new, but we go for a 22113f09bfbcSKevin Wolf * swap instead so that pointers aren't duplicated and cause trouble. 22123f09bfbcSKevin Wolf * (Also, bdrv_swap() used to do the same.) */ 22133f09bfbcSKevin Wolf assert(!new->blk); 22143f09bfbcSKevin Wolf swap_feature_fields(old, new); 22153f09bfbcSKevin Wolf } 22163f09bfbcSKevin Wolf change_parent_backing_link(old, new); 22173f09bfbcSKevin Wolf 22183f09bfbcSKevin Wolf /* Change backing files if a previously independent node is added to the 22193f09bfbcSKevin Wolf * chain. For active commit, we replace top by its own (indirect) backing 22203f09bfbcSKevin Wolf * file and don't do anything here so we don't build a loop. */ 22213f09bfbcSKevin Wolf if (new->backing == NULL && !bdrv_chain_contains(backing_bs(old), new)) { 22223f09bfbcSKevin Wolf bdrv_set_backing_hd(new, backing_bs(old)); 22233f09bfbcSKevin Wolf bdrv_set_backing_hd(old, NULL); 22243f09bfbcSKevin Wolf } 22253f09bfbcSKevin Wolf 22263f09bfbcSKevin Wolf bdrv_unref(old); 22273f09bfbcSKevin Wolf } 22283f09bfbcSKevin Wolf 22294f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs) 2230b338082bSbellard { 22313e914655SPaolo Bonzini assert(!bs->job); 22323718d8abSFam Zheng assert(bdrv_op_blocker_is_empty(bs)); 22334f6fd349SFam Zheng assert(!bs->refcnt); 2234e4654d2dSFam Zheng assert(QLIST_EMPTY(&bs->dirty_bitmaps)); 223518846deeSMarkus Armbruster 2236e1b5c52eSStefan Hajnoczi bdrv_close(bs); 2237e1b5c52eSStefan Hajnoczi 22381b7bdbc1SStefan Hajnoczi /* remove from list, if necessary */ 2239d22b2f41SRyan Harper bdrv_make_anon(bs); 224034c6f050Saurel32 22417267c094SAnthony Liguori g_free(bs); 2242fc01f7e7Sbellard } 2243fc01f7e7Sbellard 2244e97fc193Saliguori /* 2245e97fc193Saliguori * Run consistency checks on an image 2246e97fc193Saliguori * 2247e076f338SKevin Wolf * Returns 0 if the check could be completed (it doesn't mean that the image is 2248a1c7273bSStefan Weil * free of errors) or -errno when an internal error occurred. The results of the 2249e076f338SKevin Wolf * check are stored in res. 2250e97fc193Saliguori */ 22514534ff54SKevin Wolf int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix) 2252e97fc193Saliguori { 2253908bcd54SMax Reitz if (bs->drv == NULL) { 2254908bcd54SMax Reitz return -ENOMEDIUM; 2255908bcd54SMax Reitz } 2256e97fc193Saliguori if (bs->drv->bdrv_check == NULL) { 2257e97fc193Saliguori return -ENOTSUP; 2258e97fc193Saliguori } 2259e97fc193Saliguori 2260e076f338SKevin Wolf memset(res, 0, sizeof(*res)); 22614534ff54SKevin Wolf return bs->drv->bdrv_check(bs, res, fix); 2262e97fc193Saliguori } 2263e97fc193Saliguori 22648a426614SKevin Wolf #define COMMIT_BUF_SECTORS 2048 22658a426614SKevin Wolf 226633e3963eSbellard /* commit COW file into the raw image */ 226733e3963eSbellard int bdrv_commit(BlockDriverState *bs) 226833e3963eSbellard { 226919cb3738Sbellard BlockDriver *drv = bs->drv; 227072706ea4SJeff Cody int64_t sector, total_sectors, length, backing_length; 22718a426614SKevin Wolf int n, ro, open_flags; 22720bce597dSJeff Cody int ret = 0; 227372706ea4SJeff Cody uint8_t *buf = NULL; 227433e3963eSbellard 227519cb3738Sbellard if (!drv) 227619cb3738Sbellard return -ENOMEDIUM; 227733e3963eSbellard 2278760e0063SKevin Wolf if (!bs->backing) { 22794dca4b63SNaphtali Sprei return -ENOTSUP; 22804dca4b63SNaphtali Sprei } 22814dca4b63SNaphtali Sprei 2282bb00021dSFam Zheng if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_COMMIT_SOURCE, NULL) || 2283760e0063SKevin Wolf bdrv_op_is_blocked(bs->backing->bs, BLOCK_OP_TYPE_COMMIT_TARGET, NULL)) { 22842d3735d3SStefan Hajnoczi return -EBUSY; 22852d3735d3SStefan Hajnoczi } 22862d3735d3SStefan Hajnoczi 2287760e0063SKevin Wolf ro = bs->backing->bs->read_only; 2288760e0063SKevin Wolf open_flags = bs->backing->bs->open_flags; 22894dca4b63SNaphtali Sprei 22904dca4b63SNaphtali Sprei if (ro) { 2291760e0063SKevin Wolf if (bdrv_reopen(bs->backing->bs, open_flags | BDRV_O_RDWR, NULL)) { 22920bce597dSJeff Cody return -EACCES; 22934dca4b63SNaphtali Sprei } 2294ea2384d3Sbellard } 2295ea2384d3Sbellard 229672706ea4SJeff Cody length = bdrv_getlength(bs); 229772706ea4SJeff Cody if (length < 0) { 229872706ea4SJeff Cody ret = length; 229972706ea4SJeff Cody goto ro_cleanup; 230072706ea4SJeff Cody } 230172706ea4SJeff Cody 2302760e0063SKevin Wolf backing_length = bdrv_getlength(bs->backing->bs); 230372706ea4SJeff Cody if (backing_length < 0) { 230472706ea4SJeff Cody ret = backing_length; 230572706ea4SJeff Cody goto ro_cleanup; 230672706ea4SJeff Cody } 230772706ea4SJeff Cody 230872706ea4SJeff Cody /* If our top snapshot is larger than the backing file image, 230972706ea4SJeff Cody * grow the backing file image if possible. If not possible, 231072706ea4SJeff Cody * we must return an error */ 231172706ea4SJeff Cody if (length > backing_length) { 2312760e0063SKevin Wolf ret = bdrv_truncate(bs->backing->bs, length); 231372706ea4SJeff Cody if (ret < 0) { 231472706ea4SJeff Cody goto ro_cleanup; 231572706ea4SJeff Cody } 231672706ea4SJeff Cody } 231772706ea4SJeff Cody 231872706ea4SJeff Cody total_sectors = length >> BDRV_SECTOR_BITS; 2319857d4f46SKevin Wolf 2320857d4f46SKevin Wolf /* qemu_try_blockalign() for bs will choose an alignment that works for 2321760e0063SKevin Wolf * bs->backing->bs as well, so no need to compare the alignment manually. */ 2322857d4f46SKevin Wolf buf = qemu_try_blockalign(bs, COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE); 2323857d4f46SKevin Wolf if (buf == NULL) { 2324857d4f46SKevin Wolf ret = -ENOMEM; 2325857d4f46SKevin Wolf goto ro_cleanup; 2326857d4f46SKevin Wolf } 23278a426614SKevin Wolf 23288a426614SKevin Wolf for (sector = 0; sector < total_sectors; sector += n) { 2329d663640cSPaolo Bonzini ret = bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n); 2330d663640cSPaolo Bonzini if (ret < 0) { 2331d663640cSPaolo Bonzini goto ro_cleanup; 2332d663640cSPaolo Bonzini } 2333d663640cSPaolo Bonzini if (ret) { 2334dabfa6ccSKevin Wolf ret = bdrv_read(bs, sector, buf, n); 2335dabfa6ccSKevin Wolf if (ret < 0) { 23364dca4b63SNaphtali Sprei goto ro_cleanup; 233733e3963eSbellard } 233833e3963eSbellard 2339760e0063SKevin Wolf ret = bdrv_write(bs->backing->bs, sector, buf, n); 2340dabfa6ccSKevin Wolf if (ret < 0) { 23414dca4b63SNaphtali Sprei goto ro_cleanup; 234233e3963eSbellard } 234333e3963eSbellard } 234433e3963eSbellard } 234595389c86Sbellard 23461d44952fSChristoph Hellwig if (drv->bdrv_make_empty) { 23471d44952fSChristoph Hellwig ret = drv->bdrv_make_empty(bs); 2348dabfa6ccSKevin Wolf if (ret < 0) { 2349dabfa6ccSKevin Wolf goto ro_cleanup; 2350dabfa6ccSKevin Wolf } 23511d44952fSChristoph Hellwig bdrv_flush(bs); 23521d44952fSChristoph Hellwig } 235395389c86Sbellard 23543f5075aeSChristoph Hellwig /* 23553f5075aeSChristoph Hellwig * Make sure all data we wrote to the backing device is actually 23563f5075aeSChristoph Hellwig * stable on disk. 23573f5075aeSChristoph Hellwig */ 2358760e0063SKevin Wolf if (bs->backing) { 2359760e0063SKevin Wolf bdrv_flush(bs->backing->bs); 2360dabfa6ccSKevin Wolf } 23614dca4b63SNaphtali Sprei 2362dabfa6ccSKevin Wolf ret = 0; 23634dca4b63SNaphtali Sprei ro_cleanup: 2364857d4f46SKevin Wolf qemu_vfree(buf); 23654dca4b63SNaphtali Sprei 23664dca4b63SNaphtali Sprei if (ro) { 23670bce597dSJeff Cody /* ignoring error return here */ 2368760e0063SKevin Wolf bdrv_reopen(bs->backing->bs, open_flags & ~BDRV_O_RDWR, NULL); 23694dca4b63SNaphtali Sprei } 23704dca4b63SNaphtali Sprei 23711d44952fSChristoph Hellwig return ret; 237233e3963eSbellard } 237333e3963eSbellard 2374e8877497SStefan Hajnoczi int bdrv_commit_all(void) 23756ab4b5abSMarkus Armbruster { 23766ab4b5abSMarkus Armbruster BlockDriverState *bs; 23776ab4b5abSMarkus Armbruster 2378dc364f4cSBenoît Canet QTAILQ_FOREACH(bs, &bdrv_states, device_list) { 2379ed78cda3SStefan Hajnoczi AioContext *aio_context = bdrv_get_aio_context(bs); 2380ed78cda3SStefan Hajnoczi 2381ed78cda3SStefan Hajnoczi aio_context_acquire(aio_context); 2382760e0063SKevin Wolf if (bs->drv && bs->backing) { 2383e8877497SStefan Hajnoczi int ret = bdrv_commit(bs); 2384e8877497SStefan Hajnoczi if (ret < 0) { 2385ed78cda3SStefan Hajnoczi aio_context_release(aio_context); 2386e8877497SStefan Hajnoczi return ret; 23876ab4b5abSMarkus Armbruster } 23886ab4b5abSMarkus Armbruster } 2389ed78cda3SStefan Hajnoczi aio_context_release(aio_context); 2390272d2d8eSJeff Cody } 2391e8877497SStefan Hajnoczi return 0; 2392e8877497SStefan Hajnoczi } 23936ab4b5abSMarkus Armbruster 2394756e6736SKevin Wolf /* 2395756e6736SKevin Wolf * Return values: 2396756e6736SKevin Wolf * 0 - success 2397756e6736SKevin Wolf * -EINVAL - backing format specified, but no file 2398756e6736SKevin Wolf * -ENOSPC - can't update the backing file because no space is left in the 2399756e6736SKevin Wolf * image file header 2400756e6736SKevin Wolf * -ENOTSUP - format driver doesn't support changing the backing file 2401756e6736SKevin Wolf */ 2402756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs, 2403756e6736SKevin Wolf const char *backing_file, const char *backing_fmt) 2404756e6736SKevin Wolf { 2405756e6736SKevin Wolf BlockDriver *drv = bs->drv; 2406469ef350SPaolo Bonzini int ret; 2407756e6736SKevin Wolf 24085f377794SPaolo Bonzini /* Backing file format doesn't make sense without a backing file */ 24095f377794SPaolo Bonzini if (backing_fmt && !backing_file) { 24105f377794SPaolo Bonzini return -EINVAL; 24115f377794SPaolo Bonzini } 24125f377794SPaolo Bonzini 2413756e6736SKevin Wolf if (drv->bdrv_change_backing_file != NULL) { 2414469ef350SPaolo Bonzini ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); 2415756e6736SKevin Wolf } else { 2416469ef350SPaolo Bonzini ret = -ENOTSUP; 2417756e6736SKevin Wolf } 2418469ef350SPaolo Bonzini 2419469ef350SPaolo Bonzini if (ret == 0) { 2420469ef350SPaolo Bonzini pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); 2421469ef350SPaolo Bonzini pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); 2422469ef350SPaolo Bonzini } 2423469ef350SPaolo Bonzini return ret; 2424756e6736SKevin Wolf } 2425756e6736SKevin Wolf 24266ebdcee2SJeff Cody /* 24276ebdcee2SJeff Cody * Finds the image layer in the chain that has 'bs' as its backing file. 24286ebdcee2SJeff Cody * 24296ebdcee2SJeff Cody * active is the current topmost image. 24306ebdcee2SJeff Cody * 24316ebdcee2SJeff Cody * Returns NULL if bs is not found in active's image chain, 24326ebdcee2SJeff Cody * or if active == bs. 24334caf0fcdSJeff Cody * 24344caf0fcdSJeff Cody * Returns the bottommost base image if bs == NULL. 24356ebdcee2SJeff Cody */ 24366ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active, 24376ebdcee2SJeff Cody BlockDriverState *bs) 24386ebdcee2SJeff Cody { 2439760e0063SKevin Wolf while (active && bs != backing_bs(active)) { 2440760e0063SKevin Wolf active = backing_bs(active); 24416ebdcee2SJeff Cody } 24426ebdcee2SJeff Cody 24434caf0fcdSJeff Cody return active; 24446ebdcee2SJeff Cody } 24456ebdcee2SJeff Cody 24464caf0fcdSJeff Cody /* Given a BDS, searches for the base layer. */ 24474caf0fcdSJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs) 24484caf0fcdSJeff Cody { 24494caf0fcdSJeff Cody return bdrv_find_overlay(bs, NULL); 24506ebdcee2SJeff Cody } 24516ebdcee2SJeff Cody 24526ebdcee2SJeff Cody /* 24536ebdcee2SJeff Cody * Drops images above 'base' up to and including 'top', and sets the image 24546ebdcee2SJeff Cody * above 'top' to have base as its backing file. 24556ebdcee2SJeff Cody * 24566ebdcee2SJeff Cody * Requires that the overlay to 'top' is opened r/w, so that the backing file 24576ebdcee2SJeff Cody * information in 'bs' can be properly updated. 24586ebdcee2SJeff Cody * 24596ebdcee2SJeff Cody * E.g., this will convert the following chain: 24606ebdcee2SJeff Cody * bottom <- base <- intermediate <- top <- active 24616ebdcee2SJeff Cody * 24626ebdcee2SJeff Cody * to 24636ebdcee2SJeff Cody * 24646ebdcee2SJeff Cody * bottom <- base <- active 24656ebdcee2SJeff Cody * 24666ebdcee2SJeff Cody * It is allowed for bottom==base, in which case it converts: 24676ebdcee2SJeff Cody * 24686ebdcee2SJeff Cody * base <- intermediate <- top <- active 24696ebdcee2SJeff Cody * 24706ebdcee2SJeff Cody * to 24716ebdcee2SJeff Cody * 24726ebdcee2SJeff Cody * base <- active 24736ebdcee2SJeff Cody * 247454e26900SJeff Cody * If backing_file_str is non-NULL, it will be used when modifying top's 247554e26900SJeff Cody * overlay image metadata. 247654e26900SJeff Cody * 24776ebdcee2SJeff Cody * Error conditions: 24786ebdcee2SJeff Cody * if active == top, that is considered an error 24796ebdcee2SJeff Cody * 24806ebdcee2SJeff Cody */ 24816ebdcee2SJeff Cody int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top, 248254e26900SJeff Cody BlockDriverState *base, const char *backing_file_str) 24836ebdcee2SJeff Cody { 24846ebdcee2SJeff Cody BlockDriverState *new_top_bs = NULL; 24856ebdcee2SJeff Cody int ret = -EIO; 24866ebdcee2SJeff Cody 24876ebdcee2SJeff Cody if (!top->drv || !base->drv) { 24886ebdcee2SJeff Cody goto exit; 24896ebdcee2SJeff Cody } 24906ebdcee2SJeff Cody 24916ebdcee2SJeff Cody new_top_bs = bdrv_find_overlay(active, top); 24926ebdcee2SJeff Cody 24936ebdcee2SJeff Cody if (new_top_bs == NULL) { 24946ebdcee2SJeff Cody /* we could not find the image above 'top', this is an error */ 24956ebdcee2SJeff Cody goto exit; 24966ebdcee2SJeff Cody } 24976ebdcee2SJeff Cody 2498760e0063SKevin Wolf /* special case of new_top_bs->backing->bs already pointing to base - nothing 24996ebdcee2SJeff Cody * to do, no intermediate images */ 2500760e0063SKevin Wolf if (backing_bs(new_top_bs) == base) { 25016ebdcee2SJeff Cody ret = 0; 25026ebdcee2SJeff Cody goto exit; 25036ebdcee2SJeff Cody } 25046ebdcee2SJeff Cody 25055db15a57SKevin Wolf /* Make sure that base is in the backing chain of top */ 25065db15a57SKevin Wolf if (!bdrv_chain_contains(top, base)) { 25076ebdcee2SJeff Cody goto exit; 25086ebdcee2SJeff Cody } 25096ebdcee2SJeff Cody 25106ebdcee2SJeff Cody /* success - we can delete the intermediate states, and link top->base */ 25115db15a57SKevin Wolf backing_file_str = backing_file_str ? backing_file_str : base->filename; 251254e26900SJeff Cody ret = bdrv_change_backing_file(new_top_bs, backing_file_str, 25135db15a57SKevin Wolf base->drv ? base->drv->format_name : ""); 25146ebdcee2SJeff Cody if (ret) { 25156ebdcee2SJeff Cody goto exit; 25166ebdcee2SJeff Cody } 25175db15a57SKevin Wolf bdrv_set_backing_hd(new_top_bs, base); 25186ebdcee2SJeff Cody 25196ebdcee2SJeff Cody ret = 0; 25206ebdcee2SJeff Cody exit: 25216ebdcee2SJeff Cody return ret; 25226ebdcee2SJeff Cody } 25236ebdcee2SJeff Cody 252483f64091Sbellard /** 252583f64091Sbellard * Truncate file to 'offset' bytes (needed only for file protocols) 252683f64091Sbellard */ 252783f64091Sbellard int bdrv_truncate(BlockDriverState *bs, int64_t offset) 252883f64091Sbellard { 252983f64091Sbellard BlockDriver *drv = bs->drv; 253051762288SStefan Hajnoczi int ret; 253183f64091Sbellard if (!drv) 253219cb3738Sbellard return -ENOMEDIUM; 253383f64091Sbellard if (!drv->bdrv_truncate) 253483f64091Sbellard return -ENOTSUP; 253559f2689dSNaphtali Sprei if (bs->read_only) 253659f2689dSNaphtali Sprei return -EACCES; 25379c75e168SJeff Cody 253851762288SStefan Hajnoczi ret = drv->bdrv_truncate(bs, offset); 253951762288SStefan Hajnoczi if (ret == 0) { 254051762288SStefan Hajnoczi ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS); 2541ce1ffea8SJohn Snow bdrv_dirty_bitmap_truncate(bs); 2542a7f53e26SMarkus Armbruster if (bs->blk) { 2543a7f53e26SMarkus Armbruster blk_dev_resize_cb(bs->blk); 2544a7f53e26SMarkus Armbruster } 254551762288SStefan Hajnoczi } 254651762288SStefan Hajnoczi return ret; 254783f64091Sbellard } 254883f64091Sbellard 254983f64091Sbellard /** 25504a1d5e1fSFam Zheng * Length of a allocated file in bytes. Sparse files are counted by actual 25514a1d5e1fSFam Zheng * allocated space. Return < 0 if error or unknown. 25524a1d5e1fSFam Zheng */ 25534a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs) 25544a1d5e1fSFam Zheng { 25554a1d5e1fSFam Zheng BlockDriver *drv = bs->drv; 25564a1d5e1fSFam Zheng if (!drv) { 25574a1d5e1fSFam Zheng return -ENOMEDIUM; 25584a1d5e1fSFam Zheng } 25594a1d5e1fSFam Zheng if (drv->bdrv_get_allocated_file_size) { 25604a1d5e1fSFam Zheng return drv->bdrv_get_allocated_file_size(bs); 25614a1d5e1fSFam Zheng } 25624a1d5e1fSFam Zheng if (bs->file) { 25639a4f4c31SKevin Wolf return bdrv_get_allocated_file_size(bs->file->bs); 25644a1d5e1fSFam Zheng } 25654a1d5e1fSFam Zheng return -ENOTSUP; 25664a1d5e1fSFam Zheng } 25674a1d5e1fSFam Zheng 25684a1d5e1fSFam Zheng /** 256965a9bb25SMarkus Armbruster * Return number of sectors on success, -errno on error. 257083f64091Sbellard */ 257165a9bb25SMarkus Armbruster int64_t bdrv_nb_sectors(BlockDriverState *bs) 257283f64091Sbellard { 257383f64091Sbellard BlockDriver *drv = bs->drv; 257465a9bb25SMarkus Armbruster 257583f64091Sbellard if (!drv) 257619cb3738Sbellard return -ENOMEDIUM; 257751762288SStefan Hajnoczi 2578b94a2610SKevin Wolf if (drv->has_variable_length) { 2579b94a2610SKevin Wolf int ret = refresh_total_sectors(bs, bs->total_sectors); 2580b94a2610SKevin Wolf if (ret < 0) { 2581b94a2610SKevin Wolf return ret; 2582fc01f7e7Sbellard } 258346a4e4e6SStefan Hajnoczi } 258465a9bb25SMarkus Armbruster return bs->total_sectors; 258565a9bb25SMarkus Armbruster } 258665a9bb25SMarkus Armbruster 258765a9bb25SMarkus Armbruster /** 258865a9bb25SMarkus Armbruster * Return length in bytes on success, -errno on error. 258965a9bb25SMarkus Armbruster * The length is always a multiple of BDRV_SECTOR_SIZE. 259065a9bb25SMarkus Armbruster */ 259165a9bb25SMarkus Armbruster int64_t bdrv_getlength(BlockDriverState *bs) 259265a9bb25SMarkus Armbruster { 259365a9bb25SMarkus Armbruster int64_t ret = bdrv_nb_sectors(bs); 259465a9bb25SMarkus Armbruster 25954a9c9ea0SFam Zheng ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret; 259665a9bb25SMarkus Armbruster return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE; 259746a4e4e6SStefan Hajnoczi } 2598fc01f7e7Sbellard 259919cb3738Sbellard /* return 0 as number of sectors if no device present or error */ 260096b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) 2601fc01f7e7Sbellard { 260265a9bb25SMarkus Armbruster int64_t nb_sectors = bdrv_nb_sectors(bs); 260365a9bb25SMarkus Armbruster 260465a9bb25SMarkus Armbruster *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors; 2605fc01f7e7Sbellard } 2606cf98951bSbellard 2607b338082bSbellard int bdrv_is_read_only(BlockDriverState *bs) 2608b338082bSbellard { 2609b338082bSbellard return bs->read_only; 2610b338082bSbellard } 2611b338082bSbellard 2612985a03b0Sths int bdrv_is_sg(BlockDriverState *bs) 2613985a03b0Sths { 2614985a03b0Sths return bs->sg; 2615985a03b0Sths } 2616985a03b0Sths 2617e900a7b7SChristoph Hellwig int bdrv_enable_write_cache(BlockDriverState *bs) 2618e900a7b7SChristoph Hellwig { 2619e900a7b7SChristoph Hellwig return bs->enable_write_cache; 2620e900a7b7SChristoph Hellwig } 2621e900a7b7SChristoph Hellwig 2622425b0148SPaolo Bonzini void bdrv_set_enable_write_cache(BlockDriverState *bs, bool wce) 2623425b0148SPaolo Bonzini { 2624425b0148SPaolo Bonzini bs->enable_write_cache = wce; 262555b110f2SJeff Cody 262655b110f2SJeff Cody /* so a reopen() will preserve wce */ 262755b110f2SJeff Cody if (wce) { 262855b110f2SJeff Cody bs->open_flags |= BDRV_O_CACHE_WB; 262955b110f2SJeff Cody } else { 263055b110f2SJeff Cody bs->open_flags &= ~BDRV_O_CACHE_WB; 263155b110f2SJeff Cody } 2632425b0148SPaolo Bonzini } 2633425b0148SPaolo Bonzini 2634ea2384d3Sbellard int bdrv_is_encrypted(BlockDriverState *bs) 2635ea2384d3Sbellard { 2636760e0063SKevin Wolf if (bs->backing && bs->backing->bs->encrypted) { 2637ea2384d3Sbellard return 1; 2638760e0063SKevin Wolf } 2639ea2384d3Sbellard return bs->encrypted; 2640ea2384d3Sbellard } 2641ea2384d3Sbellard 2642c0f4ce77Saliguori int bdrv_key_required(BlockDriverState *bs) 2643c0f4ce77Saliguori { 2644760e0063SKevin Wolf BdrvChild *backing = bs->backing; 2645c0f4ce77Saliguori 2646760e0063SKevin Wolf if (backing && backing->bs->encrypted && !backing->bs->valid_key) { 2647c0f4ce77Saliguori return 1; 2648760e0063SKevin Wolf } 2649c0f4ce77Saliguori return (bs->encrypted && !bs->valid_key); 2650c0f4ce77Saliguori } 2651c0f4ce77Saliguori 2652ea2384d3Sbellard int bdrv_set_key(BlockDriverState *bs, const char *key) 2653ea2384d3Sbellard { 2654ea2384d3Sbellard int ret; 2655760e0063SKevin Wolf if (bs->backing && bs->backing->bs->encrypted) { 2656760e0063SKevin Wolf ret = bdrv_set_key(bs->backing->bs, key); 2657ea2384d3Sbellard if (ret < 0) 2658ea2384d3Sbellard return ret; 2659ea2384d3Sbellard if (!bs->encrypted) 2660ea2384d3Sbellard return 0; 2661ea2384d3Sbellard } 2662fd04a2aeSShahar Havivi if (!bs->encrypted) { 2663fd04a2aeSShahar Havivi return -EINVAL; 2664fd04a2aeSShahar Havivi } else if (!bs->drv || !bs->drv->bdrv_set_key) { 2665fd04a2aeSShahar Havivi return -ENOMEDIUM; 2666fd04a2aeSShahar Havivi } 2667c0f4ce77Saliguori ret = bs->drv->bdrv_set_key(bs, key); 2668bb5fc20fSaliguori if (ret < 0) { 2669bb5fc20fSaliguori bs->valid_key = 0; 2670bb5fc20fSaliguori } else if (!bs->valid_key) { 2671bb5fc20fSaliguori bs->valid_key = 1; 2672a7f53e26SMarkus Armbruster if (bs->blk) { 2673bb5fc20fSaliguori /* call the change callback now, we skipped it on open */ 2674a7f53e26SMarkus Armbruster blk_dev_change_media_cb(bs->blk, true); 2675a7f53e26SMarkus Armbruster } 2676bb5fc20fSaliguori } 2677c0f4ce77Saliguori return ret; 2678ea2384d3Sbellard } 2679ea2384d3Sbellard 26804d2855a3SMarkus Armbruster /* 26814d2855a3SMarkus Armbruster * Provide an encryption key for @bs. 26824d2855a3SMarkus Armbruster * If @key is non-null: 26834d2855a3SMarkus Armbruster * If @bs is not encrypted, fail. 26844d2855a3SMarkus Armbruster * Else if the key is invalid, fail. 26854d2855a3SMarkus Armbruster * Else set @bs's key to @key, replacing the existing key, if any. 26864d2855a3SMarkus Armbruster * If @key is null: 26874d2855a3SMarkus Armbruster * If @bs is encrypted and still lacks a key, fail. 26884d2855a3SMarkus Armbruster * Else do nothing. 26894d2855a3SMarkus Armbruster * On failure, store an error object through @errp if non-null. 26904d2855a3SMarkus Armbruster */ 26914d2855a3SMarkus Armbruster void bdrv_add_key(BlockDriverState *bs, const char *key, Error **errp) 26924d2855a3SMarkus Armbruster { 26934d2855a3SMarkus Armbruster if (key) { 26944d2855a3SMarkus Armbruster if (!bdrv_is_encrypted(bs)) { 269581e5f78aSAlberto Garcia error_setg(errp, "Node '%s' is not encrypted", 269681e5f78aSAlberto Garcia bdrv_get_device_or_node_name(bs)); 26974d2855a3SMarkus Armbruster } else if (bdrv_set_key(bs, key) < 0) { 2698c6bd8c70SMarkus Armbruster error_setg(errp, QERR_INVALID_PASSWORD); 26994d2855a3SMarkus Armbruster } 27004d2855a3SMarkus Armbruster } else { 27014d2855a3SMarkus Armbruster if (bdrv_key_required(bs)) { 2702b1ca6391SMarkus Armbruster error_set(errp, ERROR_CLASS_DEVICE_ENCRYPTED, 2703b1ca6391SMarkus Armbruster "'%s' (%s) is encrypted", 270481e5f78aSAlberto Garcia bdrv_get_device_or_node_name(bs), 27054d2855a3SMarkus Armbruster bdrv_get_encrypted_filename(bs)); 27064d2855a3SMarkus Armbruster } 27074d2855a3SMarkus Armbruster } 27084d2855a3SMarkus Armbruster } 27094d2855a3SMarkus Armbruster 2710f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs) 2711ea2384d3Sbellard { 2712f8d6bba1SMarkus Armbruster return bs->drv ? bs->drv->format_name : NULL; 2713ea2384d3Sbellard } 2714ea2384d3Sbellard 2715ada42401SStefan Hajnoczi static int qsort_strcmp(const void *a, const void *b) 2716ada42401SStefan Hajnoczi { 2717ada42401SStefan Hajnoczi return strcmp(a, b); 2718ada42401SStefan Hajnoczi } 2719ada42401SStefan Hajnoczi 2720ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name), 2721ea2384d3Sbellard void *opaque) 2722ea2384d3Sbellard { 2723ea2384d3Sbellard BlockDriver *drv; 2724e855e4fbSJeff Cody int count = 0; 2725ada42401SStefan Hajnoczi int i; 2726e855e4fbSJeff Cody const char **formats = NULL; 2727ea2384d3Sbellard 27288a22f02aSStefan Hajnoczi QLIST_FOREACH(drv, &bdrv_drivers, list) { 2729e855e4fbSJeff Cody if (drv->format_name) { 2730e855e4fbSJeff Cody bool found = false; 2731e855e4fbSJeff Cody int i = count; 2732e855e4fbSJeff Cody while (formats && i && !found) { 2733e855e4fbSJeff Cody found = !strcmp(formats[--i], drv->format_name); 2734e855e4fbSJeff Cody } 2735e855e4fbSJeff Cody 2736e855e4fbSJeff Cody if (!found) { 27375839e53bSMarkus Armbruster formats = g_renew(const char *, formats, count + 1); 2738e855e4fbSJeff Cody formats[count++] = drv->format_name; 2739ea2384d3Sbellard } 2740ea2384d3Sbellard } 2741e855e4fbSJeff Cody } 2742ada42401SStefan Hajnoczi 2743ada42401SStefan Hajnoczi qsort(formats, count, sizeof(formats[0]), qsort_strcmp); 2744ada42401SStefan Hajnoczi 2745ada42401SStefan Hajnoczi for (i = 0; i < count; i++) { 2746ada42401SStefan Hajnoczi it(opaque, formats[i]); 2747ada42401SStefan Hajnoczi } 2748ada42401SStefan Hajnoczi 2749e855e4fbSJeff Cody g_free(formats); 2750e855e4fbSJeff Cody } 2751ea2384d3Sbellard 2752dc364f4cSBenoît Canet /* This function is to find a node in the bs graph */ 2753dc364f4cSBenoît Canet BlockDriverState *bdrv_find_node(const char *node_name) 2754dc364f4cSBenoît Canet { 2755dc364f4cSBenoît Canet BlockDriverState *bs; 2756dc364f4cSBenoît Canet 2757dc364f4cSBenoît Canet assert(node_name); 2758dc364f4cSBenoît Canet 2759dc364f4cSBenoît Canet QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 2760dc364f4cSBenoît Canet if (!strcmp(node_name, bs->node_name)) { 2761dc364f4cSBenoît Canet return bs; 2762dc364f4cSBenoît Canet } 2763dc364f4cSBenoît Canet } 2764dc364f4cSBenoît Canet return NULL; 2765dc364f4cSBenoît Canet } 2766dc364f4cSBenoît Canet 2767c13163fbSBenoît Canet /* Put this QMP function here so it can access the static graph_bdrv_states. */ 2768d5a8ee60SAlberto Garcia BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp) 2769c13163fbSBenoît Canet { 2770c13163fbSBenoît Canet BlockDeviceInfoList *list, *entry; 2771c13163fbSBenoît Canet BlockDriverState *bs; 2772c13163fbSBenoît Canet 2773c13163fbSBenoît Canet list = NULL; 2774c13163fbSBenoît Canet QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 2775d5a8ee60SAlberto Garcia BlockDeviceInfo *info = bdrv_block_device_info(bs, errp); 2776d5a8ee60SAlberto Garcia if (!info) { 2777d5a8ee60SAlberto Garcia qapi_free_BlockDeviceInfoList(list); 2778d5a8ee60SAlberto Garcia return NULL; 2779d5a8ee60SAlberto Garcia } 2780c13163fbSBenoît Canet entry = g_malloc0(sizeof(*entry)); 2781d5a8ee60SAlberto Garcia entry->value = info; 2782c13163fbSBenoît Canet entry->next = list; 2783c13163fbSBenoît Canet list = entry; 2784c13163fbSBenoît Canet } 2785c13163fbSBenoît Canet 2786c13163fbSBenoît Canet return list; 2787c13163fbSBenoît Canet } 2788c13163fbSBenoît Canet 278912d3ba82SBenoît Canet BlockDriverState *bdrv_lookup_bs(const char *device, 279012d3ba82SBenoît Canet const char *node_name, 279112d3ba82SBenoît Canet Error **errp) 279212d3ba82SBenoît Canet { 27937f06d47eSMarkus Armbruster BlockBackend *blk; 27947f06d47eSMarkus Armbruster BlockDriverState *bs; 279512d3ba82SBenoît Canet 279612d3ba82SBenoît Canet if (device) { 27977f06d47eSMarkus Armbruster blk = blk_by_name(device); 279812d3ba82SBenoît Canet 27997f06d47eSMarkus Armbruster if (blk) { 28009f4ed6fbSAlberto Garcia bs = blk_bs(blk); 28019f4ed6fbSAlberto Garcia if (!bs) { 28025433c24fSMax Reitz error_setg(errp, "Device '%s' has no medium", device); 28035433c24fSMax Reitz } 28045433c24fSMax Reitz 28059f4ed6fbSAlberto Garcia return bs; 280612d3ba82SBenoît Canet } 2807dd67fa50SBenoît Canet } 280812d3ba82SBenoît Canet 2809dd67fa50SBenoît Canet if (node_name) { 281012d3ba82SBenoît Canet bs = bdrv_find_node(node_name); 281112d3ba82SBenoît Canet 2812dd67fa50SBenoît Canet if (bs) { 2813dd67fa50SBenoît Canet return bs; 2814dd67fa50SBenoît Canet } 281512d3ba82SBenoît Canet } 281612d3ba82SBenoît Canet 2817dd67fa50SBenoît Canet error_setg(errp, "Cannot find device=%s nor node_name=%s", 2818dd67fa50SBenoît Canet device ? device : "", 2819dd67fa50SBenoît Canet node_name ? node_name : ""); 2820dd67fa50SBenoît Canet return NULL; 282112d3ba82SBenoît Canet } 282212d3ba82SBenoît Canet 28235a6684d2SJeff Cody /* If 'base' is in the same chain as 'top', return true. Otherwise, 28245a6684d2SJeff Cody * return false. If either argument is NULL, return false. */ 28255a6684d2SJeff Cody bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base) 28265a6684d2SJeff Cody { 28275a6684d2SJeff Cody while (top && top != base) { 2828760e0063SKevin Wolf top = backing_bs(top); 28295a6684d2SJeff Cody } 28305a6684d2SJeff Cody 28315a6684d2SJeff Cody return top != NULL; 28325a6684d2SJeff Cody } 28335a6684d2SJeff Cody 283404df765aSFam Zheng BlockDriverState *bdrv_next_node(BlockDriverState *bs) 283504df765aSFam Zheng { 283604df765aSFam Zheng if (!bs) { 283704df765aSFam Zheng return QTAILQ_FIRST(&graph_bdrv_states); 283804df765aSFam Zheng } 283904df765aSFam Zheng return QTAILQ_NEXT(bs, node_list); 284004df765aSFam Zheng } 284104df765aSFam Zheng 28422f399b0aSMarkus Armbruster BlockDriverState *bdrv_next(BlockDriverState *bs) 28432f399b0aSMarkus Armbruster { 28442f399b0aSMarkus Armbruster if (!bs) { 28452f399b0aSMarkus Armbruster return QTAILQ_FIRST(&bdrv_states); 28462f399b0aSMarkus Armbruster } 2847dc364f4cSBenoît Canet return QTAILQ_NEXT(bs, device_list); 28482f399b0aSMarkus Armbruster } 28492f399b0aSMarkus Armbruster 285020a9e77dSFam Zheng const char *bdrv_get_node_name(const BlockDriverState *bs) 285120a9e77dSFam Zheng { 285220a9e77dSFam Zheng return bs->node_name; 285320a9e77dSFam Zheng } 285420a9e77dSFam Zheng 28557f06d47eSMarkus Armbruster /* TODO check what callers really want: bs->node_name or blk_name() */ 2856bfb197e0SMarkus Armbruster const char *bdrv_get_device_name(const BlockDriverState *bs) 2857ea2384d3Sbellard { 2858bfb197e0SMarkus Armbruster return bs->blk ? blk_name(bs->blk) : ""; 2859ea2384d3Sbellard } 2860ea2384d3Sbellard 28619b2aa84fSAlberto Garcia /* This can be used to identify nodes that might not have a device 28629b2aa84fSAlberto Garcia * name associated. Since node and device names live in the same 28639b2aa84fSAlberto Garcia * namespace, the result is unambiguous. The exception is if both are 28649b2aa84fSAlberto Garcia * absent, then this returns an empty (non-null) string. */ 28659b2aa84fSAlberto Garcia const char *bdrv_get_device_or_node_name(const BlockDriverState *bs) 28669b2aa84fSAlberto Garcia { 28679b2aa84fSAlberto Garcia return bs->blk ? blk_name(bs->blk) : bs->node_name; 28689b2aa84fSAlberto Garcia } 28699b2aa84fSAlberto Garcia 2870c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs) 2871c8433287SMarkus Armbruster { 2872c8433287SMarkus Armbruster return bs->open_flags; 2873c8433287SMarkus Armbruster } 2874c8433287SMarkus Armbruster 28753ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs) 28763ac21627SPeter Lieven { 28773ac21627SPeter Lieven return 1; 28783ac21627SPeter Lieven } 28793ac21627SPeter Lieven 2880f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs) 2881f2feebbdSKevin Wolf { 2882f2feebbdSKevin Wolf assert(bs->drv); 2883f2feebbdSKevin Wolf 288411212d8fSPaolo Bonzini /* If BS is a copy on write image, it is initialized to 288511212d8fSPaolo Bonzini the contents of the base image, which may not be zeroes. */ 2886760e0063SKevin Wolf if (bs->backing) { 288711212d8fSPaolo Bonzini return 0; 288811212d8fSPaolo Bonzini } 2889336c1c12SKevin Wolf if (bs->drv->bdrv_has_zero_init) { 2890336c1c12SKevin Wolf return bs->drv->bdrv_has_zero_init(bs); 2891f2feebbdSKevin Wolf } 2892f2feebbdSKevin Wolf 28933ac21627SPeter Lieven /* safe default */ 28943ac21627SPeter Lieven return 0; 2895f2feebbdSKevin Wolf } 2896f2feebbdSKevin Wolf 28974ce78691SPeter Lieven bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs) 28984ce78691SPeter Lieven { 28994ce78691SPeter Lieven BlockDriverInfo bdi; 29004ce78691SPeter Lieven 2901760e0063SKevin Wolf if (bs->backing) { 29024ce78691SPeter Lieven return false; 29034ce78691SPeter Lieven } 29044ce78691SPeter Lieven 29054ce78691SPeter Lieven if (bdrv_get_info(bs, &bdi) == 0) { 29064ce78691SPeter Lieven return bdi.unallocated_blocks_are_zero; 29074ce78691SPeter Lieven } 29084ce78691SPeter Lieven 29094ce78691SPeter Lieven return false; 29104ce78691SPeter Lieven } 29114ce78691SPeter Lieven 29124ce78691SPeter Lieven bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs) 29134ce78691SPeter Lieven { 29144ce78691SPeter Lieven BlockDriverInfo bdi; 29154ce78691SPeter Lieven 2916760e0063SKevin Wolf if (bs->backing || !(bs->open_flags & BDRV_O_UNMAP)) { 29174ce78691SPeter Lieven return false; 29184ce78691SPeter Lieven } 29194ce78691SPeter Lieven 29204ce78691SPeter Lieven if (bdrv_get_info(bs, &bdi) == 0) { 29214ce78691SPeter Lieven return bdi.can_write_zeroes_with_unmap; 29224ce78691SPeter Lieven } 29234ce78691SPeter Lieven 29244ce78691SPeter Lieven return false; 29254ce78691SPeter Lieven } 29264ce78691SPeter Lieven 2927045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs) 2928045df330Saliguori { 2929760e0063SKevin Wolf if (bs->backing && bs->backing->bs->encrypted) 2930045df330Saliguori return bs->backing_file; 2931045df330Saliguori else if (bs->encrypted) 2932045df330Saliguori return bs->filename; 2933045df330Saliguori else 2934045df330Saliguori return NULL; 2935045df330Saliguori } 2936045df330Saliguori 293783f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs, 293883f64091Sbellard char *filename, int filename_size) 293983f64091Sbellard { 294083f64091Sbellard pstrcpy(filename, filename_size, bs->backing_file); 294183f64091Sbellard } 294283f64091Sbellard 2943faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) 2944faea38e7Sbellard { 2945faea38e7Sbellard BlockDriver *drv = bs->drv; 2946faea38e7Sbellard if (!drv) 294719cb3738Sbellard return -ENOMEDIUM; 2948faea38e7Sbellard if (!drv->bdrv_get_info) 2949faea38e7Sbellard return -ENOTSUP; 2950faea38e7Sbellard memset(bdi, 0, sizeof(*bdi)); 2951faea38e7Sbellard return drv->bdrv_get_info(bs, bdi); 2952faea38e7Sbellard } 2953faea38e7Sbellard 2954eae041feSMax Reitz ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs) 2955eae041feSMax Reitz { 2956eae041feSMax Reitz BlockDriver *drv = bs->drv; 2957eae041feSMax Reitz if (drv && drv->bdrv_get_specific_info) { 2958eae041feSMax Reitz return drv->bdrv_get_specific_info(bs); 2959eae041feSMax Reitz } 2960eae041feSMax Reitz return NULL; 2961eae041feSMax Reitz } 2962eae041feSMax Reitz 2963a31939e6SEric Blake void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event) 29648b9b0cc2SKevin Wolf { 2965bf736fe3SKevin Wolf if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) { 29668b9b0cc2SKevin Wolf return; 29678b9b0cc2SKevin Wolf } 29688b9b0cc2SKevin Wolf 2969bf736fe3SKevin Wolf bs->drv->bdrv_debug_event(bs, event); 297041c695c7SKevin Wolf } 29718b9b0cc2SKevin Wolf 297241c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, 297341c695c7SKevin Wolf const char *tag) 297441c695c7SKevin Wolf { 297541c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { 29769a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 297741c695c7SKevin Wolf } 297841c695c7SKevin Wolf 297941c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { 298041c695c7SKevin Wolf return bs->drv->bdrv_debug_breakpoint(bs, event, tag); 298141c695c7SKevin Wolf } 298241c695c7SKevin Wolf 298341c695c7SKevin Wolf return -ENOTSUP; 298441c695c7SKevin Wolf } 298541c695c7SKevin Wolf 29864cc70e93SFam Zheng int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag) 29874cc70e93SFam Zheng { 29884cc70e93SFam Zheng while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) { 29899a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 29904cc70e93SFam Zheng } 29914cc70e93SFam Zheng 29924cc70e93SFam Zheng if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) { 29934cc70e93SFam Zheng return bs->drv->bdrv_debug_remove_breakpoint(bs, tag); 29944cc70e93SFam Zheng } 29954cc70e93SFam Zheng 29964cc70e93SFam Zheng return -ENOTSUP; 29974cc70e93SFam Zheng } 29984cc70e93SFam Zheng 299941c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag) 300041c695c7SKevin Wolf { 3001938789eaSMax Reitz while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) { 30029a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 300341c695c7SKevin Wolf } 300441c695c7SKevin Wolf 300541c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_resume) { 300641c695c7SKevin Wolf return bs->drv->bdrv_debug_resume(bs, tag); 300741c695c7SKevin Wolf } 300841c695c7SKevin Wolf 300941c695c7SKevin Wolf return -ENOTSUP; 301041c695c7SKevin Wolf } 301141c695c7SKevin Wolf 301241c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) 301341c695c7SKevin Wolf { 301441c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { 30159a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 301641c695c7SKevin Wolf } 301741c695c7SKevin Wolf 301841c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { 301941c695c7SKevin Wolf return bs->drv->bdrv_debug_is_suspended(bs, tag); 302041c695c7SKevin Wolf } 302141c695c7SKevin Wolf 302241c695c7SKevin Wolf return false; 30238b9b0cc2SKevin Wolf } 30248b9b0cc2SKevin Wolf 3025199630b6SBlue Swirl int bdrv_is_snapshot(BlockDriverState *bs) 3026199630b6SBlue Swirl { 3027199630b6SBlue Swirl return !!(bs->open_flags & BDRV_O_SNAPSHOT); 3028199630b6SBlue Swirl } 3029199630b6SBlue Swirl 3030b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol. If it is 3031b1b1d783SJeff Cody * relative, it must be relative to the chain. So, passing in bs->filename 3032b1b1d783SJeff Cody * from a BDS as backing_file should not be done, as that may be relative to 3033b1b1d783SJeff Cody * the CWD rather than the chain. */ 3034e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, 3035e8a6bb9cSMarcelo Tosatti const char *backing_file) 3036e8a6bb9cSMarcelo Tosatti { 3037b1b1d783SJeff Cody char *filename_full = NULL; 3038b1b1d783SJeff Cody char *backing_file_full = NULL; 3039b1b1d783SJeff Cody char *filename_tmp = NULL; 3040b1b1d783SJeff Cody int is_protocol = 0; 3041b1b1d783SJeff Cody BlockDriverState *curr_bs = NULL; 3042b1b1d783SJeff Cody BlockDriverState *retval = NULL; 3043b1b1d783SJeff Cody 3044b1b1d783SJeff Cody if (!bs || !bs->drv || !backing_file) { 3045e8a6bb9cSMarcelo Tosatti return NULL; 3046e8a6bb9cSMarcelo Tosatti } 3047e8a6bb9cSMarcelo Tosatti 3048b1b1d783SJeff Cody filename_full = g_malloc(PATH_MAX); 3049b1b1d783SJeff Cody backing_file_full = g_malloc(PATH_MAX); 3050b1b1d783SJeff Cody filename_tmp = g_malloc(PATH_MAX); 3051b1b1d783SJeff Cody 3052b1b1d783SJeff Cody is_protocol = path_has_protocol(backing_file); 3053b1b1d783SJeff Cody 3054760e0063SKevin Wolf for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) { 3055b1b1d783SJeff Cody 3056b1b1d783SJeff Cody /* If either of the filename paths is actually a protocol, then 3057b1b1d783SJeff Cody * compare unmodified paths; otherwise make paths relative */ 3058b1b1d783SJeff Cody if (is_protocol || path_has_protocol(curr_bs->backing_file)) { 3059b1b1d783SJeff Cody if (strcmp(backing_file, curr_bs->backing_file) == 0) { 3060760e0063SKevin Wolf retval = curr_bs->backing->bs; 3061b1b1d783SJeff Cody break; 3062b1b1d783SJeff Cody } 3063e8a6bb9cSMarcelo Tosatti } else { 3064b1b1d783SJeff Cody /* If not an absolute filename path, make it relative to the current 3065b1b1d783SJeff Cody * image's filename path */ 3066b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 3067b1b1d783SJeff Cody backing_file); 3068b1b1d783SJeff Cody 3069b1b1d783SJeff Cody /* We are going to compare absolute pathnames */ 3070b1b1d783SJeff Cody if (!realpath(filename_tmp, filename_full)) { 3071b1b1d783SJeff Cody continue; 3072b1b1d783SJeff Cody } 3073b1b1d783SJeff Cody 3074b1b1d783SJeff Cody /* We need to make sure the backing filename we are comparing against 3075b1b1d783SJeff Cody * is relative to the current image filename (or absolute) */ 3076b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 3077b1b1d783SJeff Cody curr_bs->backing_file); 3078b1b1d783SJeff Cody 3079b1b1d783SJeff Cody if (!realpath(filename_tmp, backing_file_full)) { 3080b1b1d783SJeff Cody continue; 3081b1b1d783SJeff Cody } 3082b1b1d783SJeff Cody 3083b1b1d783SJeff Cody if (strcmp(backing_file_full, filename_full) == 0) { 3084760e0063SKevin Wolf retval = curr_bs->backing->bs; 3085b1b1d783SJeff Cody break; 3086b1b1d783SJeff Cody } 3087e8a6bb9cSMarcelo Tosatti } 3088e8a6bb9cSMarcelo Tosatti } 3089e8a6bb9cSMarcelo Tosatti 3090b1b1d783SJeff Cody g_free(filename_full); 3091b1b1d783SJeff Cody g_free(backing_file_full); 3092b1b1d783SJeff Cody g_free(filename_tmp); 3093b1b1d783SJeff Cody return retval; 3094e8a6bb9cSMarcelo Tosatti } 3095e8a6bb9cSMarcelo Tosatti 3096f198fd1cSBenoît Canet int bdrv_get_backing_file_depth(BlockDriverState *bs) 3097f198fd1cSBenoît Canet { 3098f198fd1cSBenoît Canet if (!bs->drv) { 3099f198fd1cSBenoît Canet return 0; 3100f198fd1cSBenoît Canet } 3101f198fd1cSBenoît Canet 3102760e0063SKevin Wolf if (!bs->backing) { 3103f198fd1cSBenoît Canet return 0; 3104f198fd1cSBenoît Canet } 3105f198fd1cSBenoît Canet 3106760e0063SKevin Wolf return 1 + bdrv_get_backing_file_depth(bs->backing->bs); 3107f198fd1cSBenoît Canet } 3108f198fd1cSBenoît Canet 3109ea2384d3Sbellard void bdrv_init(void) 3110ea2384d3Sbellard { 31115efa9d5aSAnthony Liguori module_call_init(MODULE_INIT_BLOCK); 3112ea2384d3Sbellard } 3113ce1a14dcSpbrook 3114eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void) 3115eb852011SMarkus Armbruster { 3116eb852011SMarkus Armbruster use_bdrv_whitelist = 1; 3117eb852011SMarkus Armbruster bdrv_init(); 3118eb852011SMarkus Armbruster } 3119eb852011SMarkus Armbruster 31205a8a30dbSKevin Wolf void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp) 31210f15423cSAnthony Liguori { 31225a8a30dbSKevin Wolf Error *local_err = NULL; 31235a8a30dbSKevin Wolf int ret; 31245a8a30dbSKevin Wolf 31253456a8d1SKevin Wolf if (!bs->drv) { 31263456a8d1SKevin Wolf return; 31270f15423cSAnthony Liguori } 31283456a8d1SKevin Wolf 31297ea2d269SAlexey Kardashevskiy if (!(bs->open_flags & BDRV_O_INCOMING)) { 31307ea2d269SAlexey Kardashevskiy return; 31317ea2d269SAlexey Kardashevskiy } 31327ea2d269SAlexey Kardashevskiy bs->open_flags &= ~BDRV_O_INCOMING; 31337ea2d269SAlexey Kardashevskiy 31343456a8d1SKevin Wolf if (bs->drv->bdrv_invalidate_cache) { 31355a8a30dbSKevin Wolf bs->drv->bdrv_invalidate_cache(bs, &local_err); 31363456a8d1SKevin Wolf } else if (bs->file) { 31379a4f4c31SKevin Wolf bdrv_invalidate_cache(bs->file->bs, &local_err); 31385a8a30dbSKevin Wolf } 31395a8a30dbSKevin Wolf if (local_err) { 31405a8a30dbSKevin Wolf error_propagate(errp, local_err); 31415a8a30dbSKevin Wolf return; 31423456a8d1SKevin Wolf } 31433456a8d1SKevin Wolf 31445a8a30dbSKevin Wolf ret = refresh_total_sectors(bs, bs->total_sectors); 31455a8a30dbSKevin Wolf if (ret < 0) { 31465a8a30dbSKevin Wolf error_setg_errno(errp, -ret, "Could not refresh total sector count"); 31475a8a30dbSKevin Wolf return; 31485a8a30dbSKevin Wolf } 31490f15423cSAnthony Liguori } 31500f15423cSAnthony Liguori 31515a8a30dbSKevin Wolf void bdrv_invalidate_cache_all(Error **errp) 31520f15423cSAnthony Liguori { 31530f15423cSAnthony Liguori BlockDriverState *bs; 31545a8a30dbSKevin Wolf Error *local_err = NULL; 31550f15423cSAnthony Liguori 3156dc364f4cSBenoît Canet QTAILQ_FOREACH(bs, &bdrv_states, device_list) { 3157ed78cda3SStefan Hajnoczi AioContext *aio_context = bdrv_get_aio_context(bs); 3158ed78cda3SStefan Hajnoczi 3159ed78cda3SStefan Hajnoczi aio_context_acquire(aio_context); 31605a8a30dbSKevin Wolf bdrv_invalidate_cache(bs, &local_err); 3161ed78cda3SStefan Hajnoczi aio_context_release(aio_context); 31625a8a30dbSKevin Wolf if (local_err) { 31635a8a30dbSKevin Wolf error_propagate(errp, local_err); 31645a8a30dbSKevin Wolf return; 31655a8a30dbSKevin Wolf } 31660f15423cSAnthony Liguori } 31670f15423cSAnthony Liguori } 31680f15423cSAnthony Liguori 3169f9f05dc5SKevin Wolf /**************************************************************/ 317019cb3738Sbellard /* removable device support */ 317119cb3738Sbellard 317219cb3738Sbellard /** 317319cb3738Sbellard * Return TRUE if the media is present 317419cb3738Sbellard */ 3175e031f750SMax Reitz bool bdrv_is_inserted(BlockDriverState *bs) 317619cb3738Sbellard { 317719cb3738Sbellard BlockDriver *drv = bs->drv; 317828d7a789SMax Reitz BdrvChild *child; 3179a1aff5bfSMarkus Armbruster 3180e031f750SMax Reitz if (!drv) { 3181e031f750SMax Reitz return false; 3182e031f750SMax Reitz } 318328d7a789SMax Reitz if (drv->bdrv_is_inserted) { 3184a1aff5bfSMarkus Armbruster return drv->bdrv_is_inserted(bs); 318519cb3738Sbellard } 318628d7a789SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 318728d7a789SMax Reitz if (!bdrv_is_inserted(child->bs)) { 318828d7a789SMax Reitz return false; 318928d7a789SMax Reitz } 319028d7a789SMax Reitz } 319128d7a789SMax Reitz return true; 319228d7a789SMax Reitz } 319319cb3738Sbellard 319419cb3738Sbellard /** 31958e49ca46SMarkus Armbruster * Return whether the media changed since the last call to this 31968e49ca46SMarkus Armbruster * function, or -ENOTSUP if we don't know. Most drivers don't know. 319719cb3738Sbellard */ 319819cb3738Sbellard int bdrv_media_changed(BlockDriverState *bs) 319919cb3738Sbellard { 320019cb3738Sbellard BlockDriver *drv = bs->drv; 320119cb3738Sbellard 32028e49ca46SMarkus Armbruster if (drv && drv->bdrv_media_changed) { 32038e49ca46SMarkus Armbruster return drv->bdrv_media_changed(bs); 32048e49ca46SMarkus Armbruster } 32058e49ca46SMarkus Armbruster return -ENOTSUP; 320619cb3738Sbellard } 320719cb3738Sbellard 320819cb3738Sbellard /** 320919cb3738Sbellard * If eject_flag is TRUE, eject the media. Otherwise, close the tray 321019cb3738Sbellard */ 3211f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag) 321219cb3738Sbellard { 321319cb3738Sbellard BlockDriver *drv = bs->drv; 3214bfb197e0SMarkus Armbruster const char *device_name; 321519cb3738Sbellard 3216822e1cd1SMarkus Armbruster if (drv && drv->bdrv_eject) { 3217822e1cd1SMarkus Armbruster drv->bdrv_eject(bs, eject_flag); 321819cb3738Sbellard } 32196f382ed2SLuiz Capitulino 3220bfb197e0SMarkus Armbruster device_name = bdrv_get_device_name(bs); 3221bfb197e0SMarkus Armbruster if (device_name[0] != '\0') { 3222bfb197e0SMarkus Armbruster qapi_event_send_device_tray_moved(device_name, 3223a5ee7bd4SWenchao Xia eject_flag, &error_abort); 32246f382ed2SLuiz Capitulino } 322519cb3738Sbellard } 322619cb3738Sbellard 322719cb3738Sbellard /** 322819cb3738Sbellard * Lock or unlock the media (if it is locked, the user won't be able 322919cb3738Sbellard * to eject it manually). 323019cb3738Sbellard */ 3231025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked) 323219cb3738Sbellard { 323319cb3738Sbellard BlockDriver *drv = bs->drv; 323419cb3738Sbellard 3235025e849aSMarkus Armbruster trace_bdrv_lock_medium(bs, locked); 3236b8c6d095SStefan Hajnoczi 3237025e849aSMarkus Armbruster if (drv && drv->bdrv_lock_medium) { 3238025e849aSMarkus Armbruster drv->bdrv_lock_medium(bs, locked); 323919cb3738Sbellard } 324019cb3738Sbellard } 3241985a03b0Sths 32420db6e54aSFam Zheng BdrvDirtyBitmap *bdrv_find_dirty_bitmap(BlockDriverState *bs, const char *name) 32430db6e54aSFam Zheng { 32440db6e54aSFam Zheng BdrvDirtyBitmap *bm; 32450db6e54aSFam Zheng 32460db6e54aSFam Zheng assert(name); 32470db6e54aSFam Zheng QLIST_FOREACH(bm, &bs->dirty_bitmaps, list) { 32480db6e54aSFam Zheng if (bm->name && !strcmp(name, bm->name)) { 32490db6e54aSFam Zheng return bm; 32500db6e54aSFam Zheng } 32510db6e54aSFam Zheng } 32520db6e54aSFam Zheng return NULL; 32530db6e54aSFam Zheng } 32540db6e54aSFam Zheng 325520dca810SJohn Snow void bdrv_dirty_bitmap_make_anon(BdrvDirtyBitmap *bitmap) 32560db6e54aSFam Zheng { 32579bd2b08fSJohn Snow assert(!bdrv_dirty_bitmap_frozen(bitmap)); 32580db6e54aSFam Zheng g_free(bitmap->name); 32590db6e54aSFam Zheng bitmap->name = NULL; 32600db6e54aSFam Zheng } 32610db6e54aSFam Zheng 32620db6e54aSFam Zheng BdrvDirtyBitmap *bdrv_create_dirty_bitmap(BlockDriverState *bs, 32635fba6c0eSJohn Snow uint32_t granularity, 32640db6e54aSFam Zheng const char *name, 3265b8afb520SFam Zheng Error **errp) 32667cd1e32aSlirans@il.ibm.com { 32677cd1e32aSlirans@il.ibm.com int64_t bitmap_size; 3268e4654d2dSFam Zheng BdrvDirtyBitmap *bitmap; 32695fba6c0eSJohn Snow uint32_t sector_granularity; 3270a55eb92cSJan Kiszka 327150717e94SPaolo Bonzini assert((granularity & (granularity - 1)) == 0); 327250717e94SPaolo Bonzini 32730db6e54aSFam Zheng if (name && bdrv_find_dirty_bitmap(bs, name)) { 32740db6e54aSFam Zheng error_setg(errp, "Bitmap already exists: %s", name); 32750db6e54aSFam Zheng return NULL; 32760db6e54aSFam Zheng } 32775fba6c0eSJohn Snow sector_granularity = granularity >> BDRV_SECTOR_BITS; 32785fba6c0eSJohn Snow assert(sector_granularity); 327957322b78SMarkus Armbruster bitmap_size = bdrv_nb_sectors(bs); 3280b8afb520SFam Zheng if (bitmap_size < 0) { 3281b8afb520SFam Zheng error_setg_errno(errp, -bitmap_size, "could not get length of device"); 3282b8afb520SFam Zheng errno = -bitmap_size; 3283b8afb520SFam Zheng return NULL; 3284b8afb520SFam Zheng } 32855839e53bSMarkus Armbruster bitmap = g_new0(BdrvDirtyBitmap, 1); 32865fba6c0eSJohn Snow bitmap->bitmap = hbitmap_alloc(bitmap_size, ctz32(sector_granularity)); 3287e74e6b78SJohn Snow bitmap->size = bitmap_size; 32880db6e54aSFam Zheng bitmap->name = g_strdup(name); 3289b8e6fb75SJohn Snow bitmap->disabled = false; 3290e4654d2dSFam Zheng QLIST_INSERT_HEAD(&bs->dirty_bitmaps, bitmap, list); 3291e4654d2dSFam Zheng return bitmap; 3292e4654d2dSFam Zheng } 3293e4654d2dSFam Zheng 32949bd2b08fSJohn Snow bool bdrv_dirty_bitmap_frozen(BdrvDirtyBitmap *bitmap) 32959bd2b08fSJohn Snow { 32969bd2b08fSJohn Snow return bitmap->successor; 32979bd2b08fSJohn Snow } 32989bd2b08fSJohn Snow 3299b8e6fb75SJohn Snow bool bdrv_dirty_bitmap_enabled(BdrvDirtyBitmap *bitmap) 3300b8e6fb75SJohn Snow { 33019bd2b08fSJohn Snow return !(bitmap->disabled || bitmap->successor); 33029bd2b08fSJohn Snow } 33039bd2b08fSJohn Snow 33049abe3bdcSJohn Snow DirtyBitmapStatus bdrv_dirty_bitmap_status(BdrvDirtyBitmap *bitmap) 33059abe3bdcSJohn Snow { 33069abe3bdcSJohn Snow if (bdrv_dirty_bitmap_frozen(bitmap)) { 33079abe3bdcSJohn Snow return DIRTY_BITMAP_STATUS_FROZEN; 33089abe3bdcSJohn Snow } else if (!bdrv_dirty_bitmap_enabled(bitmap)) { 33099abe3bdcSJohn Snow return DIRTY_BITMAP_STATUS_DISABLED; 33109abe3bdcSJohn Snow } else { 33119abe3bdcSJohn Snow return DIRTY_BITMAP_STATUS_ACTIVE; 33129abe3bdcSJohn Snow } 33139abe3bdcSJohn Snow } 33149abe3bdcSJohn Snow 33159bd2b08fSJohn Snow /** 33169bd2b08fSJohn Snow * Create a successor bitmap destined to replace this bitmap after an operation. 33179bd2b08fSJohn Snow * Requires that the bitmap is not frozen and has no successor. 33189bd2b08fSJohn Snow */ 33199bd2b08fSJohn Snow int bdrv_dirty_bitmap_create_successor(BlockDriverState *bs, 33209bd2b08fSJohn Snow BdrvDirtyBitmap *bitmap, Error **errp) 33219bd2b08fSJohn Snow { 33229bd2b08fSJohn Snow uint64_t granularity; 33239bd2b08fSJohn Snow BdrvDirtyBitmap *child; 33249bd2b08fSJohn Snow 33259bd2b08fSJohn Snow if (bdrv_dirty_bitmap_frozen(bitmap)) { 33269bd2b08fSJohn Snow error_setg(errp, "Cannot create a successor for a bitmap that is " 33279bd2b08fSJohn Snow "currently frozen"); 33289bd2b08fSJohn Snow return -1; 33299bd2b08fSJohn Snow } 33309bd2b08fSJohn Snow assert(!bitmap->successor); 33319bd2b08fSJohn Snow 33329bd2b08fSJohn Snow /* Create an anonymous successor */ 33339bd2b08fSJohn Snow granularity = bdrv_dirty_bitmap_granularity(bitmap); 33349bd2b08fSJohn Snow child = bdrv_create_dirty_bitmap(bs, granularity, NULL, errp); 33359bd2b08fSJohn Snow if (!child) { 33369bd2b08fSJohn Snow return -1; 33379bd2b08fSJohn Snow } 33389bd2b08fSJohn Snow 33399bd2b08fSJohn Snow /* Successor will be on or off based on our current state. */ 33409bd2b08fSJohn Snow child->disabled = bitmap->disabled; 33419bd2b08fSJohn Snow 33429bd2b08fSJohn Snow /* Install the successor and freeze the parent */ 33439bd2b08fSJohn Snow bitmap->successor = child; 33449bd2b08fSJohn Snow return 0; 33459bd2b08fSJohn Snow } 33469bd2b08fSJohn Snow 33479bd2b08fSJohn Snow /** 33489bd2b08fSJohn Snow * For a bitmap with a successor, yield our name to the successor, 33499bd2b08fSJohn Snow * delete the old bitmap, and return a handle to the new bitmap. 33509bd2b08fSJohn Snow */ 33519bd2b08fSJohn Snow BdrvDirtyBitmap *bdrv_dirty_bitmap_abdicate(BlockDriverState *bs, 33529bd2b08fSJohn Snow BdrvDirtyBitmap *bitmap, 33539bd2b08fSJohn Snow Error **errp) 33549bd2b08fSJohn Snow { 33559bd2b08fSJohn Snow char *name; 33569bd2b08fSJohn Snow BdrvDirtyBitmap *successor = bitmap->successor; 33579bd2b08fSJohn Snow 33589bd2b08fSJohn Snow if (successor == NULL) { 33599bd2b08fSJohn Snow error_setg(errp, "Cannot relinquish control if " 33609bd2b08fSJohn Snow "there's no successor present"); 33619bd2b08fSJohn Snow return NULL; 33629bd2b08fSJohn Snow } 33639bd2b08fSJohn Snow 33649bd2b08fSJohn Snow name = bitmap->name; 33659bd2b08fSJohn Snow bitmap->name = NULL; 33669bd2b08fSJohn Snow successor->name = name; 33679bd2b08fSJohn Snow bitmap->successor = NULL; 33689bd2b08fSJohn Snow bdrv_release_dirty_bitmap(bs, bitmap); 33699bd2b08fSJohn Snow 33709bd2b08fSJohn Snow return successor; 33719bd2b08fSJohn Snow } 33729bd2b08fSJohn Snow 33739bd2b08fSJohn Snow /** 33749bd2b08fSJohn Snow * In cases of failure where we can no longer safely delete the parent, 33759bd2b08fSJohn Snow * we may wish to re-join the parent and child/successor. 33769bd2b08fSJohn Snow * The merged parent will be un-frozen, but not explicitly re-enabled. 33779bd2b08fSJohn Snow */ 33789bd2b08fSJohn Snow BdrvDirtyBitmap *bdrv_reclaim_dirty_bitmap(BlockDriverState *bs, 33799bd2b08fSJohn Snow BdrvDirtyBitmap *parent, 33809bd2b08fSJohn Snow Error **errp) 33819bd2b08fSJohn Snow { 33829bd2b08fSJohn Snow BdrvDirtyBitmap *successor = parent->successor; 33839bd2b08fSJohn Snow 33849bd2b08fSJohn Snow if (!successor) { 33859bd2b08fSJohn Snow error_setg(errp, "Cannot reclaim a successor when none is present"); 33869bd2b08fSJohn Snow return NULL; 33879bd2b08fSJohn Snow } 33889bd2b08fSJohn Snow 33899bd2b08fSJohn Snow if (!hbitmap_merge(parent->bitmap, successor->bitmap)) { 33909bd2b08fSJohn Snow error_setg(errp, "Merging of parent and successor bitmap failed"); 33919bd2b08fSJohn Snow return NULL; 33929bd2b08fSJohn Snow } 33939bd2b08fSJohn Snow bdrv_release_dirty_bitmap(bs, successor); 33949bd2b08fSJohn Snow parent->successor = NULL; 33959bd2b08fSJohn Snow 33969bd2b08fSJohn Snow return parent; 3397b8e6fb75SJohn Snow } 3398b8e6fb75SJohn Snow 3399ce1ffea8SJohn Snow /** 3400ce1ffea8SJohn Snow * Truncates _all_ bitmaps attached to a BDS. 3401ce1ffea8SJohn Snow */ 3402ce1ffea8SJohn Snow static void bdrv_dirty_bitmap_truncate(BlockDriverState *bs) 3403ce1ffea8SJohn Snow { 3404ce1ffea8SJohn Snow BdrvDirtyBitmap *bitmap; 3405ce1ffea8SJohn Snow uint64_t size = bdrv_nb_sectors(bs); 3406ce1ffea8SJohn Snow 3407ce1ffea8SJohn Snow QLIST_FOREACH(bitmap, &bs->dirty_bitmaps, list) { 340806207b0fSJohn Snow assert(!bdrv_dirty_bitmap_frozen(bitmap)); 3409ce1ffea8SJohn Snow hbitmap_truncate(bitmap->bitmap, size); 34105270b6a0SJohn Snow bitmap->size = size; 3411ce1ffea8SJohn Snow } 3412ce1ffea8SJohn Snow } 3413ce1ffea8SJohn Snow 3414e4654d2dSFam Zheng void bdrv_release_dirty_bitmap(BlockDriverState *bs, BdrvDirtyBitmap *bitmap) 3415e4654d2dSFam Zheng { 3416e4654d2dSFam Zheng BdrvDirtyBitmap *bm, *next; 3417e4654d2dSFam Zheng QLIST_FOREACH_SAFE(bm, &bs->dirty_bitmaps, list, next) { 3418e4654d2dSFam Zheng if (bm == bitmap) { 34199bd2b08fSJohn Snow assert(!bdrv_dirty_bitmap_frozen(bm)); 3420e4654d2dSFam Zheng QLIST_REMOVE(bitmap, list); 3421e4654d2dSFam Zheng hbitmap_free(bitmap->bitmap); 34220db6e54aSFam Zheng g_free(bitmap->name); 3423e4654d2dSFam Zheng g_free(bitmap); 3424e4654d2dSFam Zheng return; 34257cd1e32aSlirans@il.ibm.com } 34267cd1e32aSlirans@il.ibm.com } 34277cd1e32aSlirans@il.ibm.com } 34287cd1e32aSlirans@il.ibm.com 3429b8e6fb75SJohn Snow void bdrv_disable_dirty_bitmap(BdrvDirtyBitmap *bitmap) 3430b8e6fb75SJohn Snow { 34319bd2b08fSJohn Snow assert(!bdrv_dirty_bitmap_frozen(bitmap)); 3432b8e6fb75SJohn Snow bitmap->disabled = true; 3433b8e6fb75SJohn Snow } 3434b8e6fb75SJohn Snow 3435b8e6fb75SJohn Snow void bdrv_enable_dirty_bitmap(BdrvDirtyBitmap *bitmap) 3436b8e6fb75SJohn Snow { 34379bd2b08fSJohn Snow assert(!bdrv_dirty_bitmap_frozen(bitmap)); 3438b8e6fb75SJohn Snow bitmap->disabled = false; 3439b8e6fb75SJohn Snow } 3440b8e6fb75SJohn Snow 344121b56835SFam Zheng BlockDirtyInfoList *bdrv_query_dirty_bitmaps(BlockDriverState *bs) 344221b56835SFam Zheng { 344321b56835SFam Zheng BdrvDirtyBitmap *bm; 344421b56835SFam Zheng BlockDirtyInfoList *list = NULL; 344521b56835SFam Zheng BlockDirtyInfoList **plist = &list; 344621b56835SFam Zheng 344721b56835SFam Zheng QLIST_FOREACH(bm, &bs->dirty_bitmaps, list) { 34485839e53bSMarkus Armbruster BlockDirtyInfo *info = g_new0(BlockDirtyInfo, 1); 34495839e53bSMarkus Armbruster BlockDirtyInfoList *entry = g_new0(BlockDirtyInfoList, 1); 345020dca810SJohn Snow info->count = bdrv_get_dirty_count(bm); 3451592fdd02SJohn Snow info->granularity = bdrv_dirty_bitmap_granularity(bm); 34520db6e54aSFam Zheng info->has_name = !!bm->name; 34530db6e54aSFam Zheng info->name = g_strdup(bm->name); 34549abe3bdcSJohn Snow info->status = bdrv_dirty_bitmap_status(bm); 345521b56835SFam Zheng entry->value = info; 345621b56835SFam Zheng *plist = entry; 345721b56835SFam Zheng plist = &entry->next; 345821b56835SFam Zheng } 345921b56835SFam Zheng 346021b56835SFam Zheng return list; 346121b56835SFam Zheng } 346221b56835SFam Zheng 3463e4654d2dSFam Zheng int bdrv_get_dirty(BlockDriverState *bs, BdrvDirtyBitmap *bitmap, int64_t sector) 34647cd1e32aSlirans@il.ibm.com { 3465e4654d2dSFam Zheng if (bitmap) { 3466e4654d2dSFam Zheng return hbitmap_get(bitmap->bitmap, sector); 34677cd1e32aSlirans@il.ibm.com } else { 34687cd1e32aSlirans@il.ibm.com return 0; 34697cd1e32aSlirans@il.ibm.com } 34707cd1e32aSlirans@il.ibm.com } 34717cd1e32aSlirans@il.ibm.com 3472341ebc2fSJohn Snow /** 3473341ebc2fSJohn Snow * Chooses a default granularity based on the existing cluster size, 3474341ebc2fSJohn Snow * but clamped between [4K, 64K]. Defaults to 64K in the case that there 3475341ebc2fSJohn Snow * is no cluster size information available. 3476341ebc2fSJohn Snow */ 3477341ebc2fSJohn Snow uint32_t bdrv_get_default_bitmap_granularity(BlockDriverState *bs) 3478341ebc2fSJohn Snow { 3479341ebc2fSJohn Snow BlockDriverInfo bdi; 3480341ebc2fSJohn Snow uint32_t granularity; 3481341ebc2fSJohn Snow 3482341ebc2fSJohn Snow if (bdrv_get_info(bs, &bdi) >= 0 && bdi.cluster_size > 0) { 3483341ebc2fSJohn Snow granularity = MAX(4096, bdi.cluster_size); 3484341ebc2fSJohn Snow granularity = MIN(65536, granularity); 3485341ebc2fSJohn Snow } else { 3486341ebc2fSJohn Snow granularity = 65536; 3487341ebc2fSJohn Snow } 3488341ebc2fSJohn Snow 3489341ebc2fSJohn Snow return granularity; 3490341ebc2fSJohn Snow } 3491341ebc2fSJohn Snow 3492592fdd02SJohn Snow uint32_t bdrv_dirty_bitmap_granularity(BdrvDirtyBitmap *bitmap) 3493592fdd02SJohn Snow { 3494592fdd02SJohn Snow return BDRV_SECTOR_SIZE << hbitmap_granularity(bitmap->bitmap); 3495592fdd02SJohn Snow } 3496592fdd02SJohn Snow 349720dca810SJohn Snow void bdrv_dirty_iter_init(BdrvDirtyBitmap *bitmap, HBitmapIter *hbi) 34981755da16SPaolo Bonzini { 3499e4654d2dSFam Zheng hbitmap_iter_init(hbi, bitmap->bitmap, 0); 35001755da16SPaolo Bonzini } 35011755da16SPaolo Bonzini 350220dca810SJohn Snow void bdrv_set_dirty_bitmap(BdrvDirtyBitmap *bitmap, 3503c4237dfaSVladimir Sementsov-Ogievskiy int64_t cur_sector, int nr_sectors) 3504c4237dfaSVladimir Sementsov-Ogievskiy { 3505b8e6fb75SJohn Snow assert(bdrv_dirty_bitmap_enabled(bitmap)); 3506c4237dfaSVladimir Sementsov-Ogievskiy hbitmap_set(bitmap->bitmap, cur_sector, nr_sectors); 3507c4237dfaSVladimir Sementsov-Ogievskiy } 3508c4237dfaSVladimir Sementsov-Ogievskiy 350920dca810SJohn Snow void bdrv_reset_dirty_bitmap(BdrvDirtyBitmap *bitmap, 3510c4237dfaSVladimir Sementsov-Ogievskiy int64_t cur_sector, int nr_sectors) 3511c4237dfaSVladimir Sementsov-Ogievskiy { 3512b8e6fb75SJohn Snow assert(bdrv_dirty_bitmap_enabled(bitmap)); 3513c4237dfaSVladimir Sementsov-Ogievskiy hbitmap_reset(bitmap->bitmap, cur_sector, nr_sectors); 3514c4237dfaSVladimir Sementsov-Ogievskiy } 3515c4237dfaSVladimir Sementsov-Ogievskiy 3516df9a681dSFam Zheng void bdrv_clear_dirty_bitmap(BdrvDirtyBitmap *bitmap, HBitmap **out) 3517e74e6b78SJohn Snow { 3518e74e6b78SJohn Snow assert(bdrv_dirty_bitmap_enabled(bitmap)); 3519df9a681dSFam Zheng if (!out) { 3520c6a8c328SWen Congyang hbitmap_reset_all(bitmap->bitmap); 3521df9a681dSFam Zheng } else { 3522df9a681dSFam Zheng HBitmap *backup = bitmap->bitmap; 3523df9a681dSFam Zheng bitmap->bitmap = hbitmap_alloc(bitmap->size, 3524df9a681dSFam Zheng hbitmap_granularity(backup)); 3525df9a681dSFam Zheng *out = backup; 3526df9a681dSFam Zheng } 3527df9a681dSFam Zheng } 3528df9a681dSFam Zheng 3529df9a681dSFam Zheng void bdrv_undo_clear_dirty_bitmap(BdrvDirtyBitmap *bitmap, HBitmap *in) 3530df9a681dSFam Zheng { 3531df9a681dSFam Zheng HBitmap *tmp = bitmap->bitmap; 3532df9a681dSFam Zheng assert(bdrv_dirty_bitmap_enabled(bitmap)); 3533df9a681dSFam Zheng bitmap->bitmap = in; 3534df9a681dSFam Zheng hbitmap_free(tmp); 3535e74e6b78SJohn Snow } 3536e74e6b78SJohn Snow 3537e0c47b6cSStefan Hajnoczi void bdrv_set_dirty(BlockDriverState *bs, int64_t cur_sector, 35381755da16SPaolo Bonzini int nr_sectors) 35391755da16SPaolo Bonzini { 3540e4654d2dSFam Zheng BdrvDirtyBitmap *bitmap; 3541e4654d2dSFam Zheng QLIST_FOREACH(bitmap, &bs->dirty_bitmaps, list) { 3542b8e6fb75SJohn Snow if (!bdrv_dirty_bitmap_enabled(bitmap)) { 3543b8e6fb75SJohn Snow continue; 3544b8e6fb75SJohn Snow } 3545e4654d2dSFam Zheng hbitmap_set(bitmap->bitmap, cur_sector, nr_sectors); 3546e4654d2dSFam Zheng } 35471755da16SPaolo Bonzini } 35481755da16SPaolo Bonzini 3549d58d8453SJohn Snow /** 3550d58d8453SJohn Snow * Advance an HBitmapIter to an arbitrary offset. 3551d58d8453SJohn Snow */ 3552d58d8453SJohn Snow void bdrv_set_dirty_iter(HBitmapIter *hbi, int64_t offset) 3553d58d8453SJohn Snow { 3554d58d8453SJohn Snow assert(hbi->hb); 3555d58d8453SJohn Snow hbitmap_iter_init(hbi, hbi->hb, offset); 3556d58d8453SJohn Snow } 3557d58d8453SJohn Snow 355820dca810SJohn Snow int64_t bdrv_get_dirty_count(BdrvDirtyBitmap *bitmap) 3559aaa0eb75SLiran Schour { 3560e4654d2dSFam Zheng return hbitmap_count(bitmap->bitmap); 3561aaa0eb75SLiran Schour } 3562f88e1a42SJes Sorensen 35639fcb0251SFam Zheng /* Get a reference to bs */ 35649fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs) 35659fcb0251SFam Zheng { 35669fcb0251SFam Zheng bs->refcnt++; 35679fcb0251SFam Zheng } 35689fcb0251SFam Zheng 35699fcb0251SFam Zheng /* Release a previously grabbed reference to bs. 35709fcb0251SFam Zheng * If after releasing, reference count is zero, the BlockDriverState is 35719fcb0251SFam Zheng * deleted. */ 35729fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs) 35739fcb0251SFam Zheng { 35749a4d5ca6SJeff Cody if (!bs) { 35759a4d5ca6SJeff Cody return; 35769a4d5ca6SJeff Cody } 35779fcb0251SFam Zheng assert(bs->refcnt > 0); 35789fcb0251SFam Zheng if (--bs->refcnt == 0) { 35799fcb0251SFam Zheng bdrv_delete(bs); 35809fcb0251SFam Zheng } 35819fcb0251SFam Zheng } 35829fcb0251SFam Zheng 3583fbe40ff7SFam Zheng struct BdrvOpBlocker { 3584fbe40ff7SFam Zheng Error *reason; 3585fbe40ff7SFam Zheng QLIST_ENTRY(BdrvOpBlocker) list; 3586fbe40ff7SFam Zheng }; 3587fbe40ff7SFam Zheng 3588fbe40ff7SFam Zheng bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp) 3589fbe40ff7SFam Zheng { 3590fbe40ff7SFam Zheng BdrvOpBlocker *blocker; 3591fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 3592fbe40ff7SFam Zheng if (!QLIST_EMPTY(&bs->op_blockers[op])) { 3593fbe40ff7SFam Zheng blocker = QLIST_FIRST(&bs->op_blockers[op]); 3594fbe40ff7SFam Zheng if (errp) { 359581e5f78aSAlberto Garcia error_setg(errp, "Node '%s' is busy: %s", 359681e5f78aSAlberto Garcia bdrv_get_device_or_node_name(bs), 3597bfb197e0SMarkus Armbruster error_get_pretty(blocker->reason)); 3598fbe40ff7SFam Zheng } 3599fbe40ff7SFam Zheng return true; 3600fbe40ff7SFam Zheng } 3601fbe40ff7SFam Zheng return false; 3602fbe40ff7SFam Zheng } 3603fbe40ff7SFam Zheng 3604fbe40ff7SFam Zheng void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason) 3605fbe40ff7SFam Zheng { 3606fbe40ff7SFam Zheng BdrvOpBlocker *blocker; 3607fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 3608fbe40ff7SFam Zheng 36095839e53bSMarkus Armbruster blocker = g_new0(BdrvOpBlocker, 1); 3610fbe40ff7SFam Zheng blocker->reason = reason; 3611fbe40ff7SFam Zheng QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list); 3612fbe40ff7SFam Zheng } 3613fbe40ff7SFam Zheng 3614fbe40ff7SFam Zheng void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason) 3615fbe40ff7SFam Zheng { 3616fbe40ff7SFam Zheng BdrvOpBlocker *blocker, *next; 3617fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 3618fbe40ff7SFam Zheng QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) { 3619fbe40ff7SFam Zheng if (blocker->reason == reason) { 3620fbe40ff7SFam Zheng QLIST_REMOVE(blocker, list); 3621fbe40ff7SFam Zheng g_free(blocker); 3622fbe40ff7SFam Zheng } 3623fbe40ff7SFam Zheng } 3624fbe40ff7SFam Zheng } 3625fbe40ff7SFam Zheng 3626fbe40ff7SFam Zheng void bdrv_op_block_all(BlockDriverState *bs, Error *reason) 3627fbe40ff7SFam Zheng { 3628fbe40ff7SFam Zheng int i; 3629fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 3630fbe40ff7SFam Zheng bdrv_op_block(bs, i, reason); 3631fbe40ff7SFam Zheng } 3632fbe40ff7SFam Zheng } 3633fbe40ff7SFam Zheng 3634fbe40ff7SFam Zheng void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason) 3635fbe40ff7SFam Zheng { 3636fbe40ff7SFam Zheng int i; 3637fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 3638fbe40ff7SFam Zheng bdrv_op_unblock(bs, i, reason); 3639fbe40ff7SFam Zheng } 3640fbe40ff7SFam Zheng } 3641fbe40ff7SFam Zheng 3642fbe40ff7SFam Zheng bool bdrv_op_blocker_is_empty(BlockDriverState *bs) 3643fbe40ff7SFam Zheng { 3644fbe40ff7SFam Zheng int i; 3645fbe40ff7SFam Zheng 3646fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 3647fbe40ff7SFam Zheng if (!QLIST_EMPTY(&bs->op_blockers[i])) { 3648fbe40ff7SFam Zheng return false; 3649fbe40ff7SFam Zheng } 3650fbe40ff7SFam Zheng } 3651fbe40ff7SFam Zheng return true; 3652fbe40ff7SFam Zheng } 3653fbe40ff7SFam Zheng 3654d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt, 3655f88e1a42SJes Sorensen const char *base_filename, const char *base_fmt, 3656f382d43aSMiroslav Rezanina char *options, uint64_t img_size, int flags, 3657f382d43aSMiroslav Rezanina Error **errp, bool quiet) 3658f88e1a42SJes Sorensen { 365983d0521aSChunyan Liu QemuOptsList *create_opts = NULL; 366083d0521aSChunyan Liu QemuOpts *opts = NULL; 366183d0521aSChunyan Liu const char *backing_fmt, *backing_file; 366283d0521aSChunyan Liu int64_t size; 3663f88e1a42SJes Sorensen BlockDriver *drv, *proto_drv; 3664cc84d90fSMax Reitz Error *local_err = NULL; 3665f88e1a42SJes Sorensen int ret = 0; 3666f88e1a42SJes Sorensen 3667f88e1a42SJes Sorensen /* Find driver and parse its options */ 3668f88e1a42SJes Sorensen drv = bdrv_find_format(fmt); 3669f88e1a42SJes Sorensen if (!drv) { 367071c79813SLuiz Capitulino error_setg(errp, "Unknown file format '%s'", fmt); 3671d92ada22SLuiz Capitulino return; 3672f88e1a42SJes Sorensen } 3673f88e1a42SJes Sorensen 3674b65a5e12SMax Reitz proto_drv = bdrv_find_protocol(filename, true, errp); 3675f88e1a42SJes Sorensen if (!proto_drv) { 3676d92ada22SLuiz Capitulino return; 3677f88e1a42SJes Sorensen } 3678f88e1a42SJes Sorensen 3679c6149724SMax Reitz if (!drv->create_opts) { 3680c6149724SMax Reitz error_setg(errp, "Format driver '%s' does not support image creation", 3681c6149724SMax Reitz drv->format_name); 3682c6149724SMax Reitz return; 3683c6149724SMax Reitz } 3684c6149724SMax Reitz 3685c6149724SMax Reitz if (!proto_drv->create_opts) { 3686c6149724SMax Reitz error_setg(errp, "Protocol driver '%s' does not support image creation", 3687c6149724SMax Reitz proto_drv->format_name); 3688c6149724SMax Reitz return; 3689c6149724SMax Reitz } 3690c6149724SMax Reitz 3691c282e1fdSChunyan Liu create_opts = qemu_opts_append(create_opts, drv->create_opts); 3692c282e1fdSChunyan Liu create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); 3693f88e1a42SJes Sorensen 3694f88e1a42SJes Sorensen /* Create parameter list with default values */ 369583d0521aSChunyan Liu opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); 369639101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort); 3697f88e1a42SJes Sorensen 3698f88e1a42SJes Sorensen /* Parse -o options */ 3699f88e1a42SJes Sorensen if (options) { 3700dc523cd3SMarkus Armbruster qemu_opts_do_parse(opts, options, NULL, &local_err); 3701dc523cd3SMarkus Armbruster if (local_err) { 3702dc523cd3SMarkus Armbruster error_report_err(local_err); 3703dc523cd3SMarkus Armbruster local_err = NULL; 370483d0521aSChunyan Liu error_setg(errp, "Invalid options for file format '%s'", fmt); 3705f88e1a42SJes Sorensen goto out; 3706f88e1a42SJes Sorensen } 3707f88e1a42SJes Sorensen } 3708f88e1a42SJes Sorensen 3709f88e1a42SJes Sorensen if (base_filename) { 3710f43e47dbSMarkus Armbruster qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err); 37116be4194bSMarkus Armbruster if (local_err) { 371271c79813SLuiz Capitulino error_setg(errp, "Backing file not supported for file format '%s'", 371371c79813SLuiz Capitulino fmt); 3714f88e1a42SJes Sorensen goto out; 3715f88e1a42SJes Sorensen } 3716f88e1a42SJes Sorensen } 3717f88e1a42SJes Sorensen 3718f88e1a42SJes Sorensen if (base_fmt) { 3719f43e47dbSMarkus Armbruster qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err); 37206be4194bSMarkus Armbruster if (local_err) { 372171c79813SLuiz Capitulino error_setg(errp, "Backing file format not supported for file " 372271c79813SLuiz Capitulino "format '%s'", fmt); 3723f88e1a42SJes Sorensen goto out; 3724f88e1a42SJes Sorensen } 3725f88e1a42SJes Sorensen } 3726f88e1a42SJes Sorensen 372783d0521aSChunyan Liu backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); 372883d0521aSChunyan Liu if (backing_file) { 372983d0521aSChunyan Liu if (!strcmp(filename, backing_file)) { 373071c79813SLuiz Capitulino error_setg(errp, "Error: Trying to create an image with the " 373171c79813SLuiz Capitulino "same filename as the backing file"); 3732792da93aSJes Sorensen goto out; 3733792da93aSJes Sorensen } 3734792da93aSJes Sorensen } 3735792da93aSJes Sorensen 373683d0521aSChunyan Liu backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT); 3737f88e1a42SJes Sorensen 3738f88e1a42SJes Sorensen // The size for the image must always be specified, with one exception: 3739f88e1a42SJes Sorensen // If we are using a backing file, we can obtain the size from there 374083d0521aSChunyan Liu size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0); 374183d0521aSChunyan Liu if (size == -1) { 374283d0521aSChunyan Liu if (backing_file) { 374366f6b814SMax Reitz BlockDriverState *bs; 374429168018SMax Reitz char *full_backing = g_new0(char, PATH_MAX); 374552bf1e72SMarkus Armbruster int64_t size; 374663090dacSPaolo Bonzini int back_flags; 3747e6641719SMax Reitz QDict *backing_options = NULL; 374863090dacSPaolo Bonzini 374929168018SMax Reitz bdrv_get_full_backing_filename_from_filename(filename, backing_file, 375029168018SMax Reitz full_backing, PATH_MAX, 375129168018SMax Reitz &local_err); 375229168018SMax Reitz if (local_err) { 375329168018SMax Reitz g_free(full_backing); 375429168018SMax Reitz goto out; 375529168018SMax Reitz } 375629168018SMax Reitz 375763090dacSPaolo Bonzini /* backing files always opened read-only */ 375863090dacSPaolo Bonzini back_flags = 375963090dacSPaolo Bonzini flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); 3760f88e1a42SJes Sorensen 3761e6641719SMax Reitz if (backing_fmt) { 3762e6641719SMax Reitz backing_options = qdict_new(); 3763e6641719SMax Reitz qdict_put(backing_options, "driver", 3764e6641719SMax Reitz qstring_from_str(backing_fmt)); 3765e6641719SMax Reitz } 3766e6641719SMax Reitz 3767f67503e5SMax Reitz bs = NULL; 3768e6641719SMax Reitz ret = bdrv_open(&bs, full_backing, NULL, backing_options, 37696ebf9aa2SMax Reitz back_flags, &local_err); 377029168018SMax Reitz g_free(full_backing); 3771f88e1a42SJes Sorensen if (ret < 0) { 3772f88e1a42SJes Sorensen goto out; 3773f88e1a42SJes Sorensen } 377452bf1e72SMarkus Armbruster size = bdrv_getlength(bs); 377552bf1e72SMarkus Armbruster if (size < 0) { 377652bf1e72SMarkus Armbruster error_setg_errno(errp, -size, "Could not get size of '%s'", 377752bf1e72SMarkus Armbruster backing_file); 377852bf1e72SMarkus Armbruster bdrv_unref(bs); 377952bf1e72SMarkus Armbruster goto out; 378052bf1e72SMarkus Armbruster } 3781f88e1a42SJes Sorensen 378239101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort); 378366f6b814SMax Reitz 378466f6b814SMax Reitz bdrv_unref(bs); 3785f88e1a42SJes Sorensen } else { 378671c79813SLuiz Capitulino error_setg(errp, "Image creation needs a size parameter"); 3787f88e1a42SJes Sorensen goto out; 3788f88e1a42SJes Sorensen } 3789f88e1a42SJes Sorensen } 3790f88e1a42SJes Sorensen 3791f382d43aSMiroslav Rezanina if (!quiet) { 3792f88e1a42SJes Sorensen printf("Formatting '%s', fmt=%s ", filename, fmt); 379343c5d8f8SFam Zheng qemu_opts_print(opts, " "); 3794f88e1a42SJes Sorensen puts(""); 3795f382d43aSMiroslav Rezanina } 379683d0521aSChunyan Liu 3797c282e1fdSChunyan Liu ret = bdrv_create(drv, filename, opts, &local_err); 379883d0521aSChunyan Liu 3799cc84d90fSMax Reitz if (ret == -EFBIG) { 3800cc84d90fSMax Reitz /* This is generally a better message than whatever the driver would 3801cc84d90fSMax Reitz * deliver (especially because of the cluster_size_hint), since that 3802cc84d90fSMax Reitz * is most probably not much different from "image too large". */ 3803f3f4d2c0SKevin Wolf const char *cluster_size_hint = ""; 380483d0521aSChunyan Liu if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) { 3805f3f4d2c0SKevin Wolf cluster_size_hint = " (try using a larger cluster size)"; 3806f3f4d2c0SKevin Wolf } 3807cc84d90fSMax Reitz error_setg(errp, "The image size is too large for file format '%s'" 3808cc84d90fSMax Reitz "%s", fmt, cluster_size_hint); 3809cc84d90fSMax Reitz error_free(local_err); 3810cc84d90fSMax Reitz local_err = NULL; 3811f88e1a42SJes Sorensen } 3812f88e1a42SJes Sorensen 3813f88e1a42SJes Sorensen out: 381483d0521aSChunyan Liu qemu_opts_del(opts); 381583d0521aSChunyan Liu qemu_opts_free(create_opts); 381684d18f06SMarkus Armbruster if (local_err) { 3817cc84d90fSMax Reitz error_propagate(errp, local_err); 3818cc84d90fSMax Reitz } 3819f88e1a42SJes Sorensen } 382085d126f3SStefan Hajnoczi 382185d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs) 382285d126f3SStefan Hajnoczi { 3823dcd04228SStefan Hajnoczi return bs->aio_context; 3824dcd04228SStefan Hajnoczi } 3825dcd04228SStefan Hajnoczi 3826dcd04228SStefan Hajnoczi void bdrv_detach_aio_context(BlockDriverState *bs) 3827dcd04228SStefan Hajnoczi { 382833384421SMax Reitz BdrvAioNotifier *baf; 382933384421SMax Reitz 3830dcd04228SStefan Hajnoczi if (!bs->drv) { 3831dcd04228SStefan Hajnoczi return; 3832dcd04228SStefan Hajnoczi } 3833dcd04228SStefan Hajnoczi 383433384421SMax Reitz QLIST_FOREACH(baf, &bs->aio_notifiers, list) { 383533384421SMax Reitz baf->detach_aio_context(baf->opaque); 383633384421SMax Reitz } 383733384421SMax Reitz 3838a0d64a61SAlberto Garcia if (bs->throttle_state) { 38390e5b0a2dSBenoît Canet throttle_timers_detach_aio_context(&bs->throttle_timers); 384013af91ebSStefan Hajnoczi } 3841dcd04228SStefan Hajnoczi if (bs->drv->bdrv_detach_aio_context) { 3842dcd04228SStefan Hajnoczi bs->drv->bdrv_detach_aio_context(bs); 3843dcd04228SStefan Hajnoczi } 3844dcd04228SStefan Hajnoczi if (bs->file) { 38459a4f4c31SKevin Wolf bdrv_detach_aio_context(bs->file->bs); 3846dcd04228SStefan Hajnoczi } 3847760e0063SKevin Wolf if (bs->backing) { 3848760e0063SKevin Wolf bdrv_detach_aio_context(bs->backing->bs); 3849dcd04228SStefan Hajnoczi } 3850dcd04228SStefan Hajnoczi 3851dcd04228SStefan Hajnoczi bs->aio_context = NULL; 3852dcd04228SStefan Hajnoczi } 3853dcd04228SStefan Hajnoczi 3854dcd04228SStefan Hajnoczi void bdrv_attach_aio_context(BlockDriverState *bs, 3855dcd04228SStefan Hajnoczi AioContext *new_context) 3856dcd04228SStefan Hajnoczi { 385733384421SMax Reitz BdrvAioNotifier *ban; 385833384421SMax Reitz 3859dcd04228SStefan Hajnoczi if (!bs->drv) { 3860dcd04228SStefan Hajnoczi return; 3861dcd04228SStefan Hajnoczi } 3862dcd04228SStefan Hajnoczi 3863dcd04228SStefan Hajnoczi bs->aio_context = new_context; 3864dcd04228SStefan Hajnoczi 3865760e0063SKevin Wolf if (bs->backing) { 3866760e0063SKevin Wolf bdrv_attach_aio_context(bs->backing->bs, new_context); 3867dcd04228SStefan Hajnoczi } 3868dcd04228SStefan Hajnoczi if (bs->file) { 38699a4f4c31SKevin Wolf bdrv_attach_aio_context(bs->file->bs, new_context); 3870dcd04228SStefan Hajnoczi } 3871dcd04228SStefan Hajnoczi if (bs->drv->bdrv_attach_aio_context) { 3872dcd04228SStefan Hajnoczi bs->drv->bdrv_attach_aio_context(bs, new_context); 3873dcd04228SStefan Hajnoczi } 3874a0d64a61SAlberto Garcia if (bs->throttle_state) { 38750e5b0a2dSBenoît Canet throttle_timers_attach_aio_context(&bs->throttle_timers, new_context); 387613af91ebSStefan Hajnoczi } 387733384421SMax Reitz 387833384421SMax Reitz QLIST_FOREACH(ban, &bs->aio_notifiers, list) { 387933384421SMax Reitz ban->attached_aio_context(new_context, ban->opaque); 388033384421SMax Reitz } 3881dcd04228SStefan Hajnoczi } 3882dcd04228SStefan Hajnoczi 3883dcd04228SStefan Hajnoczi void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context) 3884dcd04228SStefan Hajnoczi { 388553ec73e2SFam Zheng bdrv_drain(bs); /* ensure there are no in-flight requests */ 3886dcd04228SStefan Hajnoczi 3887dcd04228SStefan Hajnoczi bdrv_detach_aio_context(bs); 3888dcd04228SStefan Hajnoczi 3889dcd04228SStefan Hajnoczi /* This function executes in the old AioContext so acquire the new one in 3890dcd04228SStefan Hajnoczi * case it runs in a different thread. 3891dcd04228SStefan Hajnoczi */ 3892dcd04228SStefan Hajnoczi aio_context_acquire(new_context); 3893dcd04228SStefan Hajnoczi bdrv_attach_aio_context(bs, new_context); 3894dcd04228SStefan Hajnoczi aio_context_release(new_context); 389585d126f3SStefan Hajnoczi } 3896d616b224SStefan Hajnoczi 389733384421SMax Reitz void bdrv_add_aio_context_notifier(BlockDriverState *bs, 389833384421SMax Reitz void (*attached_aio_context)(AioContext *new_context, void *opaque), 389933384421SMax Reitz void (*detach_aio_context)(void *opaque), void *opaque) 390033384421SMax Reitz { 390133384421SMax Reitz BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1); 390233384421SMax Reitz *ban = (BdrvAioNotifier){ 390333384421SMax Reitz .attached_aio_context = attached_aio_context, 390433384421SMax Reitz .detach_aio_context = detach_aio_context, 390533384421SMax Reitz .opaque = opaque 390633384421SMax Reitz }; 390733384421SMax Reitz 390833384421SMax Reitz QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list); 390933384421SMax Reitz } 391033384421SMax Reitz 391133384421SMax Reitz void bdrv_remove_aio_context_notifier(BlockDriverState *bs, 391233384421SMax Reitz void (*attached_aio_context)(AioContext *, 391333384421SMax Reitz void *), 391433384421SMax Reitz void (*detach_aio_context)(void *), 391533384421SMax Reitz void *opaque) 391633384421SMax Reitz { 391733384421SMax Reitz BdrvAioNotifier *ban, *ban_next; 391833384421SMax Reitz 391933384421SMax Reitz QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 392033384421SMax Reitz if (ban->attached_aio_context == attached_aio_context && 392133384421SMax Reitz ban->detach_aio_context == detach_aio_context && 392233384421SMax Reitz ban->opaque == opaque) 392333384421SMax Reitz { 392433384421SMax Reitz QLIST_REMOVE(ban, list); 392533384421SMax Reitz g_free(ban); 392633384421SMax Reitz 392733384421SMax Reitz return; 392833384421SMax Reitz } 392933384421SMax Reitz } 393033384421SMax Reitz 393133384421SMax Reitz abort(); 393233384421SMax Reitz } 393333384421SMax Reitz 393477485434SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts, 393577485434SMax Reitz BlockDriverAmendStatusCB *status_cb) 39366f176b48SMax Reitz { 3937c282e1fdSChunyan Liu if (!bs->drv->bdrv_amend_options) { 39386f176b48SMax Reitz return -ENOTSUP; 39396f176b48SMax Reitz } 394077485434SMax Reitz return bs->drv->bdrv_amend_options(bs, opts, status_cb); 39416f176b48SMax Reitz } 3942f6186f49SBenoît Canet 3943b5042a36SBenoît Canet /* This function will be called by the bdrv_recurse_is_first_non_filter method 3944b5042a36SBenoît Canet * of block filter and by bdrv_is_first_non_filter. 3945b5042a36SBenoît Canet * It is used to test if the given bs is the candidate or recurse more in the 3946b5042a36SBenoît Canet * node graph. 3947212a5a8fSBenoît Canet */ 3948212a5a8fSBenoît Canet bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs, 3949212a5a8fSBenoît Canet BlockDriverState *candidate) 3950f6186f49SBenoît Canet { 3951b5042a36SBenoît Canet /* return false if basic checks fails */ 3952b5042a36SBenoît Canet if (!bs || !bs->drv) { 3953b5042a36SBenoît Canet return false; 3954b5042a36SBenoît Canet } 3955b5042a36SBenoît Canet 3956b5042a36SBenoît Canet /* the code reached a non block filter driver -> check if the bs is 3957b5042a36SBenoît Canet * the same as the candidate. It's the recursion termination condition. 3958b5042a36SBenoît Canet */ 3959b5042a36SBenoît Canet if (!bs->drv->is_filter) { 3960b5042a36SBenoît Canet return bs == candidate; 3961b5042a36SBenoît Canet } 3962b5042a36SBenoît Canet /* Down this path the driver is a block filter driver */ 3963b5042a36SBenoît Canet 3964b5042a36SBenoît Canet /* If the block filter recursion method is defined use it to recurse down 3965b5042a36SBenoît Canet * the node graph. 3966b5042a36SBenoît Canet */ 3967b5042a36SBenoît Canet if (bs->drv->bdrv_recurse_is_first_non_filter) { 3968212a5a8fSBenoît Canet return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate); 3969212a5a8fSBenoît Canet } 3970212a5a8fSBenoît Canet 3971b5042a36SBenoît Canet /* the driver is a block filter but don't allow to recurse -> return false 3972b5042a36SBenoît Canet */ 3973b5042a36SBenoît Canet return false; 3974212a5a8fSBenoît Canet } 3975212a5a8fSBenoît Canet 3976212a5a8fSBenoît Canet /* This function checks if the candidate is the first non filter bs down it's 3977212a5a8fSBenoît Canet * bs chain. Since we don't have pointers to parents it explore all bs chains 3978212a5a8fSBenoît Canet * from the top. Some filters can choose not to pass down the recursion. 3979212a5a8fSBenoît Canet */ 3980212a5a8fSBenoît Canet bool bdrv_is_first_non_filter(BlockDriverState *candidate) 3981212a5a8fSBenoît Canet { 3982212a5a8fSBenoît Canet BlockDriverState *bs; 3983212a5a8fSBenoît Canet 3984212a5a8fSBenoît Canet /* walk down the bs forest recursively */ 3985212a5a8fSBenoît Canet QTAILQ_FOREACH(bs, &bdrv_states, device_list) { 3986212a5a8fSBenoît Canet bool perm; 3987212a5a8fSBenoît Canet 3988b5042a36SBenoît Canet /* try to recurse in this top level bs */ 3989e6dc8a1fSKevin Wolf perm = bdrv_recurse_is_first_non_filter(bs, candidate); 3990212a5a8fSBenoît Canet 3991212a5a8fSBenoît Canet /* candidate is the first non filter */ 3992212a5a8fSBenoît Canet if (perm) { 3993212a5a8fSBenoît Canet return true; 3994212a5a8fSBenoît Canet } 3995212a5a8fSBenoît Canet } 3996212a5a8fSBenoît Canet 3997212a5a8fSBenoît Canet return false; 3998f6186f49SBenoît Canet } 399909158f00SBenoît Canet 4000e12f3784SWen Congyang BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs, 4001e12f3784SWen Congyang const char *node_name, Error **errp) 400209158f00SBenoît Canet { 400309158f00SBenoît Canet BlockDriverState *to_replace_bs = bdrv_find_node(node_name); 40045a7e7a0bSStefan Hajnoczi AioContext *aio_context; 40055a7e7a0bSStefan Hajnoczi 400609158f00SBenoît Canet if (!to_replace_bs) { 400709158f00SBenoît Canet error_setg(errp, "Node name '%s' not found", node_name); 400809158f00SBenoît Canet return NULL; 400909158f00SBenoît Canet } 401009158f00SBenoît Canet 40115a7e7a0bSStefan Hajnoczi aio_context = bdrv_get_aio_context(to_replace_bs); 40125a7e7a0bSStefan Hajnoczi aio_context_acquire(aio_context); 40135a7e7a0bSStefan Hajnoczi 401409158f00SBenoît Canet if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) { 40155a7e7a0bSStefan Hajnoczi to_replace_bs = NULL; 40165a7e7a0bSStefan Hajnoczi goto out; 401709158f00SBenoît Canet } 401809158f00SBenoît Canet 401909158f00SBenoît Canet /* We don't want arbitrary node of the BDS chain to be replaced only the top 402009158f00SBenoît Canet * most non filter in order to prevent data corruption. 402109158f00SBenoît Canet * Another benefit is that this tests exclude backing files which are 402209158f00SBenoît Canet * blocked by the backing blockers. 402309158f00SBenoît Canet */ 4024e12f3784SWen Congyang if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) { 402509158f00SBenoît Canet error_setg(errp, "Only top most non filter can be replaced"); 40265a7e7a0bSStefan Hajnoczi to_replace_bs = NULL; 40275a7e7a0bSStefan Hajnoczi goto out; 402809158f00SBenoît Canet } 402909158f00SBenoît Canet 40305a7e7a0bSStefan Hajnoczi out: 40315a7e7a0bSStefan Hajnoczi aio_context_release(aio_context); 403209158f00SBenoît Canet return to_replace_bs; 403309158f00SBenoît Canet } 4034448ad91dSMing Lei 403591af7014SMax Reitz static bool append_open_options(QDict *d, BlockDriverState *bs) 403691af7014SMax Reitz { 403791af7014SMax Reitz const QDictEntry *entry; 40389e700c1aSKevin Wolf QemuOptDesc *desc; 4039260fecf1SKevin Wolf BdrvChild *child; 404091af7014SMax Reitz bool found_any = false; 4041260fecf1SKevin Wolf const char *p; 404291af7014SMax Reitz 404391af7014SMax Reitz for (entry = qdict_first(bs->options); entry; 404491af7014SMax Reitz entry = qdict_next(bs->options, entry)) 404591af7014SMax Reitz { 4046260fecf1SKevin Wolf /* Exclude options for children */ 4047260fecf1SKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 4048260fecf1SKevin Wolf if (strstart(qdict_entry_key(entry), child->name, &p) 4049260fecf1SKevin Wolf && (!*p || *p == '.')) 4050260fecf1SKevin Wolf { 4051260fecf1SKevin Wolf break; 4052260fecf1SKevin Wolf } 4053260fecf1SKevin Wolf } 4054260fecf1SKevin Wolf if (child) { 40559e700c1aSKevin Wolf continue; 40569e700c1aSKevin Wolf } 40579e700c1aSKevin Wolf 40589e700c1aSKevin Wolf /* And exclude all non-driver-specific options */ 40599e700c1aSKevin Wolf for (desc = bdrv_runtime_opts.desc; desc->name; desc++) { 40609e700c1aSKevin Wolf if (!strcmp(qdict_entry_key(entry), desc->name)) { 40619e700c1aSKevin Wolf break; 40629e700c1aSKevin Wolf } 40639e700c1aSKevin Wolf } 40649e700c1aSKevin Wolf if (desc->name) { 40659e700c1aSKevin Wolf continue; 40669e700c1aSKevin Wolf } 40679e700c1aSKevin Wolf 406891af7014SMax Reitz qobject_incref(qdict_entry_value(entry)); 406991af7014SMax Reitz qdict_put_obj(d, qdict_entry_key(entry), qdict_entry_value(entry)); 407091af7014SMax Reitz found_any = true; 407191af7014SMax Reitz } 407291af7014SMax Reitz 407391af7014SMax Reitz return found_any; 407491af7014SMax Reitz } 407591af7014SMax Reitz 407691af7014SMax Reitz /* Updates the following BDS fields: 407791af7014SMax Reitz * - exact_filename: A filename which may be used for opening a block device 407891af7014SMax Reitz * which (mostly) equals the given BDS (even without any 407991af7014SMax Reitz * other options; so reading and writing must return the same 408091af7014SMax Reitz * results, but caching etc. may be different) 408191af7014SMax Reitz * - full_open_options: Options which, when given when opening a block device 408291af7014SMax Reitz * (without a filename), result in a BDS (mostly) 408391af7014SMax Reitz * equalling the given one 408491af7014SMax Reitz * - filename: If exact_filename is set, it is copied here. Otherwise, 408591af7014SMax Reitz * full_open_options is converted to a JSON object, prefixed with 408691af7014SMax Reitz * "json:" (for use through the JSON pseudo protocol) and put here. 408791af7014SMax Reitz */ 408891af7014SMax Reitz void bdrv_refresh_filename(BlockDriverState *bs) 408991af7014SMax Reitz { 409091af7014SMax Reitz BlockDriver *drv = bs->drv; 409191af7014SMax Reitz QDict *opts; 409291af7014SMax Reitz 409391af7014SMax Reitz if (!drv) { 409491af7014SMax Reitz return; 409591af7014SMax Reitz } 409691af7014SMax Reitz 409791af7014SMax Reitz /* This BDS's file name will most probably depend on its file's name, so 409891af7014SMax Reitz * refresh that first */ 409991af7014SMax Reitz if (bs->file) { 41009a4f4c31SKevin Wolf bdrv_refresh_filename(bs->file->bs); 410191af7014SMax Reitz } 410291af7014SMax Reitz 410391af7014SMax Reitz if (drv->bdrv_refresh_filename) { 410491af7014SMax Reitz /* Obsolete information is of no use here, so drop the old file name 410591af7014SMax Reitz * information before refreshing it */ 410691af7014SMax Reitz bs->exact_filename[0] = '\0'; 410791af7014SMax Reitz if (bs->full_open_options) { 410891af7014SMax Reitz QDECREF(bs->full_open_options); 410991af7014SMax Reitz bs->full_open_options = NULL; 411091af7014SMax Reitz } 411191af7014SMax Reitz 41124cdd01d3SKevin Wolf opts = qdict_new(); 41134cdd01d3SKevin Wolf append_open_options(opts, bs); 41144cdd01d3SKevin Wolf drv->bdrv_refresh_filename(bs, opts); 41154cdd01d3SKevin Wolf QDECREF(opts); 411691af7014SMax Reitz } else if (bs->file) { 411791af7014SMax Reitz /* Try to reconstruct valid information from the underlying file */ 411891af7014SMax Reitz bool has_open_options; 411991af7014SMax Reitz 412091af7014SMax Reitz bs->exact_filename[0] = '\0'; 412191af7014SMax Reitz if (bs->full_open_options) { 412291af7014SMax Reitz QDECREF(bs->full_open_options); 412391af7014SMax Reitz bs->full_open_options = NULL; 412491af7014SMax Reitz } 412591af7014SMax Reitz 412691af7014SMax Reitz opts = qdict_new(); 412791af7014SMax Reitz has_open_options = append_open_options(opts, bs); 412891af7014SMax Reitz 412991af7014SMax Reitz /* If no specific options have been given for this BDS, the filename of 413091af7014SMax Reitz * the underlying file should suffice for this one as well */ 41319a4f4c31SKevin Wolf if (bs->file->bs->exact_filename[0] && !has_open_options) { 41329a4f4c31SKevin Wolf strcpy(bs->exact_filename, bs->file->bs->exact_filename); 413391af7014SMax Reitz } 413491af7014SMax Reitz /* Reconstructing the full options QDict is simple for most format block 413591af7014SMax Reitz * drivers, as long as the full options are known for the underlying 413691af7014SMax Reitz * file BDS. The full options QDict of that file BDS should somehow 413791af7014SMax Reitz * contain a representation of the filename, therefore the following 413891af7014SMax Reitz * suffices without querying the (exact_)filename of this BDS. */ 41399a4f4c31SKevin Wolf if (bs->file->bs->full_open_options) { 414091af7014SMax Reitz qdict_put_obj(opts, "driver", 414191af7014SMax Reitz QOBJECT(qstring_from_str(drv->format_name))); 41429a4f4c31SKevin Wolf QINCREF(bs->file->bs->full_open_options); 41439a4f4c31SKevin Wolf qdict_put_obj(opts, "file", 41449a4f4c31SKevin Wolf QOBJECT(bs->file->bs->full_open_options)); 414591af7014SMax Reitz 414691af7014SMax Reitz bs->full_open_options = opts; 414791af7014SMax Reitz } else { 414891af7014SMax Reitz QDECREF(opts); 414991af7014SMax Reitz } 415091af7014SMax Reitz } else if (!bs->full_open_options && qdict_size(bs->options)) { 415191af7014SMax Reitz /* There is no underlying file BDS (at least referenced by BDS.file), 415291af7014SMax Reitz * so the full options QDict should be equal to the options given 415391af7014SMax Reitz * specifically for this block device when it was opened (plus the 415491af7014SMax Reitz * driver specification). 415591af7014SMax Reitz * Because those options don't change, there is no need to update 415691af7014SMax Reitz * full_open_options when it's already set. */ 415791af7014SMax Reitz 415891af7014SMax Reitz opts = qdict_new(); 415991af7014SMax Reitz append_open_options(opts, bs); 416091af7014SMax Reitz qdict_put_obj(opts, "driver", 416191af7014SMax Reitz QOBJECT(qstring_from_str(drv->format_name))); 416291af7014SMax Reitz 416391af7014SMax Reitz if (bs->exact_filename[0]) { 416491af7014SMax Reitz /* This may not work for all block protocol drivers (some may 416591af7014SMax Reitz * require this filename to be parsed), but we have to find some 416691af7014SMax Reitz * default solution here, so just include it. If some block driver 416791af7014SMax Reitz * does not support pure options without any filename at all or 416891af7014SMax Reitz * needs some special format of the options QDict, it needs to 416991af7014SMax Reitz * implement the driver-specific bdrv_refresh_filename() function. 417091af7014SMax Reitz */ 417191af7014SMax Reitz qdict_put_obj(opts, "filename", 417291af7014SMax Reitz QOBJECT(qstring_from_str(bs->exact_filename))); 417391af7014SMax Reitz } 417491af7014SMax Reitz 417591af7014SMax Reitz bs->full_open_options = opts; 417691af7014SMax Reitz } 417791af7014SMax Reitz 417891af7014SMax Reitz if (bs->exact_filename[0]) { 417991af7014SMax Reitz pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename); 418091af7014SMax Reitz } else if (bs->full_open_options) { 418191af7014SMax Reitz QString *json = qobject_to_json(QOBJECT(bs->full_open_options)); 418291af7014SMax Reitz snprintf(bs->filename, sizeof(bs->filename), "json:%s", 418391af7014SMax Reitz qstring_get_str(json)); 418491af7014SMax Reitz QDECREF(json); 418591af7014SMax Reitz } 418691af7014SMax Reitz } 4187