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 8998f90dbaSZhi Yong Wu static bool bdrv_exceed_bps_limits(BlockDriverState *bs, int nb_sectors, 9098f90dbaSZhi Yong Wu bool is_write, double elapsed_time, uint64_t *wait); 9198f90dbaSZhi Yong Wu static bool bdrv_exceed_iops_limits(BlockDriverState *bs, bool is_write, 9298f90dbaSZhi Yong Wu double elapsed_time, uint64_t *wait); 9398f90dbaSZhi Yong Wu static bool bdrv_exceed_io_limits(BlockDriverState *bs, int nb_sectors, 9498f90dbaSZhi Yong Wu bool is_write, int64_t *wait); 9598f90dbaSZhi Yong Wu 961b7bdbc1SStefan Hajnoczi static QTAILQ_HEAD(, BlockDriverState) bdrv_states = 971b7bdbc1SStefan Hajnoczi QTAILQ_HEAD_INITIALIZER(bdrv_states); 987ee930d0Sblueswir1 998a22f02aSStefan Hajnoczi static QLIST_HEAD(, BlockDriver) bdrv_drivers = 1008a22f02aSStefan Hajnoczi QLIST_HEAD_INITIALIZER(bdrv_drivers); 101ea2384d3Sbellard 102f9092b10SMarkus Armbruster /* The device to use for VM snapshots */ 103f9092b10SMarkus Armbruster static BlockDriverState *bs_snapshots; 104f9092b10SMarkus Armbruster 105eb852011SMarkus Armbruster /* If non-zero, use only whitelisted block drivers */ 106eb852011SMarkus Armbruster static int use_bdrv_whitelist; 107eb852011SMarkus Armbruster 1089e0b22f4SStefan Hajnoczi #ifdef _WIN32 1099e0b22f4SStefan Hajnoczi static int is_windows_drive_prefix(const char *filename) 1109e0b22f4SStefan Hajnoczi { 1119e0b22f4SStefan Hajnoczi return (((filename[0] >= 'a' && filename[0] <= 'z') || 1129e0b22f4SStefan Hajnoczi (filename[0] >= 'A' && filename[0] <= 'Z')) && 1139e0b22f4SStefan Hajnoczi filename[1] == ':'); 1149e0b22f4SStefan Hajnoczi } 1159e0b22f4SStefan Hajnoczi 1169e0b22f4SStefan Hajnoczi int is_windows_drive(const char *filename) 1179e0b22f4SStefan Hajnoczi { 1189e0b22f4SStefan Hajnoczi if (is_windows_drive_prefix(filename) && 1199e0b22f4SStefan Hajnoczi filename[2] == '\0') 1209e0b22f4SStefan Hajnoczi return 1; 1219e0b22f4SStefan Hajnoczi if (strstart(filename, "\\\\.\\", NULL) || 1229e0b22f4SStefan Hajnoczi strstart(filename, "//./", NULL)) 1239e0b22f4SStefan Hajnoczi return 1; 1249e0b22f4SStefan Hajnoczi return 0; 1259e0b22f4SStefan Hajnoczi } 1269e0b22f4SStefan Hajnoczi #endif 1279e0b22f4SStefan Hajnoczi 1280563e191SZhi Yong Wu /* throttling disk I/O limits */ 12998f90dbaSZhi Yong Wu void bdrv_io_limits_disable(BlockDriverState *bs) 13098f90dbaSZhi Yong Wu { 13198f90dbaSZhi Yong Wu bs->io_limits_enabled = false; 13298f90dbaSZhi Yong Wu 13398f90dbaSZhi Yong Wu while (qemu_co_queue_next(&bs->throttled_reqs)); 13498f90dbaSZhi Yong Wu 13598f90dbaSZhi Yong Wu if (bs->block_timer) { 13698f90dbaSZhi Yong Wu qemu_del_timer(bs->block_timer); 13798f90dbaSZhi Yong Wu qemu_free_timer(bs->block_timer); 13898f90dbaSZhi Yong Wu bs->block_timer = NULL; 13998f90dbaSZhi Yong Wu } 14098f90dbaSZhi Yong Wu 14198f90dbaSZhi Yong Wu bs->slice_start = 0; 14298f90dbaSZhi Yong Wu bs->slice_end = 0; 14398f90dbaSZhi Yong Wu bs->slice_time = 0; 14498f90dbaSZhi Yong Wu } 14598f90dbaSZhi Yong Wu 1460563e191SZhi Yong Wu static void bdrv_block_timer(void *opaque) 1470563e191SZhi Yong Wu { 1480563e191SZhi Yong Wu BlockDriverState *bs = opaque; 1490563e191SZhi Yong Wu 1500563e191SZhi Yong Wu qemu_co_queue_next(&bs->throttled_reqs); 1510563e191SZhi Yong Wu } 1520563e191SZhi Yong Wu 1530563e191SZhi Yong Wu void bdrv_io_limits_enable(BlockDriverState *bs) 1540563e191SZhi Yong Wu { 1550563e191SZhi Yong Wu qemu_co_queue_init(&bs->throttled_reqs); 1560563e191SZhi Yong Wu bs->block_timer = qemu_new_timer_ns(vm_clock, bdrv_block_timer, bs); 1570563e191SZhi Yong Wu bs->io_limits_enabled = true; 1580563e191SZhi Yong Wu } 1590563e191SZhi Yong Wu 1600563e191SZhi Yong Wu bool bdrv_io_limits_enabled(BlockDriverState *bs) 1610563e191SZhi Yong Wu { 1620563e191SZhi Yong Wu BlockIOLimit *io_limits = &bs->io_limits; 1630563e191SZhi Yong Wu return io_limits->bps[BLOCK_IO_LIMIT_READ] 1640563e191SZhi Yong Wu || io_limits->bps[BLOCK_IO_LIMIT_WRITE] 1650563e191SZhi Yong Wu || io_limits->bps[BLOCK_IO_LIMIT_TOTAL] 1660563e191SZhi Yong Wu || io_limits->iops[BLOCK_IO_LIMIT_READ] 1670563e191SZhi Yong Wu || io_limits->iops[BLOCK_IO_LIMIT_WRITE] 1680563e191SZhi Yong Wu || io_limits->iops[BLOCK_IO_LIMIT_TOTAL]; 1690563e191SZhi Yong Wu } 1700563e191SZhi Yong Wu 17198f90dbaSZhi Yong Wu static void bdrv_io_limits_intercept(BlockDriverState *bs, 17298f90dbaSZhi Yong Wu bool is_write, int nb_sectors) 17398f90dbaSZhi Yong Wu { 17498f90dbaSZhi Yong Wu int64_t wait_time = -1; 17598f90dbaSZhi Yong Wu 17698f90dbaSZhi Yong Wu if (!qemu_co_queue_empty(&bs->throttled_reqs)) { 17798f90dbaSZhi Yong Wu qemu_co_queue_wait(&bs->throttled_reqs); 17898f90dbaSZhi Yong Wu } 17998f90dbaSZhi Yong Wu 18098f90dbaSZhi Yong Wu /* In fact, we hope to keep each request's timing, in FIFO mode. The next 18198f90dbaSZhi Yong Wu * throttled requests will not be dequeued until the current request is 18298f90dbaSZhi Yong Wu * allowed to be serviced. So if the current request still exceeds the 18398f90dbaSZhi Yong Wu * limits, it will be inserted to the head. All requests followed it will 18498f90dbaSZhi Yong Wu * be still in throttled_reqs queue. 18598f90dbaSZhi Yong Wu */ 18698f90dbaSZhi Yong Wu 18798f90dbaSZhi Yong Wu while (bdrv_exceed_io_limits(bs, nb_sectors, is_write, &wait_time)) { 18898f90dbaSZhi Yong Wu qemu_mod_timer(bs->block_timer, 18998f90dbaSZhi Yong Wu wait_time + qemu_get_clock_ns(vm_clock)); 19098f90dbaSZhi Yong Wu qemu_co_queue_wait_insert_head(&bs->throttled_reqs); 19198f90dbaSZhi Yong Wu } 19298f90dbaSZhi Yong Wu 19398f90dbaSZhi Yong Wu qemu_co_queue_next(&bs->throttled_reqs); 19498f90dbaSZhi Yong Wu } 19598f90dbaSZhi Yong Wu 1969e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */ 1979e0b22f4SStefan Hajnoczi static int path_has_protocol(const char *path) 1989e0b22f4SStefan Hajnoczi { 199947995c0SPaolo Bonzini const char *p; 200947995c0SPaolo Bonzini 2019e0b22f4SStefan Hajnoczi #ifdef _WIN32 2029e0b22f4SStefan Hajnoczi if (is_windows_drive(path) || 2039e0b22f4SStefan Hajnoczi is_windows_drive_prefix(path)) { 2049e0b22f4SStefan Hajnoczi return 0; 2059e0b22f4SStefan Hajnoczi } 206947995c0SPaolo Bonzini p = path + strcspn(path, ":/\\"); 207947995c0SPaolo Bonzini #else 208947995c0SPaolo Bonzini p = path + strcspn(path, ":/"); 2099e0b22f4SStefan Hajnoczi #endif 2109e0b22f4SStefan Hajnoczi 211947995c0SPaolo Bonzini return *p == ':'; 2129e0b22f4SStefan Hajnoczi } 2139e0b22f4SStefan Hajnoczi 21483f64091Sbellard int path_is_absolute(const char *path) 21583f64091Sbellard { 21621664424Sbellard #ifdef _WIN32 21721664424Sbellard /* specific case for names like: "\\.\d:" */ 218f53f4da9SPaolo Bonzini if (is_windows_drive(path) || is_windows_drive_prefix(path)) { 21921664424Sbellard return 1; 220f53f4da9SPaolo Bonzini } 221f53f4da9SPaolo Bonzini return (*path == '/' || *path == '\\'); 2223b9f94e1Sbellard #else 223f53f4da9SPaolo Bonzini return (*path == '/'); 2243b9f94e1Sbellard #endif 22583f64091Sbellard } 22683f64091Sbellard 22783f64091Sbellard /* if filename is absolute, just copy it to dest. Otherwise, build a 22883f64091Sbellard path to it by considering it is relative to base_path. URL are 22983f64091Sbellard supported. */ 23083f64091Sbellard void path_combine(char *dest, int dest_size, 23183f64091Sbellard const char *base_path, 23283f64091Sbellard const char *filename) 23383f64091Sbellard { 23483f64091Sbellard const char *p, *p1; 23583f64091Sbellard int len; 23683f64091Sbellard 23783f64091Sbellard if (dest_size <= 0) 23883f64091Sbellard return; 23983f64091Sbellard if (path_is_absolute(filename)) { 24083f64091Sbellard pstrcpy(dest, dest_size, filename); 24183f64091Sbellard } else { 24283f64091Sbellard p = strchr(base_path, ':'); 24383f64091Sbellard if (p) 24483f64091Sbellard p++; 24583f64091Sbellard else 24683f64091Sbellard p = base_path; 2473b9f94e1Sbellard p1 = strrchr(base_path, '/'); 2483b9f94e1Sbellard #ifdef _WIN32 2493b9f94e1Sbellard { 2503b9f94e1Sbellard const char *p2; 2513b9f94e1Sbellard p2 = strrchr(base_path, '\\'); 2523b9f94e1Sbellard if (!p1 || p2 > p1) 2533b9f94e1Sbellard p1 = p2; 2543b9f94e1Sbellard } 2553b9f94e1Sbellard #endif 25683f64091Sbellard if (p1) 25783f64091Sbellard p1++; 25883f64091Sbellard else 25983f64091Sbellard p1 = base_path; 26083f64091Sbellard if (p1 > p) 26183f64091Sbellard p = p1; 26283f64091Sbellard len = p - base_path; 26383f64091Sbellard if (len > dest_size - 1) 26483f64091Sbellard len = dest_size - 1; 26583f64091Sbellard memcpy(dest, base_path, len); 26683f64091Sbellard dest[len] = '\0'; 26783f64091Sbellard pstrcat(dest, dest_size, filename); 26883f64091Sbellard } 26983f64091Sbellard } 27083f64091Sbellard 271dc5a1371SPaolo Bonzini void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz) 272dc5a1371SPaolo Bonzini { 273dc5a1371SPaolo Bonzini if (bs->backing_file[0] == '\0' || path_has_protocol(bs->backing_file)) { 274dc5a1371SPaolo Bonzini pstrcpy(dest, sz, bs->backing_file); 275dc5a1371SPaolo Bonzini } else { 276dc5a1371SPaolo Bonzini path_combine(dest, sz, bs->filename, bs->backing_file); 277dc5a1371SPaolo Bonzini } 278dc5a1371SPaolo Bonzini } 279dc5a1371SPaolo Bonzini 2805efa9d5aSAnthony Liguori void bdrv_register(BlockDriver *bdrv) 281ea2384d3Sbellard { 2828c5873d6SStefan Hajnoczi /* Block drivers without coroutine functions need emulation */ 2838c5873d6SStefan Hajnoczi if (!bdrv->bdrv_co_readv) { 284f9f05dc5SKevin Wolf bdrv->bdrv_co_readv = bdrv_co_readv_em; 285f9f05dc5SKevin Wolf bdrv->bdrv_co_writev = bdrv_co_writev_em; 286f9f05dc5SKevin Wolf 287f8c35c1dSStefan Hajnoczi /* bdrv_co_readv_em()/brdv_co_writev_em() work in terms of aio, so if 288f8c35c1dSStefan Hajnoczi * the block driver lacks aio we need to emulate that too. 289f8c35c1dSStefan Hajnoczi */ 290f9f05dc5SKevin Wolf if (!bdrv->bdrv_aio_readv) { 29183f64091Sbellard /* add AIO emulation layer */ 292f141eafeSaliguori bdrv->bdrv_aio_readv = bdrv_aio_readv_em; 293f141eafeSaliguori bdrv->bdrv_aio_writev = bdrv_aio_writev_em; 29483f64091Sbellard } 295f9f05dc5SKevin Wolf } 296b2e12bc6SChristoph Hellwig 2978a22f02aSStefan Hajnoczi QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list); 298ea2384d3Sbellard } 299b338082bSbellard 300b338082bSbellard /* create a new block device (by default it is empty) */ 301b338082bSbellard BlockDriverState *bdrv_new(const char *device_name) 302fc01f7e7Sbellard { 3031b7bdbc1SStefan Hajnoczi BlockDriverState *bs; 304b338082bSbellard 3057267c094SAnthony Liguori bs = g_malloc0(sizeof(BlockDriverState)); 306b338082bSbellard pstrcpy(bs->device_name, sizeof(bs->device_name), device_name); 307ea2384d3Sbellard if (device_name[0] != '\0') { 3081b7bdbc1SStefan Hajnoczi QTAILQ_INSERT_TAIL(&bdrv_states, bs, list); 309ea2384d3Sbellard } 31028a7282aSLuiz Capitulino bdrv_iostatus_disable(bs); 311d7d512f6SPaolo Bonzini notifier_list_init(&bs->close_notifiers); 312d7d512f6SPaolo Bonzini 313b338082bSbellard return bs; 314b338082bSbellard } 315b338082bSbellard 316d7d512f6SPaolo Bonzini void bdrv_add_close_notifier(BlockDriverState *bs, Notifier *notify) 317d7d512f6SPaolo Bonzini { 318d7d512f6SPaolo Bonzini notifier_list_add(&bs->close_notifiers, notify); 319d7d512f6SPaolo Bonzini } 320d7d512f6SPaolo Bonzini 321ea2384d3Sbellard BlockDriver *bdrv_find_format(const char *format_name) 322ea2384d3Sbellard { 323ea2384d3Sbellard BlockDriver *drv1; 3248a22f02aSStefan Hajnoczi QLIST_FOREACH(drv1, &bdrv_drivers, list) { 3258a22f02aSStefan Hajnoczi if (!strcmp(drv1->format_name, format_name)) { 326ea2384d3Sbellard return drv1; 327ea2384d3Sbellard } 3288a22f02aSStefan Hajnoczi } 329ea2384d3Sbellard return NULL; 330ea2384d3Sbellard } 331ea2384d3Sbellard 332eb852011SMarkus Armbruster static int bdrv_is_whitelisted(BlockDriver *drv) 333eb852011SMarkus Armbruster { 334eb852011SMarkus Armbruster static const char *whitelist[] = { 335eb852011SMarkus Armbruster CONFIG_BDRV_WHITELIST 336eb852011SMarkus Armbruster }; 337eb852011SMarkus Armbruster const char **p; 338eb852011SMarkus Armbruster 339eb852011SMarkus Armbruster if (!whitelist[0]) 340eb852011SMarkus Armbruster return 1; /* no whitelist, anything goes */ 341eb852011SMarkus Armbruster 342eb852011SMarkus Armbruster for (p = whitelist; *p; p++) { 343eb852011SMarkus Armbruster if (!strcmp(drv->format_name, *p)) { 344eb852011SMarkus Armbruster return 1; 345eb852011SMarkus Armbruster } 346eb852011SMarkus Armbruster } 347eb852011SMarkus Armbruster return 0; 348eb852011SMarkus Armbruster } 349eb852011SMarkus Armbruster 350eb852011SMarkus Armbruster BlockDriver *bdrv_find_whitelisted_format(const char *format_name) 351eb852011SMarkus Armbruster { 352eb852011SMarkus Armbruster BlockDriver *drv = bdrv_find_format(format_name); 353eb852011SMarkus Armbruster return drv && bdrv_is_whitelisted(drv) ? drv : NULL; 354eb852011SMarkus Armbruster } 355eb852011SMarkus Armbruster 3565b7e1542SZhi Yong Wu typedef struct CreateCo { 3575b7e1542SZhi Yong Wu BlockDriver *drv; 3585b7e1542SZhi Yong Wu char *filename; 3595b7e1542SZhi Yong Wu QEMUOptionParameter *options; 3605b7e1542SZhi Yong Wu int ret; 3615b7e1542SZhi Yong Wu } CreateCo; 3625b7e1542SZhi Yong Wu 3635b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque) 3645b7e1542SZhi Yong Wu { 3655b7e1542SZhi Yong Wu CreateCo *cco = opaque; 3665b7e1542SZhi Yong Wu assert(cco->drv); 3675b7e1542SZhi Yong Wu 3685b7e1542SZhi Yong Wu cco->ret = cco->drv->bdrv_create(cco->filename, cco->options); 3695b7e1542SZhi Yong Wu } 3705b7e1542SZhi Yong Wu 3710e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename, 3720e7e1989SKevin Wolf QEMUOptionParameter *options) 373ea2384d3Sbellard { 3745b7e1542SZhi Yong Wu int ret; 3750e7e1989SKevin Wolf 3765b7e1542SZhi Yong Wu Coroutine *co; 3775b7e1542SZhi Yong Wu CreateCo cco = { 3785b7e1542SZhi Yong Wu .drv = drv, 3795b7e1542SZhi Yong Wu .filename = g_strdup(filename), 3805b7e1542SZhi Yong Wu .options = options, 3815b7e1542SZhi Yong Wu .ret = NOT_DONE, 3825b7e1542SZhi Yong Wu }; 3835b7e1542SZhi Yong Wu 3845b7e1542SZhi Yong Wu if (!drv->bdrv_create) { 38580168bffSLuiz Capitulino ret = -ENOTSUP; 38680168bffSLuiz Capitulino goto out; 3875b7e1542SZhi Yong Wu } 3885b7e1542SZhi Yong Wu 3895b7e1542SZhi Yong Wu if (qemu_in_coroutine()) { 3905b7e1542SZhi Yong Wu /* Fast-path if already in coroutine context */ 3915b7e1542SZhi Yong Wu bdrv_create_co_entry(&cco); 3925b7e1542SZhi Yong Wu } else { 3935b7e1542SZhi Yong Wu co = qemu_coroutine_create(bdrv_create_co_entry); 3945b7e1542SZhi Yong Wu qemu_coroutine_enter(co, &cco); 3955b7e1542SZhi Yong Wu while (cco.ret == NOT_DONE) { 3965b7e1542SZhi Yong Wu qemu_aio_wait(); 3975b7e1542SZhi Yong Wu } 3985b7e1542SZhi Yong Wu } 3995b7e1542SZhi Yong Wu 4005b7e1542SZhi Yong Wu ret = cco.ret; 4015b7e1542SZhi Yong Wu 40280168bffSLuiz Capitulino out: 40380168bffSLuiz Capitulino g_free(cco.filename); 4045b7e1542SZhi Yong Wu return ret; 405ea2384d3Sbellard } 406ea2384d3Sbellard 40784a12e66SChristoph Hellwig int bdrv_create_file(const char* filename, QEMUOptionParameter *options) 40884a12e66SChristoph Hellwig { 40984a12e66SChristoph Hellwig BlockDriver *drv; 41084a12e66SChristoph Hellwig 411b50cbabcSMORITA Kazutaka drv = bdrv_find_protocol(filename); 41284a12e66SChristoph Hellwig if (drv == NULL) { 41316905d71SStefan Hajnoczi return -ENOENT; 41484a12e66SChristoph Hellwig } 41584a12e66SChristoph Hellwig 41684a12e66SChristoph Hellwig return bdrv_create(drv, filename, options); 41784a12e66SChristoph Hellwig } 41884a12e66SChristoph Hellwig 419eba25057SJim Meyering /* 420eba25057SJim Meyering * Create a uniquely-named empty temporary file. 421eba25057SJim Meyering * Return 0 upon success, otherwise a negative errno value. 422eba25057SJim Meyering */ 423eba25057SJim Meyering int get_tmp_filename(char *filename, int size) 424eba25057SJim Meyering { 425d5249393Sbellard #ifdef _WIN32 4263b9f94e1Sbellard char temp_dir[MAX_PATH]; 427eba25057SJim Meyering /* GetTempFileName requires that its output buffer (4th param) 428eba25057SJim Meyering have length MAX_PATH or greater. */ 429eba25057SJim Meyering assert(size >= MAX_PATH); 430eba25057SJim Meyering return (GetTempPath(MAX_PATH, temp_dir) 431eba25057SJim Meyering && GetTempFileName(temp_dir, "qem", 0, filename) 432eba25057SJim Meyering ? 0 : -GetLastError()); 433d5249393Sbellard #else 434ea2384d3Sbellard int fd; 4357ccfb2ebSblueswir1 const char *tmpdir; 4360badc1eeSaurel32 tmpdir = getenv("TMPDIR"); 4370badc1eeSaurel32 if (!tmpdir) 4380badc1eeSaurel32 tmpdir = "/tmp"; 439eba25057SJim Meyering if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) { 440eba25057SJim Meyering return -EOVERFLOW; 441ea2384d3Sbellard } 442eba25057SJim Meyering fd = mkstemp(filename); 443fe235a06SDunrong Huang if (fd < 0) { 444fe235a06SDunrong Huang return -errno; 445fe235a06SDunrong Huang } 446fe235a06SDunrong Huang if (close(fd) != 0) { 447fe235a06SDunrong Huang unlink(filename); 448eba25057SJim Meyering return -errno; 449eba25057SJim Meyering } 450eba25057SJim Meyering return 0; 451d5249393Sbellard #endif 452eba25057SJim Meyering } 453ea2384d3Sbellard 454f3a5d3f8SChristoph Hellwig /* 455f3a5d3f8SChristoph Hellwig * Detect host devices. By convention, /dev/cdrom[N] is always 456f3a5d3f8SChristoph Hellwig * recognized as a host CDROM. 457f3a5d3f8SChristoph Hellwig */ 458f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename) 459f3a5d3f8SChristoph Hellwig { 460508c7cb3SChristoph Hellwig int score_max = 0, score; 461508c7cb3SChristoph Hellwig BlockDriver *drv = NULL, *d; 462f3a5d3f8SChristoph Hellwig 4638a22f02aSStefan Hajnoczi QLIST_FOREACH(d, &bdrv_drivers, list) { 464508c7cb3SChristoph Hellwig if (d->bdrv_probe_device) { 465508c7cb3SChristoph Hellwig score = d->bdrv_probe_device(filename); 466508c7cb3SChristoph Hellwig if (score > score_max) { 467508c7cb3SChristoph Hellwig score_max = score; 468508c7cb3SChristoph Hellwig drv = d; 469f3a5d3f8SChristoph Hellwig } 470508c7cb3SChristoph Hellwig } 471f3a5d3f8SChristoph Hellwig } 472f3a5d3f8SChristoph Hellwig 473508c7cb3SChristoph Hellwig return drv; 474f3a5d3f8SChristoph Hellwig } 475f3a5d3f8SChristoph Hellwig 476b50cbabcSMORITA Kazutaka BlockDriver *bdrv_find_protocol(const char *filename) 47784a12e66SChristoph Hellwig { 47884a12e66SChristoph Hellwig BlockDriver *drv1; 47984a12e66SChristoph Hellwig char protocol[128]; 48084a12e66SChristoph Hellwig int len; 48184a12e66SChristoph Hellwig const char *p; 48284a12e66SChristoph Hellwig 48366f82ceeSKevin Wolf /* TODO Drivers without bdrv_file_open must be specified explicitly */ 48466f82ceeSKevin Wolf 48539508e7aSChristoph Hellwig /* 48639508e7aSChristoph Hellwig * XXX(hch): we really should not let host device detection 48739508e7aSChristoph Hellwig * override an explicit protocol specification, but moving this 48839508e7aSChristoph Hellwig * later breaks access to device names with colons in them. 48939508e7aSChristoph Hellwig * Thanks to the brain-dead persistent naming schemes on udev- 49039508e7aSChristoph Hellwig * based Linux systems those actually are quite common. 49139508e7aSChristoph Hellwig */ 49284a12e66SChristoph Hellwig drv1 = find_hdev_driver(filename); 49339508e7aSChristoph Hellwig if (drv1) { 49484a12e66SChristoph Hellwig return drv1; 49584a12e66SChristoph Hellwig } 49639508e7aSChristoph Hellwig 4979e0b22f4SStefan Hajnoczi if (!path_has_protocol(filename)) { 49839508e7aSChristoph Hellwig return bdrv_find_format("file"); 49939508e7aSChristoph Hellwig } 5009e0b22f4SStefan Hajnoczi p = strchr(filename, ':'); 5019e0b22f4SStefan Hajnoczi assert(p != NULL); 50284a12e66SChristoph Hellwig len = p - filename; 50384a12e66SChristoph Hellwig if (len > sizeof(protocol) - 1) 50484a12e66SChristoph Hellwig len = sizeof(protocol) - 1; 50584a12e66SChristoph Hellwig memcpy(protocol, filename, len); 50684a12e66SChristoph Hellwig protocol[len] = '\0'; 50784a12e66SChristoph Hellwig QLIST_FOREACH(drv1, &bdrv_drivers, list) { 50884a12e66SChristoph Hellwig if (drv1->protocol_name && 50984a12e66SChristoph Hellwig !strcmp(drv1->protocol_name, protocol)) { 51084a12e66SChristoph Hellwig return drv1; 51184a12e66SChristoph Hellwig } 51284a12e66SChristoph Hellwig } 51384a12e66SChristoph Hellwig return NULL; 51484a12e66SChristoph Hellwig } 51584a12e66SChristoph Hellwig 516f500a6d3SKevin Wolf static int find_image_format(BlockDriverState *bs, const char *filename, 517f500a6d3SKevin Wolf BlockDriver **pdrv) 518ea2384d3Sbellard { 519f500a6d3SKevin Wolf int score, score_max; 520ea2384d3Sbellard BlockDriver *drv1, *drv; 52183f64091Sbellard uint8_t buf[2048]; 522f500a6d3SKevin Wolf int ret = 0; 523f8ea0b00SNicholas Bellinger 52408a00559SKevin Wolf /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ 5258e895599SPaolo Bonzini if (bs->sg || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) { 526c98ac35dSStefan Weil drv = bdrv_find_format("raw"); 527c98ac35dSStefan Weil if (!drv) { 528c98ac35dSStefan Weil ret = -ENOENT; 529c98ac35dSStefan Weil } 530c98ac35dSStefan Weil *pdrv = drv; 531c98ac35dSStefan Weil return ret; 5321a396859SNicholas A. Bellinger } 533f8ea0b00SNicholas Bellinger 53483f64091Sbellard ret = bdrv_pread(bs, 0, buf, sizeof(buf)); 535ea2384d3Sbellard if (ret < 0) { 536c98ac35dSStefan Weil *pdrv = NULL; 537c98ac35dSStefan Weil return ret; 538ea2384d3Sbellard } 539ea2384d3Sbellard 540ea2384d3Sbellard score_max = 0; 54184a12e66SChristoph Hellwig drv = NULL; 5428a22f02aSStefan Hajnoczi QLIST_FOREACH(drv1, &bdrv_drivers, list) { 54383f64091Sbellard if (drv1->bdrv_probe) { 544ea2384d3Sbellard score = drv1->bdrv_probe(buf, ret, filename); 545ea2384d3Sbellard if (score > score_max) { 546ea2384d3Sbellard score_max = score; 547ea2384d3Sbellard drv = drv1; 548ea2384d3Sbellard } 549ea2384d3Sbellard } 55083f64091Sbellard } 551c98ac35dSStefan Weil if (!drv) { 552c98ac35dSStefan Weil ret = -ENOENT; 553c98ac35dSStefan Weil } 554c98ac35dSStefan Weil *pdrv = drv; 555c98ac35dSStefan Weil return ret; 556ea2384d3Sbellard } 557ea2384d3Sbellard 55851762288SStefan Hajnoczi /** 55951762288SStefan Hajnoczi * Set the current 'total_sectors' value 56051762288SStefan Hajnoczi */ 56151762288SStefan Hajnoczi static int refresh_total_sectors(BlockDriverState *bs, int64_t hint) 56251762288SStefan Hajnoczi { 56351762288SStefan Hajnoczi BlockDriver *drv = bs->drv; 56451762288SStefan Hajnoczi 565396759adSNicholas Bellinger /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */ 566396759adSNicholas Bellinger if (bs->sg) 567396759adSNicholas Bellinger return 0; 568396759adSNicholas Bellinger 56951762288SStefan Hajnoczi /* query actual device if possible, otherwise just trust the hint */ 57051762288SStefan Hajnoczi if (drv->bdrv_getlength) { 57151762288SStefan Hajnoczi int64_t length = drv->bdrv_getlength(bs); 57251762288SStefan Hajnoczi if (length < 0) { 57351762288SStefan Hajnoczi return length; 57451762288SStefan Hajnoczi } 57551762288SStefan Hajnoczi hint = length >> BDRV_SECTOR_BITS; 57651762288SStefan Hajnoczi } 57751762288SStefan Hajnoczi 57851762288SStefan Hajnoczi bs->total_sectors = hint; 57951762288SStefan Hajnoczi return 0; 58051762288SStefan Hajnoczi } 58151762288SStefan Hajnoczi 582c3993cdcSStefan Hajnoczi /** 5839e8f1835SPaolo Bonzini * Set open flags for a given discard mode 5849e8f1835SPaolo Bonzini * 5859e8f1835SPaolo Bonzini * Return 0 on success, -1 if the discard mode was invalid. 5869e8f1835SPaolo Bonzini */ 5879e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags) 5889e8f1835SPaolo Bonzini { 5899e8f1835SPaolo Bonzini *flags &= ~BDRV_O_UNMAP; 5909e8f1835SPaolo Bonzini 5919e8f1835SPaolo Bonzini if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) { 5929e8f1835SPaolo Bonzini /* do nothing */ 5939e8f1835SPaolo Bonzini } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) { 5949e8f1835SPaolo Bonzini *flags |= BDRV_O_UNMAP; 5959e8f1835SPaolo Bonzini } else { 5969e8f1835SPaolo Bonzini return -1; 5979e8f1835SPaolo Bonzini } 5989e8f1835SPaolo Bonzini 5999e8f1835SPaolo Bonzini return 0; 6009e8f1835SPaolo Bonzini } 6019e8f1835SPaolo Bonzini 6029e8f1835SPaolo Bonzini /** 603c3993cdcSStefan Hajnoczi * Set open flags for a given cache mode 604c3993cdcSStefan Hajnoczi * 605c3993cdcSStefan Hajnoczi * Return 0 on success, -1 if the cache mode was invalid. 606c3993cdcSStefan Hajnoczi */ 607c3993cdcSStefan Hajnoczi int bdrv_parse_cache_flags(const char *mode, int *flags) 608c3993cdcSStefan Hajnoczi { 609c3993cdcSStefan Hajnoczi *flags &= ~BDRV_O_CACHE_MASK; 610c3993cdcSStefan Hajnoczi 611c3993cdcSStefan Hajnoczi if (!strcmp(mode, "off") || !strcmp(mode, "none")) { 612c3993cdcSStefan Hajnoczi *flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB; 61392196b2fSStefan Hajnoczi } else if (!strcmp(mode, "directsync")) { 61492196b2fSStefan Hajnoczi *flags |= BDRV_O_NOCACHE; 615c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writeback")) { 616c3993cdcSStefan Hajnoczi *flags |= BDRV_O_CACHE_WB; 617c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "unsafe")) { 618c3993cdcSStefan Hajnoczi *flags |= BDRV_O_CACHE_WB; 619c3993cdcSStefan Hajnoczi *flags |= BDRV_O_NO_FLUSH; 620c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writethrough")) { 621c3993cdcSStefan Hajnoczi /* this is the default */ 622c3993cdcSStefan Hajnoczi } else { 623c3993cdcSStefan Hajnoczi return -1; 624c3993cdcSStefan Hajnoczi } 625c3993cdcSStefan Hajnoczi 626c3993cdcSStefan Hajnoczi return 0; 627c3993cdcSStefan Hajnoczi } 628c3993cdcSStefan Hajnoczi 62953fec9d3SStefan Hajnoczi /** 63053fec9d3SStefan Hajnoczi * The copy-on-read flag is actually a reference count so multiple users may 63153fec9d3SStefan Hajnoczi * use the feature without worrying about clobbering its previous state. 63253fec9d3SStefan Hajnoczi * Copy-on-read stays enabled until all users have called to disable it. 63353fec9d3SStefan Hajnoczi */ 63453fec9d3SStefan Hajnoczi void bdrv_enable_copy_on_read(BlockDriverState *bs) 63553fec9d3SStefan Hajnoczi { 63653fec9d3SStefan Hajnoczi bs->copy_on_read++; 63753fec9d3SStefan Hajnoczi } 63853fec9d3SStefan Hajnoczi 63953fec9d3SStefan Hajnoczi void bdrv_disable_copy_on_read(BlockDriverState *bs) 64053fec9d3SStefan Hajnoczi { 64153fec9d3SStefan Hajnoczi assert(bs->copy_on_read > 0); 64253fec9d3SStefan Hajnoczi bs->copy_on_read--; 64353fec9d3SStefan Hajnoczi } 64453fec9d3SStefan Hajnoczi 6457b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags) 6467b272452SKevin Wolf { 6477b272452SKevin Wolf int open_flags = flags | BDRV_O_CACHE_WB; 6487b272452SKevin Wolf 6497b272452SKevin Wolf /* 6507b272452SKevin Wolf * Clear flags that are internal to the block layer before opening the 6517b272452SKevin Wolf * image. 6527b272452SKevin Wolf */ 6537b272452SKevin Wolf open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); 6547b272452SKevin Wolf 6557b272452SKevin Wolf /* 6567b272452SKevin Wolf * Snapshots should be writable. 6577b272452SKevin Wolf */ 6587b272452SKevin Wolf if (bs->is_temporary) { 6597b272452SKevin Wolf open_flags |= BDRV_O_RDWR; 6607b272452SKevin Wolf } 6617b272452SKevin Wolf 6627b272452SKevin Wolf return open_flags; 6637b272452SKevin Wolf } 6647b272452SKevin Wolf 665b6ce07aaSKevin Wolf /* 66657915332SKevin Wolf * Common part for opening disk images and files 667b6ad491aSKevin Wolf * 668b6ad491aSKevin Wolf * Removes all processed options from *options. 66957915332SKevin Wolf */ 670f500a6d3SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BlockDriverState *file, 671b6ad491aSKevin Wolf const char *filename, QDict *options, 67257915332SKevin Wolf int flags, BlockDriver *drv) 67357915332SKevin Wolf { 67457915332SKevin Wolf int ret, open_flags; 67557915332SKevin Wolf 67657915332SKevin Wolf assert(drv != NULL); 6776405875cSPaolo Bonzini assert(bs->file == NULL); 678707ff828SKevin Wolf assert(options != NULL && bs->options != options); 67957915332SKevin Wolf 68028dcee10SStefan Hajnoczi trace_bdrv_open_common(bs, filename, flags, drv->format_name); 68128dcee10SStefan Hajnoczi 6825d186eb0SKevin Wolf if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv)) { 6835d186eb0SKevin Wolf return -ENOTSUP; 6845d186eb0SKevin Wolf } 6855d186eb0SKevin Wolf 6865d186eb0SKevin Wolf /* bdrv_open() with directly using a protocol as drv. This layer is already 6875d186eb0SKevin Wolf * opened, so assign it to bs (while file becomes a closed BlockDriverState) 6885d186eb0SKevin Wolf * and return immediately. */ 6895d186eb0SKevin Wolf if (file != NULL && drv->bdrv_file_open) { 6905d186eb0SKevin Wolf bdrv_swap(file, bs); 6915d186eb0SKevin Wolf return 0; 6925d186eb0SKevin Wolf } 6935d186eb0SKevin Wolf 69457915332SKevin Wolf bs->open_flags = flags; 69557915332SKevin Wolf bs->buffer_alignment = 512; 69657915332SKevin Wolf 69753fec9d3SStefan Hajnoczi assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */ 69853fec9d3SStefan Hajnoczi if ((flags & BDRV_O_RDWR) && (flags & BDRV_O_COPY_ON_READ)) { 69953fec9d3SStefan Hajnoczi bdrv_enable_copy_on_read(bs); 70053fec9d3SStefan Hajnoczi } 70153fec9d3SStefan Hajnoczi 702c2ad1b0cSKevin Wolf if (filename != NULL) { 70357915332SKevin Wolf pstrcpy(bs->filename, sizeof(bs->filename), filename); 704c2ad1b0cSKevin Wolf } else { 705c2ad1b0cSKevin Wolf bs->filename[0] = '\0'; 706c2ad1b0cSKevin Wolf } 70757915332SKevin Wolf 70857915332SKevin Wolf bs->drv = drv; 7097267c094SAnthony Liguori bs->opaque = g_malloc0(drv->instance_size); 71057915332SKevin Wolf 71103f541bdSStefan Hajnoczi bs->enable_write_cache = !!(flags & BDRV_O_CACHE_WB); 7127b272452SKevin Wolf open_flags = bdrv_open_flags(bs, flags); 71357915332SKevin Wolf 714be028adcSJeff Cody bs->read_only = !(open_flags & BDRV_O_RDWR); 715e7c63796SStefan Hajnoczi 71666f82ceeSKevin Wolf /* Open the image, either directly or using a protocol */ 71766f82ceeSKevin Wolf if (drv->bdrv_file_open) { 7185d186eb0SKevin Wolf assert(file == NULL); 719c2ad1b0cSKevin Wolf assert(drv->bdrv_parse_filename || filename != NULL); 720787e4a85SKevin Wolf ret = drv->bdrv_file_open(bs, filename, options, open_flags); 721f500a6d3SKevin Wolf } else { 722f500a6d3SKevin Wolf assert(file != NULL); 723f500a6d3SKevin Wolf bs->file = file; 724b6ad491aSKevin Wolf ret = drv->bdrv_open(bs, options, open_flags); 72566f82ceeSKevin Wolf } 72666f82ceeSKevin Wolf 72757915332SKevin Wolf if (ret < 0) { 72857915332SKevin Wolf goto free_and_fail; 72957915332SKevin Wolf } 73057915332SKevin Wolf 73151762288SStefan Hajnoczi ret = refresh_total_sectors(bs, bs->total_sectors); 73251762288SStefan Hajnoczi if (ret < 0) { 73351762288SStefan Hajnoczi goto free_and_fail; 73457915332SKevin Wolf } 73551762288SStefan Hajnoczi 73657915332SKevin Wolf #ifndef _WIN32 73757915332SKevin Wolf if (bs->is_temporary) { 738c2ad1b0cSKevin Wolf assert(filename != NULL); 73957915332SKevin Wolf unlink(filename); 74057915332SKevin Wolf } 74157915332SKevin Wolf #endif 74257915332SKevin Wolf return 0; 74357915332SKevin Wolf 74457915332SKevin Wolf free_and_fail: 74566f82ceeSKevin Wolf bs->file = NULL; 7467267c094SAnthony Liguori g_free(bs->opaque); 74757915332SKevin Wolf bs->opaque = NULL; 74857915332SKevin Wolf bs->drv = NULL; 74957915332SKevin Wolf return ret; 75057915332SKevin Wolf } 75157915332SKevin Wolf 75257915332SKevin Wolf /* 753b6ce07aaSKevin Wolf * Opens a file using a protocol (file, host_device, nbd, ...) 754787e4a85SKevin Wolf * 755787e4a85SKevin Wolf * options is a QDict of options to pass to the block drivers, or NULL for an 756787e4a85SKevin Wolf * empty set of options. The reference to the QDict belongs to the block layer 757787e4a85SKevin Wolf * after the call (even on failure), so if the caller intends to reuse the 758787e4a85SKevin Wolf * dictionary, it needs to use QINCREF() before calling bdrv_file_open. 759b6ce07aaSKevin Wolf */ 760787e4a85SKevin Wolf int bdrv_file_open(BlockDriverState **pbs, const char *filename, 761787e4a85SKevin Wolf QDict *options, int flags) 762b338082bSbellard { 76383f64091Sbellard BlockDriverState *bs; 7646db95603SChristoph Hellwig BlockDriver *drv; 765c2ad1b0cSKevin Wolf const char *drvname; 76683f64091Sbellard int ret; 7673b0d4f61Sbellard 768707ff828SKevin Wolf /* NULL means an empty set of options */ 769707ff828SKevin Wolf if (options == NULL) { 770707ff828SKevin Wolf options = qdict_new(); 7713b0d4f61Sbellard } 772707ff828SKevin Wolf 773707ff828SKevin Wolf bs = bdrv_new(""); 774707ff828SKevin Wolf bs->options = options; 775707ff828SKevin Wolf options = qdict_clone_shallow(options); 776707ff828SKevin Wolf 777c2ad1b0cSKevin Wolf /* Find the right block driver */ 778c2ad1b0cSKevin Wolf drvname = qdict_get_try_str(options, "driver"); 779c2ad1b0cSKevin Wolf if (drvname) { 780c2ad1b0cSKevin Wolf drv = bdrv_find_whitelisted_format(drvname); 781c2ad1b0cSKevin Wolf qdict_del(options, "driver"); 782c2ad1b0cSKevin Wolf } else if (filename) { 783c2ad1b0cSKevin Wolf drv = bdrv_find_protocol(filename); 784c2ad1b0cSKevin Wolf } else { 785c2ad1b0cSKevin Wolf qerror_report(ERROR_CLASS_GENERIC_ERROR, 786c2ad1b0cSKevin Wolf "Must specify either driver or file"); 787c2ad1b0cSKevin Wolf drv = NULL; 788c2ad1b0cSKevin Wolf } 789c2ad1b0cSKevin Wolf 790c2ad1b0cSKevin Wolf if (!drv) { 791c2ad1b0cSKevin Wolf ret = -ENOENT; 792c2ad1b0cSKevin Wolf goto fail; 793c2ad1b0cSKevin Wolf } 794c2ad1b0cSKevin Wolf 795c2ad1b0cSKevin Wolf /* Parse the filename and open it */ 796c2ad1b0cSKevin Wolf if (drv->bdrv_parse_filename && filename) { 7976963a30dSKevin Wolf Error *local_err = NULL; 7986963a30dSKevin Wolf drv->bdrv_parse_filename(filename, options, &local_err); 7996963a30dSKevin Wolf if (error_is_set(&local_err)) { 8006963a30dSKevin Wolf qerror_report_err(local_err); 8016963a30dSKevin Wolf error_free(local_err); 8026963a30dSKevin Wolf ret = -EINVAL; 8036963a30dSKevin Wolf goto fail; 8046963a30dSKevin Wolf } 805c2ad1b0cSKevin Wolf } else if (!drv->bdrv_parse_filename && !filename) { 806c2ad1b0cSKevin Wolf qerror_report(ERROR_CLASS_GENERIC_ERROR, 807c2ad1b0cSKevin Wolf "The '%s' block driver requires a file name", 808c2ad1b0cSKevin Wolf drv->format_name); 809c2ad1b0cSKevin Wolf ret = -EINVAL; 810c2ad1b0cSKevin Wolf goto fail; 8116963a30dSKevin Wolf } 8126963a30dSKevin Wolf 813707ff828SKevin Wolf ret = bdrv_open_common(bs, NULL, filename, options, flags, drv); 814707ff828SKevin Wolf if (ret < 0) { 815707ff828SKevin Wolf goto fail; 816707ff828SKevin Wolf } 817707ff828SKevin Wolf 818707ff828SKevin Wolf /* Check if any unknown options were used */ 819707ff828SKevin Wolf if (qdict_size(options) != 0) { 820707ff828SKevin Wolf const QDictEntry *entry = qdict_first(options); 821707ff828SKevin Wolf qerror_report(ERROR_CLASS_GENERIC_ERROR, "Block protocol '%s' doesn't " 822707ff828SKevin Wolf "support the option '%s'", 823707ff828SKevin Wolf drv->format_name, entry->key); 824707ff828SKevin Wolf ret = -EINVAL; 825707ff828SKevin Wolf goto fail; 826707ff828SKevin Wolf } 827707ff828SKevin Wolf QDECREF(options); 828707ff828SKevin Wolf 82971d0770cSaliguori bs->growable = 1; 83083f64091Sbellard *pbs = bs; 83183f64091Sbellard return 0; 832707ff828SKevin Wolf 833707ff828SKevin Wolf fail: 834707ff828SKevin Wolf QDECREF(options); 835707ff828SKevin Wolf if (!bs->drv) { 836707ff828SKevin Wolf QDECREF(bs->options); 837707ff828SKevin Wolf } 838707ff828SKevin Wolf bdrv_delete(bs); 839707ff828SKevin Wolf return ret; 8403b0d4f61Sbellard } 8413b0d4f61Sbellard 8429156df12SPaolo Bonzini int bdrv_open_backing_file(BlockDriverState *bs) 8439156df12SPaolo Bonzini { 8449156df12SPaolo Bonzini char backing_filename[PATH_MAX]; 8459156df12SPaolo Bonzini int back_flags, ret; 8469156df12SPaolo Bonzini BlockDriver *back_drv = NULL; 8479156df12SPaolo Bonzini 8489156df12SPaolo Bonzini if (bs->backing_hd != NULL) { 8499156df12SPaolo Bonzini return 0; 8509156df12SPaolo Bonzini } 8519156df12SPaolo Bonzini 8529156df12SPaolo Bonzini bs->open_flags &= ~BDRV_O_NO_BACKING; 8539156df12SPaolo Bonzini if (bs->backing_file[0] == '\0') { 8549156df12SPaolo Bonzini return 0; 8559156df12SPaolo Bonzini } 8569156df12SPaolo Bonzini 8579156df12SPaolo Bonzini bs->backing_hd = bdrv_new(""); 8589156df12SPaolo Bonzini bdrv_get_full_backing_filename(bs, backing_filename, 8599156df12SPaolo Bonzini sizeof(backing_filename)); 8609156df12SPaolo Bonzini 8619156df12SPaolo Bonzini if (bs->backing_format[0] != '\0') { 8629156df12SPaolo Bonzini back_drv = bdrv_find_format(bs->backing_format); 8639156df12SPaolo Bonzini } 8649156df12SPaolo Bonzini 8659156df12SPaolo Bonzini /* backing files always opened read-only */ 8669156df12SPaolo Bonzini back_flags = bs->open_flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT); 8679156df12SPaolo Bonzini 868de9c0cecSKevin Wolf ret = bdrv_open(bs->backing_hd, backing_filename, NULL, 869de9c0cecSKevin Wolf back_flags, back_drv); 8709156df12SPaolo Bonzini if (ret < 0) { 8719156df12SPaolo Bonzini bdrv_delete(bs->backing_hd); 8729156df12SPaolo Bonzini bs->backing_hd = NULL; 8739156df12SPaolo Bonzini bs->open_flags |= BDRV_O_NO_BACKING; 8749156df12SPaolo Bonzini return ret; 8759156df12SPaolo Bonzini } 8769156df12SPaolo Bonzini return 0; 8779156df12SPaolo Bonzini } 8789156df12SPaolo Bonzini 879707ff828SKevin Wolf static void extract_subqdict(QDict *src, QDict **dst, const char *start) 880707ff828SKevin Wolf { 881707ff828SKevin Wolf const QDictEntry *entry, *next; 882707ff828SKevin Wolf const char *p; 883707ff828SKevin Wolf 884707ff828SKevin Wolf *dst = qdict_new(); 885707ff828SKevin Wolf entry = qdict_first(src); 886707ff828SKevin Wolf 887707ff828SKevin Wolf while (entry != NULL) { 888707ff828SKevin Wolf next = qdict_next(src, entry); 889707ff828SKevin Wolf if (strstart(entry->key, start, &p)) { 890707ff828SKevin Wolf qobject_incref(entry->value); 891707ff828SKevin Wolf qdict_put_obj(*dst, p, entry->value); 892707ff828SKevin Wolf qdict_del(src, entry->key); 893707ff828SKevin Wolf } 894707ff828SKevin Wolf entry = next; 895707ff828SKevin Wolf } 896707ff828SKevin Wolf } 897707ff828SKevin Wolf 898b6ce07aaSKevin Wolf /* 899b6ce07aaSKevin Wolf * Opens a disk image (raw, qcow2, vmdk, ...) 900de9c0cecSKevin Wolf * 901de9c0cecSKevin Wolf * options is a QDict of options to pass to the block drivers, or NULL for an 902de9c0cecSKevin Wolf * empty set of options. The reference to the QDict belongs to the block layer 903de9c0cecSKevin Wolf * after the call (even on failure), so if the caller intends to reuse the 904de9c0cecSKevin Wolf * dictionary, it needs to use QINCREF() before calling bdrv_open. 905b6ce07aaSKevin Wolf */ 906de9c0cecSKevin Wolf int bdrv_open(BlockDriverState *bs, const char *filename, QDict *options, 907de9c0cecSKevin Wolf int flags, BlockDriver *drv) 908ea2384d3Sbellard { 909b6ce07aaSKevin Wolf int ret; 91089c9bc3dSStefan Weil /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */ 91189c9bc3dSStefan Weil char tmp_filename[PATH_MAX + 1]; 912f500a6d3SKevin Wolf BlockDriverState *file = NULL; 913707ff828SKevin Wolf QDict *file_options = NULL; 91433e3963eSbellard 915de9c0cecSKevin Wolf /* NULL means an empty set of options */ 916de9c0cecSKevin Wolf if (options == NULL) { 917de9c0cecSKevin Wolf options = qdict_new(); 918de9c0cecSKevin Wolf } 919de9c0cecSKevin Wolf 920de9c0cecSKevin Wolf bs->options = options; 921b6ad491aSKevin Wolf options = qdict_clone_shallow(options); 922de9c0cecSKevin Wolf 923de9c0cecSKevin Wolf /* For snapshot=on, create a temporary qcow2 overlay */ 92483f64091Sbellard if (flags & BDRV_O_SNAPSHOT) { 925ea2384d3Sbellard BlockDriverState *bs1; 926ea2384d3Sbellard int64_t total_size; 92791a073a9SKevin Wolf BlockDriver *bdrv_qcow2; 92808b392e1SKevin Wolf QEMUOptionParameter *create_options; 929b6ce07aaSKevin Wolf char backing_filename[PATH_MAX]; 93033e3963eSbellard 931c2ad1b0cSKevin Wolf if (qdict_size(options) != 0) { 932c2ad1b0cSKevin Wolf error_report("Can't use snapshot=on with driver-specific options"); 933c2ad1b0cSKevin Wolf ret = -EINVAL; 934c2ad1b0cSKevin Wolf goto fail; 935c2ad1b0cSKevin Wolf } 936c2ad1b0cSKevin Wolf assert(filename != NULL); 937c2ad1b0cSKevin Wolf 938ea2384d3Sbellard /* if snapshot, we create a temporary backing file and open it 939ea2384d3Sbellard instead of opening 'filename' directly */ 940ea2384d3Sbellard 941ea2384d3Sbellard /* if there is a backing file, use it */ 942ea2384d3Sbellard bs1 = bdrv_new(""); 943de9c0cecSKevin Wolf ret = bdrv_open(bs1, filename, NULL, 0, drv); 94451d7c00cSaliguori if (ret < 0) { 945ea2384d3Sbellard bdrv_delete(bs1); 946de9c0cecSKevin Wolf goto fail; 947ea2384d3Sbellard } 9483e82990bSJes Sorensen total_size = bdrv_getlength(bs1) & BDRV_SECTOR_MASK; 9497c96d46eSaliguori 950ea2384d3Sbellard bdrv_delete(bs1); 951ea2384d3Sbellard 952eba25057SJim Meyering ret = get_tmp_filename(tmp_filename, sizeof(tmp_filename)); 953eba25057SJim Meyering if (ret < 0) { 954de9c0cecSKevin Wolf goto fail; 955eba25057SJim Meyering } 9567c96d46eSaliguori 9577c96d46eSaliguori /* Real path is meaningless for protocols */ 9584d70655bSStefan Hajnoczi if (path_has_protocol(filename)) { 9597c96d46eSaliguori snprintf(backing_filename, sizeof(backing_filename), 9607c96d46eSaliguori "%s", filename); 961de9c0cecSKevin Wolf } else if (!realpath(filename, backing_filename)) { 962de9c0cecSKevin Wolf ret = -errno; 963de9c0cecSKevin Wolf goto fail; 964de9c0cecSKevin Wolf } 9657c96d46eSaliguori 96691a073a9SKevin Wolf bdrv_qcow2 = bdrv_find_format("qcow2"); 96708b392e1SKevin Wolf create_options = parse_option_parameters("", bdrv_qcow2->create_options, 96808b392e1SKevin Wolf NULL); 96991a073a9SKevin Wolf 97008b392e1SKevin Wolf set_option_parameter_int(create_options, BLOCK_OPT_SIZE, total_size); 97108b392e1SKevin Wolf set_option_parameter(create_options, BLOCK_OPT_BACKING_FILE, 97208b392e1SKevin Wolf backing_filename); 97391a073a9SKevin Wolf if (drv) { 97408b392e1SKevin Wolf set_option_parameter(create_options, BLOCK_OPT_BACKING_FMT, 97591a073a9SKevin Wolf drv->format_name); 97691a073a9SKevin Wolf } 97791a073a9SKevin Wolf 97808b392e1SKevin Wolf ret = bdrv_create(bdrv_qcow2, tmp_filename, create_options); 97908b392e1SKevin Wolf free_option_parameters(create_options); 98051d7c00cSaliguori if (ret < 0) { 981de9c0cecSKevin Wolf goto fail; 982ea2384d3Sbellard } 98391a073a9SKevin Wolf 984ea2384d3Sbellard filename = tmp_filename; 98591a073a9SKevin Wolf drv = bdrv_qcow2; 986ea2384d3Sbellard bs->is_temporary = 1; 987ea2384d3Sbellard } 988ea2384d3Sbellard 989f500a6d3SKevin Wolf /* Open image file without format layer */ 990be028adcSJeff Cody if (flags & BDRV_O_RDWR) { 991be028adcSJeff Cody flags |= BDRV_O_ALLOW_RDWR; 992be028adcSJeff Cody } 993be028adcSJeff Cody 994707ff828SKevin Wolf extract_subqdict(options, &file_options, "file."); 995707ff828SKevin Wolf 996707ff828SKevin Wolf ret = bdrv_file_open(&file, filename, file_options, 997707ff828SKevin Wolf bdrv_open_flags(bs, flags)); 998f500a6d3SKevin Wolf if (ret < 0) { 999de9c0cecSKevin Wolf goto fail; 1000f500a6d3SKevin Wolf } 1001f500a6d3SKevin Wolf 1002f500a6d3SKevin Wolf /* Find the right image format driver */ 1003f500a6d3SKevin Wolf if (!drv) { 1004f500a6d3SKevin Wolf ret = find_image_format(file, filename, &drv); 1005f500a6d3SKevin Wolf } 1006f500a6d3SKevin Wolf 1007f500a6d3SKevin Wolf if (!drv) { 1008f500a6d3SKevin Wolf goto unlink_and_fail; 1009f500a6d3SKevin Wolf } 1010f500a6d3SKevin Wolf 1011b6ce07aaSKevin Wolf /* Open the image */ 1012b6ad491aSKevin Wolf ret = bdrv_open_common(bs, file, filename, options, flags, drv); 1013b6ce07aaSKevin Wolf if (ret < 0) { 10146987307cSChristoph Hellwig goto unlink_and_fail; 10156987307cSChristoph Hellwig } 10166987307cSChristoph Hellwig 1017f500a6d3SKevin Wolf if (bs->file != file) { 1018f500a6d3SKevin Wolf bdrv_delete(file); 1019f500a6d3SKevin Wolf file = NULL; 1020f500a6d3SKevin Wolf } 1021f500a6d3SKevin Wolf 1022b6ce07aaSKevin Wolf /* If there is a backing file, use it */ 10239156df12SPaolo Bonzini if ((flags & BDRV_O_NO_BACKING) == 0) { 10249156df12SPaolo Bonzini ret = bdrv_open_backing_file(bs); 1025b6ce07aaSKevin Wolf if (ret < 0) { 1026b6ad491aSKevin Wolf goto close_and_fail; 1027b6ce07aaSKevin Wolf } 1028b6ce07aaSKevin Wolf } 1029b6ce07aaSKevin Wolf 1030b6ad491aSKevin Wolf /* Check if any unknown options were used */ 1031b6ad491aSKevin Wolf if (qdict_size(options) != 0) { 1032b6ad491aSKevin Wolf const QDictEntry *entry = qdict_first(options); 1033b6ad491aSKevin Wolf qerror_report(ERROR_CLASS_GENERIC_ERROR, "Block format '%s' used by " 1034b6ad491aSKevin Wolf "device '%s' doesn't support the option '%s'", 1035b6ad491aSKevin Wolf drv->format_name, bs->device_name, entry->key); 1036b6ad491aSKevin Wolf 1037b6ad491aSKevin Wolf ret = -EINVAL; 1038b6ad491aSKevin Wolf goto close_and_fail; 1039b6ad491aSKevin Wolf } 1040b6ad491aSKevin Wolf QDECREF(options); 1041b6ad491aSKevin Wolf 1042b6ce07aaSKevin Wolf if (!bdrv_key_required(bs)) { 10437d4b4ba5SMarkus Armbruster bdrv_dev_change_media_cb(bs, true); 1044b6ce07aaSKevin Wolf } 1045b6ce07aaSKevin Wolf 104698f90dbaSZhi Yong Wu /* throttling disk I/O limits */ 104798f90dbaSZhi Yong Wu if (bs->io_limits_enabled) { 104898f90dbaSZhi Yong Wu bdrv_io_limits_enable(bs); 104998f90dbaSZhi Yong Wu } 105098f90dbaSZhi Yong Wu 1051b6ce07aaSKevin Wolf return 0; 1052b6ce07aaSKevin Wolf 1053b6ce07aaSKevin Wolf unlink_and_fail: 1054f500a6d3SKevin Wolf if (file != NULL) { 1055f500a6d3SKevin Wolf bdrv_delete(file); 1056f500a6d3SKevin Wolf } 1057b6ce07aaSKevin Wolf if (bs->is_temporary) { 1058b6ce07aaSKevin Wolf unlink(filename); 1059b6ce07aaSKevin Wolf } 1060de9c0cecSKevin Wolf fail: 1061de9c0cecSKevin Wolf QDECREF(bs->options); 1062b6ad491aSKevin Wolf QDECREF(options); 1063de9c0cecSKevin Wolf bs->options = NULL; 1064b6ad491aSKevin Wolf return ret; 1065de9c0cecSKevin Wolf 1066b6ad491aSKevin Wolf close_and_fail: 1067b6ad491aSKevin Wolf bdrv_close(bs); 1068b6ad491aSKevin Wolf QDECREF(options); 1069b6ce07aaSKevin Wolf return ret; 1070b6ce07aaSKevin Wolf } 1071b6ce07aaSKevin Wolf 1072e971aa12SJeff Cody typedef struct BlockReopenQueueEntry { 1073e971aa12SJeff Cody bool prepared; 1074e971aa12SJeff Cody BDRVReopenState state; 1075e971aa12SJeff Cody QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry; 1076e971aa12SJeff Cody } BlockReopenQueueEntry; 1077e971aa12SJeff Cody 1078e971aa12SJeff Cody /* 1079e971aa12SJeff Cody * Adds a BlockDriverState to a simple queue for an atomic, transactional 1080e971aa12SJeff Cody * reopen of multiple devices. 1081e971aa12SJeff Cody * 1082e971aa12SJeff Cody * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT 1083e971aa12SJeff Cody * already performed, or alternatively may be NULL a new BlockReopenQueue will 1084e971aa12SJeff Cody * be created and initialized. This newly created BlockReopenQueue should be 1085e971aa12SJeff Cody * passed back in for subsequent calls that are intended to be of the same 1086e971aa12SJeff Cody * atomic 'set'. 1087e971aa12SJeff Cody * 1088e971aa12SJeff Cody * bs is the BlockDriverState to add to the reopen queue. 1089e971aa12SJeff Cody * 1090e971aa12SJeff Cody * flags contains the open flags for the associated bs 1091e971aa12SJeff Cody * 1092e971aa12SJeff Cody * returns a pointer to bs_queue, which is either the newly allocated 1093e971aa12SJeff Cody * bs_queue, or the existing bs_queue being used. 1094e971aa12SJeff Cody * 1095e971aa12SJeff Cody */ 1096e971aa12SJeff Cody BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, 1097e971aa12SJeff Cody BlockDriverState *bs, int flags) 1098e971aa12SJeff Cody { 1099e971aa12SJeff Cody assert(bs != NULL); 1100e971aa12SJeff Cody 1101e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry; 1102e971aa12SJeff Cody if (bs_queue == NULL) { 1103e971aa12SJeff Cody bs_queue = g_new0(BlockReopenQueue, 1); 1104e971aa12SJeff Cody QSIMPLEQ_INIT(bs_queue); 1105e971aa12SJeff Cody } 1106e971aa12SJeff Cody 1107e971aa12SJeff Cody if (bs->file) { 1108e971aa12SJeff Cody bdrv_reopen_queue(bs_queue, bs->file, flags); 1109e971aa12SJeff Cody } 1110e971aa12SJeff Cody 1111e971aa12SJeff Cody bs_entry = g_new0(BlockReopenQueueEntry, 1); 1112e971aa12SJeff Cody QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry); 1113e971aa12SJeff Cody 1114e971aa12SJeff Cody bs_entry->state.bs = bs; 1115e971aa12SJeff Cody bs_entry->state.flags = flags; 1116e971aa12SJeff Cody 1117e971aa12SJeff Cody return bs_queue; 1118e971aa12SJeff Cody } 1119e971aa12SJeff Cody 1120e971aa12SJeff Cody /* 1121e971aa12SJeff Cody * Reopen multiple BlockDriverStates atomically & transactionally. 1122e971aa12SJeff Cody * 1123e971aa12SJeff Cody * The queue passed in (bs_queue) must have been built up previous 1124e971aa12SJeff Cody * via bdrv_reopen_queue(). 1125e971aa12SJeff Cody * 1126e971aa12SJeff Cody * Reopens all BDS specified in the queue, with the appropriate 1127e971aa12SJeff Cody * flags. All devices are prepared for reopen, and failure of any 1128e971aa12SJeff Cody * device will cause all device changes to be abandonded, and intermediate 1129e971aa12SJeff Cody * data cleaned up. 1130e971aa12SJeff Cody * 1131e971aa12SJeff Cody * If all devices prepare successfully, then the changes are committed 1132e971aa12SJeff Cody * to all devices. 1133e971aa12SJeff Cody * 1134e971aa12SJeff Cody */ 1135e971aa12SJeff Cody int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp) 1136e971aa12SJeff Cody { 1137e971aa12SJeff Cody int ret = -1; 1138e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry, *next; 1139e971aa12SJeff Cody Error *local_err = NULL; 1140e971aa12SJeff Cody 1141e971aa12SJeff Cody assert(bs_queue != NULL); 1142e971aa12SJeff Cody 1143e971aa12SJeff Cody bdrv_drain_all(); 1144e971aa12SJeff Cody 1145e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 1146e971aa12SJeff Cody if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) { 1147e971aa12SJeff Cody error_propagate(errp, local_err); 1148e971aa12SJeff Cody goto cleanup; 1149e971aa12SJeff Cody } 1150e971aa12SJeff Cody bs_entry->prepared = true; 1151e971aa12SJeff Cody } 1152e971aa12SJeff Cody 1153e971aa12SJeff Cody /* If we reach this point, we have success and just need to apply the 1154e971aa12SJeff Cody * changes 1155e971aa12SJeff Cody */ 1156e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 1157e971aa12SJeff Cody bdrv_reopen_commit(&bs_entry->state); 1158e971aa12SJeff Cody } 1159e971aa12SJeff Cody 1160e971aa12SJeff Cody ret = 0; 1161e971aa12SJeff Cody 1162e971aa12SJeff Cody cleanup: 1163e971aa12SJeff Cody QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { 1164e971aa12SJeff Cody if (ret && bs_entry->prepared) { 1165e971aa12SJeff Cody bdrv_reopen_abort(&bs_entry->state); 1166e971aa12SJeff Cody } 1167e971aa12SJeff Cody g_free(bs_entry); 1168e971aa12SJeff Cody } 1169e971aa12SJeff Cody g_free(bs_queue); 1170e971aa12SJeff Cody return ret; 1171e971aa12SJeff Cody } 1172e971aa12SJeff Cody 1173e971aa12SJeff Cody 1174e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */ 1175e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp) 1176e971aa12SJeff Cody { 1177e971aa12SJeff Cody int ret = -1; 1178e971aa12SJeff Cody Error *local_err = NULL; 1179e971aa12SJeff Cody BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, bdrv_flags); 1180e971aa12SJeff Cody 1181e971aa12SJeff Cody ret = bdrv_reopen_multiple(queue, &local_err); 1182e971aa12SJeff Cody if (local_err != NULL) { 1183e971aa12SJeff Cody error_propagate(errp, local_err); 1184e971aa12SJeff Cody } 1185e971aa12SJeff Cody return ret; 1186e971aa12SJeff Cody } 1187e971aa12SJeff Cody 1188e971aa12SJeff Cody 1189e971aa12SJeff Cody /* 1190e971aa12SJeff Cody * Prepares a BlockDriverState for reopen. All changes are staged in the 1191e971aa12SJeff Cody * 'opaque' field of the BDRVReopenState, which is used and allocated by 1192e971aa12SJeff Cody * the block driver layer .bdrv_reopen_prepare() 1193e971aa12SJeff Cody * 1194e971aa12SJeff Cody * bs is the BlockDriverState to reopen 1195e971aa12SJeff Cody * flags are the new open flags 1196e971aa12SJeff Cody * queue is the reopen queue 1197e971aa12SJeff Cody * 1198e971aa12SJeff Cody * Returns 0 on success, non-zero on error. On error errp will be set 1199e971aa12SJeff Cody * as well. 1200e971aa12SJeff Cody * 1201e971aa12SJeff Cody * On failure, bdrv_reopen_abort() will be called to clean up any data. 1202e971aa12SJeff Cody * It is the responsibility of the caller to then call the abort() or 1203e971aa12SJeff Cody * commit() for any other BDS that have been left in a prepare() state 1204e971aa12SJeff Cody * 1205e971aa12SJeff Cody */ 1206e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue, 1207e971aa12SJeff Cody Error **errp) 1208e971aa12SJeff Cody { 1209e971aa12SJeff Cody int ret = -1; 1210e971aa12SJeff Cody Error *local_err = NULL; 1211e971aa12SJeff Cody BlockDriver *drv; 1212e971aa12SJeff Cody 1213e971aa12SJeff Cody assert(reopen_state != NULL); 1214e971aa12SJeff Cody assert(reopen_state->bs->drv != NULL); 1215e971aa12SJeff Cody drv = reopen_state->bs->drv; 1216e971aa12SJeff Cody 1217e971aa12SJeff Cody /* if we are to stay read-only, do not allow permission change 1218e971aa12SJeff Cody * to r/w */ 1219e971aa12SJeff Cody if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) && 1220e971aa12SJeff Cody reopen_state->flags & BDRV_O_RDWR) { 1221e971aa12SJeff Cody error_set(errp, QERR_DEVICE_IS_READ_ONLY, 1222e971aa12SJeff Cody reopen_state->bs->device_name); 1223e971aa12SJeff Cody goto error; 1224e971aa12SJeff Cody } 1225e971aa12SJeff Cody 1226e971aa12SJeff Cody 1227e971aa12SJeff Cody ret = bdrv_flush(reopen_state->bs); 1228e971aa12SJeff Cody if (ret) { 1229e971aa12SJeff Cody error_set(errp, ERROR_CLASS_GENERIC_ERROR, "Error (%s) flushing drive", 1230e971aa12SJeff Cody strerror(-ret)); 1231e971aa12SJeff Cody goto error; 1232e971aa12SJeff Cody } 1233e971aa12SJeff Cody 1234e971aa12SJeff Cody if (drv->bdrv_reopen_prepare) { 1235e971aa12SJeff Cody ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); 1236e971aa12SJeff Cody if (ret) { 1237e971aa12SJeff Cody if (local_err != NULL) { 1238e971aa12SJeff Cody error_propagate(errp, local_err); 1239e971aa12SJeff Cody } else { 1240e971aa12SJeff Cody error_set(errp, QERR_OPEN_FILE_FAILED, 1241e971aa12SJeff Cody reopen_state->bs->filename); 1242e971aa12SJeff Cody } 1243e971aa12SJeff Cody goto error; 1244e971aa12SJeff Cody } 1245e971aa12SJeff Cody } else { 1246e971aa12SJeff Cody /* It is currently mandatory to have a bdrv_reopen_prepare() 1247e971aa12SJeff Cody * handler for each supported drv. */ 1248e971aa12SJeff Cody error_set(errp, QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED, 1249e971aa12SJeff Cody drv->format_name, reopen_state->bs->device_name, 1250e971aa12SJeff Cody "reopening of file"); 1251e971aa12SJeff Cody ret = -1; 1252e971aa12SJeff Cody goto error; 1253e971aa12SJeff Cody } 1254e971aa12SJeff Cody 1255e971aa12SJeff Cody ret = 0; 1256e971aa12SJeff Cody 1257e971aa12SJeff Cody error: 1258e971aa12SJeff Cody return ret; 1259e971aa12SJeff Cody } 1260e971aa12SJeff Cody 1261e971aa12SJeff Cody /* 1262e971aa12SJeff Cody * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and 1263e971aa12SJeff Cody * makes them final by swapping the staging BlockDriverState contents into 1264e971aa12SJeff Cody * the active BlockDriverState contents. 1265e971aa12SJeff Cody */ 1266e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state) 1267e971aa12SJeff Cody { 1268e971aa12SJeff Cody BlockDriver *drv; 1269e971aa12SJeff Cody 1270e971aa12SJeff Cody assert(reopen_state != NULL); 1271e971aa12SJeff Cody drv = reopen_state->bs->drv; 1272e971aa12SJeff Cody assert(drv != NULL); 1273e971aa12SJeff Cody 1274e971aa12SJeff Cody /* If there are any driver level actions to take */ 1275e971aa12SJeff Cody if (drv->bdrv_reopen_commit) { 1276e971aa12SJeff Cody drv->bdrv_reopen_commit(reopen_state); 1277e971aa12SJeff Cody } 1278e971aa12SJeff Cody 1279e971aa12SJeff Cody /* set BDS specific flags now */ 1280e971aa12SJeff Cody reopen_state->bs->open_flags = reopen_state->flags; 1281e971aa12SJeff Cody reopen_state->bs->enable_write_cache = !!(reopen_state->flags & 1282e971aa12SJeff Cody BDRV_O_CACHE_WB); 1283e971aa12SJeff Cody reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR); 1284e971aa12SJeff Cody } 1285e971aa12SJeff Cody 1286e971aa12SJeff Cody /* 1287e971aa12SJeff Cody * Abort the reopen, and delete and free the staged changes in 1288e971aa12SJeff Cody * reopen_state 1289e971aa12SJeff Cody */ 1290e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state) 1291e971aa12SJeff Cody { 1292e971aa12SJeff Cody BlockDriver *drv; 1293e971aa12SJeff Cody 1294e971aa12SJeff Cody assert(reopen_state != NULL); 1295e971aa12SJeff Cody drv = reopen_state->bs->drv; 1296e971aa12SJeff Cody assert(drv != NULL); 1297e971aa12SJeff Cody 1298e971aa12SJeff Cody if (drv->bdrv_reopen_abort) { 1299e971aa12SJeff Cody drv->bdrv_reopen_abort(reopen_state); 1300e971aa12SJeff Cody } 1301e971aa12SJeff Cody } 1302e971aa12SJeff Cody 1303e971aa12SJeff Cody 1304fc01f7e7Sbellard void bdrv_close(BlockDriverState *bs) 1305fc01f7e7Sbellard { 130680ccf93bSLiu Yuan bdrv_flush(bs); 13073e914655SPaolo Bonzini if (bs->job) { 13083e914655SPaolo Bonzini block_job_cancel_sync(bs->job); 13093e914655SPaolo Bonzini } 13107094f12fSKevin Wolf bdrv_drain_all(); 1311d7d512f6SPaolo Bonzini notifier_list_notify(&bs->close_notifiers, bs); 13127094f12fSKevin Wolf 13133cbc002cSPaolo Bonzini if (bs->drv) { 1314f9092b10SMarkus Armbruster if (bs == bs_snapshots) { 1315f9092b10SMarkus Armbruster bs_snapshots = NULL; 1316f9092b10SMarkus Armbruster } 1317557df6acSStefan Hajnoczi if (bs->backing_hd) { 1318ea2384d3Sbellard bdrv_delete(bs->backing_hd); 1319557df6acSStefan Hajnoczi bs->backing_hd = NULL; 1320557df6acSStefan Hajnoczi } 1321ea2384d3Sbellard bs->drv->bdrv_close(bs); 13227267c094SAnthony Liguori g_free(bs->opaque); 1323ea2384d3Sbellard #ifdef _WIN32 1324ea2384d3Sbellard if (bs->is_temporary) { 1325ea2384d3Sbellard unlink(bs->filename); 1326ea2384d3Sbellard } 132767b915a5Sbellard #endif 1328ea2384d3Sbellard bs->opaque = NULL; 1329ea2384d3Sbellard bs->drv = NULL; 133053fec9d3SStefan Hajnoczi bs->copy_on_read = 0; 1331a275fa42SPaolo Bonzini bs->backing_file[0] = '\0'; 1332a275fa42SPaolo Bonzini bs->backing_format[0] = '\0'; 13336405875cSPaolo Bonzini bs->total_sectors = 0; 13346405875cSPaolo Bonzini bs->encrypted = 0; 13356405875cSPaolo Bonzini bs->valid_key = 0; 13366405875cSPaolo Bonzini bs->sg = 0; 13376405875cSPaolo Bonzini bs->growable = 0; 1338de9c0cecSKevin Wolf QDECREF(bs->options); 1339de9c0cecSKevin Wolf bs->options = NULL; 1340b338082bSbellard 134166f82ceeSKevin Wolf if (bs->file != NULL) { 13420ac9377dSPaolo Bonzini bdrv_delete(bs->file); 13430ac9377dSPaolo Bonzini bs->file = NULL; 134466f82ceeSKevin Wolf } 13459ca11154SPavel Hrdina } 134666f82ceeSKevin Wolf 13477d4b4ba5SMarkus Armbruster bdrv_dev_change_media_cb(bs, false); 134898f90dbaSZhi Yong Wu 134998f90dbaSZhi Yong Wu /*throttling disk I/O limits*/ 135098f90dbaSZhi Yong Wu if (bs->io_limits_enabled) { 135198f90dbaSZhi Yong Wu bdrv_io_limits_disable(bs); 135298f90dbaSZhi Yong Wu } 1353b338082bSbellard } 1354b338082bSbellard 13552bc93fedSMORITA Kazutaka void bdrv_close_all(void) 13562bc93fedSMORITA Kazutaka { 13572bc93fedSMORITA Kazutaka BlockDriverState *bs; 13582bc93fedSMORITA Kazutaka 13592bc93fedSMORITA Kazutaka QTAILQ_FOREACH(bs, &bdrv_states, list) { 13602bc93fedSMORITA Kazutaka bdrv_close(bs); 13612bc93fedSMORITA Kazutaka } 13622bc93fedSMORITA Kazutaka } 13632bc93fedSMORITA Kazutaka 1364922453bcSStefan Hajnoczi /* 1365922453bcSStefan Hajnoczi * Wait for pending requests to complete across all BlockDriverStates 1366922453bcSStefan Hajnoczi * 1367922453bcSStefan Hajnoczi * This function does not flush data to disk, use bdrv_flush_all() for that 1368922453bcSStefan Hajnoczi * after calling this function. 13694c355d53SZhi Yong Wu * 13704c355d53SZhi Yong Wu * Note that completion of an asynchronous I/O operation can trigger any 13714c355d53SZhi Yong Wu * number of other I/O operations on other devices---for example a coroutine 13724c355d53SZhi Yong Wu * can be arbitrarily complex and a constant flow of I/O can come until the 13734c355d53SZhi Yong Wu * coroutine is complete. Because of this, it is not possible to have a 13744c355d53SZhi Yong Wu * function to drain a single device's I/O queue. 1375922453bcSStefan Hajnoczi */ 1376922453bcSStefan Hajnoczi void bdrv_drain_all(void) 1377922453bcSStefan Hajnoczi { 1378922453bcSStefan Hajnoczi BlockDriverState *bs; 13794c355d53SZhi Yong Wu bool busy; 1380922453bcSStefan Hajnoczi 13814c355d53SZhi Yong Wu do { 13824c355d53SZhi Yong Wu busy = qemu_aio_wait(); 13834c355d53SZhi Yong Wu 13844c355d53SZhi Yong Wu /* FIXME: We do not have timer support here, so this is effectively 13854c355d53SZhi Yong Wu * a busy wait. 13864c355d53SZhi Yong Wu */ 13874c355d53SZhi Yong Wu QTAILQ_FOREACH(bs, &bdrv_states, list) { 13884c355d53SZhi Yong Wu if (!qemu_co_queue_empty(&bs->throttled_reqs)) { 13894c355d53SZhi Yong Wu qemu_co_queue_restart_all(&bs->throttled_reqs); 13904c355d53SZhi Yong Wu busy = true; 13914c355d53SZhi Yong Wu } 13924c355d53SZhi Yong Wu } 13934c355d53SZhi Yong Wu } while (busy); 1394922453bcSStefan Hajnoczi 1395922453bcSStefan Hajnoczi /* If requests are still pending there is a bug somewhere */ 1396922453bcSStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 1397922453bcSStefan Hajnoczi assert(QLIST_EMPTY(&bs->tracked_requests)); 1398922453bcSStefan Hajnoczi assert(qemu_co_queue_empty(&bs->throttled_reqs)); 1399922453bcSStefan Hajnoczi } 1400922453bcSStefan Hajnoczi } 1401922453bcSStefan Hajnoczi 1402d22b2f41SRyan Harper /* make a BlockDriverState anonymous by removing from bdrv_state list. 1403d22b2f41SRyan Harper Also, NULL terminate the device_name to prevent double remove */ 1404d22b2f41SRyan Harper void bdrv_make_anon(BlockDriverState *bs) 1405d22b2f41SRyan Harper { 1406d22b2f41SRyan Harper if (bs->device_name[0] != '\0') { 1407d22b2f41SRyan Harper QTAILQ_REMOVE(&bdrv_states, bs, list); 1408d22b2f41SRyan Harper } 1409d22b2f41SRyan Harper bs->device_name[0] = '\0'; 1410d22b2f41SRyan Harper } 1411d22b2f41SRyan Harper 1412e023b2e2SPaolo Bonzini static void bdrv_rebind(BlockDriverState *bs) 1413e023b2e2SPaolo Bonzini { 1414e023b2e2SPaolo Bonzini if (bs->drv && bs->drv->bdrv_rebind) { 1415e023b2e2SPaolo Bonzini bs->drv->bdrv_rebind(bs); 1416e023b2e2SPaolo Bonzini } 1417e023b2e2SPaolo Bonzini } 1418e023b2e2SPaolo Bonzini 14194ddc07caSPaolo Bonzini static void bdrv_move_feature_fields(BlockDriverState *bs_dest, 14204ddc07caSPaolo Bonzini BlockDriverState *bs_src) 14214ddc07caSPaolo Bonzini { 14224ddc07caSPaolo Bonzini /* move some fields that need to stay attached to the device */ 14234ddc07caSPaolo Bonzini bs_dest->open_flags = bs_src->open_flags; 14244ddc07caSPaolo Bonzini 14254ddc07caSPaolo Bonzini /* dev info */ 14264ddc07caSPaolo Bonzini bs_dest->dev_ops = bs_src->dev_ops; 14274ddc07caSPaolo Bonzini bs_dest->dev_opaque = bs_src->dev_opaque; 14284ddc07caSPaolo Bonzini bs_dest->dev = bs_src->dev; 14294ddc07caSPaolo Bonzini bs_dest->buffer_alignment = bs_src->buffer_alignment; 14304ddc07caSPaolo Bonzini bs_dest->copy_on_read = bs_src->copy_on_read; 14314ddc07caSPaolo Bonzini 14324ddc07caSPaolo Bonzini bs_dest->enable_write_cache = bs_src->enable_write_cache; 14334ddc07caSPaolo Bonzini 14344ddc07caSPaolo Bonzini /* i/o timing parameters */ 14354ddc07caSPaolo Bonzini bs_dest->slice_time = bs_src->slice_time; 14364ddc07caSPaolo Bonzini bs_dest->slice_start = bs_src->slice_start; 14374ddc07caSPaolo Bonzini bs_dest->slice_end = bs_src->slice_end; 1438*5905fbc9SStefan Hajnoczi bs_dest->slice_submitted = bs_src->slice_submitted; 14394ddc07caSPaolo Bonzini bs_dest->io_limits = bs_src->io_limits; 14404ddc07caSPaolo Bonzini bs_dest->throttled_reqs = bs_src->throttled_reqs; 14414ddc07caSPaolo Bonzini bs_dest->block_timer = bs_src->block_timer; 14424ddc07caSPaolo Bonzini bs_dest->io_limits_enabled = bs_src->io_limits_enabled; 14434ddc07caSPaolo Bonzini 14444ddc07caSPaolo Bonzini /* r/w error */ 14454ddc07caSPaolo Bonzini bs_dest->on_read_error = bs_src->on_read_error; 14464ddc07caSPaolo Bonzini bs_dest->on_write_error = bs_src->on_write_error; 14474ddc07caSPaolo Bonzini 14484ddc07caSPaolo Bonzini /* i/o status */ 14494ddc07caSPaolo Bonzini bs_dest->iostatus_enabled = bs_src->iostatus_enabled; 14504ddc07caSPaolo Bonzini bs_dest->iostatus = bs_src->iostatus; 14514ddc07caSPaolo Bonzini 14524ddc07caSPaolo Bonzini /* dirty bitmap */ 14534ddc07caSPaolo Bonzini bs_dest->dirty_bitmap = bs_src->dirty_bitmap; 14544ddc07caSPaolo Bonzini 14554ddc07caSPaolo Bonzini /* job */ 14564ddc07caSPaolo Bonzini bs_dest->in_use = bs_src->in_use; 14574ddc07caSPaolo Bonzini bs_dest->job = bs_src->job; 14584ddc07caSPaolo Bonzini 14594ddc07caSPaolo Bonzini /* keep the same entry in bdrv_states */ 14604ddc07caSPaolo Bonzini pstrcpy(bs_dest->device_name, sizeof(bs_dest->device_name), 14614ddc07caSPaolo Bonzini bs_src->device_name); 14624ddc07caSPaolo Bonzini bs_dest->list = bs_src->list; 14634ddc07caSPaolo Bonzini } 14644ddc07caSPaolo Bonzini 14654ddc07caSPaolo Bonzini /* 14664ddc07caSPaolo Bonzini * Swap bs contents for two image chains while they are live, 14674ddc07caSPaolo Bonzini * while keeping required fields on the BlockDriverState that is 14684ddc07caSPaolo Bonzini * actually attached to a device. 14694ddc07caSPaolo Bonzini * 14704ddc07caSPaolo Bonzini * This will modify the BlockDriverState fields, and swap contents 14714ddc07caSPaolo Bonzini * between bs_new and bs_old. Both bs_new and bs_old are modified. 14724ddc07caSPaolo Bonzini * 14734ddc07caSPaolo Bonzini * bs_new is required to be anonymous. 14744ddc07caSPaolo Bonzini * 14754ddc07caSPaolo Bonzini * This function does not create any image files. 14764ddc07caSPaolo Bonzini */ 14774ddc07caSPaolo Bonzini void bdrv_swap(BlockDriverState *bs_new, BlockDriverState *bs_old) 14784ddc07caSPaolo Bonzini { 14794ddc07caSPaolo Bonzini BlockDriverState tmp; 14804ddc07caSPaolo Bonzini 14814ddc07caSPaolo Bonzini /* bs_new must be anonymous and shouldn't have anything fancy enabled */ 14824ddc07caSPaolo Bonzini assert(bs_new->device_name[0] == '\0'); 14834ddc07caSPaolo Bonzini assert(bs_new->dirty_bitmap == NULL); 14844ddc07caSPaolo Bonzini assert(bs_new->job == NULL); 14854ddc07caSPaolo Bonzini assert(bs_new->dev == NULL); 14864ddc07caSPaolo Bonzini assert(bs_new->in_use == 0); 14874ddc07caSPaolo Bonzini assert(bs_new->io_limits_enabled == false); 14884ddc07caSPaolo Bonzini assert(bs_new->block_timer == NULL); 14894ddc07caSPaolo Bonzini 14904ddc07caSPaolo Bonzini tmp = *bs_new; 14914ddc07caSPaolo Bonzini *bs_new = *bs_old; 14924ddc07caSPaolo Bonzini *bs_old = tmp; 14934ddc07caSPaolo Bonzini 14944ddc07caSPaolo Bonzini /* there are some fields that should not be swapped, move them back */ 14954ddc07caSPaolo Bonzini bdrv_move_feature_fields(&tmp, bs_old); 14964ddc07caSPaolo Bonzini bdrv_move_feature_fields(bs_old, bs_new); 14974ddc07caSPaolo Bonzini bdrv_move_feature_fields(bs_new, &tmp); 14984ddc07caSPaolo Bonzini 14994ddc07caSPaolo Bonzini /* bs_new shouldn't be in bdrv_states even after the swap! */ 15004ddc07caSPaolo Bonzini assert(bs_new->device_name[0] == '\0'); 15014ddc07caSPaolo Bonzini 15024ddc07caSPaolo Bonzini /* Check a few fields that should remain attached to the device */ 15034ddc07caSPaolo Bonzini assert(bs_new->dev == NULL); 15044ddc07caSPaolo Bonzini assert(bs_new->job == NULL); 15054ddc07caSPaolo Bonzini assert(bs_new->in_use == 0); 15064ddc07caSPaolo Bonzini assert(bs_new->io_limits_enabled == false); 15074ddc07caSPaolo Bonzini assert(bs_new->block_timer == NULL); 15084ddc07caSPaolo Bonzini 15094ddc07caSPaolo Bonzini bdrv_rebind(bs_new); 15104ddc07caSPaolo Bonzini bdrv_rebind(bs_old); 15114ddc07caSPaolo Bonzini } 15124ddc07caSPaolo Bonzini 15138802d1fdSJeff Cody /* 15148802d1fdSJeff Cody * Add new bs contents at the top of an image chain while the chain is 15158802d1fdSJeff Cody * live, while keeping required fields on the top layer. 15168802d1fdSJeff Cody * 15178802d1fdSJeff Cody * This will modify the BlockDriverState fields, and swap contents 15188802d1fdSJeff Cody * between bs_new and bs_top. Both bs_new and bs_top are modified. 15198802d1fdSJeff Cody * 1520f6801b83SJeff Cody * bs_new is required to be anonymous. 1521f6801b83SJeff Cody * 15228802d1fdSJeff Cody * This function does not create any image files. 15238802d1fdSJeff Cody */ 15248802d1fdSJeff Cody void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top) 15258802d1fdSJeff Cody { 15264ddc07caSPaolo Bonzini bdrv_swap(bs_new, bs_top); 15278802d1fdSJeff Cody 15288802d1fdSJeff Cody /* The contents of 'tmp' will become bs_top, as we are 15298802d1fdSJeff Cody * swapping bs_new and bs_top contents. */ 15304ddc07caSPaolo Bonzini bs_top->backing_hd = bs_new; 15314ddc07caSPaolo Bonzini bs_top->open_flags &= ~BDRV_O_NO_BACKING; 15324ddc07caSPaolo Bonzini pstrcpy(bs_top->backing_file, sizeof(bs_top->backing_file), 15334ddc07caSPaolo Bonzini bs_new->filename); 15344ddc07caSPaolo Bonzini pstrcpy(bs_top->backing_format, sizeof(bs_top->backing_format), 15354ddc07caSPaolo Bonzini bs_new->drv ? bs_new->drv->format_name : ""); 15368802d1fdSJeff Cody } 15378802d1fdSJeff Cody 1538b338082bSbellard void bdrv_delete(BlockDriverState *bs) 1539b338082bSbellard { 1540fa879d62SMarkus Armbruster assert(!bs->dev); 15413e914655SPaolo Bonzini assert(!bs->job); 15423e914655SPaolo Bonzini assert(!bs->in_use); 154318846deeSMarkus Armbruster 15441b7bdbc1SStefan Hajnoczi /* remove from list, if necessary */ 1545d22b2f41SRyan Harper bdrv_make_anon(bs); 154634c6f050Saurel32 1547b338082bSbellard bdrv_close(bs); 154866f82ceeSKevin Wolf 1549f9092b10SMarkus Armbruster assert(bs != bs_snapshots); 15507267c094SAnthony Liguori g_free(bs); 1551fc01f7e7Sbellard } 1552fc01f7e7Sbellard 1553fa879d62SMarkus Armbruster int bdrv_attach_dev(BlockDriverState *bs, void *dev) 1554fa879d62SMarkus Armbruster /* TODO change to DeviceState *dev when all users are qdevified */ 155518846deeSMarkus Armbruster { 1556fa879d62SMarkus Armbruster if (bs->dev) { 155718846deeSMarkus Armbruster return -EBUSY; 155818846deeSMarkus Armbruster } 1559fa879d62SMarkus Armbruster bs->dev = dev; 156028a7282aSLuiz Capitulino bdrv_iostatus_reset(bs); 156118846deeSMarkus Armbruster return 0; 156218846deeSMarkus Armbruster } 156318846deeSMarkus Armbruster 1564fa879d62SMarkus Armbruster /* TODO qdevified devices don't use this, remove when devices are qdevified */ 1565fa879d62SMarkus Armbruster void bdrv_attach_dev_nofail(BlockDriverState *bs, void *dev) 156618846deeSMarkus Armbruster { 1567fa879d62SMarkus Armbruster if (bdrv_attach_dev(bs, dev) < 0) { 1568fa879d62SMarkus Armbruster abort(); 1569fa879d62SMarkus Armbruster } 1570fa879d62SMarkus Armbruster } 1571fa879d62SMarkus Armbruster 1572fa879d62SMarkus Armbruster void bdrv_detach_dev(BlockDriverState *bs, void *dev) 1573fa879d62SMarkus Armbruster /* TODO change to DeviceState *dev when all users are qdevified */ 1574fa879d62SMarkus Armbruster { 1575fa879d62SMarkus Armbruster assert(bs->dev == dev); 1576fa879d62SMarkus Armbruster bs->dev = NULL; 15770e49de52SMarkus Armbruster bs->dev_ops = NULL; 15780e49de52SMarkus Armbruster bs->dev_opaque = NULL; 157929e05f20SMarkus Armbruster bs->buffer_alignment = 512; 158018846deeSMarkus Armbruster } 158118846deeSMarkus Armbruster 1582fa879d62SMarkus Armbruster /* TODO change to return DeviceState * when all users are qdevified */ 1583fa879d62SMarkus Armbruster void *bdrv_get_attached_dev(BlockDriverState *bs) 158418846deeSMarkus Armbruster { 1585fa879d62SMarkus Armbruster return bs->dev; 158618846deeSMarkus Armbruster } 158718846deeSMarkus Armbruster 15880e49de52SMarkus Armbruster void bdrv_set_dev_ops(BlockDriverState *bs, const BlockDevOps *ops, 15890e49de52SMarkus Armbruster void *opaque) 15900e49de52SMarkus Armbruster { 15910e49de52SMarkus Armbruster bs->dev_ops = ops; 15920e49de52SMarkus Armbruster bs->dev_opaque = opaque; 15932c6942faSMarkus Armbruster if (bdrv_dev_has_removable_media(bs) && bs == bs_snapshots) { 15942c6942faSMarkus Armbruster bs_snapshots = NULL; 15952c6942faSMarkus Armbruster } 15960e49de52SMarkus Armbruster } 15970e49de52SMarkus Armbruster 159832c81a4aSPaolo Bonzini void bdrv_emit_qmp_error_event(const BlockDriverState *bdrv, 159932c81a4aSPaolo Bonzini enum MonitorEvent ev, 16001ceee0d5SPaolo Bonzini BlockErrorAction action, bool is_read) 1601329c0a48SLuiz Capitulino { 1602329c0a48SLuiz Capitulino QObject *data; 1603329c0a48SLuiz Capitulino const char *action_str; 1604329c0a48SLuiz Capitulino 1605329c0a48SLuiz Capitulino switch (action) { 1606329c0a48SLuiz Capitulino case BDRV_ACTION_REPORT: 1607329c0a48SLuiz Capitulino action_str = "report"; 1608329c0a48SLuiz Capitulino break; 1609329c0a48SLuiz Capitulino case BDRV_ACTION_IGNORE: 1610329c0a48SLuiz Capitulino action_str = "ignore"; 1611329c0a48SLuiz Capitulino break; 1612329c0a48SLuiz Capitulino case BDRV_ACTION_STOP: 1613329c0a48SLuiz Capitulino action_str = "stop"; 1614329c0a48SLuiz Capitulino break; 1615329c0a48SLuiz Capitulino default: 1616329c0a48SLuiz Capitulino abort(); 1617329c0a48SLuiz Capitulino } 1618329c0a48SLuiz Capitulino 1619329c0a48SLuiz Capitulino data = qobject_from_jsonf("{ 'device': %s, 'action': %s, 'operation': %s }", 1620329c0a48SLuiz Capitulino bdrv->device_name, 1621329c0a48SLuiz Capitulino action_str, 1622329c0a48SLuiz Capitulino is_read ? "read" : "write"); 162332c81a4aSPaolo Bonzini monitor_protocol_event(ev, data); 1624329c0a48SLuiz Capitulino 1625329c0a48SLuiz Capitulino qobject_decref(data); 1626329c0a48SLuiz Capitulino } 1627329c0a48SLuiz Capitulino 16286f382ed2SLuiz Capitulino static void bdrv_emit_qmp_eject_event(BlockDriverState *bs, bool ejected) 16296f382ed2SLuiz Capitulino { 16306f382ed2SLuiz Capitulino QObject *data; 16316f382ed2SLuiz Capitulino 16326f382ed2SLuiz Capitulino data = qobject_from_jsonf("{ 'device': %s, 'tray-open': %i }", 16336f382ed2SLuiz Capitulino bdrv_get_device_name(bs), ejected); 16346f382ed2SLuiz Capitulino monitor_protocol_event(QEVENT_DEVICE_TRAY_MOVED, data); 16356f382ed2SLuiz Capitulino 16366f382ed2SLuiz Capitulino qobject_decref(data); 16376f382ed2SLuiz Capitulino } 16386f382ed2SLuiz Capitulino 16397d4b4ba5SMarkus Armbruster static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load) 16400e49de52SMarkus Armbruster { 1641145feb17SMarkus Armbruster if (bs->dev_ops && bs->dev_ops->change_media_cb) { 16426f382ed2SLuiz Capitulino bool tray_was_closed = !bdrv_dev_is_tray_open(bs); 16437d4b4ba5SMarkus Armbruster bs->dev_ops->change_media_cb(bs->dev_opaque, load); 16446f382ed2SLuiz Capitulino if (tray_was_closed) { 16456f382ed2SLuiz Capitulino /* tray open */ 16466f382ed2SLuiz Capitulino bdrv_emit_qmp_eject_event(bs, true); 16476f382ed2SLuiz Capitulino } 16486f382ed2SLuiz Capitulino if (load) { 16496f382ed2SLuiz Capitulino /* tray close */ 16506f382ed2SLuiz Capitulino bdrv_emit_qmp_eject_event(bs, false); 16516f382ed2SLuiz Capitulino } 1652145feb17SMarkus Armbruster } 1653145feb17SMarkus Armbruster } 1654145feb17SMarkus Armbruster 16552c6942faSMarkus Armbruster bool bdrv_dev_has_removable_media(BlockDriverState *bs) 16562c6942faSMarkus Armbruster { 16572c6942faSMarkus Armbruster return !bs->dev || (bs->dev_ops && bs->dev_ops->change_media_cb); 16582c6942faSMarkus Armbruster } 16592c6942faSMarkus Armbruster 1660025ccaa7SPaolo Bonzini void bdrv_dev_eject_request(BlockDriverState *bs, bool force) 1661025ccaa7SPaolo Bonzini { 1662025ccaa7SPaolo Bonzini if (bs->dev_ops && bs->dev_ops->eject_request_cb) { 1663025ccaa7SPaolo Bonzini bs->dev_ops->eject_request_cb(bs->dev_opaque, force); 1664025ccaa7SPaolo Bonzini } 1665025ccaa7SPaolo Bonzini } 1666025ccaa7SPaolo Bonzini 1667e4def80bSMarkus Armbruster bool bdrv_dev_is_tray_open(BlockDriverState *bs) 1668e4def80bSMarkus Armbruster { 1669e4def80bSMarkus Armbruster if (bs->dev_ops && bs->dev_ops->is_tray_open) { 1670e4def80bSMarkus Armbruster return bs->dev_ops->is_tray_open(bs->dev_opaque); 1671e4def80bSMarkus Armbruster } 1672e4def80bSMarkus Armbruster return false; 1673e4def80bSMarkus Armbruster } 1674e4def80bSMarkus Armbruster 1675145feb17SMarkus Armbruster static void bdrv_dev_resize_cb(BlockDriverState *bs) 1676145feb17SMarkus Armbruster { 1677145feb17SMarkus Armbruster if (bs->dev_ops && bs->dev_ops->resize_cb) { 1678145feb17SMarkus Armbruster bs->dev_ops->resize_cb(bs->dev_opaque); 16790e49de52SMarkus Armbruster } 16800e49de52SMarkus Armbruster } 16810e49de52SMarkus Armbruster 1682f107639aSMarkus Armbruster bool bdrv_dev_is_medium_locked(BlockDriverState *bs) 1683f107639aSMarkus Armbruster { 1684f107639aSMarkus Armbruster if (bs->dev_ops && bs->dev_ops->is_medium_locked) { 1685f107639aSMarkus Armbruster return bs->dev_ops->is_medium_locked(bs->dev_opaque); 1686f107639aSMarkus Armbruster } 1687f107639aSMarkus Armbruster return false; 1688f107639aSMarkus Armbruster } 1689f107639aSMarkus Armbruster 1690e97fc193Saliguori /* 1691e97fc193Saliguori * Run consistency checks on an image 1692e97fc193Saliguori * 1693e076f338SKevin Wolf * Returns 0 if the check could be completed (it doesn't mean that the image is 1694a1c7273bSStefan Weil * free of errors) or -errno when an internal error occurred. The results of the 1695e076f338SKevin Wolf * check are stored in res. 1696e97fc193Saliguori */ 16974534ff54SKevin Wolf int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix) 1698e97fc193Saliguori { 1699e97fc193Saliguori if (bs->drv->bdrv_check == NULL) { 1700e97fc193Saliguori return -ENOTSUP; 1701e97fc193Saliguori } 1702e97fc193Saliguori 1703e076f338SKevin Wolf memset(res, 0, sizeof(*res)); 17044534ff54SKevin Wolf return bs->drv->bdrv_check(bs, res, fix); 1705e97fc193Saliguori } 1706e97fc193Saliguori 17078a426614SKevin Wolf #define COMMIT_BUF_SECTORS 2048 17088a426614SKevin Wolf 170933e3963eSbellard /* commit COW file into the raw image */ 171033e3963eSbellard int bdrv_commit(BlockDriverState *bs) 171133e3963eSbellard { 171219cb3738Sbellard BlockDriver *drv = bs->drv; 17138a426614SKevin Wolf int64_t sector, total_sectors; 17148a426614SKevin Wolf int n, ro, open_flags; 17150bce597dSJeff Cody int ret = 0; 17168a426614SKevin Wolf uint8_t *buf; 1717c2cba3d9SJim Meyering char filename[PATH_MAX]; 171833e3963eSbellard 171919cb3738Sbellard if (!drv) 172019cb3738Sbellard return -ENOMEDIUM; 172133e3963eSbellard 17224dca4b63SNaphtali Sprei if (!bs->backing_hd) { 17234dca4b63SNaphtali Sprei return -ENOTSUP; 17244dca4b63SNaphtali Sprei } 17254dca4b63SNaphtali Sprei 17262d3735d3SStefan Hajnoczi if (bdrv_in_use(bs) || bdrv_in_use(bs->backing_hd)) { 17272d3735d3SStefan Hajnoczi return -EBUSY; 17282d3735d3SStefan Hajnoczi } 17292d3735d3SStefan Hajnoczi 17304dca4b63SNaphtali Sprei ro = bs->backing_hd->read_only; 1731c2cba3d9SJim Meyering /* Use pstrcpy (not strncpy): filename must be NUL-terminated. */ 1732c2cba3d9SJim Meyering pstrcpy(filename, sizeof(filename), bs->backing_hd->filename); 17334dca4b63SNaphtali Sprei open_flags = bs->backing_hd->open_flags; 17344dca4b63SNaphtali Sprei 17354dca4b63SNaphtali Sprei if (ro) { 17360bce597dSJeff Cody if (bdrv_reopen(bs->backing_hd, open_flags | BDRV_O_RDWR, NULL)) { 17370bce597dSJeff Cody return -EACCES; 17384dca4b63SNaphtali Sprei } 1739ea2384d3Sbellard } 1740ea2384d3Sbellard 17416ea44308SJan Kiszka total_sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS; 17427267c094SAnthony Liguori buf = g_malloc(COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE); 17438a426614SKevin Wolf 17448a426614SKevin Wolf for (sector = 0; sector < total_sectors; sector += n) { 174505c4af54SStefan Hajnoczi if (bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n)) { 17468a426614SKevin Wolf 17478a426614SKevin Wolf if (bdrv_read(bs, sector, buf, n) != 0) { 17484dca4b63SNaphtali Sprei ret = -EIO; 17494dca4b63SNaphtali Sprei goto ro_cleanup; 175033e3963eSbellard } 175133e3963eSbellard 17528a426614SKevin Wolf if (bdrv_write(bs->backing_hd, sector, buf, n) != 0) { 17534dca4b63SNaphtali Sprei ret = -EIO; 17544dca4b63SNaphtali Sprei goto ro_cleanup; 175533e3963eSbellard } 175633e3963eSbellard } 175733e3963eSbellard } 175895389c86Sbellard 17591d44952fSChristoph Hellwig if (drv->bdrv_make_empty) { 17601d44952fSChristoph Hellwig ret = drv->bdrv_make_empty(bs); 17611d44952fSChristoph Hellwig bdrv_flush(bs); 17621d44952fSChristoph Hellwig } 176395389c86Sbellard 17643f5075aeSChristoph Hellwig /* 17653f5075aeSChristoph Hellwig * Make sure all data we wrote to the backing device is actually 17663f5075aeSChristoph Hellwig * stable on disk. 17673f5075aeSChristoph Hellwig */ 17683f5075aeSChristoph Hellwig if (bs->backing_hd) 17693f5075aeSChristoph Hellwig bdrv_flush(bs->backing_hd); 17704dca4b63SNaphtali Sprei 17714dca4b63SNaphtali Sprei ro_cleanup: 17727267c094SAnthony Liguori g_free(buf); 17734dca4b63SNaphtali Sprei 17744dca4b63SNaphtali Sprei if (ro) { 17750bce597dSJeff Cody /* ignoring error return here */ 17760bce597dSJeff Cody bdrv_reopen(bs->backing_hd, open_flags & ~BDRV_O_RDWR, NULL); 17774dca4b63SNaphtali Sprei } 17784dca4b63SNaphtali Sprei 17791d44952fSChristoph Hellwig return ret; 178033e3963eSbellard } 178133e3963eSbellard 1782e8877497SStefan Hajnoczi int bdrv_commit_all(void) 17836ab4b5abSMarkus Armbruster { 17846ab4b5abSMarkus Armbruster BlockDriverState *bs; 17856ab4b5abSMarkus Armbruster 17866ab4b5abSMarkus Armbruster QTAILQ_FOREACH(bs, &bdrv_states, list) { 1787272d2d8eSJeff Cody if (bs->drv && bs->backing_hd) { 1788e8877497SStefan Hajnoczi int ret = bdrv_commit(bs); 1789e8877497SStefan Hajnoczi if (ret < 0) { 1790e8877497SStefan Hajnoczi return ret; 17916ab4b5abSMarkus Armbruster } 17926ab4b5abSMarkus Armbruster } 1793272d2d8eSJeff Cody } 1794e8877497SStefan Hajnoczi return 0; 1795e8877497SStefan Hajnoczi } 17966ab4b5abSMarkus Armbruster 1797dbffbdcfSStefan Hajnoczi struct BdrvTrackedRequest { 1798dbffbdcfSStefan Hajnoczi BlockDriverState *bs; 1799dbffbdcfSStefan Hajnoczi int64_t sector_num; 1800dbffbdcfSStefan Hajnoczi int nb_sectors; 1801dbffbdcfSStefan Hajnoczi bool is_write; 1802dbffbdcfSStefan Hajnoczi QLIST_ENTRY(BdrvTrackedRequest) list; 18035f8b6491SStefan Hajnoczi Coroutine *co; /* owner, used for deadlock detection */ 1804f4658285SStefan Hajnoczi CoQueue wait_queue; /* coroutines blocked on this request */ 1805dbffbdcfSStefan Hajnoczi }; 1806dbffbdcfSStefan Hajnoczi 1807dbffbdcfSStefan Hajnoczi /** 1808dbffbdcfSStefan Hajnoczi * Remove an active request from the tracked requests list 1809dbffbdcfSStefan Hajnoczi * 1810dbffbdcfSStefan Hajnoczi * This function should be called when a tracked request is completing. 1811dbffbdcfSStefan Hajnoczi */ 1812dbffbdcfSStefan Hajnoczi static void tracked_request_end(BdrvTrackedRequest *req) 1813dbffbdcfSStefan Hajnoczi { 1814dbffbdcfSStefan Hajnoczi QLIST_REMOVE(req, list); 1815f4658285SStefan Hajnoczi qemu_co_queue_restart_all(&req->wait_queue); 1816dbffbdcfSStefan Hajnoczi } 1817dbffbdcfSStefan Hajnoczi 1818dbffbdcfSStefan Hajnoczi /** 1819dbffbdcfSStefan Hajnoczi * Add an active request to the tracked requests list 1820dbffbdcfSStefan Hajnoczi */ 1821dbffbdcfSStefan Hajnoczi static void tracked_request_begin(BdrvTrackedRequest *req, 1822dbffbdcfSStefan Hajnoczi BlockDriverState *bs, 1823dbffbdcfSStefan Hajnoczi int64_t sector_num, 1824dbffbdcfSStefan Hajnoczi int nb_sectors, bool is_write) 1825dbffbdcfSStefan Hajnoczi { 1826dbffbdcfSStefan Hajnoczi *req = (BdrvTrackedRequest){ 1827dbffbdcfSStefan Hajnoczi .bs = bs, 1828dbffbdcfSStefan Hajnoczi .sector_num = sector_num, 1829dbffbdcfSStefan Hajnoczi .nb_sectors = nb_sectors, 1830dbffbdcfSStefan Hajnoczi .is_write = is_write, 18315f8b6491SStefan Hajnoczi .co = qemu_coroutine_self(), 1832dbffbdcfSStefan Hajnoczi }; 1833dbffbdcfSStefan Hajnoczi 1834f4658285SStefan Hajnoczi qemu_co_queue_init(&req->wait_queue); 1835f4658285SStefan Hajnoczi 1836dbffbdcfSStefan Hajnoczi QLIST_INSERT_HEAD(&bs->tracked_requests, req, list); 1837dbffbdcfSStefan Hajnoczi } 1838dbffbdcfSStefan Hajnoczi 1839d83947acSStefan Hajnoczi /** 1840d83947acSStefan Hajnoczi * Round a region to cluster boundaries 1841d83947acSStefan Hajnoczi */ 1842343bded4SPaolo Bonzini void bdrv_round_to_clusters(BlockDriverState *bs, 1843d83947acSStefan Hajnoczi int64_t sector_num, int nb_sectors, 1844d83947acSStefan Hajnoczi int64_t *cluster_sector_num, 1845d83947acSStefan Hajnoczi int *cluster_nb_sectors) 1846d83947acSStefan Hajnoczi { 1847d83947acSStefan Hajnoczi BlockDriverInfo bdi; 1848d83947acSStefan Hajnoczi 1849d83947acSStefan Hajnoczi if (bdrv_get_info(bs, &bdi) < 0 || bdi.cluster_size == 0) { 1850d83947acSStefan Hajnoczi *cluster_sector_num = sector_num; 1851d83947acSStefan Hajnoczi *cluster_nb_sectors = nb_sectors; 1852d83947acSStefan Hajnoczi } else { 1853d83947acSStefan Hajnoczi int64_t c = bdi.cluster_size / BDRV_SECTOR_SIZE; 1854d83947acSStefan Hajnoczi *cluster_sector_num = QEMU_ALIGN_DOWN(sector_num, c); 1855d83947acSStefan Hajnoczi *cluster_nb_sectors = QEMU_ALIGN_UP(sector_num - *cluster_sector_num + 1856d83947acSStefan Hajnoczi nb_sectors, c); 1857d83947acSStefan Hajnoczi } 1858d83947acSStefan Hajnoczi } 1859d83947acSStefan Hajnoczi 1860f4658285SStefan Hajnoczi static bool tracked_request_overlaps(BdrvTrackedRequest *req, 1861f4658285SStefan Hajnoczi int64_t sector_num, int nb_sectors) { 1862d83947acSStefan Hajnoczi /* aaaa bbbb */ 1863d83947acSStefan Hajnoczi if (sector_num >= req->sector_num + req->nb_sectors) { 1864d83947acSStefan Hajnoczi return false; 1865d83947acSStefan Hajnoczi } 1866d83947acSStefan Hajnoczi /* bbbb aaaa */ 1867d83947acSStefan Hajnoczi if (req->sector_num >= sector_num + nb_sectors) { 1868d83947acSStefan Hajnoczi return false; 1869d83947acSStefan Hajnoczi } 1870d83947acSStefan Hajnoczi return true; 1871f4658285SStefan Hajnoczi } 1872f4658285SStefan Hajnoczi 1873f4658285SStefan Hajnoczi static void coroutine_fn wait_for_overlapping_requests(BlockDriverState *bs, 1874f4658285SStefan Hajnoczi int64_t sector_num, int nb_sectors) 1875f4658285SStefan Hajnoczi { 1876f4658285SStefan Hajnoczi BdrvTrackedRequest *req; 1877d83947acSStefan Hajnoczi int64_t cluster_sector_num; 1878d83947acSStefan Hajnoczi int cluster_nb_sectors; 1879f4658285SStefan Hajnoczi bool retry; 1880f4658285SStefan Hajnoczi 1881d83947acSStefan Hajnoczi /* If we touch the same cluster it counts as an overlap. This guarantees 1882d83947acSStefan Hajnoczi * that allocating writes will be serialized and not race with each other 1883d83947acSStefan Hajnoczi * for the same cluster. For example, in copy-on-read it ensures that the 1884d83947acSStefan Hajnoczi * CoR read and write operations are atomic and guest writes cannot 1885d83947acSStefan Hajnoczi * interleave between them. 1886d83947acSStefan Hajnoczi */ 1887343bded4SPaolo Bonzini bdrv_round_to_clusters(bs, sector_num, nb_sectors, 1888d83947acSStefan Hajnoczi &cluster_sector_num, &cluster_nb_sectors); 1889d83947acSStefan Hajnoczi 1890f4658285SStefan Hajnoczi do { 1891f4658285SStefan Hajnoczi retry = false; 1892f4658285SStefan Hajnoczi QLIST_FOREACH(req, &bs->tracked_requests, list) { 1893d83947acSStefan Hajnoczi if (tracked_request_overlaps(req, cluster_sector_num, 1894d83947acSStefan Hajnoczi cluster_nb_sectors)) { 18955f8b6491SStefan Hajnoczi /* Hitting this means there was a reentrant request, for 18965f8b6491SStefan Hajnoczi * example, a block driver issuing nested requests. This must 18975f8b6491SStefan Hajnoczi * never happen since it means deadlock. 18985f8b6491SStefan Hajnoczi */ 18995f8b6491SStefan Hajnoczi assert(qemu_coroutine_self() != req->co); 19005f8b6491SStefan Hajnoczi 1901f4658285SStefan Hajnoczi qemu_co_queue_wait(&req->wait_queue); 1902f4658285SStefan Hajnoczi retry = true; 1903f4658285SStefan Hajnoczi break; 1904f4658285SStefan Hajnoczi } 1905f4658285SStefan Hajnoczi } 1906f4658285SStefan Hajnoczi } while (retry); 1907f4658285SStefan Hajnoczi } 1908f4658285SStefan Hajnoczi 1909756e6736SKevin Wolf /* 1910756e6736SKevin Wolf * Return values: 1911756e6736SKevin Wolf * 0 - success 1912756e6736SKevin Wolf * -EINVAL - backing format specified, but no file 1913756e6736SKevin Wolf * -ENOSPC - can't update the backing file because no space is left in the 1914756e6736SKevin Wolf * image file header 1915756e6736SKevin Wolf * -ENOTSUP - format driver doesn't support changing the backing file 1916756e6736SKevin Wolf */ 1917756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs, 1918756e6736SKevin Wolf const char *backing_file, const char *backing_fmt) 1919756e6736SKevin Wolf { 1920756e6736SKevin Wolf BlockDriver *drv = bs->drv; 1921469ef350SPaolo Bonzini int ret; 1922756e6736SKevin Wolf 19235f377794SPaolo Bonzini /* Backing file format doesn't make sense without a backing file */ 19245f377794SPaolo Bonzini if (backing_fmt && !backing_file) { 19255f377794SPaolo Bonzini return -EINVAL; 19265f377794SPaolo Bonzini } 19275f377794SPaolo Bonzini 1928756e6736SKevin Wolf if (drv->bdrv_change_backing_file != NULL) { 1929469ef350SPaolo Bonzini ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); 1930756e6736SKevin Wolf } else { 1931469ef350SPaolo Bonzini ret = -ENOTSUP; 1932756e6736SKevin Wolf } 1933469ef350SPaolo Bonzini 1934469ef350SPaolo Bonzini if (ret == 0) { 1935469ef350SPaolo Bonzini pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); 1936469ef350SPaolo Bonzini pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); 1937469ef350SPaolo Bonzini } 1938469ef350SPaolo Bonzini return ret; 1939756e6736SKevin Wolf } 1940756e6736SKevin Wolf 19416ebdcee2SJeff Cody /* 19426ebdcee2SJeff Cody * Finds the image layer in the chain that has 'bs' as its backing file. 19436ebdcee2SJeff Cody * 19446ebdcee2SJeff Cody * active is the current topmost image. 19456ebdcee2SJeff Cody * 19466ebdcee2SJeff Cody * Returns NULL if bs is not found in active's image chain, 19476ebdcee2SJeff Cody * or if active == bs. 19486ebdcee2SJeff Cody */ 19496ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active, 19506ebdcee2SJeff Cody BlockDriverState *bs) 19516ebdcee2SJeff Cody { 19526ebdcee2SJeff Cody BlockDriverState *overlay = NULL; 19536ebdcee2SJeff Cody BlockDriverState *intermediate; 19546ebdcee2SJeff Cody 19556ebdcee2SJeff Cody assert(active != NULL); 19566ebdcee2SJeff Cody assert(bs != NULL); 19576ebdcee2SJeff Cody 19586ebdcee2SJeff Cody /* if bs is the same as active, then by definition it has no overlay 19596ebdcee2SJeff Cody */ 19606ebdcee2SJeff Cody if (active == bs) { 19616ebdcee2SJeff Cody return NULL; 19626ebdcee2SJeff Cody } 19636ebdcee2SJeff Cody 19646ebdcee2SJeff Cody intermediate = active; 19656ebdcee2SJeff Cody while (intermediate->backing_hd) { 19666ebdcee2SJeff Cody if (intermediate->backing_hd == bs) { 19676ebdcee2SJeff Cody overlay = intermediate; 19686ebdcee2SJeff Cody break; 19696ebdcee2SJeff Cody } 19706ebdcee2SJeff Cody intermediate = intermediate->backing_hd; 19716ebdcee2SJeff Cody } 19726ebdcee2SJeff Cody 19736ebdcee2SJeff Cody return overlay; 19746ebdcee2SJeff Cody } 19756ebdcee2SJeff Cody 19766ebdcee2SJeff Cody typedef struct BlkIntermediateStates { 19776ebdcee2SJeff Cody BlockDriverState *bs; 19786ebdcee2SJeff Cody QSIMPLEQ_ENTRY(BlkIntermediateStates) entry; 19796ebdcee2SJeff Cody } BlkIntermediateStates; 19806ebdcee2SJeff Cody 19816ebdcee2SJeff Cody 19826ebdcee2SJeff Cody /* 19836ebdcee2SJeff Cody * Drops images above 'base' up to and including 'top', and sets the image 19846ebdcee2SJeff Cody * above 'top' to have base as its backing file. 19856ebdcee2SJeff Cody * 19866ebdcee2SJeff Cody * Requires that the overlay to 'top' is opened r/w, so that the backing file 19876ebdcee2SJeff Cody * information in 'bs' can be properly updated. 19886ebdcee2SJeff Cody * 19896ebdcee2SJeff Cody * E.g., this will convert the following chain: 19906ebdcee2SJeff Cody * bottom <- base <- intermediate <- top <- active 19916ebdcee2SJeff Cody * 19926ebdcee2SJeff Cody * to 19936ebdcee2SJeff Cody * 19946ebdcee2SJeff Cody * bottom <- base <- active 19956ebdcee2SJeff Cody * 19966ebdcee2SJeff Cody * It is allowed for bottom==base, in which case it converts: 19976ebdcee2SJeff Cody * 19986ebdcee2SJeff Cody * base <- intermediate <- top <- active 19996ebdcee2SJeff Cody * 20006ebdcee2SJeff Cody * to 20016ebdcee2SJeff Cody * 20026ebdcee2SJeff Cody * base <- active 20036ebdcee2SJeff Cody * 20046ebdcee2SJeff Cody * Error conditions: 20056ebdcee2SJeff Cody * if active == top, that is considered an error 20066ebdcee2SJeff Cody * 20076ebdcee2SJeff Cody */ 20086ebdcee2SJeff Cody int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top, 20096ebdcee2SJeff Cody BlockDriverState *base) 20106ebdcee2SJeff Cody { 20116ebdcee2SJeff Cody BlockDriverState *intermediate; 20126ebdcee2SJeff Cody BlockDriverState *base_bs = NULL; 20136ebdcee2SJeff Cody BlockDriverState *new_top_bs = NULL; 20146ebdcee2SJeff Cody BlkIntermediateStates *intermediate_state, *next; 20156ebdcee2SJeff Cody int ret = -EIO; 20166ebdcee2SJeff Cody 20176ebdcee2SJeff Cody QSIMPLEQ_HEAD(states_to_delete, BlkIntermediateStates) states_to_delete; 20186ebdcee2SJeff Cody QSIMPLEQ_INIT(&states_to_delete); 20196ebdcee2SJeff Cody 20206ebdcee2SJeff Cody if (!top->drv || !base->drv) { 20216ebdcee2SJeff Cody goto exit; 20226ebdcee2SJeff Cody } 20236ebdcee2SJeff Cody 20246ebdcee2SJeff Cody new_top_bs = bdrv_find_overlay(active, top); 20256ebdcee2SJeff Cody 20266ebdcee2SJeff Cody if (new_top_bs == NULL) { 20276ebdcee2SJeff Cody /* we could not find the image above 'top', this is an error */ 20286ebdcee2SJeff Cody goto exit; 20296ebdcee2SJeff Cody } 20306ebdcee2SJeff Cody 20316ebdcee2SJeff Cody /* special case of new_top_bs->backing_hd already pointing to base - nothing 20326ebdcee2SJeff Cody * to do, no intermediate images */ 20336ebdcee2SJeff Cody if (new_top_bs->backing_hd == base) { 20346ebdcee2SJeff Cody ret = 0; 20356ebdcee2SJeff Cody goto exit; 20366ebdcee2SJeff Cody } 20376ebdcee2SJeff Cody 20386ebdcee2SJeff Cody intermediate = top; 20396ebdcee2SJeff Cody 20406ebdcee2SJeff Cody /* now we will go down through the list, and add each BDS we find 20416ebdcee2SJeff Cody * into our deletion queue, until we hit the 'base' 20426ebdcee2SJeff Cody */ 20436ebdcee2SJeff Cody while (intermediate) { 20446ebdcee2SJeff Cody intermediate_state = g_malloc0(sizeof(BlkIntermediateStates)); 20456ebdcee2SJeff Cody intermediate_state->bs = intermediate; 20466ebdcee2SJeff Cody QSIMPLEQ_INSERT_TAIL(&states_to_delete, intermediate_state, entry); 20476ebdcee2SJeff Cody 20486ebdcee2SJeff Cody if (intermediate->backing_hd == base) { 20496ebdcee2SJeff Cody base_bs = intermediate->backing_hd; 20506ebdcee2SJeff Cody break; 20516ebdcee2SJeff Cody } 20526ebdcee2SJeff Cody intermediate = intermediate->backing_hd; 20536ebdcee2SJeff Cody } 20546ebdcee2SJeff Cody if (base_bs == NULL) { 20556ebdcee2SJeff Cody /* something went wrong, we did not end at the base. safely 20566ebdcee2SJeff Cody * unravel everything, and exit with error */ 20576ebdcee2SJeff Cody goto exit; 20586ebdcee2SJeff Cody } 20596ebdcee2SJeff Cody 20606ebdcee2SJeff Cody /* success - we can delete the intermediate states, and link top->base */ 20616ebdcee2SJeff Cody ret = bdrv_change_backing_file(new_top_bs, base_bs->filename, 20626ebdcee2SJeff Cody base_bs->drv ? base_bs->drv->format_name : ""); 20636ebdcee2SJeff Cody if (ret) { 20646ebdcee2SJeff Cody goto exit; 20656ebdcee2SJeff Cody } 20666ebdcee2SJeff Cody new_top_bs->backing_hd = base_bs; 20676ebdcee2SJeff Cody 20686ebdcee2SJeff Cody 20696ebdcee2SJeff Cody QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) { 20706ebdcee2SJeff Cody /* so that bdrv_close() does not recursively close the chain */ 20716ebdcee2SJeff Cody intermediate_state->bs->backing_hd = NULL; 20726ebdcee2SJeff Cody bdrv_delete(intermediate_state->bs); 20736ebdcee2SJeff Cody } 20746ebdcee2SJeff Cody ret = 0; 20756ebdcee2SJeff Cody 20766ebdcee2SJeff Cody exit: 20776ebdcee2SJeff Cody QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) { 20786ebdcee2SJeff Cody g_free(intermediate_state); 20796ebdcee2SJeff Cody } 20806ebdcee2SJeff Cody return ret; 20816ebdcee2SJeff Cody } 20826ebdcee2SJeff Cody 20836ebdcee2SJeff Cody 208471d0770cSaliguori static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset, 208571d0770cSaliguori size_t size) 208671d0770cSaliguori { 208771d0770cSaliguori int64_t len; 208871d0770cSaliguori 208971d0770cSaliguori if (!bdrv_is_inserted(bs)) 209071d0770cSaliguori return -ENOMEDIUM; 209171d0770cSaliguori 209271d0770cSaliguori if (bs->growable) 209371d0770cSaliguori return 0; 209471d0770cSaliguori 209571d0770cSaliguori len = bdrv_getlength(bs); 209671d0770cSaliguori 2097fbb7b4e0SKevin Wolf if (offset < 0) 2098fbb7b4e0SKevin Wolf return -EIO; 2099fbb7b4e0SKevin Wolf 2100fbb7b4e0SKevin Wolf if ((offset > len) || (len - offset < size)) 210171d0770cSaliguori return -EIO; 210271d0770cSaliguori 210371d0770cSaliguori return 0; 210471d0770cSaliguori } 210571d0770cSaliguori 210671d0770cSaliguori static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num, 210771d0770cSaliguori int nb_sectors) 210871d0770cSaliguori { 2109eb5a3165SJes Sorensen return bdrv_check_byte_request(bs, sector_num * BDRV_SECTOR_SIZE, 2110eb5a3165SJes Sorensen nb_sectors * BDRV_SECTOR_SIZE); 211171d0770cSaliguori } 211271d0770cSaliguori 21131c9805a3SStefan Hajnoczi typedef struct RwCo { 21141c9805a3SStefan Hajnoczi BlockDriverState *bs; 21151c9805a3SStefan Hajnoczi int64_t sector_num; 21161c9805a3SStefan Hajnoczi int nb_sectors; 21171c9805a3SStefan Hajnoczi QEMUIOVector *qiov; 21181c9805a3SStefan Hajnoczi bool is_write; 21191c9805a3SStefan Hajnoczi int ret; 21201c9805a3SStefan Hajnoczi } RwCo; 21211c9805a3SStefan Hajnoczi 21221c9805a3SStefan Hajnoczi static void coroutine_fn bdrv_rw_co_entry(void *opaque) 2123fc01f7e7Sbellard { 21241c9805a3SStefan Hajnoczi RwCo *rwco = opaque; 2125fc01f7e7Sbellard 21261c9805a3SStefan Hajnoczi if (!rwco->is_write) { 21271c9805a3SStefan Hajnoczi rwco->ret = bdrv_co_do_readv(rwco->bs, rwco->sector_num, 2128470c0504SStefan Hajnoczi rwco->nb_sectors, rwco->qiov, 0); 21291c9805a3SStefan Hajnoczi } else { 21301c9805a3SStefan Hajnoczi rwco->ret = bdrv_co_do_writev(rwco->bs, rwco->sector_num, 2131f08f2ddaSStefan Hajnoczi rwco->nb_sectors, rwco->qiov, 0); 21321c9805a3SStefan Hajnoczi } 21331c9805a3SStefan Hajnoczi } 2134e7a8a783SKevin Wolf 21351c9805a3SStefan Hajnoczi /* 21361c9805a3SStefan Hajnoczi * Process a synchronous request using coroutines 21371c9805a3SStefan Hajnoczi */ 21381c9805a3SStefan Hajnoczi static int bdrv_rw_co(BlockDriverState *bs, int64_t sector_num, uint8_t *buf, 21391c9805a3SStefan Hajnoczi int nb_sectors, bool is_write) 21401c9805a3SStefan Hajnoczi { 2141e7a8a783SKevin Wolf QEMUIOVector qiov; 2142e7a8a783SKevin Wolf struct iovec iov = { 2143e7a8a783SKevin Wolf .iov_base = (void *)buf, 2144e7a8a783SKevin Wolf .iov_len = nb_sectors * BDRV_SECTOR_SIZE, 2145e7a8a783SKevin Wolf }; 21461c9805a3SStefan Hajnoczi Coroutine *co; 21471c9805a3SStefan Hajnoczi RwCo rwco = { 21481c9805a3SStefan Hajnoczi .bs = bs, 21491c9805a3SStefan Hajnoczi .sector_num = sector_num, 21501c9805a3SStefan Hajnoczi .nb_sectors = nb_sectors, 21511c9805a3SStefan Hajnoczi .qiov = &qiov, 21521c9805a3SStefan Hajnoczi .is_write = is_write, 21531c9805a3SStefan Hajnoczi .ret = NOT_DONE, 21541c9805a3SStefan Hajnoczi }; 2155e7a8a783SKevin Wolf 2156e7a8a783SKevin Wolf qemu_iovec_init_external(&qiov, &iov, 1); 21571c9805a3SStefan Hajnoczi 2158498e386cSZhi Yong Wu /** 2159498e386cSZhi Yong Wu * In sync call context, when the vcpu is blocked, this throttling timer 2160498e386cSZhi Yong Wu * will not fire; so the I/O throttling function has to be disabled here 2161498e386cSZhi Yong Wu * if it has been enabled. 2162498e386cSZhi Yong Wu */ 2163498e386cSZhi Yong Wu if (bs->io_limits_enabled) { 2164498e386cSZhi Yong Wu fprintf(stderr, "Disabling I/O throttling on '%s' due " 2165498e386cSZhi Yong Wu "to synchronous I/O.\n", bdrv_get_device_name(bs)); 2166498e386cSZhi Yong Wu bdrv_io_limits_disable(bs); 2167498e386cSZhi Yong Wu } 2168498e386cSZhi Yong Wu 21691c9805a3SStefan Hajnoczi if (qemu_in_coroutine()) { 21701c9805a3SStefan Hajnoczi /* Fast-path if already in coroutine context */ 21711c9805a3SStefan Hajnoczi bdrv_rw_co_entry(&rwco); 21721c9805a3SStefan Hajnoczi } else { 21731c9805a3SStefan Hajnoczi co = qemu_coroutine_create(bdrv_rw_co_entry); 21741c9805a3SStefan Hajnoczi qemu_coroutine_enter(co, &rwco); 21751c9805a3SStefan Hajnoczi while (rwco.ret == NOT_DONE) { 21761c9805a3SStefan Hajnoczi qemu_aio_wait(); 21771c9805a3SStefan Hajnoczi } 21781c9805a3SStefan Hajnoczi } 21791c9805a3SStefan Hajnoczi return rwco.ret; 2180e7a8a783SKevin Wolf } 2181e7a8a783SKevin Wolf 21821c9805a3SStefan Hajnoczi /* return < 0 if error. See bdrv_write() for the return codes */ 21831c9805a3SStefan Hajnoczi int bdrv_read(BlockDriverState *bs, int64_t sector_num, 21841c9805a3SStefan Hajnoczi uint8_t *buf, int nb_sectors) 21851c9805a3SStefan Hajnoczi { 21861c9805a3SStefan Hajnoczi return bdrv_rw_co(bs, sector_num, buf, nb_sectors, false); 218783f64091Sbellard } 2188fc01f7e7Sbellard 218907d27a44SMarkus Armbruster /* Just like bdrv_read(), but with I/O throttling temporarily disabled */ 219007d27a44SMarkus Armbruster int bdrv_read_unthrottled(BlockDriverState *bs, int64_t sector_num, 219107d27a44SMarkus Armbruster uint8_t *buf, int nb_sectors) 219207d27a44SMarkus Armbruster { 219307d27a44SMarkus Armbruster bool enabled; 219407d27a44SMarkus Armbruster int ret; 219507d27a44SMarkus Armbruster 219607d27a44SMarkus Armbruster enabled = bs->io_limits_enabled; 219707d27a44SMarkus Armbruster bs->io_limits_enabled = false; 219807d27a44SMarkus Armbruster ret = bdrv_read(bs, 0, buf, 1); 219907d27a44SMarkus Armbruster bs->io_limits_enabled = enabled; 220007d27a44SMarkus Armbruster return ret; 220107d27a44SMarkus Armbruster } 220207d27a44SMarkus Armbruster 220319cb3738Sbellard /* Return < 0 if error. Important errors are: 220419cb3738Sbellard -EIO generic I/O error (may happen for all errors) 220519cb3738Sbellard -ENOMEDIUM No media inserted. 220619cb3738Sbellard -EINVAL Invalid sector number or nb_sectors 220719cb3738Sbellard -EACCES Trying to write a read-only device 220819cb3738Sbellard */ 2209fc01f7e7Sbellard int bdrv_write(BlockDriverState *bs, int64_t sector_num, 2210fc01f7e7Sbellard const uint8_t *buf, int nb_sectors) 2211fc01f7e7Sbellard { 22121c9805a3SStefan Hajnoczi return bdrv_rw_co(bs, sector_num, (uint8_t *)buf, nb_sectors, true); 221383f64091Sbellard } 221483f64091Sbellard 2215eda578e5Saliguori int bdrv_pread(BlockDriverState *bs, int64_t offset, 2216eda578e5Saliguori void *buf, int count1) 221783f64091Sbellard { 22186ea44308SJan Kiszka uint8_t tmp_buf[BDRV_SECTOR_SIZE]; 221983f64091Sbellard int len, nb_sectors, count; 222083f64091Sbellard int64_t sector_num; 22219a8c4cceSKevin Wolf int ret; 222283f64091Sbellard 222383f64091Sbellard count = count1; 222483f64091Sbellard /* first read to align to sector start */ 22256ea44308SJan Kiszka len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1); 222683f64091Sbellard if (len > count) 222783f64091Sbellard len = count; 22286ea44308SJan Kiszka sector_num = offset >> BDRV_SECTOR_BITS; 222983f64091Sbellard if (len > 0) { 22309a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) 22319a8c4cceSKevin Wolf return ret; 22326ea44308SJan Kiszka memcpy(buf, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), len); 223383f64091Sbellard count -= len; 223483f64091Sbellard if (count == 0) 223583f64091Sbellard return count1; 223683f64091Sbellard sector_num++; 223783f64091Sbellard buf += len; 223883f64091Sbellard } 223983f64091Sbellard 224083f64091Sbellard /* read the sectors "in place" */ 22416ea44308SJan Kiszka nb_sectors = count >> BDRV_SECTOR_BITS; 224283f64091Sbellard if (nb_sectors > 0) { 22439a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, buf, nb_sectors)) < 0) 22449a8c4cceSKevin Wolf return ret; 224583f64091Sbellard sector_num += nb_sectors; 22466ea44308SJan Kiszka len = nb_sectors << BDRV_SECTOR_BITS; 224783f64091Sbellard buf += len; 224883f64091Sbellard count -= len; 224983f64091Sbellard } 225083f64091Sbellard 225183f64091Sbellard /* add data from the last sector */ 225283f64091Sbellard if (count > 0) { 22539a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) 22549a8c4cceSKevin Wolf return ret; 225583f64091Sbellard memcpy(buf, tmp_buf, count); 225683f64091Sbellard } 225783f64091Sbellard return count1; 225883f64091Sbellard } 225983f64091Sbellard 2260eda578e5Saliguori int bdrv_pwrite(BlockDriverState *bs, int64_t offset, 2261eda578e5Saliguori const void *buf, int count1) 226283f64091Sbellard { 22636ea44308SJan Kiszka uint8_t tmp_buf[BDRV_SECTOR_SIZE]; 226483f64091Sbellard int len, nb_sectors, count; 226583f64091Sbellard int64_t sector_num; 22669a8c4cceSKevin Wolf int ret; 226783f64091Sbellard 226883f64091Sbellard count = count1; 226983f64091Sbellard /* first write to align to sector start */ 22706ea44308SJan Kiszka len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1); 227183f64091Sbellard if (len > count) 227283f64091Sbellard len = count; 22736ea44308SJan Kiszka sector_num = offset >> BDRV_SECTOR_BITS; 227483f64091Sbellard if (len > 0) { 22759a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) 22769a8c4cceSKevin Wolf return ret; 22776ea44308SJan Kiszka memcpy(tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), buf, len); 22789a8c4cceSKevin Wolf if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0) 22799a8c4cceSKevin Wolf return ret; 228083f64091Sbellard count -= len; 228183f64091Sbellard if (count == 0) 228283f64091Sbellard return count1; 228383f64091Sbellard sector_num++; 228483f64091Sbellard buf += len; 228583f64091Sbellard } 228683f64091Sbellard 228783f64091Sbellard /* write the sectors "in place" */ 22886ea44308SJan Kiszka nb_sectors = count >> BDRV_SECTOR_BITS; 228983f64091Sbellard if (nb_sectors > 0) { 22909a8c4cceSKevin Wolf if ((ret = bdrv_write(bs, sector_num, buf, nb_sectors)) < 0) 22919a8c4cceSKevin Wolf return ret; 229283f64091Sbellard sector_num += nb_sectors; 22936ea44308SJan Kiszka len = nb_sectors << BDRV_SECTOR_BITS; 229483f64091Sbellard buf += len; 229583f64091Sbellard count -= len; 229683f64091Sbellard } 229783f64091Sbellard 229883f64091Sbellard /* add data from the last sector */ 229983f64091Sbellard if (count > 0) { 23009a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) 23019a8c4cceSKevin Wolf return ret; 230283f64091Sbellard memcpy(tmp_buf, buf, count); 23039a8c4cceSKevin Wolf if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0) 23049a8c4cceSKevin Wolf return ret; 230583f64091Sbellard } 230683f64091Sbellard return count1; 230783f64091Sbellard } 230883f64091Sbellard 2309f08145feSKevin Wolf /* 2310f08145feSKevin Wolf * Writes to the file and ensures that no writes are reordered across this 2311f08145feSKevin Wolf * request (acts as a barrier) 2312f08145feSKevin Wolf * 2313f08145feSKevin Wolf * Returns 0 on success, -errno in error cases. 2314f08145feSKevin Wolf */ 2315f08145feSKevin Wolf int bdrv_pwrite_sync(BlockDriverState *bs, int64_t offset, 2316f08145feSKevin Wolf const void *buf, int count) 2317f08145feSKevin Wolf { 2318f08145feSKevin Wolf int ret; 2319f08145feSKevin Wolf 2320f08145feSKevin Wolf ret = bdrv_pwrite(bs, offset, buf, count); 2321f08145feSKevin Wolf if (ret < 0) { 2322f08145feSKevin Wolf return ret; 2323f08145feSKevin Wolf } 2324f08145feSKevin Wolf 2325f05fa4adSPaolo Bonzini /* No flush needed for cache modes that already do it */ 2326f05fa4adSPaolo Bonzini if (bs->enable_write_cache) { 2327f08145feSKevin Wolf bdrv_flush(bs); 2328f08145feSKevin Wolf } 2329f08145feSKevin Wolf 2330f08145feSKevin Wolf return 0; 2331f08145feSKevin Wolf } 2332f08145feSKevin Wolf 2333470c0504SStefan Hajnoczi static int coroutine_fn bdrv_co_do_copy_on_readv(BlockDriverState *bs, 2334ab185921SStefan Hajnoczi int64_t sector_num, int nb_sectors, QEMUIOVector *qiov) 2335ab185921SStefan Hajnoczi { 2336ab185921SStefan Hajnoczi /* Perform I/O through a temporary buffer so that users who scribble over 2337ab185921SStefan Hajnoczi * their read buffer while the operation is in progress do not end up 2338ab185921SStefan Hajnoczi * modifying the image file. This is critical for zero-copy guest I/O 2339ab185921SStefan Hajnoczi * where anything might happen inside guest memory. 2340ab185921SStefan Hajnoczi */ 2341ab185921SStefan Hajnoczi void *bounce_buffer; 2342ab185921SStefan Hajnoczi 234379c053bdSStefan Hajnoczi BlockDriver *drv = bs->drv; 2344ab185921SStefan Hajnoczi struct iovec iov; 2345ab185921SStefan Hajnoczi QEMUIOVector bounce_qiov; 2346ab185921SStefan Hajnoczi int64_t cluster_sector_num; 2347ab185921SStefan Hajnoczi int cluster_nb_sectors; 2348ab185921SStefan Hajnoczi size_t skip_bytes; 2349ab185921SStefan Hajnoczi int ret; 2350ab185921SStefan Hajnoczi 2351ab185921SStefan Hajnoczi /* Cover entire cluster so no additional backing file I/O is required when 2352ab185921SStefan Hajnoczi * allocating cluster in the image file. 2353ab185921SStefan Hajnoczi */ 2354343bded4SPaolo Bonzini bdrv_round_to_clusters(bs, sector_num, nb_sectors, 2355ab185921SStefan Hajnoczi &cluster_sector_num, &cluster_nb_sectors); 2356ab185921SStefan Hajnoczi 2357470c0504SStefan Hajnoczi trace_bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors, 2358ab185921SStefan Hajnoczi cluster_sector_num, cluster_nb_sectors); 2359ab185921SStefan Hajnoczi 2360ab185921SStefan Hajnoczi iov.iov_len = cluster_nb_sectors * BDRV_SECTOR_SIZE; 2361ab185921SStefan Hajnoczi iov.iov_base = bounce_buffer = qemu_blockalign(bs, iov.iov_len); 2362ab185921SStefan Hajnoczi qemu_iovec_init_external(&bounce_qiov, &iov, 1); 2363ab185921SStefan Hajnoczi 236479c053bdSStefan Hajnoczi ret = drv->bdrv_co_readv(bs, cluster_sector_num, cluster_nb_sectors, 2365ab185921SStefan Hajnoczi &bounce_qiov); 2366ab185921SStefan Hajnoczi if (ret < 0) { 2367ab185921SStefan Hajnoczi goto err; 2368ab185921SStefan Hajnoczi } 2369ab185921SStefan Hajnoczi 237079c053bdSStefan Hajnoczi if (drv->bdrv_co_write_zeroes && 237179c053bdSStefan Hajnoczi buffer_is_zero(bounce_buffer, iov.iov_len)) { 2372621f0589SKevin Wolf ret = bdrv_co_do_write_zeroes(bs, cluster_sector_num, 237379c053bdSStefan Hajnoczi cluster_nb_sectors); 237479c053bdSStefan Hajnoczi } else { 2375f05fa4adSPaolo Bonzini /* This does not change the data on the disk, it is not necessary 2376f05fa4adSPaolo Bonzini * to flush even in cache=writethrough mode. 2377f05fa4adSPaolo Bonzini */ 237879c053bdSStefan Hajnoczi ret = drv->bdrv_co_writev(bs, cluster_sector_num, cluster_nb_sectors, 2379ab185921SStefan Hajnoczi &bounce_qiov); 238079c053bdSStefan Hajnoczi } 238179c053bdSStefan Hajnoczi 2382ab185921SStefan Hajnoczi if (ret < 0) { 2383ab185921SStefan Hajnoczi /* It might be okay to ignore write errors for guest requests. If this 2384ab185921SStefan Hajnoczi * is a deliberate copy-on-read then we don't want to ignore the error. 2385ab185921SStefan Hajnoczi * Simply report it in all cases. 2386ab185921SStefan Hajnoczi */ 2387ab185921SStefan Hajnoczi goto err; 2388ab185921SStefan Hajnoczi } 2389ab185921SStefan Hajnoczi 2390ab185921SStefan Hajnoczi skip_bytes = (sector_num - cluster_sector_num) * BDRV_SECTOR_SIZE; 239103396148SMichael Tokarev qemu_iovec_from_buf(qiov, 0, bounce_buffer + skip_bytes, 2392ab185921SStefan Hajnoczi nb_sectors * BDRV_SECTOR_SIZE); 2393ab185921SStefan Hajnoczi 2394ab185921SStefan Hajnoczi err: 2395ab185921SStefan Hajnoczi qemu_vfree(bounce_buffer); 2396ab185921SStefan Hajnoczi return ret; 2397ab185921SStefan Hajnoczi } 2398ab185921SStefan Hajnoczi 2399c5fbe571SStefan Hajnoczi /* 2400c5fbe571SStefan Hajnoczi * Handle a read request in coroutine context 2401c5fbe571SStefan Hajnoczi */ 2402c5fbe571SStefan Hajnoczi static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs, 2403470c0504SStefan Hajnoczi int64_t sector_num, int nb_sectors, QEMUIOVector *qiov, 2404470c0504SStefan Hajnoczi BdrvRequestFlags flags) 2405da1fa91dSKevin Wolf { 2406da1fa91dSKevin Wolf BlockDriver *drv = bs->drv; 2407dbffbdcfSStefan Hajnoczi BdrvTrackedRequest req; 2408dbffbdcfSStefan Hajnoczi int ret; 2409da1fa91dSKevin Wolf 2410da1fa91dSKevin Wolf if (!drv) { 2411da1fa91dSKevin Wolf return -ENOMEDIUM; 2412da1fa91dSKevin Wolf } 2413da1fa91dSKevin Wolf if (bdrv_check_request(bs, sector_num, nb_sectors)) { 2414da1fa91dSKevin Wolf return -EIO; 2415da1fa91dSKevin Wolf } 2416da1fa91dSKevin Wolf 241798f90dbaSZhi Yong Wu /* throttling disk read I/O */ 241898f90dbaSZhi Yong Wu if (bs->io_limits_enabled) { 241998f90dbaSZhi Yong Wu bdrv_io_limits_intercept(bs, false, nb_sectors); 242098f90dbaSZhi Yong Wu } 242198f90dbaSZhi Yong Wu 2422f4658285SStefan Hajnoczi if (bs->copy_on_read) { 2423470c0504SStefan Hajnoczi flags |= BDRV_REQ_COPY_ON_READ; 2424470c0504SStefan Hajnoczi } 2425470c0504SStefan Hajnoczi if (flags & BDRV_REQ_COPY_ON_READ) { 2426470c0504SStefan Hajnoczi bs->copy_on_read_in_flight++; 2427470c0504SStefan Hajnoczi } 2428470c0504SStefan Hajnoczi 2429470c0504SStefan Hajnoczi if (bs->copy_on_read_in_flight) { 2430f4658285SStefan Hajnoczi wait_for_overlapping_requests(bs, sector_num, nb_sectors); 2431f4658285SStefan Hajnoczi } 2432f4658285SStefan Hajnoczi 2433dbffbdcfSStefan Hajnoczi tracked_request_begin(&req, bs, sector_num, nb_sectors, false); 2434ab185921SStefan Hajnoczi 2435470c0504SStefan Hajnoczi if (flags & BDRV_REQ_COPY_ON_READ) { 2436ab185921SStefan Hajnoczi int pnum; 2437ab185921SStefan Hajnoczi 2438ab185921SStefan Hajnoczi ret = bdrv_co_is_allocated(bs, sector_num, nb_sectors, &pnum); 2439ab185921SStefan Hajnoczi if (ret < 0) { 2440ab185921SStefan Hajnoczi goto out; 2441ab185921SStefan Hajnoczi } 2442ab185921SStefan Hajnoczi 2443ab185921SStefan Hajnoczi if (!ret || pnum != nb_sectors) { 2444470c0504SStefan Hajnoczi ret = bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors, qiov); 2445ab185921SStefan Hajnoczi goto out; 2446ab185921SStefan Hajnoczi } 2447ab185921SStefan Hajnoczi } 2448ab185921SStefan Hajnoczi 2449dbffbdcfSStefan Hajnoczi ret = drv->bdrv_co_readv(bs, sector_num, nb_sectors, qiov); 2450ab185921SStefan Hajnoczi 2451ab185921SStefan Hajnoczi out: 2452dbffbdcfSStefan Hajnoczi tracked_request_end(&req); 2453470c0504SStefan Hajnoczi 2454470c0504SStefan Hajnoczi if (flags & BDRV_REQ_COPY_ON_READ) { 2455470c0504SStefan Hajnoczi bs->copy_on_read_in_flight--; 2456470c0504SStefan Hajnoczi } 2457470c0504SStefan Hajnoczi 2458dbffbdcfSStefan Hajnoczi return ret; 2459da1fa91dSKevin Wolf } 2460da1fa91dSKevin Wolf 2461c5fbe571SStefan Hajnoczi int coroutine_fn bdrv_co_readv(BlockDriverState *bs, int64_t sector_num, 2462da1fa91dSKevin Wolf int nb_sectors, QEMUIOVector *qiov) 2463da1fa91dSKevin Wolf { 2464c5fbe571SStefan Hajnoczi trace_bdrv_co_readv(bs, sector_num, nb_sectors); 2465da1fa91dSKevin Wolf 2466470c0504SStefan Hajnoczi return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov, 0); 2467470c0504SStefan Hajnoczi } 2468470c0504SStefan Hajnoczi 2469470c0504SStefan Hajnoczi int coroutine_fn bdrv_co_copy_on_readv(BlockDriverState *bs, 2470470c0504SStefan Hajnoczi int64_t sector_num, int nb_sectors, QEMUIOVector *qiov) 2471470c0504SStefan Hajnoczi { 2472470c0504SStefan Hajnoczi trace_bdrv_co_copy_on_readv(bs, sector_num, nb_sectors); 2473470c0504SStefan Hajnoczi 2474470c0504SStefan Hajnoczi return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov, 2475470c0504SStefan Hajnoczi BDRV_REQ_COPY_ON_READ); 2476c5fbe571SStefan Hajnoczi } 2477c5fbe571SStefan Hajnoczi 2478f08f2ddaSStefan Hajnoczi static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs, 2479f08f2ddaSStefan Hajnoczi int64_t sector_num, int nb_sectors) 2480f08f2ddaSStefan Hajnoczi { 2481f08f2ddaSStefan Hajnoczi BlockDriver *drv = bs->drv; 2482f08f2ddaSStefan Hajnoczi QEMUIOVector qiov; 2483f08f2ddaSStefan Hajnoczi struct iovec iov; 2484f08f2ddaSStefan Hajnoczi int ret; 2485f08f2ddaSStefan Hajnoczi 2486621f0589SKevin Wolf /* TODO Emulate only part of misaligned requests instead of letting block 2487621f0589SKevin Wolf * drivers return -ENOTSUP and emulate everything */ 2488621f0589SKevin Wolf 2489f08f2ddaSStefan Hajnoczi /* First try the efficient write zeroes operation */ 2490f08f2ddaSStefan Hajnoczi if (drv->bdrv_co_write_zeroes) { 2491621f0589SKevin Wolf ret = drv->bdrv_co_write_zeroes(bs, sector_num, nb_sectors); 2492621f0589SKevin Wolf if (ret != -ENOTSUP) { 2493621f0589SKevin Wolf return ret; 2494621f0589SKevin Wolf } 2495f08f2ddaSStefan Hajnoczi } 2496f08f2ddaSStefan Hajnoczi 2497f08f2ddaSStefan Hajnoczi /* Fall back to bounce buffer if write zeroes is unsupported */ 2498f08f2ddaSStefan Hajnoczi iov.iov_len = nb_sectors * BDRV_SECTOR_SIZE; 2499f08f2ddaSStefan Hajnoczi iov.iov_base = qemu_blockalign(bs, iov.iov_len); 2500f08f2ddaSStefan Hajnoczi memset(iov.iov_base, 0, iov.iov_len); 2501f08f2ddaSStefan Hajnoczi qemu_iovec_init_external(&qiov, &iov, 1); 2502f08f2ddaSStefan Hajnoczi 2503f08f2ddaSStefan Hajnoczi ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, &qiov); 2504f08f2ddaSStefan Hajnoczi 2505f08f2ddaSStefan Hajnoczi qemu_vfree(iov.iov_base); 2506f08f2ddaSStefan Hajnoczi return ret; 2507f08f2ddaSStefan Hajnoczi } 2508f08f2ddaSStefan Hajnoczi 2509c5fbe571SStefan Hajnoczi /* 2510c5fbe571SStefan Hajnoczi * Handle a write request in coroutine context 2511c5fbe571SStefan Hajnoczi */ 2512c5fbe571SStefan Hajnoczi static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs, 2513f08f2ddaSStefan Hajnoczi int64_t sector_num, int nb_sectors, QEMUIOVector *qiov, 2514f08f2ddaSStefan Hajnoczi BdrvRequestFlags flags) 2515c5fbe571SStefan Hajnoczi { 2516c5fbe571SStefan Hajnoczi BlockDriver *drv = bs->drv; 2517dbffbdcfSStefan Hajnoczi BdrvTrackedRequest req; 25186b7cb247SStefan Hajnoczi int ret; 2519da1fa91dSKevin Wolf 2520da1fa91dSKevin Wolf if (!bs->drv) { 2521da1fa91dSKevin Wolf return -ENOMEDIUM; 2522da1fa91dSKevin Wolf } 2523da1fa91dSKevin Wolf if (bs->read_only) { 2524da1fa91dSKevin Wolf return -EACCES; 2525da1fa91dSKevin Wolf } 2526da1fa91dSKevin Wolf if (bdrv_check_request(bs, sector_num, nb_sectors)) { 2527da1fa91dSKevin Wolf return -EIO; 2528da1fa91dSKevin Wolf } 2529da1fa91dSKevin Wolf 253098f90dbaSZhi Yong Wu /* throttling disk write I/O */ 253198f90dbaSZhi Yong Wu if (bs->io_limits_enabled) { 253298f90dbaSZhi Yong Wu bdrv_io_limits_intercept(bs, true, nb_sectors); 253398f90dbaSZhi Yong Wu } 253498f90dbaSZhi Yong Wu 2535470c0504SStefan Hajnoczi if (bs->copy_on_read_in_flight) { 2536f4658285SStefan Hajnoczi wait_for_overlapping_requests(bs, sector_num, nb_sectors); 2537f4658285SStefan Hajnoczi } 2538f4658285SStefan Hajnoczi 2539dbffbdcfSStefan Hajnoczi tracked_request_begin(&req, bs, sector_num, nb_sectors, true); 2540dbffbdcfSStefan Hajnoczi 2541f08f2ddaSStefan Hajnoczi if (flags & BDRV_REQ_ZERO_WRITE) { 2542f08f2ddaSStefan Hajnoczi ret = bdrv_co_do_write_zeroes(bs, sector_num, nb_sectors); 2543f08f2ddaSStefan Hajnoczi } else { 25446b7cb247SStefan Hajnoczi ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, qiov); 2545f08f2ddaSStefan Hajnoczi } 25466b7cb247SStefan Hajnoczi 2547f05fa4adSPaolo Bonzini if (ret == 0 && !bs->enable_write_cache) { 2548f05fa4adSPaolo Bonzini ret = bdrv_co_flush(bs); 2549f05fa4adSPaolo Bonzini } 2550f05fa4adSPaolo Bonzini 2551da1fa91dSKevin Wolf if (bs->dirty_bitmap) { 25521755da16SPaolo Bonzini bdrv_set_dirty(bs, sector_num, nb_sectors); 2553da1fa91dSKevin Wolf } 2554da1fa91dSKevin Wolf 2555da1fa91dSKevin Wolf if (bs->wr_highest_sector < sector_num + nb_sectors - 1) { 2556da1fa91dSKevin Wolf bs->wr_highest_sector = sector_num + nb_sectors - 1; 2557da1fa91dSKevin Wolf } 2558da1fa91dSKevin Wolf 2559dbffbdcfSStefan Hajnoczi tracked_request_end(&req); 2560dbffbdcfSStefan Hajnoczi 25616b7cb247SStefan Hajnoczi return ret; 2562da1fa91dSKevin Wolf } 2563da1fa91dSKevin Wolf 2564c5fbe571SStefan Hajnoczi int coroutine_fn bdrv_co_writev(BlockDriverState *bs, int64_t sector_num, 2565c5fbe571SStefan Hajnoczi int nb_sectors, QEMUIOVector *qiov) 2566c5fbe571SStefan Hajnoczi { 2567c5fbe571SStefan Hajnoczi trace_bdrv_co_writev(bs, sector_num, nb_sectors); 2568c5fbe571SStefan Hajnoczi 2569f08f2ddaSStefan Hajnoczi return bdrv_co_do_writev(bs, sector_num, nb_sectors, qiov, 0); 2570f08f2ddaSStefan Hajnoczi } 2571f08f2ddaSStefan Hajnoczi 2572f08f2ddaSStefan Hajnoczi int coroutine_fn bdrv_co_write_zeroes(BlockDriverState *bs, 2573f08f2ddaSStefan Hajnoczi int64_t sector_num, int nb_sectors) 2574f08f2ddaSStefan Hajnoczi { 2575f08f2ddaSStefan Hajnoczi trace_bdrv_co_write_zeroes(bs, sector_num, nb_sectors); 2576f08f2ddaSStefan Hajnoczi 2577f08f2ddaSStefan Hajnoczi return bdrv_co_do_writev(bs, sector_num, nb_sectors, NULL, 2578f08f2ddaSStefan Hajnoczi BDRV_REQ_ZERO_WRITE); 2579c5fbe571SStefan Hajnoczi } 2580c5fbe571SStefan Hajnoczi 258183f64091Sbellard /** 258283f64091Sbellard * Truncate file to 'offset' bytes (needed only for file protocols) 258383f64091Sbellard */ 258483f64091Sbellard int bdrv_truncate(BlockDriverState *bs, int64_t offset) 258583f64091Sbellard { 258683f64091Sbellard BlockDriver *drv = bs->drv; 258751762288SStefan Hajnoczi int ret; 258883f64091Sbellard if (!drv) 258919cb3738Sbellard return -ENOMEDIUM; 259083f64091Sbellard if (!drv->bdrv_truncate) 259183f64091Sbellard return -ENOTSUP; 259259f2689dSNaphtali Sprei if (bs->read_only) 259359f2689dSNaphtali Sprei return -EACCES; 25948591675fSMarcelo Tosatti if (bdrv_in_use(bs)) 25958591675fSMarcelo Tosatti return -EBUSY; 259651762288SStefan Hajnoczi ret = drv->bdrv_truncate(bs, offset); 259751762288SStefan Hajnoczi if (ret == 0) { 259851762288SStefan Hajnoczi ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS); 2599145feb17SMarkus Armbruster bdrv_dev_resize_cb(bs); 260051762288SStefan Hajnoczi } 260151762288SStefan Hajnoczi return ret; 260283f64091Sbellard } 260383f64091Sbellard 260483f64091Sbellard /** 26054a1d5e1fSFam Zheng * Length of a allocated file in bytes. Sparse files are counted by actual 26064a1d5e1fSFam Zheng * allocated space. Return < 0 if error or unknown. 26074a1d5e1fSFam Zheng */ 26084a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs) 26094a1d5e1fSFam Zheng { 26104a1d5e1fSFam Zheng BlockDriver *drv = bs->drv; 26114a1d5e1fSFam Zheng if (!drv) { 26124a1d5e1fSFam Zheng return -ENOMEDIUM; 26134a1d5e1fSFam Zheng } 26144a1d5e1fSFam Zheng if (drv->bdrv_get_allocated_file_size) { 26154a1d5e1fSFam Zheng return drv->bdrv_get_allocated_file_size(bs); 26164a1d5e1fSFam Zheng } 26174a1d5e1fSFam Zheng if (bs->file) { 26184a1d5e1fSFam Zheng return bdrv_get_allocated_file_size(bs->file); 26194a1d5e1fSFam Zheng } 26204a1d5e1fSFam Zheng return -ENOTSUP; 26214a1d5e1fSFam Zheng } 26224a1d5e1fSFam Zheng 26234a1d5e1fSFam Zheng /** 262483f64091Sbellard * Length of a file in bytes. Return < 0 if error or unknown. 262583f64091Sbellard */ 262683f64091Sbellard int64_t bdrv_getlength(BlockDriverState *bs) 262783f64091Sbellard { 262883f64091Sbellard BlockDriver *drv = bs->drv; 262983f64091Sbellard if (!drv) 263019cb3738Sbellard return -ENOMEDIUM; 263151762288SStefan Hajnoczi 26322c6942faSMarkus Armbruster if (bs->growable || bdrv_dev_has_removable_media(bs)) { 263346a4e4e6SStefan Hajnoczi if (drv->bdrv_getlength) { 263483f64091Sbellard return drv->bdrv_getlength(bs); 2635fc01f7e7Sbellard } 263646a4e4e6SStefan Hajnoczi } 263746a4e4e6SStefan Hajnoczi return bs->total_sectors * BDRV_SECTOR_SIZE; 263846a4e4e6SStefan Hajnoczi } 2639fc01f7e7Sbellard 264019cb3738Sbellard /* return 0 as number of sectors if no device present or error */ 264196b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) 2642fc01f7e7Sbellard { 264319cb3738Sbellard int64_t length; 264419cb3738Sbellard length = bdrv_getlength(bs); 264519cb3738Sbellard if (length < 0) 264619cb3738Sbellard length = 0; 264719cb3738Sbellard else 26486ea44308SJan Kiszka length = length >> BDRV_SECTOR_BITS; 264919cb3738Sbellard *nb_sectors_ptr = length; 2650fc01f7e7Sbellard } 2651cf98951bSbellard 26520563e191SZhi Yong Wu /* throttling disk io limits */ 26530563e191SZhi Yong Wu void bdrv_set_io_limits(BlockDriverState *bs, 26540563e191SZhi Yong Wu BlockIOLimit *io_limits) 26550563e191SZhi Yong Wu { 26560563e191SZhi Yong Wu bs->io_limits = *io_limits; 26570563e191SZhi Yong Wu bs->io_limits_enabled = bdrv_io_limits_enabled(bs); 26580563e191SZhi Yong Wu } 26590563e191SZhi Yong Wu 2660ff06f5f3SPaolo Bonzini void bdrv_set_on_error(BlockDriverState *bs, BlockdevOnError on_read_error, 2661ff06f5f3SPaolo Bonzini BlockdevOnError on_write_error) 2662abd7f68dSMarkus Armbruster { 2663abd7f68dSMarkus Armbruster bs->on_read_error = on_read_error; 2664abd7f68dSMarkus Armbruster bs->on_write_error = on_write_error; 2665abd7f68dSMarkus Armbruster } 2666abd7f68dSMarkus Armbruster 26671ceee0d5SPaolo Bonzini BlockdevOnError bdrv_get_on_error(BlockDriverState *bs, bool is_read) 2668abd7f68dSMarkus Armbruster { 2669abd7f68dSMarkus Armbruster return is_read ? bs->on_read_error : bs->on_write_error; 2670abd7f68dSMarkus Armbruster } 2671abd7f68dSMarkus Armbruster 26723e1caa5fSPaolo Bonzini BlockErrorAction bdrv_get_error_action(BlockDriverState *bs, bool is_read, int error) 26733e1caa5fSPaolo Bonzini { 26743e1caa5fSPaolo Bonzini BlockdevOnError on_err = is_read ? bs->on_read_error : bs->on_write_error; 26753e1caa5fSPaolo Bonzini 26763e1caa5fSPaolo Bonzini switch (on_err) { 26773e1caa5fSPaolo Bonzini case BLOCKDEV_ON_ERROR_ENOSPC: 26783e1caa5fSPaolo Bonzini return (error == ENOSPC) ? BDRV_ACTION_STOP : BDRV_ACTION_REPORT; 26793e1caa5fSPaolo Bonzini case BLOCKDEV_ON_ERROR_STOP: 26803e1caa5fSPaolo Bonzini return BDRV_ACTION_STOP; 26813e1caa5fSPaolo Bonzini case BLOCKDEV_ON_ERROR_REPORT: 26823e1caa5fSPaolo Bonzini return BDRV_ACTION_REPORT; 26833e1caa5fSPaolo Bonzini case BLOCKDEV_ON_ERROR_IGNORE: 26843e1caa5fSPaolo Bonzini return BDRV_ACTION_IGNORE; 26853e1caa5fSPaolo Bonzini default: 26863e1caa5fSPaolo Bonzini abort(); 26873e1caa5fSPaolo Bonzini } 26883e1caa5fSPaolo Bonzini } 26893e1caa5fSPaolo Bonzini 26903e1caa5fSPaolo Bonzini /* This is done by device models because, while the block layer knows 26913e1caa5fSPaolo Bonzini * about the error, it does not know whether an operation comes from 26923e1caa5fSPaolo Bonzini * the device or the block layer (from a job, for example). 26933e1caa5fSPaolo Bonzini */ 26943e1caa5fSPaolo Bonzini void bdrv_error_action(BlockDriverState *bs, BlockErrorAction action, 26953e1caa5fSPaolo Bonzini bool is_read, int error) 26963e1caa5fSPaolo Bonzini { 26973e1caa5fSPaolo Bonzini assert(error >= 0); 269832c81a4aSPaolo Bonzini bdrv_emit_qmp_error_event(bs, QEVENT_BLOCK_IO_ERROR, action, is_read); 26993e1caa5fSPaolo Bonzini if (action == BDRV_ACTION_STOP) { 27003e1caa5fSPaolo Bonzini vm_stop(RUN_STATE_IO_ERROR); 27013e1caa5fSPaolo Bonzini bdrv_iostatus_set_err(bs, error); 27023e1caa5fSPaolo Bonzini } 27033e1caa5fSPaolo Bonzini } 27043e1caa5fSPaolo Bonzini 2705b338082bSbellard int bdrv_is_read_only(BlockDriverState *bs) 2706b338082bSbellard { 2707b338082bSbellard return bs->read_only; 2708b338082bSbellard } 2709b338082bSbellard 2710985a03b0Sths int bdrv_is_sg(BlockDriverState *bs) 2711985a03b0Sths { 2712985a03b0Sths return bs->sg; 2713985a03b0Sths } 2714985a03b0Sths 2715e900a7b7SChristoph Hellwig int bdrv_enable_write_cache(BlockDriverState *bs) 2716e900a7b7SChristoph Hellwig { 2717e900a7b7SChristoph Hellwig return bs->enable_write_cache; 2718e900a7b7SChristoph Hellwig } 2719e900a7b7SChristoph Hellwig 2720425b0148SPaolo Bonzini void bdrv_set_enable_write_cache(BlockDriverState *bs, bool wce) 2721425b0148SPaolo Bonzini { 2722425b0148SPaolo Bonzini bs->enable_write_cache = wce; 272355b110f2SJeff Cody 272455b110f2SJeff Cody /* so a reopen() will preserve wce */ 272555b110f2SJeff Cody if (wce) { 272655b110f2SJeff Cody bs->open_flags |= BDRV_O_CACHE_WB; 272755b110f2SJeff Cody } else { 272855b110f2SJeff Cody bs->open_flags &= ~BDRV_O_CACHE_WB; 272955b110f2SJeff Cody } 2730425b0148SPaolo Bonzini } 2731425b0148SPaolo Bonzini 2732ea2384d3Sbellard int bdrv_is_encrypted(BlockDriverState *bs) 2733ea2384d3Sbellard { 2734ea2384d3Sbellard if (bs->backing_hd && bs->backing_hd->encrypted) 2735ea2384d3Sbellard return 1; 2736ea2384d3Sbellard return bs->encrypted; 2737ea2384d3Sbellard } 2738ea2384d3Sbellard 2739c0f4ce77Saliguori int bdrv_key_required(BlockDriverState *bs) 2740c0f4ce77Saliguori { 2741c0f4ce77Saliguori BlockDriverState *backing_hd = bs->backing_hd; 2742c0f4ce77Saliguori 2743c0f4ce77Saliguori if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key) 2744c0f4ce77Saliguori return 1; 2745c0f4ce77Saliguori return (bs->encrypted && !bs->valid_key); 2746c0f4ce77Saliguori } 2747c0f4ce77Saliguori 2748ea2384d3Sbellard int bdrv_set_key(BlockDriverState *bs, const char *key) 2749ea2384d3Sbellard { 2750ea2384d3Sbellard int ret; 2751ea2384d3Sbellard if (bs->backing_hd && bs->backing_hd->encrypted) { 2752ea2384d3Sbellard ret = bdrv_set_key(bs->backing_hd, key); 2753ea2384d3Sbellard if (ret < 0) 2754ea2384d3Sbellard return ret; 2755ea2384d3Sbellard if (!bs->encrypted) 2756ea2384d3Sbellard return 0; 2757ea2384d3Sbellard } 2758fd04a2aeSShahar Havivi if (!bs->encrypted) { 2759fd04a2aeSShahar Havivi return -EINVAL; 2760fd04a2aeSShahar Havivi } else if (!bs->drv || !bs->drv->bdrv_set_key) { 2761fd04a2aeSShahar Havivi return -ENOMEDIUM; 2762fd04a2aeSShahar Havivi } 2763c0f4ce77Saliguori ret = bs->drv->bdrv_set_key(bs, key); 2764bb5fc20fSaliguori if (ret < 0) { 2765bb5fc20fSaliguori bs->valid_key = 0; 2766bb5fc20fSaliguori } else if (!bs->valid_key) { 2767bb5fc20fSaliguori bs->valid_key = 1; 2768bb5fc20fSaliguori /* call the change callback now, we skipped it on open */ 27697d4b4ba5SMarkus Armbruster bdrv_dev_change_media_cb(bs, true); 2770bb5fc20fSaliguori } 2771c0f4ce77Saliguori return ret; 2772ea2384d3Sbellard } 2773ea2384d3Sbellard 2774f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs) 2775ea2384d3Sbellard { 2776f8d6bba1SMarkus Armbruster return bs->drv ? bs->drv->format_name : NULL; 2777ea2384d3Sbellard } 2778ea2384d3Sbellard 2779ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name), 2780ea2384d3Sbellard void *opaque) 2781ea2384d3Sbellard { 2782ea2384d3Sbellard BlockDriver *drv; 2783ea2384d3Sbellard 27848a22f02aSStefan Hajnoczi QLIST_FOREACH(drv, &bdrv_drivers, list) { 2785ea2384d3Sbellard it(opaque, drv->format_name); 2786ea2384d3Sbellard } 2787ea2384d3Sbellard } 2788ea2384d3Sbellard 2789b338082bSbellard BlockDriverState *bdrv_find(const char *name) 2790b338082bSbellard { 2791b338082bSbellard BlockDriverState *bs; 2792b338082bSbellard 27931b7bdbc1SStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 27941b7bdbc1SStefan Hajnoczi if (!strcmp(name, bs->device_name)) { 2795b338082bSbellard return bs; 2796b338082bSbellard } 27971b7bdbc1SStefan Hajnoczi } 2798b338082bSbellard return NULL; 2799b338082bSbellard } 2800b338082bSbellard 28012f399b0aSMarkus Armbruster BlockDriverState *bdrv_next(BlockDriverState *bs) 28022f399b0aSMarkus Armbruster { 28032f399b0aSMarkus Armbruster if (!bs) { 28042f399b0aSMarkus Armbruster return QTAILQ_FIRST(&bdrv_states); 28052f399b0aSMarkus Armbruster } 28062f399b0aSMarkus Armbruster return QTAILQ_NEXT(bs, list); 28072f399b0aSMarkus Armbruster } 28082f399b0aSMarkus Armbruster 280951de9760Saliguori void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque) 281081d0912dSbellard { 281181d0912dSbellard BlockDriverState *bs; 281281d0912dSbellard 28131b7bdbc1SStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 281451de9760Saliguori it(opaque, bs); 281581d0912dSbellard } 281681d0912dSbellard } 281781d0912dSbellard 2818ea2384d3Sbellard const char *bdrv_get_device_name(BlockDriverState *bs) 2819ea2384d3Sbellard { 2820ea2384d3Sbellard return bs->device_name; 2821ea2384d3Sbellard } 2822ea2384d3Sbellard 2823c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs) 2824c8433287SMarkus Armbruster { 2825c8433287SMarkus Armbruster return bs->open_flags; 2826c8433287SMarkus Armbruster } 2827c8433287SMarkus Armbruster 2828c6ca28d6Saliguori void bdrv_flush_all(void) 2829c6ca28d6Saliguori { 2830c6ca28d6Saliguori BlockDriverState *bs; 2831c6ca28d6Saliguori 28321b7bdbc1SStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 2833c6ca28d6Saliguori bdrv_flush(bs); 2834c6ca28d6Saliguori } 28351b7bdbc1SStefan Hajnoczi } 2836c6ca28d6Saliguori 2837f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs) 2838f2feebbdSKevin Wolf { 2839f2feebbdSKevin Wolf assert(bs->drv); 2840f2feebbdSKevin Wolf 2841336c1c12SKevin Wolf if (bs->drv->bdrv_has_zero_init) { 2842336c1c12SKevin Wolf return bs->drv->bdrv_has_zero_init(bs); 2843f2feebbdSKevin Wolf } 2844f2feebbdSKevin Wolf 2845f2feebbdSKevin Wolf return 1; 2846f2feebbdSKevin Wolf } 2847f2feebbdSKevin Wolf 2848376ae3f1SStefan Hajnoczi typedef struct BdrvCoIsAllocatedData { 2849376ae3f1SStefan Hajnoczi BlockDriverState *bs; 2850b35b2bbaSMiroslav Rezanina BlockDriverState *base; 2851376ae3f1SStefan Hajnoczi int64_t sector_num; 2852376ae3f1SStefan Hajnoczi int nb_sectors; 2853376ae3f1SStefan Hajnoczi int *pnum; 2854376ae3f1SStefan Hajnoczi int ret; 2855376ae3f1SStefan Hajnoczi bool done; 2856376ae3f1SStefan Hajnoczi } BdrvCoIsAllocatedData; 2857376ae3f1SStefan Hajnoczi 2858f58c7b35Sths /* 2859f58c7b35Sths * Returns true iff the specified sector is present in the disk image. Drivers 2860f58c7b35Sths * not implementing the functionality are assumed to not support backing files, 2861f58c7b35Sths * hence all their sectors are reported as allocated. 2862f58c7b35Sths * 2863bd9533e3SStefan Hajnoczi * If 'sector_num' is beyond the end of the disk image the return value is 0 2864bd9533e3SStefan Hajnoczi * and 'pnum' is set to 0. 2865bd9533e3SStefan Hajnoczi * 2866f58c7b35Sths * 'pnum' is set to the number of sectors (including and immediately following 2867f58c7b35Sths * the specified sector) that are known to be in the same 2868f58c7b35Sths * allocated/unallocated state. 2869f58c7b35Sths * 2870bd9533e3SStefan Hajnoczi * 'nb_sectors' is the max value 'pnum' should be set to. If nb_sectors goes 2871bd9533e3SStefan Hajnoczi * beyond the end of the disk image it will be clamped. 2872f58c7b35Sths */ 2873060f51c9SStefan Hajnoczi int coroutine_fn bdrv_co_is_allocated(BlockDriverState *bs, int64_t sector_num, 2874060f51c9SStefan Hajnoczi int nb_sectors, int *pnum) 2875f58c7b35Sths { 2876f58c7b35Sths int64_t n; 2877bd9533e3SStefan Hajnoczi 28786aebab14SStefan Hajnoczi if (sector_num >= bs->total_sectors) { 28796aebab14SStefan Hajnoczi *pnum = 0; 28806aebab14SStefan Hajnoczi return 0; 28816aebab14SStefan Hajnoczi } 2882bd9533e3SStefan Hajnoczi 28836aebab14SStefan Hajnoczi n = bs->total_sectors - sector_num; 2884bd9533e3SStefan Hajnoczi if (n < nb_sectors) { 2885bd9533e3SStefan Hajnoczi nb_sectors = n; 2886bd9533e3SStefan Hajnoczi } 2887bd9533e3SStefan Hajnoczi 2888bd9533e3SStefan Hajnoczi if (!bs->drv->bdrv_co_is_allocated) { 2889bd9533e3SStefan Hajnoczi *pnum = nb_sectors; 28906aebab14SStefan Hajnoczi return 1; 28916aebab14SStefan Hajnoczi } 28926aebab14SStefan Hajnoczi 2893060f51c9SStefan Hajnoczi return bs->drv->bdrv_co_is_allocated(bs, sector_num, nb_sectors, pnum); 2894060f51c9SStefan Hajnoczi } 2895060f51c9SStefan Hajnoczi 2896060f51c9SStefan Hajnoczi /* Coroutine wrapper for bdrv_is_allocated() */ 2897060f51c9SStefan Hajnoczi static void coroutine_fn bdrv_is_allocated_co_entry(void *opaque) 2898060f51c9SStefan Hajnoczi { 2899060f51c9SStefan Hajnoczi BdrvCoIsAllocatedData *data = opaque; 2900060f51c9SStefan Hajnoczi BlockDriverState *bs = data->bs; 2901060f51c9SStefan Hajnoczi 2902060f51c9SStefan Hajnoczi data->ret = bdrv_co_is_allocated(bs, data->sector_num, data->nb_sectors, 2903060f51c9SStefan Hajnoczi data->pnum); 2904060f51c9SStefan Hajnoczi data->done = true; 2905060f51c9SStefan Hajnoczi } 2906060f51c9SStefan Hajnoczi 2907060f51c9SStefan Hajnoczi /* 2908060f51c9SStefan Hajnoczi * Synchronous wrapper around bdrv_co_is_allocated(). 2909060f51c9SStefan Hajnoczi * 2910060f51c9SStefan Hajnoczi * See bdrv_co_is_allocated() for details. 2911060f51c9SStefan Hajnoczi */ 2912060f51c9SStefan Hajnoczi int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors, 2913060f51c9SStefan Hajnoczi int *pnum) 2914060f51c9SStefan Hajnoczi { 2915376ae3f1SStefan Hajnoczi Coroutine *co; 2916376ae3f1SStefan Hajnoczi BdrvCoIsAllocatedData data = { 2917376ae3f1SStefan Hajnoczi .bs = bs, 2918376ae3f1SStefan Hajnoczi .sector_num = sector_num, 2919376ae3f1SStefan Hajnoczi .nb_sectors = nb_sectors, 2920376ae3f1SStefan Hajnoczi .pnum = pnum, 2921376ae3f1SStefan Hajnoczi .done = false, 2922376ae3f1SStefan Hajnoczi }; 2923376ae3f1SStefan Hajnoczi 2924376ae3f1SStefan Hajnoczi co = qemu_coroutine_create(bdrv_is_allocated_co_entry); 2925376ae3f1SStefan Hajnoczi qemu_coroutine_enter(co, &data); 2926376ae3f1SStefan Hajnoczi while (!data.done) { 2927376ae3f1SStefan Hajnoczi qemu_aio_wait(); 2928376ae3f1SStefan Hajnoczi } 2929376ae3f1SStefan Hajnoczi return data.ret; 2930376ae3f1SStefan Hajnoczi } 2931f58c7b35Sths 2932188a7bbfSPaolo Bonzini /* 2933188a7bbfSPaolo Bonzini * Given an image chain: ... -> [BASE] -> [INTER1] -> [INTER2] -> [TOP] 2934188a7bbfSPaolo Bonzini * 2935188a7bbfSPaolo Bonzini * Return true if the given sector is allocated in any image between 2936188a7bbfSPaolo Bonzini * BASE and TOP (inclusive). BASE can be NULL to check if the given 2937188a7bbfSPaolo Bonzini * sector is allocated in any image of the chain. Return false otherwise. 2938188a7bbfSPaolo Bonzini * 2939188a7bbfSPaolo Bonzini * 'pnum' is set to the number of sectors (including and immediately following 2940188a7bbfSPaolo Bonzini * the specified sector) that are known to be in the same 2941188a7bbfSPaolo Bonzini * allocated/unallocated state. 2942188a7bbfSPaolo Bonzini * 2943188a7bbfSPaolo Bonzini */ 2944188a7bbfSPaolo Bonzini int coroutine_fn bdrv_co_is_allocated_above(BlockDriverState *top, 2945188a7bbfSPaolo Bonzini BlockDriverState *base, 2946188a7bbfSPaolo Bonzini int64_t sector_num, 2947188a7bbfSPaolo Bonzini int nb_sectors, int *pnum) 2948188a7bbfSPaolo Bonzini { 2949188a7bbfSPaolo Bonzini BlockDriverState *intermediate; 2950188a7bbfSPaolo Bonzini int ret, n = nb_sectors; 2951188a7bbfSPaolo Bonzini 2952188a7bbfSPaolo Bonzini intermediate = top; 2953188a7bbfSPaolo Bonzini while (intermediate && intermediate != base) { 2954188a7bbfSPaolo Bonzini int pnum_inter; 2955188a7bbfSPaolo Bonzini ret = bdrv_co_is_allocated(intermediate, sector_num, nb_sectors, 2956188a7bbfSPaolo Bonzini &pnum_inter); 2957188a7bbfSPaolo Bonzini if (ret < 0) { 2958188a7bbfSPaolo Bonzini return ret; 2959188a7bbfSPaolo Bonzini } else if (ret) { 2960188a7bbfSPaolo Bonzini *pnum = pnum_inter; 2961188a7bbfSPaolo Bonzini return 1; 2962188a7bbfSPaolo Bonzini } 2963188a7bbfSPaolo Bonzini 2964188a7bbfSPaolo Bonzini /* 2965188a7bbfSPaolo Bonzini * [sector_num, nb_sectors] is unallocated on top but intermediate 2966188a7bbfSPaolo Bonzini * might have 2967188a7bbfSPaolo Bonzini * 2968188a7bbfSPaolo Bonzini * [sector_num+x, nr_sectors] allocated. 2969188a7bbfSPaolo Bonzini */ 297063ba17d3SVishvananda Ishaya if (n > pnum_inter && 297163ba17d3SVishvananda Ishaya (intermediate == top || 297263ba17d3SVishvananda Ishaya sector_num + pnum_inter < intermediate->total_sectors)) { 2973188a7bbfSPaolo Bonzini n = pnum_inter; 2974188a7bbfSPaolo Bonzini } 2975188a7bbfSPaolo Bonzini 2976188a7bbfSPaolo Bonzini intermediate = intermediate->backing_hd; 2977188a7bbfSPaolo Bonzini } 2978188a7bbfSPaolo Bonzini 2979188a7bbfSPaolo Bonzini *pnum = n; 2980188a7bbfSPaolo Bonzini return 0; 2981188a7bbfSPaolo Bonzini } 2982188a7bbfSPaolo Bonzini 2983b35b2bbaSMiroslav Rezanina /* Coroutine wrapper for bdrv_is_allocated_above() */ 2984b35b2bbaSMiroslav Rezanina static void coroutine_fn bdrv_is_allocated_above_co_entry(void *opaque) 2985b35b2bbaSMiroslav Rezanina { 2986b35b2bbaSMiroslav Rezanina BdrvCoIsAllocatedData *data = opaque; 2987b35b2bbaSMiroslav Rezanina BlockDriverState *top = data->bs; 2988b35b2bbaSMiroslav Rezanina BlockDriverState *base = data->base; 2989b35b2bbaSMiroslav Rezanina 2990b35b2bbaSMiroslav Rezanina data->ret = bdrv_co_is_allocated_above(top, base, data->sector_num, 2991b35b2bbaSMiroslav Rezanina data->nb_sectors, data->pnum); 2992b35b2bbaSMiroslav Rezanina data->done = true; 2993b35b2bbaSMiroslav Rezanina } 2994b35b2bbaSMiroslav Rezanina 2995b35b2bbaSMiroslav Rezanina /* 2996b35b2bbaSMiroslav Rezanina * Synchronous wrapper around bdrv_co_is_allocated_above(). 2997b35b2bbaSMiroslav Rezanina * 2998b35b2bbaSMiroslav Rezanina * See bdrv_co_is_allocated_above() for details. 2999b35b2bbaSMiroslav Rezanina */ 3000b35b2bbaSMiroslav Rezanina int bdrv_is_allocated_above(BlockDriverState *top, BlockDriverState *base, 3001b35b2bbaSMiroslav Rezanina int64_t sector_num, int nb_sectors, int *pnum) 3002b35b2bbaSMiroslav Rezanina { 3003b35b2bbaSMiroslav Rezanina Coroutine *co; 3004b35b2bbaSMiroslav Rezanina BdrvCoIsAllocatedData data = { 3005b35b2bbaSMiroslav Rezanina .bs = top, 3006b35b2bbaSMiroslav Rezanina .base = base, 3007b35b2bbaSMiroslav Rezanina .sector_num = sector_num, 3008b35b2bbaSMiroslav Rezanina .nb_sectors = nb_sectors, 3009b35b2bbaSMiroslav Rezanina .pnum = pnum, 3010b35b2bbaSMiroslav Rezanina .done = false, 3011b35b2bbaSMiroslav Rezanina }; 3012b35b2bbaSMiroslav Rezanina 3013b35b2bbaSMiroslav Rezanina co = qemu_coroutine_create(bdrv_is_allocated_above_co_entry); 3014b35b2bbaSMiroslav Rezanina qemu_coroutine_enter(co, &data); 3015b35b2bbaSMiroslav Rezanina while (!data.done) { 3016b35b2bbaSMiroslav Rezanina qemu_aio_wait(); 3017b35b2bbaSMiroslav Rezanina } 3018b35b2bbaSMiroslav Rezanina return data.ret; 3019b35b2bbaSMiroslav Rezanina } 3020b35b2bbaSMiroslav Rezanina 3021ac84adacSPaolo Bonzini BlockInfo *bdrv_query_info(BlockDriverState *bs) 3022ac84adacSPaolo Bonzini { 3023ac84adacSPaolo Bonzini BlockInfo *info = g_malloc0(sizeof(*info)); 3024ac84adacSPaolo Bonzini info->device = g_strdup(bs->device_name); 3025ac84adacSPaolo Bonzini info->type = g_strdup("unknown"); 3026ac84adacSPaolo Bonzini info->locked = bdrv_dev_is_medium_locked(bs); 3027ac84adacSPaolo Bonzini info->removable = bdrv_dev_has_removable_media(bs); 3028ac84adacSPaolo Bonzini 3029ac84adacSPaolo Bonzini if (bdrv_dev_has_removable_media(bs)) { 3030ac84adacSPaolo Bonzini info->has_tray_open = true; 3031ac84adacSPaolo Bonzini info->tray_open = bdrv_dev_is_tray_open(bs); 3032ac84adacSPaolo Bonzini } 3033ac84adacSPaolo Bonzini 3034ac84adacSPaolo Bonzini if (bdrv_iostatus_is_enabled(bs)) { 3035ac84adacSPaolo Bonzini info->has_io_status = true; 3036ac84adacSPaolo Bonzini info->io_status = bs->iostatus; 3037ac84adacSPaolo Bonzini } 3038ac84adacSPaolo Bonzini 3039b9a9b3a4SPaolo Bonzini if (bs->dirty_bitmap) { 3040b9a9b3a4SPaolo Bonzini info->has_dirty = true; 3041b9a9b3a4SPaolo Bonzini info->dirty = g_malloc0(sizeof(*info->dirty)); 3042acc906c6SPaolo Bonzini info->dirty->count = bdrv_get_dirty_count(bs) * BDRV_SECTOR_SIZE; 304350717e94SPaolo Bonzini info->dirty->granularity = 304450717e94SPaolo Bonzini ((int64_t) BDRV_SECTOR_SIZE << hbitmap_granularity(bs->dirty_bitmap)); 3045b9a9b3a4SPaolo Bonzini } 3046b9a9b3a4SPaolo Bonzini 3047ac84adacSPaolo Bonzini if (bs->drv) { 3048ac84adacSPaolo Bonzini info->has_inserted = true; 3049ac84adacSPaolo Bonzini info->inserted = g_malloc0(sizeof(*info->inserted)); 3050ac84adacSPaolo Bonzini info->inserted->file = g_strdup(bs->filename); 3051ac84adacSPaolo Bonzini info->inserted->ro = bs->read_only; 3052ac84adacSPaolo Bonzini info->inserted->drv = g_strdup(bs->drv->format_name); 3053ac84adacSPaolo Bonzini info->inserted->encrypted = bs->encrypted; 3054ac84adacSPaolo Bonzini info->inserted->encryption_key_missing = bdrv_key_required(bs); 3055ac84adacSPaolo Bonzini 3056ac84adacSPaolo Bonzini if (bs->backing_file[0]) { 3057ac84adacSPaolo Bonzini info->inserted->has_backing_file = true; 3058ac84adacSPaolo Bonzini info->inserted->backing_file = g_strdup(bs->backing_file); 3059ac84adacSPaolo Bonzini } 3060ac84adacSPaolo Bonzini 3061ac84adacSPaolo Bonzini info->inserted->backing_file_depth = bdrv_get_backing_file_depth(bs); 3062ac84adacSPaolo Bonzini 3063ac84adacSPaolo Bonzini if (bs->io_limits_enabled) { 3064ac84adacSPaolo Bonzini info->inserted->bps = 3065ac84adacSPaolo Bonzini bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL]; 3066ac84adacSPaolo Bonzini info->inserted->bps_rd = 3067ac84adacSPaolo Bonzini bs->io_limits.bps[BLOCK_IO_LIMIT_READ]; 3068ac84adacSPaolo Bonzini info->inserted->bps_wr = 3069ac84adacSPaolo Bonzini bs->io_limits.bps[BLOCK_IO_LIMIT_WRITE]; 3070ac84adacSPaolo Bonzini info->inserted->iops = 3071ac84adacSPaolo Bonzini bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL]; 3072ac84adacSPaolo Bonzini info->inserted->iops_rd = 3073ac84adacSPaolo Bonzini bs->io_limits.iops[BLOCK_IO_LIMIT_READ]; 3074ac84adacSPaolo Bonzini info->inserted->iops_wr = 3075ac84adacSPaolo Bonzini bs->io_limits.iops[BLOCK_IO_LIMIT_WRITE]; 3076ac84adacSPaolo Bonzini } 3077ac84adacSPaolo Bonzini } 3078ac84adacSPaolo Bonzini return info; 3079ac84adacSPaolo Bonzini } 3080ac84adacSPaolo Bonzini 3081b2023818SLuiz Capitulino BlockInfoList *qmp_query_block(Error **errp) 3082b338082bSbellard { 3083ac84adacSPaolo Bonzini BlockInfoList *head = NULL, **p_next = &head; 3084d15e5465SLuiz Capitulino BlockDriverState *bs; 3085d15e5465SLuiz Capitulino 30861b7bdbc1SStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 3087b2023818SLuiz Capitulino BlockInfoList *info = g_malloc0(sizeof(*info)); 3088ac84adacSPaolo Bonzini info->value = bdrv_query_info(bs); 3089d15e5465SLuiz Capitulino 3090ac84adacSPaolo Bonzini *p_next = info; 3091ac84adacSPaolo Bonzini p_next = &info->next; 3092d15e5465SLuiz Capitulino } 3093d15e5465SLuiz Capitulino 3094b2023818SLuiz Capitulino return head; 3095b338082bSbellard } 3096a36e69ddSths 30979887b616SPaolo Bonzini BlockStats *bdrv_query_stats(const BlockDriverState *bs) 3098a36e69ddSths { 3099f11f57e4SLuiz Capitulino BlockStats *s; 3100218a536aSLuiz Capitulino 3101f11f57e4SLuiz Capitulino s = g_malloc0(sizeof(*s)); 3102218a536aSLuiz Capitulino 3103f11f57e4SLuiz Capitulino if (bs->device_name[0]) { 3104f11f57e4SLuiz Capitulino s->has_device = true; 3105f11f57e4SLuiz Capitulino s->device = g_strdup(bs->device_name); 3106218a536aSLuiz Capitulino } 3107218a536aSLuiz Capitulino 3108f11f57e4SLuiz Capitulino s->stats = g_malloc0(sizeof(*s->stats)); 3109f11f57e4SLuiz Capitulino s->stats->rd_bytes = bs->nr_bytes[BDRV_ACCT_READ]; 3110f11f57e4SLuiz Capitulino s->stats->wr_bytes = bs->nr_bytes[BDRV_ACCT_WRITE]; 3111f11f57e4SLuiz Capitulino s->stats->rd_operations = bs->nr_ops[BDRV_ACCT_READ]; 3112f11f57e4SLuiz Capitulino s->stats->wr_operations = bs->nr_ops[BDRV_ACCT_WRITE]; 3113f11f57e4SLuiz Capitulino s->stats->wr_highest_offset = bs->wr_highest_sector * BDRV_SECTOR_SIZE; 3114f11f57e4SLuiz Capitulino s->stats->flush_operations = bs->nr_ops[BDRV_ACCT_FLUSH]; 3115f11f57e4SLuiz Capitulino s->stats->wr_total_time_ns = bs->total_time_ns[BDRV_ACCT_WRITE]; 3116f11f57e4SLuiz Capitulino s->stats->rd_total_time_ns = bs->total_time_ns[BDRV_ACCT_READ]; 3117f11f57e4SLuiz Capitulino s->stats->flush_total_time_ns = bs->total_time_ns[BDRV_ACCT_FLUSH]; 3118294cc35fSKevin Wolf 3119294cc35fSKevin Wolf if (bs->file) { 3120f11f57e4SLuiz Capitulino s->has_parent = true; 31219887b616SPaolo Bonzini s->parent = bdrv_query_stats(bs->file); 3122294cc35fSKevin Wolf } 3123294cc35fSKevin Wolf 3124f11f57e4SLuiz Capitulino return s; 3125294cc35fSKevin Wolf } 3126294cc35fSKevin Wolf 3127f11f57e4SLuiz Capitulino BlockStatsList *qmp_query_blockstats(Error **errp) 3128218a536aSLuiz Capitulino { 31299887b616SPaolo Bonzini BlockStatsList *head = NULL, **p_next = &head; 3130a36e69ddSths BlockDriverState *bs; 3131a36e69ddSths 31321b7bdbc1SStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 3133f11f57e4SLuiz Capitulino BlockStatsList *info = g_malloc0(sizeof(*info)); 31349887b616SPaolo Bonzini info->value = bdrv_query_stats(bs); 3135f11f57e4SLuiz Capitulino 31369887b616SPaolo Bonzini *p_next = info; 31379887b616SPaolo Bonzini p_next = &info->next; 3138a36e69ddSths } 3139218a536aSLuiz Capitulino 3140f11f57e4SLuiz Capitulino return head; 3141a36e69ddSths } 3142ea2384d3Sbellard 3143045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs) 3144045df330Saliguori { 3145045df330Saliguori if (bs->backing_hd && bs->backing_hd->encrypted) 3146045df330Saliguori return bs->backing_file; 3147045df330Saliguori else if (bs->encrypted) 3148045df330Saliguori return bs->filename; 3149045df330Saliguori else 3150045df330Saliguori return NULL; 3151045df330Saliguori } 3152045df330Saliguori 315383f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs, 315483f64091Sbellard char *filename, int filename_size) 315583f64091Sbellard { 315683f64091Sbellard pstrcpy(filename, filename_size, bs->backing_file); 315783f64091Sbellard } 315883f64091Sbellard 3159faea38e7Sbellard int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num, 3160faea38e7Sbellard const uint8_t *buf, int nb_sectors) 3161faea38e7Sbellard { 3162faea38e7Sbellard BlockDriver *drv = bs->drv; 3163faea38e7Sbellard if (!drv) 316419cb3738Sbellard return -ENOMEDIUM; 3165faea38e7Sbellard if (!drv->bdrv_write_compressed) 3166faea38e7Sbellard return -ENOTSUP; 3167fbb7b4e0SKevin Wolf if (bdrv_check_request(bs, sector_num, nb_sectors)) 3168fbb7b4e0SKevin Wolf return -EIO; 31697cd1e32aSlirans@il.ibm.com 31701755da16SPaolo Bonzini assert(!bs->dirty_bitmap); 31717cd1e32aSlirans@il.ibm.com 3172faea38e7Sbellard return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors); 3173faea38e7Sbellard } 3174faea38e7Sbellard 3175faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) 3176faea38e7Sbellard { 3177faea38e7Sbellard BlockDriver *drv = bs->drv; 3178faea38e7Sbellard if (!drv) 317919cb3738Sbellard return -ENOMEDIUM; 3180faea38e7Sbellard if (!drv->bdrv_get_info) 3181faea38e7Sbellard return -ENOTSUP; 3182faea38e7Sbellard memset(bdi, 0, sizeof(*bdi)); 3183faea38e7Sbellard return drv->bdrv_get_info(bs, bdi); 3184faea38e7Sbellard } 3185faea38e7Sbellard 318645566e9cSChristoph Hellwig int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf, 318745566e9cSChristoph Hellwig int64_t pos, int size) 3188178e08a5Saliguori { 3189178e08a5Saliguori BlockDriver *drv = bs->drv; 3190178e08a5Saliguori if (!drv) 3191178e08a5Saliguori return -ENOMEDIUM; 31927cdb1f6dSMORITA Kazutaka if (drv->bdrv_save_vmstate) 319345566e9cSChristoph Hellwig return drv->bdrv_save_vmstate(bs, buf, pos, size); 31947cdb1f6dSMORITA Kazutaka if (bs->file) 31957cdb1f6dSMORITA Kazutaka return bdrv_save_vmstate(bs->file, buf, pos, size); 31967cdb1f6dSMORITA Kazutaka return -ENOTSUP; 3197178e08a5Saliguori } 3198178e08a5Saliguori 319945566e9cSChristoph Hellwig int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf, 320045566e9cSChristoph Hellwig int64_t pos, int size) 3201178e08a5Saliguori { 3202178e08a5Saliguori BlockDriver *drv = bs->drv; 3203178e08a5Saliguori if (!drv) 3204178e08a5Saliguori return -ENOMEDIUM; 32057cdb1f6dSMORITA Kazutaka if (drv->bdrv_load_vmstate) 320645566e9cSChristoph Hellwig return drv->bdrv_load_vmstate(bs, buf, pos, size); 32077cdb1f6dSMORITA Kazutaka if (bs->file) 32087cdb1f6dSMORITA Kazutaka return bdrv_load_vmstate(bs->file, buf, pos, size); 32097cdb1f6dSMORITA Kazutaka return -ENOTSUP; 3210178e08a5Saliguori } 3211178e08a5Saliguori 32128b9b0cc2SKevin Wolf void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event) 32138b9b0cc2SKevin Wolf { 32148b9b0cc2SKevin Wolf BlockDriver *drv = bs->drv; 32158b9b0cc2SKevin Wolf 32168b9b0cc2SKevin Wolf if (!drv || !drv->bdrv_debug_event) { 32178b9b0cc2SKevin Wolf return; 32188b9b0cc2SKevin Wolf } 32198b9b0cc2SKevin Wolf 32200ed8b6f6SBlue Swirl drv->bdrv_debug_event(bs, event); 322141c695c7SKevin Wolf } 32228b9b0cc2SKevin Wolf 322341c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, 322441c695c7SKevin Wolf const char *tag) 322541c695c7SKevin Wolf { 322641c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { 322741c695c7SKevin Wolf bs = bs->file; 322841c695c7SKevin Wolf } 322941c695c7SKevin Wolf 323041c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { 323141c695c7SKevin Wolf return bs->drv->bdrv_debug_breakpoint(bs, event, tag); 323241c695c7SKevin Wolf } 323341c695c7SKevin Wolf 323441c695c7SKevin Wolf return -ENOTSUP; 323541c695c7SKevin Wolf } 323641c695c7SKevin Wolf 323741c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag) 323841c695c7SKevin Wolf { 323941c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_resume) { 324041c695c7SKevin Wolf bs = bs->file; 324141c695c7SKevin Wolf } 324241c695c7SKevin Wolf 324341c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_resume) { 324441c695c7SKevin Wolf return bs->drv->bdrv_debug_resume(bs, tag); 324541c695c7SKevin Wolf } 324641c695c7SKevin Wolf 324741c695c7SKevin Wolf return -ENOTSUP; 324841c695c7SKevin Wolf } 324941c695c7SKevin Wolf 325041c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) 325141c695c7SKevin Wolf { 325241c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { 325341c695c7SKevin Wolf bs = bs->file; 325441c695c7SKevin Wolf } 325541c695c7SKevin Wolf 325641c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { 325741c695c7SKevin Wolf return bs->drv->bdrv_debug_is_suspended(bs, tag); 325841c695c7SKevin Wolf } 325941c695c7SKevin Wolf 326041c695c7SKevin Wolf return false; 32618b9b0cc2SKevin Wolf } 32628b9b0cc2SKevin Wolf 3263faea38e7Sbellard /**************************************************************/ 3264faea38e7Sbellard /* handling of snapshots */ 3265faea38e7Sbellard 3266feeee5acSMiguel Di Ciurcio Filho int bdrv_can_snapshot(BlockDriverState *bs) 3267feeee5acSMiguel Di Ciurcio Filho { 3268feeee5acSMiguel Di Ciurcio Filho BlockDriver *drv = bs->drv; 326907b70bfbSMarkus Armbruster if (!drv || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) { 3270feeee5acSMiguel Di Ciurcio Filho return 0; 3271feeee5acSMiguel Di Ciurcio Filho } 3272feeee5acSMiguel Di Ciurcio Filho 3273feeee5acSMiguel Di Ciurcio Filho if (!drv->bdrv_snapshot_create) { 3274feeee5acSMiguel Di Ciurcio Filho if (bs->file != NULL) { 3275feeee5acSMiguel Di Ciurcio Filho return bdrv_can_snapshot(bs->file); 3276feeee5acSMiguel Di Ciurcio Filho } 3277feeee5acSMiguel Di Ciurcio Filho return 0; 3278feeee5acSMiguel Di Ciurcio Filho } 3279feeee5acSMiguel Di Ciurcio Filho 3280feeee5acSMiguel Di Ciurcio Filho return 1; 3281feeee5acSMiguel Di Ciurcio Filho } 3282feeee5acSMiguel Di Ciurcio Filho 3283199630b6SBlue Swirl int bdrv_is_snapshot(BlockDriverState *bs) 3284199630b6SBlue Swirl { 3285199630b6SBlue Swirl return !!(bs->open_flags & BDRV_O_SNAPSHOT); 3286199630b6SBlue Swirl } 3287199630b6SBlue Swirl 3288f9092b10SMarkus Armbruster BlockDriverState *bdrv_snapshots(void) 3289f9092b10SMarkus Armbruster { 3290f9092b10SMarkus Armbruster BlockDriverState *bs; 3291f9092b10SMarkus Armbruster 32923ac906f7SMarkus Armbruster if (bs_snapshots) { 3293f9092b10SMarkus Armbruster return bs_snapshots; 32943ac906f7SMarkus Armbruster } 3295f9092b10SMarkus Armbruster 3296f9092b10SMarkus Armbruster bs = NULL; 3297f9092b10SMarkus Armbruster while ((bs = bdrv_next(bs))) { 3298f9092b10SMarkus Armbruster if (bdrv_can_snapshot(bs)) { 32993ac906f7SMarkus Armbruster bs_snapshots = bs; 33003ac906f7SMarkus Armbruster return bs; 3301f9092b10SMarkus Armbruster } 3302f9092b10SMarkus Armbruster } 3303f9092b10SMarkus Armbruster return NULL; 3304f9092b10SMarkus Armbruster } 3305f9092b10SMarkus Armbruster 3306faea38e7Sbellard int bdrv_snapshot_create(BlockDriverState *bs, 3307faea38e7Sbellard QEMUSnapshotInfo *sn_info) 3308faea38e7Sbellard { 3309faea38e7Sbellard BlockDriver *drv = bs->drv; 3310faea38e7Sbellard if (!drv) 331119cb3738Sbellard return -ENOMEDIUM; 33127cdb1f6dSMORITA Kazutaka if (drv->bdrv_snapshot_create) 3313faea38e7Sbellard return drv->bdrv_snapshot_create(bs, sn_info); 33147cdb1f6dSMORITA Kazutaka if (bs->file) 33157cdb1f6dSMORITA Kazutaka return bdrv_snapshot_create(bs->file, sn_info); 33167cdb1f6dSMORITA Kazutaka return -ENOTSUP; 3317faea38e7Sbellard } 3318faea38e7Sbellard 3319faea38e7Sbellard int bdrv_snapshot_goto(BlockDriverState *bs, 3320faea38e7Sbellard const char *snapshot_id) 3321faea38e7Sbellard { 3322faea38e7Sbellard BlockDriver *drv = bs->drv; 33237cdb1f6dSMORITA Kazutaka int ret, open_ret; 33247cdb1f6dSMORITA Kazutaka 3325faea38e7Sbellard if (!drv) 332619cb3738Sbellard return -ENOMEDIUM; 33277cdb1f6dSMORITA Kazutaka if (drv->bdrv_snapshot_goto) 3328faea38e7Sbellard return drv->bdrv_snapshot_goto(bs, snapshot_id); 33297cdb1f6dSMORITA Kazutaka 33307cdb1f6dSMORITA Kazutaka if (bs->file) { 33317cdb1f6dSMORITA Kazutaka drv->bdrv_close(bs); 33327cdb1f6dSMORITA Kazutaka ret = bdrv_snapshot_goto(bs->file, snapshot_id); 33331a86938fSKevin Wolf open_ret = drv->bdrv_open(bs, NULL, bs->open_flags); 33347cdb1f6dSMORITA Kazutaka if (open_ret < 0) { 33357cdb1f6dSMORITA Kazutaka bdrv_delete(bs->file); 33367cdb1f6dSMORITA Kazutaka bs->drv = NULL; 33377cdb1f6dSMORITA Kazutaka return open_ret; 33387cdb1f6dSMORITA Kazutaka } 33397cdb1f6dSMORITA Kazutaka return ret; 33407cdb1f6dSMORITA Kazutaka } 33417cdb1f6dSMORITA Kazutaka 33427cdb1f6dSMORITA Kazutaka return -ENOTSUP; 3343faea38e7Sbellard } 3344faea38e7Sbellard 3345faea38e7Sbellard int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id) 3346faea38e7Sbellard { 3347faea38e7Sbellard BlockDriver *drv = bs->drv; 3348faea38e7Sbellard if (!drv) 334919cb3738Sbellard return -ENOMEDIUM; 33507cdb1f6dSMORITA Kazutaka if (drv->bdrv_snapshot_delete) 3351faea38e7Sbellard return drv->bdrv_snapshot_delete(bs, snapshot_id); 33527cdb1f6dSMORITA Kazutaka if (bs->file) 33537cdb1f6dSMORITA Kazutaka return bdrv_snapshot_delete(bs->file, snapshot_id); 33547cdb1f6dSMORITA Kazutaka return -ENOTSUP; 3355faea38e7Sbellard } 3356faea38e7Sbellard 3357faea38e7Sbellard int bdrv_snapshot_list(BlockDriverState *bs, 3358faea38e7Sbellard QEMUSnapshotInfo **psn_info) 3359faea38e7Sbellard { 3360faea38e7Sbellard BlockDriver *drv = bs->drv; 3361faea38e7Sbellard if (!drv) 336219cb3738Sbellard return -ENOMEDIUM; 33637cdb1f6dSMORITA Kazutaka if (drv->bdrv_snapshot_list) 3364faea38e7Sbellard return drv->bdrv_snapshot_list(bs, psn_info); 33657cdb1f6dSMORITA Kazutaka if (bs->file) 33667cdb1f6dSMORITA Kazutaka return bdrv_snapshot_list(bs->file, psn_info); 33677cdb1f6dSMORITA Kazutaka return -ENOTSUP; 3368faea38e7Sbellard } 3369faea38e7Sbellard 337051ef6727Sedison int bdrv_snapshot_load_tmp(BlockDriverState *bs, 337151ef6727Sedison const char *snapshot_name) 337251ef6727Sedison { 337351ef6727Sedison BlockDriver *drv = bs->drv; 337451ef6727Sedison if (!drv) { 337551ef6727Sedison return -ENOMEDIUM; 337651ef6727Sedison } 337751ef6727Sedison if (!bs->read_only) { 337851ef6727Sedison return -EINVAL; 337951ef6727Sedison } 338051ef6727Sedison if (drv->bdrv_snapshot_load_tmp) { 338151ef6727Sedison return drv->bdrv_snapshot_load_tmp(bs, snapshot_name); 338251ef6727Sedison } 338351ef6727Sedison return -ENOTSUP; 338451ef6727Sedison } 338551ef6727Sedison 3386b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol. If it is 3387b1b1d783SJeff Cody * relative, it must be relative to the chain. So, passing in bs->filename 3388b1b1d783SJeff Cody * from a BDS as backing_file should not be done, as that may be relative to 3389b1b1d783SJeff Cody * the CWD rather than the chain. */ 3390e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, 3391e8a6bb9cSMarcelo Tosatti const char *backing_file) 3392e8a6bb9cSMarcelo Tosatti { 3393b1b1d783SJeff Cody char *filename_full = NULL; 3394b1b1d783SJeff Cody char *backing_file_full = NULL; 3395b1b1d783SJeff Cody char *filename_tmp = NULL; 3396b1b1d783SJeff Cody int is_protocol = 0; 3397b1b1d783SJeff Cody BlockDriverState *curr_bs = NULL; 3398b1b1d783SJeff Cody BlockDriverState *retval = NULL; 3399b1b1d783SJeff Cody 3400b1b1d783SJeff Cody if (!bs || !bs->drv || !backing_file) { 3401e8a6bb9cSMarcelo Tosatti return NULL; 3402e8a6bb9cSMarcelo Tosatti } 3403e8a6bb9cSMarcelo Tosatti 3404b1b1d783SJeff Cody filename_full = g_malloc(PATH_MAX); 3405b1b1d783SJeff Cody backing_file_full = g_malloc(PATH_MAX); 3406b1b1d783SJeff Cody filename_tmp = g_malloc(PATH_MAX); 3407b1b1d783SJeff Cody 3408b1b1d783SJeff Cody is_protocol = path_has_protocol(backing_file); 3409b1b1d783SJeff Cody 3410b1b1d783SJeff Cody for (curr_bs = bs; curr_bs->backing_hd; curr_bs = curr_bs->backing_hd) { 3411b1b1d783SJeff Cody 3412b1b1d783SJeff Cody /* If either of the filename paths is actually a protocol, then 3413b1b1d783SJeff Cody * compare unmodified paths; otherwise make paths relative */ 3414b1b1d783SJeff Cody if (is_protocol || path_has_protocol(curr_bs->backing_file)) { 3415b1b1d783SJeff Cody if (strcmp(backing_file, curr_bs->backing_file) == 0) { 3416b1b1d783SJeff Cody retval = curr_bs->backing_hd; 3417b1b1d783SJeff Cody break; 3418b1b1d783SJeff Cody } 3419e8a6bb9cSMarcelo Tosatti } else { 3420b1b1d783SJeff Cody /* If not an absolute filename path, make it relative to the current 3421b1b1d783SJeff Cody * image's filename path */ 3422b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 3423b1b1d783SJeff Cody backing_file); 3424b1b1d783SJeff Cody 3425b1b1d783SJeff Cody /* We are going to compare absolute pathnames */ 3426b1b1d783SJeff Cody if (!realpath(filename_tmp, filename_full)) { 3427b1b1d783SJeff Cody continue; 3428b1b1d783SJeff Cody } 3429b1b1d783SJeff Cody 3430b1b1d783SJeff Cody /* We need to make sure the backing filename we are comparing against 3431b1b1d783SJeff Cody * is relative to the current image filename (or absolute) */ 3432b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 3433b1b1d783SJeff Cody curr_bs->backing_file); 3434b1b1d783SJeff Cody 3435b1b1d783SJeff Cody if (!realpath(filename_tmp, backing_file_full)) { 3436b1b1d783SJeff Cody continue; 3437b1b1d783SJeff Cody } 3438b1b1d783SJeff Cody 3439b1b1d783SJeff Cody if (strcmp(backing_file_full, filename_full) == 0) { 3440b1b1d783SJeff Cody retval = curr_bs->backing_hd; 3441b1b1d783SJeff Cody break; 3442b1b1d783SJeff Cody } 3443e8a6bb9cSMarcelo Tosatti } 3444e8a6bb9cSMarcelo Tosatti } 3445e8a6bb9cSMarcelo Tosatti 3446b1b1d783SJeff Cody g_free(filename_full); 3447b1b1d783SJeff Cody g_free(backing_file_full); 3448b1b1d783SJeff Cody g_free(filename_tmp); 3449b1b1d783SJeff Cody return retval; 3450e8a6bb9cSMarcelo Tosatti } 3451e8a6bb9cSMarcelo Tosatti 3452f198fd1cSBenoît Canet int bdrv_get_backing_file_depth(BlockDriverState *bs) 3453f198fd1cSBenoît Canet { 3454f198fd1cSBenoît Canet if (!bs->drv) { 3455f198fd1cSBenoît Canet return 0; 3456f198fd1cSBenoît Canet } 3457f198fd1cSBenoît Canet 3458f198fd1cSBenoît Canet if (!bs->backing_hd) { 3459f198fd1cSBenoît Canet return 0; 3460f198fd1cSBenoît Canet } 3461f198fd1cSBenoît Canet 3462f198fd1cSBenoît Canet return 1 + bdrv_get_backing_file_depth(bs->backing_hd); 3463f198fd1cSBenoît Canet } 3464f198fd1cSBenoît Canet 346579fac568SJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs) 346679fac568SJeff Cody { 346779fac568SJeff Cody BlockDriverState *curr_bs = NULL; 346879fac568SJeff Cody 346979fac568SJeff Cody if (!bs) { 347079fac568SJeff Cody return NULL; 347179fac568SJeff Cody } 347279fac568SJeff Cody 347379fac568SJeff Cody curr_bs = bs; 347479fac568SJeff Cody 347579fac568SJeff Cody while (curr_bs->backing_hd) { 347679fac568SJeff Cody curr_bs = curr_bs->backing_hd; 347779fac568SJeff Cody } 347879fac568SJeff Cody return curr_bs; 347979fac568SJeff Cody } 348079fac568SJeff Cody 3481faea38e7Sbellard #define NB_SUFFIXES 4 3482faea38e7Sbellard 3483faea38e7Sbellard char *get_human_readable_size(char *buf, int buf_size, int64_t size) 3484faea38e7Sbellard { 3485faea38e7Sbellard static const char suffixes[NB_SUFFIXES] = "KMGT"; 3486faea38e7Sbellard int64_t base; 3487faea38e7Sbellard int i; 3488faea38e7Sbellard 3489faea38e7Sbellard if (size <= 999) { 3490faea38e7Sbellard snprintf(buf, buf_size, "%" PRId64, size); 3491faea38e7Sbellard } else { 3492faea38e7Sbellard base = 1024; 3493faea38e7Sbellard for(i = 0; i < NB_SUFFIXES; i++) { 3494faea38e7Sbellard if (size < (10 * base)) { 3495faea38e7Sbellard snprintf(buf, buf_size, "%0.1f%c", 3496faea38e7Sbellard (double)size / base, 3497faea38e7Sbellard suffixes[i]); 3498faea38e7Sbellard break; 3499faea38e7Sbellard } else if (size < (1000 * base) || i == (NB_SUFFIXES - 1)) { 3500faea38e7Sbellard snprintf(buf, buf_size, "%" PRId64 "%c", 3501faea38e7Sbellard ((size + (base >> 1)) / base), 3502faea38e7Sbellard suffixes[i]); 3503faea38e7Sbellard break; 3504faea38e7Sbellard } 3505faea38e7Sbellard base = base * 1024; 3506faea38e7Sbellard } 3507faea38e7Sbellard } 3508faea38e7Sbellard return buf; 3509faea38e7Sbellard } 3510faea38e7Sbellard 3511faea38e7Sbellard char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn) 3512faea38e7Sbellard { 3513faea38e7Sbellard char buf1[128], date_buf[128], clock_buf[128]; 3514faea38e7Sbellard struct tm tm; 3515faea38e7Sbellard time_t ti; 3516faea38e7Sbellard int64_t secs; 3517faea38e7Sbellard 3518faea38e7Sbellard if (!sn) { 3519faea38e7Sbellard snprintf(buf, buf_size, 3520faea38e7Sbellard "%-10s%-20s%7s%20s%15s", 3521faea38e7Sbellard "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK"); 3522faea38e7Sbellard } else { 3523faea38e7Sbellard ti = sn->date_sec; 3524faea38e7Sbellard localtime_r(&ti, &tm); 3525faea38e7Sbellard strftime(date_buf, sizeof(date_buf), 3526faea38e7Sbellard "%Y-%m-%d %H:%M:%S", &tm); 3527faea38e7Sbellard secs = sn->vm_clock_nsec / 1000000000; 3528faea38e7Sbellard snprintf(clock_buf, sizeof(clock_buf), 3529faea38e7Sbellard "%02d:%02d:%02d.%03d", 3530faea38e7Sbellard (int)(secs / 3600), 3531faea38e7Sbellard (int)((secs / 60) % 60), 3532faea38e7Sbellard (int)(secs % 60), 3533faea38e7Sbellard (int)((sn->vm_clock_nsec / 1000000) % 1000)); 3534faea38e7Sbellard snprintf(buf, buf_size, 3535faea38e7Sbellard "%-10s%-20s%7s%20s%15s", 3536faea38e7Sbellard sn->id_str, sn->name, 3537faea38e7Sbellard get_human_readable_size(buf1, sizeof(buf1), sn->vm_state_size), 3538faea38e7Sbellard date_buf, 3539faea38e7Sbellard clock_buf); 3540faea38e7Sbellard } 3541faea38e7Sbellard return buf; 3542faea38e7Sbellard } 3543faea38e7Sbellard 3544ea2384d3Sbellard /**************************************************************/ 354583f64091Sbellard /* async I/Os */ 3546ea2384d3Sbellard 35473b69e4b9Saliguori BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num, 3548f141eafeSaliguori QEMUIOVector *qiov, int nb_sectors, 354983f64091Sbellard BlockDriverCompletionFunc *cb, void *opaque) 3550ea2384d3Sbellard { 3551bbf0a440SStefan Hajnoczi trace_bdrv_aio_readv(bs, sector_num, nb_sectors, opaque); 3552bbf0a440SStefan Hajnoczi 3553b2a61371SStefan Hajnoczi return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors, 35548c5873d6SStefan Hajnoczi cb, opaque, false); 355583f64091Sbellard } 355683f64091Sbellard 3557f141eafeSaliguori BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num, 3558f141eafeSaliguori QEMUIOVector *qiov, int nb_sectors, 355983f64091Sbellard BlockDriverCompletionFunc *cb, void *opaque) 35607674e7bfSbellard { 3561bbf0a440SStefan Hajnoczi trace_bdrv_aio_writev(bs, sector_num, nb_sectors, opaque); 3562bbf0a440SStefan Hajnoczi 35631a6e115bSStefan Hajnoczi return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors, 35648c5873d6SStefan Hajnoczi cb, opaque, true); 356583f64091Sbellard } 356683f64091Sbellard 356740b4f539SKevin Wolf 356840b4f539SKevin Wolf typedef struct MultiwriteCB { 356940b4f539SKevin Wolf int error; 357040b4f539SKevin Wolf int num_requests; 357140b4f539SKevin Wolf int num_callbacks; 357240b4f539SKevin Wolf struct { 357340b4f539SKevin Wolf BlockDriverCompletionFunc *cb; 357440b4f539SKevin Wolf void *opaque; 357540b4f539SKevin Wolf QEMUIOVector *free_qiov; 357640b4f539SKevin Wolf } callbacks[]; 357740b4f539SKevin Wolf } MultiwriteCB; 357840b4f539SKevin Wolf 357940b4f539SKevin Wolf static void multiwrite_user_cb(MultiwriteCB *mcb) 358040b4f539SKevin Wolf { 358140b4f539SKevin Wolf int i; 358240b4f539SKevin Wolf 358340b4f539SKevin Wolf for (i = 0; i < mcb->num_callbacks; i++) { 358440b4f539SKevin Wolf mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error); 35851e1ea48dSStefan Hajnoczi if (mcb->callbacks[i].free_qiov) { 35861e1ea48dSStefan Hajnoczi qemu_iovec_destroy(mcb->callbacks[i].free_qiov); 35871e1ea48dSStefan Hajnoczi } 35887267c094SAnthony Liguori g_free(mcb->callbacks[i].free_qiov); 358940b4f539SKevin Wolf } 359040b4f539SKevin Wolf } 359140b4f539SKevin Wolf 359240b4f539SKevin Wolf static void multiwrite_cb(void *opaque, int ret) 359340b4f539SKevin Wolf { 359440b4f539SKevin Wolf MultiwriteCB *mcb = opaque; 359540b4f539SKevin Wolf 35966d519a5fSStefan Hajnoczi trace_multiwrite_cb(mcb, ret); 35976d519a5fSStefan Hajnoczi 3598cb6d3ca0SKevin Wolf if (ret < 0 && !mcb->error) { 359940b4f539SKevin Wolf mcb->error = ret; 360040b4f539SKevin Wolf } 360140b4f539SKevin Wolf 360240b4f539SKevin Wolf mcb->num_requests--; 360340b4f539SKevin Wolf if (mcb->num_requests == 0) { 360440b4f539SKevin Wolf multiwrite_user_cb(mcb); 36057267c094SAnthony Liguori g_free(mcb); 360640b4f539SKevin Wolf } 360740b4f539SKevin Wolf } 360840b4f539SKevin Wolf 360940b4f539SKevin Wolf static int multiwrite_req_compare(const void *a, const void *b) 361040b4f539SKevin Wolf { 361177be4366SChristoph Hellwig const BlockRequest *req1 = a, *req2 = b; 361277be4366SChristoph Hellwig 361377be4366SChristoph Hellwig /* 361477be4366SChristoph Hellwig * Note that we can't simply subtract req2->sector from req1->sector 361577be4366SChristoph Hellwig * here as that could overflow the return value. 361677be4366SChristoph Hellwig */ 361777be4366SChristoph Hellwig if (req1->sector > req2->sector) { 361877be4366SChristoph Hellwig return 1; 361977be4366SChristoph Hellwig } else if (req1->sector < req2->sector) { 362077be4366SChristoph Hellwig return -1; 362177be4366SChristoph Hellwig } else { 362277be4366SChristoph Hellwig return 0; 362377be4366SChristoph Hellwig } 362440b4f539SKevin Wolf } 362540b4f539SKevin Wolf 362640b4f539SKevin Wolf /* 362740b4f539SKevin Wolf * Takes a bunch of requests and tries to merge them. Returns the number of 362840b4f539SKevin Wolf * requests that remain after merging. 362940b4f539SKevin Wolf */ 363040b4f539SKevin Wolf static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs, 363140b4f539SKevin Wolf int num_reqs, MultiwriteCB *mcb) 363240b4f539SKevin Wolf { 363340b4f539SKevin Wolf int i, outidx; 363440b4f539SKevin Wolf 363540b4f539SKevin Wolf // Sort requests by start sector 363640b4f539SKevin Wolf qsort(reqs, num_reqs, sizeof(*reqs), &multiwrite_req_compare); 363740b4f539SKevin Wolf 363840b4f539SKevin Wolf // Check if adjacent requests touch the same clusters. If so, combine them, 363940b4f539SKevin Wolf // filling up gaps with zero sectors. 364040b4f539SKevin Wolf outidx = 0; 364140b4f539SKevin Wolf for (i = 1; i < num_reqs; i++) { 364240b4f539SKevin Wolf int merge = 0; 364340b4f539SKevin Wolf int64_t oldreq_last = reqs[outidx].sector + reqs[outidx].nb_sectors; 364440b4f539SKevin Wolf 3645b6a127a1SPaolo Bonzini // Handle exactly sequential writes and overlapping writes. 364640b4f539SKevin Wolf if (reqs[i].sector <= oldreq_last) { 364740b4f539SKevin Wolf merge = 1; 364840b4f539SKevin Wolf } 364940b4f539SKevin Wolf 3650e2a305fbSChristoph Hellwig if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) { 3651e2a305fbSChristoph Hellwig merge = 0; 3652e2a305fbSChristoph Hellwig } 3653e2a305fbSChristoph Hellwig 365440b4f539SKevin Wolf if (merge) { 365540b4f539SKevin Wolf size_t size; 36567267c094SAnthony Liguori QEMUIOVector *qiov = g_malloc0(sizeof(*qiov)); 365740b4f539SKevin Wolf qemu_iovec_init(qiov, 365840b4f539SKevin Wolf reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1); 365940b4f539SKevin Wolf 366040b4f539SKevin Wolf // Add the first request to the merged one. If the requests are 366140b4f539SKevin Wolf // overlapping, drop the last sectors of the first request. 366240b4f539SKevin Wolf size = (reqs[i].sector - reqs[outidx].sector) << 9; 36631b093c48SMichael Tokarev qemu_iovec_concat(qiov, reqs[outidx].qiov, 0, size); 366440b4f539SKevin Wolf 3665b6a127a1SPaolo Bonzini // We should need to add any zeros between the two requests 3666b6a127a1SPaolo Bonzini assert (reqs[i].sector <= oldreq_last); 366740b4f539SKevin Wolf 366840b4f539SKevin Wolf // Add the second request 36691b093c48SMichael Tokarev qemu_iovec_concat(qiov, reqs[i].qiov, 0, reqs[i].qiov->size); 367040b4f539SKevin Wolf 3671cbf1dff2SKevin Wolf reqs[outidx].nb_sectors = qiov->size >> 9; 367240b4f539SKevin Wolf reqs[outidx].qiov = qiov; 367340b4f539SKevin Wolf 367440b4f539SKevin Wolf mcb->callbacks[i].free_qiov = reqs[outidx].qiov; 367540b4f539SKevin Wolf } else { 367640b4f539SKevin Wolf outidx++; 367740b4f539SKevin Wolf reqs[outidx].sector = reqs[i].sector; 367840b4f539SKevin Wolf reqs[outidx].nb_sectors = reqs[i].nb_sectors; 367940b4f539SKevin Wolf reqs[outidx].qiov = reqs[i].qiov; 368040b4f539SKevin Wolf } 368140b4f539SKevin Wolf } 368240b4f539SKevin Wolf 368340b4f539SKevin Wolf return outidx + 1; 368440b4f539SKevin Wolf } 368540b4f539SKevin Wolf 368640b4f539SKevin Wolf /* 368740b4f539SKevin Wolf * Submit multiple AIO write requests at once. 368840b4f539SKevin Wolf * 368940b4f539SKevin Wolf * On success, the function returns 0 and all requests in the reqs array have 369040b4f539SKevin Wolf * been submitted. In error case this function returns -1, and any of the 369140b4f539SKevin Wolf * requests may or may not be submitted yet. In particular, this means that the 369240b4f539SKevin Wolf * callback will be called for some of the requests, for others it won't. The 369340b4f539SKevin Wolf * caller must check the error field of the BlockRequest to wait for the right 369440b4f539SKevin Wolf * callbacks (if error != 0, no callback will be called). 369540b4f539SKevin Wolf * 369640b4f539SKevin Wolf * The implementation may modify the contents of the reqs array, e.g. to merge 369740b4f539SKevin Wolf * requests. However, the fields opaque and error are left unmodified as they 369840b4f539SKevin Wolf * are used to signal failure for a single request to the caller. 369940b4f539SKevin Wolf */ 370040b4f539SKevin Wolf int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs) 370140b4f539SKevin Wolf { 370240b4f539SKevin Wolf MultiwriteCB *mcb; 370340b4f539SKevin Wolf int i; 370440b4f539SKevin Wolf 3705301db7c2SRyan Harper /* don't submit writes if we don't have a medium */ 3706301db7c2SRyan Harper if (bs->drv == NULL) { 3707301db7c2SRyan Harper for (i = 0; i < num_reqs; i++) { 3708301db7c2SRyan Harper reqs[i].error = -ENOMEDIUM; 3709301db7c2SRyan Harper } 3710301db7c2SRyan Harper return -1; 3711301db7c2SRyan Harper } 3712301db7c2SRyan Harper 371340b4f539SKevin Wolf if (num_reqs == 0) { 371440b4f539SKevin Wolf return 0; 371540b4f539SKevin Wolf } 371640b4f539SKevin Wolf 371740b4f539SKevin Wolf // Create MultiwriteCB structure 37187267c094SAnthony Liguori mcb = g_malloc0(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks)); 371940b4f539SKevin Wolf mcb->num_requests = 0; 372040b4f539SKevin Wolf mcb->num_callbacks = num_reqs; 372140b4f539SKevin Wolf 372240b4f539SKevin Wolf for (i = 0; i < num_reqs; i++) { 372340b4f539SKevin Wolf mcb->callbacks[i].cb = reqs[i].cb; 372440b4f539SKevin Wolf mcb->callbacks[i].opaque = reqs[i].opaque; 372540b4f539SKevin Wolf } 372640b4f539SKevin Wolf 372740b4f539SKevin Wolf // Check for mergable requests 372840b4f539SKevin Wolf num_reqs = multiwrite_merge(bs, reqs, num_reqs, mcb); 372940b4f539SKevin Wolf 37306d519a5fSStefan Hajnoczi trace_bdrv_aio_multiwrite(mcb, mcb->num_callbacks, num_reqs); 37316d519a5fSStefan Hajnoczi 3732df9309fbSPaolo Bonzini /* Run the aio requests. */ 3733df9309fbSPaolo Bonzini mcb->num_requests = num_reqs; 373440b4f539SKevin Wolf for (i = 0; i < num_reqs; i++) { 3735ad54ae80SPaolo Bonzini bdrv_aio_writev(bs, reqs[i].sector, reqs[i].qiov, 373640b4f539SKevin Wolf reqs[i].nb_sectors, multiwrite_cb, mcb); 373740b4f539SKevin Wolf } 373840b4f539SKevin Wolf 373940b4f539SKevin Wolf return 0; 374040b4f539SKevin Wolf } 374140b4f539SKevin Wolf 374283f64091Sbellard void bdrv_aio_cancel(BlockDriverAIOCB *acb) 374383f64091Sbellard { 3744d7331bedSStefan Hajnoczi acb->aiocb_info->cancel(acb); 374583f64091Sbellard } 374683f64091Sbellard 374798f90dbaSZhi Yong Wu /* block I/O throttling */ 374898f90dbaSZhi Yong Wu static bool bdrv_exceed_bps_limits(BlockDriverState *bs, int nb_sectors, 374998f90dbaSZhi Yong Wu bool is_write, double elapsed_time, uint64_t *wait) 375098f90dbaSZhi Yong Wu { 375198f90dbaSZhi Yong Wu uint64_t bps_limit = 0; 375298f90dbaSZhi Yong Wu double bytes_limit, bytes_base, bytes_res; 375398f90dbaSZhi Yong Wu double slice_time, wait_time; 375498f90dbaSZhi Yong Wu 375598f90dbaSZhi Yong Wu if (bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL]) { 375698f90dbaSZhi Yong Wu bps_limit = bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL]; 375798f90dbaSZhi Yong Wu } else if (bs->io_limits.bps[is_write]) { 375898f90dbaSZhi Yong Wu bps_limit = bs->io_limits.bps[is_write]; 375998f90dbaSZhi Yong Wu } else { 376098f90dbaSZhi Yong Wu if (wait) { 376198f90dbaSZhi Yong Wu *wait = 0; 376298f90dbaSZhi Yong Wu } 376398f90dbaSZhi Yong Wu 376498f90dbaSZhi Yong Wu return false; 376598f90dbaSZhi Yong Wu } 376698f90dbaSZhi Yong Wu 376798f90dbaSZhi Yong Wu slice_time = bs->slice_end - bs->slice_start; 376898f90dbaSZhi Yong Wu slice_time /= (NANOSECONDS_PER_SECOND); 376998f90dbaSZhi Yong Wu bytes_limit = bps_limit * slice_time; 3770*5905fbc9SStefan Hajnoczi bytes_base = bs->slice_submitted.bytes[is_write]; 377198f90dbaSZhi Yong Wu if (bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL]) { 3772*5905fbc9SStefan Hajnoczi bytes_base += bs->slice_submitted.bytes[!is_write]; 377398f90dbaSZhi Yong Wu } 377498f90dbaSZhi Yong Wu 377598f90dbaSZhi Yong Wu /* bytes_base: the bytes of data which have been read/written; and 377698f90dbaSZhi Yong Wu * it is obtained from the history statistic info. 377798f90dbaSZhi Yong Wu * bytes_res: the remaining bytes of data which need to be read/written. 377898f90dbaSZhi Yong Wu * (bytes_base + bytes_res) / bps_limit: used to calcuate 377998f90dbaSZhi Yong Wu * the total time for completing reading/writting all data. 378098f90dbaSZhi Yong Wu */ 378198f90dbaSZhi Yong Wu bytes_res = (unsigned) nb_sectors * BDRV_SECTOR_SIZE; 378298f90dbaSZhi Yong Wu 378398f90dbaSZhi Yong Wu if (bytes_base + bytes_res <= bytes_limit) { 378498f90dbaSZhi Yong Wu if (wait) { 378598f90dbaSZhi Yong Wu *wait = 0; 378698f90dbaSZhi Yong Wu } 378798f90dbaSZhi Yong Wu 378898f90dbaSZhi Yong Wu return false; 378998f90dbaSZhi Yong Wu } 379098f90dbaSZhi Yong Wu 379198f90dbaSZhi Yong Wu /* Calc approx time to dispatch */ 379298f90dbaSZhi Yong Wu wait_time = (bytes_base + bytes_res) / bps_limit - elapsed_time; 379398f90dbaSZhi Yong Wu 379498f90dbaSZhi Yong Wu /* When the I/O rate at runtime exceeds the limits, 379598f90dbaSZhi Yong Wu * bs->slice_end need to be extended in order that the current statistic 379698f90dbaSZhi Yong Wu * info can be kept until the timer fire, so it is increased and tuned 379798f90dbaSZhi Yong Wu * based on the result of experiment. 379898f90dbaSZhi Yong Wu */ 379998f90dbaSZhi Yong Wu bs->slice_time = wait_time * BLOCK_IO_SLICE_TIME * 10; 380098f90dbaSZhi Yong Wu bs->slice_end += bs->slice_time - 3 * BLOCK_IO_SLICE_TIME; 380198f90dbaSZhi Yong Wu if (wait) { 380298f90dbaSZhi Yong Wu *wait = wait_time * BLOCK_IO_SLICE_TIME * 10; 380398f90dbaSZhi Yong Wu } 380498f90dbaSZhi Yong Wu 380598f90dbaSZhi Yong Wu return true; 380698f90dbaSZhi Yong Wu } 380798f90dbaSZhi Yong Wu 380898f90dbaSZhi Yong Wu static bool bdrv_exceed_iops_limits(BlockDriverState *bs, bool is_write, 380998f90dbaSZhi Yong Wu double elapsed_time, uint64_t *wait) 381098f90dbaSZhi Yong Wu { 381198f90dbaSZhi Yong Wu uint64_t iops_limit = 0; 381298f90dbaSZhi Yong Wu double ios_limit, ios_base; 381398f90dbaSZhi Yong Wu double slice_time, wait_time; 381498f90dbaSZhi Yong Wu 381598f90dbaSZhi Yong Wu if (bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL]) { 381698f90dbaSZhi Yong Wu iops_limit = bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL]; 381798f90dbaSZhi Yong Wu } else if (bs->io_limits.iops[is_write]) { 381898f90dbaSZhi Yong Wu iops_limit = bs->io_limits.iops[is_write]; 381998f90dbaSZhi Yong Wu } else { 382098f90dbaSZhi Yong Wu if (wait) { 382198f90dbaSZhi Yong Wu *wait = 0; 382298f90dbaSZhi Yong Wu } 382398f90dbaSZhi Yong Wu 382498f90dbaSZhi Yong Wu return false; 382598f90dbaSZhi Yong Wu } 382698f90dbaSZhi Yong Wu 382798f90dbaSZhi Yong Wu slice_time = bs->slice_end - bs->slice_start; 382898f90dbaSZhi Yong Wu slice_time /= (NANOSECONDS_PER_SECOND); 382998f90dbaSZhi Yong Wu ios_limit = iops_limit * slice_time; 3830*5905fbc9SStefan Hajnoczi ios_base = bs->slice_submitted.ios[is_write]; 383198f90dbaSZhi Yong Wu if (bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL]) { 3832*5905fbc9SStefan Hajnoczi ios_base += bs->slice_submitted.ios[!is_write]; 383398f90dbaSZhi Yong Wu } 383498f90dbaSZhi Yong Wu 383598f90dbaSZhi Yong Wu if (ios_base + 1 <= ios_limit) { 383698f90dbaSZhi Yong Wu if (wait) { 383798f90dbaSZhi Yong Wu *wait = 0; 383898f90dbaSZhi Yong Wu } 383998f90dbaSZhi Yong Wu 384098f90dbaSZhi Yong Wu return false; 384198f90dbaSZhi Yong Wu } 384298f90dbaSZhi Yong Wu 384398f90dbaSZhi Yong Wu /* Calc approx time to dispatch */ 384498f90dbaSZhi Yong Wu wait_time = (ios_base + 1) / iops_limit; 384598f90dbaSZhi Yong Wu if (wait_time > elapsed_time) { 384698f90dbaSZhi Yong Wu wait_time = wait_time - elapsed_time; 384798f90dbaSZhi Yong Wu } else { 384898f90dbaSZhi Yong Wu wait_time = 0; 384998f90dbaSZhi Yong Wu } 385098f90dbaSZhi Yong Wu 385198f90dbaSZhi Yong Wu bs->slice_time = wait_time * BLOCK_IO_SLICE_TIME * 10; 385298f90dbaSZhi Yong Wu bs->slice_end += bs->slice_time - 3 * BLOCK_IO_SLICE_TIME; 385398f90dbaSZhi Yong Wu if (wait) { 385498f90dbaSZhi Yong Wu *wait = wait_time * BLOCK_IO_SLICE_TIME * 10; 385598f90dbaSZhi Yong Wu } 385698f90dbaSZhi Yong Wu 385798f90dbaSZhi Yong Wu return true; 385898f90dbaSZhi Yong Wu } 385998f90dbaSZhi Yong Wu 386098f90dbaSZhi Yong Wu static bool bdrv_exceed_io_limits(BlockDriverState *bs, int nb_sectors, 386198f90dbaSZhi Yong Wu bool is_write, int64_t *wait) 386298f90dbaSZhi Yong Wu { 386398f90dbaSZhi Yong Wu int64_t now, max_wait; 386498f90dbaSZhi Yong Wu uint64_t bps_wait = 0, iops_wait = 0; 386598f90dbaSZhi Yong Wu double elapsed_time; 386698f90dbaSZhi Yong Wu int bps_ret, iops_ret; 386798f90dbaSZhi Yong Wu 386898f90dbaSZhi Yong Wu now = qemu_get_clock_ns(vm_clock); 386998f90dbaSZhi Yong Wu if ((bs->slice_start < now) 387098f90dbaSZhi Yong Wu && (bs->slice_end > now)) { 387198f90dbaSZhi Yong Wu bs->slice_end = now + bs->slice_time; 387298f90dbaSZhi Yong Wu } else { 387398f90dbaSZhi Yong Wu bs->slice_time = 5 * BLOCK_IO_SLICE_TIME; 387498f90dbaSZhi Yong Wu bs->slice_start = now; 387598f90dbaSZhi Yong Wu bs->slice_end = now + bs->slice_time; 387698f90dbaSZhi Yong Wu 3877*5905fbc9SStefan Hajnoczi memset(&bs->slice_submitted, 0, sizeof(bs->slice_submitted)); 387898f90dbaSZhi Yong Wu } 387998f90dbaSZhi Yong Wu 388098f90dbaSZhi Yong Wu elapsed_time = now - bs->slice_start; 388198f90dbaSZhi Yong Wu elapsed_time /= (NANOSECONDS_PER_SECOND); 388298f90dbaSZhi Yong Wu 388398f90dbaSZhi Yong Wu bps_ret = bdrv_exceed_bps_limits(bs, nb_sectors, 388498f90dbaSZhi Yong Wu is_write, elapsed_time, &bps_wait); 388598f90dbaSZhi Yong Wu iops_ret = bdrv_exceed_iops_limits(bs, is_write, 388698f90dbaSZhi Yong Wu elapsed_time, &iops_wait); 388798f90dbaSZhi Yong Wu if (bps_ret || iops_ret) { 388898f90dbaSZhi Yong Wu max_wait = bps_wait > iops_wait ? bps_wait : iops_wait; 388998f90dbaSZhi Yong Wu if (wait) { 389098f90dbaSZhi Yong Wu *wait = max_wait; 389198f90dbaSZhi Yong Wu } 389298f90dbaSZhi Yong Wu 389398f90dbaSZhi Yong Wu now = qemu_get_clock_ns(vm_clock); 389498f90dbaSZhi Yong Wu if (bs->slice_end < now + max_wait) { 389598f90dbaSZhi Yong Wu bs->slice_end = now + max_wait; 389698f90dbaSZhi Yong Wu } 389798f90dbaSZhi Yong Wu 389898f90dbaSZhi Yong Wu return true; 389998f90dbaSZhi Yong Wu } 390098f90dbaSZhi Yong Wu 390198f90dbaSZhi Yong Wu if (wait) { 390298f90dbaSZhi Yong Wu *wait = 0; 390398f90dbaSZhi Yong Wu } 390498f90dbaSZhi Yong Wu 3905*5905fbc9SStefan Hajnoczi bs->slice_submitted.bytes[is_write] += (int64_t)nb_sectors * 3906*5905fbc9SStefan Hajnoczi BDRV_SECTOR_SIZE; 3907*5905fbc9SStefan Hajnoczi bs->slice_submitted.ios[is_write]++; 3908*5905fbc9SStefan Hajnoczi 390998f90dbaSZhi Yong Wu return false; 391098f90dbaSZhi Yong Wu } 391183f64091Sbellard 391283f64091Sbellard /**************************************************************/ 391383f64091Sbellard /* async block device emulation */ 391483f64091Sbellard 3915c16b5a2cSChristoph Hellwig typedef struct BlockDriverAIOCBSync { 3916c16b5a2cSChristoph Hellwig BlockDriverAIOCB common; 3917c16b5a2cSChristoph Hellwig QEMUBH *bh; 3918c16b5a2cSChristoph Hellwig int ret; 3919c16b5a2cSChristoph Hellwig /* vector translation state */ 3920c16b5a2cSChristoph Hellwig QEMUIOVector *qiov; 3921c16b5a2cSChristoph Hellwig uint8_t *bounce; 3922c16b5a2cSChristoph Hellwig int is_write; 3923c16b5a2cSChristoph Hellwig } BlockDriverAIOCBSync; 3924c16b5a2cSChristoph Hellwig 3925c16b5a2cSChristoph Hellwig static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb) 3926c16b5a2cSChristoph Hellwig { 3927b666d239SKevin Wolf BlockDriverAIOCBSync *acb = 3928b666d239SKevin Wolf container_of(blockacb, BlockDriverAIOCBSync, common); 39296a7ad299SDor Laor qemu_bh_delete(acb->bh); 393036afc451SAvi Kivity acb->bh = NULL; 3931c16b5a2cSChristoph Hellwig qemu_aio_release(acb); 3932c16b5a2cSChristoph Hellwig } 3933c16b5a2cSChristoph Hellwig 3934d7331bedSStefan Hajnoczi static const AIOCBInfo bdrv_em_aiocb_info = { 3935c16b5a2cSChristoph Hellwig .aiocb_size = sizeof(BlockDriverAIOCBSync), 3936c16b5a2cSChristoph Hellwig .cancel = bdrv_aio_cancel_em, 3937c16b5a2cSChristoph Hellwig }; 3938c16b5a2cSChristoph Hellwig 393983f64091Sbellard static void bdrv_aio_bh_cb(void *opaque) 3940beac80cdSbellard { 3941ce1a14dcSpbrook BlockDriverAIOCBSync *acb = opaque; 3942f141eafeSaliguori 3943f141eafeSaliguori if (!acb->is_write) 394403396148SMichael Tokarev qemu_iovec_from_buf(acb->qiov, 0, acb->bounce, acb->qiov->size); 3945ceb42de8Saliguori qemu_vfree(acb->bounce); 3946ce1a14dcSpbrook acb->common.cb(acb->common.opaque, acb->ret); 39476a7ad299SDor Laor qemu_bh_delete(acb->bh); 394836afc451SAvi Kivity acb->bh = NULL; 3949ce1a14dcSpbrook qemu_aio_release(acb); 3950beac80cdSbellard } 3951beac80cdSbellard 3952f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs, 3953f141eafeSaliguori int64_t sector_num, 3954f141eafeSaliguori QEMUIOVector *qiov, 3955f141eafeSaliguori int nb_sectors, 3956f141eafeSaliguori BlockDriverCompletionFunc *cb, 3957f141eafeSaliguori void *opaque, 3958f141eafeSaliguori int is_write) 3959f141eafeSaliguori 3960ea2384d3Sbellard { 3961ce1a14dcSpbrook BlockDriverAIOCBSync *acb; 396283f64091Sbellard 3963d7331bedSStefan Hajnoczi acb = qemu_aio_get(&bdrv_em_aiocb_info, bs, cb, opaque); 3964f141eafeSaliguori acb->is_write = is_write; 3965f141eafeSaliguori acb->qiov = qiov; 3966e268ca52Saliguori acb->bounce = qemu_blockalign(bs, qiov->size); 3967ce1a14dcSpbrook acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb); 3968f141eafeSaliguori 3969f141eafeSaliguori if (is_write) { 3970d5e6b161SMichael Tokarev qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size); 39711ed20acfSStefan Hajnoczi acb->ret = bs->drv->bdrv_write(bs, sector_num, acb->bounce, nb_sectors); 3972f141eafeSaliguori } else { 39731ed20acfSStefan Hajnoczi acb->ret = bs->drv->bdrv_read(bs, sector_num, acb->bounce, nb_sectors); 3974f141eafeSaliguori } 3975f141eafeSaliguori 3976ce1a14dcSpbrook qemu_bh_schedule(acb->bh); 3977f141eafeSaliguori 3978ce1a14dcSpbrook return &acb->common; 39797a6cba61Spbrook } 39807a6cba61Spbrook 3981f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs, 3982f141eafeSaliguori int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, 3983ce1a14dcSpbrook BlockDriverCompletionFunc *cb, void *opaque) 398483f64091Sbellard { 3985f141eafeSaliguori return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0); 398683f64091Sbellard } 398783f64091Sbellard 3988f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs, 3989f141eafeSaliguori int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, 3990f141eafeSaliguori BlockDriverCompletionFunc *cb, void *opaque) 3991f141eafeSaliguori { 3992f141eafeSaliguori return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1); 3993f141eafeSaliguori } 3994f141eafeSaliguori 399568485420SKevin Wolf 399668485420SKevin Wolf typedef struct BlockDriverAIOCBCoroutine { 399768485420SKevin Wolf BlockDriverAIOCB common; 399868485420SKevin Wolf BlockRequest req; 399968485420SKevin Wolf bool is_write; 4000d318aea9SKevin Wolf bool *done; 400168485420SKevin Wolf QEMUBH* bh; 400268485420SKevin Wolf } BlockDriverAIOCBCoroutine; 400368485420SKevin Wolf 400468485420SKevin Wolf static void bdrv_aio_co_cancel_em(BlockDriverAIOCB *blockacb) 400568485420SKevin Wolf { 4006d318aea9SKevin Wolf BlockDriverAIOCBCoroutine *acb = 4007d318aea9SKevin Wolf container_of(blockacb, BlockDriverAIOCBCoroutine, common); 4008d318aea9SKevin Wolf bool done = false; 4009d318aea9SKevin Wolf 4010d318aea9SKevin Wolf acb->done = &done; 4011d318aea9SKevin Wolf while (!done) { 4012d318aea9SKevin Wolf qemu_aio_wait(); 4013d318aea9SKevin Wolf } 401468485420SKevin Wolf } 401568485420SKevin Wolf 4016d7331bedSStefan Hajnoczi static const AIOCBInfo bdrv_em_co_aiocb_info = { 401768485420SKevin Wolf .aiocb_size = sizeof(BlockDriverAIOCBCoroutine), 401868485420SKevin Wolf .cancel = bdrv_aio_co_cancel_em, 401968485420SKevin Wolf }; 402068485420SKevin Wolf 402135246a68SPaolo Bonzini static void bdrv_co_em_bh(void *opaque) 402268485420SKevin Wolf { 402368485420SKevin Wolf BlockDriverAIOCBCoroutine *acb = opaque; 402468485420SKevin Wolf 402568485420SKevin Wolf acb->common.cb(acb->common.opaque, acb->req.error); 4026d318aea9SKevin Wolf 4027d318aea9SKevin Wolf if (acb->done) { 4028d318aea9SKevin Wolf *acb->done = true; 4029d318aea9SKevin Wolf } 4030d318aea9SKevin Wolf 403168485420SKevin Wolf qemu_bh_delete(acb->bh); 403268485420SKevin Wolf qemu_aio_release(acb); 403368485420SKevin Wolf } 403468485420SKevin Wolf 4035b2a61371SStefan Hajnoczi /* Invoke bdrv_co_do_readv/bdrv_co_do_writev */ 4036b2a61371SStefan Hajnoczi static void coroutine_fn bdrv_co_do_rw(void *opaque) 4037b2a61371SStefan Hajnoczi { 4038b2a61371SStefan Hajnoczi BlockDriverAIOCBCoroutine *acb = opaque; 4039b2a61371SStefan Hajnoczi BlockDriverState *bs = acb->common.bs; 4040b2a61371SStefan Hajnoczi 4041b2a61371SStefan Hajnoczi if (!acb->is_write) { 4042b2a61371SStefan Hajnoczi acb->req.error = bdrv_co_do_readv(bs, acb->req.sector, 4043470c0504SStefan Hajnoczi acb->req.nb_sectors, acb->req.qiov, 0); 4044b2a61371SStefan Hajnoczi } else { 4045b2a61371SStefan Hajnoczi acb->req.error = bdrv_co_do_writev(bs, acb->req.sector, 4046f08f2ddaSStefan Hajnoczi acb->req.nb_sectors, acb->req.qiov, 0); 4047b2a61371SStefan Hajnoczi } 4048b2a61371SStefan Hajnoczi 404935246a68SPaolo Bonzini acb->bh = qemu_bh_new(bdrv_co_em_bh, acb); 4050b2a61371SStefan Hajnoczi qemu_bh_schedule(acb->bh); 4051b2a61371SStefan Hajnoczi } 4052b2a61371SStefan Hajnoczi 405368485420SKevin Wolf static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs, 405468485420SKevin Wolf int64_t sector_num, 405568485420SKevin Wolf QEMUIOVector *qiov, 405668485420SKevin Wolf int nb_sectors, 405768485420SKevin Wolf BlockDriverCompletionFunc *cb, 405868485420SKevin Wolf void *opaque, 40598c5873d6SStefan Hajnoczi bool is_write) 406068485420SKevin Wolf { 406168485420SKevin Wolf Coroutine *co; 406268485420SKevin Wolf BlockDriverAIOCBCoroutine *acb; 406368485420SKevin Wolf 4064d7331bedSStefan Hajnoczi acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque); 406568485420SKevin Wolf acb->req.sector = sector_num; 406668485420SKevin Wolf acb->req.nb_sectors = nb_sectors; 406768485420SKevin Wolf acb->req.qiov = qiov; 406868485420SKevin Wolf acb->is_write = is_write; 4069d318aea9SKevin Wolf acb->done = NULL; 407068485420SKevin Wolf 40718c5873d6SStefan Hajnoczi co = qemu_coroutine_create(bdrv_co_do_rw); 407268485420SKevin Wolf qemu_coroutine_enter(co, acb); 407368485420SKevin Wolf 407468485420SKevin Wolf return &acb->common; 407568485420SKevin Wolf } 407668485420SKevin Wolf 407707f07615SPaolo Bonzini static void coroutine_fn bdrv_aio_flush_co_entry(void *opaque) 4078b2e12bc6SChristoph Hellwig { 407907f07615SPaolo Bonzini BlockDriverAIOCBCoroutine *acb = opaque; 408007f07615SPaolo Bonzini BlockDriverState *bs = acb->common.bs; 4081b2e12bc6SChristoph Hellwig 408207f07615SPaolo Bonzini acb->req.error = bdrv_co_flush(bs); 408307f07615SPaolo Bonzini acb->bh = qemu_bh_new(bdrv_co_em_bh, acb); 4084b2e12bc6SChristoph Hellwig qemu_bh_schedule(acb->bh); 4085b2e12bc6SChristoph Hellwig } 4086b2e12bc6SChristoph Hellwig 408707f07615SPaolo Bonzini BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs, 4088016f5cf6SAlexander Graf BlockDriverCompletionFunc *cb, void *opaque) 4089016f5cf6SAlexander Graf { 409007f07615SPaolo Bonzini trace_bdrv_aio_flush(bs, opaque); 4091016f5cf6SAlexander Graf 409207f07615SPaolo Bonzini Coroutine *co; 409307f07615SPaolo Bonzini BlockDriverAIOCBCoroutine *acb; 4094016f5cf6SAlexander Graf 4095d7331bedSStefan Hajnoczi acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque); 4096d318aea9SKevin Wolf acb->done = NULL; 4097d318aea9SKevin Wolf 409807f07615SPaolo Bonzini co = qemu_coroutine_create(bdrv_aio_flush_co_entry); 409907f07615SPaolo Bonzini qemu_coroutine_enter(co, acb); 4100016f5cf6SAlexander Graf 4101016f5cf6SAlexander Graf return &acb->common; 4102016f5cf6SAlexander Graf } 4103016f5cf6SAlexander Graf 41044265d620SPaolo Bonzini static void coroutine_fn bdrv_aio_discard_co_entry(void *opaque) 41054265d620SPaolo Bonzini { 41064265d620SPaolo Bonzini BlockDriverAIOCBCoroutine *acb = opaque; 41074265d620SPaolo Bonzini BlockDriverState *bs = acb->common.bs; 41084265d620SPaolo Bonzini 41094265d620SPaolo Bonzini acb->req.error = bdrv_co_discard(bs, acb->req.sector, acb->req.nb_sectors); 41104265d620SPaolo Bonzini acb->bh = qemu_bh_new(bdrv_co_em_bh, acb); 41114265d620SPaolo Bonzini qemu_bh_schedule(acb->bh); 41124265d620SPaolo Bonzini } 41134265d620SPaolo Bonzini 41144265d620SPaolo Bonzini BlockDriverAIOCB *bdrv_aio_discard(BlockDriverState *bs, 41154265d620SPaolo Bonzini int64_t sector_num, int nb_sectors, 41164265d620SPaolo Bonzini BlockDriverCompletionFunc *cb, void *opaque) 41174265d620SPaolo Bonzini { 41184265d620SPaolo Bonzini Coroutine *co; 41194265d620SPaolo Bonzini BlockDriverAIOCBCoroutine *acb; 41204265d620SPaolo Bonzini 41214265d620SPaolo Bonzini trace_bdrv_aio_discard(bs, sector_num, nb_sectors, opaque); 41224265d620SPaolo Bonzini 4123d7331bedSStefan Hajnoczi acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque); 41244265d620SPaolo Bonzini acb->req.sector = sector_num; 41254265d620SPaolo Bonzini acb->req.nb_sectors = nb_sectors; 4126d318aea9SKevin Wolf acb->done = NULL; 41274265d620SPaolo Bonzini co = qemu_coroutine_create(bdrv_aio_discard_co_entry); 41284265d620SPaolo Bonzini qemu_coroutine_enter(co, acb); 41294265d620SPaolo Bonzini 41304265d620SPaolo Bonzini return &acb->common; 41314265d620SPaolo Bonzini } 41324265d620SPaolo Bonzini 4133ea2384d3Sbellard void bdrv_init(void) 4134ea2384d3Sbellard { 41355efa9d5aSAnthony Liguori module_call_init(MODULE_INIT_BLOCK); 4136ea2384d3Sbellard } 4137ce1a14dcSpbrook 4138eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void) 4139eb852011SMarkus Armbruster { 4140eb852011SMarkus Armbruster use_bdrv_whitelist = 1; 4141eb852011SMarkus Armbruster bdrv_init(); 4142eb852011SMarkus Armbruster } 4143eb852011SMarkus Armbruster 4144d7331bedSStefan Hajnoczi void *qemu_aio_get(const AIOCBInfo *aiocb_info, BlockDriverState *bs, 41456bbff9a0Saliguori BlockDriverCompletionFunc *cb, void *opaque) 41466bbff9a0Saliguori { 4147ce1a14dcSpbrook BlockDriverAIOCB *acb; 4148ce1a14dcSpbrook 4149d7331bedSStefan Hajnoczi acb = g_slice_alloc(aiocb_info->aiocb_size); 4150d7331bedSStefan Hajnoczi acb->aiocb_info = aiocb_info; 4151ce1a14dcSpbrook acb->bs = bs; 4152ce1a14dcSpbrook acb->cb = cb; 4153ce1a14dcSpbrook acb->opaque = opaque; 4154ce1a14dcSpbrook return acb; 4155ce1a14dcSpbrook } 4156ce1a14dcSpbrook 4157ce1a14dcSpbrook void qemu_aio_release(void *p) 4158ce1a14dcSpbrook { 4159d37c975fSStefan Hajnoczi BlockDriverAIOCB *acb = p; 4160d7331bedSStefan Hajnoczi g_slice_free1(acb->aiocb_info->aiocb_size, acb); 4161ce1a14dcSpbrook } 416219cb3738Sbellard 416319cb3738Sbellard /**************************************************************/ 4164f9f05dc5SKevin Wolf /* Coroutine block device emulation */ 4165f9f05dc5SKevin Wolf 4166f9f05dc5SKevin Wolf typedef struct CoroutineIOCompletion { 4167f9f05dc5SKevin Wolf Coroutine *coroutine; 4168f9f05dc5SKevin Wolf int ret; 4169f9f05dc5SKevin Wolf } CoroutineIOCompletion; 4170f9f05dc5SKevin Wolf 4171f9f05dc5SKevin Wolf static void bdrv_co_io_em_complete(void *opaque, int ret) 4172f9f05dc5SKevin Wolf { 4173f9f05dc5SKevin Wolf CoroutineIOCompletion *co = opaque; 4174f9f05dc5SKevin Wolf 4175f9f05dc5SKevin Wolf co->ret = ret; 4176f9f05dc5SKevin Wolf qemu_coroutine_enter(co->coroutine, NULL); 4177f9f05dc5SKevin Wolf } 4178f9f05dc5SKevin Wolf 4179f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_io_em(BlockDriverState *bs, int64_t sector_num, 4180f9f05dc5SKevin Wolf int nb_sectors, QEMUIOVector *iov, 4181f9f05dc5SKevin Wolf bool is_write) 4182f9f05dc5SKevin Wolf { 4183f9f05dc5SKevin Wolf CoroutineIOCompletion co = { 4184f9f05dc5SKevin Wolf .coroutine = qemu_coroutine_self(), 4185f9f05dc5SKevin Wolf }; 4186f9f05dc5SKevin Wolf BlockDriverAIOCB *acb; 4187f9f05dc5SKevin Wolf 4188f9f05dc5SKevin Wolf if (is_write) { 4189a652d160SStefan Hajnoczi acb = bs->drv->bdrv_aio_writev(bs, sector_num, iov, nb_sectors, 4190f9f05dc5SKevin Wolf bdrv_co_io_em_complete, &co); 4191f9f05dc5SKevin Wolf } else { 4192a652d160SStefan Hajnoczi acb = bs->drv->bdrv_aio_readv(bs, sector_num, iov, nb_sectors, 4193f9f05dc5SKevin Wolf bdrv_co_io_em_complete, &co); 4194f9f05dc5SKevin Wolf } 4195f9f05dc5SKevin Wolf 419659370aaaSStefan Hajnoczi trace_bdrv_co_io_em(bs, sector_num, nb_sectors, is_write, acb); 4197f9f05dc5SKevin Wolf if (!acb) { 4198f9f05dc5SKevin Wolf return -EIO; 4199f9f05dc5SKevin Wolf } 4200f9f05dc5SKevin Wolf qemu_coroutine_yield(); 4201f9f05dc5SKevin Wolf 4202f9f05dc5SKevin Wolf return co.ret; 4203f9f05dc5SKevin Wolf } 4204f9f05dc5SKevin Wolf 4205f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs, 4206f9f05dc5SKevin Wolf int64_t sector_num, int nb_sectors, 4207f9f05dc5SKevin Wolf QEMUIOVector *iov) 4208f9f05dc5SKevin Wolf { 4209f9f05dc5SKevin Wolf return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, false); 4210f9f05dc5SKevin Wolf } 4211f9f05dc5SKevin Wolf 4212f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs, 4213f9f05dc5SKevin Wolf int64_t sector_num, int nb_sectors, 4214f9f05dc5SKevin Wolf QEMUIOVector *iov) 4215f9f05dc5SKevin Wolf { 4216f9f05dc5SKevin Wolf return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, true); 4217f9f05dc5SKevin Wolf } 4218f9f05dc5SKevin Wolf 421907f07615SPaolo Bonzini static void coroutine_fn bdrv_flush_co_entry(void *opaque) 4220e7a8a783SKevin Wolf { 422107f07615SPaolo Bonzini RwCo *rwco = opaque; 422207f07615SPaolo Bonzini 422307f07615SPaolo Bonzini rwco->ret = bdrv_co_flush(rwco->bs); 422407f07615SPaolo Bonzini } 422507f07615SPaolo Bonzini 422607f07615SPaolo Bonzini int coroutine_fn bdrv_co_flush(BlockDriverState *bs) 422707f07615SPaolo Bonzini { 4228eb489bb1SKevin Wolf int ret; 4229eb489bb1SKevin Wolf 423029cdb251SPaolo Bonzini if (!bs || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) { 423107f07615SPaolo Bonzini return 0; 4232eb489bb1SKevin Wolf } 4233eb489bb1SKevin Wolf 4234ca716364SKevin Wolf /* Write back cached data to the OS even with cache=unsafe */ 4235eb489bb1SKevin Wolf if (bs->drv->bdrv_co_flush_to_os) { 4236eb489bb1SKevin Wolf ret = bs->drv->bdrv_co_flush_to_os(bs); 4237eb489bb1SKevin Wolf if (ret < 0) { 4238eb489bb1SKevin Wolf return ret; 4239eb489bb1SKevin Wolf } 4240eb489bb1SKevin Wolf } 4241eb489bb1SKevin Wolf 4242ca716364SKevin Wolf /* But don't actually force it to the disk with cache=unsafe */ 4243ca716364SKevin Wolf if (bs->open_flags & BDRV_O_NO_FLUSH) { 4244d4c82329SKevin Wolf goto flush_parent; 4245ca716364SKevin Wolf } 4246ca716364SKevin Wolf 4247eb489bb1SKevin Wolf if (bs->drv->bdrv_co_flush_to_disk) { 424829cdb251SPaolo Bonzini ret = bs->drv->bdrv_co_flush_to_disk(bs); 424907f07615SPaolo Bonzini } else if (bs->drv->bdrv_aio_flush) { 425007f07615SPaolo Bonzini BlockDriverAIOCB *acb; 4251e7a8a783SKevin Wolf CoroutineIOCompletion co = { 4252e7a8a783SKevin Wolf .coroutine = qemu_coroutine_self(), 4253e7a8a783SKevin Wolf }; 4254e7a8a783SKevin Wolf 425507f07615SPaolo Bonzini acb = bs->drv->bdrv_aio_flush(bs, bdrv_co_io_em_complete, &co); 425607f07615SPaolo Bonzini if (acb == NULL) { 425729cdb251SPaolo Bonzini ret = -EIO; 425807f07615SPaolo Bonzini } else { 4259e7a8a783SKevin Wolf qemu_coroutine_yield(); 426029cdb251SPaolo Bonzini ret = co.ret; 4261e7a8a783SKevin Wolf } 426207f07615SPaolo Bonzini } else { 426307f07615SPaolo Bonzini /* 426407f07615SPaolo Bonzini * Some block drivers always operate in either writethrough or unsafe 426507f07615SPaolo Bonzini * mode and don't support bdrv_flush therefore. Usually qemu doesn't 426607f07615SPaolo Bonzini * know how the server works (because the behaviour is hardcoded or 426707f07615SPaolo Bonzini * depends on server-side configuration), so we can't ensure that 426807f07615SPaolo Bonzini * everything is safe on disk. Returning an error doesn't work because 426907f07615SPaolo Bonzini * that would break guests even if the server operates in writethrough 427007f07615SPaolo Bonzini * mode. 427107f07615SPaolo Bonzini * 427207f07615SPaolo Bonzini * Let's hope the user knows what he's doing. 427307f07615SPaolo Bonzini */ 427429cdb251SPaolo Bonzini ret = 0; 427507f07615SPaolo Bonzini } 427629cdb251SPaolo Bonzini if (ret < 0) { 427729cdb251SPaolo Bonzini return ret; 427829cdb251SPaolo Bonzini } 427929cdb251SPaolo Bonzini 428029cdb251SPaolo Bonzini /* Now flush the underlying protocol. It will also have BDRV_O_NO_FLUSH 428129cdb251SPaolo Bonzini * in the case of cache=unsafe, so there are no useless flushes. 428229cdb251SPaolo Bonzini */ 4283d4c82329SKevin Wolf flush_parent: 428429cdb251SPaolo Bonzini return bdrv_co_flush(bs->file); 428507f07615SPaolo Bonzini } 428607f07615SPaolo Bonzini 42870f15423cSAnthony Liguori void bdrv_invalidate_cache(BlockDriverState *bs) 42880f15423cSAnthony Liguori { 42890f15423cSAnthony Liguori if (bs->drv && bs->drv->bdrv_invalidate_cache) { 42900f15423cSAnthony Liguori bs->drv->bdrv_invalidate_cache(bs); 42910f15423cSAnthony Liguori } 42920f15423cSAnthony Liguori } 42930f15423cSAnthony Liguori 42940f15423cSAnthony Liguori void bdrv_invalidate_cache_all(void) 42950f15423cSAnthony Liguori { 42960f15423cSAnthony Liguori BlockDriverState *bs; 42970f15423cSAnthony Liguori 42980f15423cSAnthony Liguori QTAILQ_FOREACH(bs, &bdrv_states, list) { 42990f15423cSAnthony Liguori bdrv_invalidate_cache(bs); 43000f15423cSAnthony Liguori } 43010f15423cSAnthony Liguori } 43020f15423cSAnthony Liguori 430307789269SBenoît Canet void bdrv_clear_incoming_migration_all(void) 430407789269SBenoît Canet { 430507789269SBenoît Canet BlockDriverState *bs; 430607789269SBenoît Canet 430707789269SBenoît Canet QTAILQ_FOREACH(bs, &bdrv_states, list) { 430807789269SBenoît Canet bs->open_flags = bs->open_flags & ~(BDRV_O_INCOMING); 430907789269SBenoît Canet } 431007789269SBenoît Canet } 431107789269SBenoît Canet 431207f07615SPaolo Bonzini int bdrv_flush(BlockDriverState *bs) 431307f07615SPaolo Bonzini { 431407f07615SPaolo Bonzini Coroutine *co; 431507f07615SPaolo Bonzini RwCo rwco = { 431607f07615SPaolo Bonzini .bs = bs, 431707f07615SPaolo Bonzini .ret = NOT_DONE, 431807f07615SPaolo Bonzini }; 431907f07615SPaolo Bonzini 432007f07615SPaolo Bonzini if (qemu_in_coroutine()) { 432107f07615SPaolo Bonzini /* Fast-path if already in coroutine context */ 432207f07615SPaolo Bonzini bdrv_flush_co_entry(&rwco); 432307f07615SPaolo Bonzini } else { 432407f07615SPaolo Bonzini co = qemu_coroutine_create(bdrv_flush_co_entry); 432507f07615SPaolo Bonzini qemu_coroutine_enter(co, &rwco); 432607f07615SPaolo Bonzini while (rwco.ret == NOT_DONE) { 432707f07615SPaolo Bonzini qemu_aio_wait(); 432807f07615SPaolo Bonzini } 432907f07615SPaolo Bonzini } 433007f07615SPaolo Bonzini 433107f07615SPaolo Bonzini return rwco.ret; 433207f07615SPaolo Bonzini } 4333e7a8a783SKevin Wolf 43344265d620SPaolo Bonzini static void coroutine_fn bdrv_discard_co_entry(void *opaque) 43354265d620SPaolo Bonzini { 43364265d620SPaolo Bonzini RwCo *rwco = opaque; 43374265d620SPaolo Bonzini 43384265d620SPaolo Bonzini rwco->ret = bdrv_co_discard(rwco->bs, rwco->sector_num, rwco->nb_sectors); 43394265d620SPaolo Bonzini } 43404265d620SPaolo Bonzini 43414265d620SPaolo Bonzini int coroutine_fn bdrv_co_discard(BlockDriverState *bs, int64_t sector_num, 43424265d620SPaolo Bonzini int nb_sectors) 43434265d620SPaolo Bonzini { 43444265d620SPaolo Bonzini if (!bs->drv) { 43454265d620SPaolo Bonzini return -ENOMEDIUM; 43464265d620SPaolo Bonzini } else if (bdrv_check_request(bs, sector_num, nb_sectors)) { 43474265d620SPaolo Bonzini return -EIO; 43484265d620SPaolo Bonzini } else if (bs->read_only) { 43494265d620SPaolo Bonzini return -EROFS; 4350df702c9bSPaolo Bonzini } 4351df702c9bSPaolo Bonzini 4352df702c9bSPaolo Bonzini if (bs->dirty_bitmap) { 43538f0720ecSPaolo Bonzini bdrv_reset_dirty(bs, sector_num, nb_sectors); 4354df702c9bSPaolo Bonzini } 4355df702c9bSPaolo Bonzini 43569e8f1835SPaolo Bonzini /* Do nothing if disabled. */ 43579e8f1835SPaolo Bonzini if (!(bs->open_flags & BDRV_O_UNMAP)) { 43589e8f1835SPaolo Bonzini return 0; 43599e8f1835SPaolo Bonzini } 43609e8f1835SPaolo Bonzini 4361df702c9bSPaolo Bonzini if (bs->drv->bdrv_co_discard) { 43624265d620SPaolo Bonzini return bs->drv->bdrv_co_discard(bs, sector_num, nb_sectors); 43634265d620SPaolo Bonzini } else if (bs->drv->bdrv_aio_discard) { 43644265d620SPaolo Bonzini BlockDriverAIOCB *acb; 43654265d620SPaolo Bonzini CoroutineIOCompletion co = { 43664265d620SPaolo Bonzini .coroutine = qemu_coroutine_self(), 43674265d620SPaolo Bonzini }; 43684265d620SPaolo Bonzini 43694265d620SPaolo Bonzini acb = bs->drv->bdrv_aio_discard(bs, sector_num, nb_sectors, 43704265d620SPaolo Bonzini bdrv_co_io_em_complete, &co); 43714265d620SPaolo Bonzini if (acb == NULL) { 43724265d620SPaolo Bonzini return -EIO; 43734265d620SPaolo Bonzini } else { 43744265d620SPaolo Bonzini qemu_coroutine_yield(); 43754265d620SPaolo Bonzini return co.ret; 43764265d620SPaolo Bonzini } 43774265d620SPaolo Bonzini } else { 43784265d620SPaolo Bonzini return 0; 43794265d620SPaolo Bonzini } 43804265d620SPaolo Bonzini } 43814265d620SPaolo Bonzini 43824265d620SPaolo Bonzini int bdrv_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors) 43834265d620SPaolo Bonzini { 43844265d620SPaolo Bonzini Coroutine *co; 43854265d620SPaolo Bonzini RwCo rwco = { 43864265d620SPaolo Bonzini .bs = bs, 43874265d620SPaolo Bonzini .sector_num = sector_num, 43884265d620SPaolo Bonzini .nb_sectors = nb_sectors, 43894265d620SPaolo Bonzini .ret = NOT_DONE, 43904265d620SPaolo Bonzini }; 43914265d620SPaolo Bonzini 43924265d620SPaolo Bonzini if (qemu_in_coroutine()) { 43934265d620SPaolo Bonzini /* Fast-path if already in coroutine context */ 43944265d620SPaolo Bonzini bdrv_discard_co_entry(&rwco); 43954265d620SPaolo Bonzini } else { 43964265d620SPaolo Bonzini co = qemu_coroutine_create(bdrv_discard_co_entry); 43974265d620SPaolo Bonzini qemu_coroutine_enter(co, &rwco); 43984265d620SPaolo Bonzini while (rwco.ret == NOT_DONE) { 43994265d620SPaolo Bonzini qemu_aio_wait(); 44004265d620SPaolo Bonzini } 44014265d620SPaolo Bonzini } 44024265d620SPaolo Bonzini 44034265d620SPaolo Bonzini return rwco.ret; 44044265d620SPaolo Bonzini } 44054265d620SPaolo Bonzini 4406f9f05dc5SKevin Wolf /**************************************************************/ 440719cb3738Sbellard /* removable device support */ 440819cb3738Sbellard 440919cb3738Sbellard /** 441019cb3738Sbellard * Return TRUE if the media is present 441119cb3738Sbellard */ 441219cb3738Sbellard int bdrv_is_inserted(BlockDriverState *bs) 441319cb3738Sbellard { 441419cb3738Sbellard BlockDriver *drv = bs->drv; 4415a1aff5bfSMarkus Armbruster 441619cb3738Sbellard if (!drv) 441719cb3738Sbellard return 0; 441819cb3738Sbellard if (!drv->bdrv_is_inserted) 4419a1aff5bfSMarkus Armbruster return 1; 4420a1aff5bfSMarkus Armbruster return drv->bdrv_is_inserted(bs); 442119cb3738Sbellard } 442219cb3738Sbellard 442319cb3738Sbellard /** 44248e49ca46SMarkus Armbruster * Return whether the media changed since the last call to this 44258e49ca46SMarkus Armbruster * function, or -ENOTSUP if we don't know. Most drivers don't know. 442619cb3738Sbellard */ 442719cb3738Sbellard int bdrv_media_changed(BlockDriverState *bs) 442819cb3738Sbellard { 442919cb3738Sbellard BlockDriver *drv = bs->drv; 443019cb3738Sbellard 44318e49ca46SMarkus Armbruster if (drv && drv->bdrv_media_changed) { 44328e49ca46SMarkus Armbruster return drv->bdrv_media_changed(bs); 44338e49ca46SMarkus Armbruster } 44348e49ca46SMarkus Armbruster return -ENOTSUP; 443519cb3738Sbellard } 443619cb3738Sbellard 443719cb3738Sbellard /** 443819cb3738Sbellard * If eject_flag is TRUE, eject the media. Otherwise, close the tray 443919cb3738Sbellard */ 4440f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag) 444119cb3738Sbellard { 444219cb3738Sbellard BlockDriver *drv = bs->drv; 444319cb3738Sbellard 4444822e1cd1SMarkus Armbruster if (drv && drv->bdrv_eject) { 4445822e1cd1SMarkus Armbruster drv->bdrv_eject(bs, eject_flag); 444619cb3738Sbellard } 44476f382ed2SLuiz Capitulino 44486f382ed2SLuiz Capitulino if (bs->device_name[0] != '\0') { 44496f382ed2SLuiz Capitulino bdrv_emit_qmp_eject_event(bs, eject_flag); 44506f382ed2SLuiz Capitulino } 445119cb3738Sbellard } 445219cb3738Sbellard 445319cb3738Sbellard /** 445419cb3738Sbellard * Lock or unlock the media (if it is locked, the user won't be able 445519cb3738Sbellard * to eject it manually). 445619cb3738Sbellard */ 4457025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked) 445819cb3738Sbellard { 445919cb3738Sbellard BlockDriver *drv = bs->drv; 446019cb3738Sbellard 4461025e849aSMarkus Armbruster trace_bdrv_lock_medium(bs, locked); 4462b8c6d095SStefan Hajnoczi 4463025e849aSMarkus Armbruster if (drv && drv->bdrv_lock_medium) { 4464025e849aSMarkus Armbruster drv->bdrv_lock_medium(bs, locked); 446519cb3738Sbellard } 446619cb3738Sbellard } 4467985a03b0Sths 4468985a03b0Sths /* needed for generic scsi interface */ 4469985a03b0Sths 4470985a03b0Sths int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf) 4471985a03b0Sths { 4472985a03b0Sths BlockDriver *drv = bs->drv; 4473985a03b0Sths 4474985a03b0Sths if (drv && drv->bdrv_ioctl) 4475985a03b0Sths return drv->bdrv_ioctl(bs, req, buf); 4476985a03b0Sths return -ENOTSUP; 4477985a03b0Sths } 44787d780669Saliguori 4479221f715dSaliguori BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs, 4480221f715dSaliguori unsigned long int req, void *buf, 44817d780669Saliguori BlockDriverCompletionFunc *cb, void *opaque) 44827d780669Saliguori { 4483221f715dSaliguori BlockDriver *drv = bs->drv; 44847d780669Saliguori 4485221f715dSaliguori if (drv && drv->bdrv_aio_ioctl) 4486221f715dSaliguori return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque); 4487221f715dSaliguori return NULL; 44887d780669Saliguori } 4489e268ca52Saliguori 44907b6f9300SMarkus Armbruster void bdrv_set_buffer_alignment(BlockDriverState *bs, int align) 44917b6f9300SMarkus Armbruster { 44927b6f9300SMarkus Armbruster bs->buffer_alignment = align; 44937b6f9300SMarkus Armbruster } 44947cd1e32aSlirans@il.ibm.com 4495e268ca52Saliguori void *qemu_blockalign(BlockDriverState *bs, size_t size) 4496e268ca52Saliguori { 4497e268ca52Saliguori return qemu_memalign((bs && bs->buffer_alignment) ? bs->buffer_alignment : 512, size); 4498e268ca52Saliguori } 44997cd1e32aSlirans@il.ibm.com 4500c53b1c51SStefan Hajnoczi /* 4501c53b1c51SStefan Hajnoczi * Check if all memory in this vector is sector aligned. 4502c53b1c51SStefan Hajnoczi */ 4503c53b1c51SStefan Hajnoczi bool bdrv_qiov_is_aligned(BlockDriverState *bs, QEMUIOVector *qiov) 4504c53b1c51SStefan Hajnoczi { 4505c53b1c51SStefan Hajnoczi int i; 4506c53b1c51SStefan Hajnoczi 4507c53b1c51SStefan Hajnoczi for (i = 0; i < qiov->niov; i++) { 4508c53b1c51SStefan Hajnoczi if ((uintptr_t) qiov->iov[i].iov_base % bs->buffer_alignment) { 4509c53b1c51SStefan Hajnoczi return false; 4510c53b1c51SStefan Hajnoczi } 4511c53b1c51SStefan Hajnoczi } 4512c53b1c51SStefan Hajnoczi 4513c53b1c51SStefan Hajnoczi return true; 4514c53b1c51SStefan Hajnoczi } 4515c53b1c51SStefan Hajnoczi 451650717e94SPaolo Bonzini void bdrv_set_dirty_tracking(BlockDriverState *bs, int granularity) 45177cd1e32aSlirans@il.ibm.com { 45187cd1e32aSlirans@il.ibm.com int64_t bitmap_size; 4519a55eb92cSJan Kiszka 452050717e94SPaolo Bonzini assert((granularity & (granularity - 1)) == 0); 452150717e94SPaolo Bonzini 452250717e94SPaolo Bonzini if (granularity) { 452350717e94SPaolo Bonzini granularity >>= BDRV_SECTOR_BITS; 452450717e94SPaolo Bonzini assert(!bs->dirty_bitmap); 45258f0720ecSPaolo Bonzini bitmap_size = (bdrv_getlength(bs) >> BDRV_SECTOR_BITS); 452650717e94SPaolo Bonzini bs->dirty_bitmap = hbitmap_alloc(bitmap_size, ffs(granularity) - 1); 45277cd1e32aSlirans@il.ibm.com } else { 4528c6d22830SJan Kiszka if (bs->dirty_bitmap) { 45298f0720ecSPaolo Bonzini hbitmap_free(bs->dirty_bitmap); 4530c6d22830SJan Kiszka bs->dirty_bitmap = NULL; 45317cd1e32aSlirans@il.ibm.com } 45327cd1e32aSlirans@il.ibm.com } 45337cd1e32aSlirans@il.ibm.com } 45347cd1e32aSlirans@il.ibm.com 45357cd1e32aSlirans@il.ibm.com int bdrv_get_dirty(BlockDriverState *bs, int64_t sector) 45367cd1e32aSlirans@il.ibm.com { 45378f0720ecSPaolo Bonzini if (bs->dirty_bitmap) { 45388f0720ecSPaolo Bonzini return hbitmap_get(bs->dirty_bitmap, sector); 45397cd1e32aSlirans@il.ibm.com } else { 45407cd1e32aSlirans@il.ibm.com return 0; 45417cd1e32aSlirans@il.ibm.com } 45427cd1e32aSlirans@il.ibm.com } 45437cd1e32aSlirans@il.ibm.com 45448f0720ecSPaolo Bonzini void bdrv_dirty_iter_init(BlockDriverState *bs, HBitmapIter *hbi) 45451755da16SPaolo Bonzini { 45468f0720ecSPaolo Bonzini hbitmap_iter_init(hbi, bs->dirty_bitmap, 0); 45471755da16SPaolo Bonzini } 45481755da16SPaolo Bonzini 45491755da16SPaolo Bonzini void bdrv_set_dirty(BlockDriverState *bs, int64_t cur_sector, 45501755da16SPaolo Bonzini int nr_sectors) 45511755da16SPaolo Bonzini { 45528f0720ecSPaolo Bonzini hbitmap_set(bs->dirty_bitmap, cur_sector, nr_sectors); 45531755da16SPaolo Bonzini } 45541755da16SPaolo Bonzini 45557cd1e32aSlirans@il.ibm.com void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector, 45567cd1e32aSlirans@il.ibm.com int nr_sectors) 45577cd1e32aSlirans@il.ibm.com { 45588f0720ecSPaolo Bonzini hbitmap_reset(bs->dirty_bitmap, cur_sector, nr_sectors); 45597cd1e32aSlirans@il.ibm.com } 4560aaa0eb75SLiran Schour 4561aaa0eb75SLiran Schour int64_t bdrv_get_dirty_count(BlockDriverState *bs) 4562aaa0eb75SLiran Schour { 45638f0720ecSPaolo Bonzini if (bs->dirty_bitmap) { 4564acc906c6SPaolo Bonzini return hbitmap_count(bs->dirty_bitmap); 45658f0720ecSPaolo Bonzini } else { 45668f0720ecSPaolo Bonzini return 0; 45678f0720ecSPaolo Bonzini } 4568aaa0eb75SLiran Schour } 4569f88e1a42SJes Sorensen 4570db593f25SMarcelo Tosatti void bdrv_set_in_use(BlockDriverState *bs, int in_use) 4571db593f25SMarcelo Tosatti { 4572db593f25SMarcelo Tosatti assert(bs->in_use != in_use); 4573db593f25SMarcelo Tosatti bs->in_use = in_use; 4574db593f25SMarcelo Tosatti } 4575db593f25SMarcelo Tosatti 4576db593f25SMarcelo Tosatti int bdrv_in_use(BlockDriverState *bs) 4577db593f25SMarcelo Tosatti { 4578db593f25SMarcelo Tosatti return bs->in_use; 4579db593f25SMarcelo Tosatti } 4580db593f25SMarcelo Tosatti 458128a7282aSLuiz Capitulino void bdrv_iostatus_enable(BlockDriverState *bs) 458228a7282aSLuiz Capitulino { 4583d6bf279eSLuiz Capitulino bs->iostatus_enabled = true; 458458e21ef5SLuiz Capitulino bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK; 458528a7282aSLuiz Capitulino } 458628a7282aSLuiz Capitulino 458728a7282aSLuiz Capitulino /* The I/O status is only enabled if the drive explicitly 458828a7282aSLuiz Capitulino * enables it _and_ the VM is configured to stop on errors */ 458928a7282aSLuiz Capitulino bool bdrv_iostatus_is_enabled(const BlockDriverState *bs) 459028a7282aSLuiz Capitulino { 4591d6bf279eSLuiz Capitulino return (bs->iostatus_enabled && 459292aa5c6dSPaolo Bonzini (bs->on_write_error == BLOCKDEV_ON_ERROR_ENOSPC || 459392aa5c6dSPaolo Bonzini bs->on_write_error == BLOCKDEV_ON_ERROR_STOP || 459492aa5c6dSPaolo Bonzini bs->on_read_error == BLOCKDEV_ON_ERROR_STOP)); 459528a7282aSLuiz Capitulino } 459628a7282aSLuiz Capitulino 459728a7282aSLuiz Capitulino void bdrv_iostatus_disable(BlockDriverState *bs) 459828a7282aSLuiz Capitulino { 4599d6bf279eSLuiz Capitulino bs->iostatus_enabled = false; 460028a7282aSLuiz Capitulino } 460128a7282aSLuiz Capitulino 460228a7282aSLuiz Capitulino void bdrv_iostatus_reset(BlockDriverState *bs) 460328a7282aSLuiz Capitulino { 460428a7282aSLuiz Capitulino if (bdrv_iostatus_is_enabled(bs)) { 460558e21ef5SLuiz Capitulino bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK; 46063bd293c3SPaolo Bonzini if (bs->job) { 46073bd293c3SPaolo Bonzini block_job_iostatus_reset(bs->job); 46083bd293c3SPaolo Bonzini } 460928a7282aSLuiz Capitulino } 461028a7282aSLuiz Capitulino } 461128a7282aSLuiz Capitulino 461228a7282aSLuiz Capitulino void bdrv_iostatus_set_err(BlockDriverState *bs, int error) 461328a7282aSLuiz Capitulino { 46143e1caa5fSPaolo Bonzini assert(bdrv_iostatus_is_enabled(bs)); 46153e1caa5fSPaolo Bonzini if (bs->iostatus == BLOCK_DEVICE_IO_STATUS_OK) { 461658e21ef5SLuiz Capitulino bs->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE : 461758e21ef5SLuiz Capitulino BLOCK_DEVICE_IO_STATUS_FAILED; 461828a7282aSLuiz Capitulino } 461928a7282aSLuiz Capitulino } 462028a7282aSLuiz Capitulino 4621a597e79cSChristoph Hellwig void 4622a597e79cSChristoph Hellwig bdrv_acct_start(BlockDriverState *bs, BlockAcctCookie *cookie, int64_t bytes, 4623a597e79cSChristoph Hellwig enum BlockAcctType type) 4624a597e79cSChristoph Hellwig { 4625a597e79cSChristoph Hellwig assert(type < BDRV_MAX_IOTYPE); 4626a597e79cSChristoph Hellwig 4627a597e79cSChristoph Hellwig cookie->bytes = bytes; 4628c488c7f6SChristoph Hellwig cookie->start_time_ns = get_clock(); 4629a597e79cSChristoph Hellwig cookie->type = type; 4630a597e79cSChristoph Hellwig } 4631a597e79cSChristoph Hellwig 4632a597e79cSChristoph Hellwig void 4633a597e79cSChristoph Hellwig bdrv_acct_done(BlockDriverState *bs, BlockAcctCookie *cookie) 4634a597e79cSChristoph Hellwig { 4635a597e79cSChristoph Hellwig assert(cookie->type < BDRV_MAX_IOTYPE); 4636a597e79cSChristoph Hellwig 4637a597e79cSChristoph Hellwig bs->nr_bytes[cookie->type] += cookie->bytes; 4638a597e79cSChristoph Hellwig bs->nr_ops[cookie->type]++; 4639c488c7f6SChristoph Hellwig bs->total_time_ns[cookie->type] += get_clock() - cookie->start_time_ns; 4640a597e79cSChristoph Hellwig } 4641a597e79cSChristoph Hellwig 4642d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt, 4643f88e1a42SJes Sorensen const char *base_filename, const char *base_fmt, 4644f382d43aSMiroslav Rezanina char *options, uint64_t img_size, int flags, 4645f382d43aSMiroslav Rezanina Error **errp, bool quiet) 4646f88e1a42SJes Sorensen { 4647f88e1a42SJes Sorensen QEMUOptionParameter *param = NULL, *create_options = NULL; 4648d220894eSKevin Wolf QEMUOptionParameter *backing_fmt, *backing_file, *size; 4649f88e1a42SJes Sorensen BlockDriverState *bs = NULL; 4650f88e1a42SJes Sorensen BlockDriver *drv, *proto_drv; 465196df67d1SStefan Hajnoczi BlockDriver *backing_drv = NULL; 4652f88e1a42SJes Sorensen int ret = 0; 4653f88e1a42SJes Sorensen 4654f88e1a42SJes Sorensen /* Find driver and parse its options */ 4655f88e1a42SJes Sorensen drv = bdrv_find_format(fmt); 4656f88e1a42SJes Sorensen if (!drv) { 465771c79813SLuiz Capitulino error_setg(errp, "Unknown file format '%s'", fmt); 4658d92ada22SLuiz Capitulino return; 4659f88e1a42SJes Sorensen } 4660f88e1a42SJes Sorensen 4661f88e1a42SJes Sorensen proto_drv = bdrv_find_protocol(filename); 4662f88e1a42SJes Sorensen if (!proto_drv) { 466371c79813SLuiz Capitulino error_setg(errp, "Unknown protocol '%s'", filename); 4664d92ada22SLuiz Capitulino return; 4665f88e1a42SJes Sorensen } 4666f88e1a42SJes Sorensen 4667f88e1a42SJes Sorensen create_options = append_option_parameters(create_options, 4668f88e1a42SJes Sorensen drv->create_options); 4669f88e1a42SJes Sorensen create_options = append_option_parameters(create_options, 4670f88e1a42SJes Sorensen proto_drv->create_options); 4671f88e1a42SJes Sorensen 4672f88e1a42SJes Sorensen /* Create parameter list with default values */ 4673f88e1a42SJes Sorensen param = parse_option_parameters("", create_options, param); 4674f88e1a42SJes Sorensen 4675f88e1a42SJes Sorensen set_option_parameter_int(param, BLOCK_OPT_SIZE, img_size); 4676f88e1a42SJes Sorensen 4677f88e1a42SJes Sorensen /* Parse -o options */ 4678f88e1a42SJes Sorensen if (options) { 4679f88e1a42SJes Sorensen param = parse_option_parameters(options, create_options, param); 4680f88e1a42SJes Sorensen if (param == NULL) { 468171c79813SLuiz Capitulino error_setg(errp, "Invalid options for file format '%s'.", fmt); 4682f88e1a42SJes Sorensen goto out; 4683f88e1a42SJes Sorensen } 4684f88e1a42SJes Sorensen } 4685f88e1a42SJes Sorensen 4686f88e1a42SJes Sorensen if (base_filename) { 4687f88e1a42SJes Sorensen if (set_option_parameter(param, BLOCK_OPT_BACKING_FILE, 4688f88e1a42SJes Sorensen base_filename)) { 468971c79813SLuiz Capitulino error_setg(errp, "Backing file not supported for file format '%s'", 469071c79813SLuiz Capitulino fmt); 4691f88e1a42SJes Sorensen goto out; 4692f88e1a42SJes Sorensen } 4693f88e1a42SJes Sorensen } 4694f88e1a42SJes Sorensen 4695f88e1a42SJes Sorensen if (base_fmt) { 4696f88e1a42SJes Sorensen if (set_option_parameter(param, BLOCK_OPT_BACKING_FMT, base_fmt)) { 469771c79813SLuiz Capitulino error_setg(errp, "Backing file format not supported for file " 469871c79813SLuiz Capitulino "format '%s'", fmt); 4699f88e1a42SJes Sorensen goto out; 4700f88e1a42SJes Sorensen } 4701f88e1a42SJes Sorensen } 4702f88e1a42SJes Sorensen 4703792da93aSJes Sorensen backing_file = get_option_parameter(param, BLOCK_OPT_BACKING_FILE); 4704792da93aSJes Sorensen if (backing_file && backing_file->value.s) { 4705792da93aSJes Sorensen if (!strcmp(filename, backing_file->value.s)) { 470671c79813SLuiz Capitulino error_setg(errp, "Error: Trying to create an image with the " 470771c79813SLuiz Capitulino "same filename as the backing file"); 4708792da93aSJes Sorensen goto out; 4709792da93aSJes Sorensen } 4710792da93aSJes Sorensen } 4711792da93aSJes Sorensen 4712f88e1a42SJes Sorensen backing_fmt = get_option_parameter(param, BLOCK_OPT_BACKING_FMT); 4713f88e1a42SJes Sorensen if (backing_fmt && backing_fmt->value.s) { 471496df67d1SStefan Hajnoczi backing_drv = bdrv_find_format(backing_fmt->value.s); 471596df67d1SStefan Hajnoczi if (!backing_drv) { 471671c79813SLuiz Capitulino error_setg(errp, "Unknown backing file format '%s'", 471771c79813SLuiz Capitulino backing_fmt->value.s); 4718f88e1a42SJes Sorensen goto out; 4719f88e1a42SJes Sorensen } 4720f88e1a42SJes Sorensen } 4721f88e1a42SJes Sorensen 4722f88e1a42SJes Sorensen // The size for the image must always be specified, with one exception: 4723f88e1a42SJes Sorensen // If we are using a backing file, we can obtain the size from there 4724d220894eSKevin Wolf size = get_option_parameter(param, BLOCK_OPT_SIZE); 4725d220894eSKevin Wolf if (size && size->value.n == -1) { 4726f88e1a42SJes Sorensen if (backing_file && backing_file->value.s) { 4727f88e1a42SJes Sorensen uint64_t size; 4728f88e1a42SJes Sorensen char buf[32]; 472963090dacSPaolo Bonzini int back_flags; 473063090dacSPaolo Bonzini 473163090dacSPaolo Bonzini /* backing files always opened read-only */ 473263090dacSPaolo Bonzini back_flags = 473363090dacSPaolo Bonzini flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); 4734f88e1a42SJes Sorensen 4735f88e1a42SJes Sorensen bs = bdrv_new(""); 4736f88e1a42SJes Sorensen 4737de9c0cecSKevin Wolf ret = bdrv_open(bs, backing_file->value.s, NULL, back_flags, 4738de9c0cecSKevin Wolf backing_drv); 4739f88e1a42SJes Sorensen if (ret < 0) { 474071c79813SLuiz Capitulino error_setg_errno(errp, -ret, "Could not open '%s'", 474171c79813SLuiz Capitulino backing_file->value.s); 4742f88e1a42SJes Sorensen goto out; 4743f88e1a42SJes Sorensen } 4744f88e1a42SJes Sorensen bdrv_get_geometry(bs, &size); 4745f88e1a42SJes Sorensen size *= 512; 4746f88e1a42SJes Sorensen 4747f88e1a42SJes Sorensen snprintf(buf, sizeof(buf), "%" PRId64, size); 4748f88e1a42SJes Sorensen set_option_parameter(param, BLOCK_OPT_SIZE, buf); 4749f88e1a42SJes Sorensen } else { 475071c79813SLuiz Capitulino error_setg(errp, "Image creation needs a size parameter"); 4751f88e1a42SJes Sorensen goto out; 4752f88e1a42SJes Sorensen } 4753f88e1a42SJes Sorensen } 4754f88e1a42SJes Sorensen 4755f382d43aSMiroslav Rezanina if (!quiet) { 4756f88e1a42SJes Sorensen printf("Formatting '%s', fmt=%s ", filename, fmt); 4757f88e1a42SJes Sorensen print_option_parameters(param); 4758f88e1a42SJes Sorensen puts(""); 4759f382d43aSMiroslav Rezanina } 4760f88e1a42SJes Sorensen ret = bdrv_create(drv, filename, param); 4761f88e1a42SJes Sorensen if (ret < 0) { 4762f88e1a42SJes Sorensen if (ret == -ENOTSUP) { 476371c79813SLuiz Capitulino error_setg(errp,"Formatting or formatting option not supported for " 476471c79813SLuiz Capitulino "file format '%s'", fmt); 4765f88e1a42SJes Sorensen } else if (ret == -EFBIG) { 476671c79813SLuiz Capitulino error_setg(errp, "The image size is too large for file format '%s'", 476771c79813SLuiz Capitulino fmt); 4768f88e1a42SJes Sorensen } else { 476971c79813SLuiz Capitulino error_setg(errp, "%s: error while creating %s: %s", filename, fmt, 477071c79813SLuiz Capitulino strerror(-ret)); 4771f88e1a42SJes Sorensen } 4772f88e1a42SJes Sorensen } 4773f88e1a42SJes Sorensen 4774f88e1a42SJes Sorensen out: 4775f88e1a42SJes Sorensen free_option_parameters(create_options); 4776f88e1a42SJes Sorensen free_option_parameters(param); 4777f88e1a42SJes Sorensen 4778f88e1a42SJes Sorensen if (bs) { 4779f88e1a42SJes Sorensen bdrv_delete(bs); 4780f88e1a42SJes Sorensen } 4781f88e1a42SJes Sorensen } 478285d126f3SStefan Hajnoczi 478385d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs) 478485d126f3SStefan Hajnoczi { 478585d126f3SStefan Hajnoczi /* Currently BlockDriverState always uses the main loop AioContext */ 478685d126f3SStefan Hajnoczi return qemu_get_aio_context(); 478785d126f3SStefan Hajnoczi } 4788