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 1021de3b53f0SKevin Wolf static void parse_json_protocol(QDict *options, const char **pfilename, 1022de3b53f0SKevin Wolf Error **errp) 1023de3b53f0SKevin Wolf { 1024de3b53f0SKevin Wolf QDict *json_options; 1025de3b53f0SKevin Wolf Error *local_err = NULL; 1026de3b53f0SKevin Wolf 1027de3b53f0SKevin Wolf /* Parse json: pseudo-protocol */ 1028de3b53f0SKevin Wolf if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) { 1029de3b53f0SKevin Wolf return; 1030de3b53f0SKevin Wolf } 1031de3b53f0SKevin Wolf 1032de3b53f0SKevin Wolf json_options = parse_json_filename(*pfilename, &local_err); 1033de3b53f0SKevin Wolf if (local_err) { 1034de3b53f0SKevin Wolf error_propagate(errp, local_err); 1035de3b53f0SKevin Wolf return; 1036de3b53f0SKevin Wolf } 1037de3b53f0SKevin Wolf 1038de3b53f0SKevin Wolf /* Options given in the filename have lower priority than options 1039de3b53f0SKevin Wolf * specified directly */ 1040de3b53f0SKevin Wolf qdict_join(options, json_options, false); 1041de3b53f0SKevin Wolf QDECREF(json_options); 1042de3b53f0SKevin Wolf *pfilename = NULL; 1043de3b53f0SKevin Wolf } 1044de3b53f0SKevin 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 */ 1051de3b53f0SKevin 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*145f598eSKevin Wolf /* json: syntax counts as explicit options, as if in the QDict */ 1499de3b53f0SKevin Wolf parse_json_protocol(options, &filename, &local_err); 1500de3b53f0SKevin Wolf if (local_err) { 1501de3b53f0SKevin Wolf ret = -EINVAL; 1502de3b53f0SKevin Wolf goto fail; 1503de3b53f0SKevin Wolf } 1504de3b53f0SKevin Wolf 1505*145f598eSKevin Wolf bs->explicit_options = qdict_clone_shallow(options); 1506*145f598eSKevin Wolf 1507f3930ed0SKevin Wolf if (child_role) { 1508bddcec37SKevin Wolf bs->inherits_from = parent; 15098e2160e2SKevin Wolf child_role->inherit_options(&flags, options, 15108e2160e2SKevin Wolf parent->open_flags, parent->options); 1511f3930ed0SKevin Wolf } 1512f3930ed0SKevin Wolf 1513de3b53f0SKevin Wolf ret = bdrv_fill_options(&options, filename, &flags, &local_err); 1514462f5bcfSKevin Wolf if (local_err) { 1515462f5bcfSKevin Wolf goto fail; 1516462f5bcfSKevin Wolf } 1517462f5bcfSKevin Wolf 151862392ebbSKevin Wolf bs->open_flags = flags; 151962392ebbSKevin Wolf bs->options = options; 152062392ebbSKevin Wolf options = qdict_clone_shallow(options); 152162392ebbSKevin Wolf 152276c591b0SKevin Wolf /* Find the right image format driver */ 152376c591b0SKevin Wolf drvname = qdict_get_try_str(options, "driver"); 152476c591b0SKevin Wolf if (drvname) { 152576c591b0SKevin Wolf drv = bdrv_find_format(drvname); 152676c591b0SKevin Wolf if (!drv) { 152776c591b0SKevin Wolf error_setg(errp, "Unknown driver: '%s'", drvname); 152876c591b0SKevin Wolf ret = -EINVAL; 152976c591b0SKevin Wolf goto fail; 153076c591b0SKevin Wolf } 153176c591b0SKevin Wolf } 153276c591b0SKevin Wolf 153376c591b0SKevin Wolf assert(drvname || !(flags & BDRV_O_PROTOCOL)); 153476c591b0SKevin Wolf 15353e8c2e57SAlberto Garcia backing = qdict_get_try_str(options, "backing"); 15363e8c2e57SAlberto Garcia if (backing && *backing == '\0') { 15373e8c2e57SAlberto Garcia flags |= BDRV_O_NO_BACKING; 15383e8c2e57SAlberto Garcia qdict_del(options, "backing"); 15393e8c2e57SAlberto Garcia } 15403e8c2e57SAlberto Garcia 1541f500a6d3SKevin Wolf /* Open image file without format layer */ 1542f4788adcSKevin Wolf if ((flags & BDRV_O_PROTOCOL) == 0) { 1543be028adcSJeff Cody if (flags & BDRV_O_RDWR) { 1544be028adcSJeff Cody flags |= BDRV_O_ALLOW_RDWR; 1545be028adcSJeff Cody } 1546b1e6fc08SKevin Wolf if (flags & BDRV_O_SNAPSHOT) { 1547b1e6fc08SKevin Wolf snapshot_flags = bdrv_temp_snapshot_flags(flags); 15488e2160e2SKevin Wolf bdrv_backing_options(&flags, options, flags, options); 1549b1e6fc08SKevin Wolf } 1550be028adcSJeff Cody 1551f3930ed0SKevin Wolf bs->open_flags = flags; 15521fdd6933SKevin Wolf 15539a4f4c31SKevin Wolf file = bdrv_open_child(filename, options, "file", bs, 15541fdd6933SKevin Wolf &child_file, true, &local_err); 15551fdd6933SKevin Wolf if (local_err) { 15561fdd6933SKevin Wolf ret = -EINVAL; 15578bfea15dSKevin Wolf goto fail; 1558f500a6d3SKevin Wolf } 1559f4788adcSKevin Wolf } 1560f500a6d3SKevin Wolf 156176c591b0SKevin Wolf /* Image format probing */ 156238f3ef57SKevin Wolf bs->probed = !drv; 156376c591b0SKevin Wolf if (!drv && file) { 15649a4f4c31SKevin Wolf ret = find_image_format(file->bs, filename, &drv, &local_err); 156517b005f1SKevin Wolf if (ret < 0) { 156617b005f1SKevin Wolf goto fail; 156717b005f1SKevin Wolf } 156862392ebbSKevin Wolf /* 156962392ebbSKevin Wolf * This option update would logically belong in bdrv_fill_options(), 157062392ebbSKevin Wolf * but we first need to open bs->file for the probing to work, while 157162392ebbSKevin Wolf * opening bs->file already requires the (mostly) final set of options 157262392ebbSKevin Wolf * so that cache mode etc. can be inherited. 157362392ebbSKevin Wolf * 157462392ebbSKevin Wolf * Adding the driver later is somewhat ugly, but it's not an option 157562392ebbSKevin Wolf * that would ever be inherited, so it's correct. We just need to make 157662392ebbSKevin Wolf * sure to update both bs->options (which has the full effective 157762392ebbSKevin Wolf * options for bs) and options (which has file.* already removed). 157862392ebbSKevin Wolf */ 157962392ebbSKevin Wolf qdict_put(bs->options, "driver", qstring_from_str(drv->format_name)); 158062392ebbSKevin Wolf qdict_put(options, "driver", qstring_from_str(drv->format_name)); 158176c591b0SKevin Wolf } else if (!drv) { 15822a05cbe4SMax Reitz error_setg(errp, "Must specify either driver or file"); 15832a05cbe4SMax Reitz ret = -EINVAL; 15848bfea15dSKevin Wolf goto fail; 15852a05cbe4SMax Reitz } 1586f500a6d3SKevin Wolf 158753a29513SMax Reitz /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */ 158853a29513SMax Reitz assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open); 158953a29513SMax Reitz /* file must be NULL if a protocol BDS is about to be created 159053a29513SMax Reitz * (the inverse results in an error message from bdrv_open_common()) */ 159153a29513SMax Reitz assert(!(flags & BDRV_O_PROTOCOL) || !file); 159253a29513SMax Reitz 1593b6ce07aaSKevin Wolf /* Open the image */ 159462392ebbSKevin Wolf ret = bdrv_open_common(bs, file, options, flags, &local_err); 1595b6ce07aaSKevin Wolf if (ret < 0) { 15968bfea15dSKevin Wolf goto fail; 15976987307cSChristoph Hellwig } 15986987307cSChristoph Hellwig 15992a05cbe4SMax Reitz if (file && (bs->file != file)) { 16009a4f4c31SKevin Wolf bdrv_unref_child(bs, file); 1601f500a6d3SKevin Wolf file = NULL; 1602f500a6d3SKevin Wolf } 1603f500a6d3SKevin Wolf 1604b6ce07aaSKevin Wolf /* If there is a backing file, use it */ 16059156df12SPaolo Bonzini if ((flags & BDRV_O_NO_BACKING) == 0) { 1606d9b7b057SKevin Wolf ret = bdrv_open_backing_file(bs, options, "backing", &local_err); 1607b6ce07aaSKevin Wolf if (ret < 0) { 1608b6ad491aSKevin Wolf goto close_and_fail; 1609b6ce07aaSKevin Wolf } 1610b6ce07aaSKevin Wolf } 1611b6ce07aaSKevin Wolf 161291af7014SMax Reitz bdrv_refresh_filename(bs); 161391af7014SMax Reitz 1614b6ad491aSKevin Wolf /* Check if any unknown options were used */ 16155acd9d81SMax Reitz if (options && (qdict_size(options) != 0)) { 1616b6ad491aSKevin Wolf const QDictEntry *entry = qdict_first(options); 16175acd9d81SMax Reitz if (flags & BDRV_O_PROTOCOL) { 16185acd9d81SMax Reitz error_setg(errp, "Block protocol '%s' doesn't support the option " 16195acd9d81SMax Reitz "'%s'", drv->format_name, entry->key); 16205acd9d81SMax Reitz } else { 162134b5d2c6SMax Reitz error_setg(errp, "Block format '%s' used by device '%s' doesn't " 16225acd9d81SMax Reitz "support the option '%s'", drv->format_name, 1623bfb197e0SMarkus Armbruster bdrv_get_device_name(bs), entry->key); 16245acd9d81SMax Reitz } 1625b6ad491aSKevin Wolf 1626b6ad491aSKevin Wolf ret = -EINVAL; 1627b6ad491aSKevin Wolf goto close_and_fail; 1628b6ad491aSKevin Wolf } 1629b6ad491aSKevin Wolf 1630b6ce07aaSKevin Wolf if (!bdrv_key_required(bs)) { 1631a7f53e26SMarkus Armbruster if (bs->blk) { 1632a7f53e26SMarkus Armbruster blk_dev_change_media_cb(bs->blk, true); 1633a7f53e26SMarkus Armbruster } 1634c3adb58fSMarkus Armbruster } else if (!runstate_check(RUN_STATE_PRELAUNCH) 1635c3adb58fSMarkus Armbruster && !runstate_check(RUN_STATE_INMIGRATE) 1636c3adb58fSMarkus Armbruster && !runstate_check(RUN_STATE_PAUSED)) { /* HACK */ 1637c3adb58fSMarkus Armbruster error_setg(errp, 1638c3adb58fSMarkus Armbruster "Guest must be stopped for opening of encrypted image"); 1639c3adb58fSMarkus Armbruster ret = -EBUSY; 1640c3adb58fSMarkus Armbruster goto close_and_fail; 1641b6ce07aaSKevin Wolf } 1642b6ce07aaSKevin Wolf 1643c3adb58fSMarkus Armbruster QDECREF(options); 1644f67503e5SMax Reitz *pbs = bs; 1645dd62f1caSKevin Wolf 1646dd62f1caSKevin Wolf /* For snapshot=on, create a temporary qcow2 overlay. bs points to the 1647dd62f1caSKevin Wolf * temporary snapshot afterwards. */ 1648dd62f1caSKevin Wolf if (snapshot_flags) { 1649dd62f1caSKevin Wolf ret = bdrv_append_temp_snapshot(bs, snapshot_flags, &local_err); 1650dd62f1caSKevin Wolf if (local_err) { 1651dd62f1caSKevin Wolf goto close_and_fail; 1652dd62f1caSKevin Wolf } 1653dd62f1caSKevin Wolf } 1654dd62f1caSKevin Wolf 1655b6ce07aaSKevin Wolf return 0; 1656b6ce07aaSKevin Wolf 16578bfea15dSKevin Wolf fail: 1658f500a6d3SKevin Wolf if (file != NULL) { 16599a4f4c31SKevin Wolf bdrv_unref_child(bs, file); 1660f500a6d3SKevin Wolf } 1661*145f598eSKevin Wolf QDECREF(bs->explicit_options); 1662de9c0cecSKevin Wolf QDECREF(bs->options); 1663b6ad491aSKevin Wolf QDECREF(options); 1664de9c0cecSKevin Wolf bs->options = NULL; 1665f67503e5SMax Reitz if (!*pbs) { 1666f67503e5SMax Reitz /* If *pbs is NULL, a new BDS has been created in this function and 1667f67503e5SMax Reitz needs to be freed now. Otherwise, it does not need to be closed, 1668f67503e5SMax Reitz since it has not really been opened yet. */ 1669f67503e5SMax Reitz bdrv_unref(bs); 1670f67503e5SMax Reitz } 167184d18f06SMarkus Armbruster if (local_err) { 167234b5d2c6SMax Reitz error_propagate(errp, local_err); 167334b5d2c6SMax Reitz } 1674b6ad491aSKevin Wolf return ret; 1675de9c0cecSKevin Wolf 1676b6ad491aSKevin Wolf close_and_fail: 1677f67503e5SMax Reitz /* See fail path, but now the BDS has to be always closed */ 1678f67503e5SMax Reitz if (*pbs) { 1679b6ad491aSKevin Wolf bdrv_close(bs); 1680f67503e5SMax Reitz } else { 1681f67503e5SMax Reitz bdrv_unref(bs); 1682f67503e5SMax Reitz } 1683b6ad491aSKevin Wolf QDECREF(options); 168484d18f06SMarkus Armbruster if (local_err) { 168534b5d2c6SMax Reitz error_propagate(errp, local_err); 168634b5d2c6SMax Reitz } 1687b6ce07aaSKevin Wolf return ret; 1688b6ce07aaSKevin Wolf } 1689b6ce07aaSKevin Wolf 1690f3930ed0SKevin Wolf int bdrv_open(BlockDriverState **pbs, const char *filename, 16916ebf9aa2SMax Reitz const char *reference, QDict *options, int flags, Error **errp) 1692f3930ed0SKevin Wolf { 1693f3930ed0SKevin Wolf return bdrv_open_inherit(pbs, filename, reference, options, flags, NULL, 1694ce343771SMax Reitz NULL, errp); 1695f3930ed0SKevin Wolf } 1696f3930ed0SKevin Wolf 1697e971aa12SJeff Cody typedef struct BlockReopenQueueEntry { 1698e971aa12SJeff Cody bool prepared; 1699e971aa12SJeff Cody BDRVReopenState state; 1700e971aa12SJeff Cody QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry; 1701e971aa12SJeff Cody } BlockReopenQueueEntry; 1702e971aa12SJeff Cody 1703e971aa12SJeff Cody /* 1704e971aa12SJeff Cody * Adds a BlockDriverState to a simple queue for an atomic, transactional 1705e971aa12SJeff Cody * reopen of multiple devices. 1706e971aa12SJeff Cody * 1707e971aa12SJeff Cody * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT 1708e971aa12SJeff Cody * already performed, or alternatively may be NULL a new BlockReopenQueue will 1709e971aa12SJeff Cody * be created and initialized. This newly created BlockReopenQueue should be 1710e971aa12SJeff Cody * passed back in for subsequent calls that are intended to be of the same 1711e971aa12SJeff Cody * atomic 'set'. 1712e971aa12SJeff Cody * 1713e971aa12SJeff Cody * bs is the BlockDriverState to add to the reopen queue. 1714e971aa12SJeff Cody * 17154d2cb092SKevin Wolf * options contains the changed options for the associated bs 17164d2cb092SKevin Wolf * (the BlockReopenQueue takes ownership) 17174d2cb092SKevin Wolf * 1718e971aa12SJeff Cody * flags contains the open flags for the associated bs 1719e971aa12SJeff Cody * 1720e971aa12SJeff Cody * returns a pointer to bs_queue, which is either the newly allocated 1721e971aa12SJeff Cody * bs_queue, or the existing bs_queue being used. 1722e971aa12SJeff Cody * 1723e971aa12SJeff Cody */ 172428518102SKevin Wolf static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, 17254d2cb092SKevin Wolf BlockDriverState *bs, 172628518102SKevin Wolf QDict *options, 172728518102SKevin Wolf int flags, 172828518102SKevin Wolf const BdrvChildRole *role, 172928518102SKevin Wolf QDict *parent_options, 173028518102SKevin Wolf int parent_flags) 1731e971aa12SJeff Cody { 1732e971aa12SJeff Cody assert(bs != NULL); 1733e971aa12SJeff Cody 1734e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry; 173567251a31SKevin Wolf BdrvChild *child; 1736*145f598eSKevin Wolf QDict *old_options, *explicit_options; 173767251a31SKevin Wolf 1738e971aa12SJeff Cody if (bs_queue == NULL) { 1739e971aa12SJeff Cody bs_queue = g_new0(BlockReopenQueue, 1); 1740e971aa12SJeff Cody QSIMPLEQ_INIT(bs_queue); 1741e971aa12SJeff Cody } 1742e971aa12SJeff Cody 17434d2cb092SKevin Wolf if (!options) { 17444d2cb092SKevin Wolf options = qdict_new(); 17454d2cb092SKevin Wolf } 17464d2cb092SKevin Wolf 174728518102SKevin Wolf /* 174828518102SKevin Wolf * Precedence of options: 174928518102SKevin Wolf * 1. Explicitly passed in options (highest) 175028518102SKevin Wolf * 2. TODO Set in flags (only for top level) 1751*145f598eSKevin Wolf * 3. Retained from explicitly set options of bs 17528e2160e2SKevin Wolf * 4. Inherited from parent node 175328518102SKevin Wolf * 5. Retained from effective options of bs 175428518102SKevin Wolf */ 175528518102SKevin Wolf 1756*145f598eSKevin Wolf /* Old explicitly set values (don't overwrite by inherited value) */ 1757*145f598eSKevin Wolf old_options = qdict_clone_shallow(bs->explicit_options); 1758*145f598eSKevin Wolf bdrv_join_options(bs, options, old_options); 1759*145f598eSKevin Wolf QDECREF(old_options); 1760*145f598eSKevin Wolf 1761*145f598eSKevin Wolf explicit_options = qdict_clone_shallow(options); 1762*145f598eSKevin Wolf 176328518102SKevin Wolf /* Inherit from parent node */ 176428518102SKevin Wolf if (parent_options) { 176528518102SKevin Wolf assert(!flags); 17668e2160e2SKevin Wolf role->inherit_options(&flags, options, parent_flags, parent_options); 176728518102SKevin Wolf } 176828518102SKevin Wolf 176928518102SKevin Wolf /* Old values are used for options that aren't set yet */ 17704d2cb092SKevin Wolf old_options = qdict_clone_shallow(bs->options); 1771cddff5baSKevin Wolf bdrv_join_options(bs, options, old_options); 17724d2cb092SKevin Wolf QDECREF(old_options); 17734d2cb092SKevin Wolf 1774f1f25a2eSKevin Wolf /* bdrv_open() masks this flag out */ 1775f1f25a2eSKevin Wolf flags &= ~BDRV_O_PROTOCOL; 1776f1f25a2eSKevin Wolf 177767251a31SKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 17784c9dfe5dSKevin Wolf QDict *new_child_options; 17794c9dfe5dSKevin Wolf char *child_key_dot; 178067251a31SKevin Wolf 17814c9dfe5dSKevin Wolf /* reopen can only change the options of block devices that were 17824c9dfe5dSKevin Wolf * implicitly created and inherited options. For other (referenced) 17834c9dfe5dSKevin Wolf * block devices, a syntax like "backing.foo" results in an error. */ 178467251a31SKevin Wolf if (child->bs->inherits_from != bs) { 178567251a31SKevin Wolf continue; 178667251a31SKevin Wolf } 178767251a31SKevin Wolf 17884c9dfe5dSKevin Wolf child_key_dot = g_strdup_printf("%s.", child->name); 17894c9dfe5dSKevin Wolf qdict_extract_subqdict(options, &new_child_options, child_key_dot); 17904c9dfe5dSKevin Wolf g_free(child_key_dot); 17914c9dfe5dSKevin Wolf 179228518102SKevin Wolf bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0, 179328518102SKevin Wolf child->role, options, flags); 1794e971aa12SJeff Cody } 1795e971aa12SJeff Cody 1796e971aa12SJeff Cody bs_entry = g_new0(BlockReopenQueueEntry, 1); 1797e971aa12SJeff Cody QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry); 1798e971aa12SJeff Cody 1799e971aa12SJeff Cody bs_entry->state.bs = bs; 18004d2cb092SKevin Wolf bs_entry->state.options = options; 1801*145f598eSKevin Wolf bs_entry->state.explicit_options = explicit_options; 1802e971aa12SJeff Cody bs_entry->state.flags = flags; 1803e971aa12SJeff Cody 1804e971aa12SJeff Cody return bs_queue; 1805e971aa12SJeff Cody } 1806e971aa12SJeff Cody 180728518102SKevin Wolf BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, 180828518102SKevin Wolf BlockDriverState *bs, 180928518102SKevin Wolf QDict *options, int flags) 181028518102SKevin Wolf { 181128518102SKevin Wolf return bdrv_reopen_queue_child(bs_queue, bs, options, flags, 181228518102SKevin Wolf NULL, NULL, 0); 181328518102SKevin Wolf } 181428518102SKevin Wolf 1815e971aa12SJeff Cody /* 1816e971aa12SJeff Cody * Reopen multiple BlockDriverStates atomically & transactionally. 1817e971aa12SJeff Cody * 1818e971aa12SJeff Cody * The queue passed in (bs_queue) must have been built up previous 1819e971aa12SJeff Cody * via bdrv_reopen_queue(). 1820e971aa12SJeff Cody * 1821e971aa12SJeff Cody * Reopens all BDS specified in the queue, with the appropriate 1822e971aa12SJeff Cody * flags. All devices are prepared for reopen, and failure of any 1823e971aa12SJeff Cody * device will cause all device changes to be abandonded, and intermediate 1824e971aa12SJeff Cody * data cleaned up. 1825e971aa12SJeff Cody * 1826e971aa12SJeff Cody * If all devices prepare successfully, then the changes are committed 1827e971aa12SJeff Cody * to all devices. 1828e971aa12SJeff Cody * 1829e971aa12SJeff Cody */ 1830e971aa12SJeff Cody int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp) 1831e971aa12SJeff Cody { 1832e971aa12SJeff Cody int ret = -1; 1833e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry, *next; 1834e971aa12SJeff Cody Error *local_err = NULL; 1835e971aa12SJeff Cody 1836e971aa12SJeff Cody assert(bs_queue != NULL); 1837e971aa12SJeff Cody 1838e971aa12SJeff Cody bdrv_drain_all(); 1839e971aa12SJeff Cody 1840e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 1841e971aa12SJeff Cody if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) { 1842e971aa12SJeff Cody error_propagate(errp, local_err); 1843e971aa12SJeff Cody goto cleanup; 1844e971aa12SJeff Cody } 1845e971aa12SJeff Cody bs_entry->prepared = true; 1846e971aa12SJeff Cody } 1847e971aa12SJeff Cody 1848e971aa12SJeff Cody /* If we reach this point, we have success and just need to apply the 1849e971aa12SJeff Cody * changes 1850e971aa12SJeff Cody */ 1851e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 1852e971aa12SJeff Cody bdrv_reopen_commit(&bs_entry->state); 1853e971aa12SJeff Cody } 1854e971aa12SJeff Cody 1855e971aa12SJeff Cody ret = 0; 1856e971aa12SJeff Cody 1857e971aa12SJeff Cody cleanup: 1858e971aa12SJeff Cody QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { 1859e971aa12SJeff Cody if (ret && bs_entry->prepared) { 1860e971aa12SJeff Cody bdrv_reopen_abort(&bs_entry->state); 1861*145f598eSKevin Wolf } else if (ret) { 1862*145f598eSKevin Wolf QDECREF(bs_entry->state.explicit_options); 1863e971aa12SJeff Cody } 18644d2cb092SKevin Wolf QDECREF(bs_entry->state.options); 1865e971aa12SJeff Cody g_free(bs_entry); 1866e971aa12SJeff Cody } 1867e971aa12SJeff Cody g_free(bs_queue); 1868e971aa12SJeff Cody return ret; 1869e971aa12SJeff Cody } 1870e971aa12SJeff Cody 1871e971aa12SJeff Cody 1872e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */ 1873e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp) 1874e971aa12SJeff Cody { 1875e971aa12SJeff Cody int ret = -1; 1876e971aa12SJeff Cody Error *local_err = NULL; 18774d2cb092SKevin Wolf BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags); 1878e971aa12SJeff Cody 1879e971aa12SJeff Cody ret = bdrv_reopen_multiple(queue, &local_err); 1880e971aa12SJeff Cody if (local_err != NULL) { 1881e971aa12SJeff Cody error_propagate(errp, local_err); 1882e971aa12SJeff Cody } 1883e971aa12SJeff Cody return ret; 1884e971aa12SJeff Cody } 1885e971aa12SJeff Cody 1886e971aa12SJeff Cody 1887e971aa12SJeff Cody /* 1888e971aa12SJeff Cody * Prepares a BlockDriverState for reopen. All changes are staged in the 1889e971aa12SJeff Cody * 'opaque' field of the BDRVReopenState, which is used and allocated by 1890e971aa12SJeff Cody * the block driver layer .bdrv_reopen_prepare() 1891e971aa12SJeff Cody * 1892e971aa12SJeff Cody * bs is the BlockDriverState to reopen 1893e971aa12SJeff Cody * flags are the new open flags 1894e971aa12SJeff Cody * queue is the reopen queue 1895e971aa12SJeff Cody * 1896e971aa12SJeff Cody * Returns 0 on success, non-zero on error. On error errp will be set 1897e971aa12SJeff Cody * as well. 1898e971aa12SJeff Cody * 1899e971aa12SJeff Cody * On failure, bdrv_reopen_abort() will be called to clean up any data. 1900e971aa12SJeff Cody * It is the responsibility of the caller to then call the abort() or 1901e971aa12SJeff Cody * commit() for any other BDS that have been left in a prepare() state 1902e971aa12SJeff Cody * 1903e971aa12SJeff Cody */ 1904e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue, 1905e971aa12SJeff Cody Error **errp) 1906e971aa12SJeff Cody { 1907e971aa12SJeff Cody int ret = -1; 1908e971aa12SJeff Cody Error *local_err = NULL; 1909e971aa12SJeff Cody BlockDriver *drv; 1910e971aa12SJeff Cody 1911e971aa12SJeff Cody assert(reopen_state != NULL); 1912e971aa12SJeff Cody assert(reopen_state->bs->drv != NULL); 1913e971aa12SJeff Cody drv = reopen_state->bs->drv; 1914e971aa12SJeff Cody 1915e971aa12SJeff Cody /* if we are to stay read-only, do not allow permission change 1916e971aa12SJeff Cody * to r/w */ 1917e971aa12SJeff Cody if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) && 1918e971aa12SJeff Cody reopen_state->flags & BDRV_O_RDWR) { 191981e5f78aSAlberto Garcia error_setg(errp, "Node '%s' is read only", 192081e5f78aSAlberto Garcia bdrv_get_device_or_node_name(reopen_state->bs)); 1921e971aa12SJeff Cody goto error; 1922e971aa12SJeff Cody } 1923e971aa12SJeff Cody 1924e971aa12SJeff Cody 1925e971aa12SJeff Cody ret = bdrv_flush(reopen_state->bs); 1926e971aa12SJeff Cody if (ret) { 1927455b0fdeSEric Blake error_setg_errno(errp, -ret, "Error flushing drive"); 1928e971aa12SJeff Cody goto error; 1929e971aa12SJeff Cody } 1930e971aa12SJeff Cody 1931e971aa12SJeff Cody if (drv->bdrv_reopen_prepare) { 1932e971aa12SJeff Cody ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); 1933e971aa12SJeff Cody if (ret) { 1934e971aa12SJeff Cody if (local_err != NULL) { 1935e971aa12SJeff Cody error_propagate(errp, local_err); 1936e971aa12SJeff Cody } else { 1937d8b6895fSLuiz Capitulino error_setg(errp, "failed while preparing to reopen image '%s'", 1938e971aa12SJeff Cody reopen_state->bs->filename); 1939e971aa12SJeff Cody } 1940e971aa12SJeff Cody goto error; 1941e971aa12SJeff Cody } 1942e971aa12SJeff Cody } else { 1943e971aa12SJeff Cody /* It is currently mandatory to have a bdrv_reopen_prepare() 1944e971aa12SJeff Cody * handler for each supported drv. */ 194581e5f78aSAlberto Garcia error_setg(errp, "Block format '%s' used by node '%s' " 194681e5f78aSAlberto Garcia "does not support reopening files", drv->format_name, 194781e5f78aSAlberto Garcia bdrv_get_device_or_node_name(reopen_state->bs)); 1948e971aa12SJeff Cody ret = -1; 1949e971aa12SJeff Cody goto error; 1950e971aa12SJeff Cody } 1951e971aa12SJeff Cody 19524d2cb092SKevin Wolf /* Options that are not handled are only okay if they are unchanged 19534d2cb092SKevin Wolf * compared to the old state. It is expected that some options are only 19544d2cb092SKevin Wolf * used for the initial open, but not reopen (e.g. filename) */ 19554d2cb092SKevin Wolf if (qdict_size(reopen_state->options)) { 19564d2cb092SKevin Wolf const QDictEntry *entry = qdict_first(reopen_state->options); 19574d2cb092SKevin Wolf 19584d2cb092SKevin Wolf do { 19594d2cb092SKevin Wolf QString *new_obj = qobject_to_qstring(entry->value); 19604d2cb092SKevin Wolf const char *new = qstring_get_str(new_obj); 19614d2cb092SKevin Wolf const char *old = qdict_get_try_str(reopen_state->bs->options, 19624d2cb092SKevin Wolf entry->key); 19634d2cb092SKevin Wolf 19644d2cb092SKevin Wolf if (!old || strcmp(new, old)) { 19654d2cb092SKevin Wolf error_setg(errp, "Cannot change the option '%s'", entry->key); 19664d2cb092SKevin Wolf ret = -EINVAL; 19674d2cb092SKevin Wolf goto error; 19684d2cb092SKevin Wolf } 19694d2cb092SKevin Wolf } while ((entry = qdict_next(reopen_state->options, entry))); 19704d2cb092SKevin Wolf } 19714d2cb092SKevin Wolf 1972e971aa12SJeff Cody ret = 0; 1973e971aa12SJeff Cody 1974e971aa12SJeff Cody error: 1975e971aa12SJeff Cody return ret; 1976e971aa12SJeff Cody } 1977e971aa12SJeff Cody 1978e971aa12SJeff Cody /* 1979e971aa12SJeff Cody * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and 1980e971aa12SJeff Cody * makes them final by swapping the staging BlockDriverState contents into 1981e971aa12SJeff Cody * the active BlockDriverState contents. 1982e971aa12SJeff Cody */ 1983e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state) 1984e971aa12SJeff Cody { 1985e971aa12SJeff Cody BlockDriver *drv; 1986e971aa12SJeff Cody 1987e971aa12SJeff Cody assert(reopen_state != NULL); 1988e971aa12SJeff Cody drv = reopen_state->bs->drv; 1989e971aa12SJeff Cody assert(drv != NULL); 1990e971aa12SJeff Cody 1991e971aa12SJeff Cody /* If there are any driver level actions to take */ 1992e971aa12SJeff Cody if (drv->bdrv_reopen_commit) { 1993e971aa12SJeff Cody drv->bdrv_reopen_commit(reopen_state); 1994e971aa12SJeff Cody } 1995e971aa12SJeff Cody 1996e971aa12SJeff Cody /* set BDS specific flags now */ 1997*145f598eSKevin Wolf QDECREF(reopen_state->bs->explicit_options); 1998*145f598eSKevin Wolf 1999*145f598eSKevin Wolf reopen_state->bs->explicit_options = reopen_state->explicit_options; 2000e971aa12SJeff Cody reopen_state->bs->open_flags = reopen_state->flags; 2001e971aa12SJeff Cody reopen_state->bs->enable_write_cache = !!(reopen_state->flags & 2002e971aa12SJeff Cody BDRV_O_CACHE_WB); 2003e971aa12SJeff Cody reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR); 2004355ef4acSKevin Wolf 20053baca891SKevin Wolf bdrv_refresh_limits(reopen_state->bs, NULL); 2006e971aa12SJeff Cody } 2007e971aa12SJeff Cody 2008e971aa12SJeff Cody /* 2009e971aa12SJeff Cody * Abort the reopen, and delete and free the staged changes in 2010e971aa12SJeff Cody * reopen_state 2011e971aa12SJeff Cody */ 2012e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state) 2013e971aa12SJeff Cody { 2014e971aa12SJeff Cody BlockDriver *drv; 2015e971aa12SJeff Cody 2016e971aa12SJeff Cody assert(reopen_state != NULL); 2017e971aa12SJeff Cody drv = reopen_state->bs->drv; 2018e971aa12SJeff Cody assert(drv != NULL); 2019e971aa12SJeff Cody 2020e971aa12SJeff Cody if (drv->bdrv_reopen_abort) { 2021e971aa12SJeff Cody drv->bdrv_reopen_abort(reopen_state); 2022e971aa12SJeff Cody } 2023*145f598eSKevin Wolf 2024*145f598eSKevin Wolf QDECREF(reopen_state->explicit_options); 2025e971aa12SJeff Cody } 2026e971aa12SJeff Cody 2027e971aa12SJeff Cody 2028fc01f7e7Sbellard void bdrv_close(BlockDriverState *bs) 2029fc01f7e7Sbellard { 203033384421SMax Reitz BdrvAioNotifier *ban, *ban_next; 203133384421SMax Reitz 20323e914655SPaolo Bonzini if (bs->job) { 20333e914655SPaolo Bonzini block_job_cancel_sync(bs->job); 20343e914655SPaolo Bonzini } 203599b7e775SAlberto Garcia 203699b7e775SAlberto Garcia /* Disable I/O limits and drain all pending throttled requests */ 2037a0d64a61SAlberto Garcia if (bs->throttle_state) { 203899b7e775SAlberto Garcia bdrv_io_limits_disable(bs); 203999b7e775SAlberto Garcia } 204099b7e775SAlberto Garcia 204153ec73e2SFam Zheng bdrv_drain(bs); /* complete I/O */ 204258fda173SStefan Hajnoczi bdrv_flush(bs); 204353ec73e2SFam Zheng bdrv_drain(bs); /* in case flush left pending I/O */ 2044d7d512f6SPaolo Bonzini notifier_list_notify(&bs->close_notifiers, bs); 20457094f12fSKevin Wolf 2046b4d02820SMax Reitz if (bs->blk) { 2047b4d02820SMax Reitz blk_dev_change_media_cb(bs->blk, false); 2048b4d02820SMax Reitz } 2049b4d02820SMax Reitz 20503cbc002cSPaolo Bonzini if (bs->drv) { 20516e93e7c4SKevin Wolf BdrvChild *child, *next; 20526e93e7c4SKevin Wolf 20539a7dedbcSKevin Wolf bs->drv->bdrv_close(bs); 20549a4f4c31SKevin Wolf bs->drv = NULL; 20559a7dedbcSKevin Wolf 20569a7dedbcSKevin Wolf bdrv_set_backing_hd(bs, NULL); 20579a7dedbcSKevin Wolf 20589a4f4c31SKevin Wolf if (bs->file != NULL) { 20599a4f4c31SKevin Wolf bdrv_unref_child(bs, bs->file); 20609a4f4c31SKevin Wolf bs->file = NULL; 20619a4f4c31SKevin Wolf } 20629a4f4c31SKevin Wolf 20636e93e7c4SKevin Wolf QLIST_FOREACH_SAFE(child, &bs->children, next, next) { 206433a60407SKevin Wolf /* TODO Remove bdrv_unref() from drivers' close function and use 206533a60407SKevin Wolf * bdrv_unref_child() here */ 2066bddcec37SKevin Wolf if (child->bs->inherits_from == bs) { 2067bddcec37SKevin Wolf child->bs->inherits_from = NULL; 2068bddcec37SKevin Wolf } 206933a60407SKevin Wolf bdrv_detach_child(child); 20706e93e7c4SKevin Wolf } 20716e93e7c4SKevin Wolf 20727267c094SAnthony Liguori g_free(bs->opaque); 2073ea2384d3Sbellard bs->opaque = NULL; 207453fec9d3SStefan Hajnoczi bs->copy_on_read = 0; 2075a275fa42SPaolo Bonzini bs->backing_file[0] = '\0'; 2076a275fa42SPaolo Bonzini bs->backing_format[0] = '\0'; 20776405875cSPaolo Bonzini bs->total_sectors = 0; 20786405875cSPaolo Bonzini bs->encrypted = 0; 20796405875cSPaolo Bonzini bs->valid_key = 0; 20806405875cSPaolo Bonzini bs->sg = 0; 20810d51b4deSAsias He bs->zero_beyond_eof = false; 2082de9c0cecSKevin Wolf QDECREF(bs->options); 2083*145f598eSKevin Wolf QDECREF(bs->explicit_options); 2084de9c0cecSKevin Wolf bs->options = NULL; 208591af7014SMax Reitz QDECREF(bs->full_open_options); 208691af7014SMax Reitz bs->full_open_options = NULL; 20879ca11154SPavel Hrdina } 208866f82ceeSKevin Wolf 208933384421SMax Reitz QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 209033384421SMax Reitz g_free(ban); 209133384421SMax Reitz } 209233384421SMax Reitz QLIST_INIT(&bs->aio_notifiers); 2093b338082bSbellard } 2094b338082bSbellard 20952bc93fedSMORITA Kazutaka void bdrv_close_all(void) 20962bc93fedSMORITA Kazutaka { 20972bc93fedSMORITA Kazutaka BlockDriverState *bs; 20982bc93fedSMORITA Kazutaka 2099dc364f4cSBenoît Canet QTAILQ_FOREACH(bs, &bdrv_states, device_list) { 2100ed78cda3SStefan Hajnoczi AioContext *aio_context = bdrv_get_aio_context(bs); 2101ed78cda3SStefan Hajnoczi 2102ed78cda3SStefan Hajnoczi aio_context_acquire(aio_context); 21032bc93fedSMORITA Kazutaka bdrv_close(bs); 2104ed78cda3SStefan Hajnoczi aio_context_release(aio_context); 21052bc93fedSMORITA Kazutaka } 21062bc93fedSMORITA Kazutaka } 21072bc93fedSMORITA Kazutaka 2108dc364f4cSBenoît Canet /* make a BlockDriverState anonymous by removing from bdrv_state and 2109dc364f4cSBenoît Canet * graph_bdrv_state list. 2110d22b2f41SRyan Harper Also, NULL terminate the device_name to prevent double remove */ 2111d22b2f41SRyan Harper void bdrv_make_anon(BlockDriverState *bs) 2112d22b2f41SRyan Harper { 2113bfb197e0SMarkus Armbruster /* 2114bfb197e0SMarkus Armbruster * Take care to remove bs from bdrv_states only when it's actually 2115bfb197e0SMarkus Armbruster * in it. Note that bs->device_list.tqe_prev is initially null, 2116bfb197e0SMarkus Armbruster * and gets set to non-null by QTAILQ_INSERT_TAIL(). Establish 2117bfb197e0SMarkus Armbruster * the useful invariant "bs in bdrv_states iff bs->tqe_prev" by 2118bfb197e0SMarkus Armbruster * resetting it to null on remove. 2119bfb197e0SMarkus Armbruster */ 2120bfb197e0SMarkus Armbruster if (bs->device_list.tqe_prev) { 2121dc364f4cSBenoît Canet QTAILQ_REMOVE(&bdrv_states, bs, device_list); 2122bfb197e0SMarkus Armbruster bs->device_list.tqe_prev = NULL; 2123d22b2f41SRyan Harper } 2124dc364f4cSBenoît Canet if (bs->node_name[0] != '\0') { 2125dc364f4cSBenoît Canet QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list); 2126dc364f4cSBenoît Canet } 2127dc364f4cSBenoît Canet bs->node_name[0] = '\0'; 2128d22b2f41SRyan Harper } 2129d22b2f41SRyan Harper 21308e419aefSKevin Wolf /* Fields that need to stay with the top-level BDS */ 21314ddc07caSPaolo Bonzini static void bdrv_move_feature_fields(BlockDriverState *bs_dest, 21324ddc07caSPaolo Bonzini BlockDriverState *bs_src) 21334ddc07caSPaolo Bonzini { 21344ddc07caSPaolo Bonzini /* move some fields that need to stay attached to the device */ 21354ddc07caSPaolo Bonzini 21364ddc07caSPaolo Bonzini /* dev info */ 21374ddc07caSPaolo Bonzini bs_dest->copy_on_read = bs_src->copy_on_read; 21384ddc07caSPaolo Bonzini 21394ddc07caSPaolo Bonzini bs_dest->enable_write_cache = bs_src->enable_write_cache; 21404ddc07caSPaolo Bonzini 2141dd62f1caSKevin Wolf /* dirty bitmap */ 2142dd62f1caSKevin Wolf bs_dest->dirty_bitmaps = bs_src->dirty_bitmaps; 2143dd62f1caSKevin Wolf } 2144dd62f1caSKevin Wolf 2145dd62f1caSKevin Wolf static void change_parent_backing_link(BlockDriverState *from, 2146dd62f1caSKevin Wolf BlockDriverState *to) 2147dd62f1caSKevin Wolf { 2148dd62f1caSKevin Wolf BdrvChild *c, *next; 2149dd62f1caSKevin Wolf 2150dd62f1caSKevin Wolf QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) { 2151dd62f1caSKevin Wolf assert(c->role != &child_backing); 2152dd62f1caSKevin Wolf c->bs = to; 2153dd62f1caSKevin Wolf QLIST_REMOVE(c, next_parent); 2154dd62f1caSKevin Wolf QLIST_INSERT_HEAD(&to->parents, c, next_parent); 2155dd62f1caSKevin Wolf bdrv_ref(to); 2156dd62f1caSKevin Wolf bdrv_unref(from); 2157dd62f1caSKevin Wolf } 2158dd62f1caSKevin Wolf if (from->blk) { 2159dd62f1caSKevin Wolf blk_set_bs(from->blk, to); 2160dd62f1caSKevin Wolf if (!to->device_list.tqe_prev) { 2161dd62f1caSKevin Wolf QTAILQ_INSERT_BEFORE(from, to, device_list); 2162dd62f1caSKevin Wolf } 2163dd62f1caSKevin Wolf QTAILQ_REMOVE(&bdrv_states, from, device_list); 2164dd62f1caSKevin Wolf } 2165dd62f1caSKevin Wolf } 2166dd62f1caSKevin Wolf 2167dd62f1caSKevin Wolf static void swap_feature_fields(BlockDriverState *bs_top, 2168dd62f1caSKevin Wolf BlockDriverState *bs_new) 2169dd62f1caSKevin Wolf { 2170dd62f1caSKevin Wolf BlockDriverState tmp; 2171dd62f1caSKevin Wolf 2172dd62f1caSKevin Wolf bdrv_move_feature_fields(&tmp, bs_top); 2173dd62f1caSKevin Wolf bdrv_move_feature_fields(bs_top, bs_new); 2174dd62f1caSKevin Wolf bdrv_move_feature_fields(bs_new, &tmp); 2175dd62f1caSKevin Wolf 2176dd62f1caSKevin Wolf assert(!bs_new->throttle_state); 2177dd62f1caSKevin Wolf if (bs_top->throttle_state) { 2178dd62f1caSKevin Wolf assert(bs_top->io_limits_enabled); 2179dd62f1caSKevin Wolf bdrv_io_limits_enable(bs_new, throttle_group_get_name(bs_top)); 2180dd62f1caSKevin Wolf bdrv_io_limits_disable(bs_top); 2181dd62f1caSKevin Wolf } 2182dd62f1caSKevin Wolf } 2183dd62f1caSKevin Wolf 21848802d1fdSJeff Cody /* 21858802d1fdSJeff Cody * Add new bs contents at the top of an image chain while the chain is 21868802d1fdSJeff Cody * live, while keeping required fields on the top layer. 21878802d1fdSJeff Cody * 21888802d1fdSJeff Cody * This will modify the BlockDriverState fields, and swap contents 21898802d1fdSJeff Cody * between bs_new and bs_top. Both bs_new and bs_top are modified. 21908802d1fdSJeff Cody * 2191bfb197e0SMarkus Armbruster * bs_new must not be attached to a BlockBackend. 2192f6801b83SJeff Cody * 21938802d1fdSJeff Cody * This function does not create any image files. 2194dd62f1caSKevin Wolf * 2195dd62f1caSKevin Wolf * bdrv_append() takes ownership of a bs_new reference and unrefs it because 2196dd62f1caSKevin Wolf * that's what the callers commonly need. bs_new will be referenced by the old 2197dd62f1caSKevin Wolf * parents of bs_top after bdrv_append() returns. If the caller needs to keep a 2198dd62f1caSKevin Wolf * reference of its own, it must call bdrv_ref(). 21998802d1fdSJeff Cody */ 22008802d1fdSJeff Cody void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top) 22018802d1fdSJeff Cody { 2202dd62f1caSKevin Wolf assert(!bdrv_requests_pending(bs_top)); 2203dd62f1caSKevin Wolf assert(!bdrv_requests_pending(bs_new)); 22048802d1fdSJeff Cody 2205dd62f1caSKevin Wolf bdrv_ref(bs_top); 2206dd62f1caSKevin Wolf change_parent_backing_link(bs_top, bs_new); 2207dd62f1caSKevin Wolf 2208dd62f1caSKevin Wolf /* Some fields always stay on top of the backing file chain */ 2209dd62f1caSKevin Wolf swap_feature_fields(bs_top, bs_new); 2210dd62f1caSKevin Wolf 2211dd62f1caSKevin Wolf bdrv_set_backing_hd(bs_new, bs_top); 2212dd62f1caSKevin Wolf bdrv_unref(bs_top); 2213dd62f1caSKevin Wolf 2214dd62f1caSKevin Wolf /* bs_new is now referenced by its new parents, we don't need the 2215dd62f1caSKevin Wolf * additional reference any more. */ 2216dd62f1caSKevin Wolf bdrv_unref(bs_new); 22178802d1fdSJeff Cody } 22188802d1fdSJeff Cody 22193f09bfbcSKevin Wolf void bdrv_replace_in_backing_chain(BlockDriverState *old, BlockDriverState *new) 22203f09bfbcSKevin Wolf { 22213f09bfbcSKevin Wolf assert(!bdrv_requests_pending(old)); 22223f09bfbcSKevin Wolf assert(!bdrv_requests_pending(new)); 22233f09bfbcSKevin Wolf 22243f09bfbcSKevin Wolf bdrv_ref(old); 22253f09bfbcSKevin Wolf 22263f09bfbcSKevin Wolf if (old->blk) { 22273f09bfbcSKevin Wolf /* As long as these fields aren't in BlockBackend, but in the top-level 22283f09bfbcSKevin Wolf * BlockDriverState, it's not possible for a BDS to have two BBs. 22293f09bfbcSKevin Wolf * 22303f09bfbcSKevin Wolf * We really want to copy the fields from old to new, but we go for a 22313f09bfbcSKevin Wolf * swap instead so that pointers aren't duplicated and cause trouble. 22323f09bfbcSKevin Wolf * (Also, bdrv_swap() used to do the same.) */ 22333f09bfbcSKevin Wolf assert(!new->blk); 22343f09bfbcSKevin Wolf swap_feature_fields(old, new); 22353f09bfbcSKevin Wolf } 22363f09bfbcSKevin Wolf change_parent_backing_link(old, new); 22373f09bfbcSKevin Wolf 22383f09bfbcSKevin Wolf /* Change backing files if a previously independent node is added to the 22393f09bfbcSKevin Wolf * chain. For active commit, we replace top by its own (indirect) backing 22403f09bfbcSKevin Wolf * file and don't do anything here so we don't build a loop. */ 22413f09bfbcSKevin Wolf if (new->backing == NULL && !bdrv_chain_contains(backing_bs(old), new)) { 22423f09bfbcSKevin Wolf bdrv_set_backing_hd(new, backing_bs(old)); 22433f09bfbcSKevin Wolf bdrv_set_backing_hd(old, NULL); 22443f09bfbcSKevin Wolf } 22453f09bfbcSKevin Wolf 22463f09bfbcSKevin Wolf bdrv_unref(old); 22473f09bfbcSKevin Wolf } 22483f09bfbcSKevin Wolf 22494f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs) 2250b338082bSbellard { 22513e914655SPaolo Bonzini assert(!bs->job); 22523718d8abSFam Zheng assert(bdrv_op_blocker_is_empty(bs)); 22534f6fd349SFam Zheng assert(!bs->refcnt); 2254e4654d2dSFam Zheng assert(QLIST_EMPTY(&bs->dirty_bitmaps)); 225518846deeSMarkus Armbruster 2256e1b5c52eSStefan Hajnoczi bdrv_close(bs); 2257e1b5c52eSStefan Hajnoczi 22581b7bdbc1SStefan Hajnoczi /* remove from list, if necessary */ 2259d22b2f41SRyan Harper bdrv_make_anon(bs); 226034c6f050Saurel32 22617267c094SAnthony Liguori g_free(bs); 2262fc01f7e7Sbellard } 2263fc01f7e7Sbellard 2264e97fc193Saliguori /* 2265e97fc193Saliguori * Run consistency checks on an image 2266e97fc193Saliguori * 2267e076f338SKevin Wolf * Returns 0 if the check could be completed (it doesn't mean that the image is 2268a1c7273bSStefan Weil * free of errors) or -errno when an internal error occurred. The results of the 2269e076f338SKevin Wolf * check are stored in res. 2270e97fc193Saliguori */ 22714534ff54SKevin Wolf int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix) 2272e97fc193Saliguori { 2273908bcd54SMax Reitz if (bs->drv == NULL) { 2274908bcd54SMax Reitz return -ENOMEDIUM; 2275908bcd54SMax Reitz } 2276e97fc193Saliguori if (bs->drv->bdrv_check == NULL) { 2277e97fc193Saliguori return -ENOTSUP; 2278e97fc193Saliguori } 2279e97fc193Saliguori 2280e076f338SKevin Wolf memset(res, 0, sizeof(*res)); 22814534ff54SKevin Wolf return bs->drv->bdrv_check(bs, res, fix); 2282e97fc193Saliguori } 2283e97fc193Saliguori 22848a426614SKevin Wolf #define COMMIT_BUF_SECTORS 2048 22858a426614SKevin Wolf 228633e3963eSbellard /* commit COW file into the raw image */ 228733e3963eSbellard int bdrv_commit(BlockDriverState *bs) 228833e3963eSbellard { 228919cb3738Sbellard BlockDriver *drv = bs->drv; 229072706ea4SJeff Cody int64_t sector, total_sectors, length, backing_length; 22918a426614SKevin Wolf int n, ro, open_flags; 22920bce597dSJeff Cody int ret = 0; 229372706ea4SJeff Cody uint8_t *buf = NULL; 229433e3963eSbellard 229519cb3738Sbellard if (!drv) 229619cb3738Sbellard return -ENOMEDIUM; 229733e3963eSbellard 2298760e0063SKevin Wolf if (!bs->backing) { 22994dca4b63SNaphtali Sprei return -ENOTSUP; 23004dca4b63SNaphtali Sprei } 23014dca4b63SNaphtali Sprei 2302bb00021dSFam Zheng if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_COMMIT_SOURCE, NULL) || 2303760e0063SKevin Wolf bdrv_op_is_blocked(bs->backing->bs, BLOCK_OP_TYPE_COMMIT_TARGET, NULL)) { 23042d3735d3SStefan Hajnoczi return -EBUSY; 23052d3735d3SStefan Hajnoczi } 23062d3735d3SStefan Hajnoczi 2307760e0063SKevin Wolf ro = bs->backing->bs->read_only; 2308760e0063SKevin Wolf open_flags = bs->backing->bs->open_flags; 23094dca4b63SNaphtali Sprei 23104dca4b63SNaphtali Sprei if (ro) { 2311760e0063SKevin Wolf if (bdrv_reopen(bs->backing->bs, open_flags | BDRV_O_RDWR, NULL)) { 23120bce597dSJeff Cody return -EACCES; 23134dca4b63SNaphtali Sprei } 2314ea2384d3Sbellard } 2315ea2384d3Sbellard 231672706ea4SJeff Cody length = bdrv_getlength(bs); 231772706ea4SJeff Cody if (length < 0) { 231872706ea4SJeff Cody ret = length; 231972706ea4SJeff Cody goto ro_cleanup; 232072706ea4SJeff Cody } 232172706ea4SJeff Cody 2322760e0063SKevin Wolf backing_length = bdrv_getlength(bs->backing->bs); 232372706ea4SJeff Cody if (backing_length < 0) { 232472706ea4SJeff Cody ret = backing_length; 232572706ea4SJeff Cody goto ro_cleanup; 232672706ea4SJeff Cody } 232772706ea4SJeff Cody 232872706ea4SJeff Cody /* If our top snapshot is larger than the backing file image, 232972706ea4SJeff Cody * grow the backing file image if possible. If not possible, 233072706ea4SJeff Cody * we must return an error */ 233172706ea4SJeff Cody if (length > backing_length) { 2332760e0063SKevin Wolf ret = bdrv_truncate(bs->backing->bs, length); 233372706ea4SJeff Cody if (ret < 0) { 233472706ea4SJeff Cody goto ro_cleanup; 233572706ea4SJeff Cody } 233672706ea4SJeff Cody } 233772706ea4SJeff Cody 233872706ea4SJeff Cody total_sectors = length >> BDRV_SECTOR_BITS; 2339857d4f46SKevin Wolf 2340857d4f46SKevin Wolf /* qemu_try_blockalign() for bs will choose an alignment that works for 2341760e0063SKevin Wolf * bs->backing->bs as well, so no need to compare the alignment manually. */ 2342857d4f46SKevin Wolf buf = qemu_try_blockalign(bs, COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE); 2343857d4f46SKevin Wolf if (buf == NULL) { 2344857d4f46SKevin Wolf ret = -ENOMEM; 2345857d4f46SKevin Wolf goto ro_cleanup; 2346857d4f46SKevin Wolf } 23478a426614SKevin Wolf 23488a426614SKevin Wolf for (sector = 0; sector < total_sectors; sector += n) { 2349d663640cSPaolo Bonzini ret = bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n); 2350d663640cSPaolo Bonzini if (ret < 0) { 2351d663640cSPaolo Bonzini goto ro_cleanup; 2352d663640cSPaolo Bonzini } 2353d663640cSPaolo Bonzini if (ret) { 2354dabfa6ccSKevin Wolf ret = bdrv_read(bs, sector, buf, n); 2355dabfa6ccSKevin Wolf if (ret < 0) { 23564dca4b63SNaphtali Sprei goto ro_cleanup; 235733e3963eSbellard } 235833e3963eSbellard 2359760e0063SKevin Wolf ret = bdrv_write(bs->backing->bs, sector, buf, n); 2360dabfa6ccSKevin Wolf if (ret < 0) { 23614dca4b63SNaphtali Sprei goto ro_cleanup; 236233e3963eSbellard } 236333e3963eSbellard } 236433e3963eSbellard } 236595389c86Sbellard 23661d44952fSChristoph Hellwig if (drv->bdrv_make_empty) { 23671d44952fSChristoph Hellwig ret = drv->bdrv_make_empty(bs); 2368dabfa6ccSKevin Wolf if (ret < 0) { 2369dabfa6ccSKevin Wolf goto ro_cleanup; 2370dabfa6ccSKevin Wolf } 23711d44952fSChristoph Hellwig bdrv_flush(bs); 23721d44952fSChristoph Hellwig } 237395389c86Sbellard 23743f5075aeSChristoph Hellwig /* 23753f5075aeSChristoph Hellwig * Make sure all data we wrote to the backing device is actually 23763f5075aeSChristoph Hellwig * stable on disk. 23773f5075aeSChristoph Hellwig */ 2378760e0063SKevin Wolf if (bs->backing) { 2379760e0063SKevin Wolf bdrv_flush(bs->backing->bs); 2380dabfa6ccSKevin Wolf } 23814dca4b63SNaphtali Sprei 2382dabfa6ccSKevin Wolf ret = 0; 23834dca4b63SNaphtali Sprei ro_cleanup: 2384857d4f46SKevin Wolf qemu_vfree(buf); 23854dca4b63SNaphtali Sprei 23864dca4b63SNaphtali Sprei if (ro) { 23870bce597dSJeff Cody /* ignoring error return here */ 2388760e0063SKevin Wolf bdrv_reopen(bs->backing->bs, open_flags & ~BDRV_O_RDWR, NULL); 23894dca4b63SNaphtali Sprei } 23904dca4b63SNaphtali Sprei 23911d44952fSChristoph Hellwig return ret; 239233e3963eSbellard } 239333e3963eSbellard 2394e8877497SStefan Hajnoczi int bdrv_commit_all(void) 23956ab4b5abSMarkus Armbruster { 23966ab4b5abSMarkus Armbruster BlockDriverState *bs; 23976ab4b5abSMarkus Armbruster 2398dc364f4cSBenoît Canet QTAILQ_FOREACH(bs, &bdrv_states, device_list) { 2399ed78cda3SStefan Hajnoczi AioContext *aio_context = bdrv_get_aio_context(bs); 2400ed78cda3SStefan Hajnoczi 2401ed78cda3SStefan Hajnoczi aio_context_acquire(aio_context); 2402760e0063SKevin Wolf if (bs->drv && bs->backing) { 2403e8877497SStefan Hajnoczi int ret = bdrv_commit(bs); 2404e8877497SStefan Hajnoczi if (ret < 0) { 2405ed78cda3SStefan Hajnoczi aio_context_release(aio_context); 2406e8877497SStefan Hajnoczi return ret; 24076ab4b5abSMarkus Armbruster } 24086ab4b5abSMarkus Armbruster } 2409ed78cda3SStefan Hajnoczi aio_context_release(aio_context); 2410272d2d8eSJeff Cody } 2411e8877497SStefan Hajnoczi return 0; 2412e8877497SStefan Hajnoczi } 24136ab4b5abSMarkus Armbruster 2414756e6736SKevin Wolf /* 2415756e6736SKevin Wolf * Return values: 2416756e6736SKevin Wolf * 0 - success 2417756e6736SKevin Wolf * -EINVAL - backing format specified, but no file 2418756e6736SKevin Wolf * -ENOSPC - can't update the backing file because no space is left in the 2419756e6736SKevin Wolf * image file header 2420756e6736SKevin Wolf * -ENOTSUP - format driver doesn't support changing the backing file 2421756e6736SKevin Wolf */ 2422756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs, 2423756e6736SKevin Wolf const char *backing_file, const char *backing_fmt) 2424756e6736SKevin Wolf { 2425756e6736SKevin Wolf BlockDriver *drv = bs->drv; 2426469ef350SPaolo Bonzini int ret; 2427756e6736SKevin Wolf 24285f377794SPaolo Bonzini /* Backing file format doesn't make sense without a backing file */ 24295f377794SPaolo Bonzini if (backing_fmt && !backing_file) { 24305f377794SPaolo Bonzini return -EINVAL; 24315f377794SPaolo Bonzini } 24325f377794SPaolo Bonzini 2433756e6736SKevin Wolf if (drv->bdrv_change_backing_file != NULL) { 2434469ef350SPaolo Bonzini ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); 2435756e6736SKevin Wolf } else { 2436469ef350SPaolo Bonzini ret = -ENOTSUP; 2437756e6736SKevin Wolf } 2438469ef350SPaolo Bonzini 2439469ef350SPaolo Bonzini if (ret == 0) { 2440469ef350SPaolo Bonzini pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); 2441469ef350SPaolo Bonzini pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); 2442469ef350SPaolo Bonzini } 2443469ef350SPaolo Bonzini return ret; 2444756e6736SKevin Wolf } 2445756e6736SKevin Wolf 24466ebdcee2SJeff Cody /* 24476ebdcee2SJeff Cody * Finds the image layer in the chain that has 'bs' as its backing file. 24486ebdcee2SJeff Cody * 24496ebdcee2SJeff Cody * active is the current topmost image. 24506ebdcee2SJeff Cody * 24516ebdcee2SJeff Cody * Returns NULL if bs is not found in active's image chain, 24526ebdcee2SJeff Cody * or if active == bs. 24534caf0fcdSJeff Cody * 24544caf0fcdSJeff Cody * Returns the bottommost base image if bs == NULL. 24556ebdcee2SJeff Cody */ 24566ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active, 24576ebdcee2SJeff Cody BlockDriverState *bs) 24586ebdcee2SJeff Cody { 2459760e0063SKevin Wolf while (active && bs != backing_bs(active)) { 2460760e0063SKevin Wolf active = backing_bs(active); 24616ebdcee2SJeff Cody } 24626ebdcee2SJeff Cody 24634caf0fcdSJeff Cody return active; 24646ebdcee2SJeff Cody } 24656ebdcee2SJeff Cody 24664caf0fcdSJeff Cody /* Given a BDS, searches for the base layer. */ 24674caf0fcdSJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs) 24684caf0fcdSJeff Cody { 24694caf0fcdSJeff Cody return bdrv_find_overlay(bs, NULL); 24706ebdcee2SJeff Cody } 24716ebdcee2SJeff Cody 24726ebdcee2SJeff Cody /* 24736ebdcee2SJeff Cody * Drops images above 'base' up to and including 'top', and sets the image 24746ebdcee2SJeff Cody * above 'top' to have base as its backing file. 24756ebdcee2SJeff Cody * 24766ebdcee2SJeff Cody * Requires that the overlay to 'top' is opened r/w, so that the backing file 24776ebdcee2SJeff Cody * information in 'bs' can be properly updated. 24786ebdcee2SJeff Cody * 24796ebdcee2SJeff Cody * E.g., this will convert the following chain: 24806ebdcee2SJeff Cody * bottom <- base <- intermediate <- top <- active 24816ebdcee2SJeff Cody * 24826ebdcee2SJeff Cody * to 24836ebdcee2SJeff Cody * 24846ebdcee2SJeff Cody * bottom <- base <- active 24856ebdcee2SJeff Cody * 24866ebdcee2SJeff Cody * It is allowed for bottom==base, in which case it converts: 24876ebdcee2SJeff Cody * 24886ebdcee2SJeff Cody * base <- intermediate <- top <- active 24896ebdcee2SJeff Cody * 24906ebdcee2SJeff Cody * to 24916ebdcee2SJeff Cody * 24926ebdcee2SJeff Cody * base <- active 24936ebdcee2SJeff Cody * 249454e26900SJeff Cody * If backing_file_str is non-NULL, it will be used when modifying top's 249554e26900SJeff Cody * overlay image metadata. 249654e26900SJeff Cody * 24976ebdcee2SJeff Cody * Error conditions: 24986ebdcee2SJeff Cody * if active == top, that is considered an error 24996ebdcee2SJeff Cody * 25006ebdcee2SJeff Cody */ 25016ebdcee2SJeff Cody int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top, 250254e26900SJeff Cody BlockDriverState *base, const char *backing_file_str) 25036ebdcee2SJeff Cody { 25046ebdcee2SJeff Cody BlockDriverState *new_top_bs = NULL; 25056ebdcee2SJeff Cody int ret = -EIO; 25066ebdcee2SJeff Cody 25076ebdcee2SJeff Cody if (!top->drv || !base->drv) { 25086ebdcee2SJeff Cody goto exit; 25096ebdcee2SJeff Cody } 25106ebdcee2SJeff Cody 25116ebdcee2SJeff Cody new_top_bs = bdrv_find_overlay(active, top); 25126ebdcee2SJeff Cody 25136ebdcee2SJeff Cody if (new_top_bs == NULL) { 25146ebdcee2SJeff Cody /* we could not find the image above 'top', this is an error */ 25156ebdcee2SJeff Cody goto exit; 25166ebdcee2SJeff Cody } 25176ebdcee2SJeff Cody 2518760e0063SKevin Wolf /* special case of new_top_bs->backing->bs already pointing to base - nothing 25196ebdcee2SJeff Cody * to do, no intermediate images */ 2520760e0063SKevin Wolf if (backing_bs(new_top_bs) == base) { 25216ebdcee2SJeff Cody ret = 0; 25226ebdcee2SJeff Cody goto exit; 25236ebdcee2SJeff Cody } 25246ebdcee2SJeff Cody 25255db15a57SKevin Wolf /* Make sure that base is in the backing chain of top */ 25265db15a57SKevin Wolf if (!bdrv_chain_contains(top, base)) { 25276ebdcee2SJeff Cody goto exit; 25286ebdcee2SJeff Cody } 25296ebdcee2SJeff Cody 25306ebdcee2SJeff Cody /* success - we can delete the intermediate states, and link top->base */ 25315db15a57SKevin Wolf backing_file_str = backing_file_str ? backing_file_str : base->filename; 253254e26900SJeff Cody ret = bdrv_change_backing_file(new_top_bs, backing_file_str, 25335db15a57SKevin Wolf base->drv ? base->drv->format_name : ""); 25346ebdcee2SJeff Cody if (ret) { 25356ebdcee2SJeff Cody goto exit; 25366ebdcee2SJeff Cody } 25375db15a57SKevin Wolf bdrv_set_backing_hd(new_top_bs, base); 25386ebdcee2SJeff Cody 25396ebdcee2SJeff Cody ret = 0; 25406ebdcee2SJeff Cody exit: 25416ebdcee2SJeff Cody return ret; 25426ebdcee2SJeff Cody } 25436ebdcee2SJeff Cody 254483f64091Sbellard /** 254583f64091Sbellard * Truncate file to 'offset' bytes (needed only for file protocols) 254683f64091Sbellard */ 254783f64091Sbellard int bdrv_truncate(BlockDriverState *bs, int64_t offset) 254883f64091Sbellard { 254983f64091Sbellard BlockDriver *drv = bs->drv; 255051762288SStefan Hajnoczi int ret; 255183f64091Sbellard if (!drv) 255219cb3738Sbellard return -ENOMEDIUM; 255383f64091Sbellard if (!drv->bdrv_truncate) 255483f64091Sbellard return -ENOTSUP; 255559f2689dSNaphtali Sprei if (bs->read_only) 255659f2689dSNaphtali Sprei return -EACCES; 25579c75e168SJeff Cody 255851762288SStefan Hajnoczi ret = drv->bdrv_truncate(bs, offset); 255951762288SStefan Hajnoczi if (ret == 0) { 256051762288SStefan Hajnoczi ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS); 2561ce1ffea8SJohn Snow bdrv_dirty_bitmap_truncate(bs); 2562a7f53e26SMarkus Armbruster if (bs->blk) { 2563a7f53e26SMarkus Armbruster blk_dev_resize_cb(bs->blk); 2564a7f53e26SMarkus Armbruster } 256551762288SStefan Hajnoczi } 256651762288SStefan Hajnoczi return ret; 256783f64091Sbellard } 256883f64091Sbellard 256983f64091Sbellard /** 25704a1d5e1fSFam Zheng * Length of a allocated file in bytes. Sparse files are counted by actual 25714a1d5e1fSFam Zheng * allocated space. Return < 0 if error or unknown. 25724a1d5e1fSFam Zheng */ 25734a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs) 25744a1d5e1fSFam Zheng { 25754a1d5e1fSFam Zheng BlockDriver *drv = bs->drv; 25764a1d5e1fSFam Zheng if (!drv) { 25774a1d5e1fSFam Zheng return -ENOMEDIUM; 25784a1d5e1fSFam Zheng } 25794a1d5e1fSFam Zheng if (drv->bdrv_get_allocated_file_size) { 25804a1d5e1fSFam Zheng return drv->bdrv_get_allocated_file_size(bs); 25814a1d5e1fSFam Zheng } 25824a1d5e1fSFam Zheng if (bs->file) { 25839a4f4c31SKevin Wolf return bdrv_get_allocated_file_size(bs->file->bs); 25844a1d5e1fSFam Zheng } 25854a1d5e1fSFam Zheng return -ENOTSUP; 25864a1d5e1fSFam Zheng } 25874a1d5e1fSFam Zheng 25884a1d5e1fSFam Zheng /** 258965a9bb25SMarkus Armbruster * Return number of sectors on success, -errno on error. 259083f64091Sbellard */ 259165a9bb25SMarkus Armbruster int64_t bdrv_nb_sectors(BlockDriverState *bs) 259283f64091Sbellard { 259383f64091Sbellard BlockDriver *drv = bs->drv; 259465a9bb25SMarkus Armbruster 259583f64091Sbellard if (!drv) 259619cb3738Sbellard return -ENOMEDIUM; 259751762288SStefan Hajnoczi 2598b94a2610SKevin Wolf if (drv->has_variable_length) { 2599b94a2610SKevin Wolf int ret = refresh_total_sectors(bs, bs->total_sectors); 2600b94a2610SKevin Wolf if (ret < 0) { 2601b94a2610SKevin Wolf return ret; 2602fc01f7e7Sbellard } 260346a4e4e6SStefan Hajnoczi } 260465a9bb25SMarkus Armbruster return bs->total_sectors; 260565a9bb25SMarkus Armbruster } 260665a9bb25SMarkus Armbruster 260765a9bb25SMarkus Armbruster /** 260865a9bb25SMarkus Armbruster * Return length in bytes on success, -errno on error. 260965a9bb25SMarkus Armbruster * The length is always a multiple of BDRV_SECTOR_SIZE. 261065a9bb25SMarkus Armbruster */ 261165a9bb25SMarkus Armbruster int64_t bdrv_getlength(BlockDriverState *bs) 261265a9bb25SMarkus Armbruster { 261365a9bb25SMarkus Armbruster int64_t ret = bdrv_nb_sectors(bs); 261465a9bb25SMarkus Armbruster 26154a9c9ea0SFam Zheng ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret; 261665a9bb25SMarkus Armbruster return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE; 261746a4e4e6SStefan Hajnoczi } 2618fc01f7e7Sbellard 261919cb3738Sbellard /* return 0 as number of sectors if no device present or error */ 262096b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) 2621fc01f7e7Sbellard { 262265a9bb25SMarkus Armbruster int64_t nb_sectors = bdrv_nb_sectors(bs); 262365a9bb25SMarkus Armbruster 262465a9bb25SMarkus Armbruster *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors; 2625fc01f7e7Sbellard } 2626cf98951bSbellard 2627b338082bSbellard int bdrv_is_read_only(BlockDriverState *bs) 2628b338082bSbellard { 2629b338082bSbellard return bs->read_only; 2630b338082bSbellard } 2631b338082bSbellard 2632985a03b0Sths int bdrv_is_sg(BlockDriverState *bs) 2633985a03b0Sths { 2634985a03b0Sths return bs->sg; 2635985a03b0Sths } 2636985a03b0Sths 2637e900a7b7SChristoph Hellwig int bdrv_enable_write_cache(BlockDriverState *bs) 2638e900a7b7SChristoph Hellwig { 2639e900a7b7SChristoph Hellwig return bs->enable_write_cache; 2640e900a7b7SChristoph Hellwig } 2641e900a7b7SChristoph Hellwig 2642425b0148SPaolo Bonzini void bdrv_set_enable_write_cache(BlockDriverState *bs, bool wce) 2643425b0148SPaolo Bonzini { 2644425b0148SPaolo Bonzini bs->enable_write_cache = wce; 264555b110f2SJeff Cody 264655b110f2SJeff Cody /* so a reopen() will preserve wce */ 264755b110f2SJeff Cody if (wce) { 264855b110f2SJeff Cody bs->open_flags |= BDRV_O_CACHE_WB; 264955b110f2SJeff Cody } else { 265055b110f2SJeff Cody bs->open_flags &= ~BDRV_O_CACHE_WB; 265155b110f2SJeff Cody } 2652425b0148SPaolo Bonzini } 2653425b0148SPaolo Bonzini 2654ea2384d3Sbellard int bdrv_is_encrypted(BlockDriverState *bs) 2655ea2384d3Sbellard { 2656760e0063SKevin Wolf if (bs->backing && bs->backing->bs->encrypted) { 2657ea2384d3Sbellard return 1; 2658760e0063SKevin Wolf } 2659ea2384d3Sbellard return bs->encrypted; 2660ea2384d3Sbellard } 2661ea2384d3Sbellard 2662c0f4ce77Saliguori int bdrv_key_required(BlockDriverState *bs) 2663c0f4ce77Saliguori { 2664760e0063SKevin Wolf BdrvChild *backing = bs->backing; 2665c0f4ce77Saliguori 2666760e0063SKevin Wolf if (backing && backing->bs->encrypted && !backing->bs->valid_key) { 2667c0f4ce77Saliguori return 1; 2668760e0063SKevin Wolf } 2669c0f4ce77Saliguori return (bs->encrypted && !bs->valid_key); 2670c0f4ce77Saliguori } 2671c0f4ce77Saliguori 2672ea2384d3Sbellard int bdrv_set_key(BlockDriverState *bs, const char *key) 2673ea2384d3Sbellard { 2674ea2384d3Sbellard int ret; 2675760e0063SKevin Wolf if (bs->backing && bs->backing->bs->encrypted) { 2676760e0063SKevin Wolf ret = bdrv_set_key(bs->backing->bs, key); 2677ea2384d3Sbellard if (ret < 0) 2678ea2384d3Sbellard return ret; 2679ea2384d3Sbellard if (!bs->encrypted) 2680ea2384d3Sbellard return 0; 2681ea2384d3Sbellard } 2682fd04a2aeSShahar Havivi if (!bs->encrypted) { 2683fd04a2aeSShahar Havivi return -EINVAL; 2684fd04a2aeSShahar Havivi } else if (!bs->drv || !bs->drv->bdrv_set_key) { 2685fd04a2aeSShahar Havivi return -ENOMEDIUM; 2686fd04a2aeSShahar Havivi } 2687c0f4ce77Saliguori ret = bs->drv->bdrv_set_key(bs, key); 2688bb5fc20fSaliguori if (ret < 0) { 2689bb5fc20fSaliguori bs->valid_key = 0; 2690bb5fc20fSaliguori } else if (!bs->valid_key) { 2691bb5fc20fSaliguori bs->valid_key = 1; 2692a7f53e26SMarkus Armbruster if (bs->blk) { 2693bb5fc20fSaliguori /* call the change callback now, we skipped it on open */ 2694a7f53e26SMarkus Armbruster blk_dev_change_media_cb(bs->blk, true); 2695a7f53e26SMarkus Armbruster } 2696bb5fc20fSaliguori } 2697c0f4ce77Saliguori return ret; 2698ea2384d3Sbellard } 2699ea2384d3Sbellard 27004d2855a3SMarkus Armbruster /* 27014d2855a3SMarkus Armbruster * Provide an encryption key for @bs. 27024d2855a3SMarkus Armbruster * If @key is non-null: 27034d2855a3SMarkus Armbruster * If @bs is not encrypted, fail. 27044d2855a3SMarkus Armbruster * Else if the key is invalid, fail. 27054d2855a3SMarkus Armbruster * Else set @bs's key to @key, replacing the existing key, if any. 27064d2855a3SMarkus Armbruster * If @key is null: 27074d2855a3SMarkus Armbruster * If @bs is encrypted and still lacks a key, fail. 27084d2855a3SMarkus Armbruster * Else do nothing. 27094d2855a3SMarkus Armbruster * On failure, store an error object through @errp if non-null. 27104d2855a3SMarkus Armbruster */ 27114d2855a3SMarkus Armbruster void bdrv_add_key(BlockDriverState *bs, const char *key, Error **errp) 27124d2855a3SMarkus Armbruster { 27134d2855a3SMarkus Armbruster if (key) { 27144d2855a3SMarkus Armbruster if (!bdrv_is_encrypted(bs)) { 271581e5f78aSAlberto Garcia error_setg(errp, "Node '%s' is not encrypted", 271681e5f78aSAlberto Garcia bdrv_get_device_or_node_name(bs)); 27174d2855a3SMarkus Armbruster } else if (bdrv_set_key(bs, key) < 0) { 2718c6bd8c70SMarkus Armbruster error_setg(errp, QERR_INVALID_PASSWORD); 27194d2855a3SMarkus Armbruster } 27204d2855a3SMarkus Armbruster } else { 27214d2855a3SMarkus Armbruster if (bdrv_key_required(bs)) { 2722b1ca6391SMarkus Armbruster error_set(errp, ERROR_CLASS_DEVICE_ENCRYPTED, 2723b1ca6391SMarkus Armbruster "'%s' (%s) is encrypted", 272481e5f78aSAlberto Garcia bdrv_get_device_or_node_name(bs), 27254d2855a3SMarkus Armbruster bdrv_get_encrypted_filename(bs)); 27264d2855a3SMarkus Armbruster } 27274d2855a3SMarkus Armbruster } 27284d2855a3SMarkus Armbruster } 27294d2855a3SMarkus Armbruster 2730f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs) 2731ea2384d3Sbellard { 2732f8d6bba1SMarkus Armbruster return bs->drv ? bs->drv->format_name : NULL; 2733ea2384d3Sbellard } 2734ea2384d3Sbellard 2735ada42401SStefan Hajnoczi static int qsort_strcmp(const void *a, const void *b) 2736ada42401SStefan Hajnoczi { 2737ada42401SStefan Hajnoczi return strcmp(a, b); 2738ada42401SStefan Hajnoczi } 2739ada42401SStefan Hajnoczi 2740ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name), 2741ea2384d3Sbellard void *opaque) 2742ea2384d3Sbellard { 2743ea2384d3Sbellard BlockDriver *drv; 2744e855e4fbSJeff Cody int count = 0; 2745ada42401SStefan Hajnoczi int i; 2746e855e4fbSJeff Cody const char **formats = NULL; 2747ea2384d3Sbellard 27488a22f02aSStefan Hajnoczi QLIST_FOREACH(drv, &bdrv_drivers, list) { 2749e855e4fbSJeff Cody if (drv->format_name) { 2750e855e4fbSJeff Cody bool found = false; 2751e855e4fbSJeff Cody int i = count; 2752e855e4fbSJeff Cody while (formats && i && !found) { 2753e855e4fbSJeff Cody found = !strcmp(formats[--i], drv->format_name); 2754e855e4fbSJeff Cody } 2755e855e4fbSJeff Cody 2756e855e4fbSJeff Cody if (!found) { 27575839e53bSMarkus Armbruster formats = g_renew(const char *, formats, count + 1); 2758e855e4fbSJeff Cody formats[count++] = drv->format_name; 2759ea2384d3Sbellard } 2760ea2384d3Sbellard } 2761e855e4fbSJeff Cody } 2762ada42401SStefan Hajnoczi 2763ada42401SStefan Hajnoczi qsort(formats, count, sizeof(formats[0]), qsort_strcmp); 2764ada42401SStefan Hajnoczi 2765ada42401SStefan Hajnoczi for (i = 0; i < count; i++) { 2766ada42401SStefan Hajnoczi it(opaque, formats[i]); 2767ada42401SStefan Hajnoczi } 2768ada42401SStefan Hajnoczi 2769e855e4fbSJeff Cody g_free(formats); 2770e855e4fbSJeff Cody } 2771ea2384d3Sbellard 2772dc364f4cSBenoît Canet /* This function is to find a node in the bs graph */ 2773dc364f4cSBenoît Canet BlockDriverState *bdrv_find_node(const char *node_name) 2774dc364f4cSBenoît Canet { 2775dc364f4cSBenoît Canet BlockDriverState *bs; 2776dc364f4cSBenoît Canet 2777dc364f4cSBenoît Canet assert(node_name); 2778dc364f4cSBenoît Canet 2779dc364f4cSBenoît Canet QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 2780dc364f4cSBenoît Canet if (!strcmp(node_name, bs->node_name)) { 2781dc364f4cSBenoît Canet return bs; 2782dc364f4cSBenoît Canet } 2783dc364f4cSBenoît Canet } 2784dc364f4cSBenoît Canet return NULL; 2785dc364f4cSBenoît Canet } 2786dc364f4cSBenoît Canet 2787c13163fbSBenoît Canet /* Put this QMP function here so it can access the static graph_bdrv_states. */ 2788d5a8ee60SAlberto Garcia BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp) 2789c13163fbSBenoît Canet { 2790c13163fbSBenoît Canet BlockDeviceInfoList *list, *entry; 2791c13163fbSBenoît Canet BlockDriverState *bs; 2792c13163fbSBenoît Canet 2793c13163fbSBenoît Canet list = NULL; 2794c13163fbSBenoît Canet QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) { 2795d5a8ee60SAlberto Garcia BlockDeviceInfo *info = bdrv_block_device_info(bs, errp); 2796d5a8ee60SAlberto Garcia if (!info) { 2797d5a8ee60SAlberto Garcia qapi_free_BlockDeviceInfoList(list); 2798d5a8ee60SAlberto Garcia return NULL; 2799d5a8ee60SAlberto Garcia } 2800c13163fbSBenoît Canet entry = g_malloc0(sizeof(*entry)); 2801d5a8ee60SAlberto Garcia entry->value = info; 2802c13163fbSBenoît Canet entry->next = list; 2803c13163fbSBenoît Canet list = entry; 2804c13163fbSBenoît Canet } 2805c13163fbSBenoît Canet 2806c13163fbSBenoît Canet return list; 2807c13163fbSBenoît Canet } 2808c13163fbSBenoît Canet 280912d3ba82SBenoît Canet BlockDriverState *bdrv_lookup_bs(const char *device, 281012d3ba82SBenoît Canet const char *node_name, 281112d3ba82SBenoît Canet Error **errp) 281212d3ba82SBenoît Canet { 28137f06d47eSMarkus Armbruster BlockBackend *blk; 28147f06d47eSMarkus Armbruster BlockDriverState *bs; 281512d3ba82SBenoît Canet 281612d3ba82SBenoît Canet if (device) { 28177f06d47eSMarkus Armbruster blk = blk_by_name(device); 281812d3ba82SBenoît Canet 28197f06d47eSMarkus Armbruster if (blk) { 28209f4ed6fbSAlberto Garcia bs = blk_bs(blk); 28219f4ed6fbSAlberto Garcia if (!bs) { 28225433c24fSMax Reitz error_setg(errp, "Device '%s' has no medium", device); 28235433c24fSMax Reitz } 28245433c24fSMax Reitz 28259f4ed6fbSAlberto Garcia return bs; 282612d3ba82SBenoît Canet } 2827dd67fa50SBenoît Canet } 282812d3ba82SBenoît Canet 2829dd67fa50SBenoît Canet if (node_name) { 283012d3ba82SBenoît Canet bs = bdrv_find_node(node_name); 283112d3ba82SBenoît Canet 2832dd67fa50SBenoît Canet if (bs) { 2833dd67fa50SBenoît Canet return bs; 2834dd67fa50SBenoît Canet } 283512d3ba82SBenoît Canet } 283612d3ba82SBenoît Canet 2837dd67fa50SBenoît Canet error_setg(errp, "Cannot find device=%s nor node_name=%s", 2838dd67fa50SBenoît Canet device ? device : "", 2839dd67fa50SBenoît Canet node_name ? node_name : ""); 2840dd67fa50SBenoît Canet return NULL; 284112d3ba82SBenoît Canet } 284212d3ba82SBenoît Canet 28435a6684d2SJeff Cody /* If 'base' is in the same chain as 'top', return true. Otherwise, 28445a6684d2SJeff Cody * return false. If either argument is NULL, return false. */ 28455a6684d2SJeff Cody bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base) 28465a6684d2SJeff Cody { 28475a6684d2SJeff Cody while (top && top != base) { 2848760e0063SKevin Wolf top = backing_bs(top); 28495a6684d2SJeff Cody } 28505a6684d2SJeff Cody 28515a6684d2SJeff Cody return top != NULL; 28525a6684d2SJeff Cody } 28535a6684d2SJeff Cody 285404df765aSFam Zheng BlockDriverState *bdrv_next_node(BlockDriverState *bs) 285504df765aSFam Zheng { 285604df765aSFam Zheng if (!bs) { 285704df765aSFam Zheng return QTAILQ_FIRST(&graph_bdrv_states); 285804df765aSFam Zheng } 285904df765aSFam Zheng return QTAILQ_NEXT(bs, node_list); 286004df765aSFam Zheng } 286104df765aSFam Zheng 28622f399b0aSMarkus Armbruster BlockDriverState *bdrv_next(BlockDriverState *bs) 28632f399b0aSMarkus Armbruster { 28642f399b0aSMarkus Armbruster if (!bs) { 28652f399b0aSMarkus Armbruster return QTAILQ_FIRST(&bdrv_states); 28662f399b0aSMarkus Armbruster } 2867dc364f4cSBenoît Canet return QTAILQ_NEXT(bs, device_list); 28682f399b0aSMarkus Armbruster } 28692f399b0aSMarkus Armbruster 287020a9e77dSFam Zheng const char *bdrv_get_node_name(const BlockDriverState *bs) 287120a9e77dSFam Zheng { 287220a9e77dSFam Zheng return bs->node_name; 287320a9e77dSFam Zheng } 287420a9e77dSFam Zheng 28757f06d47eSMarkus Armbruster /* TODO check what callers really want: bs->node_name or blk_name() */ 2876bfb197e0SMarkus Armbruster const char *bdrv_get_device_name(const BlockDriverState *bs) 2877ea2384d3Sbellard { 2878bfb197e0SMarkus Armbruster return bs->blk ? blk_name(bs->blk) : ""; 2879ea2384d3Sbellard } 2880ea2384d3Sbellard 28819b2aa84fSAlberto Garcia /* This can be used to identify nodes that might not have a device 28829b2aa84fSAlberto Garcia * name associated. Since node and device names live in the same 28839b2aa84fSAlberto Garcia * namespace, the result is unambiguous. The exception is if both are 28849b2aa84fSAlberto Garcia * absent, then this returns an empty (non-null) string. */ 28859b2aa84fSAlberto Garcia const char *bdrv_get_device_or_node_name(const BlockDriverState *bs) 28869b2aa84fSAlberto Garcia { 28879b2aa84fSAlberto Garcia return bs->blk ? blk_name(bs->blk) : bs->node_name; 28889b2aa84fSAlberto Garcia } 28899b2aa84fSAlberto Garcia 2890c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs) 2891c8433287SMarkus Armbruster { 2892c8433287SMarkus Armbruster return bs->open_flags; 2893c8433287SMarkus Armbruster } 2894c8433287SMarkus Armbruster 28953ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs) 28963ac21627SPeter Lieven { 28973ac21627SPeter Lieven return 1; 28983ac21627SPeter Lieven } 28993ac21627SPeter Lieven 2900f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs) 2901f2feebbdSKevin Wolf { 2902f2feebbdSKevin Wolf assert(bs->drv); 2903f2feebbdSKevin Wolf 290411212d8fSPaolo Bonzini /* If BS is a copy on write image, it is initialized to 290511212d8fSPaolo Bonzini the contents of the base image, which may not be zeroes. */ 2906760e0063SKevin Wolf if (bs->backing) { 290711212d8fSPaolo Bonzini return 0; 290811212d8fSPaolo Bonzini } 2909336c1c12SKevin Wolf if (bs->drv->bdrv_has_zero_init) { 2910336c1c12SKevin Wolf return bs->drv->bdrv_has_zero_init(bs); 2911f2feebbdSKevin Wolf } 2912f2feebbdSKevin Wolf 29133ac21627SPeter Lieven /* safe default */ 29143ac21627SPeter Lieven return 0; 2915f2feebbdSKevin Wolf } 2916f2feebbdSKevin Wolf 29174ce78691SPeter Lieven bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs) 29184ce78691SPeter Lieven { 29194ce78691SPeter Lieven BlockDriverInfo bdi; 29204ce78691SPeter Lieven 2921760e0063SKevin Wolf if (bs->backing) { 29224ce78691SPeter Lieven return false; 29234ce78691SPeter Lieven } 29244ce78691SPeter Lieven 29254ce78691SPeter Lieven if (bdrv_get_info(bs, &bdi) == 0) { 29264ce78691SPeter Lieven return bdi.unallocated_blocks_are_zero; 29274ce78691SPeter Lieven } 29284ce78691SPeter Lieven 29294ce78691SPeter Lieven return false; 29304ce78691SPeter Lieven } 29314ce78691SPeter Lieven 29324ce78691SPeter Lieven bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs) 29334ce78691SPeter Lieven { 29344ce78691SPeter Lieven BlockDriverInfo bdi; 29354ce78691SPeter Lieven 2936760e0063SKevin Wolf if (bs->backing || !(bs->open_flags & BDRV_O_UNMAP)) { 29374ce78691SPeter Lieven return false; 29384ce78691SPeter Lieven } 29394ce78691SPeter Lieven 29404ce78691SPeter Lieven if (bdrv_get_info(bs, &bdi) == 0) { 29414ce78691SPeter Lieven return bdi.can_write_zeroes_with_unmap; 29424ce78691SPeter Lieven } 29434ce78691SPeter Lieven 29444ce78691SPeter Lieven return false; 29454ce78691SPeter Lieven } 29464ce78691SPeter Lieven 2947045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs) 2948045df330Saliguori { 2949760e0063SKevin Wolf if (bs->backing && bs->backing->bs->encrypted) 2950045df330Saliguori return bs->backing_file; 2951045df330Saliguori else if (bs->encrypted) 2952045df330Saliguori return bs->filename; 2953045df330Saliguori else 2954045df330Saliguori return NULL; 2955045df330Saliguori } 2956045df330Saliguori 295783f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs, 295883f64091Sbellard char *filename, int filename_size) 295983f64091Sbellard { 296083f64091Sbellard pstrcpy(filename, filename_size, bs->backing_file); 296183f64091Sbellard } 296283f64091Sbellard 2963faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) 2964faea38e7Sbellard { 2965faea38e7Sbellard BlockDriver *drv = bs->drv; 2966faea38e7Sbellard if (!drv) 296719cb3738Sbellard return -ENOMEDIUM; 2968faea38e7Sbellard if (!drv->bdrv_get_info) 2969faea38e7Sbellard return -ENOTSUP; 2970faea38e7Sbellard memset(bdi, 0, sizeof(*bdi)); 2971faea38e7Sbellard return drv->bdrv_get_info(bs, bdi); 2972faea38e7Sbellard } 2973faea38e7Sbellard 2974eae041feSMax Reitz ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs) 2975eae041feSMax Reitz { 2976eae041feSMax Reitz BlockDriver *drv = bs->drv; 2977eae041feSMax Reitz if (drv && drv->bdrv_get_specific_info) { 2978eae041feSMax Reitz return drv->bdrv_get_specific_info(bs); 2979eae041feSMax Reitz } 2980eae041feSMax Reitz return NULL; 2981eae041feSMax Reitz } 2982eae041feSMax Reitz 2983a31939e6SEric Blake void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event) 29848b9b0cc2SKevin Wolf { 2985bf736fe3SKevin Wolf if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) { 29868b9b0cc2SKevin Wolf return; 29878b9b0cc2SKevin Wolf } 29888b9b0cc2SKevin Wolf 2989bf736fe3SKevin Wolf bs->drv->bdrv_debug_event(bs, event); 299041c695c7SKevin Wolf } 29918b9b0cc2SKevin Wolf 299241c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, 299341c695c7SKevin Wolf const char *tag) 299441c695c7SKevin Wolf { 299541c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { 29969a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 299741c695c7SKevin Wolf } 299841c695c7SKevin Wolf 299941c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { 300041c695c7SKevin Wolf return bs->drv->bdrv_debug_breakpoint(bs, event, tag); 300141c695c7SKevin Wolf } 300241c695c7SKevin Wolf 300341c695c7SKevin Wolf return -ENOTSUP; 300441c695c7SKevin Wolf } 300541c695c7SKevin Wolf 30064cc70e93SFam Zheng int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag) 30074cc70e93SFam Zheng { 30084cc70e93SFam Zheng while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) { 30099a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 30104cc70e93SFam Zheng } 30114cc70e93SFam Zheng 30124cc70e93SFam Zheng if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) { 30134cc70e93SFam Zheng return bs->drv->bdrv_debug_remove_breakpoint(bs, tag); 30144cc70e93SFam Zheng } 30154cc70e93SFam Zheng 30164cc70e93SFam Zheng return -ENOTSUP; 30174cc70e93SFam Zheng } 30184cc70e93SFam Zheng 301941c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag) 302041c695c7SKevin Wolf { 3021938789eaSMax Reitz while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) { 30229a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 302341c695c7SKevin Wolf } 302441c695c7SKevin Wolf 302541c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_resume) { 302641c695c7SKevin Wolf return bs->drv->bdrv_debug_resume(bs, tag); 302741c695c7SKevin Wolf } 302841c695c7SKevin Wolf 302941c695c7SKevin Wolf return -ENOTSUP; 303041c695c7SKevin Wolf } 303141c695c7SKevin Wolf 303241c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) 303341c695c7SKevin Wolf { 303441c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { 30359a4f4c31SKevin Wolf bs = bs->file ? bs->file->bs : NULL; 303641c695c7SKevin Wolf } 303741c695c7SKevin Wolf 303841c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { 303941c695c7SKevin Wolf return bs->drv->bdrv_debug_is_suspended(bs, tag); 304041c695c7SKevin Wolf } 304141c695c7SKevin Wolf 304241c695c7SKevin Wolf return false; 30438b9b0cc2SKevin Wolf } 30448b9b0cc2SKevin Wolf 3045199630b6SBlue Swirl int bdrv_is_snapshot(BlockDriverState *bs) 3046199630b6SBlue Swirl { 3047199630b6SBlue Swirl return !!(bs->open_flags & BDRV_O_SNAPSHOT); 3048199630b6SBlue Swirl } 3049199630b6SBlue Swirl 3050b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol. If it is 3051b1b1d783SJeff Cody * relative, it must be relative to the chain. So, passing in bs->filename 3052b1b1d783SJeff Cody * from a BDS as backing_file should not be done, as that may be relative to 3053b1b1d783SJeff Cody * the CWD rather than the chain. */ 3054e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, 3055e8a6bb9cSMarcelo Tosatti const char *backing_file) 3056e8a6bb9cSMarcelo Tosatti { 3057b1b1d783SJeff Cody char *filename_full = NULL; 3058b1b1d783SJeff Cody char *backing_file_full = NULL; 3059b1b1d783SJeff Cody char *filename_tmp = NULL; 3060b1b1d783SJeff Cody int is_protocol = 0; 3061b1b1d783SJeff Cody BlockDriverState *curr_bs = NULL; 3062b1b1d783SJeff Cody BlockDriverState *retval = NULL; 3063b1b1d783SJeff Cody 3064b1b1d783SJeff Cody if (!bs || !bs->drv || !backing_file) { 3065e8a6bb9cSMarcelo Tosatti return NULL; 3066e8a6bb9cSMarcelo Tosatti } 3067e8a6bb9cSMarcelo Tosatti 3068b1b1d783SJeff Cody filename_full = g_malloc(PATH_MAX); 3069b1b1d783SJeff Cody backing_file_full = g_malloc(PATH_MAX); 3070b1b1d783SJeff Cody filename_tmp = g_malloc(PATH_MAX); 3071b1b1d783SJeff Cody 3072b1b1d783SJeff Cody is_protocol = path_has_protocol(backing_file); 3073b1b1d783SJeff Cody 3074760e0063SKevin Wolf for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) { 3075b1b1d783SJeff Cody 3076b1b1d783SJeff Cody /* If either of the filename paths is actually a protocol, then 3077b1b1d783SJeff Cody * compare unmodified paths; otherwise make paths relative */ 3078b1b1d783SJeff Cody if (is_protocol || path_has_protocol(curr_bs->backing_file)) { 3079b1b1d783SJeff Cody if (strcmp(backing_file, curr_bs->backing_file) == 0) { 3080760e0063SKevin Wolf retval = curr_bs->backing->bs; 3081b1b1d783SJeff Cody break; 3082b1b1d783SJeff Cody } 3083e8a6bb9cSMarcelo Tosatti } else { 3084b1b1d783SJeff Cody /* If not an absolute filename path, make it relative to the current 3085b1b1d783SJeff Cody * image's filename path */ 3086b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 3087b1b1d783SJeff Cody backing_file); 3088b1b1d783SJeff Cody 3089b1b1d783SJeff Cody /* We are going to compare absolute pathnames */ 3090b1b1d783SJeff Cody if (!realpath(filename_tmp, filename_full)) { 3091b1b1d783SJeff Cody continue; 3092b1b1d783SJeff Cody } 3093b1b1d783SJeff Cody 3094b1b1d783SJeff Cody /* We need to make sure the backing filename we are comparing against 3095b1b1d783SJeff Cody * is relative to the current image filename (or absolute) */ 3096b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 3097b1b1d783SJeff Cody curr_bs->backing_file); 3098b1b1d783SJeff Cody 3099b1b1d783SJeff Cody if (!realpath(filename_tmp, backing_file_full)) { 3100b1b1d783SJeff Cody continue; 3101b1b1d783SJeff Cody } 3102b1b1d783SJeff Cody 3103b1b1d783SJeff Cody if (strcmp(backing_file_full, filename_full) == 0) { 3104760e0063SKevin Wolf retval = curr_bs->backing->bs; 3105b1b1d783SJeff Cody break; 3106b1b1d783SJeff Cody } 3107e8a6bb9cSMarcelo Tosatti } 3108e8a6bb9cSMarcelo Tosatti } 3109e8a6bb9cSMarcelo Tosatti 3110b1b1d783SJeff Cody g_free(filename_full); 3111b1b1d783SJeff Cody g_free(backing_file_full); 3112b1b1d783SJeff Cody g_free(filename_tmp); 3113b1b1d783SJeff Cody return retval; 3114e8a6bb9cSMarcelo Tosatti } 3115e8a6bb9cSMarcelo Tosatti 3116f198fd1cSBenoît Canet int bdrv_get_backing_file_depth(BlockDriverState *bs) 3117f198fd1cSBenoît Canet { 3118f198fd1cSBenoît Canet if (!bs->drv) { 3119f198fd1cSBenoît Canet return 0; 3120f198fd1cSBenoît Canet } 3121f198fd1cSBenoît Canet 3122760e0063SKevin Wolf if (!bs->backing) { 3123f198fd1cSBenoît Canet return 0; 3124f198fd1cSBenoît Canet } 3125f198fd1cSBenoît Canet 3126760e0063SKevin Wolf return 1 + bdrv_get_backing_file_depth(bs->backing->bs); 3127f198fd1cSBenoît Canet } 3128f198fd1cSBenoît Canet 3129ea2384d3Sbellard void bdrv_init(void) 3130ea2384d3Sbellard { 31315efa9d5aSAnthony Liguori module_call_init(MODULE_INIT_BLOCK); 3132ea2384d3Sbellard } 3133ce1a14dcSpbrook 3134eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void) 3135eb852011SMarkus Armbruster { 3136eb852011SMarkus Armbruster use_bdrv_whitelist = 1; 3137eb852011SMarkus Armbruster bdrv_init(); 3138eb852011SMarkus Armbruster } 3139eb852011SMarkus Armbruster 31405a8a30dbSKevin Wolf void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp) 31410f15423cSAnthony Liguori { 31425a8a30dbSKevin Wolf Error *local_err = NULL; 31435a8a30dbSKevin Wolf int ret; 31445a8a30dbSKevin Wolf 31453456a8d1SKevin Wolf if (!bs->drv) { 31463456a8d1SKevin Wolf return; 31470f15423cSAnthony Liguori } 31483456a8d1SKevin Wolf 31497ea2d269SAlexey Kardashevskiy if (!(bs->open_flags & BDRV_O_INCOMING)) { 31507ea2d269SAlexey Kardashevskiy return; 31517ea2d269SAlexey Kardashevskiy } 31527ea2d269SAlexey Kardashevskiy bs->open_flags &= ~BDRV_O_INCOMING; 31537ea2d269SAlexey Kardashevskiy 31543456a8d1SKevin Wolf if (bs->drv->bdrv_invalidate_cache) { 31555a8a30dbSKevin Wolf bs->drv->bdrv_invalidate_cache(bs, &local_err); 31563456a8d1SKevin Wolf } else if (bs->file) { 31579a4f4c31SKevin Wolf bdrv_invalidate_cache(bs->file->bs, &local_err); 31585a8a30dbSKevin Wolf } 31595a8a30dbSKevin Wolf if (local_err) { 31605a8a30dbSKevin Wolf error_propagate(errp, local_err); 31615a8a30dbSKevin Wolf return; 31623456a8d1SKevin Wolf } 31633456a8d1SKevin Wolf 31645a8a30dbSKevin Wolf ret = refresh_total_sectors(bs, bs->total_sectors); 31655a8a30dbSKevin Wolf if (ret < 0) { 31665a8a30dbSKevin Wolf error_setg_errno(errp, -ret, "Could not refresh total sector count"); 31675a8a30dbSKevin Wolf return; 31685a8a30dbSKevin Wolf } 31690f15423cSAnthony Liguori } 31700f15423cSAnthony Liguori 31715a8a30dbSKevin Wolf void bdrv_invalidate_cache_all(Error **errp) 31720f15423cSAnthony Liguori { 31730f15423cSAnthony Liguori BlockDriverState *bs; 31745a8a30dbSKevin Wolf Error *local_err = NULL; 31750f15423cSAnthony Liguori 3176dc364f4cSBenoît Canet QTAILQ_FOREACH(bs, &bdrv_states, device_list) { 3177ed78cda3SStefan Hajnoczi AioContext *aio_context = bdrv_get_aio_context(bs); 3178ed78cda3SStefan Hajnoczi 3179ed78cda3SStefan Hajnoczi aio_context_acquire(aio_context); 31805a8a30dbSKevin Wolf bdrv_invalidate_cache(bs, &local_err); 3181ed78cda3SStefan Hajnoczi aio_context_release(aio_context); 31825a8a30dbSKevin Wolf if (local_err) { 31835a8a30dbSKevin Wolf error_propagate(errp, local_err); 31845a8a30dbSKevin Wolf return; 31855a8a30dbSKevin Wolf } 31860f15423cSAnthony Liguori } 31870f15423cSAnthony Liguori } 31880f15423cSAnthony Liguori 3189f9f05dc5SKevin Wolf /**************************************************************/ 319019cb3738Sbellard /* removable device support */ 319119cb3738Sbellard 319219cb3738Sbellard /** 319319cb3738Sbellard * Return TRUE if the media is present 319419cb3738Sbellard */ 3195e031f750SMax Reitz bool bdrv_is_inserted(BlockDriverState *bs) 319619cb3738Sbellard { 319719cb3738Sbellard BlockDriver *drv = bs->drv; 319828d7a789SMax Reitz BdrvChild *child; 3199a1aff5bfSMarkus Armbruster 3200e031f750SMax Reitz if (!drv) { 3201e031f750SMax Reitz return false; 3202e031f750SMax Reitz } 320328d7a789SMax Reitz if (drv->bdrv_is_inserted) { 3204a1aff5bfSMarkus Armbruster return drv->bdrv_is_inserted(bs); 320519cb3738Sbellard } 320628d7a789SMax Reitz QLIST_FOREACH(child, &bs->children, next) { 320728d7a789SMax Reitz if (!bdrv_is_inserted(child->bs)) { 320828d7a789SMax Reitz return false; 320928d7a789SMax Reitz } 321028d7a789SMax Reitz } 321128d7a789SMax Reitz return true; 321228d7a789SMax Reitz } 321319cb3738Sbellard 321419cb3738Sbellard /** 32158e49ca46SMarkus Armbruster * Return whether the media changed since the last call to this 32168e49ca46SMarkus Armbruster * function, or -ENOTSUP if we don't know. Most drivers don't know. 321719cb3738Sbellard */ 321819cb3738Sbellard int bdrv_media_changed(BlockDriverState *bs) 321919cb3738Sbellard { 322019cb3738Sbellard BlockDriver *drv = bs->drv; 322119cb3738Sbellard 32228e49ca46SMarkus Armbruster if (drv && drv->bdrv_media_changed) { 32238e49ca46SMarkus Armbruster return drv->bdrv_media_changed(bs); 32248e49ca46SMarkus Armbruster } 32258e49ca46SMarkus Armbruster return -ENOTSUP; 322619cb3738Sbellard } 322719cb3738Sbellard 322819cb3738Sbellard /** 322919cb3738Sbellard * If eject_flag is TRUE, eject the media. Otherwise, close the tray 323019cb3738Sbellard */ 3231f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag) 323219cb3738Sbellard { 323319cb3738Sbellard BlockDriver *drv = bs->drv; 3234bfb197e0SMarkus Armbruster const char *device_name; 323519cb3738Sbellard 3236822e1cd1SMarkus Armbruster if (drv && drv->bdrv_eject) { 3237822e1cd1SMarkus Armbruster drv->bdrv_eject(bs, eject_flag); 323819cb3738Sbellard } 32396f382ed2SLuiz Capitulino 3240bfb197e0SMarkus Armbruster device_name = bdrv_get_device_name(bs); 3241bfb197e0SMarkus Armbruster if (device_name[0] != '\0') { 3242bfb197e0SMarkus Armbruster qapi_event_send_device_tray_moved(device_name, 3243a5ee7bd4SWenchao Xia eject_flag, &error_abort); 32446f382ed2SLuiz Capitulino } 324519cb3738Sbellard } 324619cb3738Sbellard 324719cb3738Sbellard /** 324819cb3738Sbellard * Lock or unlock the media (if it is locked, the user won't be able 324919cb3738Sbellard * to eject it manually). 325019cb3738Sbellard */ 3251025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked) 325219cb3738Sbellard { 325319cb3738Sbellard BlockDriver *drv = bs->drv; 325419cb3738Sbellard 3255025e849aSMarkus Armbruster trace_bdrv_lock_medium(bs, locked); 3256b8c6d095SStefan Hajnoczi 3257025e849aSMarkus Armbruster if (drv && drv->bdrv_lock_medium) { 3258025e849aSMarkus Armbruster drv->bdrv_lock_medium(bs, locked); 325919cb3738Sbellard } 326019cb3738Sbellard } 3261985a03b0Sths 32620db6e54aSFam Zheng BdrvDirtyBitmap *bdrv_find_dirty_bitmap(BlockDriverState *bs, const char *name) 32630db6e54aSFam Zheng { 32640db6e54aSFam Zheng BdrvDirtyBitmap *bm; 32650db6e54aSFam Zheng 32660db6e54aSFam Zheng assert(name); 32670db6e54aSFam Zheng QLIST_FOREACH(bm, &bs->dirty_bitmaps, list) { 32680db6e54aSFam Zheng if (bm->name && !strcmp(name, bm->name)) { 32690db6e54aSFam Zheng return bm; 32700db6e54aSFam Zheng } 32710db6e54aSFam Zheng } 32720db6e54aSFam Zheng return NULL; 32730db6e54aSFam Zheng } 32740db6e54aSFam Zheng 327520dca810SJohn Snow void bdrv_dirty_bitmap_make_anon(BdrvDirtyBitmap *bitmap) 32760db6e54aSFam Zheng { 32779bd2b08fSJohn Snow assert(!bdrv_dirty_bitmap_frozen(bitmap)); 32780db6e54aSFam Zheng g_free(bitmap->name); 32790db6e54aSFam Zheng bitmap->name = NULL; 32800db6e54aSFam Zheng } 32810db6e54aSFam Zheng 32820db6e54aSFam Zheng BdrvDirtyBitmap *bdrv_create_dirty_bitmap(BlockDriverState *bs, 32835fba6c0eSJohn Snow uint32_t granularity, 32840db6e54aSFam Zheng const char *name, 3285b8afb520SFam Zheng Error **errp) 32867cd1e32aSlirans@il.ibm.com { 32877cd1e32aSlirans@il.ibm.com int64_t bitmap_size; 3288e4654d2dSFam Zheng BdrvDirtyBitmap *bitmap; 32895fba6c0eSJohn Snow uint32_t sector_granularity; 3290a55eb92cSJan Kiszka 329150717e94SPaolo Bonzini assert((granularity & (granularity - 1)) == 0); 329250717e94SPaolo Bonzini 32930db6e54aSFam Zheng if (name && bdrv_find_dirty_bitmap(bs, name)) { 32940db6e54aSFam Zheng error_setg(errp, "Bitmap already exists: %s", name); 32950db6e54aSFam Zheng return NULL; 32960db6e54aSFam Zheng } 32975fba6c0eSJohn Snow sector_granularity = granularity >> BDRV_SECTOR_BITS; 32985fba6c0eSJohn Snow assert(sector_granularity); 329957322b78SMarkus Armbruster bitmap_size = bdrv_nb_sectors(bs); 3300b8afb520SFam Zheng if (bitmap_size < 0) { 3301b8afb520SFam Zheng error_setg_errno(errp, -bitmap_size, "could not get length of device"); 3302b8afb520SFam Zheng errno = -bitmap_size; 3303b8afb520SFam Zheng return NULL; 3304b8afb520SFam Zheng } 33055839e53bSMarkus Armbruster bitmap = g_new0(BdrvDirtyBitmap, 1); 33065fba6c0eSJohn Snow bitmap->bitmap = hbitmap_alloc(bitmap_size, ctz32(sector_granularity)); 3307e74e6b78SJohn Snow bitmap->size = bitmap_size; 33080db6e54aSFam Zheng bitmap->name = g_strdup(name); 3309b8e6fb75SJohn Snow bitmap->disabled = false; 3310e4654d2dSFam Zheng QLIST_INSERT_HEAD(&bs->dirty_bitmaps, bitmap, list); 3311e4654d2dSFam Zheng return bitmap; 3312e4654d2dSFam Zheng } 3313e4654d2dSFam Zheng 33149bd2b08fSJohn Snow bool bdrv_dirty_bitmap_frozen(BdrvDirtyBitmap *bitmap) 33159bd2b08fSJohn Snow { 33169bd2b08fSJohn Snow return bitmap->successor; 33179bd2b08fSJohn Snow } 33189bd2b08fSJohn Snow 3319b8e6fb75SJohn Snow bool bdrv_dirty_bitmap_enabled(BdrvDirtyBitmap *bitmap) 3320b8e6fb75SJohn Snow { 33219bd2b08fSJohn Snow return !(bitmap->disabled || bitmap->successor); 33229bd2b08fSJohn Snow } 33239bd2b08fSJohn Snow 33249abe3bdcSJohn Snow DirtyBitmapStatus bdrv_dirty_bitmap_status(BdrvDirtyBitmap *bitmap) 33259abe3bdcSJohn Snow { 33269abe3bdcSJohn Snow if (bdrv_dirty_bitmap_frozen(bitmap)) { 33279abe3bdcSJohn Snow return DIRTY_BITMAP_STATUS_FROZEN; 33289abe3bdcSJohn Snow } else if (!bdrv_dirty_bitmap_enabled(bitmap)) { 33299abe3bdcSJohn Snow return DIRTY_BITMAP_STATUS_DISABLED; 33309abe3bdcSJohn Snow } else { 33319abe3bdcSJohn Snow return DIRTY_BITMAP_STATUS_ACTIVE; 33329abe3bdcSJohn Snow } 33339abe3bdcSJohn Snow } 33349abe3bdcSJohn Snow 33359bd2b08fSJohn Snow /** 33369bd2b08fSJohn Snow * Create a successor bitmap destined to replace this bitmap after an operation. 33379bd2b08fSJohn Snow * Requires that the bitmap is not frozen and has no successor. 33389bd2b08fSJohn Snow */ 33399bd2b08fSJohn Snow int bdrv_dirty_bitmap_create_successor(BlockDriverState *bs, 33409bd2b08fSJohn Snow BdrvDirtyBitmap *bitmap, Error **errp) 33419bd2b08fSJohn Snow { 33429bd2b08fSJohn Snow uint64_t granularity; 33439bd2b08fSJohn Snow BdrvDirtyBitmap *child; 33449bd2b08fSJohn Snow 33459bd2b08fSJohn Snow if (bdrv_dirty_bitmap_frozen(bitmap)) { 33469bd2b08fSJohn Snow error_setg(errp, "Cannot create a successor for a bitmap that is " 33479bd2b08fSJohn Snow "currently frozen"); 33489bd2b08fSJohn Snow return -1; 33499bd2b08fSJohn Snow } 33509bd2b08fSJohn Snow assert(!bitmap->successor); 33519bd2b08fSJohn Snow 33529bd2b08fSJohn Snow /* Create an anonymous successor */ 33539bd2b08fSJohn Snow granularity = bdrv_dirty_bitmap_granularity(bitmap); 33549bd2b08fSJohn Snow child = bdrv_create_dirty_bitmap(bs, granularity, NULL, errp); 33559bd2b08fSJohn Snow if (!child) { 33569bd2b08fSJohn Snow return -1; 33579bd2b08fSJohn Snow } 33589bd2b08fSJohn Snow 33599bd2b08fSJohn Snow /* Successor will be on or off based on our current state. */ 33609bd2b08fSJohn Snow child->disabled = bitmap->disabled; 33619bd2b08fSJohn Snow 33629bd2b08fSJohn Snow /* Install the successor and freeze the parent */ 33639bd2b08fSJohn Snow bitmap->successor = child; 33649bd2b08fSJohn Snow return 0; 33659bd2b08fSJohn Snow } 33669bd2b08fSJohn Snow 33679bd2b08fSJohn Snow /** 33689bd2b08fSJohn Snow * For a bitmap with a successor, yield our name to the successor, 33699bd2b08fSJohn Snow * delete the old bitmap, and return a handle to the new bitmap. 33709bd2b08fSJohn Snow */ 33719bd2b08fSJohn Snow BdrvDirtyBitmap *bdrv_dirty_bitmap_abdicate(BlockDriverState *bs, 33729bd2b08fSJohn Snow BdrvDirtyBitmap *bitmap, 33739bd2b08fSJohn Snow Error **errp) 33749bd2b08fSJohn Snow { 33759bd2b08fSJohn Snow char *name; 33769bd2b08fSJohn Snow BdrvDirtyBitmap *successor = bitmap->successor; 33779bd2b08fSJohn Snow 33789bd2b08fSJohn Snow if (successor == NULL) { 33799bd2b08fSJohn Snow error_setg(errp, "Cannot relinquish control if " 33809bd2b08fSJohn Snow "there's no successor present"); 33819bd2b08fSJohn Snow return NULL; 33829bd2b08fSJohn Snow } 33839bd2b08fSJohn Snow 33849bd2b08fSJohn Snow name = bitmap->name; 33859bd2b08fSJohn Snow bitmap->name = NULL; 33869bd2b08fSJohn Snow successor->name = name; 33879bd2b08fSJohn Snow bitmap->successor = NULL; 33889bd2b08fSJohn Snow bdrv_release_dirty_bitmap(bs, bitmap); 33899bd2b08fSJohn Snow 33909bd2b08fSJohn Snow return successor; 33919bd2b08fSJohn Snow } 33929bd2b08fSJohn Snow 33939bd2b08fSJohn Snow /** 33949bd2b08fSJohn Snow * In cases of failure where we can no longer safely delete the parent, 33959bd2b08fSJohn Snow * we may wish to re-join the parent and child/successor. 33969bd2b08fSJohn Snow * The merged parent will be un-frozen, but not explicitly re-enabled. 33979bd2b08fSJohn Snow */ 33989bd2b08fSJohn Snow BdrvDirtyBitmap *bdrv_reclaim_dirty_bitmap(BlockDriverState *bs, 33999bd2b08fSJohn Snow BdrvDirtyBitmap *parent, 34009bd2b08fSJohn Snow Error **errp) 34019bd2b08fSJohn Snow { 34029bd2b08fSJohn Snow BdrvDirtyBitmap *successor = parent->successor; 34039bd2b08fSJohn Snow 34049bd2b08fSJohn Snow if (!successor) { 34059bd2b08fSJohn Snow error_setg(errp, "Cannot reclaim a successor when none is present"); 34069bd2b08fSJohn Snow return NULL; 34079bd2b08fSJohn Snow } 34089bd2b08fSJohn Snow 34099bd2b08fSJohn Snow if (!hbitmap_merge(parent->bitmap, successor->bitmap)) { 34109bd2b08fSJohn Snow error_setg(errp, "Merging of parent and successor bitmap failed"); 34119bd2b08fSJohn Snow return NULL; 34129bd2b08fSJohn Snow } 34139bd2b08fSJohn Snow bdrv_release_dirty_bitmap(bs, successor); 34149bd2b08fSJohn Snow parent->successor = NULL; 34159bd2b08fSJohn Snow 34169bd2b08fSJohn Snow return parent; 3417b8e6fb75SJohn Snow } 3418b8e6fb75SJohn Snow 3419ce1ffea8SJohn Snow /** 3420ce1ffea8SJohn Snow * Truncates _all_ bitmaps attached to a BDS. 3421ce1ffea8SJohn Snow */ 3422ce1ffea8SJohn Snow static void bdrv_dirty_bitmap_truncate(BlockDriverState *bs) 3423ce1ffea8SJohn Snow { 3424ce1ffea8SJohn Snow BdrvDirtyBitmap *bitmap; 3425ce1ffea8SJohn Snow uint64_t size = bdrv_nb_sectors(bs); 3426ce1ffea8SJohn Snow 3427ce1ffea8SJohn Snow QLIST_FOREACH(bitmap, &bs->dirty_bitmaps, list) { 342806207b0fSJohn Snow assert(!bdrv_dirty_bitmap_frozen(bitmap)); 3429ce1ffea8SJohn Snow hbitmap_truncate(bitmap->bitmap, size); 34305270b6a0SJohn Snow bitmap->size = size; 3431ce1ffea8SJohn Snow } 3432ce1ffea8SJohn Snow } 3433ce1ffea8SJohn Snow 3434e4654d2dSFam Zheng void bdrv_release_dirty_bitmap(BlockDriverState *bs, BdrvDirtyBitmap *bitmap) 3435e4654d2dSFam Zheng { 3436e4654d2dSFam Zheng BdrvDirtyBitmap *bm, *next; 3437e4654d2dSFam Zheng QLIST_FOREACH_SAFE(bm, &bs->dirty_bitmaps, list, next) { 3438e4654d2dSFam Zheng if (bm == bitmap) { 34399bd2b08fSJohn Snow assert(!bdrv_dirty_bitmap_frozen(bm)); 3440e4654d2dSFam Zheng QLIST_REMOVE(bitmap, list); 3441e4654d2dSFam Zheng hbitmap_free(bitmap->bitmap); 34420db6e54aSFam Zheng g_free(bitmap->name); 3443e4654d2dSFam Zheng g_free(bitmap); 3444e4654d2dSFam Zheng return; 34457cd1e32aSlirans@il.ibm.com } 34467cd1e32aSlirans@il.ibm.com } 34477cd1e32aSlirans@il.ibm.com } 34487cd1e32aSlirans@il.ibm.com 3449b8e6fb75SJohn Snow void bdrv_disable_dirty_bitmap(BdrvDirtyBitmap *bitmap) 3450b8e6fb75SJohn Snow { 34519bd2b08fSJohn Snow assert(!bdrv_dirty_bitmap_frozen(bitmap)); 3452b8e6fb75SJohn Snow bitmap->disabled = true; 3453b8e6fb75SJohn Snow } 3454b8e6fb75SJohn Snow 3455b8e6fb75SJohn Snow void bdrv_enable_dirty_bitmap(BdrvDirtyBitmap *bitmap) 3456b8e6fb75SJohn Snow { 34579bd2b08fSJohn Snow assert(!bdrv_dirty_bitmap_frozen(bitmap)); 3458b8e6fb75SJohn Snow bitmap->disabled = false; 3459b8e6fb75SJohn Snow } 3460b8e6fb75SJohn Snow 346121b56835SFam Zheng BlockDirtyInfoList *bdrv_query_dirty_bitmaps(BlockDriverState *bs) 346221b56835SFam Zheng { 346321b56835SFam Zheng BdrvDirtyBitmap *bm; 346421b56835SFam Zheng BlockDirtyInfoList *list = NULL; 346521b56835SFam Zheng BlockDirtyInfoList **plist = &list; 346621b56835SFam Zheng 346721b56835SFam Zheng QLIST_FOREACH(bm, &bs->dirty_bitmaps, list) { 34685839e53bSMarkus Armbruster BlockDirtyInfo *info = g_new0(BlockDirtyInfo, 1); 34695839e53bSMarkus Armbruster BlockDirtyInfoList *entry = g_new0(BlockDirtyInfoList, 1); 347020dca810SJohn Snow info->count = bdrv_get_dirty_count(bm); 3471592fdd02SJohn Snow info->granularity = bdrv_dirty_bitmap_granularity(bm); 34720db6e54aSFam Zheng info->has_name = !!bm->name; 34730db6e54aSFam Zheng info->name = g_strdup(bm->name); 34749abe3bdcSJohn Snow info->status = bdrv_dirty_bitmap_status(bm); 347521b56835SFam Zheng entry->value = info; 347621b56835SFam Zheng *plist = entry; 347721b56835SFam Zheng plist = &entry->next; 347821b56835SFam Zheng } 347921b56835SFam Zheng 348021b56835SFam Zheng return list; 348121b56835SFam Zheng } 348221b56835SFam Zheng 3483e4654d2dSFam Zheng int bdrv_get_dirty(BlockDriverState *bs, BdrvDirtyBitmap *bitmap, int64_t sector) 34847cd1e32aSlirans@il.ibm.com { 3485e4654d2dSFam Zheng if (bitmap) { 3486e4654d2dSFam Zheng return hbitmap_get(bitmap->bitmap, sector); 34877cd1e32aSlirans@il.ibm.com } else { 34887cd1e32aSlirans@il.ibm.com return 0; 34897cd1e32aSlirans@il.ibm.com } 34907cd1e32aSlirans@il.ibm.com } 34917cd1e32aSlirans@il.ibm.com 3492341ebc2fSJohn Snow /** 3493341ebc2fSJohn Snow * Chooses a default granularity based on the existing cluster size, 3494341ebc2fSJohn Snow * but clamped between [4K, 64K]. Defaults to 64K in the case that there 3495341ebc2fSJohn Snow * is no cluster size information available. 3496341ebc2fSJohn Snow */ 3497341ebc2fSJohn Snow uint32_t bdrv_get_default_bitmap_granularity(BlockDriverState *bs) 3498341ebc2fSJohn Snow { 3499341ebc2fSJohn Snow BlockDriverInfo bdi; 3500341ebc2fSJohn Snow uint32_t granularity; 3501341ebc2fSJohn Snow 3502341ebc2fSJohn Snow if (bdrv_get_info(bs, &bdi) >= 0 && bdi.cluster_size > 0) { 3503341ebc2fSJohn Snow granularity = MAX(4096, bdi.cluster_size); 3504341ebc2fSJohn Snow granularity = MIN(65536, granularity); 3505341ebc2fSJohn Snow } else { 3506341ebc2fSJohn Snow granularity = 65536; 3507341ebc2fSJohn Snow } 3508341ebc2fSJohn Snow 3509341ebc2fSJohn Snow return granularity; 3510341ebc2fSJohn Snow } 3511341ebc2fSJohn Snow 3512592fdd02SJohn Snow uint32_t bdrv_dirty_bitmap_granularity(BdrvDirtyBitmap *bitmap) 3513592fdd02SJohn Snow { 3514592fdd02SJohn Snow return BDRV_SECTOR_SIZE << hbitmap_granularity(bitmap->bitmap); 3515592fdd02SJohn Snow } 3516592fdd02SJohn Snow 351720dca810SJohn Snow void bdrv_dirty_iter_init(BdrvDirtyBitmap *bitmap, HBitmapIter *hbi) 35181755da16SPaolo Bonzini { 3519e4654d2dSFam Zheng hbitmap_iter_init(hbi, bitmap->bitmap, 0); 35201755da16SPaolo Bonzini } 35211755da16SPaolo Bonzini 352220dca810SJohn Snow void bdrv_set_dirty_bitmap(BdrvDirtyBitmap *bitmap, 3523c4237dfaSVladimir Sementsov-Ogievskiy int64_t cur_sector, int nr_sectors) 3524c4237dfaSVladimir Sementsov-Ogievskiy { 3525b8e6fb75SJohn Snow assert(bdrv_dirty_bitmap_enabled(bitmap)); 3526c4237dfaSVladimir Sementsov-Ogievskiy hbitmap_set(bitmap->bitmap, cur_sector, nr_sectors); 3527c4237dfaSVladimir Sementsov-Ogievskiy } 3528c4237dfaSVladimir Sementsov-Ogievskiy 352920dca810SJohn Snow void bdrv_reset_dirty_bitmap(BdrvDirtyBitmap *bitmap, 3530c4237dfaSVladimir Sementsov-Ogievskiy int64_t cur_sector, int nr_sectors) 3531c4237dfaSVladimir Sementsov-Ogievskiy { 3532b8e6fb75SJohn Snow assert(bdrv_dirty_bitmap_enabled(bitmap)); 3533c4237dfaSVladimir Sementsov-Ogievskiy hbitmap_reset(bitmap->bitmap, cur_sector, nr_sectors); 3534c4237dfaSVladimir Sementsov-Ogievskiy } 3535c4237dfaSVladimir Sementsov-Ogievskiy 3536df9a681dSFam Zheng void bdrv_clear_dirty_bitmap(BdrvDirtyBitmap *bitmap, HBitmap **out) 3537e74e6b78SJohn Snow { 3538e74e6b78SJohn Snow assert(bdrv_dirty_bitmap_enabled(bitmap)); 3539df9a681dSFam Zheng if (!out) { 3540c6a8c328SWen Congyang hbitmap_reset_all(bitmap->bitmap); 3541df9a681dSFam Zheng } else { 3542df9a681dSFam Zheng HBitmap *backup = bitmap->bitmap; 3543df9a681dSFam Zheng bitmap->bitmap = hbitmap_alloc(bitmap->size, 3544df9a681dSFam Zheng hbitmap_granularity(backup)); 3545df9a681dSFam Zheng *out = backup; 3546df9a681dSFam Zheng } 3547df9a681dSFam Zheng } 3548df9a681dSFam Zheng 3549df9a681dSFam Zheng void bdrv_undo_clear_dirty_bitmap(BdrvDirtyBitmap *bitmap, HBitmap *in) 3550df9a681dSFam Zheng { 3551df9a681dSFam Zheng HBitmap *tmp = bitmap->bitmap; 3552df9a681dSFam Zheng assert(bdrv_dirty_bitmap_enabled(bitmap)); 3553df9a681dSFam Zheng bitmap->bitmap = in; 3554df9a681dSFam Zheng hbitmap_free(tmp); 3555e74e6b78SJohn Snow } 3556e74e6b78SJohn Snow 3557e0c47b6cSStefan Hajnoczi void bdrv_set_dirty(BlockDriverState *bs, int64_t cur_sector, 35581755da16SPaolo Bonzini int nr_sectors) 35591755da16SPaolo Bonzini { 3560e4654d2dSFam Zheng BdrvDirtyBitmap *bitmap; 3561e4654d2dSFam Zheng QLIST_FOREACH(bitmap, &bs->dirty_bitmaps, list) { 3562b8e6fb75SJohn Snow if (!bdrv_dirty_bitmap_enabled(bitmap)) { 3563b8e6fb75SJohn Snow continue; 3564b8e6fb75SJohn Snow } 3565e4654d2dSFam Zheng hbitmap_set(bitmap->bitmap, cur_sector, nr_sectors); 3566e4654d2dSFam Zheng } 35671755da16SPaolo Bonzini } 35681755da16SPaolo Bonzini 3569d58d8453SJohn Snow /** 3570d58d8453SJohn Snow * Advance an HBitmapIter to an arbitrary offset. 3571d58d8453SJohn Snow */ 3572d58d8453SJohn Snow void bdrv_set_dirty_iter(HBitmapIter *hbi, int64_t offset) 3573d58d8453SJohn Snow { 3574d58d8453SJohn Snow assert(hbi->hb); 3575d58d8453SJohn Snow hbitmap_iter_init(hbi, hbi->hb, offset); 3576d58d8453SJohn Snow } 3577d58d8453SJohn Snow 357820dca810SJohn Snow int64_t bdrv_get_dirty_count(BdrvDirtyBitmap *bitmap) 3579aaa0eb75SLiran Schour { 3580e4654d2dSFam Zheng return hbitmap_count(bitmap->bitmap); 3581aaa0eb75SLiran Schour } 3582f88e1a42SJes Sorensen 35839fcb0251SFam Zheng /* Get a reference to bs */ 35849fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs) 35859fcb0251SFam Zheng { 35869fcb0251SFam Zheng bs->refcnt++; 35879fcb0251SFam Zheng } 35889fcb0251SFam Zheng 35899fcb0251SFam Zheng /* Release a previously grabbed reference to bs. 35909fcb0251SFam Zheng * If after releasing, reference count is zero, the BlockDriverState is 35919fcb0251SFam Zheng * deleted. */ 35929fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs) 35939fcb0251SFam Zheng { 35949a4d5ca6SJeff Cody if (!bs) { 35959a4d5ca6SJeff Cody return; 35969a4d5ca6SJeff Cody } 35979fcb0251SFam Zheng assert(bs->refcnt > 0); 35989fcb0251SFam Zheng if (--bs->refcnt == 0) { 35999fcb0251SFam Zheng bdrv_delete(bs); 36009fcb0251SFam Zheng } 36019fcb0251SFam Zheng } 36029fcb0251SFam Zheng 3603fbe40ff7SFam Zheng struct BdrvOpBlocker { 3604fbe40ff7SFam Zheng Error *reason; 3605fbe40ff7SFam Zheng QLIST_ENTRY(BdrvOpBlocker) list; 3606fbe40ff7SFam Zheng }; 3607fbe40ff7SFam Zheng 3608fbe40ff7SFam Zheng bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp) 3609fbe40ff7SFam Zheng { 3610fbe40ff7SFam Zheng BdrvOpBlocker *blocker; 3611fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 3612fbe40ff7SFam Zheng if (!QLIST_EMPTY(&bs->op_blockers[op])) { 3613fbe40ff7SFam Zheng blocker = QLIST_FIRST(&bs->op_blockers[op]); 3614fbe40ff7SFam Zheng if (errp) { 361581e5f78aSAlberto Garcia error_setg(errp, "Node '%s' is busy: %s", 361681e5f78aSAlberto Garcia bdrv_get_device_or_node_name(bs), 3617bfb197e0SMarkus Armbruster error_get_pretty(blocker->reason)); 3618fbe40ff7SFam Zheng } 3619fbe40ff7SFam Zheng return true; 3620fbe40ff7SFam Zheng } 3621fbe40ff7SFam Zheng return false; 3622fbe40ff7SFam Zheng } 3623fbe40ff7SFam Zheng 3624fbe40ff7SFam Zheng void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason) 3625fbe40ff7SFam Zheng { 3626fbe40ff7SFam Zheng BdrvOpBlocker *blocker; 3627fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 3628fbe40ff7SFam Zheng 36295839e53bSMarkus Armbruster blocker = g_new0(BdrvOpBlocker, 1); 3630fbe40ff7SFam Zheng blocker->reason = reason; 3631fbe40ff7SFam Zheng QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list); 3632fbe40ff7SFam Zheng } 3633fbe40ff7SFam Zheng 3634fbe40ff7SFam Zheng void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason) 3635fbe40ff7SFam Zheng { 3636fbe40ff7SFam Zheng BdrvOpBlocker *blocker, *next; 3637fbe40ff7SFam Zheng assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX); 3638fbe40ff7SFam Zheng QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) { 3639fbe40ff7SFam Zheng if (blocker->reason == reason) { 3640fbe40ff7SFam Zheng QLIST_REMOVE(blocker, list); 3641fbe40ff7SFam Zheng g_free(blocker); 3642fbe40ff7SFam Zheng } 3643fbe40ff7SFam Zheng } 3644fbe40ff7SFam Zheng } 3645fbe40ff7SFam Zheng 3646fbe40ff7SFam Zheng void bdrv_op_block_all(BlockDriverState *bs, Error *reason) 3647fbe40ff7SFam Zheng { 3648fbe40ff7SFam Zheng int i; 3649fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 3650fbe40ff7SFam Zheng bdrv_op_block(bs, i, reason); 3651fbe40ff7SFam Zheng } 3652fbe40ff7SFam Zheng } 3653fbe40ff7SFam Zheng 3654fbe40ff7SFam Zheng void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason) 3655fbe40ff7SFam Zheng { 3656fbe40ff7SFam Zheng int i; 3657fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 3658fbe40ff7SFam Zheng bdrv_op_unblock(bs, i, reason); 3659fbe40ff7SFam Zheng } 3660fbe40ff7SFam Zheng } 3661fbe40ff7SFam Zheng 3662fbe40ff7SFam Zheng bool bdrv_op_blocker_is_empty(BlockDriverState *bs) 3663fbe40ff7SFam Zheng { 3664fbe40ff7SFam Zheng int i; 3665fbe40ff7SFam Zheng 3666fbe40ff7SFam Zheng for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) { 3667fbe40ff7SFam Zheng if (!QLIST_EMPTY(&bs->op_blockers[i])) { 3668fbe40ff7SFam Zheng return false; 3669fbe40ff7SFam Zheng } 3670fbe40ff7SFam Zheng } 3671fbe40ff7SFam Zheng return true; 3672fbe40ff7SFam Zheng } 3673fbe40ff7SFam Zheng 3674d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt, 3675f88e1a42SJes Sorensen const char *base_filename, const char *base_fmt, 3676f382d43aSMiroslav Rezanina char *options, uint64_t img_size, int flags, 3677f382d43aSMiroslav Rezanina Error **errp, bool quiet) 3678f88e1a42SJes Sorensen { 367983d0521aSChunyan Liu QemuOptsList *create_opts = NULL; 368083d0521aSChunyan Liu QemuOpts *opts = NULL; 368183d0521aSChunyan Liu const char *backing_fmt, *backing_file; 368283d0521aSChunyan Liu int64_t size; 3683f88e1a42SJes Sorensen BlockDriver *drv, *proto_drv; 3684cc84d90fSMax Reitz Error *local_err = NULL; 3685f88e1a42SJes Sorensen int ret = 0; 3686f88e1a42SJes Sorensen 3687f88e1a42SJes Sorensen /* Find driver and parse its options */ 3688f88e1a42SJes Sorensen drv = bdrv_find_format(fmt); 3689f88e1a42SJes Sorensen if (!drv) { 369071c79813SLuiz Capitulino error_setg(errp, "Unknown file format '%s'", fmt); 3691d92ada22SLuiz Capitulino return; 3692f88e1a42SJes Sorensen } 3693f88e1a42SJes Sorensen 3694b65a5e12SMax Reitz proto_drv = bdrv_find_protocol(filename, true, errp); 3695f88e1a42SJes Sorensen if (!proto_drv) { 3696d92ada22SLuiz Capitulino return; 3697f88e1a42SJes Sorensen } 3698f88e1a42SJes Sorensen 3699c6149724SMax Reitz if (!drv->create_opts) { 3700c6149724SMax Reitz error_setg(errp, "Format driver '%s' does not support image creation", 3701c6149724SMax Reitz drv->format_name); 3702c6149724SMax Reitz return; 3703c6149724SMax Reitz } 3704c6149724SMax Reitz 3705c6149724SMax Reitz if (!proto_drv->create_opts) { 3706c6149724SMax Reitz error_setg(errp, "Protocol driver '%s' does not support image creation", 3707c6149724SMax Reitz proto_drv->format_name); 3708c6149724SMax Reitz return; 3709c6149724SMax Reitz } 3710c6149724SMax Reitz 3711c282e1fdSChunyan Liu create_opts = qemu_opts_append(create_opts, drv->create_opts); 3712c282e1fdSChunyan Liu create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); 3713f88e1a42SJes Sorensen 3714f88e1a42SJes Sorensen /* Create parameter list with default values */ 371583d0521aSChunyan Liu opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); 371639101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort); 3717f88e1a42SJes Sorensen 3718f88e1a42SJes Sorensen /* Parse -o options */ 3719f88e1a42SJes Sorensen if (options) { 3720dc523cd3SMarkus Armbruster qemu_opts_do_parse(opts, options, NULL, &local_err); 3721dc523cd3SMarkus Armbruster if (local_err) { 3722dc523cd3SMarkus Armbruster error_report_err(local_err); 3723dc523cd3SMarkus Armbruster local_err = NULL; 372483d0521aSChunyan Liu error_setg(errp, "Invalid options for file format '%s'", fmt); 3725f88e1a42SJes Sorensen goto out; 3726f88e1a42SJes Sorensen } 3727f88e1a42SJes Sorensen } 3728f88e1a42SJes Sorensen 3729f88e1a42SJes Sorensen if (base_filename) { 3730f43e47dbSMarkus Armbruster qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err); 37316be4194bSMarkus Armbruster if (local_err) { 373271c79813SLuiz Capitulino error_setg(errp, "Backing file not supported for file format '%s'", 373371c79813SLuiz Capitulino fmt); 3734f88e1a42SJes Sorensen goto out; 3735f88e1a42SJes Sorensen } 3736f88e1a42SJes Sorensen } 3737f88e1a42SJes Sorensen 3738f88e1a42SJes Sorensen if (base_fmt) { 3739f43e47dbSMarkus Armbruster qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err); 37406be4194bSMarkus Armbruster if (local_err) { 374171c79813SLuiz Capitulino error_setg(errp, "Backing file format not supported for file " 374271c79813SLuiz Capitulino "format '%s'", fmt); 3743f88e1a42SJes Sorensen goto out; 3744f88e1a42SJes Sorensen } 3745f88e1a42SJes Sorensen } 3746f88e1a42SJes Sorensen 374783d0521aSChunyan Liu backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); 374883d0521aSChunyan Liu if (backing_file) { 374983d0521aSChunyan Liu if (!strcmp(filename, backing_file)) { 375071c79813SLuiz Capitulino error_setg(errp, "Error: Trying to create an image with the " 375171c79813SLuiz Capitulino "same filename as the backing file"); 3752792da93aSJes Sorensen goto out; 3753792da93aSJes Sorensen } 3754792da93aSJes Sorensen } 3755792da93aSJes Sorensen 375683d0521aSChunyan Liu backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT); 3757f88e1a42SJes Sorensen 3758f88e1a42SJes Sorensen // The size for the image must always be specified, with one exception: 3759f88e1a42SJes Sorensen // If we are using a backing file, we can obtain the size from there 376083d0521aSChunyan Liu size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0); 376183d0521aSChunyan Liu if (size == -1) { 376283d0521aSChunyan Liu if (backing_file) { 376366f6b814SMax Reitz BlockDriverState *bs; 376429168018SMax Reitz char *full_backing = g_new0(char, PATH_MAX); 376552bf1e72SMarkus Armbruster int64_t size; 376663090dacSPaolo Bonzini int back_flags; 3767e6641719SMax Reitz QDict *backing_options = NULL; 376863090dacSPaolo Bonzini 376929168018SMax Reitz bdrv_get_full_backing_filename_from_filename(filename, backing_file, 377029168018SMax Reitz full_backing, PATH_MAX, 377129168018SMax Reitz &local_err); 377229168018SMax Reitz if (local_err) { 377329168018SMax Reitz g_free(full_backing); 377429168018SMax Reitz goto out; 377529168018SMax Reitz } 377629168018SMax Reitz 377763090dacSPaolo Bonzini /* backing files always opened read-only */ 377863090dacSPaolo Bonzini back_flags = 377963090dacSPaolo Bonzini flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); 3780f88e1a42SJes Sorensen 3781e6641719SMax Reitz if (backing_fmt) { 3782e6641719SMax Reitz backing_options = qdict_new(); 3783e6641719SMax Reitz qdict_put(backing_options, "driver", 3784e6641719SMax Reitz qstring_from_str(backing_fmt)); 3785e6641719SMax Reitz } 3786e6641719SMax Reitz 3787f67503e5SMax Reitz bs = NULL; 3788e6641719SMax Reitz ret = bdrv_open(&bs, full_backing, NULL, backing_options, 37896ebf9aa2SMax Reitz back_flags, &local_err); 379029168018SMax Reitz g_free(full_backing); 3791f88e1a42SJes Sorensen if (ret < 0) { 3792f88e1a42SJes Sorensen goto out; 3793f88e1a42SJes Sorensen } 379452bf1e72SMarkus Armbruster size = bdrv_getlength(bs); 379552bf1e72SMarkus Armbruster if (size < 0) { 379652bf1e72SMarkus Armbruster error_setg_errno(errp, -size, "Could not get size of '%s'", 379752bf1e72SMarkus Armbruster backing_file); 379852bf1e72SMarkus Armbruster bdrv_unref(bs); 379952bf1e72SMarkus Armbruster goto out; 380052bf1e72SMarkus Armbruster } 3801f88e1a42SJes Sorensen 380239101f25SMarkus Armbruster qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort); 380366f6b814SMax Reitz 380466f6b814SMax Reitz bdrv_unref(bs); 3805f88e1a42SJes Sorensen } else { 380671c79813SLuiz Capitulino error_setg(errp, "Image creation needs a size parameter"); 3807f88e1a42SJes Sorensen goto out; 3808f88e1a42SJes Sorensen } 3809f88e1a42SJes Sorensen } 3810f88e1a42SJes Sorensen 3811f382d43aSMiroslav Rezanina if (!quiet) { 3812f88e1a42SJes Sorensen printf("Formatting '%s', fmt=%s ", filename, fmt); 381343c5d8f8SFam Zheng qemu_opts_print(opts, " "); 3814f88e1a42SJes Sorensen puts(""); 3815f382d43aSMiroslav Rezanina } 381683d0521aSChunyan Liu 3817c282e1fdSChunyan Liu ret = bdrv_create(drv, filename, opts, &local_err); 381883d0521aSChunyan Liu 3819cc84d90fSMax Reitz if (ret == -EFBIG) { 3820cc84d90fSMax Reitz /* This is generally a better message than whatever the driver would 3821cc84d90fSMax Reitz * deliver (especially because of the cluster_size_hint), since that 3822cc84d90fSMax Reitz * is most probably not much different from "image too large". */ 3823f3f4d2c0SKevin Wolf const char *cluster_size_hint = ""; 382483d0521aSChunyan Liu if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) { 3825f3f4d2c0SKevin Wolf cluster_size_hint = " (try using a larger cluster size)"; 3826f3f4d2c0SKevin Wolf } 3827cc84d90fSMax Reitz error_setg(errp, "The image size is too large for file format '%s'" 3828cc84d90fSMax Reitz "%s", fmt, cluster_size_hint); 3829cc84d90fSMax Reitz error_free(local_err); 3830cc84d90fSMax Reitz local_err = NULL; 3831f88e1a42SJes Sorensen } 3832f88e1a42SJes Sorensen 3833f88e1a42SJes Sorensen out: 383483d0521aSChunyan Liu qemu_opts_del(opts); 383583d0521aSChunyan Liu qemu_opts_free(create_opts); 383684d18f06SMarkus Armbruster if (local_err) { 3837cc84d90fSMax Reitz error_propagate(errp, local_err); 3838cc84d90fSMax Reitz } 3839f88e1a42SJes Sorensen } 384085d126f3SStefan Hajnoczi 384185d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs) 384285d126f3SStefan Hajnoczi { 3843dcd04228SStefan Hajnoczi return bs->aio_context; 3844dcd04228SStefan Hajnoczi } 3845dcd04228SStefan Hajnoczi 3846dcd04228SStefan Hajnoczi void bdrv_detach_aio_context(BlockDriverState *bs) 3847dcd04228SStefan Hajnoczi { 384833384421SMax Reitz BdrvAioNotifier *baf; 384933384421SMax Reitz 3850dcd04228SStefan Hajnoczi if (!bs->drv) { 3851dcd04228SStefan Hajnoczi return; 3852dcd04228SStefan Hajnoczi } 3853dcd04228SStefan Hajnoczi 385433384421SMax Reitz QLIST_FOREACH(baf, &bs->aio_notifiers, list) { 385533384421SMax Reitz baf->detach_aio_context(baf->opaque); 385633384421SMax Reitz } 385733384421SMax Reitz 3858a0d64a61SAlberto Garcia if (bs->throttle_state) { 38590e5b0a2dSBenoît Canet throttle_timers_detach_aio_context(&bs->throttle_timers); 386013af91ebSStefan Hajnoczi } 3861dcd04228SStefan Hajnoczi if (bs->drv->bdrv_detach_aio_context) { 3862dcd04228SStefan Hajnoczi bs->drv->bdrv_detach_aio_context(bs); 3863dcd04228SStefan Hajnoczi } 3864dcd04228SStefan Hajnoczi if (bs->file) { 38659a4f4c31SKevin Wolf bdrv_detach_aio_context(bs->file->bs); 3866dcd04228SStefan Hajnoczi } 3867760e0063SKevin Wolf if (bs->backing) { 3868760e0063SKevin Wolf bdrv_detach_aio_context(bs->backing->bs); 3869dcd04228SStefan Hajnoczi } 3870dcd04228SStefan Hajnoczi 3871dcd04228SStefan Hajnoczi bs->aio_context = NULL; 3872dcd04228SStefan Hajnoczi } 3873dcd04228SStefan Hajnoczi 3874dcd04228SStefan Hajnoczi void bdrv_attach_aio_context(BlockDriverState *bs, 3875dcd04228SStefan Hajnoczi AioContext *new_context) 3876dcd04228SStefan Hajnoczi { 387733384421SMax Reitz BdrvAioNotifier *ban; 387833384421SMax Reitz 3879dcd04228SStefan Hajnoczi if (!bs->drv) { 3880dcd04228SStefan Hajnoczi return; 3881dcd04228SStefan Hajnoczi } 3882dcd04228SStefan Hajnoczi 3883dcd04228SStefan Hajnoczi bs->aio_context = new_context; 3884dcd04228SStefan Hajnoczi 3885760e0063SKevin Wolf if (bs->backing) { 3886760e0063SKevin Wolf bdrv_attach_aio_context(bs->backing->bs, new_context); 3887dcd04228SStefan Hajnoczi } 3888dcd04228SStefan Hajnoczi if (bs->file) { 38899a4f4c31SKevin Wolf bdrv_attach_aio_context(bs->file->bs, new_context); 3890dcd04228SStefan Hajnoczi } 3891dcd04228SStefan Hajnoczi if (bs->drv->bdrv_attach_aio_context) { 3892dcd04228SStefan Hajnoczi bs->drv->bdrv_attach_aio_context(bs, new_context); 3893dcd04228SStefan Hajnoczi } 3894a0d64a61SAlberto Garcia if (bs->throttle_state) { 38950e5b0a2dSBenoît Canet throttle_timers_attach_aio_context(&bs->throttle_timers, new_context); 389613af91ebSStefan Hajnoczi } 389733384421SMax Reitz 389833384421SMax Reitz QLIST_FOREACH(ban, &bs->aio_notifiers, list) { 389933384421SMax Reitz ban->attached_aio_context(new_context, ban->opaque); 390033384421SMax Reitz } 3901dcd04228SStefan Hajnoczi } 3902dcd04228SStefan Hajnoczi 3903dcd04228SStefan Hajnoczi void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context) 3904dcd04228SStefan Hajnoczi { 390553ec73e2SFam Zheng bdrv_drain(bs); /* ensure there are no in-flight requests */ 3906dcd04228SStefan Hajnoczi 3907dcd04228SStefan Hajnoczi bdrv_detach_aio_context(bs); 3908dcd04228SStefan Hajnoczi 3909dcd04228SStefan Hajnoczi /* This function executes in the old AioContext so acquire the new one in 3910dcd04228SStefan Hajnoczi * case it runs in a different thread. 3911dcd04228SStefan Hajnoczi */ 3912dcd04228SStefan Hajnoczi aio_context_acquire(new_context); 3913dcd04228SStefan Hajnoczi bdrv_attach_aio_context(bs, new_context); 3914dcd04228SStefan Hajnoczi aio_context_release(new_context); 391585d126f3SStefan Hajnoczi } 3916d616b224SStefan Hajnoczi 391733384421SMax Reitz void bdrv_add_aio_context_notifier(BlockDriverState *bs, 391833384421SMax Reitz void (*attached_aio_context)(AioContext *new_context, void *opaque), 391933384421SMax Reitz void (*detach_aio_context)(void *opaque), void *opaque) 392033384421SMax Reitz { 392133384421SMax Reitz BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1); 392233384421SMax Reitz *ban = (BdrvAioNotifier){ 392333384421SMax Reitz .attached_aio_context = attached_aio_context, 392433384421SMax Reitz .detach_aio_context = detach_aio_context, 392533384421SMax Reitz .opaque = opaque 392633384421SMax Reitz }; 392733384421SMax Reitz 392833384421SMax Reitz QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list); 392933384421SMax Reitz } 393033384421SMax Reitz 393133384421SMax Reitz void bdrv_remove_aio_context_notifier(BlockDriverState *bs, 393233384421SMax Reitz void (*attached_aio_context)(AioContext *, 393333384421SMax Reitz void *), 393433384421SMax Reitz void (*detach_aio_context)(void *), 393533384421SMax Reitz void *opaque) 393633384421SMax Reitz { 393733384421SMax Reitz BdrvAioNotifier *ban, *ban_next; 393833384421SMax Reitz 393933384421SMax Reitz QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) { 394033384421SMax Reitz if (ban->attached_aio_context == attached_aio_context && 394133384421SMax Reitz ban->detach_aio_context == detach_aio_context && 394233384421SMax Reitz ban->opaque == opaque) 394333384421SMax Reitz { 394433384421SMax Reitz QLIST_REMOVE(ban, list); 394533384421SMax Reitz g_free(ban); 394633384421SMax Reitz 394733384421SMax Reitz return; 394833384421SMax Reitz } 394933384421SMax Reitz } 395033384421SMax Reitz 395133384421SMax Reitz abort(); 395233384421SMax Reitz } 395333384421SMax Reitz 395477485434SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts, 395577485434SMax Reitz BlockDriverAmendStatusCB *status_cb) 39566f176b48SMax Reitz { 3957c282e1fdSChunyan Liu if (!bs->drv->bdrv_amend_options) { 39586f176b48SMax Reitz return -ENOTSUP; 39596f176b48SMax Reitz } 396077485434SMax Reitz return bs->drv->bdrv_amend_options(bs, opts, status_cb); 39616f176b48SMax Reitz } 3962f6186f49SBenoît Canet 3963b5042a36SBenoît Canet /* This function will be called by the bdrv_recurse_is_first_non_filter method 3964b5042a36SBenoît Canet * of block filter and by bdrv_is_first_non_filter. 3965b5042a36SBenoît Canet * It is used to test if the given bs is the candidate or recurse more in the 3966b5042a36SBenoît Canet * node graph. 3967212a5a8fSBenoît Canet */ 3968212a5a8fSBenoît Canet bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs, 3969212a5a8fSBenoît Canet BlockDriverState *candidate) 3970f6186f49SBenoît Canet { 3971b5042a36SBenoît Canet /* return false if basic checks fails */ 3972b5042a36SBenoît Canet if (!bs || !bs->drv) { 3973b5042a36SBenoît Canet return false; 3974b5042a36SBenoît Canet } 3975b5042a36SBenoît Canet 3976b5042a36SBenoît Canet /* the code reached a non block filter driver -> check if the bs is 3977b5042a36SBenoît Canet * the same as the candidate. It's the recursion termination condition. 3978b5042a36SBenoît Canet */ 3979b5042a36SBenoît Canet if (!bs->drv->is_filter) { 3980b5042a36SBenoît Canet return bs == candidate; 3981b5042a36SBenoît Canet } 3982b5042a36SBenoît Canet /* Down this path the driver is a block filter driver */ 3983b5042a36SBenoît Canet 3984b5042a36SBenoît Canet /* If the block filter recursion method is defined use it to recurse down 3985b5042a36SBenoît Canet * the node graph. 3986b5042a36SBenoît Canet */ 3987b5042a36SBenoît Canet if (bs->drv->bdrv_recurse_is_first_non_filter) { 3988212a5a8fSBenoît Canet return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate); 3989212a5a8fSBenoît Canet } 3990212a5a8fSBenoît Canet 3991b5042a36SBenoît Canet /* the driver is a block filter but don't allow to recurse -> return false 3992b5042a36SBenoît Canet */ 3993b5042a36SBenoît Canet return false; 3994212a5a8fSBenoît Canet } 3995212a5a8fSBenoît Canet 3996212a5a8fSBenoît Canet /* This function checks if the candidate is the first non filter bs down it's 3997212a5a8fSBenoît Canet * bs chain. Since we don't have pointers to parents it explore all bs chains 3998212a5a8fSBenoît Canet * from the top. Some filters can choose not to pass down the recursion. 3999212a5a8fSBenoît Canet */ 4000212a5a8fSBenoît Canet bool bdrv_is_first_non_filter(BlockDriverState *candidate) 4001212a5a8fSBenoît Canet { 4002212a5a8fSBenoît Canet BlockDriverState *bs; 4003212a5a8fSBenoît Canet 4004212a5a8fSBenoît Canet /* walk down the bs forest recursively */ 4005212a5a8fSBenoît Canet QTAILQ_FOREACH(bs, &bdrv_states, device_list) { 4006212a5a8fSBenoît Canet bool perm; 4007212a5a8fSBenoît Canet 4008b5042a36SBenoît Canet /* try to recurse in this top level bs */ 4009e6dc8a1fSKevin Wolf perm = bdrv_recurse_is_first_non_filter(bs, candidate); 4010212a5a8fSBenoît Canet 4011212a5a8fSBenoît Canet /* candidate is the first non filter */ 4012212a5a8fSBenoît Canet if (perm) { 4013212a5a8fSBenoît Canet return true; 4014212a5a8fSBenoît Canet } 4015212a5a8fSBenoît Canet } 4016212a5a8fSBenoît Canet 4017212a5a8fSBenoît Canet return false; 4018f6186f49SBenoît Canet } 401909158f00SBenoît Canet 4020e12f3784SWen Congyang BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs, 4021e12f3784SWen Congyang const char *node_name, Error **errp) 402209158f00SBenoît Canet { 402309158f00SBenoît Canet BlockDriverState *to_replace_bs = bdrv_find_node(node_name); 40245a7e7a0bSStefan Hajnoczi AioContext *aio_context; 40255a7e7a0bSStefan Hajnoczi 402609158f00SBenoît Canet if (!to_replace_bs) { 402709158f00SBenoît Canet error_setg(errp, "Node name '%s' not found", node_name); 402809158f00SBenoît Canet return NULL; 402909158f00SBenoît Canet } 403009158f00SBenoît Canet 40315a7e7a0bSStefan Hajnoczi aio_context = bdrv_get_aio_context(to_replace_bs); 40325a7e7a0bSStefan Hajnoczi aio_context_acquire(aio_context); 40335a7e7a0bSStefan Hajnoczi 403409158f00SBenoît Canet if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) { 40355a7e7a0bSStefan Hajnoczi to_replace_bs = NULL; 40365a7e7a0bSStefan Hajnoczi goto out; 403709158f00SBenoît Canet } 403809158f00SBenoît Canet 403909158f00SBenoît Canet /* We don't want arbitrary node of the BDS chain to be replaced only the top 404009158f00SBenoît Canet * most non filter in order to prevent data corruption. 404109158f00SBenoît Canet * Another benefit is that this tests exclude backing files which are 404209158f00SBenoît Canet * blocked by the backing blockers. 404309158f00SBenoît Canet */ 4044e12f3784SWen Congyang if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) { 404509158f00SBenoît Canet error_setg(errp, "Only top most non filter can be replaced"); 40465a7e7a0bSStefan Hajnoczi to_replace_bs = NULL; 40475a7e7a0bSStefan Hajnoczi goto out; 404809158f00SBenoît Canet } 404909158f00SBenoît Canet 40505a7e7a0bSStefan Hajnoczi out: 40515a7e7a0bSStefan Hajnoczi aio_context_release(aio_context); 405209158f00SBenoît Canet return to_replace_bs; 405309158f00SBenoît Canet } 4054448ad91dSMing Lei 405591af7014SMax Reitz static bool append_open_options(QDict *d, BlockDriverState *bs) 405691af7014SMax Reitz { 405791af7014SMax Reitz const QDictEntry *entry; 40589e700c1aSKevin Wolf QemuOptDesc *desc; 4059260fecf1SKevin Wolf BdrvChild *child; 406091af7014SMax Reitz bool found_any = false; 4061260fecf1SKevin Wolf const char *p; 406291af7014SMax Reitz 406391af7014SMax Reitz for (entry = qdict_first(bs->options); entry; 406491af7014SMax Reitz entry = qdict_next(bs->options, entry)) 406591af7014SMax Reitz { 4066260fecf1SKevin Wolf /* Exclude options for children */ 4067260fecf1SKevin Wolf QLIST_FOREACH(child, &bs->children, next) { 4068260fecf1SKevin Wolf if (strstart(qdict_entry_key(entry), child->name, &p) 4069260fecf1SKevin Wolf && (!*p || *p == '.')) 4070260fecf1SKevin Wolf { 4071260fecf1SKevin Wolf break; 4072260fecf1SKevin Wolf } 4073260fecf1SKevin Wolf } 4074260fecf1SKevin Wolf if (child) { 40759e700c1aSKevin Wolf continue; 40769e700c1aSKevin Wolf } 40779e700c1aSKevin Wolf 40789e700c1aSKevin Wolf /* And exclude all non-driver-specific options */ 40799e700c1aSKevin Wolf for (desc = bdrv_runtime_opts.desc; desc->name; desc++) { 40809e700c1aSKevin Wolf if (!strcmp(qdict_entry_key(entry), desc->name)) { 40819e700c1aSKevin Wolf break; 40829e700c1aSKevin Wolf } 40839e700c1aSKevin Wolf } 40849e700c1aSKevin Wolf if (desc->name) { 40859e700c1aSKevin Wolf continue; 40869e700c1aSKevin Wolf } 40879e700c1aSKevin Wolf 408891af7014SMax Reitz qobject_incref(qdict_entry_value(entry)); 408991af7014SMax Reitz qdict_put_obj(d, qdict_entry_key(entry), qdict_entry_value(entry)); 409091af7014SMax Reitz found_any = true; 409191af7014SMax Reitz } 409291af7014SMax Reitz 409391af7014SMax Reitz return found_any; 409491af7014SMax Reitz } 409591af7014SMax Reitz 409691af7014SMax Reitz /* Updates the following BDS fields: 409791af7014SMax Reitz * - exact_filename: A filename which may be used for opening a block device 409891af7014SMax Reitz * which (mostly) equals the given BDS (even without any 409991af7014SMax Reitz * other options; so reading and writing must return the same 410091af7014SMax Reitz * results, but caching etc. may be different) 410191af7014SMax Reitz * - full_open_options: Options which, when given when opening a block device 410291af7014SMax Reitz * (without a filename), result in a BDS (mostly) 410391af7014SMax Reitz * equalling the given one 410491af7014SMax Reitz * - filename: If exact_filename is set, it is copied here. Otherwise, 410591af7014SMax Reitz * full_open_options is converted to a JSON object, prefixed with 410691af7014SMax Reitz * "json:" (for use through the JSON pseudo protocol) and put here. 410791af7014SMax Reitz */ 410891af7014SMax Reitz void bdrv_refresh_filename(BlockDriverState *bs) 410991af7014SMax Reitz { 411091af7014SMax Reitz BlockDriver *drv = bs->drv; 411191af7014SMax Reitz QDict *opts; 411291af7014SMax Reitz 411391af7014SMax Reitz if (!drv) { 411491af7014SMax Reitz return; 411591af7014SMax Reitz } 411691af7014SMax Reitz 411791af7014SMax Reitz /* This BDS's file name will most probably depend on its file's name, so 411891af7014SMax Reitz * refresh that first */ 411991af7014SMax Reitz if (bs->file) { 41209a4f4c31SKevin Wolf bdrv_refresh_filename(bs->file->bs); 412191af7014SMax Reitz } 412291af7014SMax Reitz 412391af7014SMax Reitz if (drv->bdrv_refresh_filename) { 412491af7014SMax Reitz /* Obsolete information is of no use here, so drop the old file name 412591af7014SMax Reitz * information before refreshing it */ 412691af7014SMax Reitz bs->exact_filename[0] = '\0'; 412791af7014SMax Reitz if (bs->full_open_options) { 412891af7014SMax Reitz QDECREF(bs->full_open_options); 412991af7014SMax Reitz bs->full_open_options = NULL; 413091af7014SMax Reitz } 413191af7014SMax Reitz 41324cdd01d3SKevin Wolf opts = qdict_new(); 41334cdd01d3SKevin Wolf append_open_options(opts, bs); 41344cdd01d3SKevin Wolf drv->bdrv_refresh_filename(bs, opts); 41354cdd01d3SKevin Wolf QDECREF(opts); 413691af7014SMax Reitz } else if (bs->file) { 413791af7014SMax Reitz /* Try to reconstruct valid information from the underlying file */ 413891af7014SMax Reitz bool has_open_options; 413991af7014SMax Reitz 414091af7014SMax Reitz bs->exact_filename[0] = '\0'; 414191af7014SMax Reitz if (bs->full_open_options) { 414291af7014SMax Reitz QDECREF(bs->full_open_options); 414391af7014SMax Reitz bs->full_open_options = NULL; 414491af7014SMax Reitz } 414591af7014SMax Reitz 414691af7014SMax Reitz opts = qdict_new(); 414791af7014SMax Reitz has_open_options = append_open_options(opts, bs); 414891af7014SMax Reitz 414991af7014SMax Reitz /* If no specific options have been given for this BDS, the filename of 415091af7014SMax Reitz * the underlying file should suffice for this one as well */ 41519a4f4c31SKevin Wolf if (bs->file->bs->exact_filename[0] && !has_open_options) { 41529a4f4c31SKevin Wolf strcpy(bs->exact_filename, bs->file->bs->exact_filename); 415391af7014SMax Reitz } 415491af7014SMax Reitz /* Reconstructing the full options QDict is simple for most format block 415591af7014SMax Reitz * drivers, as long as the full options are known for the underlying 415691af7014SMax Reitz * file BDS. The full options QDict of that file BDS should somehow 415791af7014SMax Reitz * contain a representation of the filename, therefore the following 415891af7014SMax Reitz * suffices without querying the (exact_)filename of this BDS. */ 41599a4f4c31SKevin Wolf if (bs->file->bs->full_open_options) { 416091af7014SMax Reitz qdict_put_obj(opts, "driver", 416191af7014SMax Reitz QOBJECT(qstring_from_str(drv->format_name))); 41629a4f4c31SKevin Wolf QINCREF(bs->file->bs->full_open_options); 41639a4f4c31SKevin Wolf qdict_put_obj(opts, "file", 41649a4f4c31SKevin Wolf QOBJECT(bs->file->bs->full_open_options)); 416591af7014SMax Reitz 416691af7014SMax Reitz bs->full_open_options = opts; 416791af7014SMax Reitz } else { 416891af7014SMax Reitz QDECREF(opts); 416991af7014SMax Reitz } 417091af7014SMax Reitz } else if (!bs->full_open_options && qdict_size(bs->options)) { 417191af7014SMax Reitz /* There is no underlying file BDS (at least referenced by BDS.file), 417291af7014SMax Reitz * so the full options QDict should be equal to the options given 417391af7014SMax Reitz * specifically for this block device when it was opened (plus the 417491af7014SMax Reitz * driver specification). 417591af7014SMax Reitz * Because those options don't change, there is no need to update 417691af7014SMax Reitz * full_open_options when it's already set. */ 417791af7014SMax Reitz 417891af7014SMax Reitz opts = qdict_new(); 417991af7014SMax Reitz append_open_options(opts, bs); 418091af7014SMax Reitz qdict_put_obj(opts, "driver", 418191af7014SMax Reitz QOBJECT(qstring_from_str(drv->format_name))); 418291af7014SMax Reitz 418391af7014SMax Reitz if (bs->exact_filename[0]) { 418491af7014SMax Reitz /* This may not work for all block protocol drivers (some may 418591af7014SMax Reitz * require this filename to be parsed), but we have to find some 418691af7014SMax Reitz * default solution here, so just include it. If some block driver 418791af7014SMax Reitz * does not support pure options without any filename at all or 418891af7014SMax Reitz * needs some special format of the options QDict, it needs to 418991af7014SMax Reitz * implement the driver-specific bdrv_refresh_filename() function. 419091af7014SMax Reitz */ 419191af7014SMax Reitz qdict_put_obj(opts, "filename", 419291af7014SMax Reitz QOBJECT(qstring_from_str(bs->exact_filename))); 419391af7014SMax Reitz } 419491af7014SMax Reitz 419591af7014SMax Reitz bs->full_open_options = opts; 419691af7014SMax Reitz } 419791af7014SMax Reitz 419891af7014SMax Reitz if (bs->exact_filename[0]) { 419991af7014SMax Reitz pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename); 420091af7014SMax Reitz } else if (bs->full_open_options) { 420191af7014SMax Reitz QString *json = qobject_to_json(QOBJECT(bs->full_open_options)); 420291af7014SMax Reitz snprintf(bs->filename, sizeof(bs->filename), "json:%s", 420391af7014SMax Reitz qstring_get_str(json)); 420491af7014SMax Reitz QDECREF(json); 420591af7014SMax Reitz } 420691af7014SMax Reitz } 4207