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; 3975b7e1542SZhi Yong Wu } CreateCo; 3985b7e1542SZhi Yong Wu 3995b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque) 4005b7e1542SZhi Yong Wu { 4015b7e1542SZhi Yong Wu CreateCo *cco = opaque; 4025b7e1542SZhi Yong Wu assert(cco->drv); 4035b7e1542SZhi Yong Wu 404d5124c00SMax Reitz cco->ret = cco->drv->bdrv_create(cco->filename, cco->options, NULL); 4055b7e1542SZhi Yong Wu } 4065b7e1542SZhi Yong Wu 4070e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename, 4080e7e1989SKevin Wolf QEMUOptionParameter *options) 409ea2384d3Sbellard { 4105b7e1542SZhi Yong Wu int ret; 4110e7e1989SKevin Wolf 4125b7e1542SZhi Yong Wu Coroutine *co; 4135b7e1542SZhi Yong Wu CreateCo cco = { 4145b7e1542SZhi Yong Wu .drv = drv, 4155b7e1542SZhi Yong Wu .filename = g_strdup(filename), 4165b7e1542SZhi Yong Wu .options = options, 4175b7e1542SZhi Yong Wu .ret = NOT_DONE, 4185b7e1542SZhi Yong Wu }; 4195b7e1542SZhi Yong Wu 4205b7e1542SZhi Yong Wu if (!drv->bdrv_create) { 42180168bffSLuiz Capitulino ret = -ENOTSUP; 42280168bffSLuiz Capitulino goto out; 4235b7e1542SZhi Yong Wu } 4245b7e1542SZhi Yong Wu 4255b7e1542SZhi Yong Wu if (qemu_in_coroutine()) { 4265b7e1542SZhi Yong Wu /* Fast-path if already in coroutine context */ 4275b7e1542SZhi Yong Wu bdrv_create_co_entry(&cco); 4285b7e1542SZhi Yong Wu } else { 4295b7e1542SZhi Yong Wu co = qemu_coroutine_create(bdrv_create_co_entry); 4305b7e1542SZhi Yong Wu qemu_coroutine_enter(co, &cco); 4315b7e1542SZhi Yong Wu while (cco.ret == NOT_DONE) { 4325b7e1542SZhi Yong Wu qemu_aio_wait(); 4335b7e1542SZhi Yong Wu } 4345b7e1542SZhi Yong Wu } 4355b7e1542SZhi Yong Wu 4365b7e1542SZhi Yong Wu ret = cco.ret; 4375b7e1542SZhi Yong Wu 43880168bffSLuiz Capitulino out: 43980168bffSLuiz Capitulino g_free(cco.filename); 4405b7e1542SZhi Yong Wu return ret; 441ea2384d3Sbellard } 442ea2384d3Sbellard 44384a12e66SChristoph Hellwig int bdrv_create_file(const char* filename, QEMUOptionParameter *options) 44484a12e66SChristoph Hellwig { 44584a12e66SChristoph Hellwig BlockDriver *drv; 44684a12e66SChristoph Hellwig 44798289620SKevin Wolf drv = bdrv_find_protocol(filename, true); 44884a12e66SChristoph Hellwig if (drv == NULL) { 44916905d71SStefan Hajnoczi return -ENOENT; 45084a12e66SChristoph Hellwig } 45184a12e66SChristoph Hellwig 45284a12e66SChristoph Hellwig return bdrv_create(drv, filename, options); 45384a12e66SChristoph Hellwig } 45484a12e66SChristoph Hellwig 455eba25057SJim Meyering /* 456eba25057SJim Meyering * Create a uniquely-named empty temporary file. 457eba25057SJim Meyering * Return 0 upon success, otherwise a negative errno value. 458eba25057SJim Meyering */ 459eba25057SJim Meyering int get_tmp_filename(char *filename, int size) 460eba25057SJim Meyering { 461d5249393Sbellard #ifdef _WIN32 4623b9f94e1Sbellard char temp_dir[MAX_PATH]; 463eba25057SJim Meyering /* GetTempFileName requires that its output buffer (4th param) 464eba25057SJim Meyering have length MAX_PATH or greater. */ 465eba25057SJim Meyering assert(size >= MAX_PATH); 466eba25057SJim Meyering return (GetTempPath(MAX_PATH, temp_dir) 467eba25057SJim Meyering && GetTempFileName(temp_dir, "qem", 0, filename) 468eba25057SJim Meyering ? 0 : -GetLastError()); 469d5249393Sbellard #else 470ea2384d3Sbellard int fd; 4717ccfb2ebSblueswir1 const char *tmpdir; 4720badc1eeSaurel32 tmpdir = getenv("TMPDIR"); 4730badc1eeSaurel32 if (!tmpdir) 4740badc1eeSaurel32 tmpdir = "/tmp"; 475eba25057SJim Meyering if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) { 476eba25057SJim Meyering return -EOVERFLOW; 477ea2384d3Sbellard } 478eba25057SJim Meyering fd = mkstemp(filename); 479fe235a06SDunrong Huang if (fd < 0) { 480fe235a06SDunrong Huang return -errno; 481fe235a06SDunrong Huang } 482fe235a06SDunrong Huang if (close(fd) != 0) { 483fe235a06SDunrong Huang unlink(filename); 484eba25057SJim Meyering return -errno; 485eba25057SJim Meyering } 486eba25057SJim Meyering return 0; 487d5249393Sbellard #endif 488eba25057SJim Meyering } 489ea2384d3Sbellard 490f3a5d3f8SChristoph Hellwig /* 491f3a5d3f8SChristoph Hellwig * Detect host devices. By convention, /dev/cdrom[N] is always 492f3a5d3f8SChristoph Hellwig * recognized as a host CDROM. 493f3a5d3f8SChristoph Hellwig */ 494f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename) 495f3a5d3f8SChristoph Hellwig { 496508c7cb3SChristoph Hellwig int score_max = 0, score; 497508c7cb3SChristoph Hellwig BlockDriver *drv = NULL, *d; 498f3a5d3f8SChristoph Hellwig 4998a22f02aSStefan Hajnoczi QLIST_FOREACH(d, &bdrv_drivers, list) { 500508c7cb3SChristoph Hellwig if (d->bdrv_probe_device) { 501508c7cb3SChristoph Hellwig score = d->bdrv_probe_device(filename); 502508c7cb3SChristoph Hellwig if (score > score_max) { 503508c7cb3SChristoph Hellwig score_max = score; 504508c7cb3SChristoph Hellwig drv = d; 505f3a5d3f8SChristoph Hellwig } 506508c7cb3SChristoph Hellwig } 507f3a5d3f8SChristoph Hellwig } 508f3a5d3f8SChristoph Hellwig 509508c7cb3SChristoph Hellwig return drv; 510f3a5d3f8SChristoph Hellwig } 511f3a5d3f8SChristoph Hellwig 51298289620SKevin Wolf BlockDriver *bdrv_find_protocol(const char *filename, 51398289620SKevin Wolf bool allow_protocol_prefix) 51484a12e66SChristoph Hellwig { 51584a12e66SChristoph Hellwig BlockDriver *drv1; 51684a12e66SChristoph Hellwig char protocol[128]; 51784a12e66SChristoph Hellwig int len; 51884a12e66SChristoph Hellwig const char *p; 51984a12e66SChristoph Hellwig 52066f82ceeSKevin Wolf /* TODO Drivers without bdrv_file_open must be specified explicitly */ 52166f82ceeSKevin Wolf 52239508e7aSChristoph Hellwig /* 52339508e7aSChristoph Hellwig * XXX(hch): we really should not let host device detection 52439508e7aSChristoph Hellwig * override an explicit protocol specification, but moving this 52539508e7aSChristoph Hellwig * later breaks access to device names with colons in them. 52639508e7aSChristoph Hellwig * Thanks to the brain-dead persistent naming schemes on udev- 52739508e7aSChristoph Hellwig * based Linux systems those actually are quite common. 52839508e7aSChristoph Hellwig */ 52984a12e66SChristoph Hellwig drv1 = find_hdev_driver(filename); 53039508e7aSChristoph Hellwig if (drv1) { 53184a12e66SChristoph Hellwig return drv1; 53284a12e66SChristoph Hellwig } 53339508e7aSChristoph Hellwig 53498289620SKevin Wolf if (!path_has_protocol(filename) || !allow_protocol_prefix) { 53539508e7aSChristoph Hellwig return bdrv_find_format("file"); 53639508e7aSChristoph Hellwig } 53798289620SKevin Wolf 5389e0b22f4SStefan Hajnoczi p = strchr(filename, ':'); 5399e0b22f4SStefan Hajnoczi assert(p != NULL); 54084a12e66SChristoph Hellwig len = p - filename; 54184a12e66SChristoph Hellwig if (len > sizeof(protocol) - 1) 54284a12e66SChristoph Hellwig len = sizeof(protocol) - 1; 54384a12e66SChristoph Hellwig memcpy(protocol, filename, len); 54484a12e66SChristoph Hellwig protocol[len] = '\0'; 54584a12e66SChristoph Hellwig QLIST_FOREACH(drv1, &bdrv_drivers, list) { 54684a12e66SChristoph Hellwig if (drv1->protocol_name && 54784a12e66SChristoph Hellwig !strcmp(drv1->protocol_name, protocol)) { 54884a12e66SChristoph Hellwig return drv1; 54984a12e66SChristoph Hellwig } 55084a12e66SChristoph Hellwig } 55184a12e66SChristoph Hellwig return NULL; 55284a12e66SChristoph Hellwig } 55384a12e66SChristoph Hellwig 554f500a6d3SKevin Wolf static int find_image_format(BlockDriverState *bs, const char *filename, 555*34b5d2c6SMax Reitz BlockDriver **pdrv, Error **errp) 556ea2384d3Sbellard { 557f500a6d3SKevin Wolf int score, score_max; 558ea2384d3Sbellard BlockDriver *drv1, *drv; 55983f64091Sbellard uint8_t buf[2048]; 560f500a6d3SKevin Wolf int ret = 0; 561f8ea0b00SNicholas Bellinger 56208a00559SKevin Wolf /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ 5638e895599SPaolo Bonzini if (bs->sg || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) { 564c98ac35dSStefan Weil drv = bdrv_find_format("raw"); 565c98ac35dSStefan Weil if (!drv) { 566*34b5d2c6SMax Reitz error_setg(errp, "Could not find raw image format"); 567c98ac35dSStefan Weil ret = -ENOENT; 568c98ac35dSStefan Weil } 569c98ac35dSStefan Weil *pdrv = drv; 570c98ac35dSStefan Weil return ret; 5711a396859SNicholas A. Bellinger } 572f8ea0b00SNicholas Bellinger 57383f64091Sbellard ret = bdrv_pread(bs, 0, buf, sizeof(buf)); 574ea2384d3Sbellard if (ret < 0) { 575*34b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not read image for determining its " 576*34b5d2c6SMax Reitz "format"); 577c98ac35dSStefan Weil *pdrv = NULL; 578c98ac35dSStefan Weil return ret; 579ea2384d3Sbellard } 580ea2384d3Sbellard 581ea2384d3Sbellard score_max = 0; 58284a12e66SChristoph Hellwig drv = NULL; 5838a22f02aSStefan Hajnoczi QLIST_FOREACH(drv1, &bdrv_drivers, list) { 58483f64091Sbellard if (drv1->bdrv_probe) { 585ea2384d3Sbellard score = drv1->bdrv_probe(buf, ret, filename); 586ea2384d3Sbellard if (score > score_max) { 587ea2384d3Sbellard score_max = score; 588ea2384d3Sbellard drv = drv1; 589ea2384d3Sbellard } 590ea2384d3Sbellard } 59183f64091Sbellard } 592c98ac35dSStefan Weil if (!drv) { 593*34b5d2c6SMax Reitz error_setg(errp, "Could not determine image format: No compatible " 594*34b5d2c6SMax Reitz "driver found"); 595c98ac35dSStefan Weil ret = -ENOENT; 596c98ac35dSStefan Weil } 597c98ac35dSStefan Weil *pdrv = drv; 598c98ac35dSStefan Weil return ret; 599ea2384d3Sbellard } 600ea2384d3Sbellard 60151762288SStefan Hajnoczi /** 60251762288SStefan Hajnoczi * Set the current 'total_sectors' value 60351762288SStefan Hajnoczi */ 60451762288SStefan Hajnoczi static int refresh_total_sectors(BlockDriverState *bs, int64_t hint) 60551762288SStefan Hajnoczi { 60651762288SStefan Hajnoczi BlockDriver *drv = bs->drv; 60751762288SStefan Hajnoczi 608396759adSNicholas Bellinger /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */ 609396759adSNicholas Bellinger if (bs->sg) 610396759adSNicholas Bellinger return 0; 611396759adSNicholas Bellinger 61251762288SStefan Hajnoczi /* query actual device if possible, otherwise just trust the hint */ 61351762288SStefan Hajnoczi if (drv->bdrv_getlength) { 61451762288SStefan Hajnoczi int64_t length = drv->bdrv_getlength(bs); 61551762288SStefan Hajnoczi if (length < 0) { 61651762288SStefan Hajnoczi return length; 61751762288SStefan Hajnoczi } 61851762288SStefan Hajnoczi hint = length >> BDRV_SECTOR_BITS; 61951762288SStefan Hajnoczi } 62051762288SStefan Hajnoczi 62151762288SStefan Hajnoczi bs->total_sectors = hint; 62251762288SStefan Hajnoczi return 0; 62351762288SStefan Hajnoczi } 62451762288SStefan Hajnoczi 625c3993cdcSStefan Hajnoczi /** 6269e8f1835SPaolo Bonzini * Set open flags for a given discard mode 6279e8f1835SPaolo Bonzini * 6289e8f1835SPaolo Bonzini * Return 0 on success, -1 if the discard mode was invalid. 6299e8f1835SPaolo Bonzini */ 6309e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags) 6319e8f1835SPaolo Bonzini { 6329e8f1835SPaolo Bonzini *flags &= ~BDRV_O_UNMAP; 6339e8f1835SPaolo Bonzini 6349e8f1835SPaolo Bonzini if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) { 6359e8f1835SPaolo Bonzini /* do nothing */ 6369e8f1835SPaolo Bonzini } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) { 6379e8f1835SPaolo Bonzini *flags |= BDRV_O_UNMAP; 6389e8f1835SPaolo Bonzini } else { 6399e8f1835SPaolo Bonzini return -1; 6409e8f1835SPaolo Bonzini } 6419e8f1835SPaolo Bonzini 6429e8f1835SPaolo Bonzini return 0; 6439e8f1835SPaolo Bonzini } 6449e8f1835SPaolo Bonzini 6459e8f1835SPaolo Bonzini /** 646c3993cdcSStefan Hajnoczi * Set open flags for a given cache mode 647c3993cdcSStefan Hajnoczi * 648c3993cdcSStefan Hajnoczi * Return 0 on success, -1 if the cache mode was invalid. 649c3993cdcSStefan Hajnoczi */ 650c3993cdcSStefan Hajnoczi int bdrv_parse_cache_flags(const char *mode, int *flags) 651c3993cdcSStefan Hajnoczi { 652c3993cdcSStefan Hajnoczi *flags &= ~BDRV_O_CACHE_MASK; 653c3993cdcSStefan Hajnoczi 654c3993cdcSStefan Hajnoczi if (!strcmp(mode, "off") || !strcmp(mode, "none")) { 655c3993cdcSStefan Hajnoczi *flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB; 65692196b2fSStefan Hajnoczi } else if (!strcmp(mode, "directsync")) { 65792196b2fSStefan Hajnoczi *flags |= BDRV_O_NOCACHE; 658c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writeback")) { 659c3993cdcSStefan Hajnoczi *flags |= BDRV_O_CACHE_WB; 660c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "unsafe")) { 661c3993cdcSStefan Hajnoczi *flags |= BDRV_O_CACHE_WB; 662c3993cdcSStefan Hajnoczi *flags |= BDRV_O_NO_FLUSH; 663c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writethrough")) { 664c3993cdcSStefan Hajnoczi /* this is the default */ 665c3993cdcSStefan Hajnoczi } else { 666c3993cdcSStefan Hajnoczi return -1; 667c3993cdcSStefan Hajnoczi } 668c3993cdcSStefan Hajnoczi 669c3993cdcSStefan Hajnoczi return 0; 670c3993cdcSStefan Hajnoczi } 671c3993cdcSStefan Hajnoczi 67253fec9d3SStefan Hajnoczi /** 67353fec9d3SStefan Hajnoczi * The copy-on-read flag is actually a reference count so multiple users may 67453fec9d3SStefan Hajnoczi * use the feature without worrying about clobbering its previous state. 67553fec9d3SStefan Hajnoczi * Copy-on-read stays enabled until all users have called to disable it. 67653fec9d3SStefan Hajnoczi */ 67753fec9d3SStefan Hajnoczi void bdrv_enable_copy_on_read(BlockDriverState *bs) 67853fec9d3SStefan Hajnoczi { 67953fec9d3SStefan Hajnoczi bs->copy_on_read++; 68053fec9d3SStefan Hajnoczi } 68153fec9d3SStefan Hajnoczi 68253fec9d3SStefan Hajnoczi void bdrv_disable_copy_on_read(BlockDriverState *bs) 68353fec9d3SStefan Hajnoczi { 68453fec9d3SStefan Hajnoczi assert(bs->copy_on_read > 0); 68553fec9d3SStefan Hajnoczi bs->copy_on_read--; 68653fec9d3SStefan Hajnoczi } 68753fec9d3SStefan Hajnoczi 6887b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags) 6897b272452SKevin Wolf { 6907b272452SKevin Wolf int open_flags = flags | BDRV_O_CACHE_WB; 6917b272452SKevin Wolf 6927b272452SKevin Wolf /* 6937b272452SKevin Wolf * Clear flags that are internal to the block layer before opening the 6947b272452SKevin Wolf * image. 6957b272452SKevin Wolf */ 6967b272452SKevin Wolf open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); 6977b272452SKevin Wolf 6987b272452SKevin Wolf /* 6997b272452SKevin Wolf * Snapshots should be writable. 7007b272452SKevin Wolf */ 7017b272452SKevin Wolf if (bs->is_temporary) { 7027b272452SKevin Wolf open_flags |= BDRV_O_RDWR; 7037b272452SKevin Wolf } 7047b272452SKevin Wolf 7057b272452SKevin Wolf return open_flags; 7067b272452SKevin Wolf } 7077b272452SKevin Wolf 708b6ce07aaSKevin Wolf /* 70957915332SKevin Wolf * Common part for opening disk images and files 710b6ad491aSKevin Wolf * 711b6ad491aSKevin Wolf * Removes all processed options from *options. 71257915332SKevin Wolf */ 713f500a6d3SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BlockDriverState *file, 714*34b5d2c6SMax Reitz QDict *options, int flags, BlockDriver *drv, Error **errp) 71557915332SKevin Wolf { 71657915332SKevin Wolf int ret, open_flags; 717035fccdfSKevin Wolf const char *filename; 718*34b5d2c6SMax Reitz Error *local_err = NULL; 71957915332SKevin Wolf 72057915332SKevin Wolf assert(drv != NULL); 7216405875cSPaolo Bonzini assert(bs->file == NULL); 722707ff828SKevin Wolf assert(options != NULL && bs->options != options); 72357915332SKevin Wolf 72445673671SKevin Wolf if (file != NULL) { 72545673671SKevin Wolf filename = file->filename; 72645673671SKevin Wolf } else { 72745673671SKevin Wolf filename = qdict_get_try_str(options, "filename"); 72845673671SKevin Wolf } 72945673671SKevin Wolf 73045673671SKevin Wolf trace_bdrv_open_common(bs, filename ?: "", flags, drv->format_name); 73128dcee10SStefan Hajnoczi 7325d186eb0SKevin Wolf /* bdrv_open() with directly using a protocol as drv. This layer is already 7335d186eb0SKevin Wolf * opened, so assign it to bs (while file becomes a closed BlockDriverState) 7345d186eb0SKevin Wolf * and return immediately. */ 7355d186eb0SKevin Wolf if (file != NULL && drv->bdrv_file_open) { 7365d186eb0SKevin Wolf bdrv_swap(file, bs); 7375d186eb0SKevin Wolf return 0; 7385d186eb0SKevin Wolf } 7395d186eb0SKevin Wolf 74057915332SKevin Wolf bs->open_flags = flags; 74157915332SKevin Wolf bs->buffer_alignment = 512; 7420d51b4deSAsias He bs->zero_beyond_eof = true; 743b64ec4e4SFam Zheng open_flags = bdrv_open_flags(bs, flags); 744b64ec4e4SFam Zheng bs->read_only = !(open_flags & BDRV_O_RDWR); 745b64ec4e4SFam Zheng 746b64ec4e4SFam Zheng if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) { 747*34b5d2c6SMax Reitz error_setg(errp, "Driver '%s' is not whitelisted", drv->format_name); 748b64ec4e4SFam Zheng return -ENOTSUP; 749b64ec4e4SFam Zheng } 75057915332SKevin Wolf 75153fec9d3SStefan Hajnoczi assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */ 752b64ec4e4SFam Zheng if (!bs->read_only && (flags & BDRV_O_COPY_ON_READ)) { 75353fec9d3SStefan Hajnoczi bdrv_enable_copy_on_read(bs); 75453fec9d3SStefan Hajnoczi } 75553fec9d3SStefan Hajnoczi 756c2ad1b0cSKevin Wolf if (filename != NULL) { 75757915332SKevin Wolf pstrcpy(bs->filename, sizeof(bs->filename), filename); 758c2ad1b0cSKevin Wolf } else { 759c2ad1b0cSKevin Wolf bs->filename[0] = '\0'; 760c2ad1b0cSKevin Wolf } 76157915332SKevin Wolf 76257915332SKevin Wolf bs->drv = drv; 7637267c094SAnthony Liguori bs->opaque = g_malloc0(drv->instance_size); 76457915332SKevin Wolf 76503f541bdSStefan Hajnoczi bs->enable_write_cache = !!(flags & BDRV_O_CACHE_WB); 766e7c63796SStefan Hajnoczi 76766f82ceeSKevin Wolf /* Open the image, either directly or using a protocol */ 76866f82ceeSKevin Wolf if (drv->bdrv_file_open) { 7695d186eb0SKevin Wolf assert(file == NULL); 770c2ad1b0cSKevin Wolf assert(drv->bdrv_parse_filename || filename != NULL); 771*34b5d2c6SMax Reitz ret = drv->bdrv_file_open(bs, options, open_flags, &local_err); 772f500a6d3SKevin Wolf } else { 7732af5ef70SKevin Wolf if (file == NULL) { 774*34b5d2c6SMax Reitz error_setg(errp, "Can't use '%s' as a block driver for the " 775*34b5d2c6SMax Reitz "protocol level", drv->format_name); 7762af5ef70SKevin Wolf ret = -EINVAL; 7772af5ef70SKevin Wolf goto free_and_fail; 7782af5ef70SKevin Wolf } 779f500a6d3SKevin Wolf bs->file = file; 780*34b5d2c6SMax Reitz ret = drv->bdrv_open(bs, options, open_flags, &local_err); 78166f82ceeSKevin Wolf } 78266f82ceeSKevin Wolf 78357915332SKevin Wolf if (ret < 0) { 784*34b5d2c6SMax Reitz if (error_is_set(&local_err)) { 785*34b5d2c6SMax Reitz error_propagate(errp, local_err); 786*34b5d2c6SMax Reitz } else if (filename) { 787*34b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not open '%s'", filename); 788*34b5d2c6SMax Reitz } else { 789*34b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not open image"); 790*34b5d2c6SMax Reitz } 79157915332SKevin Wolf goto free_and_fail; 79257915332SKevin Wolf } 79357915332SKevin Wolf 79451762288SStefan Hajnoczi ret = refresh_total_sectors(bs, bs->total_sectors); 79551762288SStefan Hajnoczi if (ret < 0) { 796*34b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not refresh total sector count"); 79751762288SStefan Hajnoczi goto free_and_fail; 79857915332SKevin Wolf } 79951762288SStefan Hajnoczi 80057915332SKevin Wolf #ifndef _WIN32 80157915332SKevin Wolf if (bs->is_temporary) { 802c2ad1b0cSKevin Wolf assert(filename != NULL); 80357915332SKevin Wolf unlink(filename); 80457915332SKevin Wolf } 80557915332SKevin Wolf #endif 80657915332SKevin Wolf return 0; 80757915332SKevin Wolf 80857915332SKevin Wolf free_and_fail: 80966f82ceeSKevin Wolf bs->file = NULL; 8107267c094SAnthony Liguori g_free(bs->opaque); 81157915332SKevin Wolf bs->opaque = NULL; 81257915332SKevin Wolf bs->drv = NULL; 81357915332SKevin Wolf return ret; 81457915332SKevin Wolf } 81557915332SKevin Wolf 81657915332SKevin Wolf /* 817b6ce07aaSKevin Wolf * Opens a file using a protocol (file, host_device, nbd, ...) 818787e4a85SKevin Wolf * 819787e4a85SKevin Wolf * options is a QDict of options to pass to the block drivers, or NULL for an 820787e4a85SKevin Wolf * empty set of options. The reference to the QDict belongs to the block layer 821787e4a85SKevin Wolf * after the call (even on failure), so if the caller intends to reuse the 822787e4a85SKevin Wolf * dictionary, it needs to use QINCREF() before calling bdrv_file_open. 823b6ce07aaSKevin Wolf */ 824787e4a85SKevin Wolf int bdrv_file_open(BlockDriverState **pbs, const char *filename, 825*34b5d2c6SMax Reitz QDict *options, int flags, Error **errp) 826b338082bSbellard { 82783f64091Sbellard BlockDriverState *bs; 8286db95603SChristoph Hellwig BlockDriver *drv; 829c2ad1b0cSKevin Wolf const char *drvname; 83098289620SKevin Wolf bool allow_protocol_prefix = false; 831*34b5d2c6SMax Reitz Error *local_err = NULL; 83283f64091Sbellard int ret; 8333b0d4f61Sbellard 834707ff828SKevin Wolf /* NULL means an empty set of options */ 835707ff828SKevin Wolf if (options == NULL) { 836707ff828SKevin Wolf options = qdict_new(); 8373b0d4f61Sbellard } 838707ff828SKevin Wolf 839707ff828SKevin Wolf bs = bdrv_new(""); 840707ff828SKevin Wolf bs->options = options; 841707ff828SKevin Wolf options = qdict_clone_shallow(options); 842707ff828SKevin Wolf 843035fccdfSKevin Wolf /* Fetch the file name from the options QDict if necessary */ 844035fccdfSKevin Wolf if (!filename) { 845035fccdfSKevin Wolf filename = qdict_get_try_str(options, "filename"); 846035fccdfSKevin Wolf } else if (filename && !qdict_haskey(options, "filename")) { 847035fccdfSKevin Wolf qdict_put(options, "filename", qstring_from_str(filename)); 84898289620SKevin Wolf allow_protocol_prefix = true; 849035fccdfSKevin Wolf } else { 850*34b5d2c6SMax Reitz error_setg(errp, "Can't specify 'file' and 'filename' options at the " 851*34b5d2c6SMax Reitz "same time"); 852035fccdfSKevin Wolf ret = -EINVAL; 853035fccdfSKevin Wolf goto fail; 854035fccdfSKevin Wolf } 855035fccdfSKevin Wolf 856c2ad1b0cSKevin Wolf /* Find the right block driver */ 857c2ad1b0cSKevin Wolf drvname = qdict_get_try_str(options, "driver"); 858c2ad1b0cSKevin Wolf if (drvname) { 859b64ec4e4SFam Zheng drv = bdrv_find_whitelisted_format(drvname, !(flags & BDRV_O_RDWR)); 860*34b5d2c6SMax Reitz if (!drv) { 861*34b5d2c6SMax Reitz error_setg(errp, "Unknown driver '%s'", drvname); 862*34b5d2c6SMax Reitz } 863c2ad1b0cSKevin Wolf qdict_del(options, "driver"); 864c2ad1b0cSKevin Wolf } else if (filename) { 86598289620SKevin Wolf drv = bdrv_find_protocol(filename, allow_protocol_prefix); 86698289620SKevin Wolf if (!drv) { 867*34b5d2c6SMax Reitz error_setg(errp, "Unknown protocol"); 86898289620SKevin Wolf } 869c2ad1b0cSKevin Wolf } else { 870*34b5d2c6SMax Reitz error_setg(errp, "Must specify either driver or file"); 871c2ad1b0cSKevin Wolf drv = NULL; 872c2ad1b0cSKevin Wolf } 873c2ad1b0cSKevin Wolf 874c2ad1b0cSKevin Wolf if (!drv) { 875*34b5d2c6SMax Reitz /* errp has been set already */ 876c2ad1b0cSKevin Wolf ret = -ENOENT; 877c2ad1b0cSKevin Wolf goto fail; 878c2ad1b0cSKevin Wolf } 879c2ad1b0cSKevin Wolf 880c2ad1b0cSKevin Wolf /* Parse the filename and open it */ 881c2ad1b0cSKevin Wolf if (drv->bdrv_parse_filename && filename) { 8826963a30dSKevin Wolf drv->bdrv_parse_filename(filename, options, &local_err); 8836963a30dSKevin Wolf if (error_is_set(&local_err)) { 884*34b5d2c6SMax Reitz error_propagate(errp, local_err); 8856963a30dSKevin Wolf ret = -EINVAL; 8866963a30dSKevin Wolf goto fail; 8876963a30dSKevin Wolf } 88856d1b4d2SKevin Wolf qdict_del(options, "filename"); 889c2ad1b0cSKevin Wolf } else if (!drv->bdrv_parse_filename && !filename) { 890*34b5d2c6SMax Reitz error_setg(errp, "The '%s' block driver requires a file name", 891c2ad1b0cSKevin Wolf drv->format_name); 892c2ad1b0cSKevin Wolf ret = -EINVAL; 893c2ad1b0cSKevin Wolf goto fail; 8946963a30dSKevin Wolf } 8956963a30dSKevin Wolf 896*34b5d2c6SMax Reitz ret = bdrv_open_common(bs, NULL, options, flags, drv, &local_err); 897707ff828SKevin Wolf if (ret < 0) { 898*34b5d2c6SMax Reitz error_propagate(errp, local_err); 899707ff828SKevin Wolf goto fail; 900707ff828SKevin Wolf } 901707ff828SKevin Wolf 902707ff828SKevin Wolf /* Check if any unknown options were used */ 903707ff828SKevin Wolf if (qdict_size(options) != 0) { 904707ff828SKevin Wolf const QDictEntry *entry = qdict_first(options); 905*34b5d2c6SMax Reitz error_setg(errp, "Block protocol '%s' doesn't support the option '%s'", 906707ff828SKevin Wolf drv->format_name, entry->key); 907707ff828SKevin Wolf ret = -EINVAL; 908707ff828SKevin Wolf goto fail; 909707ff828SKevin Wolf } 910707ff828SKevin Wolf QDECREF(options); 911707ff828SKevin Wolf 91271d0770cSaliguori bs->growable = 1; 91383f64091Sbellard *pbs = bs; 91483f64091Sbellard return 0; 915707ff828SKevin Wolf 916707ff828SKevin Wolf fail: 917707ff828SKevin Wolf QDECREF(options); 918707ff828SKevin Wolf if (!bs->drv) { 919707ff828SKevin Wolf QDECREF(bs->options); 920707ff828SKevin Wolf } 9214f6fd349SFam Zheng bdrv_unref(bs); 922707ff828SKevin Wolf return ret; 9233b0d4f61Sbellard } 9243b0d4f61Sbellard 92531ca6d07SKevin Wolf /* 92631ca6d07SKevin Wolf * Opens the backing file for a BlockDriverState if not yet open 92731ca6d07SKevin Wolf * 92831ca6d07SKevin Wolf * options is a QDict of options to pass to the block drivers, or NULL for an 92931ca6d07SKevin Wolf * empty set of options. The reference to the QDict is transferred to this 93031ca6d07SKevin Wolf * function (even on failure), so if the caller intends to reuse the dictionary, 93131ca6d07SKevin Wolf * it needs to use QINCREF() before calling bdrv_file_open. 93231ca6d07SKevin Wolf */ 933*34b5d2c6SMax Reitz int bdrv_open_backing_file(BlockDriverState *bs, QDict *options, Error **errp) 9349156df12SPaolo Bonzini { 9359156df12SPaolo Bonzini char backing_filename[PATH_MAX]; 9369156df12SPaolo Bonzini int back_flags, ret; 9379156df12SPaolo Bonzini BlockDriver *back_drv = NULL; 938*34b5d2c6SMax Reitz Error *local_err = NULL; 9399156df12SPaolo Bonzini 9409156df12SPaolo Bonzini if (bs->backing_hd != NULL) { 94131ca6d07SKevin Wolf QDECREF(options); 9429156df12SPaolo Bonzini return 0; 9439156df12SPaolo Bonzini } 9449156df12SPaolo Bonzini 94531ca6d07SKevin Wolf /* NULL means an empty set of options */ 94631ca6d07SKevin Wolf if (options == NULL) { 94731ca6d07SKevin Wolf options = qdict_new(); 94831ca6d07SKevin Wolf } 94931ca6d07SKevin Wolf 9509156df12SPaolo Bonzini bs->open_flags &= ~BDRV_O_NO_BACKING; 9511cb6f506SKevin Wolf if (qdict_haskey(options, "file.filename")) { 9521cb6f506SKevin Wolf backing_filename[0] = '\0'; 9531cb6f506SKevin Wolf } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { 95431ca6d07SKevin Wolf QDECREF(options); 9559156df12SPaolo Bonzini return 0; 9569156df12SPaolo Bonzini } 9579156df12SPaolo Bonzini 9589156df12SPaolo Bonzini bs->backing_hd = bdrv_new(""); 9599156df12SPaolo Bonzini bdrv_get_full_backing_filename(bs, backing_filename, 9609156df12SPaolo Bonzini sizeof(backing_filename)); 9619156df12SPaolo Bonzini 9629156df12SPaolo Bonzini if (bs->backing_format[0] != '\0') { 9639156df12SPaolo Bonzini back_drv = bdrv_find_format(bs->backing_format); 9649156df12SPaolo Bonzini } 9659156df12SPaolo Bonzini 9669156df12SPaolo Bonzini /* backing files always opened read-only */ 9679156df12SPaolo Bonzini back_flags = bs->open_flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT); 9689156df12SPaolo Bonzini 96931ca6d07SKevin Wolf ret = bdrv_open(bs->backing_hd, 97031ca6d07SKevin Wolf *backing_filename ? backing_filename : NULL, options, 971*34b5d2c6SMax Reitz back_flags, back_drv, &local_err); 9729156df12SPaolo Bonzini if (ret < 0) { 9734f6fd349SFam Zheng bdrv_unref(bs->backing_hd); 9749156df12SPaolo Bonzini bs->backing_hd = NULL; 9759156df12SPaolo Bonzini bs->open_flags |= BDRV_O_NO_BACKING; 976*34b5d2c6SMax Reitz error_propagate(errp, local_err); 9779156df12SPaolo Bonzini return ret; 9789156df12SPaolo Bonzini } 9799156df12SPaolo Bonzini return 0; 9809156df12SPaolo Bonzini } 9819156df12SPaolo Bonzini 982707ff828SKevin Wolf static void extract_subqdict(QDict *src, QDict **dst, const char *start) 983707ff828SKevin Wolf { 984707ff828SKevin Wolf const QDictEntry *entry, *next; 985707ff828SKevin Wolf const char *p; 986707ff828SKevin Wolf 987707ff828SKevin Wolf *dst = qdict_new(); 988707ff828SKevin Wolf entry = qdict_first(src); 989707ff828SKevin Wolf 990707ff828SKevin Wolf while (entry != NULL) { 991707ff828SKevin Wolf next = qdict_next(src, entry); 992707ff828SKevin Wolf if (strstart(entry->key, start, &p)) { 993707ff828SKevin Wolf qobject_incref(entry->value); 994707ff828SKevin Wolf qdict_put_obj(*dst, p, entry->value); 995707ff828SKevin Wolf qdict_del(src, entry->key); 996707ff828SKevin Wolf } 997707ff828SKevin Wolf entry = next; 998707ff828SKevin Wolf } 999707ff828SKevin Wolf } 1000707ff828SKevin Wolf 1001b6ce07aaSKevin Wolf /* 1002b6ce07aaSKevin Wolf * Opens a disk image (raw, qcow2, vmdk, ...) 1003de9c0cecSKevin Wolf * 1004de9c0cecSKevin Wolf * options is a QDict of options to pass to the block drivers, or NULL for an 1005de9c0cecSKevin Wolf * empty set of options. The reference to the QDict belongs to the block layer 1006de9c0cecSKevin Wolf * after the call (even on failure), so if the caller intends to reuse the 1007de9c0cecSKevin Wolf * dictionary, it needs to use QINCREF() before calling bdrv_open. 1008b6ce07aaSKevin Wolf */ 1009de9c0cecSKevin Wolf int bdrv_open(BlockDriverState *bs, const char *filename, QDict *options, 1010*34b5d2c6SMax Reitz int flags, BlockDriver *drv, Error **errp) 1011ea2384d3Sbellard { 1012b6ce07aaSKevin Wolf int ret; 101389c9bc3dSStefan Weil /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */ 101489c9bc3dSStefan Weil char tmp_filename[PATH_MAX + 1]; 1015f500a6d3SKevin Wolf BlockDriverState *file = NULL; 1016707ff828SKevin Wolf QDict *file_options = NULL; 101774fe54f2SKevin Wolf const char *drvname; 1018*34b5d2c6SMax Reitz Error *local_err = NULL; 101933e3963eSbellard 1020de9c0cecSKevin Wolf /* NULL means an empty set of options */ 1021de9c0cecSKevin Wolf if (options == NULL) { 1022de9c0cecSKevin Wolf options = qdict_new(); 1023de9c0cecSKevin Wolf } 1024de9c0cecSKevin Wolf 1025de9c0cecSKevin Wolf bs->options = options; 1026b6ad491aSKevin Wolf options = qdict_clone_shallow(options); 1027de9c0cecSKevin Wolf 1028de9c0cecSKevin Wolf /* For snapshot=on, create a temporary qcow2 overlay */ 102983f64091Sbellard if (flags & BDRV_O_SNAPSHOT) { 1030ea2384d3Sbellard BlockDriverState *bs1; 1031ea2384d3Sbellard int64_t total_size; 103291a073a9SKevin Wolf BlockDriver *bdrv_qcow2; 103308b392e1SKevin Wolf QEMUOptionParameter *create_options; 1034b6ce07aaSKevin Wolf char backing_filename[PATH_MAX]; 103533e3963eSbellard 1036c2ad1b0cSKevin Wolf if (qdict_size(options) != 0) { 1037*34b5d2c6SMax Reitz error_setg(errp, "Can't use snapshot=on with driver-specific options"); 1038c2ad1b0cSKevin Wolf ret = -EINVAL; 1039c2ad1b0cSKevin Wolf goto fail; 1040c2ad1b0cSKevin Wolf } 1041c2ad1b0cSKevin Wolf assert(filename != NULL); 1042c2ad1b0cSKevin Wolf 1043ea2384d3Sbellard /* if snapshot, we create a temporary backing file and open it 1044ea2384d3Sbellard instead of opening 'filename' directly */ 1045ea2384d3Sbellard 1046ea2384d3Sbellard /* if there is a backing file, use it */ 1047ea2384d3Sbellard bs1 = bdrv_new(""); 1048*34b5d2c6SMax Reitz ret = bdrv_open(bs1, filename, NULL, 0, drv, &local_err); 104951d7c00cSaliguori if (ret < 0) { 10504f6fd349SFam Zheng bdrv_unref(bs1); 1051de9c0cecSKevin Wolf goto fail; 1052ea2384d3Sbellard } 10533e82990bSJes Sorensen total_size = bdrv_getlength(bs1) & BDRV_SECTOR_MASK; 10547c96d46eSaliguori 10554f6fd349SFam Zheng bdrv_unref(bs1); 1056ea2384d3Sbellard 1057eba25057SJim Meyering ret = get_tmp_filename(tmp_filename, sizeof(tmp_filename)); 1058eba25057SJim Meyering if (ret < 0) { 1059*34b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not get temporary filename"); 1060de9c0cecSKevin Wolf goto fail; 1061eba25057SJim Meyering } 10627c96d46eSaliguori 10637c96d46eSaliguori /* Real path is meaningless for protocols */ 10644d70655bSStefan Hajnoczi if (path_has_protocol(filename)) { 10657c96d46eSaliguori snprintf(backing_filename, sizeof(backing_filename), 10667c96d46eSaliguori "%s", filename); 1067de9c0cecSKevin Wolf } else if (!realpath(filename, backing_filename)) { 1068*34b5d2c6SMax Reitz error_setg_errno(errp, errno, "Could not resolve path '%s'", filename); 1069de9c0cecSKevin Wolf ret = -errno; 1070de9c0cecSKevin Wolf goto fail; 1071de9c0cecSKevin Wolf } 10727c96d46eSaliguori 107391a073a9SKevin Wolf bdrv_qcow2 = bdrv_find_format("qcow2"); 107408b392e1SKevin Wolf create_options = parse_option_parameters("", bdrv_qcow2->create_options, 107508b392e1SKevin Wolf NULL); 107691a073a9SKevin Wolf 107708b392e1SKevin Wolf set_option_parameter_int(create_options, BLOCK_OPT_SIZE, total_size); 107808b392e1SKevin Wolf set_option_parameter(create_options, BLOCK_OPT_BACKING_FILE, 107908b392e1SKevin Wolf backing_filename); 108091a073a9SKevin Wolf if (drv) { 108108b392e1SKevin Wolf set_option_parameter(create_options, BLOCK_OPT_BACKING_FMT, 108291a073a9SKevin Wolf drv->format_name); 108391a073a9SKevin Wolf } 108491a073a9SKevin Wolf 108508b392e1SKevin Wolf ret = bdrv_create(bdrv_qcow2, tmp_filename, create_options); 108608b392e1SKevin Wolf free_option_parameters(create_options); 108751d7c00cSaliguori if (ret < 0) { 1088*34b5d2c6SMax Reitz error_setg_errno(errp, -ret, "Could not create temporary overlay " 1089*34b5d2c6SMax Reitz "'%s'", tmp_filename); 1090de9c0cecSKevin Wolf goto fail; 1091ea2384d3Sbellard } 109291a073a9SKevin Wolf 1093ea2384d3Sbellard filename = tmp_filename; 109491a073a9SKevin Wolf drv = bdrv_qcow2; 1095ea2384d3Sbellard bs->is_temporary = 1; 1096ea2384d3Sbellard } 1097ea2384d3Sbellard 1098f500a6d3SKevin Wolf /* Open image file without format layer */ 1099be028adcSJeff Cody if (flags & BDRV_O_RDWR) { 1100be028adcSJeff Cody flags |= BDRV_O_ALLOW_RDWR; 1101be028adcSJeff Cody } 1102be028adcSJeff Cody 1103707ff828SKevin Wolf extract_subqdict(options, &file_options, "file."); 1104707ff828SKevin Wolf 1105707ff828SKevin Wolf ret = bdrv_file_open(&file, filename, file_options, 1106*34b5d2c6SMax Reitz bdrv_open_flags(bs, flags | BDRV_O_UNMAP), &local_err); 1107f500a6d3SKevin Wolf if (ret < 0) { 1108de9c0cecSKevin Wolf goto fail; 1109f500a6d3SKevin Wolf } 1110f500a6d3SKevin Wolf 1111f500a6d3SKevin Wolf /* Find the right image format driver */ 111274fe54f2SKevin Wolf drvname = qdict_get_try_str(options, "driver"); 111374fe54f2SKevin Wolf if (drvname) { 111474fe54f2SKevin Wolf drv = bdrv_find_whitelisted_format(drvname, !(flags & BDRV_O_RDWR)); 111574fe54f2SKevin Wolf qdict_del(options, "driver"); 111674fe54f2SKevin Wolf } 111774fe54f2SKevin Wolf 1118f500a6d3SKevin Wolf if (!drv) { 1119*34b5d2c6SMax Reitz ret = find_image_format(file, filename, &drv, &local_err); 1120f500a6d3SKevin Wolf } 1121f500a6d3SKevin Wolf 1122f500a6d3SKevin Wolf if (!drv) { 1123f500a6d3SKevin Wolf goto unlink_and_fail; 1124f500a6d3SKevin Wolf } 1125f500a6d3SKevin Wolf 1126b6ce07aaSKevin Wolf /* Open the image */ 1127*34b5d2c6SMax Reitz ret = bdrv_open_common(bs, file, options, flags, drv, &local_err); 1128b6ce07aaSKevin Wolf if (ret < 0) { 11296987307cSChristoph Hellwig goto unlink_and_fail; 11306987307cSChristoph Hellwig } 11316987307cSChristoph Hellwig 1132f500a6d3SKevin Wolf if (bs->file != file) { 11334f6fd349SFam Zheng bdrv_unref(file); 1134f500a6d3SKevin Wolf file = NULL; 1135f500a6d3SKevin Wolf } 1136f500a6d3SKevin Wolf 1137b6ce07aaSKevin Wolf /* If there is a backing file, use it */ 11389156df12SPaolo Bonzini if ((flags & BDRV_O_NO_BACKING) == 0) { 113931ca6d07SKevin Wolf QDict *backing_options; 114031ca6d07SKevin Wolf 114131ca6d07SKevin Wolf extract_subqdict(options, &backing_options, "backing."); 1142*34b5d2c6SMax Reitz ret = bdrv_open_backing_file(bs, backing_options, &local_err); 1143b6ce07aaSKevin Wolf if (ret < 0) { 1144b6ad491aSKevin Wolf goto close_and_fail; 1145b6ce07aaSKevin Wolf } 1146b6ce07aaSKevin Wolf } 1147b6ce07aaSKevin Wolf 1148b6ad491aSKevin Wolf /* Check if any unknown options were used */ 1149b6ad491aSKevin Wolf if (qdict_size(options) != 0) { 1150b6ad491aSKevin Wolf const QDictEntry *entry = qdict_first(options); 1151*34b5d2c6SMax Reitz error_setg(errp, "Block format '%s' used by device '%s' doesn't " 1152*34b5d2c6SMax Reitz "support the option '%s'", drv->format_name, bs->device_name, 1153*34b5d2c6SMax Reitz entry->key); 1154b6ad491aSKevin Wolf 1155b6ad491aSKevin Wolf ret = -EINVAL; 1156b6ad491aSKevin Wolf goto close_and_fail; 1157b6ad491aSKevin Wolf } 1158b6ad491aSKevin Wolf QDECREF(options); 1159b6ad491aSKevin Wolf 1160b6ce07aaSKevin Wolf if (!bdrv_key_required(bs)) { 11617d4b4ba5SMarkus Armbruster bdrv_dev_change_media_cb(bs, true); 1162b6ce07aaSKevin Wolf } 1163b6ce07aaSKevin Wolf 1164b6ce07aaSKevin Wolf return 0; 1165b6ce07aaSKevin Wolf 1166b6ce07aaSKevin Wolf unlink_and_fail: 1167f500a6d3SKevin Wolf if (file != NULL) { 11684f6fd349SFam Zheng bdrv_unref(file); 1169f500a6d3SKevin Wolf } 1170b6ce07aaSKevin Wolf if (bs->is_temporary) { 1171b6ce07aaSKevin Wolf unlink(filename); 1172b6ce07aaSKevin Wolf } 1173de9c0cecSKevin Wolf fail: 1174de9c0cecSKevin Wolf QDECREF(bs->options); 1175b6ad491aSKevin Wolf QDECREF(options); 1176de9c0cecSKevin Wolf bs->options = NULL; 1177*34b5d2c6SMax Reitz if (error_is_set(&local_err)) { 1178*34b5d2c6SMax Reitz error_propagate(errp, local_err); 1179*34b5d2c6SMax Reitz } 1180b6ad491aSKevin Wolf return ret; 1181de9c0cecSKevin Wolf 1182b6ad491aSKevin Wolf close_and_fail: 1183b6ad491aSKevin Wolf bdrv_close(bs); 1184b6ad491aSKevin Wolf QDECREF(options); 1185*34b5d2c6SMax Reitz if (error_is_set(&local_err)) { 1186*34b5d2c6SMax Reitz error_propagate(errp, local_err); 1187*34b5d2c6SMax Reitz } 1188b6ce07aaSKevin Wolf return ret; 1189b6ce07aaSKevin Wolf } 1190b6ce07aaSKevin Wolf 1191e971aa12SJeff Cody typedef struct BlockReopenQueueEntry { 1192e971aa12SJeff Cody bool prepared; 1193e971aa12SJeff Cody BDRVReopenState state; 1194e971aa12SJeff Cody QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry; 1195e971aa12SJeff Cody } BlockReopenQueueEntry; 1196e971aa12SJeff Cody 1197e971aa12SJeff Cody /* 1198e971aa12SJeff Cody * Adds a BlockDriverState to a simple queue for an atomic, transactional 1199e971aa12SJeff Cody * reopen of multiple devices. 1200e971aa12SJeff Cody * 1201e971aa12SJeff Cody * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT 1202e971aa12SJeff Cody * already performed, or alternatively may be NULL a new BlockReopenQueue will 1203e971aa12SJeff Cody * be created and initialized. This newly created BlockReopenQueue should be 1204e971aa12SJeff Cody * passed back in for subsequent calls that are intended to be of the same 1205e971aa12SJeff Cody * atomic 'set'. 1206e971aa12SJeff Cody * 1207e971aa12SJeff Cody * bs is the BlockDriverState to add to the reopen queue. 1208e971aa12SJeff Cody * 1209e971aa12SJeff Cody * flags contains the open flags for the associated bs 1210e971aa12SJeff Cody * 1211e971aa12SJeff Cody * returns a pointer to bs_queue, which is either the newly allocated 1212e971aa12SJeff Cody * bs_queue, or the existing bs_queue being used. 1213e971aa12SJeff Cody * 1214e971aa12SJeff Cody */ 1215e971aa12SJeff Cody BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, 1216e971aa12SJeff Cody BlockDriverState *bs, int flags) 1217e971aa12SJeff Cody { 1218e971aa12SJeff Cody assert(bs != NULL); 1219e971aa12SJeff Cody 1220e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry; 1221e971aa12SJeff Cody if (bs_queue == NULL) { 1222e971aa12SJeff Cody bs_queue = g_new0(BlockReopenQueue, 1); 1223e971aa12SJeff Cody QSIMPLEQ_INIT(bs_queue); 1224e971aa12SJeff Cody } 1225e971aa12SJeff Cody 1226e971aa12SJeff Cody if (bs->file) { 1227e971aa12SJeff Cody bdrv_reopen_queue(bs_queue, bs->file, flags); 1228e971aa12SJeff Cody } 1229e971aa12SJeff Cody 1230e971aa12SJeff Cody bs_entry = g_new0(BlockReopenQueueEntry, 1); 1231e971aa12SJeff Cody QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry); 1232e971aa12SJeff Cody 1233e971aa12SJeff Cody bs_entry->state.bs = bs; 1234e971aa12SJeff Cody bs_entry->state.flags = flags; 1235e971aa12SJeff Cody 1236e971aa12SJeff Cody return bs_queue; 1237e971aa12SJeff Cody } 1238e971aa12SJeff Cody 1239e971aa12SJeff Cody /* 1240e971aa12SJeff Cody * Reopen multiple BlockDriverStates atomically & transactionally. 1241e971aa12SJeff Cody * 1242e971aa12SJeff Cody * The queue passed in (bs_queue) must have been built up previous 1243e971aa12SJeff Cody * via bdrv_reopen_queue(). 1244e971aa12SJeff Cody * 1245e971aa12SJeff Cody * Reopens all BDS specified in the queue, with the appropriate 1246e971aa12SJeff Cody * flags. All devices are prepared for reopen, and failure of any 1247e971aa12SJeff Cody * device will cause all device changes to be abandonded, and intermediate 1248e971aa12SJeff Cody * data cleaned up. 1249e971aa12SJeff Cody * 1250e971aa12SJeff Cody * If all devices prepare successfully, then the changes are committed 1251e971aa12SJeff Cody * to all devices. 1252e971aa12SJeff Cody * 1253e971aa12SJeff Cody */ 1254e971aa12SJeff Cody int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp) 1255e971aa12SJeff Cody { 1256e971aa12SJeff Cody int ret = -1; 1257e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry, *next; 1258e971aa12SJeff Cody Error *local_err = NULL; 1259e971aa12SJeff Cody 1260e971aa12SJeff Cody assert(bs_queue != NULL); 1261e971aa12SJeff Cody 1262e971aa12SJeff Cody bdrv_drain_all(); 1263e971aa12SJeff Cody 1264e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 1265e971aa12SJeff Cody if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) { 1266e971aa12SJeff Cody error_propagate(errp, local_err); 1267e971aa12SJeff Cody goto cleanup; 1268e971aa12SJeff Cody } 1269e971aa12SJeff Cody bs_entry->prepared = true; 1270e971aa12SJeff Cody } 1271e971aa12SJeff Cody 1272e971aa12SJeff Cody /* If we reach this point, we have success and just need to apply the 1273e971aa12SJeff Cody * changes 1274e971aa12SJeff Cody */ 1275e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 1276e971aa12SJeff Cody bdrv_reopen_commit(&bs_entry->state); 1277e971aa12SJeff Cody } 1278e971aa12SJeff Cody 1279e971aa12SJeff Cody ret = 0; 1280e971aa12SJeff Cody 1281e971aa12SJeff Cody cleanup: 1282e971aa12SJeff Cody QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { 1283e971aa12SJeff Cody if (ret && bs_entry->prepared) { 1284e971aa12SJeff Cody bdrv_reopen_abort(&bs_entry->state); 1285e971aa12SJeff Cody } 1286e971aa12SJeff Cody g_free(bs_entry); 1287e971aa12SJeff Cody } 1288e971aa12SJeff Cody g_free(bs_queue); 1289e971aa12SJeff Cody return ret; 1290e971aa12SJeff Cody } 1291e971aa12SJeff Cody 1292e971aa12SJeff Cody 1293e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */ 1294e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp) 1295e971aa12SJeff Cody { 1296e971aa12SJeff Cody int ret = -1; 1297e971aa12SJeff Cody Error *local_err = NULL; 1298e971aa12SJeff Cody BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, bdrv_flags); 1299e971aa12SJeff Cody 1300e971aa12SJeff Cody ret = bdrv_reopen_multiple(queue, &local_err); 1301e971aa12SJeff Cody if (local_err != NULL) { 1302e971aa12SJeff Cody error_propagate(errp, local_err); 1303e971aa12SJeff Cody } 1304e971aa12SJeff Cody return ret; 1305e971aa12SJeff Cody } 1306e971aa12SJeff Cody 1307e971aa12SJeff Cody 1308e971aa12SJeff Cody /* 1309e971aa12SJeff Cody * Prepares a BlockDriverState for reopen. All changes are staged in the 1310e971aa12SJeff Cody * 'opaque' field of the BDRVReopenState, which is used and allocated by 1311e971aa12SJeff Cody * the block driver layer .bdrv_reopen_prepare() 1312e971aa12SJeff Cody * 1313e971aa12SJeff Cody * bs is the BlockDriverState to reopen 1314e971aa12SJeff Cody * flags are the new open flags 1315e971aa12SJeff Cody * queue is the reopen queue 1316e971aa12SJeff Cody * 1317e971aa12SJeff Cody * Returns 0 on success, non-zero on error. On error errp will be set 1318e971aa12SJeff Cody * as well. 1319e971aa12SJeff Cody * 1320e971aa12SJeff Cody * On failure, bdrv_reopen_abort() will be called to clean up any data. 1321e971aa12SJeff Cody * It is the responsibility of the caller to then call the abort() or 1322e971aa12SJeff Cody * commit() for any other BDS that have been left in a prepare() state 1323e971aa12SJeff Cody * 1324e971aa12SJeff Cody */ 1325e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue, 1326e971aa12SJeff Cody Error **errp) 1327e971aa12SJeff Cody { 1328e971aa12SJeff Cody int ret = -1; 1329e971aa12SJeff Cody Error *local_err = NULL; 1330e971aa12SJeff Cody BlockDriver *drv; 1331e971aa12SJeff Cody 1332e971aa12SJeff Cody assert(reopen_state != NULL); 1333e971aa12SJeff Cody assert(reopen_state->bs->drv != NULL); 1334e971aa12SJeff Cody drv = reopen_state->bs->drv; 1335e971aa12SJeff Cody 1336e971aa12SJeff Cody /* if we are to stay read-only, do not allow permission change 1337e971aa12SJeff Cody * to r/w */ 1338e971aa12SJeff Cody if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) && 1339e971aa12SJeff Cody reopen_state->flags & BDRV_O_RDWR) { 1340e971aa12SJeff Cody error_set(errp, QERR_DEVICE_IS_READ_ONLY, 1341e971aa12SJeff Cody reopen_state->bs->device_name); 1342e971aa12SJeff Cody goto error; 1343e971aa12SJeff Cody } 1344e971aa12SJeff Cody 1345e971aa12SJeff Cody 1346e971aa12SJeff Cody ret = bdrv_flush(reopen_state->bs); 1347e971aa12SJeff Cody if (ret) { 1348e971aa12SJeff Cody error_set(errp, ERROR_CLASS_GENERIC_ERROR, "Error (%s) flushing drive", 1349e971aa12SJeff Cody strerror(-ret)); 1350e971aa12SJeff Cody goto error; 1351e971aa12SJeff Cody } 1352e971aa12SJeff Cody 1353e971aa12SJeff Cody if (drv->bdrv_reopen_prepare) { 1354e971aa12SJeff Cody ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); 1355e971aa12SJeff Cody if (ret) { 1356e971aa12SJeff Cody if (local_err != NULL) { 1357e971aa12SJeff Cody error_propagate(errp, local_err); 1358e971aa12SJeff Cody } else { 1359d8b6895fSLuiz Capitulino error_setg(errp, "failed while preparing to reopen image '%s'", 1360e971aa12SJeff Cody reopen_state->bs->filename); 1361e971aa12SJeff Cody } 1362e971aa12SJeff Cody goto error; 1363e971aa12SJeff Cody } 1364e971aa12SJeff Cody } else { 1365e971aa12SJeff Cody /* It is currently mandatory to have a bdrv_reopen_prepare() 1366e971aa12SJeff Cody * handler for each supported drv. */ 1367e971aa12SJeff Cody error_set(errp, QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED, 1368e971aa12SJeff Cody drv->format_name, reopen_state->bs->device_name, 1369e971aa12SJeff Cody "reopening of file"); 1370e971aa12SJeff Cody ret = -1; 1371e971aa12SJeff Cody goto error; 1372e971aa12SJeff Cody } 1373e971aa12SJeff Cody 1374e971aa12SJeff Cody ret = 0; 1375e971aa12SJeff Cody 1376e971aa12SJeff Cody error: 1377e971aa12SJeff Cody return ret; 1378e971aa12SJeff Cody } 1379e971aa12SJeff Cody 1380e971aa12SJeff Cody /* 1381e971aa12SJeff Cody * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and 1382e971aa12SJeff Cody * makes them final by swapping the staging BlockDriverState contents into 1383e971aa12SJeff Cody * the active BlockDriverState contents. 1384e971aa12SJeff Cody */ 1385e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state) 1386e971aa12SJeff Cody { 1387e971aa12SJeff Cody BlockDriver *drv; 1388e971aa12SJeff Cody 1389e971aa12SJeff Cody assert(reopen_state != NULL); 1390e971aa12SJeff Cody drv = reopen_state->bs->drv; 1391e971aa12SJeff Cody assert(drv != NULL); 1392e971aa12SJeff Cody 1393e971aa12SJeff Cody /* If there are any driver level actions to take */ 1394e971aa12SJeff Cody if (drv->bdrv_reopen_commit) { 1395e971aa12SJeff Cody drv->bdrv_reopen_commit(reopen_state); 1396e971aa12SJeff Cody } 1397e971aa12SJeff Cody 1398e971aa12SJeff Cody /* set BDS specific flags now */ 1399e971aa12SJeff Cody reopen_state->bs->open_flags = reopen_state->flags; 1400e971aa12SJeff Cody reopen_state->bs->enable_write_cache = !!(reopen_state->flags & 1401e971aa12SJeff Cody BDRV_O_CACHE_WB); 1402e971aa12SJeff Cody reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR); 1403e971aa12SJeff Cody } 1404e971aa12SJeff Cody 1405e971aa12SJeff Cody /* 1406e971aa12SJeff Cody * Abort the reopen, and delete and free the staged changes in 1407e971aa12SJeff Cody * reopen_state 1408e971aa12SJeff Cody */ 1409e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state) 1410e971aa12SJeff Cody { 1411e971aa12SJeff Cody BlockDriver *drv; 1412e971aa12SJeff Cody 1413e971aa12SJeff Cody assert(reopen_state != NULL); 1414e971aa12SJeff Cody drv = reopen_state->bs->drv; 1415e971aa12SJeff Cody assert(drv != NULL); 1416e971aa12SJeff Cody 1417e971aa12SJeff Cody if (drv->bdrv_reopen_abort) { 1418e971aa12SJeff Cody drv->bdrv_reopen_abort(reopen_state); 1419e971aa12SJeff Cody } 1420e971aa12SJeff Cody } 1421e971aa12SJeff Cody 1422e971aa12SJeff Cody 1423fc01f7e7Sbellard void bdrv_close(BlockDriverState *bs) 1424fc01f7e7Sbellard { 14253e914655SPaolo Bonzini if (bs->job) { 14263e914655SPaolo Bonzini block_job_cancel_sync(bs->job); 14273e914655SPaolo Bonzini } 142858fda173SStefan Hajnoczi bdrv_drain_all(); /* complete I/O */ 142958fda173SStefan Hajnoczi bdrv_flush(bs); 143058fda173SStefan Hajnoczi bdrv_drain_all(); /* in case flush left pending I/O */ 1431d7d512f6SPaolo Bonzini notifier_list_notify(&bs->close_notifiers, bs); 14327094f12fSKevin Wolf 14333cbc002cSPaolo Bonzini if (bs->drv) { 1434557df6acSStefan Hajnoczi if (bs->backing_hd) { 14354f6fd349SFam Zheng bdrv_unref(bs->backing_hd); 1436557df6acSStefan Hajnoczi bs->backing_hd = NULL; 1437557df6acSStefan Hajnoczi } 1438ea2384d3Sbellard bs->drv->bdrv_close(bs); 14397267c094SAnthony Liguori g_free(bs->opaque); 1440ea2384d3Sbellard #ifdef _WIN32 1441ea2384d3Sbellard if (bs->is_temporary) { 1442ea2384d3Sbellard unlink(bs->filename); 1443ea2384d3Sbellard } 144467b915a5Sbellard #endif 1445ea2384d3Sbellard bs->opaque = NULL; 1446ea2384d3Sbellard bs->drv = NULL; 144753fec9d3SStefan Hajnoczi bs->copy_on_read = 0; 1448a275fa42SPaolo Bonzini bs->backing_file[0] = '\0'; 1449a275fa42SPaolo Bonzini bs->backing_format[0] = '\0'; 14506405875cSPaolo Bonzini bs->total_sectors = 0; 14516405875cSPaolo Bonzini bs->encrypted = 0; 14526405875cSPaolo Bonzini bs->valid_key = 0; 14536405875cSPaolo Bonzini bs->sg = 0; 14546405875cSPaolo Bonzini bs->growable = 0; 14550d51b4deSAsias He bs->zero_beyond_eof = false; 1456de9c0cecSKevin Wolf QDECREF(bs->options); 1457de9c0cecSKevin Wolf bs->options = NULL; 1458b338082bSbellard 145966f82ceeSKevin Wolf if (bs->file != NULL) { 14604f6fd349SFam Zheng bdrv_unref(bs->file); 14610ac9377dSPaolo Bonzini bs->file = NULL; 146266f82ceeSKevin Wolf } 14639ca11154SPavel Hrdina } 146466f82ceeSKevin Wolf 14657d4b4ba5SMarkus Armbruster bdrv_dev_change_media_cb(bs, false); 146698f90dbaSZhi Yong Wu 146798f90dbaSZhi Yong Wu /*throttling disk I/O limits*/ 146898f90dbaSZhi Yong Wu if (bs->io_limits_enabled) { 146998f90dbaSZhi Yong Wu bdrv_io_limits_disable(bs); 147098f90dbaSZhi Yong Wu } 1471b338082bSbellard } 1472b338082bSbellard 14732bc93fedSMORITA Kazutaka void bdrv_close_all(void) 14742bc93fedSMORITA Kazutaka { 14752bc93fedSMORITA Kazutaka BlockDriverState *bs; 14762bc93fedSMORITA Kazutaka 14772bc93fedSMORITA Kazutaka QTAILQ_FOREACH(bs, &bdrv_states, list) { 14782bc93fedSMORITA Kazutaka bdrv_close(bs); 14792bc93fedSMORITA Kazutaka } 14802bc93fedSMORITA Kazutaka } 14812bc93fedSMORITA Kazutaka 148288266f5aSStefan Hajnoczi /* Check if any requests are in-flight (including throttled requests) */ 148388266f5aSStefan Hajnoczi static bool bdrv_requests_pending(BlockDriverState *bs) 148488266f5aSStefan Hajnoczi { 148588266f5aSStefan Hajnoczi if (!QLIST_EMPTY(&bs->tracked_requests)) { 148688266f5aSStefan Hajnoczi return true; 148788266f5aSStefan Hajnoczi } 1488cc0681c4SBenoît Canet if (!qemu_co_queue_empty(&bs->throttled_reqs[0])) { 1489cc0681c4SBenoît Canet return true; 1490cc0681c4SBenoît Canet } 1491cc0681c4SBenoît Canet if (!qemu_co_queue_empty(&bs->throttled_reqs[1])) { 149288266f5aSStefan Hajnoczi return true; 149388266f5aSStefan Hajnoczi } 149488266f5aSStefan Hajnoczi if (bs->file && bdrv_requests_pending(bs->file)) { 149588266f5aSStefan Hajnoczi return true; 149688266f5aSStefan Hajnoczi } 149788266f5aSStefan Hajnoczi if (bs->backing_hd && bdrv_requests_pending(bs->backing_hd)) { 149888266f5aSStefan Hajnoczi return true; 149988266f5aSStefan Hajnoczi } 150088266f5aSStefan Hajnoczi return false; 150188266f5aSStefan Hajnoczi } 150288266f5aSStefan Hajnoczi 150388266f5aSStefan Hajnoczi static bool bdrv_requests_pending_all(void) 150488266f5aSStefan Hajnoczi { 150588266f5aSStefan Hajnoczi BlockDriverState *bs; 150688266f5aSStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 150788266f5aSStefan Hajnoczi if (bdrv_requests_pending(bs)) { 150888266f5aSStefan Hajnoczi return true; 150988266f5aSStefan Hajnoczi } 151088266f5aSStefan Hajnoczi } 151188266f5aSStefan Hajnoczi return false; 151288266f5aSStefan Hajnoczi } 151388266f5aSStefan Hajnoczi 1514922453bcSStefan Hajnoczi /* 1515922453bcSStefan Hajnoczi * Wait for pending requests to complete across all BlockDriverStates 1516922453bcSStefan Hajnoczi * 1517922453bcSStefan Hajnoczi * This function does not flush data to disk, use bdrv_flush_all() for that 1518922453bcSStefan Hajnoczi * after calling this function. 15194c355d53SZhi Yong Wu * 15204c355d53SZhi Yong Wu * Note that completion of an asynchronous I/O operation can trigger any 15214c355d53SZhi Yong Wu * number of other I/O operations on other devices---for example a coroutine 15224c355d53SZhi Yong Wu * can be arbitrarily complex and a constant flow of I/O can come until the 15234c355d53SZhi Yong Wu * coroutine is complete. Because of this, it is not possible to have a 15244c355d53SZhi Yong Wu * function to drain a single device's I/O queue. 1525922453bcSStefan Hajnoczi */ 1526922453bcSStefan Hajnoczi void bdrv_drain_all(void) 1527922453bcSStefan Hajnoczi { 152888266f5aSStefan Hajnoczi /* Always run first iteration so any pending completion BHs run */ 152988266f5aSStefan Hajnoczi bool busy = true; 1530922453bcSStefan Hajnoczi BlockDriverState *bs; 1531922453bcSStefan Hajnoczi 153288266f5aSStefan Hajnoczi while (busy) { 15334c355d53SZhi Yong Wu /* FIXME: We do not have timer support here, so this is effectively 15344c355d53SZhi Yong Wu * a busy wait. 15354c355d53SZhi Yong Wu */ 15364c355d53SZhi Yong Wu QTAILQ_FOREACH(bs, &bdrv_states, list) { 1537cc0681c4SBenoît Canet if (bdrv_start_throttled_reqs(bs)) { 15384c355d53SZhi Yong Wu busy = true; 15394c355d53SZhi Yong Wu } 15404c355d53SZhi Yong Wu } 1541922453bcSStefan Hajnoczi 154288266f5aSStefan Hajnoczi busy = bdrv_requests_pending_all(); 154388266f5aSStefan Hajnoczi busy |= aio_poll(qemu_get_aio_context(), busy); 1544922453bcSStefan Hajnoczi } 1545922453bcSStefan Hajnoczi } 1546922453bcSStefan Hajnoczi 1547d22b2f41SRyan Harper /* make a BlockDriverState anonymous by removing from bdrv_state list. 1548d22b2f41SRyan Harper Also, NULL terminate the device_name to prevent double remove */ 1549d22b2f41SRyan Harper void bdrv_make_anon(BlockDriverState *bs) 1550d22b2f41SRyan Harper { 1551d22b2f41SRyan Harper if (bs->device_name[0] != '\0') { 1552d22b2f41SRyan Harper QTAILQ_REMOVE(&bdrv_states, bs, list); 1553d22b2f41SRyan Harper } 1554d22b2f41SRyan Harper bs->device_name[0] = '\0'; 1555d22b2f41SRyan Harper } 1556d22b2f41SRyan Harper 1557e023b2e2SPaolo Bonzini static void bdrv_rebind(BlockDriverState *bs) 1558e023b2e2SPaolo Bonzini { 1559e023b2e2SPaolo Bonzini if (bs->drv && bs->drv->bdrv_rebind) { 1560e023b2e2SPaolo Bonzini bs->drv->bdrv_rebind(bs); 1561e023b2e2SPaolo Bonzini } 1562e023b2e2SPaolo Bonzini } 1563e023b2e2SPaolo Bonzini 15644ddc07caSPaolo Bonzini static void bdrv_move_feature_fields(BlockDriverState *bs_dest, 15654ddc07caSPaolo Bonzini BlockDriverState *bs_src) 15664ddc07caSPaolo Bonzini { 15674ddc07caSPaolo Bonzini /* move some fields that need to stay attached to the device */ 15684ddc07caSPaolo Bonzini bs_dest->open_flags = bs_src->open_flags; 15694ddc07caSPaolo Bonzini 15704ddc07caSPaolo Bonzini /* dev info */ 15714ddc07caSPaolo Bonzini bs_dest->dev_ops = bs_src->dev_ops; 15724ddc07caSPaolo Bonzini bs_dest->dev_opaque = bs_src->dev_opaque; 15734ddc07caSPaolo Bonzini bs_dest->dev = bs_src->dev; 15744ddc07caSPaolo Bonzini bs_dest->buffer_alignment = bs_src->buffer_alignment; 15754ddc07caSPaolo Bonzini bs_dest->copy_on_read = bs_src->copy_on_read; 15764ddc07caSPaolo Bonzini 15774ddc07caSPaolo Bonzini bs_dest->enable_write_cache = bs_src->enable_write_cache; 15784ddc07caSPaolo Bonzini 1579cc0681c4SBenoît Canet /* i/o throttled req */ 1580cc0681c4SBenoît Canet memcpy(&bs_dest->throttle_state, 1581cc0681c4SBenoît Canet &bs_src->throttle_state, 1582cc0681c4SBenoît Canet sizeof(ThrottleState)); 1583cc0681c4SBenoît Canet bs_dest->throttled_reqs[0] = bs_src->throttled_reqs[0]; 1584cc0681c4SBenoît Canet bs_dest->throttled_reqs[1] = bs_src->throttled_reqs[1]; 15854ddc07caSPaolo Bonzini bs_dest->io_limits_enabled = bs_src->io_limits_enabled; 15864ddc07caSPaolo Bonzini 15874ddc07caSPaolo Bonzini /* r/w error */ 15884ddc07caSPaolo Bonzini bs_dest->on_read_error = bs_src->on_read_error; 15894ddc07caSPaolo Bonzini bs_dest->on_write_error = bs_src->on_write_error; 15904ddc07caSPaolo Bonzini 15914ddc07caSPaolo Bonzini /* i/o status */ 15924ddc07caSPaolo Bonzini bs_dest->iostatus_enabled = bs_src->iostatus_enabled; 15934ddc07caSPaolo Bonzini bs_dest->iostatus = bs_src->iostatus; 15944ddc07caSPaolo Bonzini 15954ddc07caSPaolo Bonzini /* dirty bitmap */ 15964ddc07caSPaolo Bonzini bs_dest->dirty_bitmap = bs_src->dirty_bitmap; 15974ddc07caSPaolo Bonzini 15989fcb0251SFam Zheng /* reference count */ 15999fcb0251SFam Zheng bs_dest->refcnt = bs_src->refcnt; 16009fcb0251SFam Zheng 16014ddc07caSPaolo Bonzini /* job */ 16024ddc07caSPaolo Bonzini bs_dest->in_use = bs_src->in_use; 16034ddc07caSPaolo Bonzini bs_dest->job = bs_src->job; 16044ddc07caSPaolo Bonzini 16054ddc07caSPaolo Bonzini /* keep the same entry in bdrv_states */ 16064ddc07caSPaolo Bonzini pstrcpy(bs_dest->device_name, sizeof(bs_dest->device_name), 16074ddc07caSPaolo Bonzini bs_src->device_name); 16084ddc07caSPaolo Bonzini bs_dest->list = bs_src->list; 16094ddc07caSPaolo Bonzini } 16104ddc07caSPaolo Bonzini 16114ddc07caSPaolo Bonzini /* 16124ddc07caSPaolo Bonzini * Swap bs contents for two image chains while they are live, 16134ddc07caSPaolo Bonzini * while keeping required fields on the BlockDriverState that is 16144ddc07caSPaolo Bonzini * actually attached to a device. 16154ddc07caSPaolo Bonzini * 16164ddc07caSPaolo Bonzini * This will modify the BlockDriverState fields, and swap contents 16174ddc07caSPaolo Bonzini * between bs_new and bs_old. Both bs_new and bs_old are modified. 16184ddc07caSPaolo Bonzini * 16194ddc07caSPaolo Bonzini * bs_new is required to be anonymous. 16204ddc07caSPaolo Bonzini * 16214ddc07caSPaolo Bonzini * This function does not create any image files. 16224ddc07caSPaolo Bonzini */ 16234ddc07caSPaolo Bonzini void bdrv_swap(BlockDriverState *bs_new, BlockDriverState *bs_old) 16244ddc07caSPaolo Bonzini { 16254ddc07caSPaolo Bonzini BlockDriverState tmp; 16264ddc07caSPaolo Bonzini 16274ddc07caSPaolo Bonzini /* bs_new must be anonymous and shouldn't have anything fancy enabled */ 16284ddc07caSPaolo Bonzini assert(bs_new->device_name[0] == '\0'); 16294ddc07caSPaolo Bonzini assert(bs_new->dirty_bitmap == NULL); 16304ddc07caSPaolo Bonzini assert(bs_new->job == NULL); 16314ddc07caSPaolo Bonzini assert(bs_new->dev == NULL); 16324ddc07caSPaolo Bonzini assert(bs_new->in_use == 0); 16334ddc07caSPaolo Bonzini assert(bs_new->io_limits_enabled == false); 1634cc0681c4SBenoît Canet assert(!throttle_have_timer(&bs_new->throttle_state)); 16354ddc07caSPaolo Bonzini 16364ddc07caSPaolo Bonzini tmp = *bs_new; 16374ddc07caSPaolo Bonzini *bs_new = *bs_old; 16384ddc07caSPaolo Bonzini *bs_old = tmp; 16394ddc07caSPaolo Bonzini 16404ddc07caSPaolo Bonzini /* there are some fields that should not be swapped, move them back */ 16414ddc07caSPaolo Bonzini bdrv_move_feature_fields(&tmp, bs_old); 16424ddc07caSPaolo Bonzini bdrv_move_feature_fields(bs_old, bs_new); 16434ddc07caSPaolo Bonzini bdrv_move_feature_fields(bs_new, &tmp); 16444ddc07caSPaolo Bonzini 16454ddc07caSPaolo Bonzini /* bs_new shouldn't be in bdrv_states even after the swap! */ 16464ddc07caSPaolo Bonzini assert(bs_new->device_name[0] == '\0'); 16474ddc07caSPaolo Bonzini 16484ddc07caSPaolo Bonzini /* Check a few fields that should remain attached to the device */ 16494ddc07caSPaolo Bonzini assert(bs_new->dev == NULL); 16504ddc07caSPaolo Bonzini assert(bs_new->job == NULL); 16514ddc07caSPaolo Bonzini assert(bs_new->in_use == 0); 16524ddc07caSPaolo Bonzini assert(bs_new->io_limits_enabled == false); 1653cc0681c4SBenoît Canet assert(!throttle_have_timer(&bs_new->throttle_state)); 16544ddc07caSPaolo Bonzini 16554ddc07caSPaolo Bonzini bdrv_rebind(bs_new); 16564ddc07caSPaolo Bonzini bdrv_rebind(bs_old); 16574ddc07caSPaolo Bonzini } 16584ddc07caSPaolo Bonzini 16598802d1fdSJeff Cody /* 16608802d1fdSJeff Cody * Add new bs contents at the top of an image chain while the chain is 16618802d1fdSJeff Cody * live, while keeping required fields on the top layer. 16628802d1fdSJeff Cody * 16638802d1fdSJeff Cody * This will modify the BlockDriverState fields, and swap contents 16648802d1fdSJeff Cody * between bs_new and bs_top. Both bs_new and bs_top are modified. 16658802d1fdSJeff Cody * 1666f6801b83SJeff Cody * bs_new is required to be anonymous. 1667f6801b83SJeff Cody * 16688802d1fdSJeff Cody * This function does not create any image files. 16698802d1fdSJeff Cody */ 16708802d1fdSJeff Cody void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top) 16718802d1fdSJeff Cody { 16724ddc07caSPaolo Bonzini bdrv_swap(bs_new, bs_top); 16738802d1fdSJeff Cody 16748802d1fdSJeff Cody /* The contents of 'tmp' will become bs_top, as we are 16758802d1fdSJeff Cody * swapping bs_new and bs_top contents. */ 16764ddc07caSPaolo Bonzini bs_top->backing_hd = bs_new; 16774ddc07caSPaolo Bonzini bs_top->open_flags &= ~BDRV_O_NO_BACKING; 16784ddc07caSPaolo Bonzini pstrcpy(bs_top->backing_file, sizeof(bs_top->backing_file), 16794ddc07caSPaolo Bonzini bs_new->filename); 16804ddc07caSPaolo Bonzini pstrcpy(bs_top->backing_format, sizeof(bs_top->backing_format), 16814ddc07caSPaolo Bonzini bs_new->drv ? bs_new->drv->format_name : ""); 16828802d1fdSJeff Cody } 16838802d1fdSJeff Cody 16844f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs) 1685b338082bSbellard { 1686fa879d62SMarkus Armbruster assert(!bs->dev); 16873e914655SPaolo Bonzini assert(!bs->job); 16883e914655SPaolo Bonzini assert(!bs->in_use); 16894f6fd349SFam Zheng assert(!bs->refcnt); 169018846deeSMarkus Armbruster 1691e1b5c52eSStefan Hajnoczi bdrv_close(bs); 1692e1b5c52eSStefan Hajnoczi 16931b7bdbc1SStefan Hajnoczi /* remove from list, if necessary */ 1694d22b2f41SRyan Harper bdrv_make_anon(bs); 169534c6f050Saurel32 16967267c094SAnthony Liguori g_free(bs); 1697fc01f7e7Sbellard } 1698fc01f7e7Sbellard 1699fa879d62SMarkus Armbruster int bdrv_attach_dev(BlockDriverState *bs, void *dev) 1700fa879d62SMarkus Armbruster /* TODO change to DeviceState *dev when all users are qdevified */ 170118846deeSMarkus Armbruster { 1702fa879d62SMarkus Armbruster if (bs->dev) { 170318846deeSMarkus Armbruster return -EBUSY; 170418846deeSMarkus Armbruster } 1705fa879d62SMarkus Armbruster bs->dev = dev; 170628a7282aSLuiz Capitulino bdrv_iostatus_reset(bs); 170718846deeSMarkus Armbruster return 0; 170818846deeSMarkus Armbruster } 170918846deeSMarkus Armbruster 1710fa879d62SMarkus Armbruster /* TODO qdevified devices don't use this, remove when devices are qdevified */ 1711fa879d62SMarkus Armbruster void bdrv_attach_dev_nofail(BlockDriverState *bs, void *dev) 171218846deeSMarkus Armbruster { 1713fa879d62SMarkus Armbruster if (bdrv_attach_dev(bs, dev) < 0) { 1714fa879d62SMarkus Armbruster abort(); 1715fa879d62SMarkus Armbruster } 1716fa879d62SMarkus Armbruster } 1717fa879d62SMarkus Armbruster 1718fa879d62SMarkus Armbruster void bdrv_detach_dev(BlockDriverState *bs, void *dev) 1719fa879d62SMarkus Armbruster /* TODO change to DeviceState *dev when all users are qdevified */ 1720fa879d62SMarkus Armbruster { 1721fa879d62SMarkus Armbruster assert(bs->dev == dev); 1722fa879d62SMarkus Armbruster bs->dev = NULL; 17230e49de52SMarkus Armbruster bs->dev_ops = NULL; 17240e49de52SMarkus Armbruster bs->dev_opaque = NULL; 172529e05f20SMarkus Armbruster bs->buffer_alignment = 512; 172618846deeSMarkus Armbruster } 172718846deeSMarkus Armbruster 1728fa879d62SMarkus Armbruster /* TODO change to return DeviceState * when all users are qdevified */ 1729fa879d62SMarkus Armbruster void *bdrv_get_attached_dev(BlockDriverState *bs) 173018846deeSMarkus Armbruster { 1731fa879d62SMarkus Armbruster return bs->dev; 173218846deeSMarkus Armbruster } 173318846deeSMarkus Armbruster 17340e49de52SMarkus Armbruster void bdrv_set_dev_ops(BlockDriverState *bs, const BlockDevOps *ops, 17350e49de52SMarkus Armbruster void *opaque) 17360e49de52SMarkus Armbruster { 17370e49de52SMarkus Armbruster bs->dev_ops = ops; 17380e49de52SMarkus Armbruster bs->dev_opaque = opaque; 17390e49de52SMarkus Armbruster } 17400e49de52SMarkus Armbruster 174132c81a4aSPaolo Bonzini void bdrv_emit_qmp_error_event(const BlockDriverState *bdrv, 174232c81a4aSPaolo Bonzini enum MonitorEvent ev, 17431ceee0d5SPaolo Bonzini BlockErrorAction action, bool is_read) 1744329c0a48SLuiz Capitulino { 1745329c0a48SLuiz Capitulino QObject *data; 1746329c0a48SLuiz Capitulino const char *action_str; 1747329c0a48SLuiz Capitulino 1748329c0a48SLuiz Capitulino switch (action) { 1749329c0a48SLuiz Capitulino case BDRV_ACTION_REPORT: 1750329c0a48SLuiz Capitulino action_str = "report"; 1751329c0a48SLuiz Capitulino break; 1752329c0a48SLuiz Capitulino case BDRV_ACTION_IGNORE: 1753329c0a48SLuiz Capitulino action_str = "ignore"; 1754329c0a48SLuiz Capitulino break; 1755329c0a48SLuiz Capitulino case BDRV_ACTION_STOP: 1756329c0a48SLuiz Capitulino action_str = "stop"; 1757329c0a48SLuiz Capitulino break; 1758329c0a48SLuiz Capitulino default: 1759329c0a48SLuiz Capitulino abort(); 1760329c0a48SLuiz Capitulino } 1761329c0a48SLuiz Capitulino 1762329c0a48SLuiz Capitulino data = qobject_from_jsonf("{ 'device': %s, 'action': %s, 'operation': %s }", 1763329c0a48SLuiz Capitulino bdrv->device_name, 1764329c0a48SLuiz Capitulino action_str, 1765329c0a48SLuiz Capitulino is_read ? "read" : "write"); 176632c81a4aSPaolo Bonzini monitor_protocol_event(ev, data); 1767329c0a48SLuiz Capitulino 1768329c0a48SLuiz Capitulino qobject_decref(data); 1769329c0a48SLuiz Capitulino } 1770329c0a48SLuiz Capitulino 17716f382ed2SLuiz Capitulino static void bdrv_emit_qmp_eject_event(BlockDriverState *bs, bool ejected) 17726f382ed2SLuiz Capitulino { 17736f382ed2SLuiz Capitulino QObject *data; 17746f382ed2SLuiz Capitulino 17756f382ed2SLuiz Capitulino data = qobject_from_jsonf("{ 'device': %s, 'tray-open': %i }", 17766f382ed2SLuiz Capitulino bdrv_get_device_name(bs), ejected); 17776f382ed2SLuiz Capitulino monitor_protocol_event(QEVENT_DEVICE_TRAY_MOVED, data); 17786f382ed2SLuiz Capitulino 17796f382ed2SLuiz Capitulino qobject_decref(data); 17806f382ed2SLuiz Capitulino } 17816f382ed2SLuiz Capitulino 17827d4b4ba5SMarkus Armbruster static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load) 17830e49de52SMarkus Armbruster { 1784145feb17SMarkus Armbruster if (bs->dev_ops && bs->dev_ops->change_media_cb) { 17856f382ed2SLuiz Capitulino bool tray_was_closed = !bdrv_dev_is_tray_open(bs); 17867d4b4ba5SMarkus Armbruster bs->dev_ops->change_media_cb(bs->dev_opaque, load); 17876f382ed2SLuiz Capitulino if (tray_was_closed) { 17886f382ed2SLuiz Capitulino /* tray open */ 17896f382ed2SLuiz Capitulino bdrv_emit_qmp_eject_event(bs, true); 17906f382ed2SLuiz Capitulino } 17916f382ed2SLuiz Capitulino if (load) { 17926f382ed2SLuiz Capitulino /* tray close */ 17936f382ed2SLuiz Capitulino bdrv_emit_qmp_eject_event(bs, false); 17946f382ed2SLuiz Capitulino } 1795145feb17SMarkus Armbruster } 1796145feb17SMarkus Armbruster } 1797145feb17SMarkus Armbruster 17982c6942faSMarkus Armbruster bool bdrv_dev_has_removable_media(BlockDriverState *bs) 17992c6942faSMarkus Armbruster { 18002c6942faSMarkus Armbruster return !bs->dev || (bs->dev_ops && bs->dev_ops->change_media_cb); 18012c6942faSMarkus Armbruster } 18022c6942faSMarkus Armbruster 1803025ccaa7SPaolo Bonzini void bdrv_dev_eject_request(BlockDriverState *bs, bool force) 1804025ccaa7SPaolo Bonzini { 1805025ccaa7SPaolo Bonzini if (bs->dev_ops && bs->dev_ops->eject_request_cb) { 1806025ccaa7SPaolo Bonzini bs->dev_ops->eject_request_cb(bs->dev_opaque, force); 1807025ccaa7SPaolo Bonzini } 1808025ccaa7SPaolo Bonzini } 1809025ccaa7SPaolo Bonzini 1810e4def80bSMarkus Armbruster bool bdrv_dev_is_tray_open(BlockDriverState *bs) 1811e4def80bSMarkus Armbruster { 1812e4def80bSMarkus Armbruster if (bs->dev_ops && bs->dev_ops->is_tray_open) { 1813e4def80bSMarkus Armbruster return bs->dev_ops->is_tray_open(bs->dev_opaque); 1814e4def80bSMarkus Armbruster } 1815e4def80bSMarkus Armbruster return false; 1816e4def80bSMarkus Armbruster } 1817e4def80bSMarkus Armbruster 1818145feb17SMarkus Armbruster static void bdrv_dev_resize_cb(BlockDriverState *bs) 1819145feb17SMarkus Armbruster { 1820145feb17SMarkus Armbruster if (bs->dev_ops && bs->dev_ops->resize_cb) { 1821145feb17SMarkus Armbruster bs->dev_ops->resize_cb(bs->dev_opaque); 18220e49de52SMarkus Armbruster } 18230e49de52SMarkus Armbruster } 18240e49de52SMarkus Armbruster 1825f107639aSMarkus Armbruster bool bdrv_dev_is_medium_locked(BlockDriverState *bs) 1826f107639aSMarkus Armbruster { 1827f107639aSMarkus Armbruster if (bs->dev_ops && bs->dev_ops->is_medium_locked) { 1828f107639aSMarkus Armbruster return bs->dev_ops->is_medium_locked(bs->dev_opaque); 1829f107639aSMarkus Armbruster } 1830f107639aSMarkus Armbruster return false; 1831f107639aSMarkus Armbruster } 1832f107639aSMarkus Armbruster 1833e97fc193Saliguori /* 1834e97fc193Saliguori * Run consistency checks on an image 1835e97fc193Saliguori * 1836e076f338SKevin Wolf * Returns 0 if the check could be completed (it doesn't mean that the image is 1837a1c7273bSStefan Weil * free of errors) or -errno when an internal error occurred. The results of the 1838e076f338SKevin Wolf * check are stored in res. 1839e97fc193Saliguori */ 18404534ff54SKevin Wolf int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix) 1841e97fc193Saliguori { 1842e97fc193Saliguori if (bs->drv->bdrv_check == NULL) { 1843e97fc193Saliguori return -ENOTSUP; 1844e97fc193Saliguori } 1845e97fc193Saliguori 1846e076f338SKevin Wolf memset(res, 0, sizeof(*res)); 18474534ff54SKevin Wolf return bs->drv->bdrv_check(bs, res, fix); 1848e97fc193Saliguori } 1849e97fc193Saliguori 18508a426614SKevin Wolf #define COMMIT_BUF_SECTORS 2048 18518a426614SKevin Wolf 185233e3963eSbellard /* commit COW file into the raw image */ 185333e3963eSbellard int bdrv_commit(BlockDriverState *bs) 185433e3963eSbellard { 185519cb3738Sbellard BlockDriver *drv = bs->drv; 18568a426614SKevin Wolf int64_t sector, total_sectors; 18578a426614SKevin Wolf int n, ro, open_flags; 18580bce597dSJeff Cody int ret = 0; 18598a426614SKevin Wolf uint8_t *buf; 1860c2cba3d9SJim Meyering char filename[PATH_MAX]; 186133e3963eSbellard 186219cb3738Sbellard if (!drv) 186319cb3738Sbellard return -ENOMEDIUM; 186433e3963eSbellard 18654dca4b63SNaphtali Sprei if (!bs->backing_hd) { 18664dca4b63SNaphtali Sprei return -ENOTSUP; 18674dca4b63SNaphtali Sprei } 18684dca4b63SNaphtali Sprei 18692d3735d3SStefan Hajnoczi if (bdrv_in_use(bs) || bdrv_in_use(bs->backing_hd)) { 18702d3735d3SStefan Hajnoczi return -EBUSY; 18712d3735d3SStefan Hajnoczi } 18722d3735d3SStefan Hajnoczi 18734dca4b63SNaphtali Sprei ro = bs->backing_hd->read_only; 1874c2cba3d9SJim Meyering /* Use pstrcpy (not strncpy): filename must be NUL-terminated. */ 1875c2cba3d9SJim Meyering pstrcpy(filename, sizeof(filename), bs->backing_hd->filename); 18764dca4b63SNaphtali Sprei open_flags = bs->backing_hd->open_flags; 18774dca4b63SNaphtali Sprei 18784dca4b63SNaphtali Sprei if (ro) { 18790bce597dSJeff Cody if (bdrv_reopen(bs->backing_hd, open_flags | BDRV_O_RDWR, NULL)) { 18800bce597dSJeff Cody return -EACCES; 18814dca4b63SNaphtali Sprei } 1882ea2384d3Sbellard } 1883ea2384d3Sbellard 18846ea44308SJan Kiszka total_sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS; 18857267c094SAnthony Liguori buf = g_malloc(COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE); 18868a426614SKevin Wolf 18878a426614SKevin Wolf for (sector = 0; sector < total_sectors; sector += n) { 1888d663640cSPaolo Bonzini ret = bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n); 1889d663640cSPaolo Bonzini if (ret < 0) { 1890d663640cSPaolo Bonzini goto ro_cleanup; 1891d663640cSPaolo Bonzini } 1892d663640cSPaolo Bonzini if (ret) { 18938a426614SKevin Wolf if (bdrv_read(bs, sector, buf, n) != 0) { 18944dca4b63SNaphtali Sprei ret = -EIO; 18954dca4b63SNaphtali Sprei goto ro_cleanup; 189633e3963eSbellard } 189733e3963eSbellard 18988a426614SKevin Wolf if (bdrv_write(bs->backing_hd, sector, buf, n) != 0) { 18994dca4b63SNaphtali Sprei ret = -EIO; 19004dca4b63SNaphtali Sprei goto ro_cleanup; 190133e3963eSbellard } 190233e3963eSbellard } 190333e3963eSbellard } 190495389c86Sbellard 19051d44952fSChristoph Hellwig if (drv->bdrv_make_empty) { 19061d44952fSChristoph Hellwig ret = drv->bdrv_make_empty(bs); 19071d44952fSChristoph Hellwig bdrv_flush(bs); 19081d44952fSChristoph Hellwig } 190995389c86Sbellard 19103f5075aeSChristoph Hellwig /* 19113f5075aeSChristoph Hellwig * Make sure all data we wrote to the backing device is actually 19123f5075aeSChristoph Hellwig * stable on disk. 19133f5075aeSChristoph Hellwig */ 19143f5075aeSChristoph Hellwig if (bs->backing_hd) 19153f5075aeSChristoph Hellwig bdrv_flush(bs->backing_hd); 19164dca4b63SNaphtali Sprei 19174dca4b63SNaphtali Sprei ro_cleanup: 19187267c094SAnthony Liguori g_free(buf); 19194dca4b63SNaphtali Sprei 19204dca4b63SNaphtali Sprei if (ro) { 19210bce597dSJeff Cody /* ignoring error return here */ 19220bce597dSJeff Cody bdrv_reopen(bs->backing_hd, open_flags & ~BDRV_O_RDWR, NULL); 19234dca4b63SNaphtali Sprei } 19244dca4b63SNaphtali Sprei 19251d44952fSChristoph Hellwig return ret; 192633e3963eSbellard } 192733e3963eSbellard 1928e8877497SStefan Hajnoczi int bdrv_commit_all(void) 19296ab4b5abSMarkus Armbruster { 19306ab4b5abSMarkus Armbruster BlockDriverState *bs; 19316ab4b5abSMarkus Armbruster 19326ab4b5abSMarkus Armbruster QTAILQ_FOREACH(bs, &bdrv_states, list) { 1933272d2d8eSJeff Cody if (bs->drv && bs->backing_hd) { 1934e8877497SStefan Hajnoczi int ret = bdrv_commit(bs); 1935e8877497SStefan Hajnoczi if (ret < 0) { 1936e8877497SStefan Hajnoczi return ret; 19376ab4b5abSMarkus Armbruster } 19386ab4b5abSMarkus Armbruster } 1939272d2d8eSJeff Cody } 1940e8877497SStefan Hajnoczi return 0; 1941e8877497SStefan Hajnoczi } 19426ab4b5abSMarkus Armbruster 1943dbffbdcfSStefan Hajnoczi /** 1944dbffbdcfSStefan Hajnoczi * Remove an active request from the tracked requests list 1945dbffbdcfSStefan Hajnoczi * 1946dbffbdcfSStefan Hajnoczi * This function should be called when a tracked request is completing. 1947dbffbdcfSStefan Hajnoczi */ 1948dbffbdcfSStefan Hajnoczi static void tracked_request_end(BdrvTrackedRequest *req) 1949dbffbdcfSStefan Hajnoczi { 1950dbffbdcfSStefan Hajnoczi QLIST_REMOVE(req, list); 1951f4658285SStefan Hajnoczi qemu_co_queue_restart_all(&req->wait_queue); 1952dbffbdcfSStefan Hajnoczi } 1953dbffbdcfSStefan Hajnoczi 1954dbffbdcfSStefan Hajnoczi /** 1955dbffbdcfSStefan Hajnoczi * Add an active request to the tracked requests list 1956dbffbdcfSStefan Hajnoczi */ 1957dbffbdcfSStefan Hajnoczi static void tracked_request_begin(BdrvTrackedRequest *req, 1958dbffbdcfSStefan Hajnoczi BlockDriverState *bs, 1959dbffbdcfSStefan Hajnoczi int64_t sector_num, 1960dbffbdcfSStefan Hajnoczi int nb_sectors, bool is_write) 1961dbffbdcfSStefan Hajnoczi { 1962dbffbdcfSStefan Hajnoczi *req = (BdrvTrackedRequest){ 1963dbffbdcfSStefan Hajnoczi .bs = bs, 1964dbffbdcfSStefan Hajnoczi .sector_num = sector_num, 1965dbffbdcfSStefan Hajnoczi .nb_sectors = nb_sectors, 1966dbffbdcfSStefan Hajnoczi .is_write = is_write, 19675f8b6491SStefan Hajnoczi .co = qemu_coroutine_self(), 1968dbffbdcfSStefan Hajnoczi }; 1969dbffbdcfSStefan Hajnoczi 1970f4658285SStefan Hajnoczi qemu_co_queue_init(&req->wait_queue); 1971f4658285SStefan Hajnoczi 1972dbffbdcfSStefan Hajnoczi QLIST_INSERT_HEAD(&bs->tracked_requests, req, list); 1973dbffbdcfSStefan Hajnoczi } 1974dbffbdcfSStefan Hajnoczi 1975d83947acSStefan Hajnoczi /** 1976d83947acSStefan Hajnoczi * Round a region to cluster boundaries 1977d83947acSStefan Hajnoczi */ 1978343bded4SPaolo Bonzini void bdrv_round_to_clusters(BlockDriverState *bs, 1979d83947acSStefan Hajnoczi int64_t sector_num, int nb_sectors, 1980d83947acSStefan Hajnoczi int64_t *cluster_sector_num, 1981d83947acSStefan Hajnoczi int *cluster_nb_sectors) 1982d83947acSStefan Hajnoczi { 1983d83947acSStefan Hajnoczi BlockDriverInfo bdi; 1984d83947acSStefan Hajnoczi 1985d83947acSStefan Hajnoczi if (bdrv_get_info(bs, &bdi) < 0 || bdi.cluster_size == 0) { 1986d83947acSStefan Hajnoczi *cluster_sector_num = sector_num; 1987d83947acSStefan Hajnoczi *cluster_nb_sectors = nb_sectors; 1988d83947acSStefan Hajnoczi } else { 1989d83947acSStefan Hajnoczi int64_t c = bdi.cluster_size / BDRV_SECTOR_SIZE; 1990d83947acSStefan Hajnoczi *cluster_sector_num = QEMU_ALIGN_DOWN(sector_num, c); 1991d83947acSStefan Hajnoczi *cluster_nb_sectors = QEMU_ALIGN_UP(sector_num - *cluster_sector_num + 1992d83947acSStefan Hajnoczi nb_sectors, c); 1993d83947acSStefan Hajnoczi } 1994d83947acSStefan Hajnoczi } 1995d83947acSStefan Hajnoczi 1996f4658285SStefan Hajnoczi static bool tracked_request_overlaps(BdrvTrackedRequest *req, 1997f4658285SStefan Hajnoczi int64_t sector_num, int nb_sectors) { 1998d83947acSStefan Hajnoczi /* aaaa bbbb */ 1999d83947acSStefan Hajnoczi if (sector_num >= req->sector_num + req->nb_sectors) { 2000d83947acSStefan Hajnoczi return false; 2001d83947acSStefan Hajnoczi } 2002d83947acSStefan Hajnoczi /* bbbb aaaa */ 2003d83947acSStefan Hajnoczi if (req->sector_num >= sector_num + nb_sectors) { 2004d83947acSStefan Hajnoczi return false; 2005d83947acSStefan Hajnoczi } 2006d83947acSStefan Hajnoczi return true; 2007f4658285SStefan Hajnoczi } 2008f4658285SStefan Hajnoczi 2009f4658285SStefan Hajnoczi static void coroutine_fn wait_for_overlapping_requests(BlockDriverState *bs, 2010f4658285SStefan Hajnoczi int64_t sector_num, int nb_sectors) 2011f4658285SStefan Hajnoczi { 2012f4658285SStefan Hajnoczi BdrvTrackedRequest *req; 2013d83947acSStefan Hajnoczi int64_t cluster_sector_num; 2014d83947acSStefan Hajnoczi int cluster_nb_sectors; 2015f4658285SStefan Hajnoczi bool retry; 2016f4658285SStefan Hajnoczi 2017d83947acSStefan Hajnoczi /* If we touch the same cluster it counts as an overlap. This guarantees 2018d83947acSStefan Hajnoczi * that allocating writes will be serialized and not race with each other 2019d83947acSStefan Hajnoczi * for the same cluster. For example, in copy-on-read it ensures that the 2020d83947acSStefan Hajnoczi * CoR read and write operations are atomic and guest writes cannot 2021d83947acSStefan Hajnoczi * interleave between them. 2022d83947acSStefan Hajnoczi */ 2023343bded4SPaolo Bonzini bdrv_round_to_clusters(bs, sector_num, nb_sectors, 2024d83947acSStefan Hajnoczi &cluster_sector_num, &cluster_nb_sectors); 2025d83947acSStefan Hajnoczi 2026f4658285SStefan Hajnoczi do { 2027f4658285SStefan Hajnoczi retry = false; 2028f4658285SStefan Hajnoczi QLIST_FOREACH(req, &bs->tracked_requests, list) { 2029d83947acSStefan Hajnoczi if (tracked_request_overlaps(req, cluster_sector_num, 2030d83947acSStefan Hajnoczi cluster_nb_sectors)) { 20315f8b6491SStefan Hajnoczi /* Hitting this means there was a reentrant request, for 20325f8b6491SStefan Hajnoczi * example, a block driver issuing nested requests. This must 20335f8b6491SStefan Hajnoczi * never happen since it means deadlock. 20345f8b6491SStefan Hajnoczi */ 20355f8b6491SStefan Hajnoczi assert(qemu_coroutine_self() != req->co); 20365f8b6491SStefan Hajnoczi 2037f4658285SStefan Hajnoczi qemu_co_queue_wait(&req->wait_queue); 2038f4658285SStefan Hajnoczi retry = true; 2039f4658285SStefan Hajnoczi break; 2040f4658285SStefan Hajnoczi } 2041f4658285SStefan Hajnoczi } 2042f4658285SStefan Hajnoczi } while (retry); 2043f4658285SStefan Hajnoczi } 2044f4658285SStefan Hajnoczi 2045756e6736SKevin Wolf /* 2046756e6736SKevin Wolf * Return values: 2047756e6736SKevin Wolf * 0 - success 2048756e6736SKevin Wolf * -EINVAL - backing format specified, but no file 2049756e6736SKevin Wolf * -ENOSPC - can't update the backing file because no space is left in the 2050756e6736SKevin Wolf * image file header 2051756e6736SKevin Wolf * -ENOTSUP - format driver doesn't support changing the backing file 2052756e6736SKevin Wolf */ 2053756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs, 2054756e6736SKevin Wolf const char *backing_file, const char *backing_fmt) 2055756e6736SKevin Wolf { 2056756e6736SKevin Wolf BlockDriver *drv = bs->drv; 2057469ef350SPaolo Bonzini int ret; 2058756e6736SKevin Wolf 20595f377794SPaolo Bonzini /* Backing file format doesn't make sense without a backing file */ 20605f377794SPaolo Bonzini if (backing_fmt && !backing_file) { 20615f377794SPaolo Bonzini return -EINVAL; 20625f377794SPaolo Bonzini } 20635f377794SPaolo Bonzini 2064756e6736SKevin Wolf if (drv->bdrv_change_backing_file != NULL) { 2065469ef350SPaolo Bonzini ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); 2066756e6736SKevin Wolf } else { 2067469ef350SPaolo Bonzini ret = -ENOTSUP; 2068756e6736SKevin Wolf } 2069469ef350SPaolo Bonzini 2070469ef350SPaolo Bonzini if (ret == 0) { 2071469ef350SPaolo Bonzini pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); 2072469ef350SPaolo Bonzini pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); 2073469ef350SPaolo Bonzini } 2074469ef350SPaolo Bonzini return ret; 2075756e6736SKevin Wolf } 2076756e6736SKevin Wolf 20776ebdcee2SJeff Cody /* 20786ebdcee2SJeff Cody * Finds the image layer in the chain that has 'bs' as its backing file. 20796ebdcee2SJeff Cody * 20806ebdcee2SJeff Cody * active is the current topmost image. 20816ebdcee2SJeff Cody * 20826ebdcee2SJeff Cody * Returns NULL if bs is not found in active's image chain, 20836ebdcee2SJeff Cody * or if active == bs. 20846ebdcee2SJeff Cody */ 20856ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active, 20866ebdcee2SJeff Cody BlockDriverState *bs) 20876ebdcee2SJeff Cody { 20886ebdcee2SJeff Cody BlockDriverState *overlay = NULL; 20896ebdcee2SJeff Cody BlockDriverState *intermediate; 20906ebdcee2SJeff Cody 20916ebdcee2SJeff Cody assert(active != NULL); 20926ebdcee2SJeff Cody assert(bs != NULL); 20936ebdcee2SJeff Cody 20946ebdcee2SJeff Cody /* if bs is the same as active, then by definition it has no overlay 20956ebdcee2SJeff Cody */ 20966ebdcee2SJeff Cody if (active == bs) { 20976ebdcee2SJeff Cody return NULL; 20986ebdcee2SJeff Cody } 20996ebdcee2SJeff Cody 21006ebdcee2SJeff Cody intermediate = active; 21016ebdcee2SJeff Cody while (intermediate->backing_hd) { 21026ebdcee2SJeff Cody if (intermediate->backing_hd == bs) { 21036ebdcee2SJeff Cody overlay = intermediate; 21046ebdcee2SJeff Cody break; 21056ebdcee2SJeff Cody } 21066ebdcee2SJeff Cody intermediate = intermediate->backing_hd; 21076ebdcee2SJeff Cody } 21086ebdcee2SJeff Cody 21096ebdcee2SJeff Cody return overlay; 21106ebdcee2SJeff Cody } 21116ebdcee2SJeff Cody 21126ebdcee2SJeff Cody typedef struct BlkIntermediateStates { 21136ebdcee2SJeff Cody BlockDriverState *bs; 21146ebdcee2SJeff Cody QSIMPLEQ_ENTRY(BlkIntermediateStates) entry; 21156ebdcee2SJeff Cody } BlkIntermediateStates; 21166ebdcee2SJeff Cody 21176ebdcee2SJeff Cody 21186ebdcee2SJeff Cody /* 21196ebdcee2SJeff Cody * Drops images above 'base' up to and including 'top', and sets the image 21206ebdcee2SJeff Cody * above 'top' to have base as its backing file. 21216ebdcee2SJeff Cody * 21226ebdcee2SJeff Cody * Requires that the overlay to 'top' is opened r/w, so that the backing file 21236ebdcee2SJeff Cody * information in 'bs' can be properly updated. 21246ebdcee2SJeff Cody * 21256ebdcee2SJeff Cody * E.g., this will convert the following chain: 21266ebdcee2SJeff Cody * bottom <- base <- intermediate <- top <- active 21276ebdcee2SJeff Cody * 21286ebdcee2SJeff Cody * to 21296ebdcee2SJeff Cody * 21306ebdcee2SJeff Cody * bottom <- base <- active 21316ebdcee2SJeff Cody * 21326ebdcee2SJeff Cody * It is allowed for bottom==base, in which case it converts: 21336ebdcee2SJeff Cody * 21346ebdcee2SJeff Cody * base <- intermediate <- top <- active 21356ebdcee2SJeff Cody * 21366ebdcee2SJeff Cody * to 21376ebdcee2SJeff Cody * 21386ebdcee2SJeff Cody * base <- active 21396ebdcee2SJeff Cody * 21406ebdcee2SJeff Cody * Error conditions: 21416ebdcee2SJeff Cody * if active == top, that is considered an error 21426ebdcee2SJeff Cody * 21436ebdcee2SJeff Cody */ 21446ebdcee2SJeff Cody int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top, 21456ebdcee2SJeff Cody BlockDriverState *base) 21466ebdcee2SJeff Cody { 21476ebdcee2SJeff Cody BlockDriverState *intermediate; 21486ebdcee2SJeff Cody BlockDriverState *base_bs = NULL; 21496ebdcee2SJeff Cody BlockDriverState *new_top_bs = NULL; 21506ebdcee2SJeff Cody BlkIntermediateStates *intermediate_state, *next; 21516ebdcee2SJeff Cody int ret = -EIO; 21526ebdcee2SJeff Cody 21536ebdcee2SJeff Cody QSIMPLEQ_HEAD(states_to_delete, BlkIntermediateStates) states_to_delete; 21546ebdcee2SJeff Cody QSIMPLEQ_INIT(&states_to_delete); 21556ebdcee2SJeff Cody 21566ebdcee2SJeff Cody if (!top->drv || !base->drv) { 21576ebdcee2SJeff Cody goto exit; 21586ebdcee2SJeff Cody } 21596ebdcee2SJeff Cody 21606ebdcee2SJeff Cody new_top_bs = bdrv_find_overlay(active, top); 21616ebdcee2SJeff Cody 21626ebdcee2SJeff Cody if (new_top_bs == NULL) { 21636ebdcee2SJeff Cody /* we could not find the image above 'top', this is an error */ 21646ebdcee2SJeff Cody goto exit; 21656ebdcee2SJeff Cody } 21666ebdcee2SJeff Cody 21676ebdcee2SJeff Cody /* special case of new_top_bs->backing_hd already pointing to base - nothing 21686ebdcee2SJeff Cody * to do, no intermediate images */ 21696ebdcee2SJeff Cody if (new_top_bs->backing_hd == base) { 21706ebdcee2SJeff Cody ret = 0; 21716ebdcee2SJeff Cody goto exit; 21726ebdcee2SJeff Cody } 21736ebdcee2SJeff Cody 21746ebdcee2SJeff Cody intermediate = top; 21756ebdcee2SJeff Cody 21766ebdcee2SJeff Cody /* now we will go down through the list, and add each BDS we find 21776ebdcee2SJeff Cody * into our deletion queue, until we hit the 'base' 21786ebdcee2SJeff Cody */ 21796ebdcee2SJeff Cody while (intermediate) { 21806ebdcee2SJeff Cody intermediate_state = g_malloc0(sizeof(BlkIntermediateStates)); 21816ebdcee2SJeff Cody intermediate_state->bs = intermediate; 21826ebdcee2SJeff Cody QSIMPLEQ_INSERT_TAIL(&states_to_delete, intermediate_state, entry); 21836ebdcee2SJeff Cody 21846ebdcee2SJeff Cody if (intermediate->backing_hd == base) { 21856ebdcee2SJeff Cody base_bs = intermediate->backing_hd; 21866ebdcee2SJeff Cody break; 21876ebdcee2SJeff Cody } 21886ebdcee2SJeff Cody intermediate = intermediate->backing_hd; 21896ebdcee2SJeff Cody } 21906ebdcee2SJeff Cody if (base_bs == NULL) { 21916ebdcee2SJeff Cody /* something went wrong, we did not end at the base. safely 21926ebdcee2SJeff Cody * unravel everything, and exit with error */ 21936ebdcee2SJeff Cody goto exit; 21946ebdcee2SJeff Cody } 21956ebdcee2SJeff Cody 21966ebdcee2SJeff Cody /* success - we can delete the intermediate states, and link top->base */ 21976ebdcee2SJeff Cody ret = bdrv_change_backing_file(new_top_bs, base_bs->filename, 21986ebdcee2SJeff Cody base_bs->drv ? base_bs->drv->format_name : ""); 21996ebdcee2SJeff Cody if (ret) { 22006ebdcee2SJeff Cody goto exit; 22016ebdcee2SJeff Cody } 22026ebdcee2SJeff Cody new_top_bs->backing_hd = base_bs; 22036ebdcee2SJeff Cody 22046ebdcee2SJeff Cody 22056ebdcee2SJeff Cody QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) { 22066ebdcee2SJeff Cody /* so that bdrv_close() does not recursively close the chain */ 22076ebdcee2SJeff Cody intermediate_state->bs->backing_hd = NULL; 22084f6fd349SFam Zheng bdrv_unref(intermediate_state->bs); 22096ebdcee2SJeff Cody } 22106ebdcee2SJeff Cody ret = 0; 22116ebdcee2SJeff Cody 22126ebdcee2SJeff Cody exit: 22136ebdcee2SJeff Cody QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) { 22146ebdcee2SJeff Cody g_free(intermediate_state); 22156ebdcee2SJeff Cody } 22166ebdcee2SJeff Cody return ret; 22176ebdcee2SJeff Cody } 22186ebdcee2SJeff Cody 22196ebdcee2SJeff Cody 222071d0770cSaliguori static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset, 222171d0770cSaliguori size_t size) 222271d0770cSaliguori { 222371d0770cSaliguori int64_t len; 222471d0770cSaliguori 222571d0770cSaliguori if (!bdrv_is_inserted(bs)) 222671d0770cSaliguori return -ENOMEDIUM; 222771d0770cSaliguori 222871d0770cSaliguori if (bs->growable) 222971d0770cSaliguori return 0; 223071d0770cSaliguori 223171d0770cSaliguori len = bdrv_getlength(bs); 223271d0770cSaliguori 2233fbb7b4e0SKevin Wolf if (offset < 0) 2234fbb7b4e0SKevin Wolf return -EIO; 2235fbb7b4e0SKevin Wolf 2236fbb7b4e0SKevin Wolf if ((offset > len) || (len - offset < size)) 223771d0770cSaliguori return -EIO; 223871d0770cSaliguori 223971d0770cSaliguori return 0; 224071d0770cSaliguori } 224171d0770cSaliguori 224271d0770cSaliguori static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num, 224371d0770cSaliguori int nb_sectors) 224471d0770cSaliguori { 2245eb5a3165SJes Sorensen return bdrv_check_byte_request(bs, sector_num * BDRV_SECTOR_SIZE, 2246eb5a3165SJes Sorensen nb_sectors * BDRV_SECTOR_SIZE); 224771d0770cSaliguori } 224871d0770cSaliguori 22491c9805a3SStefan Hajnoczi typedef struct RwCo { 22501c9805a3SStefan Hajnoczi BlockDriverState *bs; 22511c9805a3SStefan Hajnoczi int64_t sector_num; 22521c9805a3SStefan Hajnoczi int nb_sectors; 22531c9805a3SStefan Hajnoczi QEMUIOVector *qiov; 22541c9805a3SStefan Hajnoczi bool is_write; 22551c9805a3SStefan Hajnoczi int ret; 22564105eaaaSPeter Lieven BdrvRequestFlags flags; 22571c9805a3SStefan Hajnoczi } RwCo; 22581c9805a3SStefan Hajnoczi 22591c9805a3SStefan Hajnoczi static void coroutine_fn bdrv_rw_co_entry(void *opaque) 2260fc01f7e7Sbellard { 22611c9805a3SStefan Hajnoczi RwCo *rwco = opaque; 2262fc01f7e7Sbellard 22631c9805a3SStefan Hajnoczi if (!rwco->is_write) { 22641c9805a3SStefan Hajnoczi rwco->ret = bdrv_co_do_readv(rwco->bs, rwco->sector_num, 22654105eaaaSPeter Lieven rwco->nb_sectors, rwco->qiov, 22664105eaaaSPeter Lieven rwco->flags); 22671c9805a3SStefan Hajnoczi } else { 22681c9805a3SStefan Hajnoczi rwco->ret = bdrv_co_do_writev(rwco->bs, rwco->sector_num, 22694105eaaaSPeter Lieven rwco->nb_sectors, rwco->qiov, 22704105eaaaSPeter Lieven rwco->flags); 22711c9805a3SStefan Hajnoczi } 22721c9805a3SStefan Hajnoczi } 2273e7a8a783SKevin Wolf 22741c9805a3SStefan Hajnoczi /* 22758d3b1a2dSKevin Wolf * Process a vectored synchronous request using coroutines 22761c9805a3SStefan Hajnoczi */ 22778d3b1a2dSKevin Wolf static int bdrv_rwv_co(BlockDriverState *bs, int64_t sector_num, 22784105eaaaSPeter Lieven QEMUIOVector *qiov, bool is_write, 22794105eaaaSPeter Lieven BdrvRequestFlags flags) 22801c9805a3SStefan Hajnoczi { 22811c9805a3SStefan Hajnoczi Coroutine *co; 22821c9805a3SStefan Hajnoczi RwCo rwco = { 22831c9805a3SStefan Hajnoczi .bs = bs, 22841c9805a3SStefan Hajnoczi .sector_num = sector_num, 22858d3b1a2dSKevin Wolf .nb_sectors = qiov->size >> BDRV_SECTOR_BITS, 22868d3b1a2dSKevin Wolf .qiov = qiov, 22871c9805a3SStefan Hajnoczi .is_write = is_write, 22881c9805a3SStefan Hajnoczi .ret = NOT_DONE, 22894105eaaaSPeter Lieven .flags = flags, 22901c9805a3SStefan Hajnoczi }; 22918d3b1a2dSKevin Wolf assert((qiov->size & (BDRV_SECTOR_SIZE - 1)) == 0); 22921c9805a3SStefan Hajnoczi 2293498e386cSZhi Yong Wu /** 2294498e386cSZhi Yong Wu * In sync call context, when the vcpu is blocked, this throttling timer 2295498e386cSZhi Yong Wu * will not fire; so the I/O throttling function has to be disabled here 2296498e386cSZhi Yong Wu * if it has been enabled. 2297498e386cSZhi Yong Wu */ 2298498e386cSZhi Yong Wu if (bs->io_limits_enabled) { 2299498e386cSZhi Yong Wu fprintf(stderr, "Disabling I/O throttling on '%s' due " 2300498e386cSZhi Yong Wu "to synchronous I/O.\n", bdrv_get_device_name(bs)); 2301498e386cSZhi Yong Wu bdrv_io_limits_disable(bs); 2302498e386cSZhi Yong Wu } 2303498e386cSZhi Yong Wu 23041c9805a3SStefan Hajnoczi if (qemu_in_coroutine()) { 23051c9805a3SStefan Hajnoczi /* Fast-path if already in coroutine context */ 23061c9805a3SStefan Hajnoczi bdrv_rw_co_entry(&rwco); 23071c9805a3SStefan Hajnoczi } else { 23081c9805a3SStefan Hajnoczi co = qemu_coroutine_create(bdrv_rw_co_entry); 23091c9805a3SStefan Hajnoczi qemu_coroutine_enter(co, &rwco); 23101c9805a3SStefan Hajnoczi while (rwco.ret == NOT_DONE) { 23111c9805a3SStefan Hajnoczi qemu_aio_wait(); 23121c9805a3SStefan Hajnoczi } 23131c9805a3SStefan Hajnoczi } 23141c9805a3SStefan Hajnoczi return rwco.ret; 2315e7a8a783SKevin Wolf } 2316e7a8a783SKevin Wolf 23178d3b1a2dSKevin Wolf /* 23188d3b1a2dSKevin Wolf * Process a synchronous request using coroutines 23198d3b1a2dSKevin Wolf */ 23208d3b1a2dSKevin Wolf static int bdrv_rw_co(BlockDriverState *bs, int64_t sector_num, uint8_t *buf, 23214105eaaaSPeter Lieven int nb_sectors, bool is_write, BdrvRequestFlags flags) 23228d3b1a2dSKevin Wolf { 23238d3b1a2dSKevin Wolf QEMUIOVector qiov; 23248d3b1a2dSKevin Wolf struct iovec iov = { 23258d3b1a2dSKevin Wolf .iov_base = (void *)buf, 23268d3b1a2dSKevin Wolf .iov_len = nb_sectors * BDRV_SECTOR_SIZE, 23278d3b1a2dSKevin Wolf }; 23288d3b1a2dSKevin Wolf 23298d3b1a2dSKevin Wolf qemu_iovec_init_external(&qiov, &iov, 1); 23304105eaaaSPeter Lieven return bdrv_rwv_co(bs, sector_num, &qiov, is_write, flags); 23318d3b1a2dSKevin Wolf } 23328d3b1a2dSKevin Wolf 23331c9805a3SStefan Hajnoczi /* return < 0 if error. See bdrv_write() for the return codes */ 23341c9805a3SStefan Hajnoczi int bdrv_read(BlockDriverState *bs, int64_t sector_num, 23351c9805a3SStefan Hajnoczi uint8_t *buf, int nb_sectors) 23361c9805a3SStefan Hajnoczi { 23374105eaaaSPeter Lieven return bdrv_rw_co(bs, sector_num, buf, nb_sectors, false, 0); 233883f64091Sbellard } 2339fc01f7e7Sbellard 234007d27a44SMarkus Armbruster /* Just like bdrv_read(), but with I/O throttling temporarily disabled */ 234107d27a44SMarkus Armbruster int bdrv_read_unthrottled(BlockDriverState *bs, int64_t sector_num, 234207d27a44SMarkus Armbruster uint8_t *buf, int nb_sectors) 234307d27a44SMarkus Armbruster { 234407d27a44SMarkus Armbruster bool enabled; 234507d27a44SMarkus Armbruster int ret; 234607d27a44SMarkus Armbruster 234707d27a44SMarkus Armbruster enabled = bs->io_limits_enabled; 234807d27a44SMarkus Armbruster bs->io_limits_enabled = false; 23494e7395e8SPeter Lieven ret = bdrv_read(bs, sector_num, buf, nb_sectors); 235007d27a44SMarkus Armbruster bs->io_limits_enabled = enabled; 235107d27a44SMarkus Armbruster return ret; 235207d27a44SMarkus Armbruster } 235307d27a44SMarkus Armbruster 235419cb3738Sbellard /* Return < 0 if error. Important errors are: 235519cb3738Sbellard -EIO generic I/O error (may happen for all errors) 235619cb3738Sbellard -ENOMEDIUM No media inserted. 235719cb3738Sbellard -EINVAL Invalid sector number or nb_sectors 235819cb3738Sbellard -EACCES Trying to write a read-only device 235919cb3738Sbellard */ 2360fc01f7e7Sbellard int bdrv_write(BlockDriverState *bs, int64_t sector_num, 2361fc01f7e7Sbellard const uint8_t *buf, int nb_sectors) 2362fc01f7e7Sbellard { 23634105eaaaSPeter Lieven return bdrv_rw_co(bs, sector_num, (uint8_t *)buf, nb_sectors, true, 0); 236483f64091Sbellard } 236583f64091Sbellard 23668d3b1a2dSKevin Wolf int bdrv_writev(BlockDriverState *bs, int64_t sector_num, QEMUIOVector *qiov) 23678d3b1a2dSKevin Wolf { 23684105eaaaSPeter Lieven return bdrv_rwv_co(bs, sector_num, qiov, true, 0); 23694105eaaaSPeter Lieven } 23704105eaaaSPeter Lieven 23714105eaaaSPeter Lieven int bdrv_write_zeroes(BlockDriverState *bs, int64_t sector_num, int nb_sectors) 23724105eaaaSPeter Lieven { 23734105eaaaSPeter Lieven return bdrv_rw_co(bs, sector_num, NULL, nb_sectors, true, 23744105eaaaSPeter Lieven BDRV_REQ_ZERO_WRITE); 23758d3b1a2dSKevin Wolf } 23768d3b1a2dSKevin Wolf 2377eda578e5Saliguori int bdrv_pread(BlockDriverState *bs, int64_t offset, 2378eda578e5Saliguori void *buf, int count1) 237983f64091Sbellard { 23806ea44308SJan Kiszka uint8_t tmp_buf[BDRV_SECTOR_SIZE]; 238183f64091Sbellard int len, nb_sectors, count; 238283f64091Sbellard int64_t sector_num; 23839a8c4cceSKevin Wolf int ret; 238483f64091Sbellard 238583f64091Sbellard count = count1; 238683f64091Sbellard /* first read to align to sector start */ 23876ea44308SJan Kiszka len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1); 238883f64091Sbellard if (len > count) 238983f64091Sbellard len = count; 23906ea44308SJan Kiszka sector_num = offset >> BDRV_SECTOR_BITS; 239183f64091Sbellard if (len > 0) { 23929a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) 23939a8c4cceSKevin Wolf return ret; 23946ea44308SJan Kiszka memcpy(buf, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), len); 239583f64091Sbellard count -= len; 239683f64091Sbellard if (count == 0) 239783f64091Sbellard return count1; 239883f64091Sbellard sector_num++; 239983f64091Sbellard buf += len; 240083f64091Sbellard } 240183f64091Sbellard 240283f64091Sbellard /* read the sectors "in place" */ 24036ea44308SJan Kiszka nb_sectors = count >> BDRV_SECTOR_BITS; 240483f64091Sbellard if (nb_sectors > 0) { 24059a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, buf, nb_sectors)) < 0) 24069a8c4cceSKevin Wolf return ret; 240783f64091Sbellard sector_num += nb_sectors; 24086ea44308SJan Kiszka len = nb_sectors << BDRV_SECTOR_BITS; 240983f64091Sbellard buf += len; 241083f64091Sbellard count -= len; 241183f64091Sbellard } 241283f64091Sbellard 241383f64091Sbellard /* add data from the last sector */ 241483f64091Sbellard if (count > 0) { 24159a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) 24169a8c4cceSKevin Wolf return ret; 241783f64091Sbellard memcpy(buf, tmp_buf, count); 241883f64091Sbellard } 241983f64091Sbellard return count1; 242083f64091Sbellard } 242183f64091Sbellard 24228d3b1a2dSKevin Wolf int bdrv_pwritev(BlockDriverState *bs, int64_t offset, QEMUIOVector *qiov) 242383f64091Sbellard { 24246ea44308SJan Kiszka uint8_t tmp_buf[BDRV_SECTOR_SIZE]; 242583f64091Sbellard int len, nb_sectors, count; 242683f64091Sbellard int64_t sector_num; 24279a8c4cceSKevin Wolf int ret; 242883f64091Sbellard 24298d3b1a2dSKevin Wolf count = qiov->size; 24308d3b1a2dSKevin Wolf 243183f64091Sbellard /* first write to align to sector start */ 24326ea44308SJan Kiszka len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1); 243383f64091Sbellard if (len > count) 243483f64091Sbellard len = count; 24356ea44308SJan Kiszka sector_num = offset >> BDRV_SECTOR_BITS; 243683f64091Sbellard if (len > 0) { 24379a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) 24389a8c4cceSKevin Wolf return ret; 24398d3b1a2dSKevin Wolf qemu_iovec_to_buf(qiov, 0, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), 24408d3b1a2dSKevin Wolf len); 24419a8c4cceSKevin Wolf if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0) 24429a8c4cceSKevin Wolf return ret; 244383f64091Sbellard count -= len; 244483f64091Sbellard if (count == 0) 24458d3b1a2dSKevin Wolf return qiov->size; 244683f64091Sbellard sector_num++; 244783f64091Sbellard } 244883f64091Sbellard 244983f64091Sbellard /* write the sectors "in place" */ 24506ea44308SJan Kiszka nb_sectors = count >> BDRV_SECTOR_BITS; 245183f64091Sbellard if (nb_sectors > 0) { 24528d3b1a2dSKevin Wolf QEMUIOVector qiov_inplace; 24538d3b1a2dSKevin Wolf 24548d3b1a2dSKevin Wolf qemu_iovec_init(&qiov_inplace, qiov->niov); 24558d3b1a2dSKevin Wolf qemu_iovec_concat(&qiov_inplace, qiov, len, 24568d3b1a2dSKevin Wolf nb_sectors << BDRV_SECTOR_BITS); 24578d3b1a2dSKevin Wolf ret = bdrv_writev(bs, sector_num, &qiov_inplace); 24588d3b1a2dSKevin Wolf qemu_iovec_destroy(&qiov_inplace); 24598d3b1a2dSKevin Wolf if (ret < 0) { 24609a8c4cceSKevin Wolf return ret; 24618d3b1a2dSKevin Wolf } 24628d3b1a2dSKevin Wolf 246383f64091Sbellard sector_num += nb_sectors; 24646ea44308SJan Kiszka len = nb_sectors << BDRV_SECTOR_BITS; 246583f64091Sbellard count -= len; 246683f64091Sbellard } 246783f64091Sbellard 246883f64091Sbellard /* add data from the last sector */ 246983f64091Sbellard if (count > 0) { 24709a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) 24719a8c4cceSKevin Wolf return ret; 24728d3b1a2dSKevin Wolf qemu_iovec_to_buf(qiov, qiov->size - count, tmp_buf, count); 24739a8c4cceSKevin Wolf if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0) 24749a8c4cceSKevin Wolf return ret; 247583f64091Sbellard } 24768d3b1a2dSKevin Wolf return qiov->size; 24778d3b1a2dSKevin Wolf } 24788d3b1a2dSKevin Wolf 24798d3b1a2dSKevin Wolf int bdrv_pwrite(BlockDriverState *bs, int64_t offset, 24808d3b1a2dSKevin Wolf const void *buf, int count1) 24818d3b1a2dSKevin Wolf { 24828d3b1a2dSKevin Wolf QEMUIOVector qiov; 24838d3b1a2dSKevin Wolf struct iovec iov = { 24848d3b1a2dSKevin Wolf .iov_base = (void *) buf, 24858d3b1a2dSKevin Wolf .iov_len = count1, 24868d3b1a2dSKevin Wolf }; 24878d3b1a2dSKevin Wolf 24888d3b1a2dSKevin Wolf qemu_iovec_init_external(&qiov, &iov, 1); 24898d3b1a2dSKevin Wolf return bdrv_pwritev(bs, offset, &qiov); 249083f64091Sbellard } 249183f64091Sbellard 2492f08145feSKevin Wolf /* 2493f08145feSKevin Wolf * Writes to the file and ensures that no writes are reordered across this 2494f08145feSKevin Wolf * request (acts as a barrier) 2495f08145feSKevin Wolf * 2496f08145feSKevin Wolf * Returns 0 on success, -errno in error cases. 2497f08145feSKevin Wolf */ 2498f08145feSKevin Wolf int bdrv_pwrite_sync(BlockDriverState *bs, int64_t offset, 2499f08145feSKevin Wolf const void *buf, int count) 2500f08145feSKevin Wolf { 2501f08145feSKevin Wolf int ret; 2502f08145feSKevin Wolf 2503f08145feSKevin Wolf ret = bdrv_pwrite(bs, offset, buf, count); 2504f08145feSKevin Wolf if (ret < 0) { 2505f08145feSKevin Wolf return ret; 2506f08145feSKevin Wolf } 2507f08145feSKevin Wolf 2508f05fa4adSPaolo Bonzini /* No flush needed for cache modes that already do it */ 2509f05fa4adSPaolo Bonzini if (bs->enable_write_cache) { 2510f08145feSKevin Wolf bdrv_flush(bs); 2511f08145feSKevin Wolf } 2512f08145feSKevin Wolf 2513f08145feSKevin Wolf return 0; 2514f08145feSKevin Wolf } 2515f08145feSKevin Wolf 2516470c0504SStefan Hajnoczi static int coroutine_fn bdrv_co_do_copy_on_readv(BlockDriverState *bs, 2517ab185921SStefan Hajnoczi int64_t sector_num, int nb_sectors, QEMUIOVector *qiov) 2518ab185921SStefan Hajnoczi { 2519ab185921SStefan Hajnoczi /* Perform I/O through a temporary buffer so that users who scribble over 2520ab185921SStefan Hajnoczi * their read buffer while the operation is in progress do not end up 2521ab185921SStefan Hajnoczi * modifying the image file. This is critical for zero-copy guest I/O 2522ab185921SStefan Hajnoczi * where anything might happen inside guest memory. 2523ab185921SStefan Hajnoczi */ 2524ab185921SStefan Hajnoczi void *bounce_buffer; 2525ab185921SStefan Hajnoczi 252679c053bdSStefan Hajnoczi BlockDriver *drv = bs->drv; 2527ab185921SStefan Hajnoczi struct iovec iov; 2528ab185921SStefan Hajnoczi QEMUIOVector bounce_qiov; 2529ab185921SStefan Hajnoczi int64_t cluster_sector_num; 2530ab185921SStefan Hajnoczi int cluster_nb_sectors; 2531ab185921SStefan Hajnoczi size_t skip_bytes; 2532ab185921SStefan Hajnoczi int ret; 2533ab185921SStefan Hajnoczi 2534ab185921SStefan Hajnoczi /* Cover entire cluster so no additional backing file I/O is required when 2535ab185921SStefan Hajnoczi * allocating cluster in the image file. 2536ab185921SStefan Hajnoczi */ 2537343bded4SPaolo Bonzini bdrv_round_to_clusters(bs, sector_num, nb_sectors, 2538ab185921SStefan Hajnoczi &cluster_sector_num, &cluster_nb_sectors); 2539ab185921SStefan Hajnoczi 2540470c0504SStefan Hajnoczi trace_bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors, 2541ab185921SStefan Hajnoczi cluster_sector_num, cluster_nb_sectors); 2542ab185921SStefan Hajnoczi 2543ab185921SStefan Hajnoczi iov.iov_len = cluster_nb_sectors * BDRV_SECTOR_SIZE; 2544ab185921SStefan Hajnoczi iov.iov_base = bounce_buffer = qemu_blockalign(bs, iov.iov_len); 2545ab185921SStefan Hajnoczi qemu_iovec_init_external(&bounce_qiov, &iov, 1); 2546ab185921SStefan Hajnoczi 254779c053bdSStefan Hajnoczi ret = drv->bdrv_co_readv(bs, cluster_sector_num, cluster_nb_sectors, 2548ab185921SStefan Hajnoczi &bounce_qiov); 2549ab185921SStefan Hajnoczi if (ret < 0) { 2550ab185921SStefan Hajnoczi goto err; 2551ab185921SStefan Hajnoczi } 2552ab185921SStefan Hajnoczi 255379c053bdSStefan Hajnoczi if (drv->bdrv_co_write_zeroes && 255479c053bdSStefan Hajnoczi buffer_is_zero(bounce_buffer, iov.iov_len)) { 2555621f0589SKevin Wolf ret = bdrv_co_do_write_zeroes(bs, cluster_sector_num, 255679c053bdSStefan Hajnoczi cluster_nb_sectors); 255779c053bdSStefan Hajnoczi } else { 2558f05fa4adSPaolo Bonzini /* This does not change the data on the disk, it is not necessary 2559f05fa4adSPaolo Bonzini * to flush even in cache=writethrough mode. 2560f05fa4adSPaolo Bonzini */ 256179c053bdSStefan Hajnoczi ret = drv->bdrv_co_writev(bs, cluster_sector_num, cluster_nb_sectors, 2562ab185921SStefan Hajnoczi &bounce_qiov); 256379c053bdSStefan Hajnoczi } 256479c053bdSStefan Hajnoczi 2565ab185921SStefan Hajnoczi if (ret < 0) { 2566ab185921SStefan Hajnoczi /* It might be okay to ignore write errors for guest requests. If this 2567ab185921SStefan Hajnoczi * is a deliberate copy-on-read then we don't want to ignore the error. 2568ab185921SStefan Hajnoczi * Simply report it in all cases. 2569ab185921SStefan Hajnoczi */ 2570ab185921SStefan Hajnoczi goto err; 2571ab185921SStefan Hajnoczi } 2572ab185921SStefan Hajnoczi 2573ab185921SStefan Hajnoczi skip_bytes = (sector_num - cluster_sector_num) * BDRV_SECTOR_SIZE; 257403396148SMichael Tokarev qemu_iovec_from_buf(qiov, 0, bounce_buffer + skip_bytes, 2575ab185921SStefan Hajnoczi nb_sectors * BDRV_SECTOR_SIZE); 2576ab185921SStefan Hajnoczi 2577ab185921SStefan Hajnoczi err: 2578ab185921SStefan Hajnoczi qemu_vfree(bounce_buffer); 2579ab185921SStefan Hajnoczi return ret; 2580ab185921SStefan Hajnoczi } 2581ab185921SStefan Hajnoczi 2582c5fbe571SStefan Hajnoczi /* 2583c5fbe571SStefan Hajnoczi * Handle a read request in coroutine context 2584c5fbe571SStefan Hajnoczi */ 2585c5fbe571SStefan Hajnoczi static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs, 2586470c0504SStefan Hajnoczi int64_t sector_num, int nb_sectors, QEMUIOVector *qiov, 2587470c0504SStefan Hajnoczi BdrvRequestFlags flags) 2588da1fa91dSKevin Wolf { 2589da1fa91dSKevin Wolf BlockDriver *drv = bs->drv; 2590dbffbdcfSStefan Hajnoczi BdrvTrackedRequest req; 2591dbffbdcfSStefan Hajnoczi int ret; 2592da1fa91dSKevin Wolf 2593da1fa91dSKevin Wolf if (!drv) { 2594da1fa91dSKevin Wolf return -ENOMEDIUM; 2595da1fa91dSKevin Wolf } 2596da1fa91dSKevin Wolf if (bdrv_check_request(bs, sector_num, nb_sectors)) { 2597da1fa91dSKevin Wolf return -EIO; 2598da1fa91dSKevin Wolf } 2599da1fa91dSKevin Wolf 2600f4658285SStefan Hajnoczi if (bs->copy_on_read) { 2601470c0504SStefan Hajnoczi flags |= BDRV_REQ_COPY_ON_READ; 2602470c0504SStefan Hajnoczi } 2603470c0504SStefan Hajnoczi if (flags & BDRV_REQ_COPY_ON_READ) { 2604470c0504SStefan Hajnoczi bs->copy_on_read_in_flight++; 2605470c0504SStefan Hajnoczi } 2606470c0504SStefan Hajnoczi 2607470c0504SStefan Hajnoczi if (bs->copy_on_read_in_flight) { 2608f4658285SStefan Hajnoczi wait_for_overlapping_requests(bs, sector_num, nb_sectors); 2609f4658285SStefan Hajnoczi } 2610f4658285SStefan Hajnoczi 2611cc0681c4SBenoît Canet /* throttling disk I/O */ 2612cc0681c4SBenoît Canet if (bs->io_limits_enabled) { 2613cc0681c4SBenoît Canet bdrv_io_limits_intercept(bs, nb_sectors, false); 2614cc0681c4SBenoît Canet } 2615cc0681c4SBenoît Canet 2616dbffbdcfSStefan Hajnoczi tracked_request_begin(&req, bs, sector_num, nb_sectors, false); 2617ab185921SStefan Hajnoczi 2618470c0504SStefan Hajnoczi if (flags & BDRV_REQ_COPY_ON_READ) { 2619ab185921SStefan Hajnoczi int pnum; 2620ab185921SStefan Hajnoczi 2621bdad13b9SPaolo Bonzini ret = bdrv_is_allocated(bs, sector_num, nb_sectors, &pnum); 2622ab185921SStefan Hajnoczi if (ret < 0) { 2623ab185921SStefan Hajnoczi goto out; 2624ab185921SStefan Hajnoczi } 2625ab185921SStefan Hajnoczi 2626ab185921SStefan Hajnoczi if (!ret || pnum != nb_sectors) { 2627470c0504SStefan Hajnoczi ret = bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors, qiov); 2628ab185921SStefan Hajnoczi goto out; 2629ab185921SStefan Hajnoczi } 2630ab185921SStefan Hajnoczi } 2631ab185921SStefan Hajnoczi 2632893a8f62SMORITA Kazutaka if (!(bs->zero_beyond_eof && bs->growable)) { 2633dbffbdcfSStefan Hajnoczi ret = drv->bdrv_co_readv(bs, sector_num, nb_sectors, qiov); 2634893a8f62SMORITA Kazutaka } else { 2635893a8f62SMORITA Kazutaka /* Read zeros after EOF of growable BDSes */ 2636893a8f62SMORITA Kazutaka int64_t len, total_sectors, max_nb_sectors; 2637893a8f62SMORITA Kazutaka 2638893a8f62SMORITA Kazutaka len = bdrv_getlength(bs); 2639893a8f62SMORITA Kazutaka if (len < 0) { 2640893a8f62SMORITA Kazutaka ret = len; 2641893a8f62SMORITA Kazutaka goto out; 2642893a8f62SMORITA Kazutaka } 2643893a8f62SMORITA Kazutaka 2644893a8f62SMORITA Kazutaka total_sectors = len >> BDRV_SECTOR_BITS; 2645893a8f62SMORITA Kazutaka max_nb_sectors = MAX(0, total_sectors - sector_num); 2646893a8f62SMORITA Kazutaka if (max_nb_sectors > 0) { 2647893a8f62SMORITA Kazutaka ret = drv->bdrv_co_readv(bs, sector_num, 2648893a8f62SMORITA Kazutaka MIN(nb_sectors, max_nb_sectors), qiov); 2649893a8f62SMORITA Kazutaka } else { 2650893a8f62SMORITA Kazutaka ret = 0; 2651893a8f62SMORITA Kazutaka } 2652893a8f62SMORITA Kazutaka 2653893a8f62SMORITA Kazutaka /* Reading beyond end of file is supposed to produce zeroes */ 2654893a8f62SMORITA Kazutaka if (ret == 0 && total_sectors < sector_num + nb_sectors) { 2655893a8f62SMORITA Kazutaka uint64_t offset = MAX(0, total_sectors - sector_num); 2656893a8f62SMORITA Kazutaka uint64_t bytes = (sector_num + nb_sectors - offset) * 2657893a8f62SMORITA Kazutaka BDRV_SECTOR_SIZE; 2658893a8f62SMORITA Kazutaka qemu_iovec_memset(qiov, offset * BDRV_SECTOR_SIZE, 0, bytes); 2659893a8f62SMORITA Kazutaka } 2660893a8f62SMORITA Kazutaka } 2661ab185921SStefan Hajnoczi 2662ab185921SStefan Hajnoczi out: 2663dbffbdcfSStefan Hajnoczi tracked_request_end(&req); 2664470c0504SStefan Hajnoczi 2665470c0504SStefan Hajnoczi if (flags & BDRV_REQ_COPY_ON_READ) { 2666470c0504SStefan Hajnoczi bs->copy_on_read_in_flight--; 2667470c0504SStefan Hajnoczi } 2668470c0504SStefan Hajnoczi 2669dbffbdcfSStefan Hajnoczi return ret; 2670da1fa91dSKevin Wolf } 2671da1fa91dSKevin Wolf 2672c5fbe571SStefan Hajnoczi int coroutine_fn bdrv_co_readv(BlockDriverState *bs, int64_t sector_num, 2673da1fa91dSKevin Wolf int nb_sectors, QEMUIOVector *qiov) 2674da1fa91dSKevin Wolf { 2675c5fbe571SStefan Hajnoczi trace_bdrv_co_readv(bs, sector_num, nb_sectors); 2676da1fa91dSKevin Wolf 2677470c0504SStefan Hajnoczi return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov, 0); 2678470c0504SStefan Hajnoczi } 2679470c0504SStefan Hajnoczi 2680470c0504SStefan Hajnoczi int coroutine_fn bdrv_co_copy_on_readv(BlockDriverState *bs, 2681470c0504SStefan Hajnoczi int64_t sector_num, int nb_sectors, QEMUIOVector *qiov) 2682470c0504SStefan Hajnoczi { 2683470c0504SStefan Hajnoczi trace_bdrv_co_copy_on_readv(bs, sector_num, nb_sectors); 2684470c0504SStefan Hajnoczi 2685470c0504SStefan Hajnoczi return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov, 2686470c0504SStefan Hajnoczi BDRV_REQ_COPY_ON_READ); 2687c5fbe571SStefan Hajnoczi } 2688c5fbe571SStefan Hajnoczi 2689f08f2ddaSStefan Hajnoczi static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs, 2690f08f2ddaSStefan Hajnoczi int64_t sector_num, int nb_sectors) 2691f08f2ddaSStefan Hajnoczi { 2692f08f2ddaSStefan Hajnoczi BlockDriver *drv = bs->drv; 2693f08f2ddaSStefan Hajnoczi QEMUIOVector qiov; 2694f08f2ddaSStefan Hajnoczi struct iovec iov; 2695f08f2ddaSStefan Hajnoczi int ret; 2696f08f2ddaSStefan Hajnoczi 2697621f0589SKevin Wolf /* TODO Emulate only part of misaligned requests instead of letting block 2698621f0589SKevin Wolf * drivers return -ENOTSUP and emulate everything */ 2699621f0589SKevin Wolf 2700f08f2ddaSStefan Hajnoczi /* First try the efficient write zeroes operation */ 2701f08f2ddaSStefan Hajnoczi if (drv->bdrv_co_write_zeroes) { 2702621f0589SKevin Wolf ret = drv->bdrv_co_write_zeroes(bs, sector_num, nb_sectors); 2703621f0589SKevin Wolf if (ret != -ENOTSUP) { 2704621f0589SKevin Wolf return ret; 2705621f0589SKevin Wolf } 2706f08f2ddaSStefan Hajnoczi } 2707f08f2ddaSStefan Hajnoczi 2708f08f2ddaSStefan Hajnoczi /* Fall back to bounce buffer if write zeroes is unsupported */ 2709f08f2ddaSStefan Hajnoczi iov.iov_len = nb_sectors * BDRV_SECTOR_SIZE; 2710f08f2ddaSStefan Hajnoczi iov.iov_base = qemu_blockalign(bs, iov.iov_len); 2711f08f2ddaSStefan Hajnoczi memset(iov.iov_base, 0, iov.iov_len); 2712f08f2ddaSStefan Hajnoczi qemu_iovec_init_external(&qiov, &iov, 1); 2713f08f2ddaSStefan Hajnoczi 2714f08f2ddaSStefan Hajnoczi ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, &qiov); 2715f08f2ddaSStefan Hajnoczi 2716f08f2ddaSStefan Hajnoczi qemu_vfree(iov.iov_base); 2717f08f2ddaSStefan Hajnoczi return ret; 2718f08f2ddaSStefan Hajnoczi } 2719f08f2ddaSStefan Hajnoczi 2720c5fbe571SStefan Hajnoczi /* 2721c5fbe571SStefan Hajnoczi * Handle a write request in coroutine context 2722c5fbe571SStefan Hajnoczi */ 2723c5fbe571SStefan Hajnoczi static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs, 2724f08f2ddaSStefan Hajnoczi int64_t sector_num, int nb_sectors, QEMUIOVector *qiov, 2725f08f2ddaSStefan Hajnoczi BdrvRequestFlags flags) 2726c5fbe571SStefan Hajnoczi { 2727c5fbe571SStefan Hajnoczi BlockDriver *drv = bs->drv; 2728dbffbdcfSStefan Hajnoczi BdrvTrackedRequest req; 27296b7cb247SStefan Hajnoczi int ret; 2730da1fa91dSKevin Wolf 2731da1fa91dSKevin Wolf if (!bs->drv) { 2732da1fa91dSKevin Wolf return -ENOMEDIUM; 2733da1fa91dSKevin Wolf } 2734da1fa91dSKevin Wolf if (bs->read_only) { 2735da1fa91dSKevin Wolf return -EACCES; 2736da1fa91dSKevin Wolf } 2737da1fa91dSKevin Wolf if (bdrv_check_request(bs, sector_num, nb_sectors)) { 2738da1fa91dSKevin Wolf return -EIO; 2739da1fa91dSKevin Wolf } 2740da1fa91dSKevin Wolf 2741470c0504SStefan Hajnoczi if (bs->copy_on_read_in_flight) { 2742f4658285SStefan Hajnoczi wait_for_overlapping_requests(bs, sector_num, nb_sectors); 2743f4658285SStefan Hajnoczi } 2744f4658285SStefan Hajnoczi 2745cc0681c4SBenoît Canet /* throttling disk I/O */ 2746cc0681c4SBenoît Canet if (bs->io_limits_enabled) { 2747cc0681c4SBenoît Canet bdrv_io_limits_intercept(bs, nb_sectors, true); 2748cc0681c4SBenoît Canet } 2749cc0681c4SBenoît Canet 2750dbffbdcfSStefan Hajnoczi tracked_request_begin(&req, bs, sector_num, nb_sectors, true); 2751dbffbdcfSStefan Hajnoczi 2752d616b224SStefan Hajnoczi ret = notifier_with_return_list_notify(&bs->before_write_notifiers, &req); 2753d616b224SStefan Hajnoczi 2754d616b224SStefan Hajnoczi if (ret < 0) { 2755d616b224SStefan Hajnoczi /* Do nothing, write notifier decided to fail this request */ 2756d616b224SStefan Hajnoczi } else if (flags & BDRV_REQ_ZERO_WRITE) { 2757f08f2ddaSStefan Hajnoczi ret = bdrv_co_do_write_zeroes(bs, sector_num, nb_sectors); 2758f08f2ddaSStefan Hajnoczi } else { 27596b7cb247SStefan Hajnoczi ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, qiov); 2760f08f2ddaSStefan Hajnoczi } 27616b7cb247SStefan Hajnoczi 2762f05fa4adSPaolo Bonzini if (ret == 0 && !bs->enable_write_cache) { 2763f05fa4adSPaolo Bonzini ret = bdrv_co_flush(bs); 2764f05fa4adSPaolo Bonzini } 2765f05fa4adSPaolo Bonzini 2766da1fa91dSKevin Wolf if (bs->dirty_bitmap) { 27671755da16SPaolo Bonzini bdrv_set_dirty(bs, sector_num, nb_sectors); 2768da1fa91dSKevin Wolf } 2769da1fa91dSKevin Wolf 2770da1fa91dSKevin Wolf if (bs->wr_highest_sector < sector_num + nb_sectors - 1) { 2771da1fa91dSKevin Wolf bs->wr_highest_sector = sector_num + nb_sectors - 1; 2772da1fa91dSKevin Wolf } 2773df2a6f29SPaolo Bonzini if (bs->growable && ret >= 0) { 2774df2a6f29SPaolo Bonzini bs->total_sectors = MAX(bs->total_sectors, sector_num + nb_sectors); 2775df2a6f29SPaolo Bonzini } 2776da1fa91dSKevin Wolf 2777dbffbdcfSStefan Hajnoczi tracked_request_end(&req); 2778dbffbdcfSStefan Hajnoczi 27796b7cb247SStefan Hajnoczi return ret; 2780da1fa91dSKevin Wolf } 2781da1fa91dSKevin Wolf 2782c5fbe571SStefan Hajnoczi int coroutine_fn bdrv_co_writev(BlockDriverState *bs, int64_t sector_num, 2783c5fbe571SStefan Hajnoczi int nb_sectors, QEMUIOVector *qiov) 2784c5fbe571SStefan Hajnoczi { 2785c5fbe571SStefan Hajnoczi trace_bdrv_co_writev(bs, sector_num, nb_sectors); 2786c5fbe571SStefan Hajnoczi 2787f08f2ddaSStefan Hajnoczi return bdrv_co_do_writev(bs, sector_num, nb_sectors, qiov, 0); 2788f08f2ddaSStefan Hajnoczi } 2789f08f2ddaSStefan Hajnoczi 2790f08f2ddaSStefan Hajnoczi int coroutine_fn bdrv_co_write_zeroes(BlockDriverState *bs, 2791f08f2ddaSStefan Hajnoczi int64_t sector_num, int nb_sectors) 2792f08f2ddaSStefan Hajnoczi { 2793f08f2ddaSStefan Hajnoczi trace_bdrv_co_write_zeroes(bs, sector_num, nb_sectors); 2794f08f2ddaSStefan Hajnoczi 2795f08f2ddaSStefan Hajnoczi return bdrv_co_do_writev(bs, sector_num, nb_sectors, NULL, 2796f08f2ddaSStefan Hajnoczi BDRV_REQ_ZERO_WRITE); 2797c5fbe571SStefan Hajnoczi } 2798c5fbe571SStefan Hajnoczi 279983f64091Sbellard /** 280083f64091Sbellard * Truncate file to 'offset' bytes (needed only for file protocols) 280183f64091Sbellard */ 280283f64091Sbellard int bdrv_truncate(BlockDriverState *bs, int64_t offset) 280383f64091Sbellard { 280483f64091Sbellard BlockDriver *drv = bs->drv; 280551762288SStefan Hajnoczi int ret; 280683f64091Sbellard if (!drv) 280719cb3738Sbellard return -ENOMEDIUM; 280883f64091Sbellard if (!drv->bdrv_truncate) 280983f64091Sbellard return -ENOTSUP; 281059f2689dSNaphtali Sprei if (bs->read_only) 281159f2689dSNaphtali Sprei return -EACCES; 28128591675fSMarcelo Tosatti if (bdrv_in_use(bs)) 28138591675fSMarcelo Tosatti return -EBUSY; 281451762288SStefan Hajnoczi ret = drv->bdrv_truncate(bs, offset); 281551762288SStefan Hajnoczi if (ret == 0) { 281651762288SStefan Hajnoczi ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS); 2817145feb17SMarkus Armbruster bdrv_dev_resize_cb(bs); 281851762288SStefan Hajnoczi } 281951762288SStefan Hajnoczi return ret; 282083f64091Sbellard } 282183f64091Sbellard 282283f64091Sbellard /** 28234a1d5e1fSFam Zheng * Length of a allocated file in bytes. Sparse files are counted by actual 28244a1d5e1fSFam Zheng * allocated space. Return < 0 if error or unknown. 28254a1d5e1fSFam Zheng */ 28264a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs) 28274a1d5e1fSFam Zheng { 28284a1d5e1fSFam Zheng BlockDriver *drv = bs->drv; 28294a1d5e1fSFam Zheng if (!drv) { 28304a1d5e1fSFam Zheng return -ENOMEDIUM; 28314a1d5e1fSFam Zheng } 28324a1d5e1fSFam Zheng if (drv->bdrv_get_allocated_file_size) { 28334a1d5e1fSFam Zheng return drv->bdrv_get_allocated_file_size(bs); 28344a1d5e1fSFam Zheng } 28354a1d5e1fSFam Zheng if (bs->file) { 28364a1d5e1fSFam Zheng return bdrv_get_allocated_file_size(bs->file); 28374a1d5e1fSFam Zheng } 28384a1d5e1fSFam Zheng return -ENOTSUP; 28394a1d5e1fSFam Zheng } 28404a1d5e1fSFam Zheng 28414a1d5e1fSFam Zheng /** 284283f64091Sbellard * Length of a file in bytes. Return < 0 if error or unknown. 284383f64091Sbellard */ 284483f64091Sbellard int64_t bdrv_getlength(BlockDriverState *bs) 284583f64091Sbellard { 284683f64091Sbellard BlockDriver *drv = bs->drv; 284783f64091Sbellard if (!drv) 284819cb3738Sbellard return -ENOMEDIUM; 284951762288SStefan Hajnoczi 2850df2a6f29SPaolo Bonzini if (bdrv_dev_has_removable_media(bs)) { 285146a4e4e6SStefan Hajnoczi if (drv->bdrv_getlength) { 285283f64091Sbellard return drv->bdrv_getlength(bs); 2853fc01f7e7Sbellard } 285446a4e4e6SStefan Hajnoczi } 285546a4e4e6SStefan Hajnoczi return bs->total_sectors * BDRV_SECTOR_SIZE; 285646a4e4e6SStefan Hajnoczi } 2857fc01f7e7Sbellard 285819cb3738Sbellard /* return 0 as number of sectors if no device present or error */ 285996b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) 2860fc01f7e7Sbellard { 286119cb3738Sbellard int64_t length; 286219cb3738Sbellard length = bdrv_getlength(bs); 286319cb3738Sbellard if (length < 0) 286419cb3738Sbellard length = 0; 286519cb3738Sbellard else 28666ea44308SJan Kiszka length = length >> BDRV_SECTOR_BITS; 286719cb3738Sbellard *nb_sectors_ptr = length; 2868fc01f7e7Sbellard } 2869cf98951bSbellard 2870ff06f5f3SPaolo Bonzini void bdrv_set_on_error(BlockDriverState *bs, BlockdevOnError on_read_error, 2871ff06f5f3SPaolo Bonzini BlockdevOnError on_write_error) 2872abd7f68dSMarkus Armbruster { 2873abd7f68dSMarkus Armbruster bs->on_read_error = on_read_error; 2874abd7f68dSMarkus Armbruster bs->on_write_error = on_write_error; 2875abd7f68dSMarkus Armbruster } 2876abd7f68dSMarkus Armbruster 28771ceee0d5SPaolo Bonzini BlockdevOnError bdrv_get_on_error(BlockDriverState *bs, bool is_read) 2878abd7f68dSMarkus Armbruster { 2879abd7f68dSMarkus Armbruster return is_read ? bs->on_read_error : bs->on_write_error; 2880abd7f68dSMarkus Armbruster } 2881abd7f68dSMarkus Armbruster 28823e1caa5fSPaolo Bonzini BlockErrorAction bdrv_get_error_action(BlockDriverState *bs, bool is_read, int error) 28833e1caa5fSPaolo Bonzini { 28843e1caa5fSPaolo Bonzini BlockdevOnError on_err = is_read ? bs->on_read_error : bs->on_write_error; 28853e1caa5fSPaolo Bonzini 28863e1caa5fSPaolo Bonzini switch (on_err) { 28873e1caa5fSPaolo Bonzini case BLOCKDEV_ON_ERROR_ENOSPC: 28883e1caa5fSPaolo Bonzini return (error == ENOSPC) ? BDRV_ACTION_STOP : BDRV_ACTION_REPORT; 28893e1caa5fSPaolo Bonzini case BLOCKDEV_ON_ERROR_STOP: 28903e1caa5fSPaolo Bonzini return BDRV_ACTION_STOP; 28913e1caa5fSPaolo Bonzini case BLOCKDEV_ON_ERROR_REPORT: 28923e1caa5fSPaolo Bonzini return BDRV_ACTION_REPORT; 28933e1caa5fSPaolo Bonzini case BLOCKDEV_ON_ERROR_IGNORE: 28943e1caa5fSPaolo Bonzini return BDRV_ACTION_IGNORE; 28953e1caa5fSPaolo Bonzini default: 28963e1caa5fSPaolo Bonzini abort(); 28973e1caa5fSPaolo Bonzini } 28983e1caa5fSPaolo Bonzini } 28993e1caa5fSPaolo Bonzini 29003e1caa5fSPaolo Bonzini /* This is done by device models because, while the block layer knows 29013e1caa5fSPaolo Bonzini * about the error, it does not know whether an operation comes from 29023e1caa5fSPaolo Bonzini * the device or the block layer (from a job, for example). 29033e1caa5fSPaolo Bonzini */ 29043e1caa5fSPaolo Bonzini void bdrv_error_action(BlockDriverState *bs, BlockErrorAction action, 29053e1caa5fSPaolo Bonzini bool is_read, int error) 29063e1caa5fSPaolo Bonzini { 29073e1caa5fSPaolo Bonzini assert(error >= 0); 290832c81a4aSPaolo Bonzini bdrv_emit_qmp_error_event(bs, QEVENT_BLOCK_IO_ERROR, action, is_read); 29093e1caa5fSPaolo Bonzini if (action == BDRV_ACTION_STOP) { 29103e1caa5fSPaolo Bonzini vm_stop(RUN_STATE_IO_ERROR); 29113e1caa5fSPaolo Bonzini bdrv_iostatus_set_err(bs, error); 29123e1caa5fSPaolo Bonzini } 29133e1caa5fSPaolo Bonzini } 29143e1caa5fSPaolo Bonzini 2915b338082bSbellard int bdrv_is_read_only(BlockDriverState *bs) 2916b338082bSbellard { 2917b338082bSbellard return bs->read_only; 2918b338082bSbellard } 2919b338082bSbellard 2920985a03b0Sths int bdrv_is_sg(BlockDriverState *bs) 2921985a03b0Sths { 2922985a03b0Sths return bs->sg; 2923985a03b0Sths } 2924985a03b0Sths 2925e900a7b7SChristoph Hellwig int bdrv_enable_write_cache(BlockDriverState *bs) 2926e900a7b7SChristoph Hellwig { 2927e900a7b7SChristoph Hellwig return bs->enable_write_cache; 2928e900a7b7SChristoph Hellwig } 2929e900a7b7SChristoph Hellwig 2930425b0148SPaolo Bonzini void bdrv_set_enable_write_cache(BlockDriverState *bs, bool wce) 2931425b0148SPaolo Bonzini { 2932425b0148SPaolo Bonzini bs->enable_write_cache = wce; 293355b110f2SJeff Cody 293455b110f2SJeff Cody /* so a reopen() will preserve wce */ 293555b110f2SJeff Cody if (wce) { 293655b110f2SJeff Cody bs->open_flags |= BDRV_O_CACHE_WB; 293755b110f2SJeff Cody } else { 293855b110f2SJeff Cody bs->open_flags &= ~BDRV_O_CACHE_WB; 293955b110f2SJeff Cody } 2940425b0148SPaolo Bonzini } 2941425b0148SPaolo Bonzini 2942ea2384d3Sbellard int bdrv_is_encrypted(BlockDriverState *bs) 2943ea2384d3Sbellard { 2944ea2384d3Sbellard if (bs->backing_hd && bs->backing_hd->encrypted) 2945ea2384d3Sbellard return 1; 2946ea2384d3Sbellard return bs->encrypted; 2947ea2384d3Sbellard } 2948ea2384d3Sbellard 2949c0f4ce77Saliguori int bdrv_key_required(BlockDriverState *bs) 2950c0f4ce77Saliguori { 2951c0f4ce77Saliguori BlockDriverState *backing_hd = bs->backing_hd; 2952c0f4ce77Saliguori 2953c0f4ce77Saliguori if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key) 2954c0f4ce77Saliguori return 1; 2955c0f4ce77Saliguori return (bs->encrypted && !bs->valid_key); 2956c0f4ce77Saliguori } 2957c0f4ce77Saliguori 2958ea2384d3Sbellard int bdrv_set_key(BlockDriverState *bs, const char *key) 2959ea2384d3Sbellard { 2960ea2384d3Sbellard int ret; 2961ea2384d3Sbellard if (bs->backing_hd && bs->backing_hd->encrypted) { 2962ea2384d3Sbellard ret = bdrv_set_key(bs->backing_hd, key); 2963ea2384d3Sbellard if (ret < 0) 2964ea2384d3Sbellard return ret; 2965ea2384d3Sbellard if (!bs->encrypted) 2966ea2384d3Sbellard return 0; 2967ea2384d3Sbellard } 2968fd04a2aeSShahar Havivi if (!bs->encrypted) { 2969fd04a2aeSShahar Havivi return -EINVAL; 2970fd04a2aeSShahar Havivi } else if (!bs->drv || !bs->drv->bdrv_set_key) { 2971fd04a2aeSShahar Havivi return -ENOMEDIUM; 2972fd04a2aeSShahar Havivi } 2973c0f4ce77Saliguori ret = bs->drv->bdrv_set_key(bs, key); 2974bb5fc20fSaliguori if (ret < 0) { 2975bb5fc20fSaliguori bs->valid_key = 0; 2976bb5fc20fSaliguori } else if (!bs->valid_key) { 2977bb5fc20fSaliguori bs->valid_key = 1; 2978bb5fc20fSaliguori /* call the change callback now, we skipped it on open */ 29797d4b4ba5SMarkus Armbruster bdrv_dev_change_media_cb(bs, true); 2980bb5fc20fSaliguori } 2981c0f4ce77Saliguori return ret; 2982ea2384d3Sbellard } 2983ea2384d3Sbellard 2984f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs) 2985ea2384d3Sbellard { 2986f8d6bba1SMarkus Armbruster return bs->drv ? bs->drv->format_name : NULL; 2987ea2384d3Sbellard } 2988ea2384d3Sbellard 2989ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name), 2990ea2384d3Sbellard void *opaque) 2991ea2384d3Sbellard { 2992ea2384d3Sbellard BlockDriver *drv; 2993ea2384d3Sbellard 29948a22f02aSStefan Hajnoczi QLIST_FOREACH(drv, &bdrv_drivers, list) { 2995ea2384d3Sbellard it(opaque, drv->format_name); 2996ea2384d3Sbellard } 2997ea2384d3Sbellard } 2998ea2384d3Sbellard 2999b338082bSbellard BlockDriverState *bdrv_find(const char *name) 3000b338082bSbellard { 3001b338082bSbellard BlockDriverState *bs; 3002b338082bSbellard 30031b7bdbc1SStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 30041b7bdbc1SStefan Hajnoczi if (!strcmp(name, bs->device_name)) { 3005b338082bSbellard return bs; 3006b338082bSbellard } 30071b7bdbc1SStefan Hajnoczi } 3008b338082bSbellard return NULL; 3009b338082bSbellard } 3010b338082bSbellard 30112f399b0aSMarkus Armbruster BlockDriverState *bdrv_next(BlockDriverState *bs) 30122f399b0aSMarkus Armbruster { 30132f399b0aSMarkus Armbruster if (!bs) { 30142f399b0aSMarkus Armbruster return QTAILQ_FIRST(&bdrv_states); 30152f399b0aSMarkus Armbruster } 30162f399b0aSMarkus Armbruster return QTAILQ_NEXT(bs, list); 30172f399b0aSMarkus Armbruster } 30182f399b0aSMarkus Armbruster 301951de9760Saliguori void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque) 302081d0912dSbellard { 302181d0912dSbellard BlockDriverState *bs; 302281d0912dSbellard 30231b7bdbc1SStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 302451de9760Saliguori it(opaque, bs); 302581d0912dSbellard } 302681d0912dSbellard } 302781d0912dSbellard 3028ea2384d3Sbellard const char *bdrv_get_device_name(BlockDriverState *bs) 3029ea2384d3Sbellard { 3030ea2384d3Sbellard return bs->device_name; 3031ea2384d3Sbellard } 3032ea2384d3Sbellard 3033c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs) 3034c8433287SMarkus Armbruster { 3035c8433287SMarkus Armbruster return bs->open_flags; 3036c8433287SMarkus Armbruster } 3037c8433287SMarkus Armbruster 3038f0f0fdfeSKevin Wolf int bdrv_flush_all(void) 3039c6ca28d6Saliguori { 3040c6ca28d6Saliguori BlockDriverState *bs; 3041f0f0fdfeSKevin Wolf int result = 0; 3042c6ca28d6Saliguori 30431b7bdbc1SStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 3044f0f0fdfeSKevin Wolf int ret = bdrv_flush(bs); 3045f0f0fdfeSKevin Wolf if (ret < 0 && !result) { 3046f0f0fdfeSKevin Wolf result = ret; 3047c6ca28d6Saliguori } 30481b7bdbc1SStefan Hajnoczi } 3049c6ca28d6Saliguori 3050f0f0fdfeSKevin Wolf return result; 3051f0f0fdfeSKevin Wolf } 3052f0f0fdfeSKevin Wolf 30533ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs) 30543ac21627SPeter Lieven { 30553ac21627SPeter Lieven return 1; 30563ac21627SPeter Lieven } 30573ac21627SPeter Lieven 3058f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs) 3059f2feebbdSKevin Wolf { 3060f2feebbdSKevin Wolf assert(bs->drv); 3061f2feebbdSKevin Wolf 306211212d8fSPaolo Bonzini /* If BS is a copy on write image, it is initialized to 306311212d8fSPaolo Bonzini the contents of the base image, which may not be zeroes. */ 306411212d8fSPaolo Bonzini if (bs->backing_hd) { 306511212d8fSPaolo Bonzini return 0; 306611212d8fSPaolo Bonzini } 3067336c1c12SKevin Wolf if (bs->drv->bdrv_has_zero_init) { 3068336c1c12SKevin Wolf return bs->drv->bdrv_has_zero_init(bs); 3069f2feebbdSKevin Wolf } 3070f2feebbdSKevin Wolf 30713ac21627SPeter Lieven /* safe default */ 30723ac21627SPeter Lieven return 0; 3073f2feebbdSKevin Wolf } 3074f2feebbdSKevin Wolf 3075b6b8a333SPaolo Bonzini typedef struct BdrvCoGetBlockStatusData { 3076376ae3f1SStefan Hajnoczi BlockDriverState *bs; 3077b35b2bbaSMiroslav Rezanina BlockDriverState *base; 3078376ae3f1SStefan Hajnoczi int64_t sector_num; 3079376ae3f1SStefan Hajnoczi int nb_sectors; 3080376ae3f1SStefan Hajnoczi int *pnum; 3081b6b8a333SPaolo Bonzini int64_t ret; 3082376ae3f1SStefan Hajnoczi bool done; 3083b6b8a333SPaolo Bonzini } BdrvCoGetBlockStatusData; 3084376ae3f1SStefan Hajnoczi 3085f58c7b35Sths /* 3086f58c7b35Sths * Returns true iff the specified sector is present in the disk image. Drivers 3087f58c7b35Sths * not implementing the functionality are assumed to not support backing files, 3088f58c7b35Sths * hence all their sectors are reported as allocated. 3089f58c7b35Sths * 3090bd9533e3SStefan Hajnoczi * If 'sector_num' is beyond the end of the disk image the return value is 0 3091bd9533e3SStefan Hajnoczi * and 'pnum' is set to 0. 3092bd9533e3SStefan Hajnoczi * 3093f58c7b35Sths * 'pnum' is set to the number of sectors (including and immediately following 3094f58c7b35Sths * the specified sector) that are known to be in the same 3095f58c7b35Sths * allocated/unallocated state. 3096f58c7b35Sths * 3097bd9533e3SStefan Hajnoczi * 'nb_sectors' is the max value 'pnum' should be set to. If nb_sectors goes 3098bd9533e3SStefan Hajnoczi * beyond the end of the disk image it will be clamped. 3099f58c7b35Sths */ 3100b6b8a333SPaolo Bonzini static int64_t coroutine_fn bdrv_co_get_block_status(BlockDriverState *bs, 3101bdad13b9SPaolo Bonzini int64_t sector_num, 3102060f51c9SStefan Hajnoczi int nb_sectors, int *pnum) 3103f58c7b35Sths { 3104617ccb46SPaolo Bonzini int64_t length; 3105f58c7b35Sths int64_t n; 31065daa74a6SPaolo Bonzini int64_t ret, ret2; 3107bd9533e3SStefan Hajnoczi 3108617ccb46SPaolo Bonzini length = bdrv_getlength(bs); 3109617ccb46SPaolo Bonzini if (length < 0) { 3110617ccb46SPaolo Bonzini return length; 3111617ccb46SPaolo Bonzini } 3112617ccb46SPaolo Bonzini 3113617ccb46SPaolo Bonzini if (sector_num >= (length >> BDRV_SECTOR_BITS)) { 31146aebab14SStefan Hajnoczi *pnum = 0; 31156aebab14SStefan Hajnoczi return 0; 31166aebab14SStefan Hajnoczi } 3117bd9533e3SStefan Hajnoczi 31186aebab14SStefan Hajnoczi n = bs->total_sectors - sector_num; 3119bd9533e3SStefan Hajnoczi if (n < nb_sectors) { 3120bd9533e3SStefan Hajnoczi nb_sectors = n; 3121bd9533e3SStefan Hajnoczi } 3122bd9533e3SStefan Hajnoczi 3123b6b8a333SPaolo Bonzini if (!bs->drv->bdrv_co_get_block_status) { 3124bd9533e3SStefan Hajnoczi *pnum = nb_sectors; 3125918e92d7SPaolo Bonzini ret = BDRV_BLOCK_DATA; 3126918e92d7SPaolo Bonzini if (bs->drv->protocol_name) { 3127918e92d7SPaolo Bonzini ret |= BDRV_BLOCK_OFFSET_VALID | (sector_num * BDRV_SECTOR_SIZE); 3128918e92d7SPaolo Bonzini } 3129918e92d7SPaolo Bonzini return ret; 31306aebab14SStefan Hajnoczi } 31316aebab14SStefan Hajnoczi 3132415b5b01SPaolo Bonzini ret = bs->drv->bdrv_co_get_block_status(bs, sector_num, nb_sectors, pnum); 3133415b5b01SPaolo Bonzini if (ret < 0) { 3134415b5b01SPaolo Bonzini return ret; 3135415b5b01SPaolo Bonzini } 3136415b5b01SPaolo Bonzini 3137f0ad5712SPaolo Bonzini if (!(ret & BDRV_BLOCK_DATA)) { 3138f0ad5712SPaolo Bonzini if (bdrv_has_zero_init(bs)) { 3139415b5b01SPaolo Bonzini ret |= BDRV_BLOCK_ZERO; 3140f0ad5712SPaolo Bonzini } else { 3141f0ad5712SPaolo Bonzini BlockDriverState *bs2 = bs->backing_hd; 3142f0ad5712SPaolo Bonzini int64_t length2 = bdrv_getlength(bs2); 3143f0ad5712SPaolo Bonzini if (length2 >= 0 && sector_num >= (length2 >> BDRV_SECTOR_BITS)) { 3144f0ad5712SPaolo Bonzini ret |= BDRV_BLOCK_ZERO; 3145f0ad5712SPaolo Bonzini } 3146f0ad5712SPaolo Bonzini } 3147415b5b01SPaolo Bonzini } 31485daa74a6SPaolo Bonzini 31495daa74a6SPaolo Bonzini if (bs->file && 31505daa74a6SPaolo Bonzini (ret & BDRV_BLOCK_DATA) && !(ret & BDRV_BLOCK_ZERO) && 31515daa74a6SPaolo Bonzini (ret & BDRV_BLOCK_OFFSET_VALID)) { 31525daa74a6SPaolo Bonzini ret2 = bdrv_co_get_block_status(bs->file, ret >> BDRV_SECTOR_BITS, 31535daa74a6SPaolo Bonzini *pnum, pnum); 31545daa74a6SPaolo Bonzini if (ret2 >= 0) { 31555daa74a6SPaolo Bonzini /* Ignore errors. This is just providing extra information, it 31565daa74a6SPaolo Bonzini * is useful but not necessary. 31575daa74a6SPaolo Bonzini */ 31585daa74a6SPaolo Bonzini ret |= (ret2 & BDRV_BLOCK_ZERO); 31595daa74a6SPaolo Bonzini } 31605daa74a6SPaolo Bonzini } 31615daa74a6SPaolo Bonzini 3162415b5b01SPaolo Bonzini return ret; 3163060f51c9SStefan Hajnoczi } 3164060f51c9SStefan Hajnoczi 3165b6b8a333SPaolo Bonzini /* Coroutine wrapper for bdrv_get_block_status() */ 3166b6b8a333SPaolo Bonzini static void coroutine_fn bdrv_get_block_status_co_entry(void *opaque) 3167060f51c9SStefan Hajnoczi { 3168b6b8a333SPaolo Bonzini BdrvCoGetBlockStatusData *data = opaque; 3169060f51c9SStefan Hajnoczi BlockDriverState *bs = data->bs; 3170060f51c9SStefan Hajnoczi 3171b6b8a333SPaolo Bonzini data->ret = bdrv_co_get_block_status(bs, data->sector_num, data->nb_sectors, 3172060f51c9SStefan Hajnoczi data->pnum); 3173060f51c9SStefan Hajnoczi data->done = true; 3174060f51c9SStefan Hajnoczi } 3175060f51c9SStefan Hajnoczi 3176060f51c9SStefan Hajnoczi /* 3177b6b8a333SPaolo Bonzini * Synchronous wrapper around bdrv_co_get_block_status(). 3178060f51c9SStefan Hajnoczi * 3179b6b8a333SPaolo Bonzini * See bdrv_co_get_block_status() for details. 3180060f51c9SStefan Hajnoczi */ 3181b6b8a333SPaolo Bonzini int64_t bdrv_get_block_status(BlockDriverState *bs, int64_t sector_num, 3182b6b8a333SPaolo Bonzini int nb_sectors, int *pnum) 3183060f51c9SStefan Hajnoczi { 3184376ae3f1SStefan Hajnoczi Coroutine *co; 3185b6b8a333SPaolo Bonzini BdrvCoGetBlockStatusData data = { 3186376ae3f1SStefan Hajnoczi .bs = bs, 3187376ae3f1SStefan Hajnoczi .sector_num = sector_num, 3188376ae3f1SStefan Hajnoczi .nb_sectors = nb_sectors, 3189376ae3f1SStefan Hajnoczi .pnum = pnum, 3190376ae3f1SStefan Hajnoczi .done = false, 3191376ae3f1SStefan Hajnoczi }; 3192376ae3f1SStefan Hajnoczi 3193bdad13b9SPaolo Bonzini if (qemu_in_coroutine()) { 3194bdad13b9SPaolo Bonzini /* Fast-path if already in coroutine context */ 3195b6b8a333SPaolo Bonzini bdrv_get_block_status_co_entry(&data); 3196bdad13b9SPaolo Bonzini } else { 3197b6b8a333SPaolo Bonzini co = qemu_coroutine_create(bdrv_get_block_status_co_entry); 3198376ae3f1SStefan Hajnoczi qemu_coroutine_enter(co, &data); 3199376ae3f1SStefan Hajnoczi while (!data.done) { 3200376ae3f1SStefan Hajnoczi qemu_aio_wait(); 3201376ae3f1SStefan Hajnoczi } 3202bdad13b9SPaolo Bonzini } 3203376ae3f1SStefan Hajnoczi return data.ret; 3204376ae3f1SStefan Hajnoczi } 3205f58c7b35Sths 3206b6b8a333SPaolo Bonzini int coroutine_fn bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, 3207b6b8a333SPaolo Bonzini int nb_sectors, int *pnum) 3208b6b8a333SPaolo Bonzini { 32094333bb71SPaolo Bonzini int64_t ret = bdrv_get_block_status(bs, sector_num, nb_sectors, pnum); 32104333bb71SPaolo Bonzini if (ret < 0) { 32114333bb71SPaolo Bonzini return ret; 32124333bb71SPaolo Bonzini } 32134333bb71SPaolo Bonzini return 32144333bb71SPaolo Bonzini (ret & BDRV_BLOCK_DATA) || 32154333bb71SPaolo Bonzini ((ret & BDRV_BLOCK_ZERO) && !bdrv_has_zero_init(bs)); 3216b6b8a333SPaolo Bonzini } 3217b6b8a333SPaolo Bonzini 3218188a7bbfSPaolo Bonzini /* 3219188a7bbfSPaolo Bonzini * Given an image chain: ... -> [BASE] -> [INTER1] -> [INTER2] -> [TOP] 3220188a7bbfSPaolo Bonzini * 3221188a7bbfSPaolo Bonzini * Return true if the given sector is allocated in any image between 3222188a7bbfSPaolo Bonzini * BASE and TOP (inclusive). BASE can be NULL to check if the given 3223188a7bbfSPaolo Bonzini * sector is allocated in any image of the chain. Return false otherwise. 3224188a7bbfSPaolo Bonzini * 3225188a7bbfSPaolo Bonzini * 'pnum' is set to the number of sectors (including and immediately following 3226188a7bbfSPaolo Bonzini * the specified sector) that are known to be in the same 3227188a7bbfSPaolo Bonzini * allocated/unallocated state. 3228188a7bbfSPaolo Bonzini * 3229188a7bbfSPaolo Bonzini */ 32304f578637SPaolo Bonzini int bdrv_is_allocated_above(BlockDriverState *top, 3231188a7bbfSPaolo Bonzini BlockDriverState *base, 3232188a7bbfSPaolo Bonzini int64_t sector_num, 3233188a7bbfSPaolo Bonzini int nb_sectors, int *pnum) 3234188a7bbfSPaolo Bonzini { 3235188a7bbfSPaolo Bonzini BlockDriverState *intermediate; 3236188a7bbfSPaolo Bonzini int ret, n = nb_sectors; 3237188a7bbfSPaolo Bonzini 3238188a7bbfSPaolo Bonzini intermediate = top; 3239188a7bbfSPaolo Bonzini while (intermediate && intermediate != base) { 3240188a7bbfSPaolo Bonzini int pnum_inter; 3241bdad13b9SPaolo Bonzini ret = bdrv_is_allocated(intermediate, sector_num, nb_sectors, 3242188a7bbfSPaolo Bonzini &pnum_inter); 3243188a7bbfSPaolo Bonzini if (ret < 0) { 3244188a7bbfSPaolo Bonzini return ret; 3245188a7bbfSPaolo Bonzini } else if (ret) { 3246188a7bbfSPaolo Bonzini *pnum = pnum_inter; 3247188a7bbfSPaolo Bonzini return 1; 3248188a7bbfSPaolo Bonzini } 3249188a7bbfSPaolo Bonzini 3250188a7bbfSPaolo Bonzini /* 3251188a7bbfSPaolo Bonzini * [sector_num, nb_sectors] is unallocated on top but intermediate 3252188a7bbfSPaolo Bonzini * might have 3253188a7bbfSPaolo Bonzini * 3254188a7bbfSPaolo Bonzini * [sector_num+x, nr_sectors] allocated. 3255188a7bbfSPaolo Bonzini */ 325663ba17d3SVishvananda Ishaya if (n > pnum_inter && 325763ba17d3SVishvananda Ishaya (intermediate == top || 325863ba17d3SVishvananda Ishaya sector_num + pnum_inter < intermediate->total_sectors)) { 3259188a7bbfSPaolo Bonzini n = pnum_inter; 3260188a7bbfSPaolo Bonzini } 3261188a7bbfSPaolo Bonzini 3262188a7bbfSPaolo Bonzini intermediate = intermediate->backing_hd; 3263188a7bbfSPaolo Bonzini } 3264188a7bbfSPaolo Bonzini 3265188a7bbfSPaolo Bonzini *pnum = n; 3266188a7bbfSPaolo Bonzini return 0; 3267188a7bbfSPaolo Bonzini } 3268188a7bbfSPaolo Bonzini 3269045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs) 3270045df330Saliguori { 3271045df330Saliguori if (bs->backing_hd && bs->backing_hd->encrypted) 3272045df330Saliguori return bs->backing_file; 3273045df330Saliguori else if (bs->encrypted) 3274045df330Saliguori return bs->filename; 3275045df330Saliguori else 3276045df330Saliguori return NULL; 3277045df330Saliguori } 3278045df330Saliguori 327983f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs, 328083f64091Sbellard char *filename, int filename_size) 328183f64091Sbellard { 328283f64091Sbellard pstrcpy(filename, filename_size, bs->backing_file); 328383f64091Sbellard } 328483f64091Sbellard 3285faea38e7Sbellard int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num, 3286faea38e7Sbellard const uint8_t *buf, int nb_sectors) 3287faea38e7Sbellard { 3288faea38e7Sbellard BlockDriver *drv = bs->drv; 3289faea38e7Sbellard if (!drv) 329019cb3738Sbellard return -ENOMEDIUM; 3291faea38e7Sbellard if (!drv->bdrv_write_compressed) 3292faea38e7Sbellard return -ENOTSUP; 3293fbb7b4e0SKevin Wolf if (bdrv_check_request(bs, sector_num, nb_sectors)) 3294fbb7b4e0SKevin Wolf return -EIO; 32957cd1e32aSlirans@il.ibm.com 32961755da16SPaolo Bonzini assert(!bs->dirty_bitmap); 32977cd1e32aSlirans@il.ibm.com 3298faea38e7Sbellard return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors); 3299faea38e7Sbellard } 3300faea38e7Sbellard 3301faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) 3302faea38e7Sbellard { 3303faea38e7Sbellard BlockDriver *drv = bs->drv; 3304faea38e7Sbellard if (!drv) 330519cb3738Sbellard return -ENOMEDIUM; 3306faea38e7Sbellard if (!drv->bdrv_get_info) 3307faea38e7Sbellard return -ENOTSUP; 3308faea38e7Sbellard memset(bdi, 0, sizeof(*bdi)); 3309faea38e7Sbellard return drv->bdrv_get_info(bs, bdi); 3310faea38e7Sbellard } 3311faea38e7Sbellard 331245566e9cSChristoph Hellwig int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf, 331345566e9cSChristoph Hellwig int64_t pos, int size) 3314178e08a5Saliguori { 3315cf8074b3SKevin Wolf QEMUIOVector qiov; 3316cf8074b3SKevin Wolf struct iovec iov = { 3317cf8074b3SKevin Wolf .iov_base = (void *) buf, 3318cf8074b3SKevin Wolf .iov_len = size, 3319cf8074b3SKevin Wolf }; 3320cf8074b3SKevin Wolf 3321cf8074b3SKevin Wolf qemu_iovec_init_external(&qiov, &iov, 1); 3322cf8074b3SKevin Wolf return bdrv_writev_vmstate(bs, &qiov, pos); 3323cf8074b3SKevin Wolf } 3324cf8074b3SKevin Wolf 3325cf8074b3SKevin Wolf int bdrv_writev_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos) 3326cf8074b3SKevin Wolf { 3327178e08a5Saliguori BlockDriver *drv = bs->drv; 3328cf8074b3SKevin Wolf 3329cf8074b3SKevin Wolf if (!drv) { 3330178e08a5Saliguori return -ENOMEDIUM; 3331cf8074b3SKevin Wolf } else if (drv->bdrv_save_vmstate) { 3332cf8074b3SKevin Wolf return drv->bdrv_save_vmstate(bs, qiov, pos); 3333cf8074b3SKevin Wolf } else if (bs->file) { 3334cf8074b3SKevin Wolf return bdrv_writev_vmstate(bs->file, qiov, pos); 3335cf8074b3SKevin Wolf } 3336cf8074b3SKevin Wolf 33377cdb1f6dSMORITA Kazutaka return -ENOTSUP; 3338178e08a5Saliguori } 3339178e08a5Saliguori 334045566e9cSChristoph Hellwig int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf, 334145566e9cSChristoph Hellwig int64_t pos, int size) 3342178e08a5Saliguori { 3343178e08a5Saliguori BlockDriver *drv = bs->drv; 3344178e08a5Saliguori if (!drv) 3345178e08a5Saliguori return -ENOMEDIUM; 33467cdb1f6dSMORITA Kazutaka if (drv->bdrv_load_vmstate) 334745566e9cSChristoph Hellwig return drv->bdrv_load_vmstate(bs, buf, pos, size); 33487cdb1f6dSMORITA Kazutaka if (bs->file) 33497cdb1f6dSMORITA Kazutaka return bdrv_load_vmstate(bs->file, buf, pos, size); 33507cdb1f6dSMORITA Kazutaka return -ENOTSUP; 3351178e08a5Saliguori } 3352178e08a5Saliguori 33538b9b0cc2SKevin Wolf void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event) 33548b9b0cc2SKevin Wolf { 3355bf736fe3SKevin Wolf if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) { 33568b9b0cc2SKevin Wolf return; 33578b9b0cc2SKevin Wolf } 33588b9b0cc2SKevin Wolf 3359bf736fe3SKevin Wolf bs->drv->bdrv_debug_event(bs, event); 336041c695c7SKevin Wolf } 33618b9b0cc2SKevin Wolf 336241c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, 336341c695c7SKevin Wolf const char *tag) 336441c695c7SKevin Wolf { 336541c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { 336641c695c7SKevin Wolf bs = bs->file; 336741c695c7SKevin Wolf } 336841c695c7SKevin Wolf 336941c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { 337041c695c7SKevin Wolf return bs->drv->bdrv_debug_breakpoint(bs, event, tag); 337141c695c7SKevin Wolf } 337241c695c7SKevin Wolf 337341c695c7SKevin Wolf return -ENOTSUP; 337441c695c7SKevin Wolf } 337541c695c7SKevin Wolf 337641c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag) 337741c695c7SKevin Wolf { 337841c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_resume) { 337941c695c7SKevin Wolf bs = bs->file; 338041c695c7SKevin Wolf } 338141c695c7SKevin Wolf 338241c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_resume) { 338341c695c7SKevin Wolf return bs->drv->bdrv_debug_resume(bs, tag); 338441c695c7SKevin Wolf } 338541c695c7SKevin Wolf 338641c695c7SKevin Wolf return -ENOTSUP; 338741c695c7SKevin Wolf } 338841c695c7SKevin Wolf 338941c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) 339041c695c7SKevin Wolf { 339141c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { 339241c695c7SKevin Wolf bs = bs->file; 339341c695c7SKevin Wolf } 339441c695c7SKevin Wolf 339541c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { 339641c695c7SKevin Wolf return bs->drv->bdrv_debug_is_suspended(bs, tag); 339741c695c7SKevin Wolf } 339841c695c7SKevin Wolf 339941c695c7SKevin Wolf return false; 34008b9b0cc2SKevin Wolf } 34018b9b0cc2SKevin Wolf 3402199630b6SBlue Swirl int bdrv_is_snapshot(BlockDriverState *bs) 3403199630b6SBlue Swirl { 3404199630b6SBlue Swirl return !!(bs->open_flags & BDRV_O_SNAPSHOT); 3405199630b6SBlue Swirl } 3406199630b6SBlue Swirl 3407b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol. If it is 3408b1b1d783SJeff Cody * relative, it must be relative to the chain. So, passing in bs->filename 3409b1b1d783SJeff Cody * from a BDS as backing_file should not be done, as that may be relative to 3410b1b1d783SJeff Cody * the CWD rather than the chain. */ 3411e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, 3412e8a6bb9cSMarcelo Tosatti const char *backing_file) 3413e8a6bb9cSMarcelo Tosatti { 3414b1b1d783SJeff Cody char *filename_full = NULL; 3415b1b1d783SJeff Cody char *backing_file_full = NULL; 3416b1b1d783SJeff Cody char *filename_tmp = NULL; 3417b1b1d783SJeff Cody int is_protocol = 0; 3418b1b1d783SJeff Cody BlockDriverState *curr_bs = NULL; 3419b1b1d783SJeff Cody BlockDriverState *retval = NULL; 3420b1b1d783SJeff Cody 3421b1b1d783SJeff Cody if (!bs || !bs->drv || !backing_file) { 3422e8a6bb9cSMarcelo Tosatti return NULL; 3423e8a6bb9cSMarcelo Tosatti } 3424e8a6bb9cSMarcelo Tosatti 3425b1b1d783SJeff Cody filename_full = g_malloc(PATH_MAX); 3426b1b1d783SJeff Cody backing_file_full = g_malloc(PATH_MAX); 3427b1b1d783SJeff Cody filename_tmp = g_malloc(PATH_MAX); 3428b1b1d783SJeff Cody 3429b1b1d783SJeff Cody is_protocol = path_has_protocol(backing_file); 3430b1b1d783SJeff Cody 3431b1b1d783SJeff Cody for (curr_bs = bs; curr_bs->backing_hd; curr_bs = curr_bs->backing_hd) { 3432b1b1d783SJeff Cody 3433b1b1d783SJeff Cody /* If either of the filename paths is actually a protocol, then 3434b1b1d783SJeff Cody * compare unmodified paths; otherwise make paths relative */ 3435b1b1d783SJeff Cody if (is_protocol || path_has_protocol(curr_bs->backing_file)) { 3436b1b1d783SJeff Cody if (strcmp(backing_file, curr_bs->backing_file) == 0) { 3437b1b1d783SJeff Cody retval = curr_bs->backing_hd; 3438b1b1d783SJeff Cody break; 3439b1b1d783SJeff Cody } 3440e8a6bb9cSMarcelo Tosatti } else { 3441b1b1d783SJeff Cody /* If not an absolute filename path, make it relative to the current 3442b1b1d783SJeff Cody * image's filename path */ 3443b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 3444b1b1d783SJeff Cody backing_file); 3445b1b1d783SJeff Cody 3446b1b1d783SJeff Cody /* We are going to compare absolute pathnames */ 3447b1b1d783SJeff Cody if (!realpath(filename_tmp, filename_full)) { 3448b1b1d783SJeff Cody continue; 3449b1b1d783SJeff Cody } 3450b1b1d783SJeff Cody 3451b1b1d783SJeff Cody /* We need to make sure the backing filename we are comparing against 3452b1b1d783SJeff Cody * is relative to the current image filename (or absolute) */ 3453b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 3454b1b1d783SJeff Cody curr_bs->backing_file); 3455b1b1d783SJeff Cody 3456b1b1d783SJeff Cody if (!realpath(filename_tmp, backing_file_full)) { 3457b1b1d783SJeff Cody continue; 3458b1b1d783SJeff Cody } 3459b1b1d783SJeff Cody 3460b1b1d783SJeff Cody if (strcmp(backing_file_full, filename_full) == 0) { 3461b1b1d783SJeff Cody retval = curr_bs->backing_hd; 3462b1b1d783SJeff Cody break; 3463b1b1d783SJeff Cody } 3464e8a6bb9cSMarcelo Tosatti } 3465e8a6bb9cSMarcelo Tosatti } 3466e8a6bb9cSMarcelo Tosatti 3467b1b1d783SJeff Cody g_free(filename_full); 3468b1b1d783SJeff Cody g_free(backing_file_full); 3469b1b1d783SJeff Cody g_free(filename_tmp); 3470b1b1d783SJeff Cody return retval; 3471e8a6bb9cSMarcelo Tosatti } 3472e8a6bb9cSMarcelo Tosatti 3473f198fd1cSBenoît Canet int bdrv_get_backing_file_depth(BlockDriverState *bs) 3474f198fd1cSBenoît Canet { 3475f198fd1cSBenoît Canet if (!bs->drv) { 3476f198fd1cSBenoît Canet return 0; 3477f198fd1cSBenoît Canet } 3478f198fd1cSBenoît Canet 3479f198fd1cSBenoît Canet if (!bs->backing_hd) { 3480f198fd1cSBenoît Canet return 0; 3481f198fd1cSBenoît Canet } 3482f198fd1cSBenoît Canet 3483f198fd1cSBenoît Canet return 1 + bdrv_get_backing_file_depth(bs->backing_hd); 3484f198fd1cSBenoît Canet } 3485f198fd1cSBenoît Canet 348679fac568SJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs) 348779fac568SJeff Cody { 348879fac568SJeff Cody BlockDriverState *curr_bs = NULL; 348979fac568SJeff Cody 349079fac568SJeff Cody if (!bs) { 349179fac568SJeff Cody return NULL; 349279fac568SJeff Cody } 349379fac568SJeff Cody 349479fac568SJeff Cody curr_bs = bs; 349579fac568SJeff Cody 349679fac568SJeff Cody while (curr_bs->backing_hd) { 349779fac568SJeff Cody curr_bs = curr_bs->backing_hd; 349879fac568SJeff Cody } 349979fac568SJeff Cody return curr_bs; 350079fac568SJeff Cody } 350179fac568SJeff Cody 3502ea2384d3Sbellard /**************************************************************/ 350383f64091Sbellard /* async I/Os */ 3504ea2384d3Sbellard 35053b69e4b9Saliguori BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num, 3506f141eafeSaliguori QEMUIOVector *qiov, int nb_sectors, 350783f64091Sbellard BlockDriverCompletionFunc *cb, void *opaque) 3508ea2384d3Sbellard { 3509bbf0a440SStefan Hajnoczi trace_bdrv_aio_readv(bs, sector_num, nb_sectors, opaque); 3510bbf0a440SStefan Hajnoczi 3511b2a61371SStefan Hajnoczi return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors, 35128c5873d6SStefan Hajnoczi cb, opaque, false); 351383f64091Sbellard } 351483f64091Sbellard 3515f141eafeSaliguori BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num, 3516f141eafeSaliguori QEMUIOVector *qiov, int nb_sectors, 351783f64091Sbellard BlockDriverCompletionFunc *cb, void *opaque) 35187674e7bfSbellard { 3519bbf0a440SStefan Hajnoczi trace_bdrv_aio_writev(bs, sector_num, nb_sectors, opaque); 3520bbf0a440SStefan Hajnoczi 35211a6e115bSStefan Hajnoczi return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors, 35228c5873d6SStefan Hajnoczi cb, opaque, true); 352383f64091Sbellard } 352483f64091Sbellard 352540b4f539SKevin Wolf 352640b4f539SKevin Wolf typedef struct MultiwriteCB { 352740b4f539SKevin Wolf int error; 352840b4f539SKevin Wolf int num_requests; 352940b4f539SKevin Wolf int num_callbacks; 353040b4f539SKevin Wolf struct { 353140b4f539SKevin Wolf BlockDriverCompletionFunc *cb; 353240b4f539SKevin Wolf void *opaque; 353340b4f539SKevin Wolf QEMUIOVector *free_qiov; 353440b4f539SKevin Wolf } callbacks[]; 353540b4f539SKevin Wolf } MultiwriteCB; 353640b4f539SKevin Wolf 353740b4f539SKevin Wolf static void multiwrite_user_cb(MultiwriteCB *mcb) 353840b4f539SKevin Wolf { 353940b4f539SKevin Wolf int i; 354040b4f539SKevin Wolf 354140b4f539SKevin Wolf for (i = 0; i < mcb->num_callbacks; i++) { 354240b4f539SKevin Wolf mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error); 35431e1ea48dSStefan Hajnoczi if (mcb->callbacks[i].free_qiov) { 35441e1ea48dSStefan Hajnoczi qemu_iovec_destroy(mcb->callbacks[i].free_qiov); 35451e1ea48dSStefan Hajnoczi } 35467267c094SAnthony Liguori g_free(mcb->callbacks[i].free_qiov); 354740b4f539SKevin Wolf } 354840b4f539SKevin Wolf } 354940b4f539SKevin Wolf 355040b4f539SKevin Wolf static void multiwrite_cb(void *opaque, int ret) 355140b4f539SKevin Wolf { 355240b4f539SKevin Wolf MultiwriteCB *mcb = opaque; 355340b4f539SKevin Wolf 35546d519a5fSStefan Hajnoczi trace_multiwrite_cb(mcb, ret); 35556d519a5fSStefan Hajnoczi 3556cb6d3ca0SKevin Wolf if (ret < 0 && !mcb->error) { 355740b4f539SKevin Wolf mcb->error = ret; 355840b4f539SKevin Wolf } 355940b4f539SKevin Wolf 356040b4f539SKevin Wolf mcb->num_requests--; 356140b4f539SKevin Wolf if (mcb->num_requests == 0) { 356240b4f539SKevin Wolf multiwrite_user_cb(mcb); 35637267c094SAnthony Liguori g_free(mcb); 356440b4f539SKevin Wolf } 356540b4f539SKevin Wolf } 356640b4f539SKevin Wolf 356740b4f539SKevin Wolf static int multiwrite_req_compare(const void *a, const void *b) 356840b4f539SKevin Wolf { 356977be4366SChristoph Hellwig const BlockRequest *req1 = a, *req2 = b; 357077be4366SChristoph Hellwig 357177be4366SChristoph Hellwig /* 357277be4366SChristoph Hellwig * Note that we can't simply subtract req2->sector from req1->sector 357377be4366SChristoph Hellwig * here as that could overflow the return value. 357477be4366SChristoph Hellwig */ 357577be4366SChristoph Hellwig if (req1->sector > req2->sector) { 357677be4366SChristoph Hellwig return 1; 357777be4366SChristoph Hellwig } else if (req1->sector < req2->sector) { 357877be4366SChristoph Hellwig return -1; 357977be4366SChristoph Hellwig } else { 358077be4366SChristoph Hellwig return 0; 358177be4366SChristoph Hellwig } 358240b4f539SKevin Wolf } 358340b4f539SKevin Wolf 358440b4f539SKevin Wolf /* 358540b4f539SKevin Wolf * Takes a bunch of requests and tries to merge them. Returns the number of 358640b4f539SKevin Wolf * requests that remain after merging. 358740b4f539SKevin Wolf */ 358840b4f539SKevin Wolf static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs, 358940b4f539SKevin Wolf int num_reqs, MultiwriteCB *mcb) 359040b4f539SKevin Wolf { 359140b4f539SKevin Wolf int i, outidx; 359240b4f539SKevin Wolf 359340b4f539SKevin Wolf // Sort requests by start sector 359440b4f539SKevin Wolf qsort(reqs, num_reqs, sizeof(*reqs), &multiwrite_req_compare); 359540b4f539SKevin Wolf 359640b4f539SKevin Wolf // Check if adjacent requests touch the same clusters. If so, combine them, 359740b4f539SKevin Wolf // filling up gaps with zero sectors. 359840b4f539SKevin Wolf outidx = 0; 359940b4f539SKevin Wolf for (i = 1; i < num_reqs; i++) { 360040b4f539SKevin Wolf int merge = 0; 360140b4f539SKevin Wolf int64_t oldreq_last = reqs[outidx].sector + reqs[outidx].nb_sectors; 360240b4f539SKevin Wolf 3603b6a127a1SPaolo Bonzini // Handle exactly sequential writes and overlapping writes. 360440b4f539SKevin Wolf if (reqs[i].sector <= oldreq_last) { 360540b4f539SKevin Wolf merge = 1; 360640b4f539SKevin Wolf } 360740b4f539SKevin Wolf 3608e2a305fbSChristoph Hellwig if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) { 3609e2a305fbSChristoph Hellwig merge = 0; 3610e2a305fbSChristoph Hellwig } 3611e2a305fbSChristoph Hellwig 361240b4f539SKevin Wolf if (merge) { 361340b4f539SKevin Wolf size_t size; 36147267c094SAnthony Liguori QEMUIOVector *qiov = g_malloc0(sizeof(*qiov)); 361540b4f539SKevin Wolf qemu_iovec_init(qiov, 361640b4f539SKevin Wolf reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1); 361740b4f539SKevin Wolf 361840b4f539SKevin Wolf // Add the first request to the merged one. If the requests are 361940b4f539SKevin Wolf // overlapping, drop the last sectors of the first request. 362040b4f539SKevin Wolf size = (reqs[i].sector - reqs[outidx].sector) << 9; 36211b093c48SMichael Tokarev qemu_iovec_concat(qiov, reqs[outidx].qiov, 0, size); 362240b4f539SKevin Wolf 3623b6a127a1SPaolo Bonzini // We should need to add any zeros between the two requests 3624b6a127a1SPaolo Bonzini assert (reqs[i].sector <= oldreq_last); 362540b4f539SKevin Wolf 362640b4f539SKevin Wolf // Add the second request 36271b093c48SMichael Tokarev qemu_iovec_concat(qiov, reqs[i].qiov, 0, reqs[i].qiov->size); 362840b4f539SKevin Wolf 3629cbf1dff2SKevin Wolf reqs[outidx].nb_sectors = qiov->size >> 9; 363040b4f539SKevin Wolf reqs[outidx].qiov = qiov; 363140b4f539SKevin Wolf 363240b4f539SKevin Wolf mcb->callbacks[i].free_qiov = reqs[outidx].qiov; 363340b4f539SKevin Wolf } else { 363440b4f539SKevin Wolf outidx++; 363540b4f539SKevin Wolf reqs[outidx].sector = reqs[i].sector; 363640b4f539SKevin Wolf reqs[outidx].nb_sectors = reqs[i].nb_sectors; 363740b4f539SKevin Wolf reqs[outidx].qiov = reqs[i].qiov; 363840b4f539SKevin Wolf } 363940b4f539SKevin Wolf } 364040b4f539SKevin Wolf 364140b4f539SKevin Wolf return outidx + 1; 364240b4f539SKevin Wolf } 364340b4f539SKevin Wolf 364440b4f539SKevin Wolf /* 364540b4f539SKevin Wolf * Submit multiple AIO write requests at once. 364640b4f539SKevin Wolf * 364740b4f539SKevin Wolf * On success, the function returns 0 and all requests in the reqs array have 364840b4f539SKevin Wolf * been submitted. In error case this function returns -1, and any of the 364940b4f539SKevin Wolf * requests may or may not be submitted yet. In particular, this means that the 365040b4f539SKevin Wolf * callback will be called for some of the requests, for others it won't. The 365140b4f539SKevin Wolf * caller must check the error field of the BlockRequest to wait for the right 365240b4f539SKevin Wolf * callbacks (if error != 0, no callback will be called). 365340b4f539SKevin Wolf * 365440b4f539SKevin Wolf * The implementation may modify the contents of the reqs array, e.g. to merge 365540b4f539SKevin Wolf * requests. However, the fields opaque and error are left unmodified as they 365640b4f539SKevin Wolf * are used to signal failure for a single request to the caller. 365740b4f539SKevin Wolf */ 365840b4f539SKevin Wolf int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs) 365940b4f539SKevin Wolf { 366040b4f539SKevin Wolf MultiwriteCB *mcb; 366140b4f539SKevin Wolf int i; 366240b4f539SKevin Wolf 3663301db7c2SRyan Harper /* don't submit writes if we don't have a medium */ 3664301db7c2SRyan Harper if (bs->drv == NULL) { 3665301db7c2SRyan Harper for (i = 0; i < num_reqs; i++) { 3666301db7c2SRyan Harper reqs[i].error = -ENOMEDIUM; 3667301db7c2SRyan Harper } 3668301db7c2SRyan Harper return -1; 3669301db7c2SRyan Harper } 3670301db7c2SRyan Harper 367140b4f539SKevin Wolf if (num_reqs == 0) { 367240b4f539SKevin Wolf return 0; 367340b4f539SKevin Wolf } 367440b4f539SKevin Wolf 367540b4f539SKevin Wolf // Create MultiwriteCB structure 36767267c094SAnthony Liguori mcb = g_malloc0(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks)); 367740b4f539SKevin Wolf mcb->num_requests = 0; 367840b4f539SKevin Wolf mcb->num_callbacks = num_reqs; 367940b4f539SKevin Wolf 368040b4f539SKevin Wolf for (i = 0; i < num_reqs; i++) { 368140b4f539SKevin Wolf mcb->callbacks[i].cb = reqs[i].cb; 368240b4f539SKevin Wolf mcb->callbacks[i].opaque = reqs[i].opaque; 368340b4f539SKevin Wolf } 368440b4f539SKevin Wolf 368540b4f539SKevin Wolf // Check for mergable requests 368640b4f539SKevin Wolf num_reqs = multiwrite_merge(bs, reqs, num_reqs, mcb); 368740b4f539SKevin Wolf 36886d519a5fSStefan Hajnoczi trace_bdrv_aio_multiwrite(mcb, mcb->num_callbacks, num_reqs); 36896d519a5fSStefan Hajnoczi 3690df9309fbSPaolo Bonzini /* Run the aio requests. */ 3691df9309fbSPaolo Bonzini mcb->num_requests = num_reqs; 369240b4f539SKevin Wolf for (i = 0; i < num_reqs; i++) { 3693ad54ae80SPaolo Bonzini bdrv_aio_writev(bs, reqs[i].sector, reqs[i].qiov, 369440b4f539SKevin Wolf reqs[i].nb_sectors, multiwrite_cb, mcb); 369540b4f539SKevin Wolf } 369640b4f539SKevin Wolf 369740b4f539SKevin Wolf return 0; 369840b4f539SKevin Wolf } 369940b4f539SKevin Wolf 370083f64091Sbellard void bdrv_aio_cancel(BlockDriverAIOCB *acb) 370183f64091Sbellard { 3702d7331bedSStefan Hajnoczi acb->aiocb_info->cancel(acb); 370383f64091Sbellard } 370483f64091Sbellard 370583f64091Sbellard /**************************************************************/ 370683f64091Sbellard /* async block device emulation */ 370783f64091Sbellard 3708c16b5a2cSChristoph Hellwig typedef struct BlockDriverAIOCBSync { 3709c16b5a2cSChristoph Hellwig BlockDriverAIOCB common; 3710c16b5a2cSChristoph Hellwig QEMUBH *bh; 3711c16b5a2cSChristoph Hellwig int ret; 3712c16b5a2cSChristoph Hellwig /* vector translation state */ 3713c16b5a2cSChristoph Hellwig QEMUIOVector *qiov; 3714c16b5a2cSChristoph Hellwig uint8_t *bounce; 3715c16b5a2cSChristoph Hellwig int is_write; 3716c16b5a2cSChristoph Hellwig } BlockDriverAIOCBSync; 3717c16b5a2cSChristoph Hellwig 3718c16b5a2cSChristoph Hellwig static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb) 3719c16b5a2cSChristoph Hellwig { 3720b666d239SKevin Wolf BlockDriverAIOCBSync *acb = 3721b666d239SKevin Wolf container_of(blockacb, BlockDriverAIOCBSync, common); 37226a7ad299SDor Laor qemu_bh_delete(acb->bh); 372336afc451SAvi Kivity acb->bh = NULL; 3724c16b5a2cSChristoph Hellwig qemu_aio_release(acb); 3725c16b5a2cSChristoph Hellwig } 3726c16b5a2cSChristoph Hellwig 3727d7331bedSStefan Hajnoczi static const AIOCBInfo bdrv_em_aiocb_info = { 3728c16b5a2cSChristoph Hellwig .aiocb_size = sizeof(BlockDriverAIOCBSync), 3729c16b5a2cSChristoph Hellwig .cancel = bdrv_aio_cancel_em, 3730c16b5a2cSChristoph Hellwig }; 3731c16b5a2cSChristoph Hellwig 373283f64091Sbellard static void bdrv_aio_bh_cb(void *opaque) 3733beac80cdSbellard { 3734ce1a14dcSpbrook BlockDriverAIOCBSync *acb = opaque; 3735f141eafeSaliguori 3736f141eafeSaliguori if (!acb->is_write) 373703396148SMichael Tokarev qemu_iovec_from_buf(acb->qiov, 0, acb->bounce, acb->qiov->size); 3738ceb42de8Saliguori qemu_vfree(acb->bounce); 3739ce1a14dcSpbrook acb->common.cb(acb->common.opaque, acb->ret); 37406a7ad299SDor Laor qemu_bh_delete(acb->bh); 374136afc451SAvi Kivity acb->bh = NULL; 3742ce1a14dcSpbrook qemu_aio_release(acb); 3743beac80cdSbellard } 3744beac80cdSbellard 3745f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs, 3746f141eafeSaliguori int64_t sector_num, 3747f141eafeSaliguori QEMUIOVector *qiov, 3748f141eafeSaliguori int nb_sectors, 3749f141eafeSaliguori BlockDriverCompletionFunc *cb, 3750f141eafeSaliguori void *opaque, 3751f141eafeSaliguori int is_write) 3752f141eafeSaliguori 3753ea2384d3Sbellard { 3754ce1a14dcSpbrook BlockDriverAIOCBSync *acb; 375583f64091Sbellard 3756d7331bedSStefan Hajnoczi acb = qemu_aio_get(&bdrv_em_aiocb_info, bs, cb, opaque); 3757f141eafeSaliguori acb->is_write = is_write; 3758f141eafeSaliguori acb->qiov = qiov; 3759e268ca52Saliguori acb->bounce = qemu_blockalign(bs, qiov->size); 3760ce1a14dcSpbrook acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb); 3761f141eafeSaliguori 3762f141eafeSaliguori if (is_write) { 3763d5e6b161SMichael Tokarev qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size); 37641ed20acfSStefan Hajnoczi acb->ret = bs->drv->bdrv_write(bs, sector_num, acb->bounce, nb_sectors); 3765f141eafeSaliguori } else { 37661ed20acfSStefan Hajnoczi acb->ret = bs->drv->bdrv_read(bs, sector_num, acb->bounce, nb_sectors); 3767f141eafeSaliguori } 3768f141eafeSaliguori 3769ce1a14dcSpbrook qemu_bh_schedule(acb->bh); 3770f141eafeSaliguori 3771ce1a14dcSpbrook return &acb->common; 37727a6cba61Spbrook } 37737a6cba61Spbrook 3774f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs, 3775f141eafeSaliguori int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, 3776ce1a14dcSpbrook BlockDriverCompletionFunc *cb, void *opaque) 377783f64091Sbellard { 3778f141eafeSaliguori return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0); 377983f64091Sbellard } 378083f64091Sbellard 3781f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs, 3782f141eafeSaliguori int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, 3783f141eafeSaliguori BlockDriverCompletionFunc *cb, void *opaque) 3784f141eafeSaliguori { 3785f141eafeSaliguori return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1); 3786f141eafeSaliguori } 3787f141eafeSaliguori 378868485420SKevin Wolf 378968485420SKevin Wolf typedef struct BlockDriverAIOCBCoroutine { 379068485420SKevin Wolf BlockDriverAIOCB common; 379168485420SKevin Wolf BlockRequest req; 379268485420SKevin Wolf bool is_write; 3793d318aea9SKevin Wolf bool *done; 379468485420SKevin Wolf QEMUBH* bh; 379568485420SKevin Wolf } BlockDriverAIOCBCoroutine; 379668485420SKevin Wolf 379768485420SKevin Wolf static void bdrv_aio_co_cancel_em(BlockDriverAIOCB *blockacb) 379868485420SKevin Wolf { 3799d318aea9SKevin Wolf BlockDriverAIOCBCoroutine *acb = 3800d318aea9SKevin Wolf container_of(blockacb, BlockDriverAIOCBCoroutine, common); 3801d318aea9SKevin Wolf bool done = false; 3802d318aea9SKevin Wolf 3803d318aea9SKevin Wolf acb->done = &done; 3804d318aea9SKevin Wolf while (!done) { 3805d318aea9SKevin Wolf qemu_aio_wait(); 3806d318aea9SKevin Wolf } 380768485420SKevin Wolf } 380868485420SKevin Wolf 3809d7331bedSStefan Hajnoczi static const AIOCBInfo bdrv_em_co_aiocb_info = { 381068485420SKevin Wolf .aiocb_size = sizeof(BlockDriverAIOCBCoroutine), 381168485420SKevin Wolf .cancel = bdrv_aio_co_cancel_em, 381268485420SKevin Wolf }; 381368485420SKevin Wolf 381435246a68SPaolo Bonzini static void bdrv_co_em_bh(void *opaque) 381568485420SKevin Wolf { 381668485420SKevin Wolf BlockDriverAIOCBCoroutine *acb = opaque; 381768485420SKevin Wolf 381868485420SKevin Wolf acb->common.cb(acb->common.opaque, acb->req.error); 3819d318aea9SKevin Wolf 3820d318aea9SKevin Wolf if (acb->done) { 3821d318aea9SKevin Wolf *acb->done = true; 3822d318aea9SKevin Wolf } 3823d318aea9SKevin Wolf 382468485420SKevin Wolf qemu_bh_delete(acb->bh); 382568485420SKevin Wolf qemu_aio_release(acb); 382668485420SKevin Wolf } 382768485420SKevin Wolf 3828b2a61371SStefan Hajnoczi /* Invoke bdrv_co_do_readv/bdrv_co_do_writev */ 3829b2a61371SStefan Hajnoczi static void coroutine_fn bdrv_co_do_rw(void *opaque) 3830b2a61371SStefan Hajnoczi { 3831b2a61371SStefan Hajnoczi BlockDriverAIOCBCoroutine *acb = opaque; 3832b2a61371SStefan Hajnoczi BlockDriverState *bs = acb->common.bs; 3833b2a61371SStefan Hajnoczi 3834b2a61371SStefan Hajnoczi if (!acb->is_write) { 3835b2a61371SStefan Hajnoczi acb->req.error = bdrv_co_do_readv(bs, acb->req.sector, 3836470c0504SStefan Hajnoczi acb->req.nb_sectors, acb->req.qiov, 0); 3837b2a61371SStefan Hajnoczi } else { 3838b2a61371SStefan Hajnoczi acb->req.error = bdrv_co_do_writev(bs, acb->req.sector, 3839f08f2ddaSStefan Hajnoczi acb->req.nb_sectors, acb->req.qiov, 0); 3840b2a61371SStefan Hajnoczi } 3841b2a61371SStefan Hajnoczi 384235246a68SPaolo Bonzini acb->bh = qemu_bh_new(bdrv_co_em_bh, acb); 3843b2a61371SStefan Hajnoczi qemu_bh_schedule(acb->bh); 3844b2a61371SStefan Hajnoczi } 3845b2a61371SStefan Hajnoczi 384668485420SKevin Wolf static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs, 384768485420SKevin Wolf int64_t sector_num, 384868485420SKevin Wolf QEMUIOVector *qiov, 384968485420SKevin Wolf int nb_sectors, 385068485420SKevin Wolf BlockDriverCompletionFunc *cb, 385168485420SKevin Wolf void *opaque, 38528c5873d6SStefan Hajnoczi bool is_write) 385368485420SKevin Wolf { 385468485420SKevin Wolf Coroutine *co; 385568485420SKevin Wolf BlockDriverAIOCBCoroutine *acb; 385668485420SKevin Wolf 3857d7331bedSStefan Hajnoczi acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque); 385868485420SKevin Wolf acb->req.sector = sector_num; 385968485420SKevin Wolf acb->req.nb_sectors = nb_sectors; 386068485420SKevin Wolf acb->req.qiov = qiov; 386168485420SKevin Wolf acb->is_write = is_write; 3862d318aea9SKevin Wolf acb->done = NULL; 386368485420SKevin Wolf 38648c5873d6SStefan Hajnoczi co = qemu_coroutine_create(bdrv_co_do_rw); 386568485420SKevin Wolf qemu_coroutine_enter(co, acb); 386668485420SKevin Wolf 386768485420SKevin Wolf return &acb->common; 386868485420SKevin Wolf } 386968485420SKevin Wolf 387007f07615SPaolo Bonzini static void coroutine_fn bdrv_aio_flush_co_entry(void *opaque) 3871b2e12bc6SChristoph Hellwig { 387207f07615SPaolo Bonzini BlockDriverAIOCBCoroutine *acb = opaque; 387307f07615SPaolo Bonzini BlockDriverState *bs = acb->common.bs; 3874b2e12bc6SChristoph Hellwig 387507f07615SPaolo Bonzini acb->req.error = bdrv_co_flush(bs); 387607f07615SPaolo Bonzini acb->bh = qemu_bh_new(bdrv_co_em_bh, acb); 3877b2e12bc6SChristoph Hellwig qemu_bh_schedule(acb->bh); 3878b2e12bc6SChristoph Hellwig } 3879b2e12bc6SChristoph Hellwig 388007f07615SPaolo Bonzini BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs, 3881016f5cf6SAlexander Graf BlockDriverCompletionFunc *cb, void *opaque) 3882016f5cf6SAlexander Graf { 388307f07615SPaolo Bonzini trace_bdrv_aio_flush(bs, opaque); 3884016f5cf6SAlexander Graf 388507f07615SPaolo Bonzini Coroutine *co; 388607f07615SPaolo Bonzini BlockDriverAIOCBCoroutine *acb; 3887016f5cf6SAlexander Graf 3888d7331bedSStefan Hajnoczi acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque); 3889d318aea9SKevin Wolf acb->done = NULL; 3890d318aea9SKevin Wolf 389107f07615SPaolo Bonzini co = qemu_coroutine_create(bdrv_aio_flush_co_entry); 389207f07615SPaolo Bonzini qemu_coroutine_enter(co, acb); 3893016f5cf6SAlexander Graf 3894016f5cf6SAlexander Graf return &acb->common; 3895016f5cf6SAlexander Graf } 3896016f5cf6SAlexander Graf 38974265d620SPaolo Bonzini static void coroutine_fn bdrv_aio_discard_co_entry(void *opaque) 38984265d620SPaolo Bonzini { 38994265d620SPaolo Bonzini BlockDriverAIOCBCoroutine *acb = opaque; 39004265d620SPaolo Bonzini BlockDriverState *bs = acb->common.bs; 39014265d620SPaolo Bonzini 39024265d620SPaolo Bonzini acb->req.error = bdrv_co_discard(bs, acb->req.sector, acb->req.nb_sectors); 39034265d620SPaolo Bonzini acb->bh = qemu_bh_new(bdrv_co_em_bh, acb); 39044265d620SPaolo Bonzini qemu_bh_schedule(acb->bh); 39054265d620SPaolo Bonzini } 39064265d620SPaolo Bonzini 39074265d620SPaolo Bonzini BlockDriverAIOCB *bdrv_aio_discard(BlockDriverState *bs, 39084265d620SPaolo Bonzini int64_t sector_num, int nb_sectors, 39094265d620SPaolo Bonzini BlockDriverCompletionFunc *cb, void *opaque) 39104265d620SPaolo Bonzini { 39114265d620SPaolo Bonzini Coroutine *co; 39124265d620SPaolo Bonzini BlockDriverAIOCBCoroutine *acb; 39134265d620SPaolo Bonzini 39144265d620SPaolo Bonzini trace_bdrv_aio_discard(bs, sector_num, nb_sectors, opaque); 39154265d620SPaolo Bonzini 3916d7331bedSStefan Hajnoczi acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque); 39174265d620SPaolo Bonzini acb->req.sector = sector_num; 39184265d620SPaolo Bonzini acb->req.nb_sectors = nb_sectors; 3919d318aea9SKevin Wolf acb->done = NULL; 39204265d620SPaolo Bonzini co = qemu_coroutine_create(bdrv_aio_discard_co_entry); 39214265d620SPaolo Bonzini qemu_coroutine_enter(co, acb); 39224265d620SPaolo Bonzini 39234265d620SPaolo Bonzini return &acb->common; 39244265d620SPaolo Bonzini } 39254265d620SPaolo Bonzini 3926ea2384d3Sbellard void bdrv_init(void) 3927ea2384d3Sbellard { 39285efa9d5aSAnthony Liguori module_call_init(MODULE_INIT_BLOCK); 3929ea2384d3Sbellard } 3930ce1a14dcSpbrook 3931eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void) 3932eb852011SMarkus Armbruster { 3933eb852011SMarkus Armbruster use_bdrv_whitelist = 1; 3934eb852011SMarkus Armbruster bdrv_init(); 3935eb852011SMarkus Armbruster } 3936eb852011SMarkus Armbruster 3937d7331bedSStefan Hajnoczi void *qemu_aio_get(const AIOCBInfo *aiocb_info, BlockDriverState *bs, 39386bbff9a0Saliguori BlockDriverCompletionFunc *cb, void *opaque) 39396bbff9a0Saliguori { 3940ce1a14dcSpbrook BlockDriverAIOCB *acb; 3941ce1a14dcSpbrook 3942d7331bedSStefan Hajnoczi acb = g_slice_alloc(aiocb_info->aiocb_size); 3943d7331bedSStefan Hajnoczi acb->aiocb_info = aiocb_info; 3944ce1a14dcSpbrook acb->bs = bs; 3945ce1a14dcSpbrook acb->cb = cb; 3946ce1a14dcSpbrook acb->opaque = opaque; 3947ce1a14dcSpbrook return acb; 3948ce1a14dcSpbrook } 3949ce1a14dcSpbrook 3950ce1a14dcSpbrook void qemu_aio_release(void *p) 3951ce1a14dcSpbrook { 3952d37c975fSStefan Hajnoczi BlockDriverAIOCB *acb = p; 3953d7331bedSStefan Hajnoczi g_slice_free1(acb->aiocb_info->aiocb_size, acb); 3954ce1a14dcSpbrook } 395519cb3738Sbellard 395619cb3738Sbellard /**************************************************************/ 3957f9f05dc5SKevin Wolf /* Coroutine block device emulation */ 3958f9f05dc5SKevin Wolf 3959f9f05dc5SKevin Wolf typedef struct CoroutineIOCompletion { 3960f9f05dc5SKevin Wolf Coroutine *coroutine; 3961f9f05dc5SKevin Wolf int ret; 3962f9f05dc5SKevin Wolf } CoroutineIOCompletion; 3963f9f05dc5SKevin Wolf 3964f9f05dc5SKevin Wolf static void bdrv_co_io_em_complete(void *opaque, int ret) 3965f9f05dc5SKevin Wolf { 3966f9f05dc5SKevin Wolf CoroutineIOCompletion *co = opaque; 3967f9f05dc5SKevin Wolf 3968f9f05dc5SKevin Wolf co->ret = ret; 3969f9f05dc5SKevin Wolf qemu_coroutine_enter(co->coroutine, NULL); 3970f9f05dc5SKevin Wolf } 3971f9f05dc5SKevin Wolf 3972f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_io_em(BlockDriverState *bs, int64_t sector_num, 3973f9f05dc5SKevin Wolf int nb_sectors, QEMUIOVector *iov, 3974f9f05dc5SKevin Wolf bool is_write) 3975f9f05dc5SKevin Wolf { 3976f9f05dc5SKevin Wolf CoroutineIOCompletion co = { 3977f9f05dc5SKevin Wolf .coroutine = qemu_coroutine_self(), 3978f9f05dc5SKevin Wolf }; 3979f9f05dc5SKevin Wolf BlockDriverAIOCB *acb; 3980f9f05dc5SKevin Wolf 3981f9f05dc5SKevin Wolf if (is_write) { 3982a652d160SStefan Hajnoczi acb = bs->drv->bdrv_aio_writev(bs, sector_num, iov, nb_sectors, 3983f9f05dc5SKevin Wolf bdrv_co_io_em_complete, &co); 3984f9f05dc5SKevin Wolf } else { 3985a652d160SStefan Hajnoczi acb = bs->drv->bdrv_aio_readv(bs, sector_num, iov, nb_sectors, 3986f9f05dc5SKevin Wolf bdrv_co_io_em_complete, &co); 3987f9f05dc5SKevin Wolf } 3988f9f05dc5SKevin Wolf 398959370aaaSStefan Hajnoczi trace_bdrv_co_io_em(bs, sector_num, nb_sectors, is_write, acb); 3990f9f05dc5SKevin Wolf if (!acb) { 3991f9f05dc5SKevin Wolf return -EIO; 3992f9f05dc5SKevin Wolf } 3993f9f05dc5SKevin Wolf qemu_coroutine_yield(); 3994f9f05dc5SKevin Wolf 3995f9f05dc5SKevin Wolf return co.ret; 3996f9f05dc5SKevin Wolf } 3997f9f05dc5SKevin Wolf 3998f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs, 3999f9f05dc5SKevin Wolf int64_t sector_num, int nb_sectors, 4000f9f05dc5SKevin Wolf QEMUIOVector *iov) 4001f9f05dc5SKevin Wolf { 4002f9f05dc5SKevin Wolf return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, false); 4003f9f05dc5SKevin Wolf } 4004f9f05dc5SKevin Wolf 4005f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs, 4006f9f05dc5SKevin Wolf int64_t sector_num, int nb_sectors, 4007f9f05dc5SKevin Wolf QEMUIOVector *iov) 4008f9f05dc5SKevin Wolf { 4009f9f05dc5SKevin Wolf return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, true); 4010f9f05dc5SKevin Wolf } 4011f9f05dc5SKevin Wolf 401207f07615SPaolo Bonzini static void coroutine_fn bdrv_flush_co_entry(void *opaque) 4013e7a8a783SKevin Wolf { 401407f07615SPaolo Bonzini RwCo *rwco = opaque; 401507f07615SPaolo Bonzini 401607f07615SPaolo Bonzini rwco->ret = bdrv_co_flush(rwco->bs); 401707f07615SPaolo Bonzini } 401807f07615SPaolo Bonzini 401907f07615SPaolo Bonzini int coroutine_fn bdrv_co_flush(BlockDriverState *bs) 402007f07615SPaolo Bonzini { 4021eb489bb1SKevin Wolf int ret; 4022eb489bb1SKevin Wolf 402329cdb251SPaolo Bonzini if (!bs || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) { 402407f07615SPaolo Bonzini return 0; 4025eb489bb1SKevin Wolf } 4026eb489bb1SKevin Wolf 4027ca716364SKevin Wolf /* Write back cached data to the OS even with cache=unsafe */ 4028bf736fe3SKevin Wolf BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_OS); 4029eb489bb1SKevin Wolf if (bs->drv->bdrv_co_flush_to_os) { 4030eb489bb1SKevin Wolf ret = bs->drv->bdrv_co_flush_to_os(bs); 4031eb489bb1SKevin Wolf if (ret < 0) { 4032eb489bb1SKevin Wolf return ret; 4033eb489bb1SKevin Wolf } 4034eb489bb1SKevin Wolf } 4035eb489bb1SKevin Wolf 4036ca716364SKevin Wolf /* But don't actually force it to the disk with cache=unsafe */ 4037ca716364SKevin Wolf if (bs->open_flags & BDRV_O_NO_FLUSH) { 4038d4c82329SKevin Wolf goto flush_parent; 4039ca716364SKevin Wolf } 4040ca716364SKevin Wolf 4041bf736fe3SKevin Wolf BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_DISK); 4042eb489bb1SKevin Wolf if (bs->drv->bdrv_co_flush_to_disk) { 404329cdb251SPaolo Bonzini ret = bs->drv->bdrv_co_flush_to_disk(bs); 404407f07615SPaolo Bonzini } else if (bs->drv->bdrv_aio_flush) { 404507f07615SPaolo Bonzini BlockDriverAIOCB *acb; 4046e7a8a783SKevin Wolf CoroutineIOCompletion co = { 4047e7a8a783SKevin Wolf .coroutine = qemu_coroutine_self(), 4048e7a8a783SKevin Wolf }; 4049e7a8a783SKevin Wolf 405007f07615SPaolo Bonzini acb = bs->drv->bdrv_aio_flush(bs, bdrv_co_io_em_complete, &co); 405107f07615SPaolo Bonzini if (acb == NULL) { 405229cdb251SPaolo Bonzini ret = -EIO; 405307f07615SPaolo Bonzini } else { 4054e7a8a783SKevin Wolf qemu_coroutine_yield(); 405529cdb251SPaolo Bonzini ret = co.ret; 4056e7a8a783SKevin Wolf } 405707f07615SPaolo Bonzini } else { 405807f07615SPaolo Bonzini /* 405907f07615SPaolo Bonzini * Some block drivers always operate in either writethrough or unsafe 406007f07615SPaolo Bonzini * mode and don't support bdrv_flush therefore. Usually qemu doesn't 406107f07615SPaolo Bonzini * know how the server works (because the behaviour is hardcoded or 406207f07615SPaolo Bonzini * depends on server-side configuration), so we can't ensure that 406307f07615SPaolo Bonzini * everything is safe on disk. Returning an error doesn't work because 406407f07615SPaolo Bonzini * that would break guests even if the server operates in writethrough 406507f07615SPaolo Bonzini * mode. 406607f07615SPaolo Bonzini * 406707f07615SPaolo Bonzini * Let's hope the user knows what he's doing. 406807f07615SPaolo Bonzini */ 406929cdb251SPaolo Bonzini ret = 0; 407007f07615SPaolo Bonzini } 407129cdb251SPaolo Bonzini if (ret < 0) { 407229cdb251SPaolo Bonzini return ret; 407329cdb251SPaolo Bonzini } 407429cdb251SPaolo Bonzini 407529cdb251SPaolo Bonzini /* Now flush the underlying protocol. It will also have BDRV_O_NO_FLUSH 407629cdb251SPaolo Bonzini * in the case of cache=unsafe, so there are no useless flushes. 407729cdb251SPaolo Bonzini */ 4078d4c82329SKevin Wolf flush_parent: 407929cdb251SPaolo Bonzini return bdrv_co_flush(bs->file); 408007f07615SPaolo Bonzini } 408107f07615SPaolo Bonzini 40820f15423cSAnthony Liguori void bdrv_invalidate_cache(BlockDriverState *bs) 40830f15423cSAnthony Liguori { 40840f15423cSAnthony Liguori if (bs->drv && bs->drv->bdrv_invalidate_cache) { 40850f15423cSAnthony Liguori bs->drv->bdrv_invalidate_cache(bs); 40860f15423cSAnthony Liguori } 40870f15423cSAnthony Liguori } 40880f15423cSAnthony Liguori 40890f15423cSAnthony Liguori void bdrv_invalidate_cache_all(void) 40900f15423cSAnthony Liguori { 40910f15423cSAnthony Liguori BlockDriverState *bs; 40920f15423cSAnthony Liguori 40930f15423cSAnthony Liguori QTAILQ_FOREACH(bs, &bdrv_states, list) { 40940f15423cSAnthony Liguori bdrv_invalidate_cache(bs); 40950f15423cSAnthony Liguori } 40960f15423cSAnthony Liguori } 40970f15423cSAnthony Liguori 409807789269SBenoît Canet void bdrv_clear_incoming_migration_all(void) 409907789269SBenoît Canet { 410007789269SBenoît Canet BlockDriverState *bs; 410107789269SBenoît Canet 410207789269SBenoît Canet QTAILQ_FOREACH(bs, &bdrv_states, list) { 410307789269SBenoît Canet bs->open_flags = bs->open_flags & ~(BDRV_O_INCOMING); 410407789269SBenoît Canet } 410507789269SBenoît Canet } 410607789269SBenoît Canet 410707f07615SPaolo Bonzini int bdrv_flush(BlockDriverState *bs) 410807f07615SPaolo Bonzini { 410907f07615SPaolo Bonzini Coroutine *co; 411007f07615SPaolo Bonzini RwCo rwco = { 411107f07615SPaolo Bonzini .bs = bs, 411207f07615SPaolo Bonzini .ret = NOT_DONE, 411307f07615SPaolo Bonzini }; 411407f07615SPaolo Bonzini 411507f07615SPaolo Bonzini if (qemu_in_coroutine()) { 411607f07615SPaolo Bonzini /* Fast-path if already in coroutine context */ 411707f07615SPaolo Bonzini bdrv_flush_co_entry(&rwco); 411807f07615SPaolo Bonzini } else { 411907f07615SPaolo Bonzini co = qemu_coroutine_create(bdrv_flush_co_entry); 412007f07615SPaolo Bonzini qemu_coroutine_enter(co, &rwco); 412107f07615SPaolo Bonzini while (rwco.ret == NOT_DONE) { 412207f07615SPaolo Bonzini qemu_aio_wait(); 412307f07615SPaolo Bonzini } 412407f07615SPaolo Bonzini } 412507f07615SPaolo Bonzini 412607f07615SPaolo Bonzini return rwco.ret; 412707f07615SPaolo Bonzini } 4128e7a8a783SKevin Wolf 41294265d620SPaolo Bonzini static void coroutine_fn bdrv_discard_co_entry(void *opaque) 41304265d620SPaolo Bonzini { 41314265d620SPaolo Bonzini RwCo *rwco = opaque; 41324265d620SPaolo Bonzini 41334265d620SPaolo Bonzini rwco->ret = bdrv_co_discard(rwco->bs, rwco->sector_num, rwco->nb_sectors); 41344265d620SPaolo Bonzini } 41354265d620SPaolo Bonzini 41364265d620SPaolo Bonzini int coroutine_fn bdrv_co_discard(BlockDriverState *bs, int64_t sector_num, 41374265d620SPaolo Bonzini int nb_sectors) 41384265d620SPaolo Bonzini { 41394265d620SPaolo Bonzini if (!bs->drv) { 41404265d620SPaolo Bonzini return -ENOMEDIUM; 41414265d620SPaolo Bonzini } else if (bdrv_check_request(bs, sector_num, nb_sectors)) { 41424265d620SPaolo Bonzini return -EIO; 41434265d620SPaolo Bonzini } else if (bs->read_only) { 41444265d620SPaolo Bonzini return -EROFS; 4145df702c9bSPaolo Bonzini } 4146df702c9bSPaolo Bonzini 4147df702c9bSPaolo Bonzini if (bs->dirty_bitmap) { 41488f0720ecSPaolo Bonzini bdrv_reset_dirty(bs, sector_num, nb_sectors); 4149df702c9bSPaolo Bonzini } 4150df702c9bSPaolo Bonzini 41519e8f1835SPaolo Bonzini /* Do nothing if disabled. */ 41529e8f1835SPaolo Bonzini if (!(bs->open_flags & BDRV_O_UNMAP)) { 41539e8f1835SPaolo Bonzini return 0; 41549e8f1835SPaolo Bonzini } 41559e8f1835SPaolo Bonzini 4156df702c9bSPaolo Bonzini if (bs->drv->bdrv_co_discard) { 41574265d620SPaolo Bonzini return bs->drv->bdrv_co_discard(bs, sector_num, nb_sectors); 41584265d620SPaolo Bonzini } else if (bs->drv->bdrv_aio_discard) { 41594265d620SPaolo Bonzini BlockDriverAIOCB *acb; 41604265d620SPaolo Bonzini CoroutineIOCompletion co = { 41614265d620SPaolo Bonzini .coroutine = qemu_coroutine_self(), 41624265d620SPaolo Bonzini }; 41634265d620SPaolo Bonzini 41644265d620SPaolo Bonzini acb = bs->drv->bdrv_aio_discard(bs, sector_num, nb_sectors, 41654265d620SPaolo Bonzini bdrv_co_io_em_complete, &co); 41664265d620SPaolo Bonzini if (acb == NULL) { 41674265d620SPaolo Bonzini return -EIO; 41684265d620SPaolo Bonzini } else { 41694265d620SPaolo Bonzini qemu_coroutine_yield(); 41704265d620SPaolo Bonzini return co.ret; 41714265d620SPaolo Bonzini } 41724265d620SPaolo Bonzini } else { 41734265d620SPaolo Bonzini return 0; 41744265d620SPaolo Bonzini } 41754265d620SPaolo Bonzini } 41764265d620SPaolo Bonzini 41774265d620SPaolo Bonzini int bdrv_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors) 41784265d620SPaolo Bonzini { 41794265d620SPaolo Bonzini Coroutine *co; 41804265d620SPaolo Bonzini RwCo rwco = { 41814265d620SPaolo Bonzini .bs = bs, 41824265d620SPaolo Bonzini .sector_num = sector_num, 41834265d620SPaolo Bonzini .nb_sectors = nb_sectors, 41844265d620SPaolo Bonzini .ret = NOT_DONE, 41854265d620SPaolo Bonzini }; 41864265d620SPaolo Bonzini 41874265d620SPaolo Bonzini if (qemu_in_coroutine()) { 41884265d620SPaolo Bonzini /* Fast-path if already in coroutine context */ 41894265d620SPaolo Bonzini bdrv_discard_co_entry(&rwco); 41904265d620SPaolo Bonzini } else { 41914265d620SPaolo Bonzini co = qemu_coroutine_create(bdrv_discard_co_entry); 41924265d620SPaolo Bonzini qemu_coroutine_enter(co, &rwco); 41934265d620SPaolo Bonzini while (rwco.ret == NOT_DONE) { 41944265d620SPaolo Bonzini qemu_aio_wait(); 41954265d620SPaolo Bonzini } 41964265d620SPaolo Bonzini } 41974265d620SPaolo Bonzini 41984265d620SPaolo Bonzini return rwco.ret; 41994265d620SPaolo Bonzini } 42004265d620SPaolo Bonzini 4201f9f05dc5SKevin Wolf /**************************************************************/ 420219cb3738Sbellard /* removable device support */ 420319cb3738Sbellard 420419cb3738Sbellard /** 420519cb3738Sbellard * Return TRUE if the media is present 420619cb3738Sbellard */ 420719cb3738Sbellard int bdrv_is_inserted(BlockDriverState *bs) 420819cb3738Sbellard { 420919cb3738Sbellard BlockDriver *drv = bs->drv; 4210a1aff5bfSMarkus Armbruster 421119cb3738Sbellard if (!drv) 421219cb3738Sbellard return 0; 421319cb3738Sbellard if (!drv->bdrv_is_inserted) 4214a1aff5bfSMarkus Armbruster return 1; 4215a1aff5bfSMarkus Armbruster return drv->bdrv_is_inserted(bs); 421619cb3738Sbellard } 421719cb3738Sbellard 421819cb3738Sbellard /** 42198e49ca46SMarkus Armbruster * Return whether the media changed since the last call to this 42208e49ca46SMarkus Armbruster * function, or -ENOTSUP if we don't know. Most drivers don't know. 422119cb3738Sbellard */ 422219cb3738Sbellard int bdrv_media_changed(BlockDriverState *bs) 422319cb3738Sbellard { 422419cb3738Sbellard BlockDriver *drv = bs->drv; 422519cb3738Sbellard 42268e49ca46SMarkus Armbruster if (drv && drv->bdrv_media_changed) { 42278e49ca46SMarkus Armbruster return drv->bdrv_media_changed(bs); 42288e49ca46SMarkus Armbruster } 42298e49ca46SMarkus Armbruster return -ENOTSUP; 423019cb3738Sbellard } 423119cb3738Sbellard 423219cb3738Sbellard /** 423319cb3738Sbellard * If eject_flag is TRUE, eject the media. Otherwise, close the tray 423419cb3738Sbellard */ 4235f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag) 423619cb3738Sbellard { 423719cb3738Sbellard BlockDriver *drv = bs->drv; 423819cb3738Sbellard 4239822e1cd1SMarkus Armbruster if (drv && drv->bdrv_eject) { 4240822e1cd1SMarkus Armbruster drv->bdrv_eject(bs, eject_flag); 424119cb3738Sbellard } 42426f382ed2SLuiz Capitulino 42436f382ed2SLuiz Capitulino if (bs->device_name[0] != '\0') { 42446f382ed2SLuiz Capitulino bdrv_emit_qmp_eject_event(bs, eject_flag); 42456f382ed2SLuiz Capitulino } 424619cb3738Sbellard } 424719cb3738Sbellard 424819cb3738Sbellard /** 424919cb3738Sbellard * Lock or unlock the media (if it is locked, the user won't be able 425019cb3738Sbellard * to eject it manually). 425119cb3738Sbellard */ 4252025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked) 425319cb3738Sbellard { 425419cb3738Sbellard BlockDriver *drv = bs->drv; 425519cb3738Sbellard 4256025e849aSMarkus Armbruster trace_bdrv_lock_medium(bs, locked); 4257b8c6d095SStefan Hajnoczi 4258025e849aSMarkus Armbruster if (drv && drv->bdrv_lock_medium) { 4259025e849aSMarkus Armbruster drv->bdrv_lock_medium(bs, locked); 426019cb3738Sbellard } 426119cb3738Sbellard } 4262985a03b0Sths 4263985a03b0Sths /* needed for generic scsi interface */ 4264985a03b0Sths 4265985a03b0Sths int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf) 4266985a03b0Sths { 4267985a03b0Sths BlockDriver *drv = bs->drv; 4268985a03b0Sths 4269985a03b0Sths if (drv && drv->bdrv_ioctl) 4270985a03b0Sths return drv->bdrv_ioctl(bs, req, buf); 4271985a03b0Sths return -ENOTSUP; 4272985a03b0Sths } 42737d780669Saliguori 4274221f715dSaliguori BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs, 4275221f715dSaliguori unsigned long int req, void *buf, 42767d780669Saliguori BlockDriverCompletionFunc *cb, void *opaque) 42777d780669Saliguori { 4278221f715dSaliguori BlockDriver *drv = bs->drv; 42797d780669Saliguori 4280221f715dSaliguori if (drv && drv->bdrv_aio_ioctl) 4281221f715dSaliguori return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque); 4282221f715dSaliguori return NULL; 42837d780669Saliguori } 4284e268ca52Saliguori 42857b6f9300SMarkus Armbruster void bdrv_set_buffer_alignment(BlockDriverState *bs, int align) 42867b6f9300SMarkus Armbruster { 42877b6f9300SMarkus Armbruster bs->buffer_alignment = align; 42887b6f9300SMarkus Armbruster } 42897cd1e32aSlirans@il.ibm.com 4290e268ca52Saliguori void *qemu_blockalign(BlockDriverState *bs, size_t size) 4291e268ca52Saliguori { 4292e268ca52Saliguori return qemu_memalign((bs && bs->buffer_alignment) ? bs->buffer_alignment : 512, size); 4293e268ca52Saliguori } 42947cd1e32aSlirans@il.ibm.com 4295c53b1c51SStefan Hajnoczi /* 4296c53b1c51SStefan Hajnoczi * Check if all memory in this vector is sector aligned. 4297c53b1c51SStefan Hajnoczi */ 4298c53b1c51SStefan Hajnoczi bool bdrv_qiov_is_aligned(BlockDriverState *bs, QEMUIOVector *qiov) 4299c53b1c51SStefan Hajnoczi { 4300c53b1c51SStefan Hajnoczi int i; 4301c53b1c51SStefan Hajnoczi 4302c53b1c51SStefan Hajnoczi for (i = 0; i < qiov->niov; i++) { 4303c53b1c51SStefan Hajnoczi if ((uintptr_t) qiov->iov[i].iov_base % bs->buffer_alignment) { 4304c53b1c51SStefan Hajnoczi return false; 4305c53b1c51SStefan Hajnoczi } 4306c53b1c51SStefan Hajnoczi } 4307c53b1c51SStefan Hajnoczi 4308c53b1c51SStefan Hajnoczi return true; 4309c53b1c51SStefan Hajnoczi } 4310c53b1c51SStefan Hajnoczi 431150717e94SPaolo Bonzini void bdrv_set_dirty_tracking(BlockDriverState *bs, int granularity) 43127cd1e32aSlirans@il.ibm.com { 43137cd1e32aSlirans@il.ibm.com int64_t bitmap_size; 4314a55eb92cSJan Kiszka 431550717e94SPaolo Bonzini assert((granularity & (granularity - 1)) == 0); 431650717e94SPaolo Bonzini 431750717e94SPaolo Bonzini if (granularity) { 431850717e94SPaolo Bonzini granularity >>= BDRV_SECTOR_BITS; 431950717e94SPaolo Bonzini assert(!bs->dirty_bitmap); 43208f0720ecSPaolo Bonzini bitmap_size = (bdrv_getlength(bs) >> BDRV_SECTOR_BITS); 432150717e94SPaolo Bonzini bs->dirty_bitmap = hbitmap_alloc(bitmap_size, ffs(granularity) - 1); 43227cd1e32aSlirans@il.ibm.com } else { 4323c6d22830SJan Kiszka if (bs->dirty_bitmap) { 43248f0720ecSPaolo Bonzini hbitmap_free(bs->dirty_bitmap); 4325c6d22830SJan Kiszka bs->dirty_bitmap = NULL; 43267cd1e32aSlirans@il.ibm.com } 43277cd1e32aSlirans@il.ibm.com } 43287cd1e32aSlirans@il.ibm.com } 43297cd1e32aSlirans@il.ibm.com 43307cd1e32aSlirans@il.ibm.com int bdrv_get_dirty(BlockDriverState *bs, int64_t sector) 43317cd1e32aSlirans@il.ibm.com { 43328f0720ecSPaolo Bonzini if (bs->dirty_bitmap) { 43338f0720ecSPaolo Bonzini return hbitmap_get(bs->dirty_bitmap, sector); 43347cd1e32aSlirans@il.ibm.com } else { 43357cd1e32aSlirans@il.ibm.com return 0; 43367cd1e32aSlirans@il.ibm.com } 43377cd1e32aSlirans@il.ibm.com } 43387cd1e32aSlirans@il.ibm.com 43398f0720ecSPaolo Bonzini void bdrv_dirty_iter_init(BlockDriverState *bs, HBitmapIter *hbi) 43401755da16SPaolo Bonzini { 43418f0720ecSPaolo Bonzini hbitmap_iter_init(hbi, bs->dirty_bitmap, 0); 43421755da16SPaolo Bonzini } 43431755da16SPaolo Bonzini 43441755da16SPaolo Bonzini void bdrv_set_dirty(BlockDriverState *bs, int64_t cur_sector, 43451755da16SPaolo Bonzini int nr_sectors) 43461755da16SPaolo Bonzini { 43478f0720ecSPaolo Bonzini hbitmap_set(bs->dirty_bitmap, cur_sector, nr_sectors); 43481755da16SPaolo Bonzini } 43491755da16SPaolo Bonzini 43507cd1e32aSlirans@il.ibm.com void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector, 43517cd1e32aSlirans@il.ibm.com int nr_sectors) 43527cd1e32aSlirans@il.ibm.com { 43538f0720ecSPaolo Bonzini hbitmap_reset(bs->dirty_bitmap, cur_sector, nr_sectors); 43547cd1e32aSlirans@il.ibm.com } 4355aaa0eb75SLiran Schour 4356aaa0eb75SLiran Schour int64_t bdrv_get_dirty_count(BlockDriverState *bs) 4357aaa0eb75SLiran Schour { 43588f0720ecSPaolo Bonzini if (bs->dirty_bitmap) { 4359acc906c6SPaolo Bonzini return hbitmap_count(bs->dirty_bitmap); 43608f0720ecSPaolo Bonzini } else { 43618f0720ecSPaolo Bonzini return 0; 43628f0720ecSPaolo Bonzini } 4363aaa0eb75SLiran Schour } 4364f88e1a42SJes Sorensen 43659fcb0251SFam Zheng /* Get a reference to bs */ 43669fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs) 43679fcb0251SFam Zheng { 43689fcb0251SFam Zheng bs->refcnt++; 43699fcb0251SFam Zheng } 43709fcb0251SFam Zheng 43719fcb0251SFam Zheng /* Release a previously grabbed reference to bs. 43729fcb0251SFam Zheng * If after releasing, reference count is zero, the BlockDriverState is 43739fcb0251SFam Zheng * deleted. */ 43749fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs) 43759fcb0251SFam Zheng { 43769fcb0251SFam Zheng assert(bs->refcnt > 0); 43779fcb0251SFam Zheng if (--bs->refcnt == 0) { 43789fcb0251SFam Zheng bdrv_delete(bs); 43799fcb0251SFam Zheng } 43809fcb0251SFam Zheng } 43819fcb0251SFam Zheng 4382db593f25SMarcelo Tosatti void bdrv_set_in_use(BlockDriverState *bs, int in_use) 4383db593f25SMarcelo Tosatti { 4384db593f25SMarcelo Tosatti assert(bs->in_use != in_use); 4385db593f25SMarcelo Tosatti bs->in_use = in_use; 4386db593f25SMarcelo Tosatti } 4387db593f25SMarcelo Tosatti 4388db593f25SMarcelo Tosatti int bdrv_in_use(BlockDriverState *bs) 4389db593f25SMarcelo Tosatti { 4390db593f25SMarcelo Tosatti return bs->in_use; 4391db593f25SMarcelo Tosatti } 4392db593f25SMarcelo Tosatti 439328a7282aSLuiz Capitulino void bdrv_iostatus_enable(BlockDriverState *bs) 439428a7282aSLuiz Capitulino { 4395d6bf279eSLuiz Capitulino bs->iostatus_enabled = true; 439658e21ef5SLuiz Capitulino bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK; 439728a7282aSLuiz Capitulino } 439828a7282aSLuiz Capitulino 439928a7282aSLuiz Capitulino /* The I/O status is only enabled if the drive explicitly 440028a7282aSLuiz Capitulino * enables it _and_ the VM is configured to stop on errors */ 440128a7282aSLuiz Capitulino bool bdrv_iostatus_is_enabled(const BlockDriverState *bs) 440228a7282aSLuiz Capitulino { 4403d6bf279eSLuiz Capitulino return (bs->iostatus_enabled && 440492aa5c6dSPaolo Bonzini (bs->on_write_error == BLOCKDEV_ON_ERROR_ENOSPC || 440592aa5c6dSPaolo Bonzini bs->on_write_error == BLOCKDEV_ON_ERROR_STOP || 440692aa5c6dSPaolo Bonzini bs->on_read_error == BLOCKDEV_ON_ERROR_STOP)); 440728a7282aSLuiz Capitulino } 440828a7282aSLuiz Capitulino 440928a7282aSLuiz Capitulino void bdrv_iostatus_disable(BlockDriverState *bs) 441028a7282aSLuiz Capitulino { 4411d6bf279eSLuiz Capitulino bs->iostatus_enabled = false; 441228a7282aSLuiz Capitulino } 441328a7282aSLuiz Capitulino 441428a7282aSLuiz Capitulino void bdrv_iostatus_reset(BlockDriverState *bs) 441528a7282aSLuiz Capitulino { 441628a7282aSLuiz Capitulino if (bdrv_iostatus_is_enabled(bs)) { 441758e21ef5SLuiz Capitulino bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK; 44183bd293c3SPaolo Bonzini if (bs->job) { 44193bd293c3SPaolo Bonzini block_job_iostatus_reset(bs->job); 44203bd293c3SPaolo Bonzini } 442128a7282aSLuiz Capitulino } 442228a7282aSLuiz Capitulino } 442328a7282aSLuiz Capitulino 442428a7282aSLuiz Capitulino void bdrv_iostatus_set_err(BlockDriverState *bs, int error) 442528a7282aSLuiz Capitulino { 44263e1caa5fSPaolo Bonzini assert(bdrv_iostatus_is_enabled(bs)); 44273e1caa5fSPaolo Bonzini if (bs->iostatus == BLOCK_DEVICE_IO_STATUS_OK) { 442858e21ef5SLuiz Capitulino bs->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE : 442958e21ef5SLuiz Capitulino BLOCK_DEVICE_IO_STATUS_FAILED; 443028a7282aSLuiz Capitulino } 443128a7282aSLuiz Capitulino } 443228a7282aSLuiz Capitulino 4433a597e79cSChristoph Hellwig void 4434a597e79cSChristoph Hellwig bdrv_acct_start(BlockDriverState *bs, BlockAcctCookie *cookie, int64_t bytes, 4435a597e79cSChristoph Hellwig enum BlockAcctType type) 4436a597e79cSChristoph Hellwig { 4437a597e79cSChristoph Hellwig assert(type < BDRV_MAX_IOTYPE); 4438a597e79cSChristoph Hellwig 4439a597e79cSChristoph Hellwig cookie->bytes = bytes; 4440c488c7f6SChristoph Hellwig cookie->start_time_ns = get_clock(); 4441a597e79cSChristoph Hellwig cookie->type = type; 4442a597e79cSChristoph Hellwig } 4443a597e79cSChristoph Hellwig 4444a597e79cSChristoph Hellwig void 4445a597e79cSChristoph Hellwig bdrv_acct_done(BlockDriverState *bs, BlockAcctCookie *cookie) 4446a597e79cSChristoph Hellwig { 4447a597e79cSChristoph Hellwig assert(cookie->type < BDRV_MAX_IOTYPE); 4448a597e79cSChristoph Hellwig 4449a597e79cSChristoph Hellwig bs->nr_bytes[cookie->type] += cookie->bytes; 4450a597e79cSChristoph Hellwig bs->nr_ops[cookie->type]++; 4451c488c7f6SChristoph Hellwig bs->total_time_ns[cookie->type] += get_clock() - cookie->start_time_ns; 4452a597e79cSChristoph Hellwig } 4453a597e79cSChristoph Hellwig 4454d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt, 4455f88e1a42SJes Sorensen const char *base_filename, const char *base_fmt, 4456f382d43aSMiroslav Rezanina char *options, uint64_t img_size, int flags, 4457f382d43aSMiroslav Rezanina Error **errp, bool quiet) 4458f88e1a42SJes Sorensen { 4459f88e1a42SJes Sorensen QEMUOptionParameter *param = NULL, *create_options = NULL; 4460d220894eSKevin Wolf QEMUOptionParameter *backing_fmt, *backing_file, *size; 4461f88e1a42SJes Sorensen BlockDriverState *bs = NULL; 4462f88e1a42SJes Sorensen BlockDriver *drv, *proto_drv; 446396df67d1SStefan Hajnoczi BlockDriver *backing_drv = NULL; 4464f88e1a42SJes Sorensen int ret = 0; 4465f88e1a42SJes Sorensen 4466f88e1a42SJes Sorensen /* Find driver and parse its options */ 4467f88e1a42SJes Sorensen drv = bdrv_find_format(fmt); 4468f88e1a42SJes Sorensen if (!drv) { 446971c79813SLuiz Capitulino error_setg(errp, "Unknown file format '%s'", fmt); 4470d92ada22SLuiz Capitulino return; 4471f88e1a42SJes Sorensen } 4472f88e1a42SJes Sorensen 447398289620SKevin Wolf proto_drv = bdrv_find_protocol(filename, true); 4474f88e1a42SJes Sorensen if (!proto_drv) { 447571c79813SLuiz Capitulino error_setg(errp, "Unknown protocol '%s'", filename); 4476d92ada22SLuiz Capitulino return; 4477f88e1a42SJes Sorensen } 4478f88e1a42SJes Sorensen 4479f88e1a42SJes Sorensen create_options = append_option_parameters(create_options, 4480f88e1a42SJes Sorensen drv->create_options); 4481f88e1a42SJes Sorensen create_options = append_option_parameters(create_options, 4482f88e1a42SJes Sorensen proto_drv->create_options); 4483f88e1a42SJes Sorensen 4484f88e1a42SJes Sorensen /* Create parameter list with default values */ 4485f88e1a42SJes Sorensen param = parse_option_parameters("", create_options, param); 4486f88e1a42SJes Sorensen 4487f88e1a42SJes Sorensen set_option_parameter_int(param, BLOCK_OPT_SIZE, img_size); 4488f88e1a42SJes Sorensen 4489f88e1a42SJes Sorensen /* Parse -o options */ 4490f88e1a42SJes Sorensen if (options) { 4491f88e1a42SJes Sorensen param = parse_option_parameters(options, create_options, param); 4492f88e1a42SJes Sorensen if (param == NULL) { 449371c79813SLuiz Capitulino error_setg(errp, "Invalid options for file format '%s'.", fmt); 4494f88e1a42SJes Sorensen goto out; 4495f88e1a42SJes Sorensen } 4496f88e1a42SJes Sorensen } 4497f88e1a42SJes Sorensen 4498f88e1a42SJes Sorensen if (base_filename) { 4499f88e1a42SJes Sorensen if (set_option_parameter(param, BLOCK_OPT_BACKING_FILE, 4500f88e1a42SJes Sorensen base_filename)) { 450171c79813SLuiz Capitulino error_setg(errp, "Backing file not supported for file format '%s'", 450271c79813SLuiz Capitulino fmt); 4503f88e1a42SJes Sorensen goto out; 4504f88e1a42SJes Sorensen } 4505f88e1a42SJes Sorensen } 4506f88e1a42SJes Sorensen 4507f88e1a42SJes Sorensen if (base_fmt) { 4508f88e1a42SJes Sorensen if (set_option_parameter(param, BLOCK_OPT_BACKING_FMT, base_fmt)) { 450971c79813SLuiz Capitulino error_setg(errp, "Backing file format not supported for file " 451071c79813SLuiz Capitulino "format '%s'", fmt); 4511f88e1a42SJes Sorensen goto out; 4512f88e1a42SJes Sorensen } 4513f88e1a42SJes Sorensen } 4514f88e1a42SJes Sorensen 4515792da93aSJes Sorensen backing_file = get_option_parameter(param, BLOCK_OPT_BACKING_FILE); 4516792da93aSJes Sorensen if (backing_file && backing_file->value.s) { 4517792da93aSJes Sorensen if (!strcmp(filename, backing_file->value.s)) { 451871c79813SLuiz Capitulino error_setg(errp, "Error: Trying to create an image with the " 451971c79813SLuiz Capitulino "same filename as the backing file"); 4520792da93aSJes Sorensen goto out; 4521792da93aSJes Sorensen } 4522792da93aSJes Sorensen } 4523792da93aSJes Sorensen 4524f88e1a42SJes Sorensen backing_fmt = get_option_parameter(param, BLOCK_OPT_BACKING_FMT); 4525f88e1a42SJes Sorensen if (backing_fmt && backing_fmt->value.s) { 452696df67d1SStefan Hajnoczi backing_drv = bdrv_find_format(backing_fmt->value.s); 452796df67d1SStefan Hajnoczi if (!backing_drv) { 452871c79813SLuiz Capitulino error_setg(errp, "Unknown backing file format '%s'", 452971c79813SLuiz Capitulino backing_fmt->value.s); 4530f88e1a42SJes Sorensen goto out; 4531f88e1a42SJes Sorensen } 4532f88e1a42SJes Sorensen } 4533f88e1a42SJes Sorensen 4534f88e1a42SJes Sorensen // The size for the image must always be specified, with one exception: 4535f88e1a42SJes Sorensen // If we are using a backing file, we can obtain the size from there 4536d220894eSKevin Wolf size = get_option_parameter(param, BLOCK_OPT_SIZE); 4537d220894eSKevin Wolf if (size && size->value.n == -1) { 4538f88e1a42SJes Sorensen if (backing_file && backing_file->value.s) { 4539f88e1a42SJes Sorensen uint64_t size; 4540f88e1a42SJes Sorensen char buf[32]; 454163090dacSPaolo Bonzini int back_flags; 454263090dacSPaolo Bonzini 454363090dacSPaolo Bonzini /* backing files always opened read-only */ 454463090dacSPaolo Bonzini back_flags = 454563090dacSPaolo Bonzini flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); 4546f88e1a42SJes Sorensen 4547f88e1a42SJes Sorensen bs = bdrv_new(""); 4548f88e1a42SJes Sorensen 4549de9c0cecSKevin Wolf ret = bdrv_open(bs, backing_file->value.s, NULL, back_flags, 4550*34b5d2c6SMax Reitz backing_drv, NULL); 4551f88e1a42SJes Sorensen if (ret < 0) { 455271c79813SLuiz Capitulino error_setg_errno(errp, -ret, "Could not open '%s'", 455371c79813SLuiz Capitulino backing_file->value.s); 4554f88e1a42SJes Sorensen goto out; 4555f88e1a42SJes Sorensen } 4556f88e1a42SJes Sorensen bdrv_get_geometry(bs, &size); 4557f88e1a42SJes Sorensen size *= 512; 4558f88e1a42SJes Sorensen 4559f88e1a42SJes Sorensen snprintf(buf, sizeof(buf), "%" PRId64, size); 4560f88e1a42SJes Sorensen set_option_parameter(param, BLOCK_OPT_SIZE, buf); 4561f88e1a42SJes Sorensen } else { 456271c79813SLuiz Capitulino error_setg(errp, "Image creation needs a size parameter"); 4563f88e1a42SJes Sorensen goto out; 4564f88e1a42SJes Sorensen } 4565f88e1a42SJes Sorensen } 4566f88e1a42SJes Sorensen 4567f382d43aSMiroslav Rezanina if (!quiet) { 4568f88e1a42SJes Sorensen printf("Formatting '%s', fmt=%s ", filename, fmt); 4569f88e1a42SJes Sorensen print_option_parameters(param); 4570f88e1a42SJes Sorensen puts(""); 4571f382d43aSMiroslav Rezanina } 4572f88e1a42SJes Sorensen ret = bdrv_create(drv, filename, param); 4573f88e1a42SJes Sorensen if (ret < 0) { 4574f88e1a42SJes Sorensen if (ret == -ENOTSUP) { 457571c79813SLuiz Capitulino error_setg(errp,"Formatting or formatting option not supported for " 457671c79813SLuiz Capitulino "file format '%s'", fmt); 4577f88e1a42SJes Sorensen } else if (ret == -EFBIG) { 4578f3f4d2c0SKevin Wolf const char *cluster_size_hint = ""; 4579f3f4d2c0SKevin Wolf if (get_option_parameter(create_options, BLOCK_OPT_CLUSTER_SIZE)) { 4580f3f4d2c0SKevin Wolf cluster_size_hint = " (try using a larger cluster size)"; 4581f3f4d2c0SKevin Wolf } 4582f3f4d2c0SKevin Wolf error_setg(errp, "The image size is too large for file format '%s'%s", 4583f3f4d2c0SKevin Wolf fmt, cluster_size_hint); 4584f88e1a42SJes Sorensen } else { 458571c79813SLuiz Capitulino error_setg(errp, "%s: error while creating %s: %s", filename, fmt, 458671c79813SLuiz Capitulino strerror(-ret)); 4587f88e1a42SJes Sorensen } 4588f88e1a42SJes Sorensen } 4589f88e1a42SJes Sorensen 4590f88e1a42SJes Sorensen out: 4591f88e1a42SJes Sorensen free_option_parameters(create_options); 4592f88e1a42SJes Sorensen free_option_parameters(param); 4593f88e1a42SJes Sorensen 4594f88e1a42SJes Sorensen if (bs) { 45954f6fd349SFam Zheng bdrv_unref(bs); 4596f88e1a42SJes Sorensen } 4597f88e1a42SJes Sorensen } 459885d126f3SStefan Hajnoczi 459985d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs) 460085d126f3SStefan Hajnoczi { 460185d126f3SStefan Hajnoczi /* Currently BlockDriverState always uses the main loop AioContext */ 460285d126f3SStefan Hajnoczi return qemu_get_aio_context(); 460385d126f3SStefan Hajnoczi } 4604d616b224SStefan Hajnoczi 4605d616b224SStefan Hajnoczi void bdrv_add_before_write_notifier(BlockDriverState *bs, 4606d616b224SStefan Hajnoczi NotifierWithReturn *notifier) 4607d616b224SStefan Hajnoczi { 4608d616b224SStefan Hajnoczi notifier_with_return_list_add(&bs->before_write_notifiers, notifier); 4609d616b224SStefan Hajnoczi } 46106f176b48SMax Reitz 46116f176b48SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QEMUOptionParameter *options) 46126f176b48SMax Reitz { 46136f176b48SMax Reitz if (bs->drv->bdrv_amend_options == NULL) { 46146f176b48SMax Reitz return -ENOTSUP; 46156f176b48SMax Reitz } 46166f176b48SMax Reitz return bs->drv->bdrv_amend_options(bs, options); 46176f176b48SMax Reitz } 4618