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" 2783c9089eSPaolo Bonzini #include "monitor/monitor.h" 28737e150eSPaolo Bonzini #include "block/block_int.h" 29737e150eSPaolo Bonzini #include "block/blockjob.h" 301de7afc9SPaolo Bonzini #include "qemu/module.h" 317b1b5d19SPaolo Bonzini #include "qapi/qmp/qjson.h" 329c17d615SPaolo Bonzini #include "sysemu/sysemu.h" 331de7afc9SPaolo Bonzini #include "qemu/notify.h" 34737e150eSPaolo Bonzini #include "block/coroutine.h" 35b2023818SLuiz Capitulino #include "qmp-commands.h" 361de7afc9SPaolo Bonzini #include "qemu/timer.h" 37fc01f7e7Sbellard 3871e72a19SJuan Quintela #ifdef CONFIG_BSD 397674e7bfSbellard #include <sys/types.h> 407674e7bfSbellard #include <sys/stat.h> 417674e7bfSbellard #include <sys/ioctl.h> 4272cf2d4fSBlue Swirl #include <sys/queue.h> 43c5e97233Sblueswir1 #ifndef __DragonFly__ 447674e7bfSbellard #include <sys/disk.h> 457674e7bfSbellard #endif 46c5e97233Sblueswir1 #endif 477674e7bfSbellard 4849dc768dSaliguori #ifdef _WIN32 4949dc768dSaliguori #include <windows.h> 5049dc768dSaliguori #endif 5149dc768dSaliguori 521c9805a3SStefan Hajnoczi #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */ 531c9805a3SStefan Hajnoczi 54470c0504SStefan Hajnoczi typedef enum { 55470c0504SStefan Hajnoczi BDRV_REQ_COPY_ON_READ = 0x1, 56f08f2ddaSStefan Hajnoczi BDRV_REQ_ZERO_WRITE = 0x2, 57470c0504SStefan Hajnoczi } BdrvRequestFlags; 58470c0504SStefan Hajnoczi 597d4b4ba5SMarkus Armbruster static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load); 60f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs, 61f141eafeSaliguori int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, 62c87c0672Saliguori BlockDriverCompletionFunc *cb, void *opaque); 63f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs, 64f141eafeSaliguori int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, 65ce1a14dcSpbrook BlockDriverCompletionFunc *cb, void *opaque); 66f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs, 67f9f05dc5SKevin Wolf int64_t sector_num, int nb_sectors, 68f9f05dc5SKevin Wolf QEMUIOVector *iov); 69f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs, 70f9f05dc5SKevin Wolf int64_t sector_num, int nb_sectors, 71f9f05dc5SKevin Wolf QEMUIOVector *iov); 72c5fbe571SStefan Hajnoczi static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs, 73470c0504SStefan Hajnoczi int64_t sector_num, int nb_sectors, QEMUIOVector *qiov, 74470c0504SStefan Hajnoczi BdrvRequestFlags flags); 751c9805a3SStefan Hajnoczi static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs, 76f08f2ddaSStefan Hajnoczi int64_t sector_num, int nb_sectors, QEMUIOVector *qiov, 77f08f2ddaSStefan Hajnoczi BdrvRequestFlags flags); 78b2a61371SStefan Hajnoczi static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs, 79b2a61371SStefan Hajnoczi int64_t sector_num, 80b2a61371SStefan Hajnoczi QEMUIOVector *qiov, 81b2a61371SStefan Hajnoczi int nb_sectors, 82b2a61371SStefan Hajnoczi BlockDriverCompletionFunc *cb, 83b2a61371SStefan Hajnoczi void *opaque, 848c5873d6SStefan Hajnoczi bool is_write); 85b2a61371SStefan Hajnoczi static void coroutine_fn bdrv_co_do_rw(void *opaque); 86621f0589SKevin Wolf static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs, 87621f0589SKevin Wolf int64_t sector_num, int nb_sectors); 88ec530c81Sbellard 891b7bdbc1SStefan Hajnoczi static QTAILQ_HEAD(, BlockDriverState) bdrv_states = 901b7bdbc1SStefan Hajnoczi QTAILQ_HEAD_INITIALIZER(bdrv_states); 917ee930d0Sblueswir1 928a22f02aSStefan Hajnoczi static QLIST_HEAD(, BlockDriver) bdrv_drivers = 938a22f02aSStefan Hajnoczi QLIST_HEAD_INITIALIZER(bdrv_drivers); 94ea2384d3Sbellard 95eb852011SMarkus Armbruster /* If non-zero, use only whitelisted block drivers */ 96eb852011SMarkus Armbruster static int use_bdrv_whitelist; 97eb852011SMarkus Armbruster 989e0b22f4SStefan Hajnoczi #ifdef _WIN32 999e0b22f4SStefan Hajnoczi static int is_windows_drive_prefix(const char *filename) 1009e0b22f4SStefan Hajnoczi { 1019e0b22f4SStefan Hajnoczi return (((filename[0] >= 'a' && filename[0] <= 'z') || 1029e0b22f4SStefan Hajnoczi (filename[0] >= 'A' && filename[0] <= 'Z')) && 1039e0b22f4SStefan Hajnoczi filename[1] == ':'); 1049e0b22f4SStefan Hajnoczi } 1059e0b22f4SStefan Hajnoczi 1069e0b22f4SStefan Hajnoczi int is_windows_drive(const char *filename) 1079e0b22f4SStefan Hajnoczi { 1089e0b22f4SStefan Hajnoczi if (is_windows_drive_prefix(filename) && 1099e0b22f4SStefan Hajnoczi filename[2] == '\0') 1109e0b22f4SStefan Hajnoczi return 1; 1119e0b22f4SStefan Hajnoczi if (strstart(filename, "\\\\.\\", NULL) || 1129e0b22f4SStefan Hajnoczi strstart(filename, "//./", NULL)) 1139e0b22f4SStefan Hajnoczi return 1; 1149e0b22f4SStefan Hajnoczi return 0; 1159e0b22f4SStefan Hajnoczi } 1169e0b22f4SStefan Hajnoczi #endif 1179e0b22f4SStefan Hajnoczi 1180563e191SZhi Yong Wu /* throttling disk I/O limits */ 119cc0681c4SBenoît Canet void bdrv_set_io_limits(BlockDriverState *bs, 120cc0681c4SBenoît Canet ThrottleConfig *cfg) 121cc0681c4SBenoît Canet { 122cc0681c4SBenoît Canet int i; 123cc0681c4SBenoît Canet 124cc0681c4SBenoît Canet throttle_config(&bs->throttle_state, cfg); 125cc0681c4SBenoît Canet 126cc0681c4SBenoît Canet for (i = 0; i < 2; i++) { 127cc0681c4SBenoît Canet qemu_co_enter_next(&bs->throttled_reqs[i]); 128cc0681c4SBenoît Canet } 129cc0681c4SBenoît Canet } 130cc0681c4SBenoît Canet 131cc0681c4SBenoît Canet /* this function drain all the throttled IOs */ 132cc0681c4SBenoît Canet static bool bdrv_start_throttled_reqs(BlockDriverState *bs) 133cc0681c4SBenoît Canet { 134cc0681c4SBenoît Canet bool drained = false; 135cc0681c4SBenoît Canet bool enabled = bs->io_limits_enabled; 136cc0681c4SBenoît Canet int i; 137cc0681c4SBenoît Canet 138cc0681c4SBenoît Canet bs->io_limits_enabled = false; 139cc0681c4SBenoît Canet 140cc0681c4SBenoît Canet for (i = 0; i < 2; i++) { 141cc0681c4SBenoît Canet while (qemu_co_enter_next(&bs->throttled_reqs[i])) { 142cc0681c4SBenoît Canet drained = true; 143cc0681c4SBenoît Canet } 144cc0681c4SBenoît Canet } 145cc0681c4SBenoît Canet 146cc0681c4SBenoît Canet bs->io_limits_enabled = enabled; 147cc0681c4SBenoît Canet 148cc0681c4SBenoît Canet return drained; 149cc0681c4SBenoît Canet } 150cc0681c4SBenoît Canet 15198f90dbaSZhi Yong Wu void bdrv_io_limits_disable(BlockDriverState *bs) 15298f90dbaSZhi Yong Wu { 15398f90dbaSZhi Yong Wu bs->io_limits_enabled = false; 15498f90dbaSZhi Yong Wu 155cc0681c4SBenoît Canet bdrv_start_throttled_reqs(bs); 15698f90dbaSZhi Yong Wu 157cc0681c4SBenoît Canet throttle_destroy(&bs->throttle_state); 15898f90dbaSZhi Yong Wu } 15998f90dbaSZhi Yong Wu 160cc0681c4SBenoît Canet static void bdrv_throttle_read_timer_cb(void *opaque) 1610563e191SZhi Yong Wu { 1620563e191SZhi Yong Wu BlockDriverState *bs = opaque; 163cc0681c4SBenoît Canet qemu_co_enter_next(&bs->throttled_reqs[0]); 1640563e191SZhi Yong Wu } 1650563e191SZhi Yong Wu 166cc0681c4SBenoît Canet static void bdrv_throttle_write_timer_cb(void *opaque) 167cc0681c4SBenoît Canet { 168cc0681c4SBenoît Canet BlockDriverState *bs = opaque; 169cc0681c4SBenoît Canet qemu_co_enter_next(&bs->throttled_reqs[1]); 170cc0681c4SBenoît Canet } 171cc0681c4SBenoît Canet 172cc0681c4SBenoît Canet /* should be called before bdrv_set_io_limits if a limit is set */ 1730563e191SZhi Yong Wu void bdrv_io_limits_enable(BlockDriverState *bs) 1740563e191SZhi Yong Wu { 175cc0681c4SBenoît Canet assert(!bs->io_limits_enabled); 176cc0681c4SBenoît Canet throttle_init(&bs->throttle_state, 177cc0681c4SBenoît Canet QEMU_CLOCK_VIRTUAL, 178cc0681c4SBenoît Canet bdrv_throttle_read_timer_cb, 179cc0681c4SBenoît Canet bdrv_throttle_write_timer_cb, 180cc0681c4SBenoît Canet bs); 1810563e191SZhi Yong Wu bs->io_limits_enabled = true; 1820563e191SZhi Yong Wu } 1830563e191SZhi Yong Wu 184cc0681c4SBenoît Canet /* This function makes an IO wait if needed 185cc0681c4SBenoît Canet * 186cc0681c4SBenoît Canet * @nb_sectors: the number of sectors of the IO 187cc0681c4SBenoît Canet * @is_write: is the IO a write 18898f90dbaSZhi Yong Wu */ 189cc0681c4SBenoît Canet static void bdrv_io_limits_intercept(BlockDriverState *bs, 190cc0681c4SBenoît Canet int nb_sectors, 191cc0681c4SBenoît Canet bool is_write) 192cc0681c4SBenoît Canet { 193cc0681c4SBenoît Canet /* does this io must wait */ 194cc0681c4SBenoît Canet bool must_wait = throttle_schedule_timer(&bs->throttle_state, is_write); 19598f90dbaSZhi Yong Wu 196cc0681c4SBenoît Canet /* if must wait or any request of this type throttled queue the IO */ 197cc0681c4SBenoît Canet if (must_wait || 198cc0681c4SBenoît Canet !qemu_co_queue_empty(&bs->throttled_reqs[is_write])) { 199cc0681c4SBenoît Canet qemu_co_queue_wait(&bs->throttled_reqs[is_write]); 20098f90dbaSZhi Yong Wu } 20198f90dbaSZhi Yong Wu 202cc0681c4SBenoît Canet /* the IO will be executed, do the accounting */ 203cc0681c4SBenoît Canet throttle_account(&bs->throttle_state, 204cc0681c4SBenoît Canet is_write, 205cc0681c4SBenoît Canet nb_sectors * BDRV_SECTOR_SIZE); 206cc0681c4SBenoît Canet 207cc0681c4SBenoît Canet /* if the next request must wait -> do nothing */ 208cc0681c4SBenoît Canet if (throttle_schedule_timer(&bs->throttle_state, is_write)) { 209cc0681c4SBenoît Canet return; 210cc0681c4SBenoît Canet } 211cc0681c4SBenoît Canet 212cc0681c4SBenoît Canet /* else queue next request for execution */ 213cc0681c4SBenoît Canet qemu_co_queue_next(&bs->throttled_reqs[is_write]); 21498f90dbaSZhi Yong Wu } 21598f90dbaSZhi Yong Wu 2169e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */ 2179e0b22f4SStefan Hajnoczi static int path_has_protocol(const char *path) 2189e0b22f4SStefan Hajnoczi { 219947995c0SPaolo Bonzini const char *p; 220947995c0SPaolo Bonzini 2219e0b22f4SStefan Hajnoczi #ifdef _WIN32 2229e0b22f4SStefan Hajnoczi if (is_windows_drive(path) || 2239e0b22f4SStefan Hajnoczi is_windows_drive_prefix(path)) { 2249e0b22f4SStefan Hajnoczi return 0; 2259e0b22f4SStefan Hajnoczi } 226947995c0SPaolo Bonzini p = path + strcspn(path, ":/\\"); 227947995c0SPaolo Bonzini #else 228947995c0SPaolo Bonzini p = path + strcspn(path, ":/"); 2299e0b22f4SStefan Hajnoczi #endif 2309e0b22f4SStefan Hajnoczi 231947995c0SPaolo Bonzini return *p == ':'; 2329e0b22f4SStefan Hajnoczi } 2339e0b22f4SStefan Hajnoczi 23483f64091Sbellard int path_is_absolute(const char *path) 23583f64091Sbellard { 23621664424Sbellard #ifdef _WIN32 23721664424Sbellard /* specific case for names like: "\\.\d:" */ 238f53f4da9SPaolo Bonzini if (is_windows_drive(path) || is_windows_drive_prefix(path)) { 23921664424Sbellard return 1; 240f53f4da9SPaolo Bonzini } 241f53f4da9SPaolo Bonzini return (*path == '/' || *path == '\\'); 2423b9f94e1Sbellard #else 243f53f4da9SPaolo Bonzini return (*path == '/'); 2443b9f94e1Sbellard #endif 24583f64091Sbellard } 24683f64091Sbellard 24783f64091Sbellard /* if filename is absolute, just copy it to dest. Otherwise, build a 24883f64091Sbellard path to it by considering it is relative to base_path. URL are 24983f64091Sbellard supported. */ 25083f64091Sbellard void path_combine(char *dest, int dest_size, 25183f64091Sbellard const char *base_path, 25283f64091Sbellard const char *filename) 25383f64091Sbellard { 25483f64091Sbellard const char *p, *p1; 25583f64091Sbellard int len; 25683f64091Sbellard 25783f64091Sbellard if (dest_size <= 0) 25883f64091Sbellard return; 25983f64091Sbellard if (path_is_absolute(filename)) { 26083f64091Sbellard pstrcpy(dest, dest_size, filename); 26183f64091Sbellard } else { 26283f64091Sbellard p = strchr(base_path, ':'); 26383f64091Sbellard if (p) 26483f64091Sbellard p++; 26583f64091Sbellard else 26683f64091Sbellard p = base_path; 2673b9f94e1Sbellard p1 = strrchr(base_path, '/'); 2683b9f94e1Sbellard #ifdef _WIN32 2693b9f94e1Sbellard { 2703b9f94e1Sbellard const char *p2; 2713b9f94e1Sbellard p2 = strrchr(base_path, '\\'); 2723b9f94e1Sbellard if (!p1 || p2 > p1) 2733b9f94e1Sbellard p1 = p2; 2743b9f94e1Sbellard } 2753b9f94e1Sbellard #endif 27683f64091Sbellard if (p1) 27783f64091Sbellard p1++; 27883f64091Sbellard else 27983f64091Sbellard p1 = base_path; 28083f64091Sbellard if (p1 > p) 28183f64091Sbellard p = p1; 28283f64091Sbellard len = p - base_path; 28383f64091Sbellard if (len > dest_size - 1) 28483f64091Sbellard len = dest_size - 1; 28583f64091Sbellard memcpy(dest, base_path, len); 28683f64091Sbellard dest[len] = '\0'; 28783f64091Sbellard pstrcat(dest, dest_size, filename); 28883f64091Sbellard } 28983f64091Sbellard } 29083f64091Sbellard 291dc5a1371SPaolo Bonzini void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz) 292dc5a1371SPaolo Bonzini { 293dc5a1371SPaolo Bonzini if (bs->backing_file[0] == '\0' || path_has_protocol(bs->backing_file)) { 294dc5a1371SPaolo Bonzini pstrcpy(dest, sz, bs->backing_file); 295dc5a1371SPaolo Bonzini } else { 296dc5a1371SPaolo Bonzini path_combine(dest, sz, bs->filename, bs->backing_file); 297dc5a1371SPaolo Bonzini } 298dc5a1371SPaolo Bonzini } 299dc5a1371SPaolo Bonzini 3005efa9d5aSAnthony Liguori void bdrv_register(BlockDriver *bdrv) 301ea2384d3Sbellard { 3028c5873d6SStefan Hajnoczi /* Block drivers without coroutine functions need emulation */ 3038c5873d6SStefan Hajnoczi if (!bdrv->bdrv_co_readv) { 304f9f05dc5SKevin Wolf bdrv->bdrv_co_readv = bdrv_co_readv_em; 305f9f05dc5SKevin Wolf bdrv->bdrv_co_writev = bdrv_co_writev_em; 306f9f05dc5SKevin Wolf 307f8c35c1dSStefan Hajnoczi /* bdrv_co_readv_em()/brdv_co_writev_em() work in terms of aio, so if 308f8c35c1dSStefan Hajnoczi * the block driver lacks aio we need to emulate that too. 309f8c35c1dSStefan Hajnoczi */ 310f9f05dc5SKevin Wolf if (!bdrv->bdrv_aio_readv) { 31183f64091Sbellard /* add AIO emulation layer */ 312f141eafeSaliguori bdrv->bdrv_aio_readv = bdrv_aio_readv_em; 313f141eafeSaliguori bdrv->bdrv_aio_writev = bdrv_aio_writev_em; 31483f64091Sbellard } 315f9f05dc5SKevin Wolf } 316b2e12bc6SChristoph Hellwig 3178a22f02aSStefan Hajnoczi QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list); 318ea2384d3Sbellard } 319b338082bSbellard 320b338082bSbellard /* create a new block device (by default it is empty) */ 321b338082bSbellard BlockDriverState *bdrv_new(const char *device_name) 322fc01f7e7Sbellard { 3231b7bdbc1SStefan Hajnoczi BlockDriverState *bs; 324b338082bSbellard 3257267c094SAnthony Liguori bs = g_malloc0(sizeof(BlockDriverState)); 326b338082bSbellard pstrcpy(bs->device_name, sizeof(bs->device_name), device_name); 327ea2384d3Sbellard if (device_name[0] != '\0') { 3281b7bdbc1SStefan Hajnoczi QTAILQ_INSERT_TAIL(&bdrv_states, bs, list); 329ea2384d3Sbellard } 33028a7282aSLuiz Capitulino bdrv_iostatus_disable(bs); 331d7d512f6SPaolo Bonzini notifier_list_init(&bs->close_notifiers); 332d616b224SStefan Hajnoczi notifier_with_return_list_init(&bs->before_write_notifiers); 333cc0681c4SBenoît Canet qemu_co_queue_init(&bs->throttled_reqs[0]); 334cc0681c4SBenoît Canet qemu_co_queue_init(&bs->throttled_reqs[1]); 3359fcb0251SFam Zheng bs->refcnt = 1; 336d7d512f6SPaolo Bonzini 337b338082bSbellard return bs; 338b338082bSbellard } 339b338082bSbellard 340d7d512f6SPaolo Bonzini void bdrv_add_close_notifier(BlockDriverState *bs, Notifier *notify) 341d7d512f6SPaolo Bonzini { 342d7d512f6SPaolo Bonzini notifier_list_add(&bs->close_notifiers, notify); 343d7d512f6SPaolo Bonzini } 344d7d512f6SPaolo Bonzini 345ea2384d3Sbellard BlockDriver *bdrv_find_format(const char *format_name) 346ea2384d3Sbellard { 347ea2384d3Sbellard BlockDriver *drv1; 3488a22f02aSStefan Hajnoczi QLIST_FOREACH(drv1, &bdrv_drivers, list) { 3498a22f02aSStefan Hajnoczi if (!strcmp(drv1->format_name, format_name)) { 350ea2384d3Sbellard return drv1; 351ea2384d3Sbellard } 3528a22f02aSStefan Hajnoczi } 353ea2384d3Sbellard return NULL; 354ea2384d3Sbellard } 355ea2384d3Sbellard 356b64ec4e4SFam Zheng static int bdrv_is_whitelisted(BlockDriver *drv, bool read_only) 357eb852011SMarkus Armbruster { 358b64ec4e4SFam Zheng static const char *whitelist_rw[] = { 359b64ec4e4SFam Zheng CONFIG_BDRV_RW_WHITELIST 360b64ec4e4SFam Zheng }; 361b64ec4e4SFam Zheng static const char *whitelist_ro[] = { 362b64ec4e4SFam Zheng CONFIG_BDRV_RO_WHITELIST 363eb852011SMarkus Armbruster }; 364eb852011SMarkus Armbruster const char **p; 365eb852011SMarkus Armbruster 366b64ec4e4SFam Zheng if (!whitelist_rw[0] && !whitelist_ro[0]) { 367eb852011SMarkus Armbruster return 1; /* no whitelist, anything goes */ 368b64ec4e4SFam Zheng } 369eb852011SMarkus Armbruster 370b64ec4e4SFam Zheng for (p = whitelist_rw; *p; p++) { 371eb852011SMarkus Armbruster if (!strcmp(drv->format_name, *p)) { 372eb852011SMarkus Armbruster return 1; 373eb852011SMarkus Armbruster } 374eb852011SMarkus Armbruster } 375b64ec4e4SFam Zheng if (read_only) { 376b64ec4e4SFam Zheng for (p = whitelist_ro; *p; p++) { 377b64ec4e4SFam Zheng if (!strcmp(drv->format_name, *p)) { 378b64ec4e4SFam Zheng return 1; 379b64ec4e4SFam Zheng } 380b64ec4e4SFam Zheng } 381b64ec4e4SFam Zheng } 382eb852011SMarkus Armbruster return 0; 383eb852011SMarkus Armbruster } 384eb852011SMarkus Armbruster 385b64ec4e4SFam Zheng BlockDriver *bdrv_find_whitelisted_format(const char *format_name, 386b64ec4e4SFam Zheng bool read_only) 387eb852011SMarkus Armbruster { 388eb852011SMarkus Armbruster BlockDriver *drv = bdrv_find_format(format_name); 389b64ec4e4SFam Zheng return drv && bdrv_is_whitelisted(drv, read_only) ? drv : NULL; 390eb852011SMarkus Armbruster } 391eb852011SMarkus Armbruster 3925b7e1542SZhi Yong Wu typedef struct CreateCo { 3935b7e1542SZhi Yong Wu BlockDriver *drv; 3945b7e1542SZhi Yong Wu char *filename; 3955b7e1542SZhi Yong Wu QEMUOptionParameter *options; 3965b7e1542SZhi Yong Wu int ret; 397cc84d90fSMax Reitz Error *err; 3985b7e1542SZhi Yong Wu } CreateCo; 3995b7e1542SZhi Yong Wu 4005b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque) 4015b7e1542SZhi Yong Wu { 402cc84d90fSMax Reitz Error *local_err = NULL; 403cc84d90fSMax Reitz int ret; 404cc84d90fSMax Reitz 4055b7e1542SZhi Yong Wu CreateCo *cco = opaque; 4065b7e1542SZhi Yong Wu assert(cco->drv); 4075b7e1542SZhi Yong Wu 408cc84d90fSMax Reitz ret = cco->drv->bdrv_create(cco->filename, cco->options, &local_err); 409cc84d90fSMax Reitz if (error_is_set(&local_err)) { 410cc84d90fSMax Reitz error_propagate(&cco->err, local_err); 411cc84d90fSMax Reitz } 412cc84d90fSMax Reitz cco->ret = ret; 4135b7e1542SZhi Yong Wu } 4145b7e1542SZhi Yong Wu 4150e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename, 416cc84d90fSMax Reitz QEMUOptionParameter *options, Error **errp) 417ea2384d3Sbellard { 4185b7e1542SZhi Yong Wu int ret; 4190e7e1989SKevin Wolf 4205b7e1542SZhi Yong Wu Coroutine *co; 4215b7e1542SZhi Yong Wu CreateCo cco = { 4225b7e1542SZhi Yong Wu .drv = drv, 4235b7e1542SZhi Yong Wu .filename = g_strdup(filename), 4245b7e1542SZhi Yong Wu .options = options, 4255b7e1542SZhi Yong Wu .ret = NOT_DONE, 426cc84d90fSMax Reitz .err = NULL, 4275b7e1542SZhi Yong Wu }; 4285b7e1542SZhi Yong Wu 4295b7e1542SZhi Yong Wu if (!drv->bdrv_create) { 430cc84d90fSMax Reitz error_setg(errp, "Driver '%s' does not support image creation", drv->format_name); 43180168bffSLuiz Capitulino ret = -ENOTSUP; 43280168bffSLuiz Capitulino goto out; 4335b7e1542SZhi Yong Wu } 4345b7e1542SZhi Yong Wu 4355b7e1542SZhi Yong Wu if (qemu_in_coroutine()) { 4365b7e1542SZhi Yong Wu /* Fast-path if already in coroutine context */ 4375b7e1542SZhi Yong Wu bdrv_create_co_entry(&cco); 4385b7e1542SZhi Yong Wu } else { 4395b7e1542SZhi Yong Wu co = qemu_coroutine_create(bdrv_create_co_entry); 4405b7e1542SZhi Yong Wu qemu_coroutine_enter(co, &cco); 4415b7e1542SZhi Yong Wu while (cco.ret == NOT_DONE) { 4425b7e1542SZhi Yong Wu qemu_aio_wait(); 4435b7e1542SZhi Yong Wu } 4445b7e1542SZhi Yong Wu } 4455b7e1542SZhi Yong Wu 4465b7e1542SZhi Yong Wu ret = cco.ret; 447cc84d90fSMax Reitz if (ret < 0) { 448cc84d90fSMax Reitz if (error_is_set(&cco.err)) { 449cc84d90fSMax Reitz error_propagate(errp, cco.err); 450cc84d90fSMax Reitz } else { 451cc84d90fSMax Reitz error_setg_errno(errp, -ret, "Could not create image"); 452cc84d90fSMax Reitz } 453cc84d90fSMax Reitz } 4545b7e1542SZhi Yong Wu 45580168bffSLuiz Capitulino out: 45680168bffSLuiz Capitulino g_free(cco.filename); 4575b7e1542SZhi Yong Wu return ret; 458ea2384d3Sbellard } 459ea2384d3Sbellard 460cc84d90fSMax Reitz int bdrv_create_file(const char* filename, QEMUOptionParameter *options, 461cc84d90fSMax Reitz Error **errp) 46284a12e66SChristoph Hellwig { 46384a12e66SChristoph Hellwig BlockDriver *drv; 464cc84d90fSMax Reitz Error *local_err = NULL; 465cc84d90fSMax Reitz int ret; 46684a12e66SChristoph Hellwig 46798289620SKevin Wolf drv = bdrv_find_protocol(filename, true); 46884a12e66SChristoph Hellwig if (drv == NULL) { 469cc84d90fSMax Reitz error_setg(errp, "Could not find protocol for file '%s'", filename); 47016905d71SStefan Hajnoczi return -ENOENT; 47184a12e66SChristoph Hellwig } 47284a12e66SChristoph Hellwig 473cc84d90fSMax Reitz ret = bdrv_create(drv, filename, options, &local_err); 474cc84d90fSMax Reitz if (error_is_set(&local_err)) { 475cc84d90fSMax Reitz error_propagate(errp, local_err); 476cc84d90fSMax Reitz } 477cc84d90fSMax Reitz return ret; 47884a12e66SChristoph Hellwig } 47984a12e66SChristoph Hellwig 480eba25057SJim Meyering /* 481eba25057SJim Meyering * Create a uniquely-named empty temporary file. 482eba25057SJim Meyering * Return 0 upon success, otherwise a negative errno value. 483eba25057SJim Meyering */ 484eba25057SJim Meyering int get_tmp_filename(char *filename, int size) 485eba25057SJim Meyering { 486d5249393Sbellard #ifdef _WIN32 4873b9f94e1Sbellard char temp_dir[MAX_PATH]; 488eba25057SJim Meyering /* GetTempFileName requires that its output buffer (4th param) 489eba25057SJim Meyering have length MAX_PATH or greater. */ 490eba25057SJim Meyering assert(size >= MAX_PATH); 491eba25057SJim Meyering return (GetTempPath(MAX_PATH, temp_dir) 492eba25057SJim Meyering && GetTempFileName(temp_dir, "qem", 0, filename) 493eba25057SJim Meyering ? 0 : -GetLastError()); 494d5249393Sbellard #else 495ea2384d3Sbellard int fd; 4967ccfb2ebSblueswir1 const char *tmpdir; 4970badc1eeSaurel32 tmpdir = getenv("TMPDIR"); 4980badc1eeSaurel32 if (!tmpdir) 4990badc1eeSaurel32 tmpdir = "/tmp"; 500eba25057SJim Meyering if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) { 501eba25057SJim Meyering return -EOVERFLOW; 502ea2384d3Sbellard } 503eba25057SJim Meyering fd = mkstemp(filename); 504fe235a06SDunrong Huang if (fd < 0) { 505fe235a06SDunrong Huang return -errno; 506fe235a06SDunrong Huang } 507fe235a06SDunrong Huang if (close(fd) != 0) { 508fe235a06SDunrong Huang unlink(filename); 509eba25057SJim Meyering return -errno; 510eba25057SJim Meyering } 511eba25057SJim Meyering return 0; 512d5249393Sbellard #endif 513eba25057SJim Meyering } 514ea2384d3Sbellard 515f3a5d3f8SChristoph Hellwig /* 516f3a5d3f8SChristoph Hellwig * Detect host devices. By convention, /dev/cdrom[N] is always 517f3a5d3f8SChristoph Hellwig * recognized as a host CDROM. 518f3a5d3f8SChristoph Hellwig */ 519f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename) 520f3a5d3f8SChristoph Hellwig { 521508c7cb3SChristoph Hellwig int score_max = 0, score; 522508c7cb3SChristoph Hellwig BlockDriver *drv = NULL, *d; 523f3a5d3f8SChristoph Hellwig 5248a22f02aSStefan Hajnoczi QLIST_FOREACH(d, &bdrv_drivers, list) { 525508c7cb3SChristoph Hellwig if (d->bdrv_probe_device) { 526508c7cb3SChristoph Hellwig score = d->bdrv_probe_device(filename); 527508c7cb3SChristoph Hellwig if (score > score_max) { 528508c7cb3SChristoph Hellwig score_max = score; 529508c7cb3SChristoph Hellwig drv = d; 530f3a5d3f8SChristoph Hellwig } 531508c7cb3SChristoph Hellwig } 532f3a5d3f8SChristoph Hellwig } 533f3a5d3f8SChristoph Hellwig 534508c7cb3SChristoph Hellwig return drv; 535f3a5d3f8SChristoph Hellwig } 536f3a5d3f8SChristoph Hellwig 53798289620SKevin Wolf BlockDriver *bdrv_find_protocol(const char *filename, 53898289620SKevin Wolf bool allow_protocol_prefix) 53984a12e66SChristoph Hellwig { 54084a12e66SChristoph Hellwig BlockDriver *drv1; 54184a12e66SChristoph Hellwig char protocol[128]; 54284a12e66SChristoph Hellwig int len; 54384a12e66SChristoph Hellwig const char *p; 54484a12e66SChristoph Hellwig 54566f82ceeSKevin Wolf /* TODO Drivers without bdrv_file_open must be specified explicitly */ 54666f82ceeSKevin Wolf 54739508e7aSChristoph Hellwig /* 54839508e7aSChristoph Hellwig * XXX(hch): we really should not let host device detection 54939508e7aSChristoph Hellwig * override an explicit protocol specification, but moving this 55039508e7aSChristoph Hellwig * later breaks access to device names with colons in them. 55139508e7aSChristoph Hellwig * Thanks to the brain-dead persistent naming schemes on udev- 55239508e7aSChristoph Hellwig * based Linux systems those actually are quite common. 55339508e7aSChristoph Hellwig */ 55484a12e66SChristoph Hellwig drv1 = find_hdev_driver(filename); 55539508e7aSChristoph Hellwig if (drv1) { 55684a12e66SChristoph Hellwig return drv1; 55784a12e66SChristoph Hellwig } 55839508e7aSChristoph Hellwig 55998289620SKevin Wolf if (!path_has_protocol(filename) || !allow_protocol_prefix) { 56039508e7aSChristoph Hellwig return bdrv_find_format("file"); 56139508e7aSChristoph Hellwig } 56298289620SKevin Wolf 5639e0b22f4SStefan Hajnoczi p = strchr(filename, ':'); 5649e0b22f4SStefan Hajnoczi assert(p != NULL); 56584a12e66SChristoph Hellwig len = p - filename; 56684a12e66SChristoph Hellwig if (len > sizeof(protocol) - 1) 56784a12e66SChristoph Hellwig len = sizeof(protocol) - 1; 56884a12e66SChristoph Hellwig memcpy(protocol, filename, len); 56984a12e66SChristoph Hellwig protocol[len] = '\0'; 57084a12e66SChristoph Hellwig QLIST_FOREACH(drv1, &bdrv_drivers, list) { 57184a12e66SChristoph Hellwig if (drv1->protocol_name && 57284a12e66SChristoph Hellwig !strcmp(drv1->protocol_name, protocol)) { 57384a12e66SChristoph Hellwig return drv1; 57484a12e66SChristoph Hellwig } 57584a12e66SChristoph Hellwig } 57684a12e66SChristoph Hellwig return NULL; 57784a12e66SChristoph Hellwig } 57884a12e66SChristoph Hellwig 579f500a6d3SKevin Wolf static int find_image_format(BlockDriverState *bs, const char *filename, 58034b5d2c6SMax Reitz BlockDriver **pdrv, Error **errp) 581ea2384d3Sbellard { 582f500a6d3SKevin Wolf int score, score_max; 583ea2384d3Sbellard BlockDriver *drv1, *drv; 58483f64091Sbellard uint8_t buf[2048]; 585f500a6d3SKevin Wolf int ret = 0; 586f8ea0b00SNicholas Bellinger 58708a00559SKevin Wolf /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ 5888e895599SPaolo Bonzini if (bs->sg || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) { 589c98ac35dSStefan Weil drv = bdrv_find_format("raw"); 590c98ac35dSStefan Weil if (!drv) { 59134b5d2c6SMax Reitz error_setg(errp, "Could not find raw image format"); 592c98ac35dSStefan Weil ret = -ENOENT; 593c98ac35dSStefan Weil } 594c98ac35dSStefan Weil *pdrv = drv; 595c98ac35dSStefan Weil return ret; 5961a396859SNicholas A. Bellinger } 597f8ea0b00SNicholas Bellinger 59883f64091Sbellard ret = bdrv_pread(bs, 0, buf, sizeof(buf)); 599ea2384d3Sbellard if (ret < 0) { 60034b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not read image for determining its " 60134b5d2c6SMax Reitz "format"); 602c98ac35dSStefan Weil *pdrv = NULL; 603c98ac35dSStefan Weil return ret; 604ea2384d3Sbellard } 605ea2384d3Sbellard 606ea2384d3Sbellard score_max = 0; 60784a12e66SChristoph Hellwig drv = NULL; 6088a22f02aSStefan Hajnoczi QLIST_FOREACH(drv1, &bdrv_drivers, list) { 60983f64091Sbellard if (drv1->bdrv_probe) { 610ea2384d3Sbellard score = drv1->bdrv_probe(buf, ret, filename); 611ea2384d3Sbellard if (score > score_max) { 612ea2384d3Sbellard score_max = score; 613ea2384d3Sbellard drv = drv1; 614ea2384d3Sbellard } 615ea2384d3Sbellard } 61683f64091Sbellard } 617c98ac35dSStefan Weil if (!drv) { 61834b5d2c6SMax Reitz error_setg(errp, "Could not determine image format: No compatible " 61934b5d2c6SMax Reitz "driver found"); 620c98ac35dSStefan Weil ret = -ENOENT; 621c98ac35dSStefan Weil } 622c98ac35dSStefan Weil *pdrv = drv; 623c98ac35dSStefan Weil return ret; 624ea2384d3Sbellard } 625ea2384d3Sbellard 62651762288SStefan Hajnoczi /** 62751762288SStefan Hajnoczi * Set the current 'total_sectors' value 62851762288SStefan Hajnoczi */ 62951762288SStefan Hajnoczi static int refresh_total_sectors(BlockDriverState *bs, int64_t hint) 63051762288SStefan Hajnoczi { 63151762288SStefan Hajnoczi BlockDriver *drv = bs->drv; 63251762288SStefan Hajnoczi 633396759adSNicholas Bellinger /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */ 634396759adSNicholas Bellinger if (bs->sg) 635396759adSNicholas Bellinger return 0; 636396759adSNicholas Bellinger 63751762288SStefan Hajnoczi /* query actual device if possible, otherwise just trust the hint */ 63851762288SStefan Hajnoczi if (drv->bdrv_getlength) { 63951762288SStefan Hajnoczi int64_t length = drv->bdrv_getlength(bs); 64051762288SStefan Hajnoczi if (length < 0) { 64151762288SStefan Hajnoczi return length; 64251762288SStefan Hajnoczi } 64351762288SStefan Hajnoczi hint = length >> BDRV_SECTOR_BITS; 64451762288SStefan Hajnoczi } 64551762288SStefan Hajnoczi 64651762288SStefan Hajnoczi bs->total_sectors = hint; 64751762288SStefan Hajnoczi return 0; 64851762288SStefan Hajnoczi } 64951762288SStefan Hajnoczi 650c3993cdcSStefan Hajnoczi /** 6519e8f1835SPaolo Bonzini * Set open flags for a given discard mode 6529e8f1835SPaolo Bonzini * 6539e8f1835SPaolo Bonzini * Return 0 on success, -1 if the discard mode was invalid. 6549e8f1835SPaolo Bonzini */ 6559e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags) 6569e8f1835SPaolo Bonzini { 6579e8f1835SPaolo Bonzini *flags &= ~BDRV_O_UNMAP; 6589e8f1835SPaolo Bonzini 6599e8f1835SPaolo Bonzini if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) { 6609e8f1835SPaolo Bonzini /* do nothing */ 6619e8f1835SPaolo Bonzini } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) { 6629e8f1835SPaolo Bonzini *flags |= BDRV_O_UNMAP; 6639e8f1835SPaolo Bonzini } else { 6649e8f1835SPaolo Bonzini return -1; 6659e8f1835SPaolo Bonzini } 6669e8f1835SPaolo Bonzini 6679e8f1835SPaolo Bonzini return 0; 6689e8f1835SPaolo Bonzini } 6699e8f1835SPaolo Bonzini 6709e8f1835SPaolo Bonzini /** 671c3993cdcSStefan Hajnoczi * Set open flags for a given cache mode 672c3993cdcSStefan Hajnoczi * 673c3993cdcSStefan Hajnoczi * Return 0 on success, -1 if the cache mode was invalid. 674c3993cdcSStefan Hajnoczi */ 675c3993cdcSStefan Hajnoczi int bdrv_parse_cache_flags(const char *mode, int *flags) 676c3993cdcSStefan Hajnoczi { 677c3993cdcSStefan Hajnoczi *flags &= ~BDRV_O_CACHE_MASK; 678c3993cdcSStefan Hajnoczi 679c3993cdcSStefan Hajnoczi if (!strcmp(mode, "off") || !strcmp(mode, "none")) { 680c3993cdcSStefan Hajnoczi *flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB; 68192196b2fSStefan Hajnoczi } else if (!strcmp(mode, "directsync")) { 68292196b2fSStefan Hajnoczi *flags |= BDRV_O_NOCACHE; 683c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writeback")) { 684c3993cdcSStefan Hajnoczi *flags |= BDRV_O_CACHE_WB; 685c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "unsafe")) { 686c3993cdcSStefan Hajnoczi *flags |= BDRV_O_CACHE_WB; 687c3993cdcSStefan Hajnoczi *flags |= BDRV_O_NO_FLUSH; 688c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writethrough")) { 689c3993cdcSStefan Hajnoczi /* this is the default */ 690c3993cdcSStefan Hajnoczi } else { 691c3993cdcSStefan Hajnoczi return -1; 692c3993cdcSStefan Hajnoczi } 693c3993cdcSStefan Hajnoczi 694c3993cdcSStefan Hajnoczi return 0; 695c3993cdcSStefan Hajnoczi } 696c3993cdcSStefan Hajnoczi 69753fec9d3SStefan Hajnoczi /** 69853fec9d3SStefan Hajnoczi * The copy-on-read flag is actually a reference count so multiple users may 69953fec9d3SStefan Hajnoczi * use the feature without worrying about clobbering its previous state. 70053fec9d3SStefan Hajnoczi * Copy-on-read stays enabled until all users have called to disable it. 70153fec9d3SStefan Hajnoczi */ 70253fec9d3SStefan Hajnoczi void bdrv_enable_copy_on_read(BlockDriverState *bs) 70353fec9d3SStefan Hajnoczi { 70453fec9d3SStefan Hajnoczi bs->copy_on_read++; 70553fec9d3SStefan Hajnoczi } 70653fec9d3SStefan Hajnoczi 70753fec9d3SStefan Hajnoczi void bdrv_disable_copy_on_read(BlockDriverState *bs) 70853fec9d3SStefan Hajnoczi { 70953fec9d3SStefan Hajnoczi assert(bs->copy_on_read > 0); 71053fec9d3SStefan Hajnoczi bs->copy_on_read--; 71153fec9d3SStefan Hajnoczi } 71253fec9d3SStefan Hajnoczi 7137b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags) 7147b272452SKevin Wolf { 7157b272452SKevin Wolf int open_flags = flags | BDRV_O_CACHE_WB; 7167b272452SKevin Wolf 7177b272452SKevin Wolf /* 7187b272452SKevin Wolf * Clear flags that are internal to the block layer before opening the 7197b272452SKevin Wolf * image. 7207b272452SKevin Wolf */ 7217b272452SKevin Wolf open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); 7227b272452SKevin Wolf 7237b272452SKevin Wolf /* 7247b272452SKevin Wolf * Snapshots should be writable. 7257b272452SKevin Wolf */ 7267b272452SKevin Wolf if (bs->is_temporary) { 7277b272452SKevin Wolf open_flags |= BDRV_O_RDWR; 7287b272452SKevin Wolf } 7297b272452SKevin Wolf 7307b272452SKevin Wolf return open_flags; 7317b272452SKevin Wolf } 7327b272452SKevin Wolf 733b6ce07aaSKevin Wolf /* 73457915332SKevin Wolf * Common part for opening disk images and files 735b6ad491aSKevin Wolf * 736b6ad491aSKevin Wolf * Removes all processed options from *options. 73757915332SKevin Wolf */ 738f500a6d3SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BlockDriverState *file, 73934b5d2c6SMax Reitz QDict *options, int flags, BlockDriver *drv, Error **errp) 74057915332SKevin Wolf { 74157915332SKevin Wolf int ret, open_flags; 742035fccdfSKevin Wolf const char *filename; 74334b5d2c6SMax Reitz Error *local_err = NULL; 74457915332SKevin Wolf 74557915332SKevin Wolf assert(drv != NULL); 7466405875cSPaolo Bonzini assert(bs->file == NULL); 747707ff828SKevin Wolf assert(options != NULL && bs->options != options); 74857915332SKevin Wolf 74945673671SKevin Wolf if (file != NULL) { 75045673671SKevin Wolf filename = file->filename; 75145673671SKevin Wolf } else { 75245673671SKevin Wolf filename = qdict_get_try_str(options, "filename"); 75345673671SKevin Wolf } 75445673671SKevin Wolf 75545673671SKevin Wolf trace_bdrv_open_common(bs, filename ?: "", flags, drv->format_name); 75628dcee10SStefan Hajnoczi 7575d186eb0SKevin Wolf /* bdrv_open() with directly using a protocol as drv. This layer is already 7585d186eb0SKevin Wolf * opened, so assign it to bs (while file becomes a closed BlockDriverState) 7595d186eb0SKevin Wolf * and return immediately. */ 7605d186eb0SKevin Wolf if (file != NULL && drv->bdrv_file_open) { 7615d186eb0SKevin Wolf bdrv_swap(file, bs); 7625d186eb0SKevin Wolf return 0; 7635d186eb0SKevin Wolf } 7645d186eb0SKevin Wolf 76557915332SKevin Wolf bs->open_flags = flags; 76657915332SKevin Wolf bs->buffer_alignment = 512; 7670d51b4deSAsias He bs->zero_beyond_eof = true; 768b64ec4e4SFam Zheng open_flags = bdrv_open_flags(bs, flags); 769b64ec4e4SFam Zheng bs->read_only = !(open_flags & BDRV_O_RDWR); 770b64ec4e4SFam Zheng 771b64ec4e4SFam Zheng if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) { 77234b5d2c6SMax Reitz error_setg(errp, "Driver '%s' is not whitelisted", drv->format_name); 773b64ec4e4SFam Zheng return -ENOTSUP; 774b64ec4e4SFam Zheng } 77557915332SKevin Wolf 77653fec9d3SStefan Hajnoczi assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */ 777b64ec4e4SFam Zheng if (!bs->read_only && (flags & BDRV_O_COPY_ON_READ)) { 77853fec9d3SStefan Hajnoczi bdrv_enable_copy_on_read(bs); 77953fec9d3SStefan Hajnoczi } 78053fec9d3SStefan Hajnoczi 781c2ad1b0cSKevin Wolf if (filename != NULL) { 78257915332SKevin Wolf pstrcpy(bs->filename, sizeof(bs->filename), filename); 783c2ad1b0cSKevin Wolf } else { 784c2ad1b0cSKevin Wolf bs->filename[0] = '\0'; 785c2ad1b0cSKevin Wolf } 78657915332SKevin Wolf 78757915332SKevin Wolf bs->drv = drv; 7887267c094SAnthony Liguori bs->opaque = g_malloc0(drv->instance_size); 78957915332SKevin Wolf 79003f541bdSStefan Hajnoczi bs->enable_write_cache = !!(flags & BDRV_O_CACHE_WB); 791e7c63796SStefan Hajnoczi 79266f82ceeSKevin Wolf /* Open the image, either directly or using a protocol */ 79366f82ceeSKevin Wolf if (drv->bdrv_file_open) { 7945d186eb0SKevin Wolf assert(file == NULL); 795030be321SBenoît Canet assert(!drv->bdrv_needs_filename || filename != NULL); 79634b5d2c6SMax Reitz ret = drv->bdrv_file_open(bs, options, open_flags, &local_err); 797f500a6d3SKevin Wolf } else { 7982af5ef70SKevin Wolf if (file == NULL) { 79934b5d2c6SMax Reitz error_setg(errp, "Can't use '%s' as a block driver for the " 80034b5d2c6SMax Reitz "protocol level", drv->format_name); 8012af5ef70SKevin Wolf ret = -EINVAL; 8022af5ef70SKevin Wolf goto free_and_fail; 8032af5ef70SKevin Wolf } 804f500a6d3SKevin Wolf bs->file = file; 80534b5d2c6SMax Reitz ret = drv->bdrv_open(bs, options, open_flags, &local_err); 80666f82ceeSKevin Wolf } 80766f82ceeSKevin Wolf 80857915332SKevin Wolf if (ret < 0) { 80934b5d2c6SMax Reitz if (error_is_set(&local_err)) { 81034b5d2c6SMax Reitz error_propagate(errp, local_err); 81134b5d2c6SMax Reitz } else if (filename) { 81234b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not open '%s'", filename); 81334b5d2c6SMax Reitz } else { 81434b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not open image"); 81534b5d2c6SMax Reitz } 81657915332SKevin Wolf goto free_and_fail; 81757915332SKevin Wolf } 81857915332SKevin Wolf 81951762288SStefan Hajnoczi ret = refresh_total_sectors(bs, bs->total_sectors); 82051762288SStefan Hajnoczi if (ret < 0) { 82134b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not refresh total sector count"); 82251762288SStefan Hajnoczi goto free_and_fail; 82357915332SKevin Wolf } 82451762288SStefan Hajnoczi 82557915332SKevin Wolf #ifndef _WIN32 82657915332SKevin Wolf if (bs->is_temporary) { 827c2ad1b0cSKevin Wolf assert(filename != NULL); 82857915332SKevin Wolf unlink(filename); 82957915332SKevin Wolf } 83057915332SKevin Wolf #endif 83157915332SKevin Wolf return 0; 83257915332SKevin Wolf 83357915332SKevin Wolf free_and_fail: 83466f82ceeSKevin Wolf bs->file = NULL; 8357267c094SAnthony Liguori g_free(bs->opaque); 83657915332SKevin Wolf bs->opaque = NULL; 83757915332SKevin Wolf bs->drv = NULL; 83857915332SKevin Wolf return ret; 83957915332SKevin Wolf } 84057915332SKevin Wolf 84157915332SKevin Wolf /* 842b6ce07aaSKevin Wolf * Opens a file using a protocol (file, host_device, nbd, ...) 843787e4a85SKevin Wolf * 844787e4a85SKevin Wolf * options is a QDict of options to pass to the block drivers, or NULL for an 845787e4a85SKevin Wolf * empty set of options. The reference to the QDict belongs to the block layer 846787e4a85SKevin Wolf * after the call (even on failure), so if the caller intends to reuse the 847787e4a85SKevin Wolf * dictionary, it needs to use QINCREF() before calling bdrv_file_open. 848b6ce07aaSKevin Wolf */ 849787e4a85SKevin Wolf int bdrv_file_open(BlockDriverState **pbs, const char *filename, 85034b5d2c6SMax Reitz QDict *options, int flags, Error **errp) 851b338082bSbellard { 85283f64091Sbellard BlockDriverState *bs; 8536db95603SChristoph Hellwig BlockDriver *drv; 854c2ad1b0cSKevin Wolf const char *drvname; 85598289620SKevin Wolf bool allow_protocol_prefix = false; 85634b5d2c6SMax Reitz Error *local_err = NULL; 85783f64091Sbellard int ret; 8583b0d4f61Sbellard 859707ff828SKevin Wolf /* NULL means an empty set of options */ 860707ff828SKevin Wolf if (options == NULL) { 861707ff828SKevin Wolf options = qdict_new(); 8623b0d4f61Sbellard } 863707ff828SKevin Wolf 864707ff828SKevin Wolf bs = bdrv_new(""); 865707ff828SKevin Wolf bs->options = options; 866707ff828SKevin Wolf options = qdict_clone_shallow(options); 867707ff828SKevin Wolf 868035fccdfSKevin Wolf /* Fetch the file name from the options QDict if necessary */ 869035fccdfSKevin Wolf if (!filename) { 870035fccdfSKevin Wolf filename = qdict_get_try_str(options, "filename"); 871035fccdfSKevin Wolf } else if (filename && !qdict_haskey(options, "filename")) { 872035fccdfSKevin Wolf qdict_put(options, "filename", qstring_from_str(filename)); 87398289620SKevin Wolf allow_protocol_prefix = true; 874035fccdfSKevin Wolf } else { 87534b5d2c6SMax Reitz error_setg(errp, "Can't specify 'file' and 'filename' options at the " 87634b5d2c6SMax Reitz "same time"); 877035fccdfSKevin Wolf ret = -EINVAL; 878035fccdfSKevin Wolf goto fail; 879035fccdfSKevin Wolf } 880035fccdfSKevin Wolf 881c2ad1b0cSKevin Wolf /* Find the right block driver */ 882c2ad1b0cSKevin Wolf drvname = qdict_get_try_str(options, "driver"); 883c2ad1b0cSKevin Wolf if (drvname) { 884b64ec4e4SFam Zheng drv = bdrv_find_whitelisted_format(drvname, !(flags & BDRV_O_RDWR)); 88534b5d2c6SMax Reitz if (!drv) { 88634b5d2c6SMax Reitz error_setg(errp, "Unknown driver '%s'", drvname); 88734b5d2c6SMax Reitz } 888c2ad1b0cSKevin Wolf qdict_del(options, "driver"); 889c2ad1b0cSKevin Wolf } else if (filename) { 89098289620SKevin Wolf drv = bdrv_find_protocol(filename, allow_protocol_prefix); 89198289620SKevin Wolf if (!drv) { 89234b5d2c6SMax Reitz error_setg(errp, "Unknown protocol"); 89398289620SKevin Wolf } 894c2ad1b0cSKevin Wolf } else { 89534b5d2c6SMax Reitz error_setg(errp, "Must specify either driver or file"); 896c2ad1b0cSKevin Wolf drv = NULL; 897c2ad1b0cSKevin Wolf } 898c2ad1b0cSKevin Wolf 899c2ad1b0cSKevin Wolf if (!drv) { 90034b5d2c6SMax Reitz /* errp has been set already */ 901c2ad1b0cSKevin Wolf ret = -ENOENT; 902c2ad1b0cSKevin Wolf goto fail; 903c2ad1b0cSKevin Wolf } 904c2ad1b0cSKevin Wolf 905c2ad1b0cSKevin Wolf /* Parse the filename and open it */ 906c2ad1b0cSKevin Wolf if (drv->bdrv_parse_filename && filename) { 9076963a30dSKevin Wolf drv->bdrv_parse_filename(filename, options, &local_err); 9086963a30dSKevin Wolf if (error_is_set(&local_err)) { 90934b5d2c6SMax Reitz error_propagate(errp, local_err); 9106963a30dSKevin Wolf ret = -EINVAL; 9116963a30dSKevin Wolf goto fail; 9126963a30dSKevin Wolf } 91356d1b4d2SKevin Wolf qdict_del(options, "filename"); 914030be321SBenoît Canet } else if (drv->bdrv_needs_filename && !filename) { 91534b5d2c6SMax Reitz error_setg(errp, "The '%s' block driver requires a file name", 916c2ad1b0cSKevin Wolf drv->format_name); 917c2ad1b0cSKevin Wolf ret = -EINVAL; 918c2ad1b0cSKevin Wolf goto fail; 9196963a30dSKevin Wolf } 9206963a30dSKevin Wolf 92134b5d2c6SMax Reitz ret = bdrv_open_common(bs, NULL, options, flags, drv, &local_err); 922707ff828SKevin Wolf if (ret < 0) { 92334b5d2c6SMax Reitz error_propagate(errp, local_err); 924707ff828SKevin Wolf goto fail; 925707ff828SKevin Wolf } 926707ff828SKevin Wolf 927707ff828SKevin Wolf /* Check if any unknown options were used */ 928707ff828SKevin Wolf if (qdict_size(options) != 0) { 929707ff828SKevin Wolf const QDictEntry *entry = qdict_first(options); 93034b5d2c6SMax Reitz error_setg(errp, "Block protocol '%s' doesn't support the option '%s'", 931707ff828SKevin Wolf drv->format_name, entry->key); 932707ff828SKevin Wolf ret = -EINVAL; 933707ff828SKevin Wolf goto fail; 934707ff828SKevin Wolf } 935707ff828SKevin Wolf QDECREF(options); 936707ff828SKevin Wolf 93771d0770cSaliguori bs->growable = 1; 93883f64091Sbellard *pbs = bs; 93983f64091Sbellard return 0; 940707ff828SKevin Wolf 941707ff828SKevin Wolf fail: 942707ff828SKevin Wolf QDECREF(options); 943707ff828SKevin Wolf if (!bs->drv) { 944707ff828SKevin Wolf QDECREF(bs->options); 945707ff828SKevin Wolf } 9464f6fd349SFam Zheng bdrv_unref(bs); 947707ff828SKevin Wolf return ret; 9483b0d4f61Sbellard } 9493b0d4f61Sbellard 95031ca6d07SKevin Wolf /* 95131ca6d07SKevin Wolf * Opens the backing file for a BlockDriverState if not yet open 95231ca6d07SKevin Wolf * 95331ca6d07SKevin Wolf * options is a QDict of options to pass to the block drivers, or NULL for an 95431ca6d07SKevin Wolf * empty set of options. The reference to the QDict is transferred to this 95531ca6d07SKevin Wolf * function (even on failure), so if the caller intends to reuse the dictionary, 95631ca6d07SKevin Wolf * it needs to use QINCREF() before calling bdrv_file_open. 95731ca6d07SKevin Wolf */ 95834b5d2c6SMax Reitz int bdrv_open_backing_file(BlockDriverState *bs, QDict *options, Error **errp) 9599156df12SPaolo Bonzini { 9609156df12SPaolo Bonzini char backing_filename[PATH_MAX]; 9619156df12SPaolo Bonzini int back_flags, ret; 9629156df12SPaolo Bonzini BlockDriver *back_drv = NULL; 96334b5d2c6SMax Reitz Error *local_err = NULL; 9649156df12SPaolo Bonzini 9659156df12SPaolo Bonzini if (bs->backing_hd != NULL) { 96631ca6d07SKevin Wolf QDECREF(options); 9679156df12SPaolo Bonzini return 0; 9689156df12SPaolo Bonzini } 9699156df12SPaolo Bonzini 97031ca6d07SKevin Wolf /* NULL means an empty set of options */ 97131ca6d07SKevin Wolf if (options == NULL) { 97231ca6d07SKevin Wolf options = qdict_new(); 97331ca6d07SKevin Wolf } 97431ca6d07SKevin Wolf 9759156df12SPaolo Bonzini bs->open_flags &= ~BDRV_O_NO_BACKING; 9761cb6f506SKevin Wolf if (qdict_haskey(options, "file.filename")) { 9771cb6f506SKevin Wolf backing_filename[0] = '\0'; 9781cb6f506SKevin Wolf } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { 97931ca6d07SKevin Wolf QDECREF(options); 9809156df12SPaolo Bonzini return 0; 981dbecebddSFam Zheng } else { 982dbecebddSFam Zheng bdrv_get_full_backing_filename(bs, backing_filename, 983dbecebddSFam Zheng sizeof(backing_filename)); 9849156df12SPaolo Bonzini } 9859156df12SPaolo Bonzini 9869156df12SPaolo Bonzini bs->backing_hd = bdrv_new(""); 9879156df12SPaolo Bonzini 9889156df12SPaolo Bonzini if (bs->backing_format[0] != '\0') { 9899156df12SPaolo Bonzini back_drv = bdrv_find_format(bs->backing_format); 9909156df12SPaolo Bonzini } 9919156df12SPaolo Bonzini 9929156df12SPaolo Bonzini /* backing files always opened read-only */ 9939156df12SPaolo Bonzini back_flags = bs->open_flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT); 9949156df12SPaolo Bonzini 99531ca6d07SKevin Wolf ret = bdrv_open(bs->backing_hd, 99631ca6d07SKevin Wolf *backing_filename ? backing_filename : NULL, options, 99734b5d2c6SMax Reitz back_flags, back_drv, &local_err); 998dbecebddSFam Zheng pstrcpy(bs->backing_file, sizeof(bs->backing_file), 999dbecebddSFam Zheng bs->backing_hd->file->filename); 10009156df12SPaolo Bonzini if (ret < 0) { 10014f6fd349SFam Zheng bdrv_unref(bs->backing_hd); 10029156df12SPaolo Bonzini bs->backing_hd = NULL; 10039156df12SPaolo Bonzini bs->open_flags |= BDRV_O_NO_BACKING; 100434b5d2c6SMax Reitz error_propagate(errp, local_err); 10059156df12SPaolo Bonzini return ret; 10069156df12SPaolo Bonzini } 10079156df12SPaolo Bonzini return 0; 10089156df12SPaolo Bonzini } 10099156df12SPaolo Bonzini 1010b6ce07aaSKevin Wolf /* 1011b6ce07aaSKevin Wolf * Opens a disk image (raw, qcow2, vmdk, ...) 1012de9c0cecSKevin Wolf * 1013de9c0cecSKevin Wolf * options is a QDict of options to pass to the block drivers, or NULL for an 1014de9c0cecSKevin Wolf * empty set of options. The reference to the QDict belongs to the block layer 1015de9c0cecSKevin Wolf * after the call (even on failure), so if the caller intends to reuse the 1016de9c0cecSKevin Wolf * dictionary, it needs to use QINCREF() before calling bdrv_open. 1017b6ce07aaSKevin Wolf */ 1018de9c0cecSKevin Wolf int bdrv_open(BlockDriverState *bs, const char *filename, QDict *options, 101934b5d2c6SMax Reitz int flags, BlockDriver *drv, Error **errp) 1020ea2384d3Sbellard { 1021b6ce07aaSKevin Wolf int ret; 102289c9bc3dSStefan Weil /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */ 102389c9bc3dSStefan Weil char tmp_filename[PATH_MAX + 1]; 1024f500a6d3SKevin Wolf BlockDriverState *file = NULL; 1025707ff828SKevin Wolf QDict *file_options = NULL; 102674fe54f2SKevin Wolf const char *drvname; 102734b5d2c6SMax Reitz Error *local_err = NULL; 102833e3963eSbellard 1029de9c0cecSKevin Wolf /* NULL means an empty set of options */ 1030de9c0cecSKevin Wolf if (options == NULL) { 1031de9c0cecSKevin Wolf options = qdict_new(); 1032de9c0cecSKevin Wolf } 1033de9c0cecSKevin Wolf 1034de9c0cecSKevin Wolf bs->options = options; 1035b6ad491aSKevin Wolf options = qdict_clone_shallow(options); 1036de9c0cecSKevin Wolf 1037de9c0cecSKevin Wolf /* For snapshot=on, create a temporary qcow2 overlay */ 103883f64091Sbellard if (flags & BDRV_O_SNAPSHOT) { 1039ea2384d3Sbellard BlockDriverState *bs1; 1040ea2384d3Sbellard int64_t total_size; 104191a073a9SKevin Wolf BlockDriver *bdrv_qcow2; 104208b392e1SKevin Wolf QEMUOptionParameter *create_options; 1043b6ce07aaSKevin Wolf char backing_filename[PATH_MAX]; 104433e3963eSbellard 1045c2ad1b0cSKevin Wolf if (qdict_size(options) != 0) { 104634b5d2c6SMax Reitz error_setg(errp, "Can't use snapshot=on with driver-specific options"); 1047c2ad1b0cSKevin Wolf ret = -EINVAL; 1048c2ad1b0cSKevin Wolf goto fail; 1049c2ad1b0cSKevin Wolf } 1050c2ad1b0cSKevin Wolf assert(filename != NULL); 1051c2ad1b0cSKevin Wolf 1052ea2384d3Sbellard /* if snapshot, we create a temporary backing file and open it 1053ea2384d3Sbellard instead of opening 'filename' directly */ 1054ea2384d3Sbellard 1055ea2384d3Sbellard /* if there is a backing file, use it */ 1056ea2384d3Sbellard bs1 = bdrv_new(""); 105734b5d2c6SMax Reitz ret = bdrv_open(bs1, filename, NULL, 0, drv, &local_err); 105851d7c00cSaliguori if (ret < 0) { 10594f6fd349SFam Zheng bdrv_unref(bs1); 1060de9c0cecSKevin Wolf goto fail; 1061ea2384d3Sbellard } 10623e82990bSJes Sorensen total_size = bdrv_getlength(bs1) & BDRV_SECTOR_MASK; 10637c96d46eSaliguori 10644f6fd349SFam Zheng bdrv_unref(bs1); 1065ea2384d3Sbellard 1066eba25057SJim Meyering ret = get_tmp_filename(tmp_filename, sizeof(tmp_filename)); 1067eba25057SJim Meyering if (ret < 0) { 106834b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not get temporary filename"); 1069de9c0cecSKevin Wolf goto fail; 1070eba25057SJim Meyering } 10717c96d46eSaliguori 10727c96d46eSaliguori /* Real path is meaningless for protocols */ 10734d70655bSStefan Hajnoczi if (path_has_protocol(filename)) { 10747c96d46eSaliguori snprintf(backing_filename, sizeof(backing_filename), 10757c96d46eSaliguori "%s", filename); 1076de9c0cecSKevin Wolf } else if (!realpath(filename, backing_filename)) { 107734b5d2c6SMax Reitz error_setg_errno(errp, errno, "Could not resolve path '%s'", filename); 1078de9c0cecSKevin Wolf ret = -errno; 1079de9c0cecSKevin Wolf goto fail; 1080de9c0cecSKevin Wolf } 10817c96d46eSaliguori 108291a073a9SKevin Wolf bdrv_qcow2 = bdrv_find_format("qcow2"); 108308b392e1SKevin Wolf create_options = parse_option_parameters("", bdrv_qcow2->create_options, 108408b392e1SKevin Wolf NULL); 108591a073a9SKevin Wolf 108608b392e1SKevin Wolf set_option_parameter_int(create_options, BLOCK_OPT_SIZE, total_size); 108708b392e1SKevin Wolf set_option_parameter(create_options, BLOCK_OPT_BACKING_FILE, 108808b392e1SKevin Wolf backing_filename); 108991a073a9SKevin Wolf if (drv) { 109008b392e1SKevin Wolf set_option_parameter(create_options, BLOCK_OPT_BACKING_FMT, 109191a073a9SKevin Wolf drv->format_name); 109291a073a9SKevin Wolf } 109391a073a9SKevin Wolf 1094cc84d90fSMax Reitz ret = bdrv_create(bdrv_qcow2, tmp_filename, create_options, &local_err); 109508b392e1SKevin Wolf free_option_parameters(create_options); 109651d7c00cSaliguori if (ret < 0) { 109734b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not create temporary overlay " 1098cc84d90fSMax Reitz "'%s': %s", tmp_filename, 1099cc84d90fSMax Reitz error_get_pretty(local_err)); 1100cc84d90fSMax Reitz error_free(local_err); 1101cc84d90fSMax Reitz local_err = NULL; 1102de9c0cecSKevin Wolf goto fail; 1103ea2384d3Sbellard } 110491a073a9SKevin Wolf 1105ea2384d3Sbellard filename = tmp_filename; 110691a073a9SKevin Wolf drv = bdrv_qcow2; 1107ea2384d3Sbellard bs->is_temporary = 1; 1108ea2384d3Sbellard } 1109ea2384d3Sbellard 1110f500a6d3SKevin Wolf /* Open image file without format layer */ 1111be028adcSJeff Cody if (flags & BDRV_O_RDWR) { 1112be028adcSJeff Cody flags |= BDRV_O_ALLOW_RDWR; 1113be028adcSJeff Cody } 1114be028adcSJeff Cody 11155726d872SBenoît Canet qdict_extract_subqdict(options, &file_options, "file."); 1116707ff828SKevin Wolf 1117707ff828SKevin Wolf ret = bdrv_file_open(&file, filename, file_options, 111834b5d2c6SMax Reitz bdrv_open_flags(bs, flags | BDRV_O_UNMAP), &local_err); 1119f500a6d3SKevin Wolf if (ret < 0) { 1120de9c0cecSKevin Wolf goto fail; 1121f500a6d3SKevin Wolf } 1122f500a6d3SKevin Wolf 1123f500a6d3SKevin Wolf /* Find the right image format driver */ 112474fe54f2SKevin Wolf drvname = qdict_get_try_str(options, "driver"); 112574fe54f2SKevin Wolf if (drvname) { 112674fe54f2SKevin Wolf drv = bdrv_find_whitelisted_format(drvname, !(flags & BDRV_O_RDWR)); 112774fe54f2SKevin Wolf qdict_del(options, "driver"); 112874fe54f2SKevin Wolf } 112974fe54f2SKevin Wolf 1130f500a6d3SKevin Wolf if (!drv) { 113134b5d2c6SMax Reitz ret = find_image_format(file, filename, &drv, &local_err); 1132f500a6d3SKevin Wolf } 1133f500a6d3SKevin Wolf 1134f500a6d3SKevin Wolf if (!drv) { 1135f500a6d3SKevin Wolf goto unlink_and_fail; 1136f500a6d3SKevin Wolf } 1137f500a6d3SKevin Wolf 1138b6ce07aaSKevin Wolf /* Open the image */ 113934b5d2c6SMax Reitz ret = bdrv_open_common(bs, file, options, flags, drv, &local_err); 1140b6ce07aaSKevin Wolf if (ret < 0) { 11416987307cSChristoph Hellwig goto unlink_and_fail; 11426987307cSChristoph Hellwig } 11436987307cSChristoph Hellwig 1144f500a6d3SKevin Wolf if (bs->file != file) { 11454f6fd349SFam Zheng bdrv_unref(file); 1146f500a6d3SKevin Wolf file = NULL; 1147f500a6d3SKevin Wolf } 1148f500a6d3SKevin Wolf 1149b6ce07aaSKevin Wolf /* If there is a backing file, use it */ 11509156df12SPaolo Bonzini if ((flags & BDRV_O_NO_BACKING) == 0) { 115131ca6d07SKevin Wolf QDict *backing_options; 115231ca6d07SKevin Wolf 11535726d872SBenoît Canet qdict_extract_subqdict(options, &backing_options, "backing."); 115434b5d2c6SMax Reitz ret = bdrv_open_backing_file(bs, backing_options, &local_err); 1155b6ce07aaSKevin Wolf if (ret < 0) { 1156b6ad491aSKevin Wolf goto close_and_fail; 1157b6ce07aaSKevin Wolf } 1158b6ce07aaSKevin Wolf } 1159b6ce07aaSKevin Wolf 1160b6ad491aSKevin Wolf /* Check if any unknown options were used */ 1161b6ad491aSKevin Wolf if (qdict_size(options) != 0) { 1162b6ad491aSKevin Wolf const QDictEntry *entry = qdict_first(options); 116334b5d2c6SMax Reitz error_setg(errp, "Block format '%s' used by device '%s' doesn't " 116434b5d2c6SMax Reitz "support the option '%s'", drv->format_name, bs->device_name, 116534b5d2c6SMax Reitz entry->key); 1166b6ad491aSKevin Wolf 1167b6ad491aSKevin Wolf ret = -EINVAL; 1168b6ad491aSKevin Wolf goto close_and_fail; 1169b6ad491aSKevin Wolf } 1170b6ad491aSKevin Wolf QDECREF(options); 1171b6ad491aSKevin Wolf 1172b6ce07aaSKevin Wolf if (!bdrv_key_required(bs)) { 11737d4b4ba5SMarkus Armbruster bdrv_dev_change_media_cb(bs, true); 1174b6ce07aaSKevin Wolf } 1175b6ce07aaSKevin Wolf 1176b6ce07aaSKevin Wolf return 0; 1177b6ce07aaSKevin Wolf 1178b6ce07aaSKevin Wolf unlink_and_fail: 1179f500a6d3SKevin Wolf if (file != NULL) { 11804f6fd349SFam Zheng bdrv_unref(file); 1181f500a6d3SKevin Wolf } 1182b6ce07aaSKevin Wolf if (bs->is_temporary) { 1183b6ce07aaSKevin Wolf unlink(filename); 1184b6ce07aaSKevin Wolf } 1185de9c0cecSKevin Wolf fail: 1186de9c0cecSKevin Wolf QDECREF(bs->options); 1187b6ad491aSKevin Wolf QDECREF(options); 1188de9c0cecSKevin Wolf bs->options = NULL; 118934b5d2c6SMax Reitz if (error_is_set(&local_err)) { 119034b5d2c6SMax Reitz error_propagate(errp, local_err); 119134b5d2c6SMax Reitz } 1192b6ad491aSKevin Wolf return ret; 1193de9c0cecSKevin Wolf 1194b6ad491aSKevin Wolf close_and_fail: 1195b6ad491aSKevin Wolf bdrv_close(bs); 1196b6ad491aSKevin Wolf QDECREF(options); 119734b5d2c6SMax Reitz if (error_is_set(&local_err)) { 119834b5d2c6SMax Reitz error_propagate(errp, local_err); 119934b5d2c6SMax Reitz } 1200b6ce07aaSKevin Wolf return ret; 1201b6ce07aaSKevin Wolf } 1202b6ce07aaSKevin Wolf 1203e971aa12SJeff Cody typedef struct BlockReopenQueueEntry { 1204e971aa12SJeff Cody bool prepared; 1205e971aa12SJeff Cody BDRVReopenState state; 1206e971aa12SJeff Cody QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry; 1207e971aa12SJeff Cody } BlockReopenQueueEntry; 1208e971aa12SJeff Cody 1209e971aa12SJeff Cody /* 1210e971aa12SJeff Cody * Adds a BlockDriverState to a simple queue for an atomic, transactional 1211e971aa12SJeff Cody * reopen of multiple devices. 1212e971aa12SJeff Cody * 1213e971aa12SJeff Cody * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT 1214e971aa12SJeff Cody * already performed, or alternatively may be NULL a new BlockReopenQueue will 1215e971aa12SJeff Cody * be created and initialized. This newly created BlockReopenQueue should be 1216e971aa12SJeff Cody * passed back in for subsequent calls that are intended to be of the same 1217e971aa12SJeff Cody * atomic 'set'. 1218e971aa12SJeff Cody * 1219e971aa12SJeff Cody * bs is the BlockDriverState to add to the reopen queue. 1220e971aa12SJeff Cody * 1221e971aa12SJeff Cody * flags contains the open flags for the associated bs 1222e971aa12SJeff Cody * 1223e971aa12SJeff Cody * returns a pointer to bs_queue, which is either the newly allocated 1224e971aa12SJeff Cody * bs_queue, or the existing bs_queue being used. 1225e971aa12SJeff Cody * 1226e971aa12SJeff Cody */ 1227e971aa12SJeff Cody BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, 1228e971aa12SJeff Cody BlockDriverState *bs, int flags) 1229e971aa12SJeff Cody { 1230e971aa12SJeff Cody assert(bs != NULL); 1231e971aa12SJeff Cody 1232e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry; 1233e971aa12SJeff Cody if (bs_queue == NULL) { 1234e971aa12SJeff Cody bs_queue = g_new0(BlockReopenQueue, 1); 1235e971aa12SJeff Cody QSIMPLEQ_INIT(bs_queue); 1236e971aa12SJeff Cody } 1237e971aa12SJeff Cody 1238e971aa12SJeff Cody if (bs->file) { 1239e971aa12SJeff Cody bdrv_reopen_queue(bs_queue, bs->file, flags); 1240e971aa12SJeff Cody } 1241e971aa12SJeff Cody 1242e971aa12SJeff Cody bs_entry = g_new0(BlockReopenQueueEntry, 1); 1243e971aa12SJeff Cody QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry); 1244e971aa12SJeff Cody 1245e971aa12SJeff Cody bs_entry->state.bs = bs; 1246e971aa12SJeff Cody bs_entry->state.flags = flags; 1247e971aa12SJeff Cody 1248e971aa12SJeff Cody return bs_queue; 1249e971aa12SJeff Cody } 1250e971aa12SJeff Cody 1251e971aa12SJeff Cody /* 1252e971aa12SJeff Cody * Reopen multiple BlockDriverStates atomically & transactionally. 1253e971aa12SJeff Cody * 1254e971aa12SJeff Cody * The queue passed in (bs_queue) must have been built up previous 1255e971aa12SJeff Cody * via bdrv_reopen_queue(). 1256e971aa12SJeff Cody * 1257e971aa12SJeff Cody * Reopens all BDS specified in the queue, with the appropriate 1258e971aa12SJeff Cody * flags. All devices are prepared for reopen, and failure of any 1259e971aa12SJeff Cody * device will cause all device changes to be abandonded, and intermediate 1260e971aa12SJeff Cody * data cleaned up. 1261e971aa12SJeff Cody * 1262e971aa12SJeff Cody * If all devices prepare successfully, then the changes are committed 1263e971aa12SJeff Cody * to all devices. 1264e971aa12SJeff Cody * 1265e971aa12SJeff Cody */ 1266e971aa12SJeff Cody int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp) 1267e971aa12SJeff Cody { 1268e971aa12SJeff Cody int ret = -1; 1269e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry, *next; 1270e971aa12SJeff Cody Error *local_err = NULL; 1271e971aa12SJeff Cody 1272e971aa12SJeff Cody assert(bs_queue != NULL); 1273e971aa12SJeff Cody 1274e971aa12SJeff Cody bdrv_drain_all(); 1275e971aa12SJeff Cody 1276e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 1277e971aa12SJeff Cody if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) { 1278e971aa12SJeff Cody error_propagate(errp, local_err); 1279e971aa12SJeff Cody goto cleanup; 1280e971aa12SJeff Cody } 1281e971aa12SJeff Cody bs_entry->prepared = true; 1282e971aa12SJeff Cody } 1283e971aa12SJeff Cody 1284e971aa12SJeff Cody /* If we reach this point, we have success and just need to apply the 1285e971aa12SJeff Cody * changes 1286e971aa12SJeff Cody */ 1287e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 1288e971aa12SJeff Cody bdrv_reopen_commit(&bs_entry->state); 1289e971aa12SJeff Cody } 1290e971aa12SJeff Cody 1291e971aa12SJeff Cody ret = 0; 1292e971aa12SJeff Cody 1293e971aa12SJeff Cody cleanup: 1294e971aa12SJeff Cody QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { 1295e971aa12SJeff Cody if (ret && bs_entry->prepared) { 1296e971aa12SJeff Cody bdrv_reopen_abort(&bs_entry->state); 1297e971aa12SJeff Cody } 1298e971aa12SJeff Cody g_free(bs_entry); 1299e971aa12SJeff Cody } 1300e971aa12SJeff Cody g_free(bs_queue); 1301e971aa12SJeff Cody return ret; 1302e971aa12SJeff Cody } 1303e971aa12SJeff Cody 1304e971aa12SJeff Cody 1305e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */ 1306e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp) 1307e971aa12SJeff Cody { 1308e971aa12SJeff Cody int ret = -1; 1309e971aa12SJeff Cody Error *local_err = NULL; 1310e971aa12SJeff Cody BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, bdrv_flags); 1311e971aa12SJeff Cody 1312e971aa12SJeff Cody ret = bdrv_reopen_multiple(queue, &local_err); 1313e971aa12SJeff Cody if (local_err != NULL) { 1314e971aa12SJeff Cody error_propagate(errp, local_err); 1315e971aa12SJeff Cody } 1316e971aa12SJeff Cody return ret; 1317e971aa12SJeff Cody } 1318e971aa12SJeff Cody 1319e971aa12SJeff Cody 1320e971aa12SJeff Cody /* 1321e971aa12SJeff Cody * Prepares a BlockDriverState for reopen. All changes are staged in the 1322e971aa12SJeff Cody * 'opaque' field of the BDRVReopenState, which is used and allocated by 1323e971aa12SJeff Cody * the block driver layer .bdrv_reopen_prepare() 1324e971aa12SJeff Cody * 1325e971aa12SJeff Cody * bs is the BlockDriverState to reopen 1326e971aa12SJeff Cody * flags are the new open flags 1327e971aa12SJeff Cody * queue is the reopen queue 1328e971aa12SJeff Cody * 1329e971aa12SJeff Cody * Returns 0 on success, non-zero on error. On error errp will be set 1330e971aa12SJeff Cody * as well. 1331e971aa12SJeff Cody * 1332e971aa12SJeff Cody * On failure, bdrv_reopen_abort() will be called to clean up any data. 1333e971aa12SJeff Cody * It is the responsibility of the caller to then call the abort() or 1334e971aa12SJeff Cody * commit() for any other BDS that have been left in a prepare() state 1335e971aa12SJeff Cody * 1336e971aa12SJeff Cody */ 1337e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue, 1338e971aa12SJeff Cody Error **errp) 1339e971aa12SJeff Cody { 1340e971aa12SJeff Cody int ret = -1; 1341e971aa12SJeff Cody Error *local_err = NULL; 1342e971aa12SJeff Cody BlockDriver *drv; 1343e971aa12SJeff Cody 1344e971aa12SJeff Cody assert(reopen_state != NULL); 1345e971aa12SJeff Cody assert(reopen_state->bs->drv != NULL); 1346e971aa12SJeff Cody drv = reopen_state->bs->drv; 1347e971aa12SJeff Cody 1348e971aa12SJeff Cody /* if we are to stay read-only, do not allow permission change 1349e971aa12SJeff Cody * to r/w */ 1350e971aa12SJeff Cody if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) && 1351e971aa12SJeff Cody reopen_state->flags & BDRV_O_RDWR) { 1352e971aa12SJeff Cody error_set(errp, QERR_DEVICE_IS_READ_ONLY, 1353e971aa12SJeff Cody reopen_state->bs->device_name); 1354e971aa12SJeff Cody goto error; 1355e971aa12SJeff Cody } 1356e971aa12SJeff Cody 1357e971aa12SJeff Cody 1358e971aa12SJeff Cody ret = bdrv_flush(reopen_state->bs); 1359e971aa12SJeff Cody if (ret) { 1360e971aa12SJeff Cody error_set(errp, ERROR_CLASS_GENERIC_ERROR, "Error (%s) flushing drive", 1361e971aa12SJeff Cody strerror(-ret)); 1362e971aa12SJeff Cody goto error; 1363e971aa12SJeff Cody } 1364e971aa12SJeff Cody 1365e971aa12SJeff Cody if (drv->bdrv_reopen_prepare) { 1366e971aa12SJeff Cody ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); 1367e971aa12SJeff Cody if (ret) { 1368e971aa12SJeff Cody if (local_err != NULL) { 1369e971aa12SJeff Cody error_propagate(errp, local_err); 1370e971aa12SJeff Cody } else { 1371d8b6895fSLuiz Capitulino error_setg(errp, "failed while preparing to reopen image '%s'", 1372e971aa12SJeff Cody reopen_state->bs->filename); 1373e971aa12SJeff Cody } 1374e971aa12SJeff Cody goto error; 1375e971aa12SJeff Cody } 1376e971aa12SJeff Cody } else { 1377e971aa12SJeff Cody /* It is currently mandatory to have a bdrv_reopen_prepare() 1378e971aa12SJeff Cody * handler for each supported drv. */ 1379e971aa12SJeff Cody error_set(errp, QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED, 1380e971aa12SJeff Cody drv->format_name, reopen_state->bs->device_name, 1381e971aa12SJeff Cody "reopening of file"); 1382e971aa12SJeff Cody ret = -1; 1383e971aa12SJeff Cody goto error; 1384e971aa12SJeff Cody } 1385e971aa12SJeff Cody 1386e971aa12SJeff Cody ret = 0; 1387e971aa12SJeff Cody 1388e971aa12SJeff Cody error: 1389e971aa12SJeff Cody return ret; 1390e971aa12SJeff Cody } 1391e971aa12SJeff Cody 1392e971aa12SJeff Cody /* 1393e971aa12SJeff Cody * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and 1394e971aa12SJeff Cody * makes them final by swapping the staging BlockDriverState contents into 1395e971aa12SJeff Cody * the active BlockDriverState contents. 1396e971aa12SJeff Cody */ 1397e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state) 1398e971aa12SJeff Cody { 1399e971aa12SJeff Cody BlockDriver *drv; 1400e971aa12SJeff Cody 1401e971aa12SJeff Cody assert(reopen_state != NULL); 1402e971aa12SJeff Cody drv = reopen_state->bs->drv; 1403e971aa12SJeff Cody assert(drv != NULL); 1404e971aa12SJeff Cody 1405e971aa12SJeff Cody /* If there are any driver level actions to take */ 1406e971aa12SJeff Cody if (drv->bdrv_reopen_commit) { 1407e971aa12SJeff Cody drv->bdrv_reopen_commit(reopen_state); 1408e971aa12SJeff Cody } 1409e971aa12SJeff Cody 1410e971aa12SJeff Cody /* set BDS specific flags now */ 1411e971aa12SJeff Cody reopen_state->bs->open_flags = reopen_state->flags; 1412e971aa12SJeff Cody reopen_state->bs->enable_write_cache = !!(reopen_state->flags & 1413e971aa12SJeff Cody BDRV_O_CACHE_WB); 1414e971aa12SJeff Cody reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR); 1415e971aa12SJeff Cody } 1416e971aa12SJeff Cody 1417e971aa12SJeff Cody /* 1418e971aa12SJeff Cody * Abort the reopen, and delete and free the staged changes in 1419e971aa12SJeff Cody * reopen_state 1420e971aa12SJeff Cody */ 1421e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state) 1422e971aa12SJeff Cody { 1423e971aa12SJeff Cody BlockDriver *drv; 1424e971aa12SJeff Cody 1425e971aa12SJeff Cody assert(reopen_state != NULL); 1426e971aa12SJeff Cody drv = reopen_state->bs->drv; 1427e971aa12SJeff Cody assert(drv != NULL); 1428e971aa12SJeff Cody 1429e971aa12SJeff Cody if (drv->bdrv_reopen_abort) { 1430e971aa12SJeff Cody drv->bdrv_reopen_abort(reopen_state); 1431e971aa12SJeff Cody } 1432e971aa12SJeff Cody } 1433e971aa12SJeff Cody 1434e971aa12SJeff Cody 1435fc01f7e7Sbellard void bdrv_close(BlockDriverState *bs) 1436fc01f7e7Sbellard { 14373e914655SPaolo Bonzini if (bs->job) { 14383e914655SPaolo Bonzini block_job_cancel_sync(bs->job); 14393e914655SPaolo Bonzini } 144058fda173SStefan Hajnoczi bdrv_drain_all(); /* complete I/O */ 144158fda173SStefan Hajnoczi bdrv_flush(bs); 144258fda173SStefan Hajnoczi bdrv_drain_all(); /* in case flush left pending I/O */ 1443d7d512f6SPaolo Bonzini notifier_list_notify(&bs->close_notifiers, bs); 14447094f12fSKevin Wolf 14453cbc002cSPaolo Bonzini if (bs->drv) { 1446557df6acSStefan Hajnoczi if (bs->backing_hd) { 14474f6fd349SFam Zheng bdrv_unref(bs->backing_hd); 1448557df6acSStefan Hajnoczi bs->backing_hd = NULL; 1449557df6acSStefan Hajnoczi } 1450ea2384d3Sbellard bs->drv->bdrv_close(bs); 14517267c094SAnthony Liguori g_free(bs->opaque); 1452ea2384d3Sbellard #ifdef _WIN32 1453ea2384d3Sbellard if (bs->is_temporary) { 1454ea2384d3Sbellard unlink(bs->filename); 1455ea2384d3Sbellard } 145667b915a5Sbellard #endif 1457ea2384d3Sbellard bs->opaque = NULL; 1458ea2384d3Sbellard bs->drv = NULL; 145953fec9d3SStefan Hajnoczi bs->copy_on_read = 0; 1460a275fa42SPaolo Bonzini bs->backing_file[0] = '\0'; 1461a275fa42SPaolo Bonzini bs->backing_format[0] = '\0'; 14626405875cSPaolo Bonzini bs->total_sectors = 0; 14636405875cSPaolo Bonzini bs->encrypted = 0; 14646405875cSPaolo Bonzini bs->valid_key = 0; 14656405875cSPaolo Bonzini bs->sg = 0; 14666405875cSPaolo Bonzini bs->growable = 0; 14670d51b4deSAsias He bs->zero_beyond_eof = false; 1468de9c0cecSKevin Wolf QDECREF(bs->options); 1469de9c0cecSKevin Wolf bs->options = NULL; 1470b338082bSbellard 147166f82ceeSKevin Wolf if (bs->file != NULL) { 14724f6fd349SFam Zheng bdrv_unref(bs->file); 14730ac9377dSPaolo Bonzini bs->file = NULL; 147466f82ceeSKevin Wolf } 14759ca11154SPavel Hrdina } 147666f82ceeSKevin Wolf 14777d4b4ba5SMarkus Armbruster bdrv_dev_change_media_cb(bs, false); 147898f90dbaSZhi Yong Wu 147998f90dbaSZhi Yong Wu /*throttling disk I/O limits*/ 148098f90dbaSZhi Yong Wu if (bs->io_limits_enabled) { 148198f90dbaSZhi Yong Wu bdrv_io_limits_disable(bs); 148298f90dbaSZhi Yong Wu } 1483b338082bSbellard } 1484b338082bSbellard 14852bc93fedSMORITA Kazutaka void bdrv_close_all(void) 14862bc93fedSMORITA Kazutaka { 14872bc93fedSMORITA Kazutaka BlockDriverState *bs; 14882bc93fedSMORITA Kazutaka 14892bc93fedSMORITA Kazutaka QTAILQ_FOREACH(bs, &bdrv_states, list) { 14902bc93fedSMORITA Kazutaka bdrv_close(bs); 14912bc93fedSMORITA Kazutaka } 14922bc93fedSMORITA Kazutaka } 14932bc93fedSMORITA Kazutaka 149488266f5aSStefan Hajnoczi /* Check if any requests are in-flight (including throttled requests) */ 149588266f5aSStefan Hajnoczi static bool bdrv_requests_pending(BlockDriverState *bs) 149688266f5aSStefan Hajnoczi { 149788266f5aSStefan Hajnoczi if (!QLIST_EMPTY(&bs->tracked_requests)) { 149888266f5aSStefan Hajnoczi return true; 149988266f5aSStefan Hajnoczi } 1500cc0681c4SBenoît Canet if (!qemu_co_queue_empty(&bs->throttled_reqs[0])) { 1501cc0681c4SBenoît Canet return true; 1502cc0681c4SBenoît Canet } 1503cc0681c4SBenoît Canet if (!qemu_co_queue_empty(&bs->throttled_reqs[1])) { 150488266f5aSStefan Hajnoczi return true; 150588266f5aSStefan Hajnoczi } 150688266f5aSStefan Hajnoczi if (bs->file && bdrv_requests_pending(bs->file)) { 150788266f5aSStefan Hajnoczi return true; 150888266f5aSStefan Hajnoczi } 150988266f5aSStefan Hajnoczi if (bs->backing_hd && bdrv_requests_pending(bs->backing_hd)) { 151088266f5aSStefan Hajnoczi return true; 151188266f5aSStefan Hajnoczi } 151288266f5aSStefan Hajnoczi return false; 151388266f5aSStefan Hajnoczi } 151488266f5aSStefan Hajnoczi 151588266f5aSStefan Hajnoczi static bool bdrv_requests_pending_all(void) 151688266f5aSStefan Hajnoczi { 151788266f5aSStefan Hajnoczi BlockDriverState *bs; 151888266f5aSStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 151988266f5aSStefan Hajnoczi if (bdrv_requests_pending(bs)) { 152088266f5aSStefan Hajnoczi return true; 152188266f5aSStefan Hajnoczi } 152288266f5aSStefan Hajnoczi } 152388266f5aSStefan Hajnoczi return false; 152488266f5aSStefan Hajnoczi } 152588266f5aSStefan Hajnoczi 1526922453bcSStefan Hajnoczi /* 1527922453bcSStefan Hajnoczi * Wait for pending requests to complete across all BlockDriverStates 1528922453bcSStefan Hajnoczi * 1529922453bcSStefan Hajnoczi * This function does not flush data to disk, use bdrv_flush_all() for that 1530922453bcSStefan Hajnoczi * after calling this function. 15314c355d53SZhi Yong Wu * 15324c355d53SZhi Yong Wu * Note that completion of an asynchronous I/O operation can trigger any 15334c355d53SZhi Yong Wu * number of other I/O operations on other devices---for example a coroutine 15344c355d53SZhi Yong Wu * can be arbitrarily complex and a constant flow of I/O can come until the 15354c355d53SZhi Yong Wu * coroutine is complete. Because of this, it is not possible to have a 15364c355d53SZhi Yong Wu * function to drain a single device's I/O queue. 1537922453bcSStefan Hajnoczi */ 1538922453bcSStefan Hajnoczi void bdrv_drain_all(void) 1539922453bcSStefan Hajnoczi { 154088266f5aSStefan Hajnoczi /* Always run first iteration so any pending completion BHs run */ 154188266f5aSStefan Hajnoczi bool busy = true; 1542922453bcSStefan Hajnoczi BlockDriverState *bs; 1543922453bcSStefan Hajnoczi 154488266f5aSStefan Hajnoczi while (busy) { 15454c355d53SZhi Yong Wu /* FIXME: We do not have timer support here, so this is effectively 15464c355d53SZhi Yong Wu * a busy wait. 15474c355d53SZhi Yong Wu */ 15484c355d53SZhi Yong Wu QTAILQ_FOREACH(bs, &bdrv_states, list) { 1549cc0681c4SBenoît Canet if (bdrv_start_throttled_reqs(bs)) { 15504c355d53SZhi Yong Wu busy = true; 15514c355d53SZhi Yong Wu } 15524c355d53SZhi Yong Wu } 1553922453bcSStefan Hajnoczi 155488266f5aSStefan Hajnoczi busy = bdrv_requests_pending_all(); 155588266f5aSStefan Hajnoczi busy |= aio_poll(qemu_get_aio_context(), busy); 1556922453bcSStefan Hajnoczi } 1557922453bcSStefan Hajnoczi } 1558922453bcSStefan Hajnoczi 1559d22b2f41SRyan Harper /* make a BlockDriverState anonymous by removing from bdrv_state list. 1560d22b2f41SRyan Harper Also, NULL terminate the device_name to prevent double remove */ 1561d22b2f41SRyan Harper void bdrv_make_anon(BlockDriverState *bs) 1562d22b2f41SRyan Harper { 1563d22b2f41SRyan Harper if (bs->device_name[0] != '\0') { 1564d22b2f41SRyan Harper QTAILQ_REMOVE(&bdrv_states, bs, list); 1565d22b2f41SRyan Harper } 1566d22b2f41SRyan Harper bs->device_name[0] = '\0'; 1567d22b2f41SRyan Harper } 1568d22b2f41SRyan Harper 1569e023b2e2SPaolo Bonzini static void bdrv_rebind(BlockDriverState *bs) 1570e023b2e2SPaolo Bonzini { 1571e023b2e2SPaolo Bonzini if (bs->drv && bs->drv->bdrv_rebind) { 1572e023b2e2SPaolo Bonzini bs->drv->bdrv_rebind(bs); 1573e023b2e2SPaolo Bonzini } 1574e023b2e2SPaolo Bonzini } 1575e023b2e2SPaolo Bonzini 15764ddc07caSPaolo Bonzini static void bdrv_move_feature_fields(BlockDriverState *bs_dest, 15774ddc07caSPaolo Bonzini BlockDriverState *bs_src) 15784ddc07caSPaolo Bonzini { 15794ddc07caSPaolo Bonzini /* move some fields that need to stay attached to the device */ 15804ddc07caSPaolo Bonzini bs_dest->open_flags = bs_src->open_flags; 15814ddc07caSPaolo Bonzini 15824ddc07caSPaolo Bonzini /* dev info */ 15834ddc07caSPaolo Bonzini bs_dest->dev_ops = bs_src->dev_ops; 15844ddc07caSPaolo Bonzini bs_dest->dev_opaque = bs_src->dev_opaque; 15854ddc07caSPaolo Bonzini bs_dest->dev = bs_src->dev; 15864ddc07caSPaolo Bonzini bs_dest->buffer_alignment = bs_src->buffer_alignment; 15874ddc07caSPaolo Bonzini bs_dest->copy_on_read = bs_src->copy_on_read; 15884ddc07caSPaolo Bonzini 15894ddc07caSPaolo Bonzini bs_dest->enable_write_cache = bs_src->enable_write_cache; 15904ddc07caSPaolo Bonzini 1591cc0681c4SBenoît Canet /* i/o throttled req */ 1592cc0681c4SBenoît Canet memcpy(&bs_dest->throttle_state, 1593cc0681c4SBenoît Canet &bs_src->throttle_state, 1594cc0681c4SBenoît Canet sizeof(ThrottleState)); 1595cc0681c4SBenoît Canet bs_dest->throttled_reqs[0] = bs_src->throttled_reqs[0]; 1596cc0681c4SBenoît Canet bs_dest->throttled_reqs[1] = bs_src->throttled_reqs[1]; 15974ddc07caSPaolo Bonzini bs_dest->io_limits_enabled = bs_src->io_limits_enabled; 15984ddc07caSPaolo Bonzini 15994ddc07caSPaolo Bonzini /* r/w error */ 16004ddc07caSPaolo Bonzini bs_dest->on_read_error = bs_src->on_read_error; 16014ddc07caSPaolo Bonzini bs_dest->on_write_error = bs_src->on_write_error; 16024ddc07caSPaolo Bonzini 16034ddc07caSPaolo Bonzini /* i/o status */ 16044ddc07caSPaolo Bonzini bs_dest->iostatus_enabled = bs_src->iostatus_enabled; 16054ddc07caSPaolo Bonzini bs_dest->iostatus = bs_src->iostatus; 16064ddc07caSPaolo Bonzini 16074ddc07caSPaolo Bonzini /* dirty bitmap */ 16084ddc07caSPaolo Bonzini bs_dest->dirty_bitmap = bs_src->dirty_bitmap; 16094ddc07caSPaolo Bonzini 16109fcb0251SFam Zheng /* reference count */ 16119fcb0251SFam Zheng bs_dest->refcnt = bs_src->refcnt; 16129fcb0251SFam Zheng 16134ddc07caSPaolo Bonzini /* job */ 16144ddc07caSPaolo Bonzini bs_dest->in_use = bs_src->in_use; 16154ddc07caSPaolo Bonzini bs_dest->job = bs_src->job; 16164ddc07caSPaolo Bonzini 16174ddc07caSPaolo Bonzini /* keep the same entry in bdrv_states */ 16184ddc07caSPaolo Bonzini pstrcpy(bs_dest->device_name, sizeof(bs_dest->device_name), 16194ddc07caSPaolo Bonzini bs_src->device_name); 16204ddc07caSPaolo Bonzini bs_dest->list = bs_src->list; 16214ddc07caSPaolo Bonzini } 16224ddc07caSPaolo Bonzini 16234ddc07caSPaolo Bonzini /* 16244ddc07caSPaolo Bonzini * Swap bs contents for two image chains while they are live, 16254ddc07caSPaolo Bonzini * while keeping required fields on the BlockDriverState that is 16264ddc07caSPaolo Bonzini * actually attached to a device. 16274ddc07caSPaolo Bonzini * 16284ddc07caSPaolo Bonzini * This will modify the BlockDriverState fields, and swap contents 16294ddc07caSPaolo Bonzini * between bs_new and bs_old. Both bs_new and bs_old are modified. 16304ddc07caSPaolo Bonzini * 16314ddc07caSPaolo Bonzini * bs_new is required to be anonymous. 16324ddc07caSPaolo Bonzini * 16334ddc07caSPaolo Bonzini * This function does not create any image files. 16344ddc07caSPaolo Bonzini */ 16354ddc07caSPaolo Bonzini void bdrv_swap(BlockDriverState *bs_new, BlockDriverState *bs_old) 16364ddc07caSPaolo Bonzini { 16374ddc07caSPaolo Bonzini BlockDriverState tmp; 16384ddc07caSPaolo Bonzini 16394ddc07caSPaolo Bonzini /* bs_new must be anonymous and shouldn't have anything fancy enabled */ 16404ddc07caSPaolo Bonzini assert(bs_new->device_name[0] == '\0'); 16414ddc07caSPaolo Bonzini assert(bs_new->dirty_bitmap == NULL); 16424ddc07caSPaolo Bonzini assert(bs_new->job == NULL); 16434ddc07caSPaolo Bonzini assert(bs_new->dev == NULL); 16444ddc07caSPaolo Bonzini assert(bs_new->in_use == 0); 16454ddc07caSPaolo Bonzini assert(bs_new->io_limits_enabled == false); 1646cc0681c4SBenoît Canet assert(!throttle_have_timer(&bs_new->throttle_state)); 16474ddc07caSPaolo Bonzini 16484ddc07caSPaolo Bonzini tmp = *bs_new; 16494ddc07caSPaolo Bonzini *bs_new = *bs_old; 16504ddc07caSPaolo Bonzini *bs_old = tmp; 16514ddc07caSPaolo Bonzini 16524ddc07caSPaolo Bonzini /* there are some fields that should not be swapped, move them back */ 16534ddc07caSPaolo Bonzini bdrv_move_feature_fields(&tmp, bs_old); 16544ddc07caSPaolo Bonzini bdrv_move_feature_fields(bs_old, bs_new); 16554ddc07caSPaolo Bonzini bdrv_move_feature_fields(bs_new, &tmp); 16564ddc07caSPaolo Bonzini 16574ddc07caSPaolo Bonzini /* bs_new shouldn't be in bdrv_states even after the swap! */ 16584ddc07caSPaolo Bonzini assert(bs_new->device_name[0] == '\0'); 16594ddc07caSPaolo Bonzini 16604ddc07caSPaolo Bonzini /* Check a few fields that should remain attached to the device */ 16614ddc07caSPaolo Bonzini assert(bs_new->dev == NULL); 16624ddc07caSPaolo Bonzini assert(bs_new->job == NULL); 16634ddc07caSPaolo Bonzini assert(bs_new->in_use == 0); 16644ddc07caSPaolo Bonzini assert(bs_new->io_limits_enabled == false); 1665cc0681c4SBenoît Canet assert(!throttle_have_timer(&bs_new->throttle_state)); 16664ddc07caSPaolo Bonzini 16674ddc07caSPaolo Bonzini bdrv_rebind(bs_new); 16684ddc07caSPaolo Bonzini bdrv_rebind(bs_old); 16694ddc07caSPaolo Bonzini } 16704ddc07caSPaolo Bonzini 16718802d1fdSJeff Cody /* 16728802d1fdSJeff Cody * Add new bs contents at the top of an image chain while the chain is 16738802d1fdSJeff Cody * live, while keeping required fields on the top layer. 16748802d1fdSJeff Cody * 16758802d1fdSJeff Cody * This will modify the BlockDriverState fields, and swap contents 16768802d1fdSJeff Cody * between bs_new and bs_top. Both bs_new and bs_top are modified. 16778802d1fdSJeff Cody * 1678f6801b83SJeff Cody * bs_new is required to be anonymous. 1679f6801b83SJeff Cody * 16808802d1fdSJeff Cody * This function does not create any image files. 16818802d1fdSJeff Cody */ 16828802d1fdSJeff Cody void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top) 16838802d1fdSJeff Cody { 16844ddc07caSPaolo Bonzini bdrv_swap(bs_new, bs_top); 16858802d1fdSJeff Cody 16868802d1fdSJeff Cody /* The contents of 'tmp' will become bs_top, as we are 16878802d1fdSJeff Cody * swapping bs_new and bs_top contents. */ 16884ddc07caSPaolo Bonzini bs_top->backing_hd = bs_new; 16894ddc07caSPaolo Bonzini bs_top->open_flags &= ~BDRV_O_NO_BACKING; 16904ddc07caSPaolo Bonzini pstrcpy(bs_top->backing_file, sizeof(bs_top->backing_file), 16914ddc07caSPaolo Bonzini bs_new->filename); 16924ddc07caSPaolo Bonzini pstrcpy(bs_top->backing_format, sizeof(bs_top->backing_format), 16934ddc07caSPaolo Bonzini bs_new->drv ? bs_new->drv->format_name : ""); 16948802d1fdSJeff Cody } 16958802d1fdSJeff Cody 16964f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs) 1697b338082bSbellard { 1698fa879d62SMarkus Armbruster assert(!bs->dev); 16993e914655SPaolo Bonzini assert(!bs->job); 17003e914655SPaolo Bonzini assert(!bs->in_use); 17014f6fd349SFam Zheng assert(!bs->refcnt); 170218846deeSMarkus Armbruster 1703e1b5c52eSStefan Hajnoczi bdrv_close(bs); 1704e1b5c52eSStefan Hajnoczi 17051b7bdbc1SStefan Hajnoczi /* remove from list, if necessary */ 1706d22b2f41SRyan Harper bdrv_make_anon(bs); 170734c6f050Saurel32 17087267c094SAnthony Liguori g_free(bs); 1709fc01f7e7Sbellard } 1710fc01f7e7Sbellard 1711fa879d62SMarkus Armbruster int bdrv_attach_dev(BlockDriverState *bs, void *dev) 1712fa879d62SMarkus Armbruster /* TODO change to DeviceState *dev when all users are qdevified */ 171318846deeSMarkus Armbruster { 1714fa879d62SMarkus Armbruster if (bs->dev) { 171518846deeSMarkus Armbruster return -EBUSY; 171618846deeSMarkus Armbruster } 1717fa879d62SMarkus Armbruster bs->dev = dev; 171828a7282aSLuiz Capitulino bdrv_iostatus_reset(bs); 171918846deeSMarkus Armbruster return 0; 172018846deeSMarkus Armbruster } 172118846deeSMarkus Armbruster 1722fa879d62SMarkus Armbruster /* TODO qdevified devices don't use this, remove when devices are qdevified */ 1723fa879d62SMarkus Armbruster void bdrv_attach_dev_nofail(BlockDriverState *bs, void *dev) 172418846deeSMarkus Armbruster { 1725fa879d62SMarkus Armbruster if (bdrv_attach_dev(bs, dev) < 0) { 1726fa879d62SMarkus Armbruster abort(); 1727fa879d62SMarkus Armbruster } 1728fa879d62SMarkus Armbruster } 1729fa879d62SMarkus Armbruster 1730fa879d62SMarkus Armbruster void bdrv_detach_dev(BlockDriverState *bs, void *dev) 1731fa879d62SMarkus Armbruster /* TODO change to DeviceState *dev when all users are qdevified */ 1732fa879d62SMarkus Armbruster { 1733fa879d62SMarkus Armbruster assert(bs->dev == dev); 1734fa879d62SMarkus Armbruster bs->dev = NULL; 17350e49de52SMarkus Armbruster bs->dev_ops = NULL; 17360e49de52SMarkus Armbruster bs->dev_opaque = NULL; 173729e05f20SMarkus Armbruster bs->buffer_alignment = 512; 173818846deeSMarkus Armbruster } 173918846deeSMarkus Armbruster 1740fa879d62SMarkus Armbruster /* TODO change to return DeviceState * when all users are qdevified */ 1741fa879d62SMarkus Armbruster void *bdrv_get_attached_dev(BlockDriverState *bs) 174218846deeSMarkus Armbruster { 1743fa879d62SMarkus Armbruster return bs->dev; 174418846deeSMarkus Armbruster } 174518846deeSMarkus Armbruster 17460e49de52SMarkus Armbruster void bdrv_set_dev_ops(BlockDriverState *bs, const BlockDevOps *ops, 17470e49de52SMarkus Armbruster void *opaque) 17480e49de52SMarkus Armbruster { 17490e49de52SMarkus Armbruster bs->dev_ops = ops; 17500e49de52SMarkus Armbruster bs->dev_opaque = opaque; 17510e49de52SMarkus Armbruster } 17520e49de52SMarkus Armbruster 175332c81a4aSPaolo Bonzini void bdrv_emit_qmp_error_event(const BlockDriverState *bdrv, 175432c81a4aSPaolo Bonzini enum MonitorEvent ev, 17551ceee0d5SPaolo Bonzini BlockErrorAction action, bool is_read) 1756329c0a48SLuiz Capitulino { 1757329c0a48SLuiz Capitulino QObject *data; 1758329c0a48SLuiz Capitulino const char *action_str; 1759329c0a48SLuiz Capitulino 1760329c0a48SLuiz Capitulino switch (action) { 1761329c0a48SLuiz Capitulino case BDRV_ACTION_REPORT: 1762329c0a48SLuiz Capitulino action_str = "report"; 1763329c0a48SLuiz Capitulino break; 1764329c0a48SLuiz Capitulino case BDRV_ACTION_IGNORE: 1765329c0a48SLuiz Capitulino action_str = "ignore"; 1766329c0a48SLuiz Capitulino break; 1767329c0a48SLuiz Capitulino case BDRV_ACTION_STOP: 1768329c0a48SLuiz Capitulino action_str = "stop"; 1769329c0a48SLuiz Capitulino break; 1770329c0a48SLuiz Capitulino default: 1771329c0a48SLuiz Capitulino abort(); 1772329c0a48SLuiz Capitulino } 1773329c0a48SLuiz Capitulino 1774329c0a48SLuiz Capitulino data = qobject_from_jsonf("{ 'device': %s, 'action': %s, 'operation': %s }", 1775329c0a48SLuiz Capitulino bdrv->device_name, 1776329c0a48SLuiz Capitulino action_str, 1777329c0a48SLuiz Capitulino is_read ? "read" : "write"); 177832c81a4aSPaolo Bonzini monitor_protocol_event(ev, data); 1779329c0a48SLuiz Capitulino 1780329c0a48SLuiz Capitulino qobject_decref(data); 1781329c0a48SLuiz Capitulino } 1782329c0a48SLuiz Capitulino 17836f382ed2SLuiz Capitulino static void bdrv_emit_qmp_eject_event(BlockDriverState *bs, bool ejected) 17846f382ed2SLuiz Capitulino { 17856f382ed2SLuiz Capitulino QObject *data; 17866f382ed2SLuiz Capitulino 17876f382ed2SLuiz Capitulino data = qobject_from_jsonf("{ 'device': %s, 'tray-open': %i }", 17886f382ed2SLuiz Capitulino bdrv_get_device_name(bs), ejected); 17896f382ed2SLuiz Capitulino monitor_protocol_event(QEVENT_DEVICE_TRAY_MOVED, data); 17906f382ed2SLuiz Capitulino 17916f382ed2SLuiz Capitulino qobject_decref(data); 17926f382ed2SLuiz Capitulino } 17936f382ed2SLuiz Capitulino 17947d4b4ba5SMarkus Armbruster static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load) 17950e49de52SMarkus Armbruster { 1796145feb17SMarkus Armbruster if (bs->dev_ops && bs->dev_ops->change_media_cb) { 17976f382ed2SLuiz Capitulino bool tray_was_closed = !bdrv_dev_is_tray_open(bs); 17987d4b4ba5SMarkus Armbruster bs->dev_ops->change_media_cb(bs->dev_opaque, load); 17996f382ed2SLuiz Capitulino if (tray_was_closed) { 18006f382ed2SLuiz Capitulino /* tray open */ 18016f382ed2SLuiz Capitulino bdrv_emit_qmp_eject_event(bs, true); 18026f382ed2SLuiz Capitulino } 18036f382ed2SLuiz Capitulino if (load) { 18046f382ed2SLuiz Capitulino /* tray close */ 18056f382ed2SLuiz Capitulino bdrv_emit_qmp_eject_event(bs, false); 18066f382ed2SLuiz Capitulino } 1807145feb17SMarkus Armbruster } 1808145feb17SMarkus Armbruster } 1809145feb17SMarkus Armbruster 18102c6942faSMarkus Armbruster bool bdrv_dev_has_removable_media(BlockDriverState *bs) 18112c6942faSMarkus Armbruster { 18122c6942faSMarkus Armbruster return !bs->dev || (bs->dev_ops && bs->dev_ops->change_media_cb); 18132c6942faSMarkus Armbruster } 18142c6942faSMarkus Armbruster 1815025ccaa7SPaolo Bonzini void bdrv_dev_eject_request(BlockDriverState *bs, bool force) 1816025ccaa7SPaolo Bonzini { 1817025ccaa7SPaolo Bonzini if (bs->dev_ops && bs->dev_ops->eject_request_cb) { 1818025ccaa7SPaolo Bonzini bs->dev_ops->eject_request_cb(bs->dev_opaque, force); 1819025ccaa7SPaolo Bonzini } 1820025ccaa7SPaolo Bonzini } 1821025ccaa7SPaolo Bonzini 1822e4def80bSMarkus Armbruster bool bdrv_dev_is_tray_open(BlockDriverState *bs) 1823e4def80bSMarkus Armbruster { 1824e4def80bSMarkus Armbruster if (bs->dev_ops && bs->dev_ops->is_tray_open) { 1825e4def80bSMarkus Armbruster return bs->dev_ops->is_tray_open(bs->dev_opaque); 1826e4def80bSMarkus Armbruster } 1827e4def80bSMarkus Armbruster return false; 1828e4def80bSMarkus Armbruster } 1829e4def80bSMarkus Armbruster 1830145feb17SMarkus Armbruster static void bdrv_dev_resize_cb(BlockDriverState *bs) 1831145feb17SMarkus Armbruster { 1832145feb17SMarkus Armbruster if (bs->dev_ops && bs->dev_ops->resize_cb) { 1833145feb17SMarkus Armbruster bs->dev_ops->resize_cb(bs->dev_opaque); 18340e49de52SMarkus Armbruster } 18350e49de52SMarkus Armbruster } 18360e49de52SMarkus Armbruster 1837f107639aSMarkus Armbruster bool bdrv_dev_is_medium_locked(BlockDriverState *bs) 1838f107639aSMarkus Armbruster { 1839f107639aSMarkus Armbruster if (bs->dev_ops && bs->dev_ops->is_medium_locked) { 1840f107639aSMarkus Armbruster return bs->dev_ops->is_medium_locked(bs->dev_opaque); 1841f107639aSMarkus Armbruster } 1842f107639aSMarkus Armbruster return false; 1843f107639aSMarkus Armbruster } 1844f107639aSMarkus Armbruster 1845e97fc193Saliguori /* 1846e97fc193Saliguori * Run consistency checks on an image 1847e97fc193Saliguori * 1848e076f338SKevin Wolf * Returns 0 if the check could be completed (it doesn't mean that the image is 1849a1c7273bSStefan Weil * free of errors) or -errno when an internal error occurred. The results of the 1850e076f338SKevin Wolf * check are stored in res. 1851e97fc193Saliguori */ 18524534ff54SKevin Wolf int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix) 1853e97fc193Saliguori { 1854e97fc193Saliguori if (bs->drv->bdrv_check == NULL) { 1855e97fc193Saliguori return -ENOTSUP; 1856e97fc193Saliguori } 1857e97fc193Saliguori 1858e076f338SKevin Wolf memset(res, 0, sizeof(*res)); 18594534ff54SKevin Wolf return bs->drv->bdrv_check(bs, res, fix); 1860e97fc193Saliguori } 1861e97fc193Saliguori 18628a426614SKevin Wolf #define COMMIT_BUF_SECTORS 2048 18638a426614SKevin Wolf 186433e3963eSbellard /* commit COW file into the raw image */ 186533e3963eSbellard int bdrv_commit(BlockDriverState *bs) 186633e3963eSbellard { 186719cb3738Sbellard BlockDriver *drv = bs->drv; 18688a426614SKevin Wolf int64_t sector, total_sectors; 18698a426614SKevin Wolf int n, ro, open_flags; 18700bce597dSJeff Cody int ret = 0; 18718a426614SKevin Wolf uint8_t *buf; 1872c2cba3d9SJim Meyering char filename[PATH_MAX]; 187333e3963eSbellard 187419cb3738Sbellard if (!drv) 187519cb3738Sbellard return -ENOMEDIUM; 187633e3963eSbellard 18774dca4b63SNaphtali Sprei if (!bs->backing_hd) { 18784dca4b63SNaphtali Sprei return -ENOTSUP; 18794dca4b63SNaphtali Sprei } 18804dca4b63SNaphtali Sprei 18812d3735d3SStefan Hajnoczi if (bdrv_in_use(bs) || bdrv_in_use(bs->backing_hd)) { 18822d3735d3SStefan Hajnoczi return -EBUSY; 18832d3735d3SStefan Hajnoczi } 18842d3735d3SStefan Hajnoczi 18854dca4b63SNaphtali Sprei ro = bs->backing_hd->read_only; 1886c2cba3d9SJim Meyering /* Use pstrcpy (not strncpy): filename must be NUL-terminated. */ 1887c2cba3d9SJim Meyering pstrcpy(filename, sizeof(filename), bs->backing_hd->filename); 18884dca4b63SNaphtali Sprei open_flags = bs->backing_hd->open_flags; 18894dca4b63SNaphtali Sprei 18904dca4b63SNaphtali Sprei if (ro) { 18910bce597dSJeff Cody if (bdrv_reopen(bs->backing_hd, open_flags | BDRV_O_RDWR, NULL)) { 18920bce597dSJeff Cody return -EACCES; 18934dca4b63SNaphtali Sprei } 1894ea2384d3Sbellard } 1895ea2384d3Sbellard 18966ea44308SJan Kiszka total_sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS; 18977267c094SAnthony Liguori buf = g_malloc(COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE); 18988a426614SKevin Wolf 18998a426614SKevin Wolf for (sector = 0; sector < total_sectors; sector += n) { 1900d663640cSPaolo Bonzini ret = bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n); 1901d663640cSPaolo Bonzini if (ret < 0) { 1902d663640cSPaolo Bonzini goto ro_cleanup; 1903d663640cSPaolo Bonzini } 1904d663640cSPaolo Bonzini if (ret) { 19058a426614SKevin Wolf if (bdrv_read(bs, sector, buf, n) != 0) { 19064dca4b63SNaphtali Sprei ret = -EIO; 19074dca4b63SNaphtali Sprei goto ro_cleanup; 190833e3963eSbellard } 190933e3963eSbellard 19108a426614SKevin Wolf if (bdrv_write(bs->backing_hd, sector, buf, n) != 0) { 19114dca4b63SNaphtali Sprei ret = -EIO; 19124dca4b63SNaphtali Sprei goto ro_cleanup; 191333e3963eSbellard } 191433e3963eSbellard } 191533e3963eSbellard } 191695389c86Sbellard 19171d44952fSChristoph Hellwig if (drv->bdrv_make_empty) { 19181d44952fSChristoph Hellwig ret = drv->bdrv_make_empty(bs); 19191d44952fSChristoph Hellwig bdrv_flush(bs); 19201d44952fSChristoph Hellwig } 192195389c86Sbellard 19223f5075aeSChristoph Hellwig /* 19233f5075aeSChristoph Hellwig * Make sure all data we wrote to the backing device is actually 19243f5075aeSChristoph Hellwig * stable on disk. 19253f5075aeSChristoph Hellwig */ 19263f5075aeSChristoph Hellwig if (bs->backing_hd) 19273f5075aeSChristoph Hellwig bdrv_flush(bs->backing_hd); 19284dca4b63SNaphtali Sprei 19294dca4b63SNaphtali Sprei ro_cleanup: 19307267c094SAnthony Liguori g_free(buf); 19314dca4b63SNaphtali Sprei 19324dca4b63SNaphtali Sprei if (ro) { 19330bce597dSJeff Cody /* ignoring error return here */ 19340bce597dSJeff Cody bdrv_reopen(bs->backing_hd, open_flags & ~BDRV_O_RDWR, NULL); 19354dca4b63SNaphtali Sprei } 19364dca4b63SNaphtali Sprei 19371d44952fSChristoph Hellwig return ret; 193833e3963eSbellard } 193933e3963eSbellard 1940e8877497SStefan Hajnoczi int bdrv_commit_all(void) 19416ab4b5abSMarkus Armbruster { 19426ab4b5abSMarkus Armbruster BlockDriverState *bs; 19436ab4b5abSMarkus Armbruster 19446ab4b5abSMarkus Armbruster QTAILQ_FOREACH(bs, &bdrv_states, list) { 1945272d2d8eSJeff Cody if (bs->drv && bs->backing_hd) { 1946e8877497SStefan Hajnoczi int ret = bdrv_commit(bs); 1947e8877497SStefan Hajnoczi if (ret < 0) { 1948e8877497SStefan Hajnoczi return ret; 19496ab4b5abSMarkus Armbruster } 19506ab4b5abSMarkus Armbruster } 1951272d2d8eSJeff Cody } 1952e8877497SStefan Hajnoczi return 0; 1953e8877497SStefan Hajnoczi } 19546ab4b5abSMarkus Armbruster 1955dbffbdcfSStefan Hajnoczi /** 1956dbffbdcfSStefan Hajnoczi * Remove an active request from the tracked requests list 1957dbffbdcfSStefan Hajnoczi * 1958dbffbdcfSStefan Hajnoczi * This function should be called when a tracked request is completing. 1959dbffbdcfSStefan Hajnoczi */ 1960dbffbdcfSStefan Hajnoczi static void tracked_request_end(BdrvTrackedRequest *req) 1961dbffbdcfSStefan Hajnoczi { 1962dbffbdcfSStefan Hajnoczi QLIST_REMOVE(req, list); 1963f4658285SStefan Hajnoczi qemu_co_queue_restart_all(&req->wait_queue); 1964dbffbdcfSStefan Hajnoczi } 1965dbffbdcfSStefan Hajnoczi 1966dbffbdcfSStefan Hajnoczi /** 1967dbffbdcfSStefan Hajnoczi * Add an active request to the tracked requests list 1968dbffbdcfSStefan Hajnoczi */ 1969dbffbdcfSStefan Hajnoczi static void tracked_request_begin(BdrvTrackedRequest *req, 1970dbffbdcfSStefan Hajnoczi BlockDriverState *bs, 1971dbffbdcfSStefan Hajnoczi int64_t sector_num, 1972dbffbdcfSStefan Hajnoczi int nb_sectors, bool is_write) 1973dbffbdcfSStefan Hajnoczi { 1974dbffbdcfSStefan Hajnoczi *req = (BdrvTrackedRequest){ 1975dbffbdcfSStefan Hajnoczi .bs = bs, 1976dbffbdcfSStefan Hajnoczi .sector_num = sector_num, 1977dbffbdcfSStefan Hajnoczi .nb_sectors = nb_sectors, 1978dbffbdcfSStefan Hajnoczi .is_write = is_write, 19795f8b6491SStefan Hajnoczi .co = qemu_coroutine_self(), 1980dbffbdcfSStefan Hajnoczi }; 1981dbffbdcfSStefan Hajnoczi 1982f4658285SStefan Hajnoczi qemu_co_queue_init(&req->wait_queue); 1983f4658285SStefan Hajnoczi 1984dbffbdcfSStefan Hajnoczi QLIST_INSERT_HEAD(&bs->tracked_requests, req, list); 1985dbffbdcfSStefan Hajnoczi } 1986dbffbdcfSStefan Hajnoczi 1987d83947acSStefan Hajnoczi /** 1988d83947acSStefan Hajnoczi * Round a region to cluster boundaries 1989d83947acSStefan Hajnoczi */ 1990343bded4SPaolo Bonzini void bdrv_round_to_clusters(BlockDriverState *bs, 1991d83947acSStefan Hajnoczi int64_t sector_num, int nb_sectors, 1992d83947acSStefan Hajnoczi int64_t *cluster_sector_num, 1993d83947acSStefan Hajnoczi int *cluster_nb_sectors) 1994d83947acSStefan Hajnoczi { 1995d83947acSStefan Hajnoczi BlockDriverInfo bdi; 1996d83947acSStefan Hajnoczi 1997d83947acSStefan Hajnoczi if (bdrv_get_info(bs, &bdi) < 0 || bdi.cluster_size == 0) { 1998d83947acSStefan Hajnoczi *cluster_sector_num = sector_num; 1999d83947acSStefan Hajnoczi *cluster_nb_sectors = nb_sectors; 2000d83947acSStefan Hajnoczi } else { 2001d83947acSStefan Hajnoczi int64_t c = bdi.cluster_size / BDRV_SECTOR_SIZE; 2002d83947acSStefan Hajnoczi *cluster_sector_num = QEMU_ALIGN_DOWN(sector_num, c); 2003d83947acSStefan Hajnoczi *cluster_nb_sectors = QEMU_ALIGN_UP(sector_num - *cluster_sector_num + 2004d83947acSStefan Hajnoczi nb_sectors, c); 2005d83947acSStefan Hajnoczi } 2006d83947acSStefan Hajnoczi } 2007d83947acSStefan Hajnoczi 2008f4658285SStefan Hajnoczi static bool tracked_request_overlaps(BdrvTrackedRequest *req, 2009f4658285SStefan Hajnoczi int64_t sector_num, int nb_sectors) { 2010d83947acSStefan Hajnoczi /* aaaa bbbb */ 2011d83947acSStefan Hajnoczi if (sector_num >= req->sector_num + req->nb_sectors) { 2012d83947acSStefan Hajnoczi return false; 2013d83947acSStefan Hajnoczi } 2014d83947acSStefan Hajnoczi /* bbbb aaaa */ 2015d83947acSStefan Hajnoczi if (req->sector_num >= sector_num + nb_sectors) { 2016d83947acSStefan Hajnoczi return false; 2017d83947acSStefan Hajnoczi } 2018d83947acSStefan Hajnoczi return true; 2019f4658285SStefan Hajnoczi } 2020f4658285SStefan Hajnoczi 2021f4658285SStefan Hajnoczi static void coroutine_fn wait_for_overlapping_requests(BlockDriverState *bs, 2022f4658285SStefan Hajnoczi int64_t sector_num, int nb_sectors) 2023f4658285SStefan Hajnoczi { 2024f4658285SStefan Hajnoczi BdrvTrackedRequest *req; 2025d83947acSStefan Hajnoczi int64_t cluster_sector_num; 2026d83947acSStefan Hajnoczi int cluster_nb_sectors; 2027f4658285SStefan Hajnoczi bool retry; 2028f4658285SStefan Hajnoczi 2029d83947acSStefan Hajnoczi /* If we touch the same cluster it counts as an overlap. This guarantees 2030d83947acSStefan Hajnoczi * that allocating writes will be serialized and not race with each other 2031d83947acSStefan Hajnoczi * for the same cluster. For example, in copy-on-read it ensures that the 2032d83947acSStefan Hajnoczi * CoR read and write operations are atomic and guest writes cannot 2033d83947acSStefan Hajnoczi * interleave between them. 2034d83947acSStefan Hajnoczi */ 2035343bded4SPaolo Bonzini bdrv_round_to_clusters(bs, sector_num, nb_sectors, 2036d83947acSStefan Hajnoczi &cluster_sector_num, &cluster_nb_sectors); 2037d83947acSStefan Hajnoczi 2038f4658285SStefan Hajnoczi do { 2039f4658285SStefan Hajnoczi retry = false; 2040f4658285SStefan Hajnoczi QLIST_FOREACH(req, &bs->tracked_requests, list) { 2041d83947acSStefan Hajnoczi if (tracked_request_overlaps(req, cluster_sector_num, 2042d83947acSStefan Hajnoczi cluster_nb_sectors)) { 20435f8b6491SStefan Hajnoczi /* Hitting this means there was a reentrant request, for 20445f8b6491SStefan Hajnoczi * example, a block driver issuing nested requests. This must 20455f8b6491SStefan Hajnoczi * never happen since it means deadlock. 20465f8b6491SStefan Hajnoczi */ 20475f8b6491SStefan Hajnoczi assert(qemu_coroutine_self() != req->co); 20485f8b6491SStefan Hajnoczi 2049f4658285SStefan Hajnoczi qemu_co_queue_wait(&req->wait_queue); 2050f4658285SStefan Hajnoczi retry = true; 2051f4658285SStefan Hajnoczi break; 2052f4658285SStefan Hajnoczi } 2053f4658285SStefan Hajnoczi } 2054f4658285SStefan Hajnoczi } while (retry); 2055f4658285SStefan Hajnoczi } 2056f4658285SStefan Hajnoczi 2057756e6736SKevin Wolf /* 2058756e6736SKevin Wolf * Return values: 2059756e6736SKevin Wolf * 0 - success 2060756e6736SKevin Wolf * -EINVAL - backing format specified, but no file 2061756e6736SKevin Wolf * -ENOSPC - can't update the backing file because no space is left in the 2062756e6736SKevin Wolf * image file header 2063756e6736SKevin Wolf * -ENOTSUP - format driver doesn't support changing the backing file 2064756e6736SKevin Wolf */ 2065756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs, 2066756e6736SKevin Wolf const char *backing_file, const char *backing_fmt) 2067756e6736SKevin Wolf { 2068756e6736SKevin Wolf BlockDriver *drv = bs->drv; 2069469ef350SPaolo Bonzini int ret; 2070756e6736SKevin Wolf 20715f377794SPaolo Bonzini /* Backing file format doesn't make sense without a backing file */ 20725f377794SPaolo Bonzini if (backing_fmt && !backing_file) { 20735f377794SPaolo Bonzini return -EINVAL; 20745f377794SPaolo Bonzini } 20755f377794SPaolo Bonzini 2076756e6736SKevin Wolf if (drv->bdrv_change_backing_file != NULL) { 2077469ef350SPaolo Bonzini ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); 2078756e6736SKevin Wolf } else { 2079469ef350SPaolo Bonzini ret = -ENOTSUP; 2080756e6736SKevin Wolf } 2081469ef350SPaolo Bonzini 2082469ef350SPaolo Bonzini if (ret == 0) { 2083469ef350SPaolo Bonzini pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); 2084469ef350SPaolo Bonzini pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); 2085469ef350SPaolo Bonzini } 2086469ef350SPaolo Bonzini return ret; 2087756e6736SKevin Wolf } 2088756e6736SKevin Wolf 20896ebdcee2SJeff Cody /* 20906ebdcee2SJeff Cody * Finds the image layer in the chain that has 'bs' as its backing file. 20916ebdcee2SJeff Cody * 20926ebdcee2SJeff Cody * active is the current topmost image. 20936ebdcee2SJeff Cody * 20946ebdcee2SJeff Cody * Returns NULL if bs is not found in active's image chain, 20956ebdcee2SJeff Cody * or if active == bs. 20966ebdcee2SJeff Cody */ 20976ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active, 20986ebdcee2SJeff Cody BlockDriverState *bs) 20996ebdcee2SJeff Cody { 21006ebdcee2SJeff Cody BlockDriverState *overlay = NULL; 21016ebdcee2SJeff Cody BlockDriverState *intermediate; 21026ebdcee2SJeff Cody 21036ebdcee2SJeff Cody assert(active != NULL); 21046ebdcee2SJeff Cody assert(bs != NULL); 21056ebdcee2SJeff Cody 21066ebdcee2SJeff Cody /* if bs is the same as active, then by definition it has no overlay 21076ebdcee2SJeff Cody */ 21086ebdcee2SJeff Cody if (active == bs) { 21096ebdcee2SJeff Cody return NULL; 21106ebdcee2SJeff Cody } 21116ebdcee2SJeff Cody 21126ebdcee2SJeff Cody intermediate = active; 21136ebdcee2SJeff Cody while (intermediate->backing_hd) { 21146ebdcee2SJeff Cody if (intermediate->backing_hd == bs) { 21156ebdcee2SJeff Cody overlay = intermediate; 21166ebdcee2SJeff Cody break; 21176ebdcee2SJeff Cody } 21186ebdcee2SJeff Cody intermediate = intermediate->backing_hd; 21196ebdcee2SJeff Cody } 21206ebdcee2SJeff Cody 21216ebdcee2SJeff Cody return overlay; 21226ebdcee2SJeff Cody } 21236ebdcee2SJeff Cody 21246ebdcee2SJeff Cody typedef struct BlkIntermediateStates { 21256ebdcee2SJeff Cody BlockDriverState *bs; 21266ebdcee2SJeff Cody QSIMPLEQ_ENTRY(BlkIntermediateStates) entry; 21276ebdcee2SJeff Cody } BlkIntermediateStates; 21286ebdcee2SJeff Cody 21296ebdcee2SJeff Cody 21306ebdcee2SJeff Cody /* 21316ebdcee2SJeff Cody * Drops images above 'base' up to and including 'top', and sets the image 21326ebdcee2SJeff Cody * above 'top' to have base as its backing file. 21336ebdcee2SJeff Cody * 21346ebdcee2SJeff Cody * Requires that the overlay to 'top' is opened r/w, so that the backing file 21356ebdcee2SJeff Cody * information in 'bs' can be properly updated. 21366ebdcee2SJeff Cody * 21376ebdcee2SJeff Cody * E.g., this will convert the following chain: 21386ebdcee2SJeff Cody * bottom <- base <- intermediate <- top <- active 21396ebdcee2SJeff Cody * 21406ebdcee2SJeff Cody * to 21416ebdcee2SJeff Cody * 21426ebdcee2SJeff Cody * bottom <- base <- active 21436ebdcee2SJeff Cody * 21446ebdcee2SJeff Cody * It is allowed for bottom==base, in which case it converts: 21456ebdcee2SJeff Cody * 21466ebdcee2SJeff Cody * base <- intermediate <- top <- active 21476ebdcee2SJeff Cody * 21486ebdcee2SJeff Cody * to 21496ebdcee2SJeff Cody * 21506ebdcee2SJeff Cody * base <- active 21516ebdcee2SJeff Cody * 21526ebdcee2SJeff Cody * Error conditions: 21536ebdcee2SJeff Cody * if active == top, that is considered an error 21546ebdcee2SJeff Cody * 21556ebdcee2SJeff Cody */ 21566ebdcee2SJeff Cody int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top, 21576ebdcee2SJeff Cody BlockDriverState *base) 21586ebdcee2SJeff Cody { 21596ebdcee2SJeff Cody BlockDriverState *intermediate; 21606ebdcee2SJeff Cody BlockDriverState *base_bs = NULL; 21616ebdcee2SJeff Cody BlockDriverState *new_top_bs = NULL; 21626ebdcee2SJeff Cody BlkIntermediateStates *intermediate_state, *next; 21636ebdcee2SJeff Cody int ret = -EIO; 21646ebdcee2SJeff Cody 21656ebdcee2SJeff Cody QSIMPLEQ_HEAD(states_to_delete, BlkIntermediateStates) states_to_delete; 21666ebdcee2SJeff Cody QSIMPLEQ_INIT(&states_to_delete); 21676ebdcee2SJeff Cody 21686ebdcee2SJeff Cody if (!top->drv || !base->drv) { 21696ebdcee2SJeff Cody goto exit; 21706ebdcee2SJeff Cody } 21716ebdcee2SJeff Cody 21726ebdcee2SJeff Cody new_top_bs = bdrv_find_overlay(active, top); 21736ebdcee2SJeff Cody 21746ebdcee2SJeff Cody if (new_top_bs == NULL) { 21756ebdcee2SJeff Cody /* we could not find the image above 'top', this is an error */ 21766ebdcee2SJeff Cody goto exit; 21776ebdcee2SJeff Cody } 21786ebdcee2SJeff Cody 21796ebdcee2SJeff Cody /* special case of new_top_bs->backing_hd already pointing to base - nothing 21806ebdcee2SJeff Cody * to do, no intermediate images */ 21816ebdcee2SJeff Cody if (new_top_bs->backing_hd == base) { 21826ebdcee2SJeff Cody ret = 0; 21836ebdcee2SJeff Cody goto exit; 21846ebdcee2SJeff Cody } 21856ebdcee2SJeff Cody 21866ebdcee2SJeff Cody intermediate = top; 21876ebdcee2SJeff Cody 21886ebdcee2SJeff Cody /* now we will go down through the list, and add each BDS we find 21896ebdcee2SJeff Cody * into our deletion queue, until we hit the 'base' 21906ebdcee2SJeff Cody */ 21916ebdcee2SJeff Cody while (intermediate) { 21926ebdcee2SJeff Cody intermediate_state = g_malloc0(sizeof(BlkIntermediateStates)); 21936ebdcee2SJeff Cody intermediate_state->bs = intermediate; 21946ebdcee2SJeff Cody QSIMPLEQ_INSERT_TAIL(&states_to_delete, intermediate_state, entry); 21956ebdcee2SJeff Cody 21966ebdcee2SJeff Cody if (intermediate->backing_hd == base) { 21976ebdcee2SJeff Cody base_bs = intermediate->backing_hd; 21986ebdcee2SJeff Cody break; 21996ebdcee2SJeff Cody } 22006ebdcee2SJeff Cody intermediate = intermediate->backing_hd; 22016ebdcee2SJeff Cody } 22026ebdcee2SJeff Cody if (base_bs == NULL) { 22036ebdcee2SJeff Cody /* something went wrong, we did not end at the base. safely 22046ebdcee2SJeff Cody * unravel everything, and exit with error */ 22056ebdcee2SJeff Cody goto exit; 22066ebdcee2SJeff Cody } 22076ebdcee2SJeff Cody 22086ebdcee2SJeff Cody /* success - we can delete the intermediate states, and link top->base */ 22096ebdcee2SJeff Cody ret = bdrv_change_backing_file(new_top_bs, base_bs->filename, 22106ebdcee2SJeff Cody base_bs->drv ? base_bs->drv->format_name : ""); 22116ebdcee2SJeff Cody if (ret) { 22126ebdcee2SJeff Cody goto exit; 22136ebdcee2SJeff Cody } 22146ebdcee2SJeff Cody new_top_bs->backing_hd = base_bs; 22156ebdcee2SJeff Cody 22166ebdcee2SJeff Cody 22176ebdcee2SJeff Cody QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) { 22186ebdcee2SJeff Cody /* so that bdrv_close() does not recursively close the chain */ 22196ebdcee2SJeff Cody intermediate_state->bs->backing_hd = NULL; 22204f6fd349SFam Zheng bdrv_unref(intermediate_state->bs); 22216ebdcee2SJeff Cody } 22226ebdcee2SJeff Cody ret = 0; 22236ebdcee2SJeff Cody 22246ebdcee2SJeff Cody exit: 22256ebdcee2SJeff Cody QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) { 22266ebdcee2SJeff Cody g_free(intermediate_state); 22276ebdcee2SJeff Cody } 22286ebdcee2SJeff Cody return ret; 22296ebdcee2SJeff Cody } 22306ebdcee2SJeff Cody 22316ebdcee2SJeff Cody 223271d0770cSaliguori static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset, 223371d0770cSaliguori size_t size) 223471d0770cSaliguori { 223571d0770cSaliguori int64_t len; 223671d0770cSaliguori 223771d0770cSaliguori if (!bdrv_is_inserted(bs)) 223871d0770cSaliguori return -ENOMEDIUM; 223971d0770cSaliguori 224071d0770cSaliguori if (bs->growable) 224171d0770cSaliguori return 0; 224271d0770cSaliguori 224371d0770cSaliguori len = bdrv_getlength(bs); 224471d0770cSaliguori 2245fbb7b4e0SKevin Wolf if (offset < 0) 2246fbb7b4e0SKevin Wolf return -EIO; 2247fbb7b4e0SKevin Wolf 2248fbb7b4e0SKevin Wolf if ((offset > len) || (len - offset < size)) 224971d0770cSaliguori return -EIO; 225071d0770cSaliguori 225171d0770cSaliguori return 0; 225271d0770cSaliguori } 225371d0770cSaliguori 225471d0770cSaliguori static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num, 225571d0770cSaliguori int nb_sectors) 225671d0770cSaliguori { 2257eb5a3165SJes Sorensen return bdrv_check_byte_request(bs, sector_num * BDRV_SECTOR_SIZE, 2258eb5a3165SJes Sorensen nb_sectors * BDRV_SECTOR_SIZE); 225971d0770cSaliguori } 226071d0770cSaliguori 22611c9805a3SStefan Hajnoczi typedef struct RwCo { 22621c9805a3SStefan Hajnoczi BlockDriverState *bs; 22631c9805a3SStefan Hajnoczi int64_t sector_num; 22641c9805a3SStefan Hajnoczi int nb_sectors; 22651c9805a3SStefan Hajnoczi QEMUIOVector *qiov; 22661c9805a3SStefan Hajnoczi bool is_write; 22671c9805a3SStefan Hajnoczi int ret; 22684105eaaaSPeter Lieven BdrvRequestFlags flags; 22691c9805a3SStefan Hajnoczi } RwCo; 22701c9805a3SStefan Hajnoczi 22711c9805a3SStefan Hajnoczi static void coroutine_fn bdrv_rw_co_entry(void *opaque) 2272fc01f7e7Sbellard { 22731c9805a3SStefan Hajnoczi RwCo *rwco = opaque; 2274fc01f7e7Sbellard 22751c9805a3SStefan Hajnoczi if (!rwco->is_write) { 22761c9805a3SStefan Hajnoczi rwco->ret = bdrv_co_do_readv(rwco->bs, rwco->sector_num, 22774105eaaaSPeter Lieven rwco->nb_sectors, rwco->qiov, 22784105eaaaSPeter Lieven rwco->flags); 22791c9805a3SStefan Hajnoczi } else { 22801c9805a3SStefan Hajnoczi rwco->ret = bdrv_co_do_writev(rwco->bs, rwco->sector_num, 22814105eaaaSPeter Lieven rwco->nb_sectors, rwco->qiov, 22824105eaaaSPeter Lieven rwco->flags); 22831c9805a3SStefan Hajnoczi } 22841c9805a3SStefan Hajnoczi } 2285e7a8a783SKevin Wolf 22861c9805a3SStefan Hajnoczi /* 22878d3b1a2dSKevin Wolf * Process a vectored synchronous request using coroutines 22881c9805a3SStefan Hajnoczi */ 22898d3b1a2dSKevin Wolf static int bdrv_rwv_co(BlockDriverState *bs, int64_t sector_num, 22904105eaaaSPeter Lieven QEMUIOVector *qiov, bool is_write, 22914105eaaaSPeter Lieven BdrvRequestFlags flags) 22921c9805a3SStefan Hajnoczi { 22931c9805a3SStefan Hajnoczi Coroutine *co; 22941c9805a3SStefan Hajnoczi RwCo rwco = { 22951c9805a3SStefan Hajnoczi .bs = bs, 22961c9805a3SStefan Hajnoczi .sector_num = sector_num, 22978d3b1a2dSKevin Wolf .nb_sectors = qiov->size >> BDRV_SECTOR_BITS, 22988d3b1a2dSKevin Wolf .qiov = qiov, 22991c9805a3SStefan Hajnoczi .is_write = is_write, 23001c9805a3SStefan Hajnoczi .ret = NOT_DONE, 23014105eaaaSPeter Lieven .flags = flags, 23021c9805a3SStefan Hajnoczi }; 23038d3b1a2dSKevin Wolf assert((qiov->size & (BDRV_SECTOR_SIZE - 1)) == 0); 23041c9805a3SStefan Hajnoczi 2305498e386cSZhi Yong Wu /** 2306498e386cSZhi Yong Wu * In sync call context, when the vcpu is blocked, this throttling timer 2307498e386cSZhi Yong Wu * will not fire; so the I/O throttling function has to be disabled here 2308498e386cSZhi Yong Wu * if it has been enabled. 2309498e386cSZhi Yong Wu */ 2310498e386cSZhi Yong Wu if (bs->io_limits_enabled) { 2311498e386cSZhi Yong Wu fprintf(stderr, "Disabling I/O throttling on '%s' due " 2312498e386cSZhi Yong Wu "to synchronous I/O.\n", bdrv_get_device_name(bs)); 2313498e386cSZhi Yong Wu bdrv_io_limits_disable(bs); 2314498e386cSZhi Yong Wu } 2315498e386cSZhi Yong Wu 23161c9805a3SStefan Hajnoczi if (qemu_in_coroutine()) { 23171c9805a3SStefan Hajnoczi /* Fast-path if already in coroutine context */ 23181c9805a3SStefan Hajnoczi bdrv_rw_co_entry(&rwco); 23191c9805a3SStefan Hajnoczi } else { 23201c9805a3SStefan Hajnoczi co = qemu_coroutine_create(bdrv_rw_co_entry); 23211c9805a3SStefan Hajnoczi qemu_coroutine_enter(co, &rwco); 23221c9805a3SStefan Hajnoczi while (rwco.ret == NOT_DONE) { 23231c9805a3SStefan Hajnoczi qemu_aio_wait(); 23241c9805a3SStefan Hajnoczi } 23251c9805a3SStefan Hajnoczi } 23261c9805a3SStefan Hajnoczi return rwco.ret; 2327e7a8a783SKevin Wolf } 2328e7a8a783SKevin Wolf 23298d3b1a2dSKevin Wolf /* 23308d3b1a2dSKevin Wolf * Process a synchronous request using coroutines 23318d3b1a2dSKevin Wolf */ 23328d3b1a2dSKevin Wolf static int bdrv_rw_co(BlockDriverState *bs, int64_t sector_num, uint8_t *buf, 23334105eaaaSPeter Lieven int nb_sectors, bool is_write, BdrvRequestFlags flags) 23348d3b1a2dSKevin Wolf { 23358d3b1a2dSKevin Wolf QEMUIOVector qiov; 23368d3b1a2dSKevin Wolf struct iovec iov = { 23378d3b1a2dSKevin Wolf .iov_base = (void *)buf, 23388d3b1a2dSKevin Wolf .iov_len = nb_sectors * BDRV_SECTOR_SIZE, 23398d3b1a2dSKevin Wolf }; 23408d3b1a2dSKevin Wolf 23418d3b1a2dSKevin Wolf qemu_iovec_init_external(&qiov, &iov, 1); 23424105eaaaSPeter Lieven return bdrv_rwv_co(bs, sector_num, &qiov, is_write, flags); 23438d3b1a2dSKevin Wolf } 23448d3b1a2dSKevin Wolf 23451c9805a3SStefan Hajnoczi /* return < 0 if error. See bdrv_write() for the return codes */ 23461c9805a3SStefan Hajnoczi int bdrv_read(BlockDriverState *bs, int64_t sector_num, 23471c9805a3SStefan Hajnoczi uint8_t *buf, int nb_sectors) 23481c9805a3SStefan Hajnoczi { 23494105eaaaSPeter Lieven return bdrv_rw_co(bs, sector_num, buf, nb_sectors, false, 0); 235083f64091Sbellard } 2351fc01f7e7Sbellard 235207d27a44SMarkus Armbruster /* Just like bdrv_read(), but with I/O throttling temporarily disabled */ 235307d27a44SMarkus Armbruster int bdrv_read_unthrottled(BlockDriverState *bs, int64_t sector_num, 235407d27a44SMarkus Armbruster uint8_t *buf, int nb_sectors) 235507d27a44SMarkus Armbruster { 235607d27a44SMarkus Armbruster bool enabled; 235707d27a44SMarkus Armbruster int ret; 235807d27a44SMarkus Armbruster 235907d27a44SMarkus Armbruster enabled = bs->io_limits_enabled; 236007d27a44SMarkus Armbruster bs->io_limits_enabled = false; 23614e7395e8SPeter Lieven ret = bdrv_read(bs, sector_num, buf, nb_sectors); 236207d27a44SMarkus Armbruster bs->io_limits_enabled = enabled; 236307d27a44SMarkus Armbruster return ret; 236407d27a44SMarkus Armbruster } 236507d27a44SMarkus Armbruster 236619cb3738Sbellard /* Return < 0 if error. Important errors are: 236719cb3738Sbellard -EIO generic I/O error (may happen for all errors) 236819cb3738Sbellard -ENOMEDIUM No media inserted. 236919cb3738Sbellard -EINVAL Invalid sector number or nb_sectors 237019cb3738Sbellard -EACCES Trying to write a read-only device 237119cb3738Sbellard */ 2372fc01f7e7Sbellard int bdrv_write(BlockDriverState *bs, int64_t sector_num, 2373fc01f7e7Sbellard const uint8_t *buf, int nb_sectors) 2374fc01f7e7Sbellard { 23754105eaaaSPeter Lieven return bdrv_rw_co(bs, sector_num, (uint8_t *)buf, nb_sectors, true, 0); 237683f64091Sbellard } 237783f64091Sbellard 23788d3b1a2dSKevin Wolf int bdrv_writev(BlockDriverState *bs, int64_t sector_num, QEMUIOVector *qiov) 23798d3b1a2dSKevin Wolf { 23804105eaaaSPeter Lieven return bdrv_rwv_co(bs, sector_num, qiov, true, 0); 23814105eaaaSPeter Lieven } 23824105eaaaSPeter Lieven 23834105eaaaSPeter Lieven int bdrv_write_zeroes(BlockDriverState *bs, int64_t sector_num, int nb_sectors) 23844105eaaaSPeter Lieven { 23854105eaaaSPeter Lieven return bdrv_rw_co(bs, sector_num, NULL, nb_sectors, true, 23864105eaaaSPeter Lieven BDRV_REQ_ZERO_WRITE); 23878d3b1a2dSKevin Wolf } 23888d3b1a2dSKevin Wolf 2389eda578e5Saliguori int bdrv_pread(BlockDriverState *bs, int64_t offset, 2390eda578e5Saliguori void *buf, int count1) 239183f64091Sbellard { 23926ea44308SJan Kiszka uint8_t tmp_buf[BDRV_SECTOR_SIZE]; 239383f64091Sbellard int len, nb_sectors, count; 239483f64091Sbellard int64_t sector_num; 23959a8c4cceSKevin Wolf int ret; 239683f64091Sbellard 239783f64091Sbellard count = count1; 239883f64091Sbellard /* first read to align to sector start */ 23996ea44308SJan Kiszka len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1); 240083f64091Sbellard if (len > count) 240183f64091Sbellard len = count; 24026ea44308SJan Kiszka sector_num = offset >> BDRV_SECTOR_BITS; 240383f64091Sbellard if (len > 0) { 24049a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) 24059a8c4cceSKevin Wolf return ret; 24066ea44308SJan Kiszka memcpy(buf, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), len); 240783f64091Sbellard count -= len; 240883f64091Sbellard if (count == 0) 240983f64091Sbellard return count1; 241083f64091Sbellard sector_num++; 241183f64091Sbellard buf += len; 241283f64091Sbellard } 241383f64091Sbellard 241483f64091Sbellard /* read the sectors "in place" */ 24156ea44308SJan Kiszka nb_sectors = count >> BDRV_SECTOR_BITS; 241683f64091Sbellard if (nb_sectors > 0) { 24179a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, buf, nb_sectors)) < 0) 24189a8c4cceSKevin Wolf return ret; 241983f64091Sbellard sector_num += nb_sectors; 24206ea44308SJan Kiszka len = nb_sectors << BDRV_SECTOR_BITS; 242183f64091Sbellard buf += len; 242283f64091Sbellard count -= len; 242383f64091Sbellard } 242483f64091Sbellard 242583f64091Sbellard /* add data from the last sector */ 242683f64091Sbellard if (count > 0) { 24279a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) 24289a8c4cceSKevin Wolf return ret; 242983f64091Sbellard memcpy(buf, tmp_buf, count); 243083f64091Sbellard } 243183f64091Sbellard return count1; 243283f64091Sbellard } 243383f64091Sbellard 24348d3b1a2dSKevin Wolf int bdrv_pwritev(BlockDriverState *bs, int64_t offset, QEMUIOVector *qiov) 243583f64091Sbellard { 24366ea44308SJan Kiszka uint8_t tmp_buf[BDRV_SECTOR_SIZE]; 243783f64091Sbellard int len, nb_sectors, count; 243883f64091Sbellard int64_t sector_num; 24399a8c4cceSKevin Wolf int ret; 244083f64091Sbellard 24418d3b1a2dSKevin Wolf count = qiov->size; 24428d3b1a2dSKevin Wolf 244383f64091Sbellard /* first write to align to sector start */ 24446ea44308SJan Kiszka len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1); 244583f64091Sbellard if (len > count) 244683f64091Sbellard len = count; 24476ea44308SJan Kiszka sector_num = offset >> BDRV_SECTOR_BITS; 244883f64091Sbellard if (len > 0) { 24499a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) 24509a8c4cceSKevin Wolf return ret; 24518d3b1a2dSKevin Wolf qemu_iovec_to_buf(qiov, 0, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), 24528d3b1a2dSKevin Wolf len); 24539a8c4cceSKevin Wolf if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0) 24549a8c4cceSKevin Wolf return ret; 245583f64091Sbellard count -= len; 245683f64091Sbellard if (count == 0) 24578d3b1a2dSKevin Wolf return qiov->size; 245883f64091Sbellard sector_num++; 245983f64091Sbellard } 246083f64091Sbellard 246183f64091Sbellard /* write the sectors "in place" */ 24626ea44308SJan Kiszka nb_sectors = count >> BDRV_SECTOR_BITS; 246383f64091Sbellard if (nb_sectors > 0) { 24648d3b1a2dSKevin Wolf QEMUIOVector qiov_inplace; 24658d3b1a2dSKevin Wolf 24668d3b1a2dSKevin Wolf qemu_iovec_init(&qiov_inplace, qiov->niov); 24678d3b1a2dSKevin Wolf qemu_iovec_concat(&qiov_inplace, qiov, len, 24688d3b1a2dSKevin Wolf nb_sectors << BDRV_SECTOR_BITS); 24698d3b1a2dSKevin Wolf ret = bdrv_writev(bs, sector_num, &qiov_inplace); 24708d3b1a2dSKevin Wolf qemu_iovec_destroy(&qiov_inplace); 24718d3b1a2dSKevin Wolf if (ret < 0) { 24729a8c4cceSKevin Wolf return ret; 24738d3b1a2dSKevin Wolf } 24748d3b1a2dSKevin Wolf 247583f64091Sbellard sector_num += nb_sectors; 24766ea44308SJan Kiszka len = nb_sectors << BDRV_SECTOR_BITS; 247783f64091Sbellard count -= len; 247883f64091Sbellard } 247983f64091Sbellard 248083f64091Sbellard /* add data from the last sector */ 248183f64091Sbellard if (count > 0) { 24829a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) 24839a8c4cceSKevin Wolf return ret; 24848d3b1a2dSKevin Wolf qemu_iovec_to_buf(qiov, qiov->size - count, tmp_buf, count); 24859a8c4cceSKevin Wolf if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0) 24869a8c4cceSKevin Wolf return ret; 248783f64091Sbellard } 24888d3b1a2dSKevin Wolf return qiov->size; 24898d3b1a2dSKevin Wolf } 24908d3b1a2dSKevin Wolf 24918d3b1a2dSKevin Wolf int bdrv_pwrite(BlockDriverState *bs, int64_t offset, 24928d3b1a2dSKevin Wolf const void *buf, int count1) 24938d3b1a2dSKevin Wolf { 24948d3b1a2dSKevin Wolf QEMUIOVector qiov; 24958d3b1a2dSKevin Wolf struct iovec iov = { 24968d3b1a2dSKevin Wolf .iov_base = (void *) buf, 24978d3b1a2dSKevin Wolf .iov_len = count1, 24988d3b1a2dSKevin Wolf }; 24998d3b1a2dSKevin Wolf 25008d3b1a2dSKevin Wolf qemu_iovec_init_external(&qiov, &iov, 1); 25018d3b1a2dSKevin Wolf return bdrv_pwritev(bs, offset, &qiov); 250283f64091Sbellard } 250383f64091Sbellard 2504f08145feSKevin Wolf /* 2505f08145feSKevin Wolf * Writes to the file and ensures that no writes are reordered across this 2506f08145feSKevin Wolf * request (acts as a barrier) 2507f08145feSKevin Wolf * 2508f08145feSKevin Wolf * Returns 0 on success, -errno in error cases. 2509f08145feSKevin Wolf */ 2510f08145feSKevin Wolf int bdrv_pwrite_sync(BlockDriverState *bs, int64_t offset, 2511f08145feSKevin Wolf const void *buf, int count) 2512f08145feSKevin Wolf { 2513f08145feSKevin Wolf int ret; 2514f08145feSKevin Wolf 2515f08145feSKevin Wolf ret = bdrv_pwrite(bs, offset, buf, count); 2516f08145feSKevin Wolf if (ret < 0) { 2517f08145feSKevin Wolf return ret; 2518f08145feSKevin Wolf } 2519f08145feSKevin Wolf 2520f05fa4adSPaolo Bonzini /* No flush needed for cache modes that already do it */ 2521f05fa4adSPaolo Bonzini if (bs->enable_write_cache) { 2522f08145feSKevin Wolf bdrv_flush(bs); 2523f08145feSKevin Wolf } 2524f08145feSKevin Wolf 2525f08145feSKevin Wolf return 0; 2526f08145feSKevin Wolf } 2527f08145feSKevin Wolf 2528470c0504SStefan Hajnoczi static int coroutine_fn bdrv_co_do_copy_on_readv(BlockDriverState *bs, 2529ab185921SStefan Hajnoczi int64_t sector_num, int nb_sectors, QEMUIOVector *qiov) 2530ab185921SStefan Hajnoczi { 2531ab185921SStefan Hajnoczi /* Perform I/O through a temporary buffer so that users who scribble over 2532ab185921SStefan Hajnoczi * their read buffer while the operation is in progress do not end up 2533ab185921SStefan Hajnoczi * modifying the image file. This is critical for zero-copy guest I/O 2534ab185921SStefan Hajnoczi * where anything might happen inside guest memory. 2535ab185921SStefan Hajnoczi */ 2536ab185921SStefan Hajnoczi void *bounce_buffer; 2537ab185921SStefan Hajnoczi 253879c053bdSStefan Hajnoczi BlockDriver *drv = bs->drv; 2539ab185921SStefan Hajnoczi struct iovec iov; 2540ab185921SStefan Hajnoczi QEMUIOVector bounce_qiov; 2541ab185921SStefan Hajnoczi int64_t cluster_sector_num; 2542ab185921SStefan Hajnoczi int cluster_nb_sectors; 2543ab185921SStefan Hajnoczi size_t skip_bytes; 2544ab185921SStefan Hajnoczi int ret; 2545ab185921SStefan Hajnoczi 2546ab185921SStefan Hajnoczi /* Cover entire cluster so no additional backing file I/O is required when 2547ab185921SStefan Hajnoczi * allocating cluster in the image file. 2548ab185921SStefan Hajnoczi */ 2549343bded4SPaolo Bonzini bdrv_round_to_clusters(bs, sector_num, nb_sectors, 2550ab185921SStefan Hajnoczi &cluster_sector_num, &cluster_nb_sectors); 2551ab185921SStefan Hajnoczi 2552470c0504SStefan Hajnoczi trace_bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors, 2553ab185921SStefan Hajnoczi cluster_sector_num, cluster_nb_sectors); 2554ab185921SStefan Hajnoczi 2555ab185921SStefan Hajnoczi iov.iov_len = cluster_nb_sectors * BDRV_SECTOR_SIZE; 2556ab185921SStefan Hajnoczi iov.iov_base = bounce_buffer = qemu_blockalign(bs, iov.iov_len); 2557ab185921SStefan Hajnoczi qemu_iovec_init_external(&bounce_qiov, &iov, 1); 2558ab185921SStefan Hajnoczi 255979c053bdSStefan Hajnoczi ret = drv->bdrv_co_readv(bs, cluster_sector_num, cluster_nb_sectors, 2560ab185921SStefan Hajnoczi &bounce_qiov); 2561ab185921SStefan Hajnoczi if (ret < 0) { 2562ab185921SStefan Hajnoczi goto err; 2563ab185921SStefan Hajnoczi } 2564ab185921SStefan Hajnoczi 256579c053bdSStefan Hajnoczi if (drv->bdrv_co_write_zeroes && 256679c053bdSStefan Hajnoczi buffer_is_zero(bounce_buffer, iov.iov_len)) { 2567621f0589SKevin Wolf ret = bdrv_co_do_write_zeroes(bs, cluster_sector_num, 256879c053bdSStefan Hajnoczi cluster_nb_sectors); 256979c053bdSStefan Hajnoczi } else { 2570f05fa4adSPaolo Bonzini /* This does not change the data on the disk, it is not necessary 2571f05fa4adSPaolo Bonzini * to flush even in cache=writethrough mode. 2572f05fa4adSPaolo Bonzini */ 257379c053bdSStefan Hajnoczi ret = drv->bdrv_co_writev(bs, cluster_sector_num, cluster_nb_sectors, 2574ab185921SStefan Hajnoczi &bounce_qiov); 257579c053bdSStefan Hajnoczi } 257679c053bdSStefan Hajnoczi 2577ab185921SStefan Hajnoczi if (ret < 0) { 2578ab185921SStefan Hajnoczi /* It might be okay to ignore write errors for guest requests. If this 2579ab185921SStefan Hajnoczi * is a deliberate copy-on-read then we don't want to ignore the error. 2580ab185921SStefan Hajnoczi * Simply report it in all cases. 2581ab185921SStefan Hajnoczi */ 2582ab185921SStefan Hajnoczi goto err; 2583ab185921SStefan Hajnoczi } 2584ab185921SStefan Hajnoczi 2585ab185921SStefan Hajnoczi skip_bytes = (sector_num - cluster_sector_num) * BDRV_SECTOR_SIZE; 258603396148SMichael Tokarev qemu_iovec_from_buf(qiov, 0, bounce_buffer + skip_bytes, 2587ab185921SStefan Hajnoczi nb_sectors * BDRV_SECTOR_SIZE); 2588ab185921SStefan Hajnoczi 2589ab185921SStefan Hajnoczi err: 2590ab185921SStefan Hajnoczi qemu_vfree(bounce_buffer); 2591ab185921SStefan Hajnoczi return ret; 2592ab185921SStefan Hajnoczi } 2593ab185921SStefan Hajnoczi 2594c5fbe571SStefan Hajnoczi /* 2595c5fbe571SStefan Hajnoczi * Handle a read request in coroutine context 2596c5fbe571SStefan Hajnoczi */ 2597c5fbe571SStefan Hajnoczi static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs, 2598470c0504SStefan Hajnoczi int64_t sector_num, int nb_sectors, QEMUIOVector *qiov, 2599470c0504SStefan Hajnoczi BdrvRequestFlags flags) 2600da1fa91dSKevin Wolf { 2601da1fa91dSKevin Wolf BlockDriver *drv = bs->drv; 2602dbffbdcfSStefan Hajnoczi BdrvTrackedRequest req; 2603dbffbdcfSStefan Hajnoczi int ret; 2604da1fa91dSKevin Wolf 2605da1fa91dSKevin Wolf if (!drv) { 2606da1fa91dSKevin Wolf return -ENOMEDIUM; 2607da1fa91dSKevin Wolf } 2608da1fa91dSKevin Wolf if (bdrv_check_request(bs, sector_num, nb_sectors)) { 2609da1fa91dSKevin Wolf return -EIO; 2610da1fa91dSKevin Wolf } 2611da1fa91dSKevin Wolf 2612f4658285SStefan Hajnoczi if (bs->copy_on_read) { 2613470c0504SStefan Hajnoczi flags |= BDRV_REQ_COPY_ON_READ; 2614470c0504SStefan Hajnoczi } 2615470c0504SStefan Hajnoczi if (flags & BDRV_REQ_COPY_ON_READ) { 2616470c0504SStefan Hajnoczi bs->copy_on_read_in_flight++; 2617470c0504SStefan Hajnoczi } 2618470c0504SStefan Hajnoczi 2619470c0504SStefan Hajnoczi if (bs->copy_on_read_in_flight) { 2620f4658285SStefan Hajnoczi wait_for_overlapping_requests(bs, sector_num, nb_sectors); 2621f4658285SStefan Hajnoczi } 2622f4658285SStefan Hajnoczi 2623cc0681c4SBenoît Canet /* throttling disk I/O */ 2624cc0681c4SBenoît Canet if (bs->io_limits_enabled) { 2625cc0681c4SBenoît Canet bdrv_io_limits_intercept(bs, nb_sectors, false); 2626cc0681c4SBenoît Canet } 2627cc0681c4SBenoît Canet 2628dbffbdcfSStefan Hajnoczi tracked_request_begin(&req, bs, sector_num, nb_sectors, false); 2629ab185921SStefan Hajnoczi 2630470c0504SStefan Hajnoczi if (flags & BDRV_REQ_COPY_ON_READ) { 2631ab185921SStefan Hajnoczi int pnum; 2632ab185921SStefan Hajnoczi 2633bdad13b9SPaolo Bonzini ret = bdrv_is_allocated(bs, sector_num, nb_sectors, &pnum); 2634ab185921SStefan Hajnoczi if (ret < 0) { 2635ab185921SStefan Hajnoczi goto out; 2636ab185921SStefan Hajnoczi } 2637ab185921SStefan Hajnoczi 2638ab185921SStefan Hajnoczi if (!ret || pnum != nb_sectors) { 2639470c0504SStefan Hajnoczi ret = bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors, qiov); 2640ab185921SStefan Hajnoczi goto out; 2641ab185921SStefan Hajnoczi } 2642ab185921SStefan Hajnoczi } 2643ab185921SStefan Hajnoczi 2644893a8f62SMORITA Kazutaka if (!(bs->zero_beyond_eof && bs->growable)) { 2645dbffbdcfSStefan Hajnoczi ret = drv->bdrv_co_readv(bs, sector_num, nb_sectors, qiov); 2646893a8f62SMORITA Kazutaka } else { 2647893a8f62SMORITA Kazutaka /* Read zeros after EOF of growable BDSes */ 2648893a8f62SMORITA Kazutaka int64_t len, total_sectors, max_nb_sectors; 2649893a8f62SMORITA Kazutaka 2650893a8f62SMORITA Kazutaka len = bdrv_getlength(bs); 2651893a8f62SMORITA Kazutaka if (len < 0) { 2652893a8f62SMORITA Kazutaka ret = len; 2653893a8f62SMORITA Kazutaka goto out; 2654893a8f62SMORITA Kazutaka } 2655893a8f62SMORITA Kazutaka 2656*d055a1feSFam Zheng total_sectors = DIV_ROUND_UP(len, BDRV_SECTOR_SIZE); 2657893a8f62SMORITA Kazutaka max_nb_sectors = MAX(0, total_sectors - sector_num); 2658893a8f62SMORITA Kazutaka if (max_nb_sectors > 0) { 2659893a8f62SMORITA Kazutaka ret = drv->bdrv_co_readv(bs, sector_num, 2660893a8f62SMORITA Kazutaka MIN(nb_sectors, max_nb_sectors), qiov); 2661893a8f62SMORITA Kazutaka } else { 2662893a8f62SMORITA Kazutaka ret = 0; 2663893a8f62SMORITA Kazutaka } 2664893a8f62SMORITA Kazutaka 2665893a8f62SMORITA Kazutaka /* Reading beyond end of file is supposed to produce zeroes */ 2666893a8f62SMORITA Kazutaka if (ret == 0 && total_sectors < sector_num + nb_sectors) { 2667893a8f62SMORITA Kazutaka uint64_t offset = MAX(0, total_sectors - sector_num); 2668893a8f62SMORITA Kazutaka uint64_t bytes = (sector_num + nb_sectors - offset) * 2669893a8f62SMORITA Kazutaka BDRV_SECTOR_SIZE; 2670893a8f62SMORITA Kazutaka qemu_iovec_memset(qiov, offset * BDRV_SECTOR_SIZE, 0, bytes); 2671893a8f62SMORITA Kazutaka } 2672893a8f62SMORITA Kazutaka } 2673ab185921SStefan Hajnoczi 2674ab185921SStefan Hajnoczi out: 2675dbffbdcfSStefan Hajnoczi tracked_request_end(&req); 2676470c0504SStefan Hajnoczi 2677470c0504SStefan Hajnoczi if (flags & BDRV_REQ_COPY_ON_READ) { 2678470c0504SStefan Hajnoczi bs->copy_on_read_in_flight--; 2679470c0504SStefan Hajnoczi } 2680470c0504SStefan Hajnoczi 2681dbffbdcfSStefan Hajnoczi return ret; 2682da1fa91dSKevin Wolf } 2683da1fa91dSKevin Wolf 2684c5fbe571SStefan Hajnoczi int coroutine_fn bdrv_co_readv(BlockDriverState *bs, int64_t sector_num, 2685da1fa91dSKevin Wolf int nb_sectors, QEMUIOVector *qiov) 2686da1fa91dSKevin Wolf { 2687c5fbe571SStefan Hajnoczi trace_bdrv_co_readv(bs, sector_num, nb_sectors); 2688da1fa91dSKevin Wolf 2689470c0504SStefan Hajnoczi return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov, 0); 2690470c0504SStefan Hajnoczi } 2691470c0504SStefan Hajnoczi 2692470c0504SStefan Hajnoczi int coroutine_fn bdrv_co_copy_on_readv(BlockDriverState *bs, 2693470c0504SStefan Hajnoczi int64_t sector_num, int nb_sectors, QEMUIOVector *qiov) 2694470c0504SStefan Hajnoczi { 2695470c0504SStefan Hajnoczi trace_bdrv_co_copy_on_readv(bs, sector_num, nb_sectors); 2696470c0504SStefan Hajnoczi 2697470c0504SStefan Hajnoczi return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov, 2698470c0504SStefan Hajnoczi BDRV_REQ_COPY_ON_READ); 2699c5fbe571SStefan Hajnoczi } 2700c5fbe571SStefan Hajnoczi 2701f08f2ddaSStefan Hajnoczi static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs, 2702f08f2ddaSStefan Hajnoczi int64_t sector_num, int nb_sectors) 2703f08f2ddaSStefan Hajnoczi { 2704f08f2ddaSStefan Hajnoczi BlockDriver *drv = bs->drv; 2705f08f2ddaSStefan Hajnoczi QEMUIOVector qiov; 2706f08f2ddaSStefan Hajnoczi struct iovec iov; 2707f08f2ddaSStefan Hajnoczi int ret; 2708f08f2ddaSStefan Hajnoczi 2709621f0589SKevin Wolf /* TODO Emulate only part of misaligned requests instead of letting block 2710621f0589SKevin Wolf * drivers return -ENOTSUP and emulate everything */ 2711621f0589SKevin Wolf 2712f08f2ddaSStefan Hajnoczi /* First try the efficient write zeroes operation */ 2713f08f2ddaSStefan Hajnoczi if (drv->bdrv_co_write_zeroes) { 2714621f0589SKevin Wolf ret = drv->bdrv_co_write_zeroes(bs, sector_num, nb_sectors); 2715621f0589SKevin Wolf if (ret != -ENOTSUP) { 2716621f0589SKevin Wolf return ret; 2717621f0589SKevin Wolf } 2718f08f2ddaSStefan Hajnoczi } 2719f08f2ddaSStefan Hajnoczi 2720f08f2ddaSStefan Hajnoczi /* Fall back to bounce buffer if write zeroes is unsupported */ 2721f08f2ddaSStefan Hajnoczi iov.iov_len = nb_sectors * BDRV_SECTOR_SIZE; 2722f08f2ddaSStefan Hajnoczi iov.iov_base = qemu_blockalign(bs, iov.iov_len); 2723f08f2ddaSStefan Hajnoczi memset(iov.iov_base, 0, iov.iov_len); 2724f08f2ddaSStefan Hajnoczi qemu_iovec_init_external(&qiov, &iov, 1); 2725f08f2ddaSStefan Hajnoczi 2726f08f2ddaSStefan Hajnoczi ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, &qiov); 2727f08f2ddaSStefan Hajnoczi 2728f08f2ddaSStefan Hajnoczi qemu_vfree(iov.iov_base); 2729f08f2ddaSStefan Hajnoczi return ret; 2730f08f2ddaSStefan Hajnoczi } 2731f08f2ddaSStefan Hajnoczi 2732c5fbe571SStefan Hajnoczi /* 2733c5fbe571SStefan Hajnoczi * Handle a write request in coroutine context 2734c5fbe571SStefan Hajnoczi */ 2735c5fbe571SStefan Hajnoczi static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs, 2736f08f2ddaSStefan Hajnoczi int64_t sector_num, int nb_sectors, QEMUIOVector *qiov, 2737f08f2ddaSStefan Hajnoczi BdrvRequestFlags flags) 2738c5fbe571SStefan Hajnoczi { 2739c5fbe571SStefan Hajnoczi BlockDriver *drv = bs->drv; 2740dbffbdcfSStefan Hajnoczi BdrvTrackedRequest req; 27416b7cb247SStefan Hajnoczi int ret; 2742da1fa91dSKevin Wolf 2743da1fa91dSKevin Wolf if (!bs->drv) { 2744da1fa91dSKevin Wolf return -ENOMEDIUM; 2745da1fa91dSKevin Wolf } 2746da1fa91dSKevin Wolf if (bs->read_only) { 2747da1fa91dSKevin Wolf return -EACCES; 2748da1fa91dSKevin Wolf } 2749da1fa91dSKevin Wolf if (bdrv_check_request(bs, sector_num, nb_sectors)) { 2750da1fa91dSKevin Wolf return -EIO; 2751da1fa91dSKevin Wolf } 2752da1fa91dSKevin Wolf 2753470c0504SStefan Hajnoczi if (bs->copy_on_read_in_flight) { 2754f4658285SStefan Hajnoczi wait_for_overlapping_requests(bs, sector_num, nb_sectors); 2755f4658285SStefan Hajnoczi } 2756f4658285SStefan Hajnoczi 2757cc0681c4SBenoît Canet /* throttling disk I/O */ 2758cc0681c4SBenoît Canet if (bs->io_limits_enabled) { 2759cc0681c4SBenoît Canet bdrv_io_limits_intercept(bs, nb_sectors, true); 2760cc0681c4SBenoît Canet } 2761cc0681c4SBenoît Canet 2762dbffbdcfSStefan Hajnoczi tracked_request_begin(&req, bs, sector_num, nb_sectors, true); 2763dbffbdcfSStefan Hajnoczi 2764d616b224SStefan Hajnoczi ret = notifier_with_return_list_notify(&bs->before_write_notifiers, &req); 2765d616b224SStefan Hajnoczi 2766d616b224SStefan Hajnoczi if (ret < 0) { 2767d616b224SStefan Hajnoczi /* Do nothing, write notifier decided to fail this request */ 2768d616b224SStefan Hajnoczi } else if (flags & BDRV_REQ_ZERO_WRITE) { 2769f08f2ddaSStefan Hajnoczi ret = bdrv_co_do_write_zeroes(bs, sector_num, nb_sectors); 2770f08f2ddaSStefan Hajnoczi } else { 27716b7cb247SStefan Hajnoczi ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, qiov); 2772f08f2ddaSStefan Hajnoczi } 27736b7cb247SStefan Hajnoczi 2774f05fa4adSPaolo Bonzini if (ret == 0 && !bs->enable_write_cache) { 2775f05fa4adSPaolo Bonzini ret = bdrv_co_flush(bs); 2776f05fa4adSPaolo Bonzini } 2777f05fa4adSPaolo Bonzini 2778da1fa91dSKevin Wolf if (bs->dirty_bitmap) { 27791755da16SPaolo Bonzini bdrv_set_dirty(bs, sector_num, nb_sectors); 2780da1fa91dSKevin Wolf } 2781da1fa91dSKevin Wolf 2782da1fa91dSKevin Wolf if (bs->wr_highest_sector < sector_num + nb_sectors - 1) { 2783da1fa91dSKevin Wolf bs->wr_highest_sector = sector_num + nb_sectors - 1; 2784da1fa91dSKevin Wolf } 2785df2a6f29SPaolo Bonzini if (bs->growable && ret >= 0) { 2786df2a6f29SPaolo Bonzini bs->total_sectors = MAX(bs->total_sectors, sector_num + nb_sectors); 2787df2a6f29SPaolo Bonzini } 2788da1fa91dSKevin Wolf 2789dbffbdcfSStefan Hajnoczi tracked_request_end(&req); 2790dbffbdcfSStefan Hajnoczi 27916b7cb247SStefan Hajnoczi return ret; 2792da1fa91dSKevin Wolf } 2793da1fa91dSKevin Wolf 2794c5fbe571SStefan Hajnoczi int coroutine_fn bdrv_co_writev(BlockDriverState *bs, int64_t sector_num, 2795c5fbe571SStefan Hajnoczi int nb_sectors, QEMUIOVector *qiov) 2796c5fbe571SStefan Hajnoczi { 2797c5fbe571SStefan Hajnoczi trace_bdrv_co_writev(bs, sector_num, nb_sectors); 2798c5fbe571SStefan Hajnoczi 2799f08f2ddaSStefan Hajnoczi return bdrv_co_do_writev(bs, sector_num, nb_sectors, qiov, 0); 2800f08f2ddaSStefan Hajnoczi } 2801f08f2ddaSStefan Hajnoczi 2802f08f2ddaSStefan Hajnoczi int coroutine_fn bdrv_co_write_zeroes(BlockDriverState *bs, 2803f08f2ddaSStefan Hajnoczi int64_t sector_num, int nb_sectors) 2804f08f2ddaSStefan Hajnoczi { 2805f08f2ddaSStefan Hajnoczi trace_bdrv_co_write_zeroes(bs, sector_num, nb_sectors); 2806f08f2ddaSStefan Hajnoczi 2807f08f2ddaSStefan Hajnoczi return bdrv_co_do_writev(bs, sector_num, nb_sectors, NULL, 2808f08f2ddaSStefan Hajnoczi BDRV_REQ_ZERO_WRITE); 2809c5fbe571SStefan Hajnoczi } 2810c5fbe571SStefan Hajnoczi 281183f64091Sbellard /** 281283f64091Sbellard * Truncate file to 'offset' bytes (needed only for file protocols) 281383f64091Sbellard */ 281483f64091Sbellard int bdrv_truncate(BlockDriverState *bs, int64_t offset) 281583f64091Sbellard { 281683f64091Sbellard BlockDriver *drv = bs->drv; 281751762288SStefan Hajnoczi int ret; 281883f64091Sbellard if (!drv) 281919cb3738Sbellard return -ENOMEDIUM; 282083f64091Sbellard if (!drv->bdrv_truncate) 282183f64091Sbellard return -ENOTSUP; 282259f2689dSNaphtali Sprei if (bs->read_only) 282359f2689dSNaphtali Sprei return -EACCES; 28248591675fSMarcelo Tosatti if (bdrv_in_use(bs)) 28258591675fSMarcelo Tosatti return -EBUSY; 282651762288SStefan Hajnoczi ret = drv->bdrv_truncate(bs, offset); 282751762288SStefan Hajnoczi if (ret == 0) { 282851762288SStefan Hajnoczi ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS); 2829145feb17SMarkus Armbruster bdrv_dev_resize_cb(bs); 283051762288SStefan Hajnoczi } 283151762288SStefan Hajnoczi return ret; 283283f64091Sbellard } 283383f64091Sbellard 283483f64091Sbellard /** 28354a1d5e1fSFam Zheng * Length of a allocated file in bytes. Sparse files are counted by actual 28364a1d5e1fSFam Zheng * allocated space. Return < 0 if error or unknown. 28374a1d5e1fSFam Zheng */ 28384a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs) 28394a1d5e1fSFam Zheng { 28404a1d5e1fSFam Zheng BlockDriver *drv = bs->drv; 28414a1d5e1fSFam Zheng if (!drv) { 28424a1d5e1fSFam Zheng return -ENOMEDIUM; 28434a1d5e1fSFam Zheng } 28444a1d5e1fSFam Zheng if (drv->bdrv_get_allocated_file_size) { 28454a1d5e1fSFam Zheng return drv->bdrv_get_allocated_file_size(bs); 28464a1d5e1fSFam Zheng } 28474a1d5e1fSFam Zheng if (bs->file) { 28484a1d5e1fSFam Zheng return bdrv_get_allocated_file_size(bs->file); 28494a1d5e1fSFam Zheng } 28504a1d5e1fSFam Zheng return -ENOTSUP; 28514a1d5e1fSFam Zheng } 28524a1d5e1fSFam Zheng 28534a1d5e1fSFam Zheng /** 285483f64091Sbellard * Length of a file in bytes. Return < 0 if error or unknown. 285583f64091Sbellard */ 285683f64091Sbellard int64_t bdrv_getlength(BlockDriverState *bs) 285783f64091Sbellard { 285883f64091Sbellard BlockDriver *drv = bs->drv; 285983f64091Sbellard if (!drv) 286019cb3738Sbellard return -ENOMEDIUM; 286151762288SStefan Hajnoczi 2862df2a6f29SPaolo Bonzini if (bdrv_dev_has_removable_media(bs)) { 286346a4e4e6SStefan Hajnoczi if (drv->bdrv_getlength) { 286483f64091Sbellard return drv->bdrv_getlength(bs); 2865fc01f7e7Sbellard } 286646a4e4e6SStefan Hajnoczi } 286746a4e4e6SStefan Hajnoczi return bs->total_sectors * BDRV_SECTOR_SIZE; 286846a4e4e6SStefan Hajnoczi } 2869fc01f7e7Sbellard 287019cb3738Sbellard /* return 0 as number of sectors if no device present or error */ 287196b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) 2872fc01f7e7Sbellard { 287319cb3738Sbellard int64_t length; 287419cb3738Sbellard length = bdrv_getlength(bs); 287519cb3738Sbellard if (length < 0) 287619cb3738Sbellard length = 0; 287719cb3738Sbellard else 28786ea44308SJan Kiszka length = length >> BDRV_SECTOR_BITS; 287919cb3738Sbellard *nb_sectors_ptr = length; 2880fc01f7e7Sbellard } 2881cf98951bSbellard 2882ff06f5f3SPaolo Bonzini void bdrv_set_on_error(BlockDriverState *bs, BlockdevOnError on_read_error, 2883ff06f5f3SPaolo Bonzini BlockdevOnError on_write_error) 2884abd7f68dSMarkus Armbruster { 2885abd7f68dSMarkus Armbruster bs->on_read_error = on_read_error; 2886abd7f68dSMarkus Armbruster bs->on_write_error = on_write_error; 2887abd7f68dSMarkus Armbruster } 2888abd7f68dSMarkus Armbruster 28891ceee0d5SPaolo Bonzini BlockdevOnError bdrv_get_on_error(BlockDriverState *bs, bool is_read) 2890abd7f68dSMarkus Armbruster { 2891abd7f68dSMarkus Armbruster return is_read ? bs->on_read_error : bs->on_write_error; 2892abd7f68dSMarkus Armbruster } 2893abd7f68dSMarkus Armbruster 28943e1caa5fSPaolo Bonzini BlockErrorAction bdrv_get_error_action(BlockDriverState *bs, bool is_read, int error) 28953e1caa5fSPaolo Bonzini { 28963e1caa5fSPaolo Bonzini BlockdevOnError on_err = is_read ? bs->on_read_error : bs->on_write_error; 28973e1caa5fSPaolo Bonzini 28983e1caa5fSPaolo Bonzini switch (on_err) { 28993e1caa5fSPaolo Bonzini case BLOCKDEV_ON_ERROR_ENOSPC: 29003e1caa5fSPaolo Bonzini return (error == ENOSPC) ? BDRV_ACTION_STOP : BDRV_ACTION_REPORT; 29013e1caa5fSPaolo Bonzini case BLOCKDEV_ON_ERROR_STOP: 29023e1caa5fSPaolo Bonzini return BDRV_ACTION_STOP; 29033e1caa5fSPaolo Bonzini case BLOCKDEV_ON_ERROR_REPORT: 29043e1caa5fSPaolo Bonzini return BDRV_ACTION_REPORT; 29053e1caa5fSPaolo Bonzini case BLOCKDEV_ON_ERROR_IGNORE: 29063e1caa5fSPaolo Bonzini return BDRV_ACTION_IGNORE; 29073e1caa5fSPaolo Bonzini default: 29083e1caa5fSPaolo Bonzini abort(); 29093e1caa5fSPaolo Bonzini } 29103e1caa5fSPaolo Bonzini } 29113e1caa5fSPaolo Bonzini 29123e1caa5fSPaolo Bonzini /* This is done by device models because, while the block layer knows 29133e1caa5fSPaolo Bonzini * about the error, it does not know whether an operation comes from 29143e1caa5fSPaolo Bonzini * the device or the block layer (from a job, for example). 29153e1caa5fSPaolo Bonzini */ 29163e1caa5fSPaolo Bonzini void bdrv_error_action(BlockDriverState *bs, BlockErrorAction action, 29173e1caa5fSPaolo Bonzini bool is_read, int error) 29183e1caa5fSPaolo Bonzini { 29193e1caa5fSPaolo Bonzini assert(error >= 0); 292032c81a4aSPaolo Bonzini bdrv_emit_qmp_error_event(bs, QEVENT_BLOCK_IO_ERROR, action, is_read); 29213e1caa5fSPaolo Bonzini if (action == BDRV_ACTION_STOP) { 29223e1caa5fSPaolo Bonzini vm_stop(RUN_STATE_IO_ERROR); 29233e1caa5fSPaolo Bonzini bdrv_iostatus_set_err(bs, error); 29243e1caa5fSPaolo Bonzini } 29253e1caa5fSPaolo Bonzini } 29263e1caa5fSPaolo Bonzini 2927b338082bSbellard int bdrv_is_read_only(BlockDriverState *bs) 2928b338082bSbellard { 2929b338082bSbellard return bs->read_only; 2930b338082bSbellard } 2931b338082bSbellard 2932985a03b0Sths int bdrv_is_sg(BlockDriverState *bs) 2933985a03b0Sths { 2934985a03b0Sths return bs->sg; 2935985a03b0Sths } 2936985a03b0Sths 2937e900a7b7SChristoph Hellwig int bdrv_enable_write_cache(BlockDriverState *bs) 2938e900a7b7SChristoph Hellwig { 2939e900a7b7SChristoph Hellwig return bs->enable_write_cache; 2940e900a7b7SChristoph Hellwig } 2941e900a7b7SChristoph Hellwig 2942425b0148SPaolo Bonzini void bdrv_set_enable_write_cache(BlockDriverState *bs, bool wce) 2943425b0148SPaolo Bonzini { 2944425b0148SPaolo Bonzini bs->enable_write_cache = wce; 294555b110f2SJeff Cody 294655b110f2SJeff Cody /* so a reopen() will preserve wce */ 294755b110f2SJeff Cody if (wce) { 294855b110f2SJeff Cody bs->open_flags |= BDRV_O_CACHE_WB; 294955b110f2SJeff Cody } else { 295055b110f2SJeff Cody bs->open_flags &= ~BDRV_O_CACHE_WB; 295155b110f2SJeff Cody } 2952425b0148SPaolo Bonzini } 2953425b0148SPaolo Bonzini 2954ea2384d3Sbellard int bdrv_is_encrypted(BlockDriverState *bs) 2955ea2384d3Sbellard { 2956ea2384d3Sbellard if (bs->backing_hd && bs->backing_hd->encrypted) 2957ea2384d3Sbellard return 1; 2958ea2384d3Sbellard return bs->encrypted; 2959ea2384d3Sbellard } 2960ea2384d3Sbellard 2961c0f4ce77Saliguori int bdrv_key_required(BlockDriverState *bs) 2962c0f4ce77Saliguori { 2963c0f4ce77Saliguori BlockDriverState *backing_hd = bs->backing_hd; 2964c0f4ce77Saliguori 2965c0f4ce77Saliguori if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key) 2966c0f4ce77Saliguori return 1; 2967c0f4ce77Saliguori return (bs->encrypted && !bs->valid_key); 2968c0f4ce77Saliguori } 2969c0f4ce77Saliguori 2970ea2384d3Sbellard int bdrv_set_key(BlockDriverState *bs, const char *key) 2971ea2384d3Sbellard { 2972ea2384d3Sbellard int ret; 2973ea2384d3Sbellard if (bs->backing_hd && bs->backing_hd->encrypted) { 2974ea2384d3Sbellard ret = bdrv_set_key(bs->backing_hd, key); 2975ea2384d3Sbellard if (ret < 0) 2976ea2384d3Sbellard return ret; 2977ea2384d3Sbellard if (!bs->encrypted) 2978ea2384d3Sbellard return 0; 2979ea2384d3Sbellard } 2980fd04a2aeSShahar Havivi if (!bs->encrypted) { 2981fd04a2aeSShahar Havivi return -EINVAL; 2982fd04a2aeSShahar Havivi } else if (!bs->drv || !bs->drv->bdrv_set_key) { 2983fd04a2aeSShahar Havivi return -ENOMEDIUM; 2984fd04a2aeSShahar Havivi } 2985c0f4ce77Saliguori ret = bs->drv->bdrv_set_key(bs, key); 2986bb5fc20fSaliguori if (ret < 0) { 2987bb5fc20fSaliguori bs->valid_key = 0; 2988bb5fc20fSaliguori } else if (!bs->valid_key) { 2989bb5fc20fSaliguori bs->valid_key = 1; 2990bb5fc20fSaliguori /* call the change callback now, we skipped it on open */ 29917d4b4ba5SMarkus Armbruster bdrv_dev_change_media_cb(bs, true); 2992bb5fc20fSaliguori } 2993c0f4ce77Saliguori return ret; 2994ea2384d3Sbellard } 2995ea2384d3Sbellard 2996f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs) 2997ea2384d3Sbellard { 2998f8d6bba1SMarkus Armbruster return bs->drv ? bs->drv->format_name : NULL; 2999ea2384d3Sbellard } 3000ea2384d3Sbellard 3001ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name), 3002ea2384d3Sbellard void *opaque) 3003ea2384d3Sbellard { 3004ea2384d3Sbellard BlockDriver *drv; 3005ea2384d3Sbellard 30068a22f02aSStefan Hajnoczi QLIST_FOREACH(drv, &bdrv_drivers, list) { 3007ea2384d3Sbellard it(opaque, drv->format_name); 3008ea2384d3Sbellard } 3009ea2384d3Sbellard } 3010ea2384d3Sbellard 3011b338082bSbellard BlockDriverState *bdrv_find(const char *name) 3012b338082bSbellard { 3013b338082bSbellard BlockDriverState *bs; 3014b338082bSbellard 30151b7bdbc1SStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 30161b7bdbc1SStefan Hajnoczi if (!strcmp(name, bs->device_name)) { 3017b338082bSbellard return bs; 3018b338082bSbellard } 30191b7bdbc1SStefan Hajnoczi } 3020b338082bSbellard return NULL; 3021b338082bSbellard } 3022b338082bSbellard 30232f399b0aSMarkus Armbruster BlockDriverState *bdrv_next(BlockDriverState *bs) 30242f399b0aSMarkus Armbruster { 30252f399b0aSMarkus Armbruster if (!bs) { 30262f399b0aSMarkus Armbruster return QTAILQ_FIRST(&bdrv_states); 30272f399b0aSMarkus Armbruster } 30282f399b0aSMarkus Armbruster return QTAILQ_NEXT(bs, list); 30292f399b0aSMarkus Armbruster } 30302f399b0aSMarkus Armbruster 303151de9760Saliguori void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque) 303281d0912dSbellard { 303381d0912dSbellard BlockDriverState *bs; 303481d0912dSbellard 30351b7bdbc1SStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 303651de9760Saliguori it(opaque, bs); 303781d0912dSbellard } 303881d0912dSbellard } 303981d0912dSbellard 3040ea2384d3Sbellard const char *bdrv_get_device_name(BlockDriverState *bs) 3041ea2384d3Sbellard { 3042ea2384d3Sbellard return bs->device_name; 3043ea2384d3Sbellard } 3044ea2384d3Sbellard 3045c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs) 3046c8433287SMarkus Armbruster { 3047c8433287SMarkus Armbruster return bs->open_flags; 3048c8433287SMarkus Armbruster } 3049c8433287SMarkus Armbruster 3050f0f0fdfeSKevin Wolf int bdrv_flush_all(void) 3051c6ca28d6Saliguori { 3052c6ca28d6Saliguori BlockDriverState *bs; 3053f0f0fdfeSKevin Wolf int result = 0; 3054c6ca28d6Saliguori 30551b7bdbc1SStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 3056f0f0fdfeSKevin Wolf int ret = bdrv_flush(bs); 3057f0f0fdfeSKevin Wolf if (ret < 0 && !result) { 3058f0f0fdfeSKevin Wolf result = ret; 3059c6ca28d6Saliguori } 30601b7bdbc1SStefan Hajnoczi } 3061c6ca28d6Saliguori 3062f0f0fdfeSKevin Wolf return result; 3063f0f0fdfeSKevin Wolf } 3064f0f0fdfeSKevin Wolf 30653ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs) 30663ac21627SPeter Lieven { 30673ac21627SPeter Lieven return 1; 30683ac21627SPeter Lieven } 30693ac21627SPeter Lieven 3070f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs) 3071f2feebbdSKevin Wolf { 3072f2feebbdSKevin Wolf assert(bs->drv); 3073f2feebbdSKevin Wolf 307411212d8fSPaolo Bonzini /* If BS is a copy on write image, it is initialized to 307511212d8fSPaolo Bonzini the contents of the base image, which may not be zeroes. */ 307611212d8fSPaolo Bonzini if (bs->backing_hd) { 307711212d8fSPaolo Bonzini return 0; 307811212d8fSPaolo Bonzini } 3079336c1c12SKevin Wolf if (bs->drv->bdrv_has_zero_init) { 3080336c1c12SKevin Wolf return bs->drv->bdrv_has_zero_init(bs); 3081f2feebbdSKevin Wolf } 3082f2feebbdSKevin Wolf 30833ac21627SPeter Lieven /* safe default */ 30843ac21627SPeter Lieven return 0; 3085f2feebbdSKevin Wolf } 3086f2feebbdSKevin Wolf 3087b6b8a333SPaolo Bonzini typedef struct BdrvCoGetBlockStatusData { 3088376ae3f1SStefan Hajnoczi BlockDriverState *bs; 3089b35b2bbaSMiroslav Rezanina BlockDriverState *base; 3090376ae3f1SStefan Hajnoczi int64_t sector_num; 3091376ae3f1SStefan Hajnoczi int nb_sectors; 3092376ae3f1SStefan Hajnoczi int *pnum; 3093b6b8a333SPaolo Bonzini int64_t ret; 3094376ae3f1SStefan Hajnoczi bool done; 3095b6b8a333SPaolo Bonzini } BdrvCoGetBlockStatusData; 3096376ae3f1SStefan Hajnoczi 3097f58c7b35Sths /* 3098f58c7b35Sths * Returns true iff the specified sector is present in the disk image. Drivers 3099f58c7b35Sths * not implementing the functionality are assumed to not support backing files, 3100f58c7b35Sths * hence all their sectors are reported as allocated. 3101f58c7b35Sths * 3102bd9533e3SStefan Hajnoczi * If 'sector_num' is beyond the end of the disk image the return value is 0 3103bd9533e3SStefan Hajnoczi * and 'pnum' is set to 0. 3104bd9533e3SStefan Hajnoczi * 3105f58c7b35Sths * 'pnum' is set to the number of sectors (including and immediately following 3106f58c7b35Sths * the specified sector) that are known to be in the same 3107f58c7b35Sths * allocated/unallocated state. 3108f58c7b35Sths * 3109bd9533e3SStefan Hajnoczi * 'nb_sectors' is the max value 'pnum' should be set to. If nb_sectors goes 3110bd9533e3SStefan Hajnoczi * beyond the end of the disk image it will be clamped. 3111f58c7b35Sths */ 3112b6b8a333SPaolo Bonzini static int64_t coroutine_fn bdrv_co_get_block_status(BlockDriverState *bs, 3113bdad13b9SPaolo Bonzini int64_t sector_num, 3114060f51c9SStefan Hajnoczi int nb_sectors, int *pnum) 3115f58c7b35Sths { 3116617ccb46SPaolo Bonzini int64_t length; 3117f58c7b35Sths int64_t n; 31185daa74a6SPaolo Bonzini int64_t ret, ret2; 3119bd9533e3SStefan Hajnoczi 3120617ccb46SPaolo Bonzini length = bdrv_getlength(bs); 3121617ccb46SPaolo Bonzini if (length < 0) { 3122617ccb46SPaolo Bonzini return length; 3123617ccb46SPaolo Bonzini } 3124617ccb46SPaolo Bonzini 3125617ccb46SPaolo Bonzini if (sector_num >= (length >> BDRV_SECTOR_BITS)) { 31266aebab14SStefan Hajnoczi *pnum = 0; 31276aebab14SStefan Hajnoczi return 0; 31286aebab14SStefan Hajnoczi } 3129bd9533e3SStefan Hajnoczi 31306aebab14SStefan Hajnoczi n = bs->total_sectors - sector_num; 3131bd9533e3SStefan Hajnoczi if (n < nb_sectors) { 3132bd9533e3SStefan Hajnoczi nb_sectors = n; 3133bd9533e3SStefan Hajnoczi } 3134bd9533e3SStefan Hajnoczi 3135b6b8a333SPaolo Bonzini if (!bs->drv->bdrv_co_get_block_status) { 3136bd9533e3SStefan Hajnoczi *pnum = nb_sectors; 3137918e92d7SPaolo Bonzini ret = BDRV_BLOCK_DATA; 3138918e92d7SPaolo Bonzini if (bs->drv->protocol_name) { 3139918e92d7SPaolo Bonzini ret |= BDRV_BLOCK_OFFSET_VALID | (sector_num * BDRV_SECTOR_SIZE); 3140918e92d7SPaolo Bonzini } 3141918e92d7SPaolo Bonzini return ret; 31426aebab14SStefan Hajnoczi } 31436aebab14SStefan Hajnoczi 3144415b5b01SPaolo Bonzini ret = bs->drv->bdrv_co_get_block_status(bs, sector_num, nb_sectors, pnum); 3145415b5b01SPaolo Bonzini if (ret < 0) { 31463e0a233dSPeter Lieven *pnum = 0; 3147415b5b01SPaolo Bonzini return ret; 3148415b5b01SPaolo Bonzini } 3149415b5b01SPaolo Bonzini 3150f0ad5712SPaolo Bonzini if (!(ret & BDRV_BLOCK_DATA)) { 3151f0ad5712SPaolo Bonzini if (bdrv_has_zero_init(bs)) { 3152415b5b01SPaolo Bonzini ret |= BDRV_BLOCK_ZERO; 31531f9db224SPeter Lieven } else if (bs->backing_hd) { 3154f0ad5712SPaolo Bonzini BlockDriverState *bs2 = bs->backing_hd; 3155f0ad5712SPaolo Bonzini int64_t length2 = bdrv_getlength(bs2); 3156f0ad5712SPaolo Bonzini if (length2 >= 0 && sector_num >= (length2 >> BDRV_SECTOR_BITS)) { 3157f0ad5712SPaolo Bonzini ret |= BDRV_BLOCK_ZERO; 3158f0ad5712SPaolo Bonzini } 3159f0ad5712SPaolo Bonzini } 3160415b5b01SPaolo Bonzini } 31615daa74a6SPaolo Bonzini 31625daa74a6SPaolo Bonzini if (bs->file && 31635daa74a6SPaolo Bonzini (ret & BDRV_BLOCK_DATA) && !(ret & BDRV_BLOCK_ZERO) && 31645daa74a6SPaolo Bonzini (ret & BDRV_BLOCK_OFFSET_VALID)) { 31655daa74a6SPaolo Bonzini ret2 = bdrv_co_get_block_status(bs->file, ret >> BDRV_SECTOR_BITS, 31665daa74a6SPaolo Bonzini *pnum, pnum); 31675daa74a6SPaolo Bonzini if (ret2 >= 0) { 31685daa74a6SPaolo Bonzini /* Ignore errors. This is just providing extra information, it 31695daa74a6SPaolo Bonzini * is useful but not necessary. 31705daa74a6SPaolo Bonzini */ 31715daa74a6SPaolo Bonzini ret |= (ret2 & BDRV_BLOCK_ZERO); 31725daa74a6SPaolo Bonzini } 31735daa74a6SPaolo Bonzini } 31745daa74a6SPaolo Bonzini 3175415b5b01SPaolo Bonzini return ret; 3176060f51c9SStefan Hajnoczi } 3177060f51c9SStefan Hajnoczi 3178b6b8a333SPaolo Bonzini /* Coroutine wrapper for bdrv_get_block_status() */ 3179b6b8a333SPaolo Bonzini static void coroutine_fn bdrv_get_block_status_co_entry(void *opaque) 3180060f51c9SStefan Hajnoczi { 3181b6b8a333SPaolo Bonzini BdrvCoGetBlockStatusData *data = opaque; 3182060f51c9SStefan Hajnoczi BlockDriverState *bs = data->bs; 3183060f51c9SStefan Hajnoczi 3184b6b8a333SPaolo Bonzini data->ret = bdrv_co_get_block_status(bs, data->sector_num, data->nb_sectors, 3185060f51c9SStefan Hajnoczi data->pnum); 3186060f51c9SStefan Hajnoczi data->done = true; 3187060f51c9SStefan Hajnoczi } 3188060f51c9SStefan Hajnoczi 3189060f51c9SStefan Hajnoczi /* 3190b6b8a333SPaolo Bonzini * Synchronous wrapper around bdrv_co_get_block_status(). 3191060f51c9SStefan Hajnoczi * 3192b6b8a333SPaolo Bonzini * See bdrv_co_get_block_status() for details. 3193060f51c9SStefan Hajnoczi */ 3194b6b8a333SPaolo Bonzini int64_t bdrv_get_block_status(BlockDriverState *bs, int64_t sector_num, 3195b6b8a333SPaolo Bonzini int nb_sectors, int *pnum) 3196060f51c9SStefan Hajnoczi { 3197376ae3f1SStefan Hajnoczi Coroutine *co; 3198b6b8a333SPaolo Bonzini BdrvCoGetBlockStatusData data = { 3199376ae3f1SStefan Hajnoczi .bs = bs, 3200376ae3f1SStefan Hajnoczi .sector_num = sector_num, 3201376ae3f1SStefan Hajnoczi .nb_sectors = nb_sectors, 3202376ae3f1SStefan Hajnoczi .pnum = pnum, 3203376ae3f1SStefan Hajnoczi .done = false, 3204376ae3f1SStefan Hajnoczi }; 3205376ae3f1SStefan Hajnoczi 3206bdad13b9SPaolo Bonzini if (qemu_in_coroutine()) { 3207bdad13b9SPaolo Bonzini /* Fast-path if already in coroutine context */ 3208b6b8a333SPaolo Bonzini bdrv_get_block_status_co_entry(&data); 3209bdad13b9SPaolo Bonzini } else { 3210b6b8a333SPaolo Bonzini co = qemu_coroutine_create(bdrv_get_block_status_co_entry); 3211376ae3f1SStefan Hajnoczi qemu_coroutine_enter(co, &data); 3212376ae3f1SStefan Hajnoczi while (!data.done) { 3213376ae3f1SStefan Hajnoczi qemu_aio_wait(); 3214376ae3f1SStefan Hajnoczi } 3215bdad13b9SPaolo Bonzini } 3216376ae3f1SStefan Hajnoczi return data.ret; 3217376ae3f1SStefan Hajnoczi } 3218f58c7b35Sths 3219b6b8a333SPaolo Bonzini int coroutine_fn bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, 3220b6b8a333SPaolo Bonzini int nb_sectors, int *pnum) 3221b6b8a333SPaolo Bonzini { 32224333bb71SPaolo Bonzini int64_t ret = bdrv_get_block_status(bs, sector_num, nb_sectors, pnum); 32234333bb71SPaolo Bonzini if (ret < 0) { 32244333bb71SPaolo Bonzini return ret; 32254333bb71SPaolo Bonzini } 32264333bb71SPaolo Bonzini return 32274333bb71SPaolo Bonzini (ret & BDRV_BLOCK_DATA) || 32284333bb71SPaolo Bonzini ((ret & BDRV_BLOCK_ZERO) && !bdrv_has_zero_init(bs)); 3229b6b8a333SPaolo Bonzini } 3230b6b8a333SPaolo Bonzini 3231188a7bbfSPaolo Bonzini /* 3232188a7bbfSPaolo Bonzini * Given an image chain: ... -> [BASE] -> [INTER1] -> [INTER2] -> [TOP] 3233188a7bbfSPaolo Bonzini * 3234188a7bbfSPaolo Bonzini * Return true if the given sector is allocated in any image between 3235188a7bbfSPaolo Bonzini * BASE and TOP (inclusive). BASE can be NULL to check if the given 3236188a7bbfSPaolo Bonzini * sector is allocated in any image of the chain. Return false otherwise. 3237188a7bbfSPaolo Bonzini * 3238188a7bbfSPaolo Bonzini * 'pnum' is set to the number of sectors (including and immediately following 3239188a7bbfSPaolo Bonzini * the specified sector) that are known to be in the same 3240188a7bbfSPaolo Bonzini * allocated/unallocated state. 3241188a7bbfSPaolo Bonzini * 3242188a7bbfSPaolo Bonzini */ 32434f578637SPaolo Bonzini int bdrv_is_allocated_above(BlockDriverState *top, 3244188a7bbfSPaolo Bonzini BlockDriverState *base, 3245188a7bbfSPaolo Bonzini int64_t sector_num, 3246188a7bbfSPaolo Bonzini int nb_sectors, int *pnum) 3247188a7bbfSPaolo Bonzini { 3248188a7bbfSPaolo Bonzini BlockDriverState *intermediate; 3249188a7bbfSPaolo Bonzini int ret, n = nb_sectors; 3250188a7bbfSPaolo Bonzini 3251188a7bbfSPaolo Bonzini intermediate = top; 3252188a7bbfSPaolo Bonzini while (intermediate && intermediate != base) { 3253188a7bbfSPaolo Bonzini int pnum_inter; 3254bdad13b9SPaolo Bonzini ret = bdrv_is_allocated(intermediate, sector_num, nb_sectors, 3255188a7bbfSPaolo Bonzini &pnum_inter); 3256188a7bbfSPaolo Bonzini if (ret < 0) { 3257188a7bbfSPaolo Bonzini return ret; 3258188a7bbfSPaolo Bonzini } else if (ret) { 3259188a7bbfSPaolo Bonzini *pnum = pnum_inter; 3260188a7bbfSPaolo Bonzini return 1; 3261188a7bbfSPaolo Bonzini } 3262188a7bbfSPaolo Bonzini 3263188a7bbfSPaolo Bonzini /* 3264188a7bbfSPaolo Bonzini * [sector_num, nb_sectors] is unallocated on top but intermediate 3265188a7bbfSPaolo Bonzini * might have 3266188a7bbfSPaolo Bonzini * 3267188a7bbfSPaolo Bonzini * [sector_num+x, nr_sectors] allocated. 3268188a7bbfSPaolo Bonzini */ 326963ba17d3SVishvananda Ishaya if (n > pnum_inter && 327063ba17d3SVishvananda Ishaya (intermediate == top || 327163ba17d3SVishvananda Ishaya sector_num + pnum_inter < intermediate->total_sectors)) { 3272188a7bbfSPaolo Bonzini n = pnum_inter; 3273188a7bbfSPaolo Bonzini } 3274188a7bbfSPaolo Bonzini 3275188a7bbfSPaolo Bonzini intermediate = intermediate->backing_hd; 3276188a7bbfSPaolo Bonzini } 3277188a7bbfSPaolo Bonzini 3278188a7bbfSPaolo Bonzini *pnum = n; 3279188a7bbfSPaolo Bonzini return 0; 3280188a7bbfSPaolo Bonzini } 3281188a7bbfSPaolo Bonzini 3282045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs) 3283045df330Saliguori { 3284045df330Saliguori if (bs->backing_hd && bs->backing_hd->encrypted) 3285045df330Saliguori return bs->backing_file; 3286045df330Saliguori else if (bs->encrypted) 3287045df330Saliguori return bs->filename; 3288045df330Saliguori else 3289045df330Saliguori return NULL; 3290045df330Saliguori } 3291045df330Saliguori 329283f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs, 329383f64091Sbellard char *filename, int filename_size) 329483f64091Sbellard { 329583f64091Sbellard pstrcpy(filename, filename_size, bs->backing_file); 329683f64091Sbellard } 329783f64091Sbellard 3298faea38e7Sbellard int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num, 3299faea38e7Sbellard const uint8_t *buf, int nb_sectors) 3300faea38e7Sbellard { 3301faea38e7Sbellard BlockDriver *drv = bs->drv; 3302faea38e7Sbellard if (!drv) 330319cb3738Sbellard return -ENOMEDIUM; 3304faea38e7Sbellard if (!drv->bdrv_write_compressed) 3305faea38e7Sbellard return -ENOTSUP; 3306fbb7b4e0SKevin Wolf if (bdrv_check_request(bs, sector_num, nb_sectors)) 3307fbb7b4e0SKevin Wolf return -EIO; 33087cd1e32aSlirans@il.ibm.com 33091755da16SPaolo Bonzini assert(!bs->dirty_bitmap); 33107cd1e32aSlirans@il.ibm.com 3311faea38e7Sbellard return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors); 3312faea38e7Sbellard } 3313faea38e7Sbellard 3314faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) 3315faea38e7Sbellard { 3316faea38e7Sbellard BlockDriver *drv = bs->drv; 3317faea38e7Sbellard if (!drv) 331819cb3738Sbellard return -ENOMEDIUM; 3319faea38e7Sbellard if (!drv->bdrv_get_info) 3320faea38e7Sbellard return -ENOTSUP; 3321faea38e7Sbellard memset(bdi, 0, sizeof(*bdi)); 3322faea38e7Sbellard return drv->bdrv_get_info(bs, bdi); 3323faea38e7Sbellard } 3324faea38e7Sbellard 332545566e9cSChristoph Hellwig int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf, 332645566e9cSChristoph Hellwig int64_t pos, int size) 3327178e08a5Saliguori { 3328cf8074b3SKevin Wolf QEMUIOVector qiov; 3329cf8074b3SKevin Wolf struct iovec iov = { 3330cf8074b3SKevin Wolf .iov_base = (void *) buf, 3331cf8074b3SKevin Wolf .iov_len = size, 3332cf8074b3SKevin Wolf }; 3333cf8074b3SKevin Wolf 3334cf8074b3SKevin Wolf qemu_iovec_init_external(&qiov, &iov, 1); 3335cf8074b3SKevin Wolf return bdrv_writev_vmstate(bs, &qiov, pos); 3336cf8074b3SKevin Wolf } 3337cf8074b3SKevin Wolf 3338cf8074b3SKevin Wolf int bdrv_writev_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos) 3339cf8074b3SKevin Wolf { 3340178e08a5Saliguori BlockDriver *drv = bs->drv; 3341cf8074b3SKevin Wolf 3342cf8074b3SKevin Wolf if (!drv) { 3343178e08a5Saliguori return -ENOMEDIUM; 3344cf8074b3SKevin Wolf } else if (drv->bdrv_save_vmstate) { 3345cf8074b3SKevin Wolf return drv->bdrv_save_vmstate(bs, qiov, pos); 3346cf8074b3SKevin Wolf } else if (bs->file) { 3347cf8074b3SKevin Wolf return bdrv_writev_vmstate(bs->file, qiov, pos); 3348cf8074b3SKevin Wolf } 3349cf8074b3SKevin Wolf 33507cdb1f6dSMORITA Kazutaka return -ENOTSUP; 3351178e08a5Saliguori } 3352178e08a5Saliguori 335345566e9cSChristoph Hellwig int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf, 335445566e9cSChristoph Hellwig int64_t pos, int size) 3355178e08a5Saliguori { 3356178e08a5Saliguori BlockDriver *drv = bs->drv; 3357178e08a5Saliguori if (!drv) 3358178e08a5Saliguori return -ENOMEDIUM; 33597cdb1f6dSMORITA Kazutaka if (drv->bdrv_load_vmstate) 336045566e9cSChristoph Hellwig return drv->bdrv_load_vmstate(bs, buf, pos, size); 33617cdb1f6dSMORITA Kazutaka if (bs->file) 33627cdb1f6dSMORITA Kazutaka return bdrv_load_vmstate(bs->file, buf, pos, size); 33637cdb1f6dSMORITA Kazutaka return -ENOTSUP; 3364178e08a5Saliguori } 3365178e08a5Saliguori 33668b9b0cc2SKevin Wolf void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event) 33678b9b0cc2SKevin Wolf { 3368bf736fe3SKevin Wolf if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) { 33698b9b0cc2SKevin Wolf return; 33708b9b0cc2SKevin Wolf } 33718b9b0cc2SKevin Wolf 3372bf736fe3SKevin Wolf bs->drv->bdrv_debug_event(bs, event); 337341c695c7SKevin Wolf } 33748b9b0cc2SKevin Wolf 337541c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, 337641c695c7SKevin Wolf const char *tag) 337741c695c7SKevin Wolf { 337841c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { 337941c695c7SKevin Wolf bs = bs->file; 338041c695c7SKevin Wolf } 338141c695c7SKevin Wolf 338241c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { 338341c695c7SKevin Wolf return bs->drv->bdrv_debug_breakpoint(bs, event, tag); 338441c695c7SKevin Wolf } 338541c695c7SKevin Wolf 338641c695c7SKevin Wolf return -ENOTSUP; 338741c695c7SKevin Wolf } 338841c695c7SKevin Wolf 338941c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag) 339041c695c7SKevin Wolf { 339141c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_resume) { 339241c695c7SKevin Wolf bs = bs->file; 339341c695c7SKevin Wolf } 339441c695c7SKevin Wolf 339541c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_resume) { 339641c695c7SKevin Wolf return bs->drv->bdrv_debug_resume(bs, tag); 339741c695c7SKevin Wolf } 339841c695c7SKevin Wolf 339941c695c7SKevin Wolf return -ENOTSUP; 340041c695c7SKevin Wolf } 340141c695c7SKevin Wolf 340241c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) 340341c695c7SKevin Wolf { 340441c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { 340541c695c7SKevin Wolf bs = bs->file; 340641c695c7SKevin Wolf } 340741c695c7SKevin Wolf 340841c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { 340941c695c7SKevin Wolf return bs->drv->bdrv_debug_is_suspended(bs, tag); 341041c695c7SKevin Wolf } 341141c695c7SKevin Wolf 341241c695c7SKevin Wolf return false; 34138b9b0cc2SKevin Wolf } 34148b9b0cc2SKevin Wolf 3415199630b6SBlue Swirl int bdrv_is_snapshot(BlockDriverState *bs) 3416199630b6SBlue Swirl { 3417199630b6SBlue Swirl return !!(bs->open_flags & BDRV_O_SNAPSHOT); 3418199630b6SBlue Swirl } 3419199630b6SBlue Swirl 3420b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol. If it is 3421b1b1d783SJeff Cody * relative, it must be relative to the chain. So, passing in bs->filename 3422b1b1d783SJeff Cody * from a BDS as backing_file should not be done, as that may be relative to 3423b1b1d783SJeff Cody * the CWD rather than the chain. */ 3424e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, 3425e8a6bb9cSMarcelo Tosatti const char *backing_file) 3426e8a6bb9cSMarcelo Tosatti { 3427b1b1d783SJeff Cody char *filename_full = NULL; 3428b1b1d783SJeff Cody char *backing_file_full = NULL; 3429b1b1d783SJeff Cody char *filename_tmp = NULL; 3430b1b1d783SJeff Cody int is_protocol = 0; 3431b1b1d783SJeff Cody BlockDriverState *curr_bs = NULL; 3432b1b1d783SJeff Cody BlockDriverState *retval = NULL; 3433b1b1d783SJeff Cody 3434b1b1d783SJeff Cody if (!bs || !bs->drv || !backing_file) { 3435e8a6bb9cSMarcelo Tosatti return NULL; 3436e8a6bb9cSMarcelo Tosatti } 3437e8a6bb9cSMarcelo Tosatti 3438b1b1d783SJeff Cody filename_full = g_malloc(PATH_MAX); 3439b1b1d783SJeff Cody backing_file_full = g_malloc(PATH_MAX); 3440b1b1d783SJeff Cody filename_tmp = g_malloc(PATH_MAX); 3441b1b1d783SJeff Cody 3442b1b1d783SJeff Cody is_protocol = path_has_protocol(backing_file); 3443b1b1d783SJeff Cody 3444b1b1d783SJeff Cody for (curr_bs = bs; curr_bs->backing_hd; curr_bs = curr_bs->backing_hd) { 3445b1b1d783SJeff Cody 3446b1b1d783SJeff Cody /* If either of the filename paths is actually a protocol, then 3447b1b1d783SJeff Cody * compare unmodified paths; otherwise make paths relative */ 3448b1b1d783SJeff Cody if (is_protocol || path_has_protocol(curr_bs->backing_file)) { 3449b1b1d783SJeff Cody if (strcmp(backing_file, curr_bs->backing_file) == 0) { 3450b1b1d783SJeff Cody retval = curr_bs->backing_hd; 3451b1b1d783SJeff Cody break; 3452b1b1d783SJeff Cody } 3453e8a6bb9cSMarcelo Tosatti } else { 3454b1b1d783SJeff Cody /* If not an absolute filename path, make it relative to the current 3455b1b1d783SJeff Cody * image's filename path */ 3456b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 3457b1b1d783SJeff Cody backing_file); 3458b1b1d783SJeff Cody 3459b1b1d783SJeff Cody /* We are going to compare absolute pathnames */ 3460b1b1d783SJeff Cody if (!realpath(filename_tmp, filename_full)) { 3461b1b1d783SJeff Cody continue; 3462b1b1d783SJeff Cody } 3463b1b1d783SJeff Cody 3464b1b1d783SJeff Cody /* We need to make sure the backing filename we are comparing against 3465b1b1d783SJeff Cody * is relative to the current image filename (or absolute) */ 3466b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 3467b1b1d783SJeff Cody curr_bs->backing_file); 3468b1b1d783SJeff Cody 3469b1b1d783SJeff Cody if (!realpath(filename_tmp, backing_file_full)) { 3470b1b1d783SJeff Cody continue; 3471b1b1d783SJeff Cody } 3472b1b1d783SJeff Cody 3473b1b1d783SJeff Cody if (strcmp(backing_file_full, filename_full) == 0) { 3474b1b1d783SJeff Cody retval = curr_bs->backing_hd; 3475b1b1d783SJeff Cody break; 3476b1b1d783SJeff Cody } 3477e8a6bb9cSMarcelo Tosatti } 3478e8a6bb9cSMarcelo Tosatti } 3479e8a6bb9cSMarcelo Tosatti 3480b1b1d783SJeff Cody g_free(filename_full); 3481b1b1d783SJeff Cody g_free(backing_file_full); 3482b1b1d783SJeff Cody g_free(filename_tmp); 3483b1b1d783SJeff Cody return retval; 3484e8a6bb9cSMarcelo Tosatti } 3485e8a6bb9cSMarcelo Tosatti 3486f198fd1cSBenoît Canet int bdrv_get_backing_file_depth(BlockDriverState *bs) 3487f198fd1cSBenoît Canet { 3488f198fd1cSBenoît Canet if (!bs->drv) { 3489f198fd1cSBenoît Canet return 0; 3490f198fd1cSBenoît Canet } 3491f198fd1cSBenoît Canet 3492f198fd1cSBenoît Canet if (!bs->backing_hd) { 3493f198fd1cSBenoît Canet return 0; 3494f198fd1cSBenoît Canet } 3495f198fd1cSBenoît Canet 3496f198fd1cSBenoît Canet return 1 + bdrv_get_backing_file_depth(bs->backing_hd); 3497f198fd1cSBenoît Canet } 3498f198fd1cSBenoît Canet 349979fac568SJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs) 350079fac568SJeff Cody { 350179fac568SJeff Cody BlockDriverState *curr_bs = NULL; 350279fac568SJeff Cody 350379fac568SJeff Cody if (!bs) { 350479fac568SJeff Cody return NULL; 350579fac568SJeff Cody } 350679fac568SJeff Cody 350779fac568SJeff Cody curr_bs = bs; 350879fac568SJeff Cody 350979fac568SJeff Cody while (curr_bs->backing_hd) { 351079fac568SJeff Cody curr_bs = curr_bs->backing_hd; 351179fac568SJeff Cody } 351279fac568SJeff Cody return curr_bs; 351379fac568SJeff Cody } 351479fac568SJeff Cody 3515ea2384d3Sbellard /**************************************************************/ 351683f64091Sbellard /* async I/Os */ 3517ea2384d3Sbellard 35183b69e4b9Saliguori BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num, 3519f141eafeSaliguori QEMUIOVector *qiov, int nb_sectors, 352083f64091Sbellard BlockDriverCompletionFunc *cb, void *opaque) 3521ea2384d3Sbellard { 3522bbf0a440SStefan Hajnoczi trace_bdrv_aio_readv(bs, sector_num, nb_sectors, opaque); 3523bbf0a440SStefan Hajnoczi 3524b2a61371SStefan Hajnoczi return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors, 35258c5873d6SStefan Hajnoczi cb, opaque, false); 352683f64091Sbellard } 352783f64091Sbellard 3528f141eafeSaliguori BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num, 3529f141eafeSaliguori QEMUIOVector *qiov, int nb_sectors, 353083f64091Sbellard BlockDriverCompletionFunc *cb, void *opaque) 35317674e7bfSbellard { 3532bbf0a440SStefan Hajnoczi trace_bdrv_aio_writev(bs, sector_num, nb_sectors, opaque); 3533bbf0a440SStefan Hajnoczi 35341a6e115bSStefan Hajnoczi return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors, 35358c5873d6SStefan Hajnoczi cb, opaque, true); 353683f64091Sbellard } 353783f64091Sbellard 353840b4f539SKevin Wolf 353940b4f539SKevin Wolf typedef struct MultiwriteCB { 354040b4f539SKevin Wolf int error; 354140b4f539SKevin Wolf int num_requests; 354240b4f539SKevin Wolf int num_callbacks; 354340b4f539SKevin Wolf struct { 354440b4f539SKevin Wolf BlockDriverCompletionFunc *cb; 354540b4f539SKevin Wolf void *opaque; 354640b4f539SKevin Wolf QEMUIOVector *free_qiov; 354740b4f539SKevin Wolf } callbacks[]; 354840b4f539SKevin Wolf } MultiwriteCB; 354940b4f539SKevin Wolf 355040b4f539SKevin Wolf static void multiwrite_user_cb(MultiwriteCB *mcb) 355140b4f539SKevin Wolf { 355240b4f539SKevin Wolf int i; 355340b4f539SKevin Wolf 355440b4f539SKevin Wolf for (i = 0; i < mcb->num_callbacks; i++) { 355540b4f539SKevin Wolf mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error); 35561e1ea48dSStefan Hajnoczi if (mcb->callbacks[i].free_qiov) { 35571e1ea48dSStefan Hajnoczi qemu_iovec_destroy(mcb->callbacks[i].free_qiov); 35581e1ea48dSStefan Hajnoczi } 35597267c094SAnthony Liguori g_free(mcb->callbacks[i].free_qiov); 356040b4f539SKevin Wolf } 356140b4f539SKevin Wolf } 356240b4f539SKevin Wolf 356340b4f539SKevin Wolf static void multiwrite_cb(void *opaque, int ret) 356440b4f539SKevin Wolf { 356540b4f539SKevin Wolf MultiwriteCB *mcb = opaque; 356640b4f539SKevin Wolf 35676d519a5fSStefan Hajnoczi trace_multiwrite_cb(mcb, ret); 35686d519a5fSStefan Hajnoczi 3569cb6d3ca0SKevin Wolf if (ret < 0 && !mcb->error) { 357040b4f539SKevin Wolf mcb->error = ret; 357140b4f539SKevin Wolf } 357240b4f539SKevin Wolf 357340b4f539SKevin Wolf mcb->num_requests--; 357440b4f539SKevin Wolf if (mcb->num_requests == 0) { 357540b4f539SKevin Wolf multiwrite_user_cb(mcb); 35767267c094SAnthony Liguori g_free(mcb); 357740b4f539SKevin Wolf } 357840b4f539SKevin Wolf } 357940b4f539SKevin Wolf 358040b4f539SKevin Wolf static int multiwrite_req_compare(const void *a, const void *b) 358140b4f539SKevin Wolf { 358277be4366SChristoph Hellwig const BlockRequest *req1 = a, *req2 = b; 358377be4366SChristoph Hellwig 358477be4366SChristoph Hellwig /* 358577be4366SChristoph Hellwig * Note that we can't simply subtract req2->sector from req1->sector 358677be4366SChristoph Hellwig * here as that could overflow the return value. 358777be4366SChristoph Hellwig */ 358877be4366SChristoph Hellwig if (req1->sector > req2->sector) { 358977be4366SChristoph Hellwig return 1; 359077be4366SChristoph Hellwig } else if (req1->sector < req2->sector) { 359177be4366SChristoph Hellwig return -1; 359277be4366SChristoph Hellwig } else { 359377be4366SChristoph Hellwig return 0; 359477be4366SChristoph Hellwig } 359540b4f539SKevin Wolf } 359640b4f539SKevin Wolf 359740b4f539SKevin Wolf /* 359840b4f539SKevin Wolf * Takes a bunch of requests and tries to merge them. Returns the number of 359940b4f539SKevin Wolf * requests that remain after merging. 360040b4f539SKevin Wolf */ 360140b4f539SKevin Wolf static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs, 360240b4f539SKevin Wolf int num_reqs, MultiwriteCB *mcb) 360340b4f539SKevin Wolf { 360440b4f539SKevin Wolf int i, outidx; 360540b4f539SKevin Wolf 360640b4f539SKevin Wolf // Sort requests by start sector 360740b4f539SKevin Wolf qsort(reqs, num_reqs, sizeof(*reqs), &multiwrite_req_compare); 360840b4f539SKevin Wolf 360940b4f539SKevin Wolf // Check if adjacent requests touch the same clusters. If so, combine them, 361040b4f539SKevin Wolf // filling up gaps with zero sectors. 361140b4f539SKevin Wolf outidx = 0; 361240b4f539SKevin Wolf for (i = 1; i < num_reqs; i++) { 361340b4f539SKevin Wolf int merge = 0; 361440b4f539SKevin Wolf int64_t oldreq_last = reqs[outidx].sector + reqs[outidx].nb_sectors; 361540b4f539SKevin Wolf 3616b6a127a1SPaolo Bonzini // Handle exactly sequential writes and overlapping writes. 361740b4f539SKevin Wolf if (reqs[i].sector <= oldreq_last) { 361840b4f539SKevin Wolf merge = 1; 361940b4f539SKevin Wolf } 362040b4f539SKevin Wolf 3621e2a305fbSChristoph Hellwig if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) { 3622e2a305fbSChristoph Hellwig merge = 0; 3623e2a305fbSChristoph Hellwig } 3624e2a305fbSChristoph Hellwig 362540b4f539SKevin Wolf if (merge) { 362640b4f539SKevin Wolf size_t size; 36277267c094SAnthony Liguori QEMUIOVector *qiov = g_malloc0(sizeof(*qiov)); 362840b4f539SKevin Wolf qemu_iovec_init(qiov, 362940b4f539SKevin Wolf reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1); 363040b4f539SKevin Wolf 363140b4f539SKevin Wolf // Add the first request to the merged one. If the requests are 363240b4f539SKevin Wolf // overlapping, drop the last sectors of the first request. 363340b4f539SKevin Wolf size = (reqs[i].sector - reqs[outidx].sector) << 9; 36341b093c48SMichael Tokarev qemu_iovec_concat(qiov, reqs[outidx].qiov, 0, size); 363540b4f539SKevin Wolf 3636b6a127a1SPaolo Bonzini // We should need to add any zeros between the two requests 3637b6a127a1SPaolo Bonzini assert (reqs[i].sector <= oldreq_last); 363840b4f539SKevin Wolf 363940b4f539SKevin Wolf // Add the second request 36401b093c48SMichael Tokarev qemu_iovec_concat(qiov, reqs[i].qiov, 0, reqs[i].qiov->size); 364140b4f539SKevin Wolf 3642cbf1dff2SKevin Wolf reqs[outidx].nb_sectors = qiov->size >> 9; 364340b4f539SKevin Wolf reqs[outidx].qiov = qiov; 364440b4f539SKevin Wolf 364540b4f539SKevin Wolf mcb->callbacks[i].free_qiov = reqs[outidx].qiov; 364640b4f539SKevin Wolf } else { 364740b4f539SKevin Wolf outidx++; 364840b4f539SKevin Wolf reqs[outidx].sector = reqs[i].sector; 364940b4f539SKevin Wolf reqs[outidx].nb_sectors = reqs[i].nb_sectors; 365040b4f539SKevin Wolf reqs[outidx].qiov = reqs[i].qiov; 365140b4f539SKevin Wolf } 365240b4f539SKevin Wolf } 365340b4f539SKevin Wolf 365440b4f539SKevin Wolf return outidx + 1; 365540b4f539SKevin Wolf } 365640b4f539SKevin Wolf 365740b4f539SKevin Wolf /* 365840b4f539SKevin Wolf * Submit multiple AIO write requests at once. 365940b4f539SKevin Wolf * 366040b4f539SKevin Wolf * On success, the function returns 0 and all requests in the reqs array have 366140b4f539SKevin Wolf * been submitted. In error case this function returns -1, and any of the 366240b4f539SKevin Wolf * requests may or may not be submitted yet. In particular, this means that the 366340b4f539SKevin Wolf * callback will be called for some of the requests, for others it won't. The 366440b4f539SKevin Wolf * caller must check the error field of the BlockRequest to wait for the right 366540b4f539SKevin Wolf * callbacks (if error != 0, no callback will be called). 366640b4f539SKevin Wolf * 366740b4f539SKevin Wolf * The implementation may modify the contents of the reqs array, e.g. to merge 366840b4f539SKevin Wolf * requests. However, the fields opaque and error are left unmodified as they 366940b4f539SKevin Wolf * are used to signal failure for a single request to the caller. 367040b4f539SKevin Wolf */ 367140b4f539SKevin Wolf int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs) 367240b4f539SKevin Wolf { 367340b4f539SKevin Wolf MultiwriteCB *mcb; 367440b4f539SKevin Wolf int i; 367540b4f539SKevin Wolf 3676301db7c2SRyan Harper /* don't submit writes if we don't have a medium */ 3677301db7c2SRyan Harper if (bs->drv == NULL) { 3678301db7c2SRyan Harper for (i = 0; i < num_reqs; i++) { 3679301db7c2SRyan Harper reqs[i].error = -ENOMEDIUM; 3680301db7c2SRyan Harper } 3681301db7c2SRyan Harper return -1; 3682301db7c2SRyan Harper } 3683301db7c2SRyan Harper 368440b4f539SKevin Wolf if (num_reqs == 0) { 368540b4f539SKevin Wolf return 0; 368640b4f539SKevin Wolf } 368740b4f539SKevin Wolf 368840b4f539SKevin Wolf // Create MultiwriteCB structure 36897267c094SAnthony Liguori mcb = g_malloc0(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks)); 369040b4f539SKevin Wolf mcb->num_requests = 0; 369140b4f539SKevin Wolf mcb->num_callbacks = num_reqs; 369240b4f539SKevin Wolf 369340b4f539SKevin Wolf for (i = 0; i < num_reqs; i++) { 369440b4f539SKevin Wolf mcb->callbacks[i].cb = reqs[i].cb; 369540b4f539SKevin Wolf mcb->callbacks[i].opaque = reqs[i].opaque; 369640b4f539SKevin Wolf } 369740b4f539SKevin Wolf 369840b4f539SKevin Wolf // Check for mergable requests 369940b4f539SKevin Wolf num_reqs = multiwrite_merge(bs, reqs, num_reqs, mcb); 370040b4f539SKevin Wolf 37016d519a5fSStefan Hajnoczi trace_bdrv_aio_multiwrite(mcb, mcb->num_callbacks, num_reqs); 37026d519a5fSStefan Hajnoczi 3703df9309fbSPaolo Bonzini /* Run the aio requests. */ 3704df9309fbSPaolo Bonzini mcb->num_requests = num_reqs; 370540b4f539SKevin Wolf for (i = 0; i < num_reqs; i++) { 3706ad54ae80SPaolo Bonzini bdrv_aio_writev(bs, reqs[i].sector, reqs[i].qiov, 370740b4f539SKevin Wolf reqs[i].nb_sectors, multiwrite_cb, mcb); 370840b4f539SKevin Wolf } 370940b4f539SKevin Wolf 371040b4f539SKevin Wolf return 0; 371140b4f539SKevin Wolf } 371240b4f539SKevin Wolf 371383f64091Sbellard void bdrv_aio_cancel(BlockDriverAIOCB *acb) 371483f64091Sbellard { 3715d7331bedSStefan Hajnoczi acb->aiocb_info->cancel(acb); 371683f64091Sbellard } 371783f64091Sbellard 371883f64091Sbellard /**************************************************************/ 371983f64091Sbellard /* async block device emulation */ 372083f64091Sbellard 3721c16b5a2cSChristoph Hellwig typedef struct BlockDriverAIOCBSync { 3722c16b5a2cSChristoph Hellwig BlockDriverAIOCB common; 3723c16b5a2cSChristoph Hellwig QEMUBH *bh; 3724c16b5a2cSChristoph Hellwig int ret; 3725c16b5a2cSChristoph Hellwig /* vector translation state */ 3726c16b5a2cSChristoph Hellwig QEMUIOVector *qiov; 3727c16b5a2cSChristoph Hellwig uint8_t *bounce; 3728c16b5a2cSChristoph Hellwig int is_write; 3729c16b5a2cSChristoph Hellwig } BlockDriverAIOCBSync; 3730c16b5a2cSChristoph Hellwig 3731c16b5a2cSChristoph Hellwig static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb) 3732c16b5a2cSChristoph Hellwig { 3733b666d239SKevin Wolf BlockDriverAIOCBSync *acb = 3734b666d239SKevin Wolf container_of(blockacb, BlockDriverAIOCBSync, common); 37356a7ad299SDor Laor qemu_bh_delete(acb->bh); 373636afc451SAvi Kivity acb->bh = NULL; 3737c16b5a2cSChristoph Hellwig qemu_aio_release(acb); 3738c16b5a2cSChristoph Hellwig } 3739c16b5a2cSChristoph Hellwig 3740d7331bedSStefan Hajnoczi static const AIOCBInfo bdrv_em_aiocb_info = { 3741c16b5a2cSChristoph Hellwig .aiocb_size = sizeof(BlockDriverAIOCBSync), 3742c16b5a2cSChristoph Hellwig .cancel = bdrv_aio_cancel_em, 3743c16b5a2cSChristoph Hellwig }; 3744c16b5a2cSChristoph Hellwig 374583f64091Sbellard static void bdrv_aio_bh_cb(void *opaque) 3746beac80cdSbellard { 3747ce1a14dcSpbrook BlockDriverAIOCBSync *acb = opaque; 3748f141eafeSaliguori 3749f141eafeSaliguori if (!acb->is_write) 375003396148SMichael Tokarev qemu_iovec_from_buf(acb->qiov, 0, acb->bounce, acb->qiov->size); 3751ceb42de8Saliguori qemu_vfree(acb->bounce); 3752ce1a14dcSpbrook acb->common.cb(acb->common.opaque, acb->ret); 37536a7ad299SDor Laor qemu_bh_delete(acb->bh); 375436afc451SAvi Kivity acb->bh = NULL; 3755ce1a14dcSpbrook qemu_aio_release(acb); 3756beac80cdSbellard } 3757beac80cdSbellard 3758f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs, 3759f141eafeSaliguori int64_t sector_num, 3760f141eafeSaliguori QEMUIOVector *qiov, 3761f141eafeSaliguori int nb_sectors, 3762f141eafeSaliguori BlockDriverCompletionFunc *cb, 3763f141eafeSaliguori void *opaque, 3764f141eafeSaliguori int is_write) 3765f141eafeSaliguori 3766ea2384d3Sbellard { 3767ce1a14dcSpbrook BlockDriverAIOCBSync *acb; 376883f64091Sbellard 3769d7331bedSStefan Hajnoczi acb = qemu_aio_get(&bdrv_em_aiocb_info, bs, cb, opaque); 3770f141eafeSaliguori acb->is_write = is_write; 3771f141eafeSaliguori acb->qiov = qiov; 3772e268ca52Saliguori acb->bounce = qemu_blockalign(bs, qiov->size); 3773ce1a14dcSpbrook acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb); 3774f141eafeSaliguori 3775f141eafeSaliguori if (is_write) { 3776d5e6b161SMichael Tokarev qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size); 37771ed20acfSStefan Hajnoczi acb->ret = bs->drv->bdrv_write(bs, sector_num, acb->bounce, nb_sectors); 3778f141eafeSaliguori } else { 37791ed20acfSStefan Hajnoczi acb->ret = bs->drv->bdrv_read(bs, sector_num, acb->bounce, nb_sectors); 3780f141eafeSaliguori } 3781f141eafeSaliguori 3782ce1a14dcSpbrook qemu_bh_schedule(acb->bh); 3783f141eafeSaliguori 3784ce1a14dcSpbrook return &acb->common; 37857a6cba61Spbrook } 37867a6cba61Spbrook 3787f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs, 3788f141eafeSaliguori int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, 3789ce1a14dcSpbrook BlockDriverCompletionFunc *cb, void *opaque) 379083f64091Sbellard { 3791f141eafeSaliguori return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0); 379283f64091Sbellard } 379383f64091Sbellard 3794f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs, 3795f141eafeSaliguori int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, 3796f141eafeSaliguori BlockDriverCompletionFunc *cb, void *opaque) 3797f141eafeSaliguori { 3798f141eafeSaliguori return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1); 3799f141eafeSaliguori } 3800f141eafeSaliguori 380168485420SKevin Wolf 380268485420SKevin Wolf typedef struct BlockDriverAIOCBCoroutine { 380368485420SKevin Wolf BlockDriverAIOCB common; 380468485420SKevin Wolf BlockRequest req; 380568485420SKevin Wolf bool is_write; 3806d318aea9SKevin Wolf bool *done; 380768485420SKevin Wolf QEMUBH* bh; 380868485420SKevin Wolf } BlockDriverAIOCBCoroutine; 380968485420SKevin Wolf 381068485420SKevin Wolf static void bdrv_aio_co_cancel_em(BlockDriverAIOCB *blockacb) 381168485420SKevin Wolf { 3812d318aea9SKevin Wolf BlockDriverAIOCBCoroutine *acb = 3813d318aea9SKevin Wolf container_of(blockacb, BlockDriverAIOCBCoroutine, common); 3814d318aea9SKevin Wolf bool done = false; 3815d318aea9SKevin Wolf 3816d318aea9SKevin Wolf acb->done = &done; 3817d318aea9SKevin Wolf while (!done) { 3818d318aea9SKevin Wolf qemu_aio_wait(); 3819d318aea9SKevin Wolf } 382068485420SKevin Wolf } 382168485420SKevin Wolf 3822d7331bedSStefan Hajnoczi static const AIOCBInfo bdrv_em_co_aiocb_info = { 382368485420SKevin Wolf .aiocb_size = sizeof(BlockDriverAIOCBCoroutine), 382468485420SKevin Wolf .cancel = bdrv_aio_co_cancel_em, 382568485420SKevin Wolf }; 382668485420SKevin Wolf 382735246a68SPaolo Bonzini static void bdrv_co_em_bh(void *opaque) 382868485420SKevin Wolf { 382968485420SKevin Wolf BlockDriverAIOCBCoroutine *acb = opaque; 383068485420SKevin Wolf 383168485420SKevin Wolf acb->common.cb(acb->common.opaque, acb->req.error); 3832d318aea9SKevin Wolf 3833d318aea9SKevin Wolf if (acb->done) { 3834d318aea9SKevin Wolf *acb->done = true; 3835d318aea9SKevin Wolf } 3836d318aea9SKevin Wolf 383768485420SKevin Wolf qemu_bh_delete(acb->bh); 383868485420SKevin Wolf qemu_aio_release(acb); 383968485420SKevin Wolf } 384068485420SKevin Wolf 3841b2a61371SStefan Hajnoczi /* Invoke bdrv_co_do_readv/bdrv_co_do_writev */ 3842b2a61371SStefan Hajnoczi static void coroutine_fn bdrv_co_do_rw(void *opaque) 3843b2a61371SStefan Hajnoczi { 3844b2a61371SStefan Hajnoczi BlockDriverAIOCBCoroutine *acb = opaque; 3845b2a61371SStefan Hajnoczi BlockDriverState *bs = acb->common.bs; 3846b2a61371SStefan Hajnoczi 3847b2a61371SStefan Hajnoczi if (!acb->is_write) { 3848b2a61371SStefan Hajnoczi acb->req.error = bdrv_co_do_readv(bs, acb->req.sector, 3849470c0504SStefan Hajnoczi acb->req.nb_sectors, acb->req.qiov, 0); 3850b2a61371SStefan Hajnoczi } else { 3851b2a61371SStefan Hajnoczi acb->req.error = bdrv_co_do_writev(bs, acb->req.sector, 3852f08f2ddaSStefan Hajnoczi acb->req.nb_sectors, acb->req.qiov, 0); 3853b2a61371SStefan Hajnoczi } 3854b2a61371SStefan Hajnoczi 385535246a68SPaolo Bonzini acb->bh = qemu_bh_new(bdrv_co_em_bh, acb); 3856b2a61371SStefan Hajnoczi qemu_bh_schedule(acb->bh); 3857b2a61371SStefan Hajnoczi } 3858b2a61371SStefan Hajnoczi 385968485420SKevin Wolf static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs, 386068485420SKevin Wolf int64_t sector_num, 386168485420SKevin Wolf QEMUIOVector *qiov, 386268485420SKevin Wolf int nb_sectors, 386368485420SKevin Wolf BlockDriverCompletionFunc *cb, 386468485420SKevin Wolf void *opaque, 38658c5873d6SStefan Hajnoczi bool is_write) 386668485420SKevin Wolf { 386768485420SKevin Wolf Coroutine *co; 386868485420SKevin Wolf BlockDriverAIOCBCoroutine *acb; 386968485420SKevin Wolf 3870d7331bedSStefan Hajnoczi acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque); 387168485420SKevin Wolf acb->req.sector = sector_num; 387268485420SKevin Wolf acb->req.nb_sectors = nb_sectors; 387368485420SKevin Wolf acb->req.qiov = qiov; 387468485420SKevin Wolf acb->is_write = is_write; 3875d318aea9SKevin Wolf acb->done = NULL; 387668485420SKevin Wolf 38778c5873d6SStefan Hajnoczi co = qemu_coroutine_create(bdrv_co_do_rw); 387868485420SKevin Wolf qemu_coroutine_enter(co, acb); 387968485420SKevin Wolf 388068485420SKevin Wolf return &acb->common; 388168485420SKevin Wolf } 388268485420SKevin Wolf 388307f07615SPaolo Bonzini static void coroutine_fn bdrv_aio_flush_co_entry(void *opaque) 3884b2e12bc6SChristoph Hellwig { 388507f07615SPaolo Bonzini BlockDriverAIOCBCoroutine *acb = opaque; 388607f07615SPaolo Bonzini BlockDriverState *bs = acb->common.bs; 3887b2e12bc6SChristoph Hellwig 388807f07615SPaolo Bonzini acb->req.error = bdrv_co_flush(bs); 388907f07615SPaolo Bonzini acb->bh = qemu_bh_new(bdrv_co_em_bh, acb); 3890b2e12bc6SChristoph Hellwig qemu_bh_schedule(acb->bh); 3891b2e12bc6SChristoph Hellwig } 3892b2e12bc6SChristoph Hellwig 389307f07615SPaolo Bonzini BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs, 3894016f5cf6SAlexander Graf BlockDriverCompletionFunc *cb, void *opaque) 3895016f5cf6SAlexander Graf { 389607f07615SPaolo Bonzini trace_bdrv_aio_flush(bs, opaque); 3897016f5cf6SAlexander Graf 389807f07615SPaolo Bonzini Coroutine *co; 389907f07615SPaolo Bonzini BlockDriverAIOCBCoroutine *acb; 3900016f5cf6SAlexander Graf 3901d7331bedSStefan Hajnoczi acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque); 3902d318aea9SKevin Wolf acb->done = NULL; 3903d318aea9SKevin Wolf 390407f07615SPaolo Bonzini co = qemu_coroutine_create(bdrv_aio_flush_co_entry); 390507f07615SPaolo Bonzini qemu_coroutine_enter(co, acb); 3906016f5cf6SAlexander Graf 3907016f5cf6SAlexander Graf return &acb->common; 3908016f5cf6SAlexander Graf } 3909016f5cf6SAlexander Graf 39104265d620SPaolo Bonzini static void coroutine_fn bdrv_aio_discard_co_entry(void *opaque) 39114265d620SPaolo Bonzini { 39124265d620SPaolo Bonzini BlockDriverAIOCBCoroutine *acb = opaque; 39134265d620SPaolo Bonzini BlockDriverState *bs = acb->common.bs; 39144265d620SPaolo Bonzini 39154265d620SPaolo Bonzini acb->req.error = bdrv_co_discard(bs, acb->req.sector, acb->req.nb_sectors); 39164265d620SPaolo Bonzini acb->bh = qemu_bh_new(bdrv_co_em_bh, acb); 39174265d620SPaolo Bonzini qemu_bh_schedule(acb->bh); 39184265d620SPaolo Bonzini } 39194265d620SPaolo Bonzini 39204265d620SPaolo Bonzini BlockDriverAIOCB *bdrv_aio_discard(BlockDriverState *bs, 39214265d620SPaolo Bonzini int64_t sector_num, int nb_sectors, 39224265d620SPaolo Bonzini BlockDriverCompletionFunc *cb, void *opaque) 39234265d620SPaolo Bonzini { 39244265d620SPaolo Bonzini Coroutine *co; 39254265d620SPaolo Bonzini BlockDriverAIOCBCoroutine *acb; 39264265d620SPaolo Bonzini 39274265d620SPaolo Bonzini trace_bdrv_aio_discard(bs, sector_num, nb_sectors, opaque); 39284265d620SPaolo Bonzini 3929d7331bedSStefan Hajnoczi acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque); 39304265d620SPaolo Bonzini acb->req.sector = sector_num; 39314265d620SPaolo Bonzini acb->req.nb_sectors = nb_sectors; 3932d318aea9SKevin Wolf acb->done = NULL; 39334265d620SPaolo Bonzini co = qemu_coroutine_create(bdrv_aio_discard_co_entry); 39344265d620SPaolo Bonzini qemu_coroutine_enter(co, acb); 39354265d620SPaolo Bonzini 39364265d620SPaolo Bonzini return &acb->common; 39374265d620SPaolo Bonzini } 39384265d620SPaolo Bonzini 3939ea2384d3Sbellard void bdrv_init(void) 3940ea2384d3Sbellard { 39415efa9d5aSAnthony Liguori module_call_init(MODULE_INIT_BLOCK); 3942ea2384d3Sbellard } 3943ce1a14dcSpbrook 3944eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void) 3945eb852011SMarkus Armbruster { 3946eb852011SMarkus Armbruster use_bdrv_whitelist = 1; 3947eb852011SMarkus Armbruster bdrv_init(); 3948eb852011SMarkus Armbruster } 3949eb852011SMarkus Armbruster 3950d7331bedSStefan Hajnoczi void *qemu_aio_get(const AIOCBInfo *aiocb_info, BlockDriverState *bs, 39516bbff9a0Saliguori BlockDriverCompletionFunc *cb, void *opaque) 39526bbff9a0Saliguori { 3953ce1a14dcSpbrook BlockDriverAIOCB *acb; 3954ce1a14dcSpbrook 3955d7331bedSStefan Hajnoczi acb = g_slice_alloc(aiocb_info->aiocb_size); 3956d7331bedSStefan Hajnoczi acb->aiocb_info = aiocb_info; 3957ce1a14dcSpbrook acb->bs = bs; 3958ce1a14dcSpbrook acb->cb = cb; 3959ce1a14dcSpbrook acb->opaque = opaque; 3960ce1a14dcSpbrook return acb; 3961ce1a14dcSpbrook } 3962ce1a14dcSpbrook 3963ce1a14dcSpbrook void qemu_aio_release(void *p) 3964ce1a14dcSpbrook { 3965d37c975fSStefan Hajnoczi BlockDriverAIOCB *acb = p; 3966d7331bedSStefan Hajnoczi g_slice_free1(acb->aiocb_info->aiocb_size, acb); 3967ce1a14dcSpbrook } 396819cb3738Sbellard 396919cb3738Sbellard /**************************************************************/ 3970f9f05dc5SKevin Wolf /* Coroutine block device emulation */ 3971f9f05dc5SKevin Wolf 3972f9f05dc5SKevin Wolf typedef struct CoroutineIOCompletion { 3973f9f05dc5SKevin Wolf Coroutine *coroutine; 3974f9f05dc5SKevin Wolf int ret; 3975f9f05dc5SKevin Wolf } CoroutineIOCompletion; 3976f9f05dc5SKevin Wolf 3977f9f05dc5SKevin Wolf static void bdrv_co_io_em_complete(void *opaque, int ret) 3978f9f05dc5SKevin Wolf { 3979f9f05dc5SKevin Wolf CoroutineIOCompletion *co = opaque; 3980f9f05dc5SKevin Wolf 3981f9f05dc5SKevin Wolf co->ret = ret; 3982f9f05dc5SKevin Wolf qemu_coroutine_enter(co->coroutine, NULL); 3983f9f05dc5SKevin Wolf } 3984f9f05dc5SKevin Wolf 3985f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_io_em(BlockDriverState *bs, int64_t sector_num, 3986f9f05dc5SKevin Wolf int nb_sectors, QEMUIOVector *iov, 3987f9f05dc5SKevin Wolf bool is_write) 3988f9f05dc5SKevin Wolf { 3989f9f05dc5SKevin Wolf CoroutineIOCompletion co = { 3990f9f05dc5SKevin Wolf .coroutine = qemu_coroutine_self(), 3991f9f05dc5SKevin Wolf }; 3992f9f05dc5SKevin Wolf BlockDriverAIOCB *acb; 3993f9f05dc5SKevin Wolf 3994f9f05dc5SKevin Wolf if (is_write) { 3995a652d160SStefan Hajnoczi acb = bs->drv->bdrv_aio_writev(bs, sector_num, iov, nb_sectors, 3996f9f05dc5SKevin Wolf bdrv_co_io_em_complete, &co); 3997f9f05dc5SKevin Wolf } else { 3998a652d160SStefan Hajnoczi acb = bs->drv->bdrv_aio_readv(bs, sector_num, iov, nb_sectors, 3999f9f05dc5SKevin Wolf bdrv_co_io_em_complete, &co); 4000f9f05dc5SKevin Wolf } 4001f9f05dc5SKevin Wolf 400259370aaaSStefan Hajnoczi trace_bdrv_co_io_em(bs, sector_num, nb_sectors, is_write, acb); 4003f9f05dc5SKevin Wolf if (!acb) { 4004f9f05dc5SKevin Wolf return -EIO; 4005f9f05dc5SKevin Wolf } 4006f9f05dc5SKevin Wolf qemu_coroutine_yield(); 4007f9f05dc5SKevin Wolf 4008f9f05dc5SKevin Wolf return co.ret; 4009f9f05dc5SKevin Wolf } 4010f9f05dc5SKevin Wolf 4011f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs, 4012f9f05dc5SKevin Wolf int64_t sector_num, int nb_sectors, 4013f9f05dc5SKevin Wolf QEMUIOVector *iov) 4014f9f05dc5SKevin Wolf { 4015f9f05dc5SKevin Wolf return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, false); 4016f9f05dc5SKevin Wolf } 4017f9f05dc5SKevin Wolf 4018f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs, 4019f9f05dc5SKevin Wolf int64_t sector_num, int nb_sectors, 4020f9f05dc5SKevin Wolf QEMUIOVector *iov) 4021f9f05dc5SKevin Wolf { 4022f9f05dc5SKevin Wolf return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, true); 4023f9f05dc5SKevin Wolf } 4024f9f05dc5SKevin Wolf 402507f07615SPaolo Bonzini static void coroutine_fn bdrv_flush_co_entry(void *opaque) 4026e7a8a783SKevin Wolf { 402707f07615SPaolo Bonzini RwCo *rwco = opaque; 402807f07615SPaolo Bonzini 402907f07615SPaolo Bonzini rwco->ret = bdrv_co_flush(rwco->bs); 403007f07615SPaolo Bonzini } 403107f07615SPaolo Bonzini 403207f07615SPaolo Bonzini int coroutine_fn bdrv_co_flush(BlockDriverState *bs) 403307f07615SPaolo Bonzini { 4034eb489bb1SKevin Wolf int ret; 4035eb489bb1SKevin Wolf 403629cdb251SPaolo Bonzini if (!bs || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) { 403707f07615SPaolo Bonzini return 0; 4038eb489bb1SKevin Wolf } 4039eb489bb1SKevin Wolf 4040ca716364SKevin Wolf /* Write back cached data to the OS even with cache=unsafe */ 4041bf736fe3SKevin Wolf BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_OS); 4042eb489bb1SKevin Wolf if (bs->drv->bdrv_co_flush_to_os) { 4043eb489bb1SKevin Wolf ret = bs->drv->bdrv_co_flush_to_os(bs); 4044eb489bb1SKevin Wolf if (ret < 0) { 4045eb489bb1SKevin Wolf return ret; 4046eb489bb1SKevin Wolf } 4047eb489bb1SKevin Wolf } 4048eb489bb1SKevin Wolf 4049ca716364SKevin Wolf /* But don't actually force it to the disk with cache=unsafe */ 4050ca716364SKevin Wolf if (bs->open_flags & BDRV_O_NO_FLUSH) { 4051d4c82329SKevin Wolf goto flush_parent; 4052ca716364SKevin Wolf } 4053ca716364SKevin Wolf 4054bf736fe3SKevin Wolf BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_DISK); 4055eb489bb1SKevin Wolf if (bs->drv->bdrv_co_flush_to_disk) { 405629cdb251SPaolo Bonzini ret = bs->drv->bdrv_co_flush_to_disk(bs); 405707f07615SPaolo Bonzini } else if (bs->drv->bdrv_aio_flush) { 405807f07615SPaolo Bonzini BlockDriverAIOCB *acb; 4059e7a8a783SKevin Wolf CoroutineIOCompletion co = { 4060e7a8a783SKevin Wolf .coroutine = qemu_coroutine_self(), 4061e7a8a783SKevin Wolf }; 4062e7a8a783SKevin Wolf 406307f07615SPaolo Bonzini acb = bs->drv->bdrv_aio_flush(bs, bdrv_co_io_em_complete, &co); 406407f07615SPaolo Bonzini if (acb == NULL) { 406529cdb251SPaolo Bonzini ret = -EIO; 406607f07615SPaolo Bonzini } else { 4067e7a8a783SKevin Wolf qemu_coroutine_yield(); 406829cdb251SPaolo Bonzini ret = co.ret; 4069e7a8a783SKevin Wolf } 407007f07615SPaolo Bonzini } else { 407107f07615SPaolo Bonzini /* 407207f07615SPaolo Bonzini * Some block drivers always operate in either writethrough or unsafe 407307f07615SPaolo Bonzini * mode and don't support bdrv_flush therefore. Usually qemu doesn't 407407f07615SPaolo Bonzini * know how the server works (because the behaviour is hardcoded or 407507f07615SPaolo Bonzini * depends on server-side configuration), so we can't ensure that 407607f07615SPaolo Bonzini * everything is safe on disk. Returning an error doesn't work because 407707f07615SPaolo Bonzini * that would break guests even if the server operates in writethrough 407807f07615SPaolo Bonzini * mode. 407907f07615SPaolo Bonzini * 408007f07615SPaolo Bonzini * Let's hope the user knows what he's doing. 408107f07615SPaolo Bonzini */ 408229cdb251SPaolo Bonzini ret = 0; 408307f07615SPaolo Bonzini } 408429cdb251SPaolo Bonzini if (ret < 0) { 408529cdb251SPaolo Bonzini return ret; 408629cdb251SPaolo Bonzini } 408729cdb251SPaolo Bonzini 408829cdb251SPaolo Bonzini /* Now flush the underlying protocol. It will also have BDRV_O_NO_FLUSH 408929cdb251SPaolo Bonzini * in the case of cache=unsafe, so there are no useless flushes. 409029cdb251SPaolo Bonzini */ 4091d4c82329SKevin Wolf flush_parent: 409229cdb251SPaolo Bonzini return bdrv_co_flush(bs->file); 409307f07615SPaolo Bonzini } 409407f07615SPaolo Bonzini 40950f15423cSAnthony Liguori void bdrv_invalidate_cache(BlockDriverState *bs) 40960f15423cSAnthony Liguori { 40970f15423cSAnthony Liguori if (bs->drv && bs->drv->bdrv_invalidate_cache) { 40980f15423cSAnthony Liguori bs->drv->bdrv_invalidate_cache(bs); 40990f15423cSAnthony Liguori } 41000f15423cSAnthony Liguori } 41010f15423cSAnthony Liguori 41020f15423cSAnthony Liguori void bdrv_invalidate_cache_all(void) 41030f15423cSAnthony Liguori { 41040f15423cSAnthony Liguori BlockDriverState *bs; 41050f15423cSAnthony Liguori 41060f15423cSAnthony Liguori QTAILQ_FOREACH(bs, &bdrv_states, list) { 41070f15423cSAnthony Liguori bdrv_invalidate_cache(bs); 41080f15423cSAnthony Liguori } 41090f15423cSAnthony Liguori } 41100f15423cSAnthony Liguori 411107789269SBenoît Canet void bdrv_clear_incoming_migration_all(void) 411207789269SBenoît Canet { 411307789269SBenoît Canet BlockDriverState *bs; 411407789269SBenoît Canet 411507789269SBenoît Canet QTAILQ_FOREACH(bs, &bdrv_states, list) { 411607789269SBenoît Canet bs->open_flags = bs->open_flags & ~(BDRV_O_INCOMING); 411707789269SBenoît Canet } 411807789269SBenoît Canet } 411907789269SBenoît Canet 412007f07615SPaolo Bonzini int bdrv_flush(BlockDriverState *bs) 412107f07615SPaolo Bonzini { 412207f07615SPaolo Bonzini Coroutine *co; 412307f07615SPaolo Bonzini RwCo rwco = { 412407f07615SPaolo Bonzini .bs = bs, 412507f07615SPaolo Bonzini .ret = NOT_DONE, 412607f07615SPaolo Bonzini }; 412707f07615SPaolo Bonzini 412807f07615SPaolo Bonzini if (qemu_in_coroutine()) { 412907f07615SPaolo Bonzini /* Fast-path if already in coroutine context */ 413007f07615SPaolo Bonzini bdrv_flush_co_entry(&rwco); 413107f07615SPaolo Bonzini } else { 413207f07615SPaolo Bonzini co = qemu_coroutine_create(bdrv_flush_co_entry); 413307f07615SPaolo Bonzini qemu_coroutine_enter(co, &rwco); 413407f07615SPaolo Bonzini while (rwco.ret == NOT_DONE) { 413507f07615SPaolo Bonzini qemu_aio_wait(); 413607f07615SPaolo Bonzini } 413707f07615SPaolo Bonzini } 413807f07615SPaolo Bonzini 413907f07615SPaolo Bonzini return rwco.ret; 414007f07615SPaolo Bonzini } 4141e7a8a783SKevin Wolf 41424265d620SPaolo Bonzini static void coroutine_fn bdrv_discard_co_entry(void *opaque) 41434265d620SPaolo Bonzini { 41444265d620SPaolo Bonzini RwCo *rwco = opaque; 41454265d620SPaolo Bonzini 41464265d620SPaolo Bonzini rwco->ret = bdrv_co_discard(rwco->bs, rwco->sector_num, rwco->nb_sectors); 41474265d620SPaolo Bonzini } 41484265d620SPaolo Bonzini 41494265d620SPaolo Bonzini int coroutine_fn bdrv_co_discard(BlockDriverState *bs, int64_t sector_num, 41504265d620SPaolo Bonzini int nb_sectors) 41514265d620SPaolo Bonzini { 41524265d620SPaolo Bonzini if (!bs->drv) { 41534265d620SPaolo Bonzini return -ENOMEDIUM; 41544265d620SPaolo Bonzini } else if (bdrv_check_request(bs, sector_num, nb_sectors)) { 41554265d620SPaolo Bonzini return -EIO; 41564265d620SPaolo Bonzini } else if (bs->read_only) { 41574265d620SPaolo Bonzini return -EROFS; 4158df702c9bSPaolo Bonzini } 4159df702c9bSPaolo Bonzini 4160df702c9bSPaolo Bonzini if (bs->dirty_bitmap) { 41618f0720ecSPaolo Bonzini bdrv_reset_dirty(bs, sector_num, nb_sectors); 4162df702c9bSPaolo Bonzini } 4163df702c9bSPaolo Bonzini 41649e8f1835SPaolo Bonzini /* Do nothing if disabled. */ 41659e8f1835SPaolo Bonzini if (!(bs->open_flags & BDRV_O_UNMAP)) { 41669e8f1835SPaolo Bonzini return 0; 41679e8f1835SPaolo Bonzini } 41689e8f1835SPaolo Bonzini 4169df702c9bSPaolo Bonzini if (bs->drv->bdrv_co_discard) { 41704265d620SPaolo Bonzini return bs->drv->bdrv_co_discard(bs, sector_num, nb_sectors); 41714265d620SPaolo Bonzini } else if (bs->drv->bdrv_aio_discard) { 41724265d620SPaolo Bonzini BlockDriverAIOCB *acb; 41734265d620SPaolo Bonzini CoroutineIOCompletion co = { 41744265d620SPaolo Bonzini .coroutine = qemu_coroutine_self(), 41754265d620SPaolo Bonzini }; 41764265d620SPaolo Bonzini 41774265d620SPaolo Bonzini acb = bs->drv->bdrv_aio_discard(bs, sector_num, nb_sectors, 41784265d620SPaolo Bonzini bdrv_co_io_em_complete, &co); 41794265d620SPaolo Bonzini if (acb == NULL) { 41804265d620SPaolo Bonzini return -EIO; 41814265d620SPaolo Bonzini } else { 41824265d620SPaolo Bonzini qemu_coroutine_yield(); 41834265d620SPaolo Bonzini return co.ret; 41844265d620SPaolo Bonzini } 41854265d620SPaolo Bonzini } else { 41864265d620SPaolo Bonzini return 0; 41874265d620SPaolo Bonzini } 41884265d620SPaolo Bonzini } 41894265d620SPaolo Bonzini 41904265d620SPaolo Bonzini int bdrv_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors) 41914265d620SPaolo Bonzini { 41924265d620SPaolo Bonzini Coroutine *co; 41934265d620SPaolo Bonzini RwCo rwco = { 41944265d620SPaolo Bonzini .bs = bs, 41954265d620SPaolo Bonzini .sector_num = sector_num, 41964265d620SPaolo Bonzini .nb_sectors = nb_sectors, 41974265d620SPaolo Bonzini .ret = NOT_DONE, 41984265d620SPaolo Bonzini }; 41994265d620SPaolo Bonzini 42004265d620SPaolo Bonzini if (qemu_in_coroutine()) { 42014265d620SPaolo Bonzini /* Fast-path if already in coroutine context */ 42024265d620SPaolo Bonzini bdrv_discard_co_entry(&rwco); 42034265d620SPaolo Bonzini } else { 42044265d620SPaolo Bonzini co = qemu_coroutine_create(bdrv_discard_co_entry); 42054265d620SPaolo Bonzini qemu_coroutine_enter(co, &rwco); 42064265d620SPaolo Bonzini while (rwco.ret == NOT_DONE) { 42074265d620SPaolo Bonzini qemu_aio_wait(); 42084265d620SPaolo Bonzini } 42094265d620SPaolo Bonzini } 42104265d620SPaolo Bonzini 42114265d620SPaolo Bonzini return rwco.ret; 42124265d620SPaolo Bonzini } 42134265d620SPaolo Bonzini 4214f9f05dc5SKevin Wolf /**************************************************************/ 421519cb3738Sbellard /* removable device support */ 421619cb3738Sbellard 421719cb3738Sbellard /** 421819cb3738Sbellard * Return TRUE if the media is present 421919cb3738Sbellard */ 422019cb3738Sbellard int bdrv_is_inserted(BlockDriverState *bs) 422119cb3738Sbellard { 422219cb3738Sbellard BlockDriver *drv = bs->drv; 4223a1aff5bfSMarkus Armbruster 422419cb3738Sbellard if (!drv) 422519cb3738Sbellard return 0; 422619cb3738Sbellard if (!drv->bdrv_is_inserted) 4227a1aff5bfSMarkus Armbruster return 1; 4228a1aff5bfSMarkus Armbruster return drv->bdrv_is_inserted(bs); 422919cb3738Sbellard } 423019cb3738Sbellard 423119cb3738Sbellard /** 42328e49ca46SMarkus Armbruster * Return whether the media changed since the last call to this 42338e49ca46SMarkus Armbruster * function, or -ENOTSUP if we don't know. Most drivers don't know. 423419cb3738Sbellard */ 423519cb3738Sbellard int bdrv_media_changed(BlockDriverState *bs) 423619cb3738Sbellard { 423719cb3738Sbellard BlockDriver *drv = bs->drv; 423819cb3738Sbellard 42398e49ca46SMarkus Armbruster if (drv && drv->bdrv_media_changed) { 42408e49ca46SMarkus Armbruster return drv->bdrv_media_changed(bs); 42418e49ca46SMarkus Armbruster } 42428e49ca46SMarkus Armbruster return -ENOTSUP; 424319cb3738Sbellard } 424419cb3738Sbellard 424519cb3738Sbellard /** 424619cb3738Sbellard * If eject_flag is TRUE, eject the media. Otherwise, close the tray 424719cb3738Sbellard */ 4248f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag) 424919cb3738Sbellard { 425019cb3738Sbellard BlockDriver *drv = bs->drv; 425119cb3738Sbellard 4252822e1cd1SMarkus Armbruster if (drv && drv->bdrv_eject) { 4253822e1cd1SMarkus Armbruster drv->bdrv_eject(bs, eject_flag); 425419cb3738Sbellard } 42556f382ed2SLuiz Capitulino 42566f382ed2SLuiz Capitulino if (bs->device_name[0] != '\0') { 42576f382ed2SLuiz Capitulino bdrv_emit_qmp_eject_event(bs, eject_flag); 42586f382ed2SLuiz Capitulino } 425919cb3738Sbellard } 426019cb3738Sbellard 426119cb3738Sbellard /** 426219cb3738Sbellard * Lock or unlock the media (if it is locked, the user won't be able 426319cb3738Sbellard * to eject it manually). 426419cb3738Sbellard */ 4265025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked) 426619cb3738Sbellard { 426719cb3738Sbellard BlockDriver *drv = bs->drv; 426819cb3738Sbellard 4269025e849aSMarkus Armbruster trace_bdrv_lock_medium(bs, locked); 4270b8c6d095SStefan Hajnoczi 4271025e849aSMarkus Armbruster if (drv && drv->bdrv_lock_medium) { 4272025e849aSMarkus Armbruster drv->bdrv_lock_medium(bs, locked); 427319cb3738Sbellard } 427419cb3738Sbellard } 4275985a03b0Sths 4276985a03b0Sths /* needed for generic scsi interface */ 4277985a03b0Sths 4278985a03b0Sths int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf) 4279985a03b0Sths { 4280985a03b0Sths BlockDriver *drv = bs->drv; 4281985a03b0Sths 4282985a03b0Sths if (drv && drv->bdrv_ioctl) 4283985a03b0Sths return drv->bdrv_ioctl(bs, req, buf); 4284985a03b0Sths return -ENOTSUP; 4285985a03b0Sths } 42867d780669Saliguori 4287221f715dSaliguori BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs, 4288221f715dSaliguori unsigned long int req, void *buf, 42897d780669Saliguori BlockDriverCompletionFunc *cb, void *opaque) 42907d780669Saliguori { 4291221f715dSaliguori BlockDriver *drv = bs->drv; 42927d780669Saliguori 4293221f715dSaliguori if (drv && drv->bdrv_aio_ioctl) 4294221f715dSaliguori return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque); 4295221f715dSaliguori return NULL; 42967d780669Saliguori } 4297e268ca52Saliguori 42987b6f9300SMarkus Armbruster void bdrv_set_buffer_alignment(BlockDriverState *bs, int align) 42997b6f9300SMarkus Armbruster { 43007b6f9300SMarkus Armbruster bs->buffer_alignment = align; 43017b6f9300SMarkus Armbruster } 43027cd1e32aSlirans@il.ibm.com 4303e268ca52Saliguori void *qemu_blockalign(BlockDriverState *bs, size_t size) 4304e268ca52Saliguori { 4305e268ca52Saliguori return qemu_memalign((bs && bs->buffer_alignment) ? bs->buffer_alignment : 512, size); 4306e268ca52Saliguori } 43077cd1e32aSlirans@il.ibm.com 4308c53b1c51SStefan Hajnoczi /* 4309c53b1c51SStefan Hajnoczi * Check if all memory in this vector is sector aligned. 4310c53b1c51SStefan Hajnoczi */ 4311c53b1c51SStefan Hajnoczi bool bdrv_qiov_is_aligned(BlockDriverState *bs, QEMUIOVector *qiov) 4312c53b1c51SStefan Hajnoczi { 4313c53b1c51SStefan Hajnoczi int i; 4314c53b1c51SStefan Hajnoczi 4315c53b1c51SStefan Hajnoczi for (i = 0; i < qiov->niov; i++) { 4316c53b1c51SStefan Hajnoczi if ((uintptr_t) qiov->iov[i].iov_base % bs->buffer_alignment) { 4317c53b1c51SStefan Hajnoczi return false; 4318c53b1c51SStefan Hajnoczi } 4319c53b1c51SStefan Hajnoczi } 4320c53b1c51SStefan Hajnoczi 4321c53b1c51SStefan Hajnoczi return true; 4322c53b1c51SStefan Hajnoczi } 4323c53b1c51SStefan Hajnoczi 432450717e94SPaolo Bonzini void bdrv_set_dirty_tracking(BlockDriverState *bs, int granularity) 43257cd1e32aSlirans@il.ibm.com { 43267cd1e32aSlirans@il.ibm.com int64_t bitmap_size; 4327a55eb92cSJan Kiszka 432850717e94SPaolo Bonzini assert((granularity & (granularity - 1)) == 0); 432950717e94SPaolo Bonzini 433050717e94SPaolo Bonzini if (granularity) { 433150717e94SPaolo Bonzini granularity >>= BDRV_SECTOR_BITS; 433250717e94SPaolo Bonzini assert(!bs->dirty_bitmap); 43338f0720ecSPaolo Bonzini bitmap_size = (bdrv_getlength(bs) >> BDRV_SECTOR_BITS); 433450717e94SPaolo Bonzini bs->dirty_bitmap = hbitmap_alloc(bitmap_size, ffs(granularity) - 1); 43357cd1e32aSlirans@il.ibm.com } else { 4336c6d22830SJan Kiszka if (bs->dirty_bitmap) { 43378f0720ecSPaolo Bonzini hbitmap_free(bs->dirty_bitmap); 4338c6d22830SJan Kiszka bs->dirty_bitmap = NULL; 43397cd1e32aSlirans@il.ibm.com } 43407cd1e32aSlirans@il.ibm.com } 43417cd1e32aSlirans@il.ibm.com } 43427cd1e32aSlirans@il.ibm.com 43437cd1e32aSlirans@il.ibm.com int bdrv_get_dirty(BlockDriverState *bs, int64_t sector) 43447cd1e32aSlirans@il.ibm.com { 43458f0720ecSPaolo Bonzini if (bs->dirty_bitmap) { 43468f0720ecSPaolo Bonzini return hbitmap_get(bs->dirty_bitmap, sector); 43477cd1e32aSlirans@il.ibm.com } else { 43487cd1e32aSlirans@il.ibm.com return 0; 43497cd1e32aSlirans@il.ibm.com } 43507cd1e32aSlirans@il.ibm.com } 43517cd1e32aSlirans@il.ibm.com 43528f0720ecSPaolo Bonzini void bdrv_dirty_iter_init(BlockDriverState *bs, HBitmapIter *hbi) 43531755da16SPaolo Bonzini { 43548f0720ecSPaolo Bonzini hbitmap_iter_init(hbi, bs->dirty_bitmap, 0); 43551755da16SPaolo Bonzini } 43561755da16SPaolo Bonzini 43571755da16SPaolo Bonzini void bdrv_set_dirty(BlockDriverState *bs, int64_t cur_sector, 43581755da16SPaolo Bonzini int nr_sectors) 43591755da16SPaolo Bonzini { 43608f0720ecSPaolo Bonzini hbitmap_set(bs->dirty_bitmap, cur_sector, nr_sectors); 43611755da16SPaolo Bonzini } 43621755da16SPaolo Bonzini 43637cd1e32aSlirans@il.ibm.com void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector, 43647cd1e32aSlirans@il.ibm.com int nr_sectors) 43657cd1e32aSlirans@il.ibm.com { 43668f0720ecSPaolo Bonzini hbitmap_reset(bs->dirty_bitmap, cur_sector, nr_sectors); 43677cd1e32aSlirans@il.ibm.com } 4368aaa0eb75SLiran Schour 4369aaa0eb75SLiran Schour int64_t bdrv_get_dirty_count(BlockDriverState *bs) 4370aaa0eb75SLiran Schour { 43718f0720ecSPaolo Bonzini if (bs->dirty_bitmap) { 4372acc906c6SPaolo Bonzini return hbitmap_count(bs->dirty_bitmap); 43738f0720ecSPaolo Bonzini } else { 43748f0720ecSPaolo Bonzini return 0; 43758f0720ecSPaolo Bonzini } 4376aaa0eb75SLiran Schour } 4377f88e1a42SJes Sorensen 43789fcb0251SFam Zheng /* Get a reference to bs */ 43799fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs) 43809fcb0251SFam Zheng { 43819fcb0251SFam Zheng bs->refcnt++; 43829fcb0251SFam Zheng } 43839fcb0251SFam Zheng 43849fcb0251SFam Zheng /* Release a previously grabbed reference to bs. 43859fcb0251SFam Zheng * If after releasing, reference count is zero, the BlockDriverState is 43869fcb0251SFam Zheng * deleted. */ 43879fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs) 43889fcb0251SFam Zheng { 43899fcb0251SFam Zheng assert(bs->refcnt > 0); 43909fcb0251SFam Zheng if (--bs->refcnt == 0) { 43919fcb0251SFam Zheng bdrv_delete(bs); 43929fcb0251SFam Zheng } 43939fcb0251SFam Zheng } 43949fcb0251SFam Zheng 4395db593f25SMarcelo Tosatti void bdrv_set_in_use(BlockDriverState *bs, int in_use) 4396db593f25SMarcelo Tosatti { 4397db593f25SMarcelo Tosatti assert(bs->in_use != in_use); 4398db593f25SMarcelo Tosatti bs->in_use = in_use; 4399db593f25SMarcelo Tosatti } 4400db593f25SMarcelo Tosatti 4401db593f25SMarcelo Tosatti int bdrv_in_use(BlockDriverState *bs) 4402db593f25SMarcelo Tosatti { 4403db593f25SMarcelo Tosatti return bs->in_use; 4404db593f25SMarcelo Tosatti } 4405db593f25SMarcelo Tosatti 440628a7282aSLuiz Capitulino void bdrv_iostatus_enable(BlockDriverState *bs) 440728a7282aSLuiz Capitulino { 4408d6bf279eSLuiz Capitulino bs->iostatus_enabled = true; 440958e21ef5SLuiz Capitulino bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK; 441028a7282aSLuiz Capitulino } 441128a7282aSLuiz Capitulino 441228a7282aSLuiz Capitulino /* The I/O status is only enabled if the drive explicitly 441328a7282aSLuiz Capitulino * enables it _and_ the VM is configured to stop on errors */ 441428a7282aSLuiz Capitulino bool bdrv_iostatus_is_enabled(const BlockDriverState *bs) 441528a7282aSLuiz Capitulino { 4416d6bf279eSLuiz Capitulino return (bs->iostatus_enabled && 441792aa5c6dSPaolo Bonzini (bs->on_write_error == BLOCKDEV_ON_ERROR_ENOSPC || 441892aa5c6dSPaolo Bonzini bs->on_write_error == BLOCKDEV_ON_ERROR_STOP || 441992aa5c6dSPaolo Bonzini bs->on_read_error == BLOCKDEV_ON_ERROR_STOP)); 442028a7282aSLuiz Capitulino } 442128a7282aSLuiz Capitulino 442228a7282aSLuiz Capitulino void bdrv_iostatus_disable(BlockDriverState *bs) 442328a7282aSLuiz Capitulino { 4424d6bf279eSLuiz Capitulino bs->iostatus_enabled = false; 442528a7282aSLuiz Capitulino } 442628a7282aSLuiz Capitulino 442728a7282aSLuiz Capitulino void bdrv_iostatus_reset(BlockDriverState *bs) 442828a7282aSLuiz Capitulino { 442928a7282aSLuiz Capitulino if (bdrv_iostatus_is_enabled(bs)) { 443058e21ef5SLuiz Capitulino bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK; 44313bd293c3SPaolo Bonzini if (bs->job) { 44323bd293c3SPaolo Bonzini block_job_iostatus_reset(bs->job); 44333bd293c3SPaolo Bonzini } 443428a7282aSLuiz Capitulino } 443528a7282aSLuiz Capitulino } 443628a7282aSLuiz Capitulino 443728a7282aSLuiz Capitulino void bdrv_iostatus_set_err(BlockDriverState *bs, int error) 443828a7282aSLuiz Capitulino { 44393e1caa5fSPaolo Bonzini assert(bdrv_iostatus_is_enabled(bs)); 44403e1caa5fSPaolo Bonzini if (bs->iostatus == BLOCK_DEVICE_IO_STATUS_OK) { 444158e21ef5SLuiz Capitulino bs->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE : 444258e21ef5SLuiz Capitulino BLOCK_DEVICE_IO_STATUS_FAILED; 444328a7282aSLuiz Capitulino } 444428a7282aSLuiz Capitulino } 444528a7282aSLuiz Capitulino 4446a597e79cSChristoph Hellwig void 4447a597e79cSChristoph Hellwig bdrv_acct_start(BlockDriverState *bs, BlockAcctCookie *cookie, int64_t bytes, 4448a597e79cSChristoph Hellwig enum BlockAcctType type) 4449a597e79cSChristoph Hellwig { 4450a597e79cSChristoph Hellwig assert(type < BDRV_MAX_IOTYPE); 4451a597e79cSChristoph Hellwig 4452a597e79cSChristoph Hellwig cookie->bytes = bytes; 4453c488c7f6SChristoph Hellwig cookie->start_time_ns = get_clock(); 4454a597e79cSChristoph Hellwig cookie->type = type; 4455a597e79cSChristoph Hellwig } 4456a597e79cSChristoph Hellwig 4457a597e79cSChristoph Hellwig void 4458a597e79cSChristoph Hellwig bdrv_acct_done(BlockDriverState *bs, BlockAcctCookie *cookie) 4459a597e79cSChristoph Hellwig { 4460a597e79cSChristoph Hellwig assert(cookie->type < BDRV_MAX_IOTYPE); 4461a597e79cSChristoph Hellwig 4462a597e79cSChristoph Hellwig bs->nr_bytes[cookie->type] += cookie->bytes; 4463a597e79cSChristoph Hellwig bs->nr_ops[cookie->type]++; 4464c488c7f6SChristoph Hellwig bs->total_time_ns[cookie->type] += get_clock() - cookie->start_time_ns; 4465a597e79cSChristoph Hellwig } 4466a597e79cSChristoph Hellwig 4467d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt, 4468f88e1a42SJes Sorensen const char *base_filename, const char *base_fmt, 4469f382d43aSMiroslav Rezanina char *options, uint64_t img_size, int flags, 4470f382d43aSMiroslav Rezanina Error **errp, bool quiet) 4471f88e1a42SJes Sorensen { 4472f88e1a42SJes Sorensen QEMUOptionParameter *param = NULL, *create_options = NULL; 4473d220894eSKevin Wolf QEMUOptionParameter *backing_fmt, *backing_file, *size; 4474f88e1a42SJes Sorensen BlockDriverState *bs = NULL; 4475f88e1a42SJes Sorensen BlockDriver *drv, *proto_drv; 447696df67d1SStefan Hajnoczi BlockDriver *backing_drv = NULL; 4477cc84d90fSMax Reitz Error *local_err = NULL; 4478f88e1a42SJes Sorensen int ret = 0; 4479f88e1a42SJes Sorensen 4480f88e1a42SJes Sorensen /* Find driver and parse its options */ 4481f88e1a42SJes Sorensen drv = bdrv_find_format(fmt); 4482f88e1a42SJes Sorensen if (!drv) { 448371c79813SLuiz Capitulino error_setg(errp, "Unknown file format '%s'", fmt); 4484d92ada22SLuiz Capitulino return; 4485f88e1a42SJes Sorensen } 4486f88e1a42SJes Sorensen 448798289620SKevin Wolf proto_drv = bdrv_find_protocol(filename, true); 4488f88e1a42SJes Sorensen if (!proto_drv) { 448971c79813SLuiz Capitulino error_setg(errp, "Unknown protocol '%s'", filename); 4490d92ada22SLuiz Capitulino return; 4491f88e1a42SJes Sorensen } 4492f88e1a42SJes Sorensen 4493f88e1a42SJes Sorensen create_options = append_option_parameters(create_options, 4494f88e1a42SJes Sorensen drv->create_options); 4495f88e1a42SJes Sorensen create_options = append_option_parameters(create_options, 4496f88e1a42SJes Sorensen proto_drv->create_options); 4497f88e1a42SJes Sorensen 4498f88e1a42SJes Sorensen /* Create parameter list with default values */ 4499f88e1a42SJes Sorensen param = parse_option_parameters("", create_options, param); 4500f88e1a42SJes Sorensen 4501f88e1a42SJes Sorensen set_option_parameter_int(param, BLOCK_OPT_SIZE, img_size); 4502f88e1a42SJes Sorensen 4503f88e1a42SJes Sorensen /* Parse -o options */ 4504f88e1a42SJes Sorensen if (options) { 4505f88e1a42SJes Sorensen param = parse_option_parameters(options, create_options, param); 4506f88e1a42SJes Sorensen if (param == NULL) { 450771c79813SLuiz Capitulino error_setg(errp, "Invalid options for file format '%s'.", fmt); 4508f88e1a42SJes Sorensen goto out; 4509f88e1a42SJes Sorensen } 4510f88e1a42SJes Sorensen } 4511f88e1a42SJes Sorensen 4512f88e1a42SJes Sorensen if (base_filename) { 4513f88e1a42SJes Sorensen if (set_option_parameter(param, BLOCK_OPT_BACKING_FILE, 4514f88e1a42SJes Sorensen base_filename)) { 451571c79813SLuiz Capitulino error_setg(errp, "Backing file not supported for file format '%s'", 451671c79813SLuiz Capitulino fmt); 4517f88e1a42SJes Sorensen goto out; 4518f88e1a42SJes Sorensen } 4519f88e1a42SJes Sorensen } 4520f88e1a42SJes Sorensen 4521f88e1a42SJes Sorensen if (base_fmt) { 4522f88e1a42SJes Sorensen if (set_option_parameter(param, BLOCK_OPT_BACKING_FMT, base_fmt)) { 452371c79813SLuiz Capitulino error_setg(errp, "Backing file format not supported for file " 452471c79813SLuiz Capitulino "format '%s'", fmt); 4525f88e1a42SJes Sorensen goto out; 4526f88e1a42SJes Sorensen } 4527f88e1a42SJes Sorensen } 4528f88e1a42SJes Sorensen 4529792da93aSJes Sorensen backing_file = get_option_parameter(param, BLOCK_OPT_BACKING_FILE); 4530792da93aSJes Sorensen if (backing_file && backing_file->value.s) { 4531792da93aSJes Sorensen if (!strcmp(filename, backing_file->value.s)) { 453271c79813SLuiz Capitulino error_setg(errp, "Error: Trying to create an image with the " 453371c79813SLuiz Capitulino "same filename as the backing file"); 4534792da93aSJes Sorensen goto out; 4535792da93aSJes Sorensen } 4536792da93aSJes Sorensen } 4537792da93aSJes Sorensen 4538f88e1a42SJes Sorensen backing_fmt = get_option_parameter(param, BLOCK_OPT_BACKING_FMT); 4539f88e1a42SJes Sorensen if (backing_fmt && backing_fmt->value.s) { 454096df67d1SStefan Hajnoczi backing_drv = bdrv_find_format(backing_fmt->value.s); 454196df67d1SStefan Hajnoczi if (!backing_drv) { 454271c79813SLuiz Capitulino error_setg(errp, "Unknown backing file format '%s'", 454371c79813SLuiz Capitulino backing_fmt->value.s); 4544f88e1a42SJes Sorensen goto out; 4545f88e1a42SJes Sorensen } 4546f88e1a42SJes Sorensen } 4547f88e1a42SJes Sorensen 4548f88e1a42SJes Sorensen // The size for the image must always be specified, with one exception: 4549f88e1a42SJes Sorensen // If we are using a backing file, we can obtain the size from there 4550d220894eSKevin Wolf size = get_option_parameter(param, BLOCK_OPT_SIZE); 4551d220894eSKevin Wolf if (size && size->value.n == -1) { 4552f88e1a42SJes Sorensen if (backing_file && backing_file->value.s) { 4553f88e1a42SJes Sorensen uint64_t size; 4554f88e1a42SJes Sorensen char buf[32]; 455563090dacSPaolo Bonzini int back_flags; 455663090dacSPaolo Bonzini 455763090dacSPaolo Bonzini /* backing files always opened read-only */ 455863090dacSPaolo Bonzini back_flags = 455963090dacSPaolo Bonzini flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); 4560f88e1a42SJes Sorensen 4561f88e1a42SJes Sorensen bs = bdrv_new(""); 4562f88e1a42SJes Sorensen 4563de9c0cecSKevin Wolf ret = bdrv_open(bs, backing_file->value.s, NULL, back_flags, 4564cc84d90fSMax Reitz backing_drv, &local_err); 4565f88e1a42SJes Sorensen if (ret < 0) { 4566cc84d90fSMax Reitz error_setg_errno(errp, -ret, "Could not open '%s': %s", 4567cc84d90fSMax Reitz backing_file->value.s, 4568cc84d90fSMax Reitz error_get_pretty(local_err)); 4569cc84d90fSMax Reitz error_free(local_err); 4570cc84d90fSMax Reitz local_err = NULL; 4571f88e1a42SJes Sorensen goto out; 4572f88e1a42SJes Sorensen } 4573f88e1a42SJes Sorensen bdrv_get_geometry(bs, &size); 4574f88e1a42SJes Sorensen size *= 512; 4575f88e1a42SJes Sorensen 4576f88e1a42SJes Sorensen snprintf(buf, sizeof(buf), "%" PRId64, size); 4577f88e1a42SJes Sorensen set_option_parameter(param, BLOCK_OPT_SIZE, buf); 4578f88e1a42SJes Sorensen } else { 457971c79813SLuiz Capitulino error_setg(errp, "Image creation needs a size parameter"); 4580f88e1a42SJes Sorensen goto out; 4581f88e1a42SJes Sorensen } 4582f88e1a42SJes Sorensen } 4583f88e1a42SJes Sorensen 4584f382d43aSMiroslav Rezanina if (!quiet) { 4585f88e1a42SJes Sorensen printf("Formatting '%s', fmt=%s ", filename, fmt); 4586f88e1a42SJes Sorensen print_option_parameters(param); 4587f88e1a42SJes Sorensen puts(""); 4588f382d43aSMiroslav Rezanina } 4589cc84d90fSMax Reitz ret = bdrv_create(drv, filename, param, &local_err); 4590cc84d90fSMax Reitz if (ret == -EFBIG) { 4591cc84d90fSMax Reitz /* This is generally a better message than whatever the driver would 4592cc84d90fSMax Reitz * deliver (especially because of the cluster_size_hint), since that 4593cc84d90fSMax Reitz * is most probably not much different from "image too large". */ 4594f3f4d2c0SKevin Wolf const char *cluster_size_hint = ""; 4595f3f4d2c0SKevin Wolf if (get_option_parameter(create_options, BLOCK_OPT_CLUSTER_SIZE)) { 4596f3f4d2c0SKevin Wolf cluster_size_hint = " (try using a larger cluster size)"; 4597f3f4d2c0SKevin Wolf } 4598cc84d90fSMax Reitz error_setg(errp, "The image size is too large for file format '%s'" 4599cc84d90fSMax Reitz "%s", fmt, cluster_size_hint); 4600cc84d90fSMax Reitz error_free(local_err); 4601cc84d90fSMax Reitz local_err = NULL; 4602f88e1a42SJes Sorensen } 4603f88e1a42SJes Sorensen 4604f88e1a42SJes Sorensen out: 4605f88e1a42SJes Sorensen free_option_parameters(create_options); 4606f88e1a42SJes Sorensen free_option_parameters(param); 4607f88e1a42SJes Sorensen 4608f88e1a42SJes Sorensen if (bs) { 46094f6fd349SFam Zheng bdrv_unref(bs); 4610f88e1a42SJes Sorensen } 4611cc84d90fSMax Reitz if (error_is_set(&local_err)) { 4612cc84d90fSMax Reitz error_propagate(errp, local_err); 4613cc84d90fSMax Reitz } 4614f88e1a42SJes Sorensen } 461585d126f3SStefan Hajnoczi 461685d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs) 461785d126f3SStefan Hajnoczi { 461885d126f3SStefan Hajnoczi /* Currently BlockDriverState always uses the main loop AioContext */ 461985d126f3SStefan Hajnoczi return qemu_get_aio_context(); 462085d126f3SStefan Hajnoczi } 4621d616b224SStefan Hajnoczi 4622d616b224SStefan Hajnoczi void bdrv_add_before_write_notifier(BlockDriverState *bs, 4623d616b224SStefan Hajnoczi NotifierWithReturn *notifier) 4624d616b224SStefan Hajnoczi { 4625d616b224SStefan Hajnoczi notifier_with_return_list_add(&bs->before_write_notifiers, notifier); 4626d616b224SStefan Hajnoczi } 46276f176b48SMax Reitz 46286f176b48SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QEMUOptionParameter *options) 46296f176b48SMax Reitz { 46306f176b48SMax Reitz if (bs->drv->bdrv_amend_options == NULL) { 46316f176b48SMax Reitz return -ENOTSUP; 46326f176b48SMax Reitz } 46336f176b48SMax Reitz return bs->drv->bdrv_amend_options(bs, options); 46346f176b48SMax Reitz } 4635