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 } 14498f90dbaSZhi Yong Wu 1450563e191SZhi Yong Wu static void bdrv_block_timer(void *opaque) 1460563e191SZhi Yong Wu { 1470563e191SZhi Yong Wu BlockDriverState *bs = opaque; 1480563e191SZhi Yong Wu 1490563e191SZhi Yong Wu qemu_co_queue_next(&bs->throttled_reqs); 1500563e191SZhi Yong Wu } 1510563e191SZhi Yong Wu 1520563e191SZhi Yong Wu void bdrv_io_limits_enable(BlockDriverState *bs) 1530563e191SZhi Yong Wu { 1540563e191SZhi Yong Wu qemu_co_queue_init(&bs->throttled_reqs); 1550563e191SZhi Yong Wu bs->block_timer = qemu_new_timer_ns(vm_clock, bdrv_block_timer, bs); 1560563e191SZhi Yong Wu bs->io_limits_enabled = true; 1570563e191SZhi Yong Wu } 1580563e191SZhi Yong Wu 1590563e191SZhi Yong Wu bool bdrv_io_limits_enabled(BlockDriverState *bs) 1600563e191SZhi Yong Wu { 1610563e191SZhi Yong Wu BlockIOLimit *io_limits = &bs->io_limits; 1620563e191SZhi Yong Wu return io_limits->bps[BLOCK_IO_LIMIT_READ] 1630563e191SZhi Yong Wu || io_limits->bps[BLOCK_IO_LIMIT_WRITE] 1640563e191SZhi Yong Wu || io_limits->bps[BLOCK_IO_LIMIT_TOTAL] 1650563e191SZhi Yong Wu || io_limits->iops[BLOCK_IO_LIMIT_READ] 1660563e191SZhi Yong Wu || io_limits->iops[BLOCK_IO_LIMIT_WRITE] 1670563e191SZhi Yong Wu || io_limits->iops[BLOCK_IO_LIMIT_TOTAL]; 1680563e191SZhi Yong Wu } 1690563e191SZhi Yong Wu 17098f90dbaSZhi Yong Wu static void bdrv_io_limits_intercept(BlockDriverState *bs, 17198f90dbaSZhi Yong Wu bool is_write, int nb_sectors) 17298f90dbaSZhi Yong Wu { 17398f90dbaSZhi Yong Wu int64_t wait_time = -1; 17498f90dbaSZhi Yong Wu 17598f90dbaSZhi Yong Wu if (!qemu_co_queue_empty(&bs->throttled_reqs)) { 17698f90dbaSZhi Yong Wu qemu_co_queue_wait(&bs->throttled_reqs); 17798f90dbaSZhi Yong Wu } 17898f90dbaSZhi Yong Wu 17998f90dbaSZhi Yong Wu /* In fact, we hope to keep each request's timing, in FIFO mode. The next 18098f90dbaSZhi Yong Wu * throttled requests will not be dequeued until the current request is 18198f90dbaSZhi Yong Wu * allowed to be serviced. So if the current request still exceeds the 18298f90dbaSZhi Yong Wu * limits, it will be inserted to the head. All requests followed it will 18398f90dbaSZhi Yong Wu * be still in throttled_reqs queue. 18498f90dbaSZhi Yong Wu */ 18598f90dbaSZhi Yong Wu 18698f90dbaSZhi Yong Wu while (bdrv_exceed_io_limits(bs, nb_sectors, is_write, &wait_time)) { 18798f90dbaSZhi Yong Wu qemu_mod_timer(bs->block_timer, 18898f90dbaSZhi Yong Wu wait_time + qemu_get_clock_ns(vm_clock)); 18998f90dbaSZhi Yong Wu qemu_co_queue_wait_insert_head(&bs->throttled_reqs); 19098f90dbaSZhi Yong Wu } 19198f90dbaSZhi Yong Wu 19298f90dbaSZhi Yong Wu qemu_co_queue_next(&bs->throttled_reqs); 19398f90dbaSZhi Yong Wu } 19498f90dbaSZhi Yong Wu 1959e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */ 1969e0b22f4SStefan Hajnoczi static int path_has_protocol(const char *path) 1979e0b22f4SStefan Hajnoczi { 198947995c0SPaolo Bonzini const char *p; 199947995c0SPaolo Bonzini 2009e0b22f4SStefan Hajnoczi #ifdef _WIN32 2019e0b22f4SStefan Hajnoczi if (is_windows_drive(path) || 2029e0b22f4SStefan Hajnoczi is_windows_drive_prefix(path)) { 2039e0b22f4SStefan Hajnoczi return 0; 2049e0b22f4SStefan Hajnoczi } 205947995c0SPaolo Bonzini p = path + strcspn(path, ":/\\"); 206947995c0SPaolo Bonzini #else 207947995c0SPaolo Bonzini p = path + strcspn(path, ":/"); 2089e0b22f4SStefan Hajnoczi #endif 2099e0b22f4SStefan Hajnoczi 210947995c0SPaolo Bonzini return *p == ':'; 2119e0b22f4SStefan Hajnoczi } 2129e0b22f4SStefan Hajnoczi 21383f64091Sbellard int path_is_absolute(const char *path) 21483f64091Sbellard { 21521664424Sbellard #ifdef _WIN32 21621664424Sbellard /* specific case for names like: "\\.\d:" */ 217f53f4da9SPaolo Bonzini if (is_windows_drive(path) || is_windows_drive_prefix(path)) { 21821664424Sbellard return 1; 219f53f4da9SPaolo Bonzini } 220f53f4da9SPaolo Bonzini return (*path == '/' || *path == '\\'); 2213b9f94e1Sbellard #else 222f53f4da9SPaolo Bonzini return (*path == '/'); 2233b9f94e1Sbellard #endif 22483f64091Sbellard } 22583f64091Sbellard 22683f64091Sbellard /* if filename is absolute, just copy it to dest. Otherwise, build a 22783f64091Sbellard path to it by considering it is relative to base_path. URL are 22883f64091Sbellard supported. */ 22983f64091Sbellard void path_combine(char *dest, int dest_size, 23083f64091Sbellard const char *base_path, 23183f64091Sbellard const char *filename) 23283f64091Sbellard { 23383f64091Sbellard const char *p, *p1; 23483f64091Sbellard int len; 23583f64091Sbellard 23683f64091Sbellard if (dest_size <= 0) 23783f64091Sbellard return; 23883f64091Sbellard if (path_is_absolute(filename)) { 23983f64091Sbellard pstrcpy(dest, dest_size, filename); 24083f64091Sbellard } else { 24183f64091Sbellard p = strchr(base_path, ':'); 24283f64091Sbellard if (p) 24383f64091Sbellard p++; 24483f64091Sbellard else 24583f64091Sbellard p = base_path; 2463b9f94e1Sbellard p1 = strrchr(base_path, '/'); 2473b9f94e1Sbellard #ifdef _WIN32 2483b9f94e1Sbellard { 2493b9f94e1Sbellard const char *p2; 2503b9f94e1Sbellard p2 = strrchr(base_path, '\\'); 2513b9f94e1Sbellard if (!p1 || p2 > p1) 2523b9f94e1Sbellard p1 = p2; 2533b9f94e1Sbellard } 2543b9f94e1Sbellard #endif 25583f64091Sbellard if (p1) 25683f64091Sbellard p1++; 25783f64091Sbellard else 25883f64091Sbellard p1 = base_path; 25983f64091Sbellard if (p1 > p) 26083f64091Sbellard p = p1; 26183f64091Sbellard len = p - base_path; 26283f64091Sbellard if (len > dest_size - 1) 26383f64091Sbellard len = dest_size - 1; 26483f64091Sbellard memcpy(dest, base_path, len); 26583f64091Sbellard dest[len] = '\0'; 26683f64091Sbellard pstrcat(dest, dest_size, filename); 26783f64091Sbellard } 26883f64091Sbellard } 26983f64091Sbellard 270dc5a1371SPaolo Bonzini void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz) 271dc5a1371SPaolo Bonzini { 272dc5a1371SPaolo Bonzini if (bs->backing_file[0] == '\0' || path_has_protocol(bs->backing_file)) { 273dc5a1371SPaolo Bonzini pstrcpy(dest, sz, bs->backing_file); 274dc5a1371SPaolo Bonzini } else { 275dc5a1371SPaolo Bonzini path_combine(dest, sz, bs->filename, bs->backing_file); 276dc5a1371SPaolo Bonzini } 277dc5a1371SPaolo Bonzini } 278dc5a1371SPaolo Bonzini 2795efa9d5aSAnthony Liguori void bdrv_register(BlockDriver *bdrv) 280ea2384d3Sbellard { 2818c5873d6SStefan Hajnoczi /* Block drivers without coroutine functions need emulation */ 2828c5873d6SStefan Hajnoczi if (!bdrv->bdrv_co_readv) { 283f9f05dc5SKevin Wolf bdrv->bdrv_co_readv = bdrv_co_readv_em; 284f9f05dc5SKevin Wolf bdrv->bdrv_co_writev = bdrv_co_writev_em; 285f9f05dc5SKevin Wolf 286f8c35c1dSStefan Hajnoczi /* bdrv_co_readv_em()/brdv_co_writev_em() work in terms of aio, so if 287f8c35c1dSStefan Hajnoczi * the block driver lacks aio we need to emulate that too. 288f8c35c1dSStefan Hajnoczi */ 289f9f05dc5SKevin Wolf if (!bdrv->bdrv_aio_readv) { 29083f64091Sbellard /* add AIO emulation layer */ 291f141eafeSaliguori bdrv->bdrv_aio_readv = bdrv_aio_readv_em; 292f141eafeSaliguori bdrv->bdrv_aio_writev = bdrv_aio_writev_em; 29383f64091Sbellard } 294f9f05dc5SKevin Wolf } 295b2e12bc6SChristoph Hellwig 2968a22f02aSStefan Hajnoczi QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list); 297ea2384d3Sbellard } 298b338082bSbellard 299b338082bSbellard /* create a new block device (by default it is empty) */ 300b338082bSbellard BlockDriverState *bdrv_new(const char *device_name) 301fc01f7e7Sbellard { 3021b7bdbc1SStefan Hajnoczi BlockDriverState *bs; 303b338082bSbellard 3047267c094SAnthony Liguori bs = g_malloc0(sizeof(BlockDriverState)); 305b338082bSbellard pstrcpy(bs->device_name, sizeof(bs->device_name), device_name); 306ea2384d3Sbellard if (device_name[0] != '\0') { 3071b7bdbc1SStefan Hajnoczi QTAILQ_INSERT_TAIL(&bdrv_states, bs, list); 308ea2384d3Sbellard } 30928a7282aSLuiz Capitulino bdrv_iostatus_disable(bs); 310d7d512f6SPaolo Bonzini notifier_list_init(&bs->close_notifiers); 311d7d512f6SPaolo Bonzini 312b338082bSbellard return bs; 313b338082bSbellard } 314b338082bSbellard 315d7d512f6SPaolo Bonzini void bdrv_add_close_notifier(BlockDriverState *bs, Notifier *notify) 316d7d512f6SPaolo Bonzini { 317d7d512f6SPaolo Bonzini notifier_list_add(&bs->close_notifiers, notify); 318d7d512f6SPaolo Bonzini } 319d7d512f6SPaolo Bonzini 320ea2384d3Sbellard BlockDriver *bdrv_find_format(const char *format_name) 321ea2384d3Sbellard { 322ea2384d3Sbellard BlockDriver *drv1; 3238a22f02aSStefan Hajnoczi QLIST_FOREACH(drv1, &bdrv_drivers, list) { 3248a22f02aSStefan Hajnoczi if (!strcmp(drv1->format_name, format_name)) { 325ea2384d3Sbellard return drv1; 326ea2384d3Sbellard } 3278a22f02aSStefan Hajnoczi } 328ea2384d3Sbellard return NULL; 329ea2384d3Sbellard } 330ea2384d3Sbellard 331*b64ec4e4SFam Zheng static int bdrv_is_whitelisted(BlockDriver *drv, bool read_only) 332eb852011SMarkus Armbruster { 333*b64ec4e4SFam Zheng static const char *whitelist_rw[] = { 334*b64ec4e4SFam Zheng CONFIG_BDRV_RW_WHITELIST 335*b64ec4e4SFam Zheng }; 336*b64ec4e4SFam Zheng static const char *whitelist_ro[] = { 337*b64ec4e4SFam Zheng CONFIG_BDRV_RO_WHITELIST 338eb852011SMarkus Armbruster }; 339eb852011SMarkus Armbruster const char **p; 340eb852011SMarkus Armbruster 341*b64ec4e4SFam Zheng if (!whitelist_rw[0] && !whitelist_ro[0]) { 342eb852011SMarkus Armbruster return 1; /* no whitelist, anything goes */ 343*b64ec4e4SFam Zheng } 344eb852011SMarkus Armbruster 345*b64ec4e4SFam Zheng for (p = whitelist_rw; *p; p++) { 346eb852011SMarkus Armbruster if (!strcmp(drv->format_name, *p)) { 347eb852011SMarkus Armbruster return 1; 348eb852011SMarkus Armbruster } 349eb852011SMarkus Armbruster } 350*b64ec4e4SFam Zheng if (read_only) { 351*b64ec4e4SFam Zheng for (p = whitelist_ro; *p; p++) { 352*b64ec4e4SFam Zheng if (!strcmp(drv->format_name, *p)) { 353*b64ec4e4SFam Zheng return 1; 354*b64ec4e4SFam Zheng } 355*b64ec4e4SFam Zheng } 356*b64ec4e4SFam Zheng } 357eb852011SMarkus Armbruster return 0; 358eb852011SMarkus Armbruster } 359eb852011SMarkus Armbruster 360*b64ec4e4SFam Zheng BlockDriver *bdrv_find_whitelisted_format(const char *format_name, 361*b64ec4e4SFam Zheng bool read_only) 362eb852011SMarkus Armbruster { 363eb852011SMarkus Armbruster BlockDriver *drv = bdrv_find_format(format_name); 364*b64ec4e4SFam Zheng return drv && bdrv_is_whitelisted(drv, read_only) ? drv : NULL; 365eb852011SMarkus Armbruster } 366eb852011SMarkus Armbruster 3675b7e1542SZhi Yong Wu typedef struct CreateCo { 3685b7e1542SZhi Yong Wu BlockDriver *drv; 3695b7e1542SZhi Yong Wu char *filename; 3705b7e1542SZhi Yong Wu QEMUOptionParameter *options; 3715b7e1542SZhi Yong Wu int ret; 3725b7e1542SZhi Yong Wu } CreateCo; 3735b7e1542SZhi Yong Wu 3745b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque) 3755b7e1542SZhi Yong Wu { 3765b7e1542SZhi Yong Wu CreateCo *cco = opaque; 3775b7e1542SZhi Yong Wu assert(cco->drv); 3785b7e1542SZhi Yong Wu 3795b7e1542SZhi Yong Wu cco->ret = cco->drv->bdrv_create(cco->filename, cco->options); 3805b7e1542SZhi Yong Wu } 3815b7e1542SZhi Yong Wu 3820e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename, 3830e7e1989SKevin Wolf QEMUOptionParameter *options) 384ea2384d3Sbellard { 3855b7e1542SZhi Yong Wu int ret; 3860e7e1989SKevin Wolf 3875b7e1542SZhi Yong Wu Coroutine *co; 3885b7e1542SZhi Yong Wu CreateCo cco = { 3895b7e1542SZhi Yong Wu .drv = drv, 3905b7e1542SZhi Yong Wu .filename = g_strdup(filename), 3915b7e1542SZhi Yong Wu .options = options, 3925b7e1542SZhi Yong Wu .ret = NOT_DONE, 3935b7e1542SZhi Yong Wu }; 3945b7e1542SZhi Yong Wu 3955b7e1542SZhi Yong Wu if (!drv->bdrv_create) { 39680168bffSLuiz Capitulino ret = -ENOTSUP; 39780168bffSLuiz Capitulino goto out; 3985b7e1542SZhi Yong Wu } 3995b7e1542SZhi Yong Wu 4005b7e1542SZhi Yong Wu if (qemu_in_coroutine()) { 4015b7e1542SZhi Yong Wu /* Fast-path if already in coroutine context */ 4025b7e1542SZhi Yong Wu bdrv_create_co_entry(&cco); 4035b7e1542SZhi Yong Wu } else { 4045b7e1542SZhi Yong Wu co = qemu_coroutine_create(bdrv_create_co_entry); 4055b7e1542SZhi Yong Wu qemu_coroutine_enter(co, &cco); 4065b7e1542SZhi Yong Wu while (cco.ret == NOT_DONE) { 4075b7e1542SZhi Yong Wu qemu_aio_wait(); 4085b7e1542SZhi Yong Wu } 4095b7e1542SZhi Yong Wu } 4105b7e1542SZhi Yong Wu 4115b7e1542SZhi Yong Wu ret = cco.ret; 4125b7e1542SZhi Yong Wu 41380168bffSLuiz Capitulino out: 41480168bffSLuiz Capitulino g_free(cco.filename); 4155b7e1542SZhi Yong Wu return ret; 416ea2384d3Sbellard } 417ea2384d3Sbellard 41884a12e66SChristoph Hellwig int bdrv_create_file(const char* filename, QEMUOptionParameter *options) 41984a12e66SChristoph Hellwig { 42084a12e66SChristoph Hellwig BlockDriver *drv; 42184a12e66SChristoph Hellwig 422b50cbabcSMORITA Kazutaka drv = bdrv_find_protocol(filename); 42384a12e66SChristoph Hellwig if (drv == NULL) { 42416905d71SStefan Hajnoczi return -ENOENT; 42584a12e66SChristoph Hellwig } 42684a12e66SChristoph Hellwig 42784a12e66SChristoph Hellwig return bdrv_create(drv, filename, options); 42884a12e66SChristoph Hellwig } 42984a12e66SChristoph Hellwig 430eba25057SJim Meyering /* 431eba25057SJim Meyering * Create a uniquely-named empty temporary file. 432eba25057SJim Meyering * Return 0 upon success, otherwise a negative errno value. 433eba25057SJim Meyering */ 434eba25057SJim Meyering int get_tmp_filename(char *filename, int size) 435eba25057SJim Meyering { 436d5249393Sbellard #ifdef _WIN32 4373b9f94e1Sbellard char temp_dir[MAX_PATH]; 438eba25057SJim Meyering /* GetTempFileName requires that its output buffer (4th param) 439eba25057SJim Meyering have length MAX_PATH or greater. */ 440eba25057SJim Meyering assert(size >= MAX_PATH); 441eba25057SJim Meyering return (GetTempPath(MAX_PATH, temp_dir) 442eba25057SJim Meyering && GetTempFileName(temp_dir, "qem", 0, filename) 443eba25057SJim Meyering ? 0 : -GetLastError()); 444d5249393Sbellard #else 445ea2384d3Sbellard int fd; 4467ccfb2ebSblueswir1 const char *tmpdir; 4470badc1eeSaurel32 tmpdir = getenv("TMPDIR"); 4480badc1eeSaurel32 if (!tmpdir) 4490badc1eeSaurel32 tmpdir = "/tmp"; 450eba25057SJim Meyering if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) { 451eba25057SJim Meyering return -EOVERFLOW; 452ea2384d3Sbellard } 453eba25057SJim Meyering fd = mkstemp(filename); 454fe235a06SDunrong Huang if (fd < 0) { 455fe235a06SDunrong Huang return -errno; 456fe235a06SDunrong Huang } 457fe235a06SDunrong Huang if (close(fd) != 0) { 458fe235a06SDunrong Huang unlink(filename); 459eba25057SJim Meyering return -errno; 460eba25057SJim Meyering } 461eba25057SJim Meyering return 0; 462d5249393Sbellard #endif 463eba25057SJim Meyering } 464ea2384d3Sbellard 465f3a5d3f8SChristoph Hellwig /* 466f3a5d3f8SChristoph Hellwig * Detect host devices. By convention, /dev/cdrom[N] is always 467f3a5d3f8SChristoph Hellwig * recognized as a host CDROM. 468f3a5d3f8SChristoph Hellwig */ 469f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename) 470f3a5d3f8SChristoph Hellwig { 471508c7cb3SChristoph Hellwig int score_max = 0, score; 472508c7cb3SChristoph Hellwig BlockDriver *drv = NULL, *d; 473f3a5d3f8SChristoph Hellwig 4748a22f02aSStefan Hajnoczi QLIST_FOREACH(d, &bdrv_drivers, list) { 475508c7cb3SChristoph Hellwig if (d->bdrv_probe_device) { 476508c7cb3SChristoph Hellwig score = d->bdrv_probe_device(filename); 477508c7cb3SChristoph Hellwig if (score > score_max) { 478508c7cb3SChristoph Hellwig score_max = score; 479508c7cb3SChristoph Hellwig drv = d; 480f3a5d3f8SChristoph Hellwig } 481508c7cb3SChristoph Hellwig } 482f3a5d3f8SChristoph Hellwig } 483f3a5d3f8SChristoph Hellwig 484508c7cb3SChristoph Hellwig return drv; 485f3a5d3f8SChristoph Hellwig } 486f3a5d3f8SChristoph Hellwig 487b50cbabcSMORITA Kazutaka BlockDriver *bdrv_find_protocol(const char *filename) 48884a12e66SChristoph Hellwig { 48984a12e66SChristoph Hellwig BlockDriver *drv1; 49084a12e66SChristoph Hellwig char protocol[128]; 49184a12e66SChristoph Hellwig int len; 49284a12e66SChristoph Hellwig const char *p; 49384a12e66SChristoph Hellwig 49466f82ceeSKevin Wolf /* TODO Drivers without bdrv_file_open must be specified explicitly */ 49566f82ceeSKevin Wolf 49639508e7aSChristoph Hellwig /* 49739508e7aSChristoph Hellwig * XXX(hch): we really should not let host device detection 49839508e7aSChristoph Hellwig * override an explicit protocol specification, but moving this 49939508e7aSChristoph Hellwig * later breaks access to device names with colons in them. 50039508e7aSChristoph Hellwig * Thanks to the brain-dead persistent naming schemes on udev- 50139508e7aSChristoph Hellwig * based Linux systems those actually are quite common. 50239508e7aSChristoph Hellwig */ 50384a12e66SChristoph Hellwig drv1 = find_hdev_driver(filename); 50439508e7aSChristoph Hellwig if (drv1) { 50584a12e66SChristoph Hellwig return drv1; 50684a12e66SChristoph Hellwig } 50739508e7aSChristoph Hellwig 5089e0b22f4SStefan Hajnoczi if (!path_has_protocol(filename)) { 50939508e7aSChristoph Hellwig return bdrv_find_format("file"); 51039508e7aSChristoph Hellwig } 5119e0b22f4SStefan Hajnoczi p = strchr(filename, ':'); 5129e0b22f4SStefan Hajnoczi assert(p != NULL); 51384a12e66SChristoph Hellwig len = p - filename; 51484a12e66SChristoph Hellwig if (len > sizeof(protocol) - 1) 51584a12e66SChristoph Hellwig len = sizeof(protocol) - 1; 51684a12e66SChristoph Hellwig memcpy(protocol, filename, len); 51784a12e66SChristoph Hellwig protocol[len] = '\0'; 51884a12e66SChristoph Hellwig QLIST_FOREACH(drv1, &bdrv_drivers, list) { 51984a12e66SChristoph Hellwig if (drv1->protocol_name && 52084a12e66SChristoph Hellwig !strcmp(drv1->protocol_name, protocol)) { 52184a12e66SChristoph Hellwig return drv1; 52284a12e66SChristoph Hellwig } 52384a12e66SChristoph Hellwig } 52484a12e66SChristoph Hellwig return NULL; 52584a12e66SChristoph Hellwig } 52684a12e66SChristoph Hellwig 527f500a6d3SKevin Wolf static int find_image_format(BlockDriverState *bs, const char *filename, 528f500a6d3SKevin Wolf BlockDriver **pdrv) 529ea2384d3Sbellard { 530f500a6d3SKevin Wolf int score, score_max; 531ea2384d3Sbellard BlockDriver *drv1, *drv; 53283f64091Sbellard uint8_t buf[2048]; 533f500a6d3SKevin Wolf int ret = 0; 534f8ea0b00SNicholas Bellinger 53508a00559SKevin Wolf /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ 5368e895599SPaolo Bonzini if (bs->sg || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) { 537c98ac35dSStefan Weil drv = bdrv_find_format("raw"); 538c98ac35dSStefan Weil if (!drv) { 539c98ac35dSStefan Weil ret = -ENOENT; 540c98ac35dSStefan Weil } 541c98ac35dSStefan Weil *pdrv = drv; 542c98ac35dSStefan Weil return ret; 5431a396859SNicholas A. Bellinger } 544f8ea0b00SNicholas Bellinger 54583f64091Sbellard ret = bdrv_pread(bs, 0, buf, sizeof(buf)); 546ea2384d3Sbellard if (ret < 0) { 547c98ac35dSStefan Weil *pdrv = NULL; 548c98ac35dSStefan Weil return ret; 549ea2384d3Sbellard } 550ea2384d3Sbellard 551ea2384d3Sbellard score_max = 0; 55284a12e66SChristoph Hellwig drv = NULL; 5538a22f02aSStefan Hajnoczi QLIST_FOREACH(drv1, &bdrv_drivers, list) { 55483f64091Sbellard if (drv1->bdrv_probe) { 555ea2384d3Sbellard score = drv1->bdrv_probe(buf, ret, filename); 556ea2384d3Sbellard if (score > score_max) { 557ea2384d3Sbellard score_max = score; 558ea2384d3Sbellard drv = drv1; 559ea2384d3Sbellard } 560ea2384d3Sbellard } 56183f64091Sbellard } 562c98ac35dSStefan Weil if (!drv) { 563c98ac35dSStefan Weil ret = -ENOENT; 564c98ac35dSStefan Weil } 565c98ac35dSStefan Weil *pdrv = drv; 566c98ac35dSStefan Weil return ret; 567ea2384d3Sbellard } 568ea2384d3Sbellard 56951762288SStefan Hajnoczi /** 57051762288SStefan Hajnoczi * Set the current 'total_sectors' value 57151762288SStefan Hajnoczi */ 57251762288SStefan Hajnoczi static int refresh_total_sectors(BlockDriverState *bs, int64_t hint) 57351762288SStefan Hajnoczi { 57451762288SStefan Hajnoczi BlockDriver *drv = bs->drv; 57551762288SStefan Hajnoczi 576396759adSNicholas Bellinger /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */ 577396759adSNicholas Bellinger if (bs->sg) 578396759adSNicholas Bellinger return 0; 579396759adSNicholas Bellinger 58051762288SStefan Hajnoczi /* query actual device if possible, otherwise just trust the hint */ 58151762288SStefan Hajnoczi if (drv->bdrv_getlength) { 58251762288SStefan Hajnoczi int64_t length = drv->bdrv_getlength(bs); 58351762288SStefan Hajnoczi if (length < 0) { 58451762288SStefan Hajnoczi return length; 58551762288SStefan Hajnoczi } 58651762288SStefan Hajnoczi hint = length >> BDRV_SECTOR_BITS; 58751762288SStefan Hajnoczi } 58851762288SStefan Hajnoczi 58951762288SStefan Hajnoczi bs->total_sectors = hint; 59051762288SStefan Hajnoczi return 0; 59151762288SStefan Hajnoczi } 59251762288SStefan Hajnoczi 593c3993cdcSStefan Hajnoczi /** 5949e8f1835SPaolo Bonzini * Set open flags for a given discard mode 5959e8f1835SPaolo Bonzini * 5969e8f1835SPaolo Bonzini * Return 0 on success, -1 if the discard mode was invalid. 5979e8f1835SPaolo Bonzini */ 5989e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags) 5999e8f1835SPaolo Bonzini { 6009e8f1835SPaolo Bonzini *flags &= ~BDRV_O_UNMAP; 6019e8f1835SPaolo Bonzini 6029e8f1835SPaolo Bonzini if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) { 6039e8f1835SPaolo Bonzini /* do nothing */ 6049e8f1835SPaolo Bonzini } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) { 6059e8f1835SPaolo Bonzini *flags |= BDRV_O_UNMAP; 6069e8f1835SPaolo Bonzini } else { 6079e8f1835SPaolo Bonzini return -1; 6089e8f1835SPaolo Bonzini } 6099e8f1835SPaolo Bonzini 6109e8f1835SPaolo Bonzini return 0; 6119e8f1835SPaolo Bonzini } 6129e8f1835SPaolo Bonzini 6139e8f1835SPaolo Bonzini /** 614c3993cdcSStefan Hajnoczi * Set open flags for a given cache mode 615c3993cdcSStefan Hajnoczi * 616c3993cdcSStefan Hajnoczi * Return 0 on success, -1 if the cache mode was invalid. 617c3993cdcSStefan Hajnoczi */ 618c3993cdcSStefan Hajnoczi int bdrv_parse_cache_flags(const char *mode, int *flags) 619c3993cdcSStefan Hajnoczi { 620c3993cdcSStefan Hajnoczi *flags &= ~BDRV_O_CACHE_MASK; 621c3993cdcSStefan Hajnoczi 622c3993cdcSStefan Hajnoczi if (!strcmp(mode, "off") || !strcmp(mode, "none")) { 623c3993cdcSStefan Hajnoczi *flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB; 62492196b2fSStefan Hajnoczi } else if (!strcmp(mode, "directsync")) { 62592196b2fSStefan Hajnoczi *flags |= BDRV_O_NOCACHE; 626c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writeback")) { 627c3993cdcSStefan Hajnoczi *flags |= BDRV_O_CACHE_WB; 628c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "unsafe")) { 629c3993cdcSStefan Hajnoczi *flags |= BDRV_O_CACHE_WB; 630c3993cdcSStefan Hajnoczi *flags |= BDRV_O_NO_FLUSH; 631c3993cdcSStefan Hajnoczi } else if (!strcmp(mode, "writethrough")) { 632c3993cdcSStefan Hajnoczi /* this is the default */ 633c3993cdcSStefan Hajnoczi } else { 634c3993cdcSStefan Hajnoczi return -1; 635c3993cdcSStefan Hajnoczi } 636c3993cdcSStefan Hajnoczi 637c3993cdcSStefan Hajnoczi return 0; 638c3993cdcSStefan Hajnoczi } 639c3993cdcSStefan Hajnoczi 64053fec9d3SStefan Hajnoczi /** 64153fec9d3SStefan Hajnoczi * The copy-on-read flag is actually a reference count so multiple users may 64253fec9d3SStefan Hajnoczi * use the feature without worrying about clobbering its previous state. 64353fec9d3SStefan Hajnoczi * Copy-on-read stays enabled until all users have called to disable it. 64453fec9d3SStefan Hajnoczi */ 64553fec9d3SStefan Hajnoczi void bdrv_enable_copy_on_read(BlockDriverState *bs) 64653fec9d3SStefan Hajnoczi { 64753fec9d3SStefan Hajnoczi bs->copy_on_read++; 64853fec9d3SStefan Hajnoczi } 64953fec9d3SStefan Hajnoczi 65053fec9d3SStefan Hajnoczi void bdrv_disable_copy_on_read(BlockDriverState *bs) 65153fec9d3SStefan Hajnoczi { 65253fec9d3SStefan Hajnoczi assert(bs->copy_on_read > 0); 65353fec9d3SStefan Hajnoczi bs->copy_on_read--; 65453fec9d3SStefan Hajnoczi } 65553fec9d3SStefan Hajnoczi 6567b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags) 6577b272452SKevin Wolf { 6587b272452SKevin Wolf int open_flags = flags | BDRV_O_CACHE_WB; 6597b272452SKevin Wolf 6607b272452SKevin Wolf /* 6617b272452SKevin Wolf * Clear flags that are internal to the block layer before opening the 6627b272452SKevin Wolf * image. 6637b272452SKevin Wolf */ 6647b272452SKevin Wolf open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); 6657b272452SKevin Wolf 6667b272452SKevin Wolf /* 6677b272452SKevin Wolf * Snapshots should be writable. 6687b272452SKevin Wolf */ 6697b272452SKevin Wolf if (bs->is_temporary) { 6707b272452SKevin Wolf open_flags |= BDRV_O_RDWR; 6717b272452SKevin Wolf } 6727b272452SKevin Wolf 6737b272452SKevin Wolf return open_flags; 6747b272452SKevin Wolf } 6757b272452SKevin Wolf 676b6ce07aaSKevin Wolf /* 67757915332SKevin Wolf * Common part for opening disk images and files 678b6ad491aSKevin Wolf * 679b6ad491aSKevin Wolf * Removes all processed options from *options. 68057915332SKevin Wolf */ 681f500a6d3SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BlockDriverState *file, 682035fccdfSKevin Wolf QDict *options, int flags, BlockDriver *drv) 68357915332SKevin Wolf { 68457915332SKevin Wolf int ret, open_flags; 685035fccdfSKevin Wolf const char *filename; 68657915332SKevin Wolf 68757915332SKevin Wolf assert(drv != NULL); 6886405875cSPaolo Bonzini assert(bs->file == NULL); 689707ff828SKevin Wolf assert(options != NULL && bs->options != options); 69057915332SKevin Wolf 69145673671SKevin Wolf if (file != NULL) { 69245673671SKevin Wolf filename = file->filename; 69345673671SKevin Wolf } else { 69445673671SKevin Wolf filename = qdict_get_try_str(options, "filename"); 69545673671SKevin Wolf } 69645673671SKevin Wolf 69745673671SKevin Wolf trace_bdrv_open_common(bs, filename ?: "", flags, drv->format_name); 69828dcee10SStefan Hajnoczi 6995d186eb0SKevin Wolf /* bdrv_open() with directly using a protocol as drv. This layer is already 7005d186eb0SKevin Wolf * opened, so assign it to bs (while file becomes a closed BlockDriverState) 7015d186eb0SKevin Wolf * and return immediately. */ 7025d186eb0SKevin Wolf if (file != NULL && drv->bdrv_file_open) { 7035d186eb0SKevin Wolf bdrv_swap(file, bs); 7045d186eb0SKevin Wolf return 0; 7055d186eb0SKevin Wolf } 7065d186eb0SKevin Wolf 70757915332SKevin Wolf bs->open_flags = flags; 70857915332SKevin Wolf bs->buffer_alignment = 512; 709*b64ec4e4SFam Zheng open_flags = bdrv_open_flags(bs, flags); 710*b64ec4e4SFam Zheng bs->read_only = !(open_flags & BDRV_O_RDWR); 711*b64ec4e4SFam Zheng 712*b64ec4e4SFam Zheng if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) { 713*b64ec4e4SFam Zheng return -ENOTSUP; 714*b64ec4e4SFam Zheng } 71557915332SKevin Wolf 71653fec9d3SStefan Hajnoczi assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */ 717*b64ec4e4SFam Zheng if (!bs->read_only && (flags & BDRV_O_COPY_ON_READ)) { 71853fec9d3SStefan Hajnoczi bdrv_enable_copy_on_read(bs); 71953fec9d3SStefan Hajnoczi } 72053fec9d3SStefan Hajnoczi 721c2ad1b0cSKevin Wolf if (filename != NULL) { 72257915332SKevin Wolf pstrcpy(bs->filename, sizeof(bs->filename), filename); 723c2ad1b0cSKevin Wolf } else { 724c2ad1b0cSKevin Wolf bs->filename[0] = '\0'; 725c2ad1b0cSKevin Wolf } 72657915332SKevin Wolf 72757915332SKevin Wolf bs->drv = drv; 7287267c094SAnthony Liguori bs->opaque = g_malloc0(drv->instance_size); 72957915332SKevin Wolf 73003f541bdSStefan Hajnoczi bs->enable_write_cache = !!(flags & BDRV_O_CACHE_WB); 731e7c63796SStefan Hajnoczi 73266f82ceeSKevin Wolf /* Open the image, either directly or using a protocol */ 73366f82ceeSKevin Wolf if (drv->bdrv_file_open) { 7345d186eb0SKevin Wolf assert(file == NULL); 735c2ad1b0cSKevin Wolf assert(drv->bdrv_parse_filename || filename != NULL); 73656d1b4d2SKevin Wolf ret = drv->bdrv_file_open(bs, options, open_flags); 737f500a6d3SKevin Wolf } else { 7382af5ef70SKevin Wolf if (file == NULL) { 7392af5ef70SKevin Wolf qerror_report(ERROR_CLASS_GENERIC_ERROR, "Can't use '%s' as a " 7402af5ef70SKevin Wolf "block driver for the protocol level", 7412af5ef70SKevin Wolf drv->format_name); 7422af5ef70SKevin Wolf ret = -EINVAL; 7432af5ef70SKevin Wolf goto free_and_fail; 7442af5ef70SKevin Wolf } 745f500a6d3SKevin Wolf assert(file != NULL); 746f500a6d3SKevin Wolf bs->file = file; 747b6ad491aSKevin Wolf ret = drv->bdrv_open(bs, options, open_flags); 74866f82ceeSKevin Wolf } 74966f82ceeSKevin Wolf 75057915332SKevin Wolf if (ret < 0) { 75157915332SKevin Wolf goto free_and_fail; 75257915332SKevin Wolf } 75357915332SKevin Wolf 75451762288SStefan Hajnoczi ret = refresh_total_sectors(bs, bs->total_sectors); 75551762288SStefan Hajnoczi if (ret < 0) { 75651762288SStefan Hajnoczi goto free_and_fail; 75757915332SKevin Wolf } 75851762288SStefan Hajnoczi 75957915332SKevin Wolf #ifndef _WIN32 76057915332SKevin Wolf if (bs->is_temporary) { 761c2ad1b0cSKevin Wolf assert(filename != NULL); 76257915332SKevin Wolf unlink(filename); 76357915332SKevin Wolf } 76457915332SKevin Wolf #endif 76557915332SKevin Wolf return 0; 76657915332SKevin Wolf 76757915332SKevin Wolf free_and_fail: 76866f82ceeSKevin Wolf bs->file = NULL; 7697267c094SAnthony Liguori g_free(bs->opaque); 77057915332SKevin Wolf bs->opaque = NULL; 77157915332SKevin Wolf bs->drv = NULL; 77257915332SKevin Wolf return ret; 77357915332SKevin Wolf } 77457915332SKevin Wolf 77557915332SKevin Wolf /* 776b6ce07aaSKevin Wolf * Opens a file using a protocol (file, host_device, nbd, ...) 777787e4a85SKevin Wolf * 778787e4a85SKevin Wolf * options is a QDict of options to pass to the block drivers, or NULL for an 779787e4a85SKevin Wolf * empty set of options. The reference to the QDict belongs to the block layer 780787e4a85SKevin Wolf * after the call (even on failure), so if the caller intends to reuse the 781787e4a85SKevin Wolf * dictionary, it needs to use QINCREF() before calling bdrv_file_open. 782b6ce07aaSKevin Wolf */ 783787e4a85SKevin Wolf int bdrv_file_open(BlockDriverState **pbs, const char *filename, 784787e4a85SKevin Wolf QDict *options, int flags) 785b338082bSbellard { 78683f64091Sbellard BlockDriverState *bs; 7876db95603SChristoph Hellwig BlockDriver *drv; 788c2ad1b0cSKevin Wolf const char *drvname; 78983f64091Sbellard int ret; 7903b0d4f61Sbellard 791707ff828SKevin Wolf /* NULL means an empty set of options */ 792707ff828SKevin Wolf if (options == NULL) { 793707ff828SKevin Wolf options = qdict_new(); 7943b0d4f61Sbellard } 795707ff828SKevin Wolf 796707ff828SKevin Wolf bs = bdrv_new(""); 797707ff828SKevin Wolf bs->options = options; 798707ff828SKevin Wolf options = qdict_clone_shallow(options); 799707ff828SKevin Wolf 800035fccdfSKevin Wolf /* Fetch the file name from the options QDict if necessary */ 801035fccdfSKevin Wolf if (!filename) { 802035fccdfSKevin Wolf filename = qdict_get_try_str(options, "filename"); 803035fccdfSKevin Wolf } else if (filename && !qdict_haskey(options, "filename")) { 804035fccdfSKevin Wolf qdict_put(options, "filename", qstring_from_str(filename)); 805035fccdfSKevin Wolf } else { 806035fccdfSKevin Wolf qerror_report(ERROR_CLASS_GENERIC_ERROR, "Can't specify 'file' and " 807035fccdfSKevin Wolf "'filename' options at the same time"); 808035fccdfSKevin Wolf ret = -EINVAL; 809035fccdfSKevin Wolf goto fail; 810035fccdfSKevin Wolf } 811035fccdfSKevin Wolf 812c2ad1b0cSKevin Wolf /* Find the right block driver */ 813c2ad1b0cSKevin Wolf drvname = qdict_get_try_str(options, "driver"); 814c2ad1b0cSKevin Wolf if (drvname) { 815*b64ec4e4SFam Zheng drv = bdrv_find_whitelisted_format(drvname, !(flags & BDRV_O_RDWR)); 816c2ad1b0cSKevin Wolf qdict_del(options, "driver"); 817c2ad1b0cSKevin Wolf } else if (filename) { 818c2ad1b0cSKevin Wolf drv = bdrv_find_protocol(filename); 819c2ad1b0cSKevin Wolf } else { 820c2ad1b0cSKevin Wolf qerror_report(ERROR_CLASS_GENERIC_ERROR, 821c2ad1b0cSKevin Wolf "Must specify either driver or file"); 822c2ad1b0cSKevin Wolf drv = NULL; 823c2ad1b0cSKevin Wolf } 824c2ad1b0cSKevin Wolf 825c2ad1b0cSKevin Wolf if (!drv) { 826c2ad1b0cSKevin Wolf ret = -ENOENT; 827c2ad1b0cSKevin Wolf goto fail; 828c2ad1b0cSKevin Wolf } 829c2ad1b0cSKevin Wolf 830c2ad1b0cSKevin Wolf /* Parse the filename and open it */ 831c2ad1b0cSKevin Wolf if (drv->bdrv_parse_filename && filename) { 8326963a30dSKevin Wolf Error *local_err = NULL; 8336963a30dSKevin Wolf drv->bdrv_parse_filename(filename, options, &local_err); 8346963a30dSKevin Wolf if (error_is_set(&local_err)) { 8356963a30dSKevin Wolf qerror_report_err(local_err); 8366963a30dSKevin Wolf error_free(local_err); 8376963a30dSKevin Wolf ret = -EINVAL; 8386963a30dSKevin Wolf goto fail; 8396963a30dSKevin Wolf } 84056d1b4d2SKevin Wolf qdict_del(options, "filename"); 841c2ad1b0cSKevin Wolf } else if (!drv->bdrv_parse_filename && !filename) { 842c2ad1b0cSKevin Wolf qerror_report(ERROR_CLASS_GENERIC_ERROR, 843c2ad1b0cSKevin Wolf "The '%s' block driver requires a file name", 844c2ad1b0cSKevin Wolf drv->format_name); 845c2ad1b0cSKevin Wolf ret = -EINVAL; 846c2ad1b0cSKevin Wolf goto fail; 8476963a30dSKevin Wolf } 8486963a30dSKevin Wolf 849035fccdfSKevin Wolf ret = bdrv_open_common(bs, NULL, options, flags, drv); 850707ff828SKevin Wolf if (ret < 0) { 851707ff828SKevin Wolf goto fail; 852707ff828SKevin Wolf } 853707ff828SKevin Wolf 854707ff828SKevin Wolf /* Check if any unknown options were used */ 855707ff828SKevin Wolf if (qdict_size(options) != 0) { 856707ff828SKevin Wolf const QDictEntry *entry = qdict_first(options); 857707ff828SKevin Wolf qerror_report(ERROR_CLASS_GENERIC_ERROR, "Block protocol '%s' doesn't " 858707ff828SKevin Wolf "support the option '%s'", 859707ff828SKevin Wolf drv->format_name, entry->key); 860707ff828SKevin Wolf ret = -EINVAL; 861707ff828SKevin Wolf goto fail; 862707ff828SKevin Wolf } 863707ff828SKevin Wolf QDECREF(options); 864707ff828SKevin Wolf 86571d0770cSaliguori bs->growable = 1; 86683f64091Sbellard *pbs = bs; 86783f64091Sbellard return 0; 868707ff828SKevin Wolf 869707ff828SKevin Wolf fail: 870707ff828SKevin Wolf QDECREF(options); 871707ff828SKevin Wolf if (!bs->drv) { 872707ff828SKevin Wolf QDECREF(bs->options); 873707ff828SKevin Wolf } 874707ff828SKevin Wolf bdrv_delete(bs); 875707ff828SKevin Wolf return ret; 8763b0d4f61Sbellard } 8773b0d4f61Sbellard 87831ca6d07SKevin Wolf /* 87931ca6d07SKevin Wolf * Opens the backing file for a BlockDriverState if not yet open 88031ca6d07SKevin Wolf * 88131ca6d07SKevin Wolf * options is a QDict of options to pass to the block drivers, or NULL for an 88231ca6d07SKevin Wolf * empty set of options. The reference to the QDict is transferred to this 88331ca6d07SKevin Wolf * function (even on failure), so if the caller intends to reuse the dictionary, 88431ca6d07SKevin Wolf * it needs to use QINCREF() before calling bdrv_file_open. 88531ca6d07SKevin Wolf */ 88631ca6d07SKevin Wolf int bdrv_open_backing_file(BlockDriverState *bs, QDict *options) 8879156df12SPaolo Bonzini { 8889156df12SPaolo Bonzini char backing_filename[PATH_MAX]; 8899156df12SPaolo Bonzini int back_flags, ret; 8909156df12SPaolo Bonzini BlockDriver *back_drv = NULL; 8919156df12SPaolo Bonzini 8929156df12SPaolo Bonzini if (bs->backing_hd != NULL) { 89331ca6d07SKevin Wolf QDECREF(options); 8949156df12SPaolo Bonzini return 0; 8959156df12SPaolo Bonzini } 8969156df12SPaolo Bonzini 89731ca6d07SKevin Wolf /* NULL means an empty set of options */ 89831ca6d07SKevin Wolf if (options == NULL) { 89931ca6d07SKevin Wolf options = qdict_new(); 90031ca6d07SKevin Wolf } 90131ca6d07SKevin Wolf 9029156df12SPaolo Bonzini bs->open_flags &= ~BDRV_O_NO_BACKING; 9031cb6f506SKevin Wolf if (qdict_haskey(options, "file.filename")) { 9041cb6f506SKevin Wolf backing_filename[0] = '\0'; 9051cb6f506SKevin Wolf } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) { 90631ca6d07SKevin Wolf QDECREF(options); 9079156df12SPaolo Bonzini return 0; 9089156df12SPaolo Bonzini } 9099156df12SPaolo Bonzini 9109156df12SPaolo Bonzini bs->backing_hd = bdrv_new(""); 9119156df12SPaolo Bonzini bdrv_get_full_backing_filename(bs, backing_filename, 9129156df12SPaolo Bonzini sizeof(backing_filename)); 9139156df12SPaolo Bonzini 9149156df12SPaolo Bonzini if (bs->backing_format[0] != '\0') { 9159156df12SPaolo Bonzini back_drv = bdrv_find_format(bs->backing_format); 9169156df12SPaolo Bonzini } 9179156df12SPaolo Bonzini 9189156df12SPaolo Bonzini /* backing files always opened read-only */ 9199156df12SPaolo Bonzini back_flags = bs->open_flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT); 9209156df12SPaolo Bonzini 92131ca6d07SKevin Wolf ret = bdrv_open(bs->backing_hd, 92231ca6d07SKevin Wolf *backing_filename ? backing_filename : NULL, options, 923de9c0cecSKevin Wolf back_flags, back_drv); 9249156df12SPaolo Bonzini if (ret < 0) { 9259156df12SPaolo Bonzini bdrv_delete(bs->backing_hd); 9269156df12SPaolo Bonzini bs->backing_hd = NULL; 9279156df12SPaolo Bonzini bs->open_flags |= BDRV_O_NO_BACKING; 9289156df12SPaolo Bonzini return ret; 9299156df12SPaolo Bonzini } 9309156df12SPaolo Bonzini return 0; 9319156df12SPaolo Bonzini } 9329156df12SPaolo Bonzini 933707ff828SKevin Wolf static void extract_subqdict(QDict *src, QDict **dst, const char *start) 934707ff828SKevin Wolf { 935707ff828SKevin Wolf const QDictEntry *entry, *next; 936707ff828SKevin Wolf const char *p; 937707ff828SKevin Wolf 938707ff828SKevin Wolf *dst = qdict_new(); 939707ff828SKevin Wolf entry = qdict_first(src); 940707ff828SKevin Wolf 941707ff828SKevin Wolf while (entry != NULL) { 942707ff828SKevin Wolf next = qdict_next(src, entry); 943707ff828SKevin Wolf if (strstart(entry->key, start, &p)) { 944707ff828SKevin Wolf qobject_incref(entry->value); 945707ff828SKevin Wolf qdict_put_obj(*dst, p, entry->value); 946707ff828SKevin Wolf qdict_del(src, entry->key); 947707ff828SKevin Wolf } 948707ff828SKevin Wolf entry = next; 949707ff828SKevin Wolf } 950707ff828SKevin Wolf } 951707ff828SKevin Wolf 952b6ce07aaSKevin Wolf /* 953b6ce07aaSKevin Wolf * Opens a disk image (raw, qcow2, vmdk, ...) 954de9c0cecSKevin Wolf * 955de9c0cecSKevin Wolf * options is a QDict of options to pass to the block drivers, or NULL for an 956de9c0cecSKevin Wolf * empty set of options. The reference to the QDict belongs to the block layer 957de9c0cecSKevin Wolf * after the call (even on failure), so if the caller intends to reuse the 958de9c0cecSKevin Wolf * dictionary, it needs to use QINCREF() before calling bdrv_open. 959b6ce07aaSKevin Wolf */ 960de9c0cecSKevin Wolf int bdrv_open(BlockDriverState *bs, const char *filename, QDict *options, 961de9c0cecSKevin Wolf int flags, BlockDriver *drv) 962ea2384d3Sbellard { 963b6ce07aaSKevin Wolf int ret; 96489c9bc3dSStefan Weil /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */ 96589c9bc3dSStefan Weil char tmp_filename[PATH_MAX + 1]; 966f500a6d3SKevin Wolf BlockDriverState *file = NULL; 967707ff828SKevin Wolf QDict *file_options = NULL; 96833e3963eSbellard 969de9c0cecSKevin Wolf /* NULL means an empty set of options */ 970de9c0cecSKevin Wolf if (options == NULL) { 971de9c0cecSKevin Wolf options = qdict_new(); 972de9c0cecSKevin Wolf } 973de9c0cecSKevin Wolf 974de9c0cecSKevin Wolf bs->options = options; 975b6ad491aSKevin Wolf options = qdict_clone_shallow(options); 976de9c0cecSKevin Wolf 977de9c0cecSKevin Wolf /* For snapshot=on, create a temporary qcow2 overlay */ 97883f64091Sbellard if (flags & BDRV_O_SNAPSHOT) { 979ea2384d3Sbellard BlockDriverState *bs1; 980ea2384d3Sbellard int64_t total_size; 98191a073a9SKevin Wolf BlockDriver *bdrv_qcow2; 98208b392e1SKevin Wolf QEMUOptionParameter *create_options; 983b6ce07aaSKevin Wolf char backing_filename[PATH_MAX]; 98433e3963eSbellard 985c2ad1b0cSKevin Wolf if (qdict_size(options) != 0) { 986c2ad1b0cSKevin Wolf error_report("Can't use snapshot=on with driver-specific options"); 987c2ad1b0cSKevin Wolf ret = -EINVAL; 988c2ad1b0cSKevin Wolf goto fail; 989c2ad1b0cSKevin Wolf } 990c2ad1b0cSKevin Wolf assert(filename != NULL); 991c2ad1b0cSKevin Wolf 992ea2384d3Sbellard /* if snapshot, we create a temporary backing file and open it 993ea2384d3Sbellard instead of opening 'filename' directly */ 994ea2384d3Sbellard 995ea2384d3Sbellard /* if there is a backing file, use it */ 996ea2384d3Sbellard bs1 = bdrv_new(""); 997de9c0cecSKevin Wolf ret = bdrv_open(bs1, filename, NULL, 0, drv); 99851d7c00cSaliguori if (ret < 0) { 999ea2384d3Sbellard bdrv_delete(bs1); 1000de9c0cecSKevin Wolf goto fail; 1001ea2384d3Sbellard } 10023e82990bSJes Sorensen total_size = bdrv_getlength(bs1) & BDRV_SECTOR_MASK; 10037c96d46eSaliguori 1004ea2384d3Sbellard bdrv_delete(bs1); 1005ea2384d3Sbellard 1006eba25057SJim Meyering ret = get_tmp_filename(tmp_filename, sizeof(tmp_filename)); 1007eba25057SJim Meyering if (ret < 0) { 1008de9c0cecSKevin Wolf goto fail; 1009eba25057SJim Meyering } 10107c96d46eSaliguori 10117c96d46eSaliguori /* Real path is meaningless for protocols */ 10124d70655bSStefan Hajnoczi if (path_has_protocol(filename)) { 10137c96d46eSaliguori snprintf(backing_filename, sizeof(backing_filename), 10147c96d46eSaliguori "%s", filename); 1015de9c0cecSKevin Wolf } else if (!realpath(filename, backing_filename)) { 1016de9c0cecSKevin Wolf ret = -errno; 1017de9c0cecSKevin Wolf goto fail; 1018de9c0cecSKevin Wolf } 10197c96d46eSaliguori 102091a073a9SKevin Wolf bdrv_qcow2 = bdrv_find_format("qcow2"); 102108b392e1SKevin Wolf create_options = parse_option_parameters("", bdrv_qcow2->create_options, 102208b392e1SKevin Wolf NULL); 102391a073a9SKevin Wolf 102408b392e1SKevin Wolf set_option_parameter_int(create_options, BLOCK_OPT_SIZE, total_size); 102508b392e1SKevin Wolf set_option_parameter(create_options, BLOCK_OPT_BACKING_FILE, 102608b392e1SKevin Wolf backing_filename); 102791a073a9SKevin Wolf if (drv) { 102808b392e1SKevin Wolf set_option_parameter(create_options, BLOCK_OPT_BACKING_FMT, 102991a073a9SKevin Wolf drv->format_name); 103091a073a9SKevin Wolf } 103191a073a9SKevin Wolf 103208b392e1SKevin Wolf ret = bdrv_create(bdrv_qcow2, tmp_filename, create_options); 103308b392e1SKevin Wolf free_option_parameters(create_options); 103451d7c00cSaliguori if (ret < 0) { 1035de9c0cecSKevin Wolf goto fail; 1036ea2384d3Sbellard } 103791a073a9SKevin Wolf 1038ea2384d3Sbellard filename = tmp_filename; 103991a073a9SKevin Wolf drv = bdrv_qcow2; 1040ea2384d3Sbellard bs->is_temporary = 1; 1041ea2384d3Sbellard } 1042ea2384d3Sbellard 1043f500a6d3SKevin Wolf /* Open image file without format layer */ 1044be028adcSJeff Cody if (flags & BDRV_O_RDWR) { 1045be028adcSJeff Cody flags |= BDRV_O_ALLOW_RDWR; 1046be028adcSJeff Cody } 1047be028adcSJeff Cody 1048707ff828SKevin Wolf extract_subqdict(options, &file_options, "file."); 1049707ff828SKevin Wolf 1050707ff828SKevin Wolf ret = bdrv_file_open(&file, filename, file_options, 1051707ff828SKevin Wolf bdrv_open_flags(bs, flags)); 1052f500a6d3SKevin Wolf if (ret < 0) { 1053de9c0cecSKevin Wolf goto fail; 1054f500a6d3SKevin Wolf } 1055f500a6d3SKevin Wolf 1056f500a6d3SKevin Wolf /* Find the right image format driver */ 1057f500a6d3SKevin Wolf if (!drv) { 1058f500a6d3SKevin Wolf ret = find_image_format(file, filename, &drv); 1059f500a6d3SKevin Wolf } 1060f500a6d3SKevin Wolf 1061f500a6d3SKevin Wolf if (!drv) { 1062f500a6d3SKevin Wolf goto unlink_and_fail; 1063f500a6d3SKevin Wolf } 1064f500a6d3SKevin Wolf 1065b6ce07aaSKevin Wolf /* Open the image */ 1066035fccdfSKevin Wolf ret = bdrv_open_common(bs, file, options, flags, drv); 1067b6ce07aaSKevin Wolf if (ret < 0) { 10686987307cSChristoph Hellwig goto unlink_and_fail; 10696987307cSChristoph Hellwig } 10706987307cSChristoph Hellwig 1071f500a6d3SKevin Wolf if (bs->file != file) { 1072f500a6d3SKevin Wolf bdrv_delete(file); 1073f500a6d3SKevin Wolf file = NULL; 1074f500a6d3SKevin Wolf } 1075f500a6d3SKevin Wolf 1076b6ce07aaSKevin Wolf /* If there is a backing file, use it */ 10779156df12SPaolo Bonzini if ((flags & BDRV_O_NO_BACKING) == 0) { 107831ca6d07SKevin Wolf QDict *backing_options; 107931ca6d07SKevin Wolf 108031ca6d07SKevin Wolf extract_subqdict(options, &backing_options, "backing."); 108131ca6d07SKevin Wolf ret = bdrv_open_backing_file(bs, backing_options); 1082b6ce07aaSKevin Wolf if (ret < 0) { 1083b6ad491aSKevin Wolf goto close_and_fail; 1084b6ce07aaSKevin Wolf } 1085b6ce07aaSKevin Wolf } 1086b6ce07aaSKevin Wolf 1087b6ad491aSKevin Wolf /* Check if any unknown options were used */ 1088b6ad491aSKevin Wolf if (qdict_size(options) != 0) { 1089b6ad491aSKevin Wolf const QDictEntry *entry = qdict_first(options); 1090b6ad491aSKevin Wolf qerror_report(ERROR_CLASS_GENERIC_ERROR, "Block format '%s' used by " 1091b6ad491aSKevin Wolf "device '%s' doesn't support the option '%s'", 1092b6ad491aSKevin Wolf drv->format_name, bs->device_name, entry->key); 1093b6ad491aSKevin Wolf 1094b6ad491aSKevin Wolf ret = -EINVAL; 1095b6ad491aSKevin Wolf goto close_and_fail; 1096b6ad491aSKevin Wolf } 1097b6ad491aSKevin Wolf QDECREF(options); 1098b6ad491aSKevin Wolf 1099b6ce07aaSKevin Wolf if (!bdrv_key_required(bs)) { 11007d4b4ba5SMarkus Armbruster bdrv_dev_change_media_cb(bs, true); 1101b6ce07aaSKevin Wolf } 1102b6ce07aaSKevin Wolf 110398f90dbaSZhi Yong Wu /* throttling disk I/O limits */ 110498f90dbaSZhi Yong Wu if (bs->io_limits_enabled) { 110598f90dbaSZhi Yong Wu bdrv_io_limits_enable(bs); 110698f90dbaSZhi Yong Wu } 110798f90dbaSZhi Yong Wu 1108b6ce07aaSKevin Wolf return 0; 1109b6ce07aaSKevin Wolf 1110b6ce07aaSKevin Wolf unlink_and_fail: 1111f500a6d3SKevin Wolf if (file != NULL) { 1112f500a6d3SKevin Wolf bdrv_delete(file); 1113f500a6d3SKevin Wolf } 1114b6ce07aaSKevin Wolf if (bs->is_temporary) { 1115b6ce07aaSKevin Wolf unlink(filename); 1116b6ce07aaSKevin Wolf } 1117de9c0cecSKevin Wolf fail: 1118de9c0cecSKevin Wolf QDECREF(bs->options); 1119b6ad491aSKevin Wolf QDECREF(options); 1120de9c0cecSKevin Wolf bs->options = NULL; 1121b6ad491aSKevin Wolf return ret; 1122de9c0cecSKevin Wolf 1123b6ad491aSKevin Wolf close_and_fail: 1124b6ad491aSKevin Wolf bdrv_close(bs); 1125b6ad491aSKevin Wolf QDECREF(options); 1126b6ce07aaSKevin Wolf return ret; 1127b6ce07aaSKevin Wolf } 1128b6ce07aaSKevin Wolf 1129e971aa12SJeff Cody typedef struct BlockReopenQueueEntry { 1130e971aa12SJeff Cody bool prepared; 1131e971aa12SJeff Cody BDRVReopenState state; 1132e971aa12SJeff Cody QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry; 1133e971aa12SJeff Cody } BlockReopenQueueEntry; 1134e971aa12SJeff Cody 1135e971aa12SJeff Cody /* 1136e971aa12SJeff Cody * Adds a BlockDriverState to a simple queue for an atomic, transactional 1137e971aa12SJeff Cody * reopen of multiple devices. 1138e971aa12SJeff Cody * 1139e971aa12SJeff Cody * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT 1140e971aa12SJeff Cody * already performed, or alternatively may be NULL a new BlockReopenQueue will 1141e971aa12SJeff Cody * be created and initialized. This newly created BlockReopenQueue should be 1142e971aa12SJeff Cody * passed back in for subsequent calls that are intended to be of the same 1143e971aa12SJeff Cody * atomic 'set'. 1144e971aa12SJeff Cody * 1145e971aa12SJeff Cody * bs is the BlockDriverState to add to the reopen queue. 1146e971aa12SJeff Cody * 1147e971aa12SJeff Cody * flags contains the open flags for the associated bs 1148e971aa12SJeff Cody * 1149e971aa12SJeff Cody * returns a pointer to bs_queue, which is either the newly allocated 1150e971aa12SJeff Cody * bs_queue, or the existing bs_queue being used. 1151e971aa12SJeff Cody * 1152e971aa12SJeff Cody */ 1153e971aa12SJeff Cody BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, 1154e971aa12SJeff Cody BlockDriverState *bs, int flags) 1155e971aa12SJeff Cody { 1156e971aa12SJeff Cody assert(bs != NULL); 1157e971aa12SJeff Cody 1158e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry; 1159e971aa12SJeff Cody if (bs_queue == NULL) { 1160e971aa12SJeff Cody bs_queue = g_new0(BlockReopenQueue, 1); 1161e971aa12SJeff Cody QSIMPLEQ_INIT(bs_queue); 1162e971aa12SJeff Cody } 1163e971aa12SJeff Cody 1164e971aa12SJeff Cody if (bs->file) { 1165e971aa12SJeff Cody bdrv_reopen_queue(bs_queue, bs->file, flags); 1166e971aa12SJeff Cody } 1167e971aa12SJeff Cody 1168e971aa12SJeff Cody bs_entry = g_new0(BlockReopenQueueEntry, 1); 1169e971aa12SJeff Cody QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry); 1170e971aa12SJeff Cody 1171e971aa12SJeff Cody bs_entry->state.bs = bs; 1172e971aa12SJeff Cody bs_entry->state.flags = flags; 1173e971aa12SJeff Cody 1174e971aa12SJeff Cody return bs_queue; 1175e971aa12SJeff Cody } 1176e971aa12SJeff Cody 1177e971aa12SJeff Cody /* 1178e971aa12SJeff Cody * Reopen multiple BlockDriverStates atomically & transactionally. 1179e971aa12SJeff Cody * 1180e971aa12SJeff Cody * The queue passed in (bs_queue) must have been built up previous 1181e971aa12SJeff Cody * via bdrv_reopen_queue(). 1182e971aa12SJeff Cody * 1183e971aa12SJeff Cody * Reopens all BDS specified in the queue, with the appropriate 1184e971aa12SJeff Cody * flags. All devices are prepared for reopen, and failure of any 1185e971aa12SJeff Cody * device will cause all device changes to be abandonded, and intermediate 1186e971aa12SJeff Cody * data cleaned up. 1187e971aa12SJeff Cody * 1188e971aa12SJeff Cody * If all devices prepare successfully, then the changes are committed 1189e971aa12SJeff Cody * to all devices. 1190e971aa12SJeff Cody * 1191e971aa12SJeff Cody */ 1192e971aa12SJeff Cody int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp) 1193e971aa12SJeff Cody { 1194e971aa12SJeff Cody int ret = -1; 1195e971aa12SJeff Cody BlockReopenQueueEntry *bs_entry, *next; 1196e971aa12SJeff Cody Error *local_err = NULL; 1197e971aa12SJeff Cody 1198e971aa12SJeff Cody assert(bs_queue != NULL); 1199e971aa12SJeff Cody 1200e971aa12SJeff Cody bdrv_drain_all(); 1201e971aa12SJeff Cody 1202e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 1203e971aa12SJeff Cody if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) { 1204e971aa12SJeff Cody error_propagate(errp, local_err); 1205e971aa12SJeff Cody goto cleanup; 1206e971aa12SJeff Cody } 1207e971aa12SJeff Cody bs_entry->prepared = true; 1208e971aa12SJeff Cody } 1209e971aa12SJeff Cody 1210e971aa12SJeff Cody /* If we reach this point, we have success and just need to apply the 1211e971aa12SJeff Cody * changes 1212e971aa12SJeff Cody */ 1213e971aa12SJeff Cody QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) { 1214e971aa12SJeff Cody bdrv_reopen_commit(&bs_entry->state); 1215e971aa12SJeff Cody } 1216e971aa12SJeff Cody 1217e971aa12SJeff Cody ret = 0; 1218e971aa12SJeff Cody 1219e971aa12SJeff Cody cleanup: 1220e971aa12SJeff Cody QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) { 1221e971aa12SJeff Cody if (ret && bs_entry->prepared) { 1222e971aa12SJeff Cody bdrv_reopen_abort(&bs_entry->state); 1223e971aa12SJeff Cody } 1224e971aa12SJeff Cody g_free(bs_entry); 1225e971aa12SJeff Cody } 1226e971aa12SJeff Cody g_free(bs_queue); 1227e971aa12SJeff Cody return ret; 1228e971aa12SJeff Cody } 1229e971aa12SJeff Cody 1230e971aa12SJeff Cody 1231e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */ 1232e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp) 1233e971aa12SJeff Cody { 1234e971aa12SJeff Cody int ret = -1; 1235e971aa12SJeff Cody Error *local_err = NULL; 1236e971aa12SJeff Cody BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, bdrv_flags); 1237e971aa12SJeff Cody 1238e971aa12SJeff Cody ret = bdrv_reopen_multiple(queue, &local_err); 1239e971aa12SJeff Cody if (local_err != NULL) { 1240e971aa12SJeff Cody error_propagate(errp, local_err); 1241e971aa12SJeff Cody } 1242e971aa12SJeff Cody return ret; 1243e971aa12SJeff Cody } 1244e971aa12SJeff Cody 1245e971aa12SJeff Cody 1246e971aa12SJeff Cody /* 1247e971aa12SJeff Cody * Prepares a BlockDriverState for reopen. All changes are staged in the 1248e971aa12SJeff Cody * 'opaque' field of the BDRVReopenState, which is used and allocated by 1249e971aa12SJeff Cody * the block driver layer .bdrv_reopen_prepare() 1250e971aa12SJeff Cody * 1251e971aa12SJeff Cody * bs is the BlockDriverState to reopen 1252e971aa12SJeff Cody * flags are the new open flags 1253e971aa12SJeff Cody * queue is the reopen queue 1254e971aa12SJeff Cody * 1255e971aa12SJeff Cody * Returns 0 on success, non-zero on error. On error errp will be set 1256e971aa12SJeff Cody * as well. 1257e971aa12SJeff Cody * 1258e971aa12SJeff Cody * On failure, bdrv_reopen_abort() will be called to clean up any data. 1259e971aa12SJeff Cody * It is the responsibility of the caller to then call the abort() or 1260e971aa12SJeff Cody * commit() for any other BDS that have been left in a prepare() state 1261e971aa12SJeff Cody * 1262e971aa12SJeff Cody */ 1263e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue, 1264e971aa12SJeff Cody Error **errp) 1265e971aa12SJeff Cody { 1266e971aa12SJeff Cody int ret = -1; 1267e971aa12SJeff Cody Error *local_err = NULL; 1268e971aa12SJeff Cody BlockDriver *drv; 1269e971aa12SJeff Cody 1270e971aa12SJeff Cody assert(reopen_state != NULL); 1271e971aa12SJeff Cody assert(reopen_state->bs->drv != NULL); 1272e971aa12SJeff Cody drv = reopen_state->bs->drv; 1273e971aa12SJeff Cody 1274e971aa12SJeff Cody /* if we are to stay read-only, do not allow permission change 1275e971aa12SJeff Cody * to r/w */ 1276e971aa12SJeff Cody if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) && 1277e971aa12SJeff Cody reopen_state->flags & BDRV_O_RDWR) { 1278e971aa12SJeff Cody error_set(errp, QERR_DEVICE_IS_READ_ONLY, 1279e971aa12SJeff Cody reopen_state->bs->device_name); 1280e971aa12SJeff Cody goto error; 1281e971aa12SJeff Cody } 1282e971aa12SJeff Cody 1283e971aa12SJeff Cody 1284e971aa12SJeff Cody ret = bdrv_flush(reopen_state->bs); 1285e971aa12SJeff Cody if (ret) { 1286e971aa12SJeff Cody error_set(errp, ERROR_CLASS_GENERIC_ERROR, "Error (%s) flushing drive", 1287e971aa12SJeff Cody strerror(-ret)); 1288e971aa12SJeff Cody goto error; 1289e971aa12SJeff Cody } 1290e971aa12SJeff Cody 1291e971aa12SJeff Cody if (drv->bdrv_reopen_prepare) { 1292e971aa12SJeff Cody ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err); 1293e971aa12SJeff Cody if (ret) { 1294e971aa12SJeff Cody if (local_err != NULL) { 1295e971aa12SJeff Cody error_propagate(errp, local_err); 1296e971aa12SJeff Cody } else { 1297e971aa12SJeff Cody error_set(errp, QERR_OPEN_FILE_FAILED, 1298e971aa12SJeff Cody reopen_state->bs->filename); 1299e971aa12SJeff Cody } 1300e971aa12SJeff Cody goto error; 1301e971aa12SJeff Cody } 1302e971aa12SJeff Cody } else { 1303e971aa12SJeff Cody /* It is currently mandatory to have a bdrv_reopen_prepare() 1304e971aa12SJeff Cody * handler for each supported drv. */ 1305e971aa12SJeff Cody error_set(errp, QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED, 1306e971aa12SJeff Cody drv->format_name, reopen_state->bs->device_name, 1307e971aa12SJeff Cody "reopening of file"); 1308e971aa12SJeff Cody ret = -1; 1309e971aa12SJeff Cody goto error; 1310e971aa12SJeff Cody } 1311e971aa12SJeff Cody 1312e971aa12SJeff Cody ret = 0; 1313e971aa12SJeff Cody 1314e971aa12SJeff Cody error: 1315e971aa12SJeff Cody return ret; 1316e971aa12SJeff Cody } 1317e971aa12SJeff Cody 1318e971aa12SJeff Cody /* 1319e971aa12SJeff Cody * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and 1320e971aa12SJeff Cody * makes them final by swapping the staging BlockDriverState contents into 1321e971aa12SJeff Cody * the active BlockDriverState contents. 1322e971aa12SJeff Cody */ 1323e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state) 1324e971aa12SJeff Cody { 1325e971aa12SJeff Cody BlockDriver *drv; 1326e971aa12SJeff Cody 1327e971aa12SJeff Cody assert(reopen_state != NULL); 1328e971aa12SJeff Cody drv = reopen_state->bs->drv; 1329e971aa12SJeff Cody assert(drv != NULL); 1330e971aa12SJeff Cody 1331e971aa12SJeff Cody /* If there are any driver level actions to take */ 1332e971aa12SJeff Cody if (drv->bdrv_reopen_commit) { 1333e971aa12SJeff Cody drv->bdrv_reopen_commit(reopen_state); 1334e971aa12SJeff Cody } 1335e971aa12SJeff Cody 1336e971aa12SJeff Cody /* set BDS specific flags now */ 1337e971aa12SJeff Cody reopen_state->bs->open_flags = reopen_state->flags; 1338e971aa12SJeff Cody reopen_state->bs->enable_write_cache = !!(reopen_state->flags & 1339e971aa12SJeff Cody BDRV_O_CACHE_WB); 1340e971aa12SJeff Cody reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR); 1341e971aa12SJeff Cody } 1342e971aa12SJeff Cody 1343e971aa12SJeff Cody /* 1344e971aa12SJeff Cody * Abort the reopen, and delete and free the staged changes in 1345e971aa12SJeff Cody * reopen_state 1346e971aa12SJeff Cody */ 1347e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state) 1348e971aa12SJeff Cody { 1349e971aa12SJeff Cody BlockDriver *drv; 1350e971aa12SJeff Cody 1351e971aa12SJeff Cody assert(reopen_state != NULL); 1352e971aa12SJeff Cody drv = reopen_state->bs->drv; 1353e971aa12SJeff Cody assert(drv != NULL); 1354e971aa12SJeff Cody 1355e971aa12SJeff Cody if (drv->bdrv_reopen_abort) { 1356e971aa12SJeff Cody drv->bdrv_reopen_abort(reopen_state); 1357e971aa12SJeff Cody } 1358e971aa12SJeff Cody } 1359e971aa12SJeff Cody 1360e971aa12SJeff Cody 1361fc01f7e7Sbellard void bdrv_close(BlockDriverState *bs) 1362fc01f7e7Sbellard { 136380ccf93bSLiu Yuan bdrv_flush(bs); 13643e914655SPaolo Bonzini if (bs->job) { 13653e914655SPaolo Bonzini block_job_cancel_sync(bs->job); 13663e914655SPaolo Bonzini } 13677094f12fSKevin Wolf bdrv_drain_all(); 1368d7d512f6SPaolo Bonzini notifier_list_notify(&bs->close_notifiers, bs); 13697094f12fSKevin Wolf 13703cbc002cSPaolo Bonzini if (bs->drv) { 1371f9092b10SMarkus Armbruster if (bs == bs_snapshots) { 1372f9092b10SMarkus Armbruster bs_snapshots = NULL; 1373f9092b10SMarkus Armbruster } 1374557df6acSStefan Hajnoczi if (bs->backing_hd) { 1375ea2384d3Sbellard bdrv_delete(bs->backing_hd); 1376557df6acSStefan Hajnoczi bs->backing_hd = NULL; 1377557df6acSStefan Hajnoczi } 1378ea2384d3Sbellard bs->drv->bdrv_close(bs); 13797267c094SAnthony Liguori g_free(bs->opaque); 1380ea2384d3Sbellard #ifdef _WIN32 1381ea2384d3Sbellard if (bs->is_temporary) { 1382ea2384d3Sbellard unlink(bs->filename); 1383ea2384d3Sbellard } 138467b915a5Sbellard #endif 1385ea2384d3Sbellard bs->opaque = NULL; 1386ea2384d3Sbellard bs->drv = NULL; 138753fec9d3SStefan Hajnoczi bs->copy_on_read = 0; 1388a275fa42SPaolo Bonzini bs->backing_file[0] = '\0'; 1389a275fa42SPaolo Bonzini bs->backing_format[0] = '\0'; 13906405875cSPaolo Bonzini bs->total_sectors = 0; 13916405875cSPaolo Bonzini bs->encrypted = 0; 13926405875cSPaolo Bonzini bs->valid_key = 0; 13936405875cSPaolo Bonzini bs->sg = 0; 13946405875cSPaolo Bonzini bs->growable = 0; 1395de9c0cecSKevin Wolf QDECREF(bs->options); 1396de9c0cecSKevin Wolf bs->options = NULL; 1397b338082bSbellard 139866f82ceeSKevin Wolf if (bs->file != NULL) { 13990ac9377dSPaolo Bonzini bdrv_delete(bs->file); 14000ac9377dSPaolo Bonzini bs->file = NULL; 140166f82ceeSKevin Wolf } 14029ca11154SPavel Hrdina } 140366f82ceeSKevin Wolf 14047d4b4ba5SMarkus Armbruster bdrv_dev_change_media_cb(bs, false); 140598f90dbaSZhi Yong Wu 140698f90dbaSZhi Yong Wu /*throttling disk I/O limits*/ 140798f90dbaSZhi Yong Wu if (bs->io_limits_enabled) { 140898f90dbaSZhi Yong Wu bdrv_io_limits_disable(bs); 140998f90dbaSZhi Yong Wu } 1410b338082bSbellard } 1411b338082bSbellard 14122bc93fedSMORITA Kazutaka void bdrv_close_all(void) 14132bc93fedSMORITA Kazutaka { 14142bc93fedSMORITA Kazutaka BlockDriverState *bs; 14152bc93fedSMORITA Kazutaka 14162bc93fedSMORITA Kazutaka QTAILQ_FOREACH(bs, &bdrv_states, list) { 14172bc93fedSMORITA Kazutaka bdrv_close(bs); 14182bc93fedSMORITA Kazutaka } 14192bc93fedSMORITA Kazutaka } 14202bc93fedSMORITA Kazutaka 1421922453bcSStefan Hajnoczi /* 1422922453bcSStefan Hajnoczi * Wait for pending requests to complete across all BlockDriverStates 1423922453bcSStefan Hajnoczi * 1424922453bcSStefan Hajnoczi * This function does not flush data to disk, use bdrv_flush_all() for that 1425922453bcSStefan Hajnoczi * after calling this function. 14264c355d53SZhi Yong Wu * 14274c355d53SZhi Yong Wu * Note that completion of an asynchronous I/O operation can trigger any 14284c355d53SZhi Yong Wu * number of other I/O operations on other devices---for example a coroutine 14294c355d53SZhi Yong Wu * can be arbitrarily complex and a constant flow of I/O can come until the 14304c355d53SZhi Yong Wu * coroutine is complete. Because of this, it is not possible to have a 14314c355d53SZhi Yong Wu * function to drain a single device's I/O queue. 1432922453bcSStefan Hajnoczi */ 1433922453bcSStefan Hajnoczi void bdrv_drain_all(void) 1434922453bcSStefan Hajnoczi { 1435922453bcSStefan Hajnoczi BlockDriverState *bs; 14364c355d53SZhi Yong Wu bool busy; 1437922453bcSStefan Hajnoczi 14384c355d53SZhi Yong Wu do { 14394c355d53SZhi Yong Wu busy = qemu_aio_wait(); 14404c355d53SZhi Yong Wu 14414c355d53SZhi Yong Wu /* FIXME: We do not have timer support here, so this is effectively 14424c355d53SZhi Yong Wu * a busy wait. 14434c355d53SZhi Yong Wu */ 14444c355d53SZhi Yong Wu QTAILQ_FOREACH(bs, &bdrv_states, list) { 14454c355d53SZhi Yong Wu if (!qemu_co_queue_empty(&bs->throttled_reqs)) { 14464c355d53SZhi Yong Wu qemu_co_queue_restart_all(&bs->throttled_reqs); 14474c355d53SZhi Yong Wu busy = true; 14484c355d53SZhi Yong Wu } 14494c355d53SZhi Yong Wu } 14504c355d53SZhi Yong Wu } while (busy); 1451922453bcSStefan Hajnoczi 1452922453bcSStefan Hajnoczi /* If requests are still pending there is a bug somewhere */ 1453922453bcSStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 1454922453bcSStefan Hajnoczi assert(QLIST_EMPTY(&bs->tracked_requests)); 1455922453bcSStefan Hajnoczi assert(qemu_co_queue_empty(&bs->throttled_reqs)); 1456922453bcSStefan Hajnoczi } 1457922453bcSStefan Hajnoczi } 1458922453bcSStefan Hajnoczi 1459d22b2f41SRyan Harper /* make a BlockDriverState anonymous by removing from bdrv_state list. 1460d22b2f41SRyan Harper Also, NULL terminate the device_name to prevent double remove */ 1461d22b2f41SRyan Harper void bdrv_make_anon(BlockDriverState *bs) 1462d22b2f41SRyan Harper { 1463d22b2f41SRyan Harper if (bs->device_name[0] != '\0') { 1464d22b2f41SRyan Harper QTAILQ_REMOVE(&bdrv_states, bs, list); 1465d22b2f41SRyan Harper } 1466d22b2f41SRyan Harper bs->device_name[0] = '\0'; 1467d22b2f41SRyan Harper } 1468d22b2f41SRyan Harper 1469e023b2e2SPaolo Bonzini static void bdrv_rebind(BlockDriverState *bs) 1470e023b2e2SPaolo Bonzini { 1471e023b2e2SPaolo Bonzini if (bs->drv && bs->drv->bdrv_rebind) { 1472e023b2e2SPaolo Bonzini bs->drv->bdrv_rebind(bs); 1473e023b2e2SPaolo Bonzini } 1474e023b2e2SPaolo Bonzini } 1475e023b2e2SPaolo Bonzini 14764ddc07caSPaolo Bonzini static void bdrv_move_feature_fields(BlockDriverState *bs_dest, 14774ddc07caSPaolo Bonzini BlockDriverState *bs_src) 14784ddc07caSPaolo Bonzini { 14794ddc07caSPaolo Bonzini /* move some fields that need to stay attached to the device */ 14804ddc07caSPaolo Bonzini bs_dest->open_flags = bs_src->open_flags; 14814ddc07caSPaolo Bonzini 14824ddc07caSPaolo Bonzini /* dev info */ 14834ddc07caSPaolo Bonzini bs_dest->dev_ops = bs_src->dev_ops; 14844ddc07caSPaolo Bonzini bs_dest->dev_opaque = bs_src->dev_opaque; 14854ddc07caSPaolo Bonzini bs_dest->dev = bs_src->dev; 14864ddc07caSPaolo Bonzini bs_dest->buffer_alignment = bs_src->buffer_alignment; 14874ddc07caSPaolo Bonzini bs_dest->copy_on_read = bs_src->copy_on_read; 14884ddc07caSPaolo Bonzini 14894ddc07caSPaolo Bonzini bs_dest->enable_write_cache = bs_src->enable_write_cache; 14904ddc07caSPaolo Bonzini 14914ddc07caSPaolo Bonzini /* i/o timing parameters */ 14924ddc07caSPaolo Bonzini bs_dest->slice_start = bs_src->slice_start; 14934ddc07caSPaolo Bonzini bs_dest->slice_end = bs_src->slice_end; 14945905fbc9SStefan Hajnoczi bs_dest->slice_submitted = bs_src->slice_submitted; 14954ddc07caSPaolo Bonzini bs_dest->io_limits = bs_src->io_limits; 14964ddc07caSPaolo Bonzini bs_dest->throttled_reqs = bs_src->throttled_reqs; 14974ddc07caSPaolo Bonzini bs_dest->block_timer = bs_src->block_timer; 14984ddc07caSPaolo Bonzini bs_dest->io_limits_enabled = bs_src->io_limits_enabled; 14994ddc07caSPaolo Bonzini 15004ddc07caSPaolo Bonzini /* r/w error */ 15014ddc07caSPaolo Bonzini bs_dest->on_read_error = bs_src->on_read_error; 15024ddc07caSPaolo Bonzini bs_dest->on_write_error = bs_src->on_write_error; 15034ddc07caSPaolo Bonzini 15044ddc07caSPaolo Bonzini /* i/o status */ 15054ddc07caSPaolo Bonzini bs_dest->iostatus_enabled = bs_src->iostatus_enabled; 15064ddc07caSPaolo Bonzini bs_dest->iostatus = bs_src->iostatus; 15074ddc07caSPaolo Bonzini 15084ddc07caSPaolo Bonzini /* dirty bitmap */ 15094ddc07caSPaolo Bonzini bs_dest->dirty_bitmap = bs_src->dirty_bitmap; 15104ddc07caSPaolo Bonzini 15114ddc07caSPaolo Bonzini /* job */ 15124ddc07caSPaolo Bonzini bs_dest->in_use = bs_src->in_use; 15134ddc07caSPaolo Bonzini bs_dest->job = bs_src->job; 15144ddc07caSPaolo Bonzini 15154ddc07caSPaolo Bonzini /* keep the same entry in bdrv_states */ 15164ddc07caSPaolo Bonzini pstrcpy(bs_dest->device_name, sizeof(bs_dest->device_name), 15174ddc07caSPaolo Bonzini bs_src->device_name); 15184ddc07caSPaolo Bonzini bs_dest->list = bs_src->list; 15194ddc07caSPaolo Bonzini } 15204ddc07caSPaolo Bonzini 15214ddc07caSPaolo Bonzini /* 15224ddc07caSPaolo Bonzini * Swap bs contents for two image chains while they are live, 15234ddc07caSPaolo Bonzini * while keeping required fields on the BlockDriverState that is 15244ddc07caSPaolo Bonzini * actually attached to a device. 15254ddc07caSPaolo Bonzini * 15264ddc07caSPaolo Bonzini * This will modify the BlockDriverState fields, and swap contents 15274ddc07caSPaolo Bonzini * between bs_new and bs_old. Both bs_new and bs_old are modified. 15284ddc07caSPaolo Bonzini * 15294ddc07caSPaolo Bonzini * bs_new is required to be anonymous. 15304ddc07caSPaolo Bonzini * 15314ddc07caSPaolo Bonzini * This function does not create any image files. 15324ddc07caSPaolo Bonzini */ 15334ddc07caSPaolo Bonzini void bdrv_swap(BlockDriverState *bs_new, BlockDriverState *bs_old) 15344ddc07caSPaolo Bonzini { 15354ddc07caSPaolo Bonzini BlockDriverState tmp; 15364ddc07caSPaolo Bonzini 15374ddc07caSPaolo Bonzini /* bs_new must be anonymous and shouldn't have anything fancy enabled */ 15384ddc07caSPaolo Bonzini assert(bs_new->device_name[0] == '\0'); 15394ddc07caSPaolo Bonzini assert(bs_new->dirty_bitmap == NULL); 15404ddc07caSPaolo Bonzini assert(bs_new->job == NULL); 15414ddc07caSPaolo Bonzini assert(bs_new->dev == NULL); 15424ddc07caSPaolo Bonzini assert(bs_new->in_use == 0); 15434ddc07caSPaolo Bonzini assert(bs_new->io_limits_enabled == false); 15444ddc07caSPaolo Bonzini assert(bs_new->block_timer == NULL); 15454ddc07caSPaolo Bonzini 15464ddc07caSPaolo Bonzini tmp = *bs_new; 15474ddc07caSPaolo Bonzini *bs_new = *bs_old; 15484ddc07caSPaolo Bonzini *bs_old = tmp; 15494ddc07caSPaolo Bonzini 15504ddc07caSPaolo Bonzini /* there are some fields that should not be swapped, move them back */ 15514ddc07caSPaolo Bonzini bdrv_move_feature_fields(&tmp, bs_old); 15524ddc07caSPaolo Bonzini bdrv_move_feature_fields(bs_old, bs_new); 15534ddc07caSPaolo Bonzini bdrv_move_feature_fields(bs_new, &tmp); 15544ddc07caSPaolo Bonzini 15554ddc07caSPaolo Bonzini /* bs_new shouldn't be in bdrv_states even after the swap! */ 15564ddc07caSPaolo Bonzini assert(bs_new->device_name[0] == '\0'); 15574ddc07caSPaolo Bonzini 15584ddc07caSPaolo Bonzini /* Check a few fields that should remain attached to the device */ 15594ddc07caSPaolo Bonzini assert(bs_new->dev == NULL); 15604ddc07caSPaolo Bonzini assert(bs_new->job == NULL); 15614ddc07caSPaolo Bonzini assert(bs_new->in_use == 0); 15624ddc07caSPaolo Bonzini assert(bs_new->io_limits_enabled == false); 15634ddc07caSPaolo Bonzini assert(bs_new->block_timer == NULL); 15644ddc07caSPaolo Bonzini 15654ddc07caSPaolo Bonzini bdrv_rebind(bs_new); 15664ddc07caSPaolo Bonzini bdrv_rebind(bs_old); 15674ddc07caSPaolo Bonzini } 15684ddc07caSPaolo Bonzini 15698802d1fdSJeff Cody /* 15708802d1fdSJeff Cody * Add new bs contents at the top of an image chain while the chain is 15718802d1fdSJeff Cody * live, while keeping required fields on the top layer. 15728802d1fdSJeff Cody * 15738802d1fdSJeff Cody * This will modify the BlockDriverState fields, and swap contents 15748802d1fdSJeff Cody * between bs_new and bs_top. Both bs_new and bs_top are modified. 15758802d1fdSJeff Cody * 1576f6801b83SJeff Cody * bs_new is required to be anonymous. 1577f6801b83SJeff Cody * 15788802d1fdSJeff Cody * This function does not create any image files. 15798802d1fdSJeff Cody */ 15808802d1fdSJeff Cody void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top) 15818802d1fdSJeff Cody { 15824ddc07caSPaolo Bonzini bdrv_swap(bs_new, bs_top); 15838802d1fdSJeff Cody 15848802d1fdSJeff Cody /* The contents of 'tmp' will become bs_top, as we are 15858802d1fdSJeff Cody * swapping bs_new and bs_top contents. */ 15864ddc07caSPaolo Bonzini bs_top->backing_hd = bs_new; 15874ddc07caSPaolo Bonzini bs_top->open_flags &= ~BDRV_O_NO_BACKING; 15884ddc07caSPaolo Bonzini pstrcpy(bs_top->backing_file, sizeof(bs_top->backing_file), 15894ddc07caSPaolo Bonzini bs_new->filename); 15904ddc07caSPaolo Bonzini pstrcpy(bs_top->backing_format, sizeof(bs_top->backing_format), 15914ddc07caSPaolo Bonzini bs_new->drv ? bs_new->drv->format_name : ""); 15928802d1fdSJeff Cody } 15938802d1fdSJeff Cody 1594b338082bSbellard void bdrv_delete(BlockDriverState *bs) 1595b338082bSbellard { 1596fa879d62SMarkus Armbruster assert(!bs->dev); 15973e914655SPaolo Bonzini assert(!bs->job); 15983e914655SPaolo Bonzini assert(!bs->in_use); 159918846deeSMarkus Armbruster 16001b7bdbc1SStefan Hajnoczi /* remove from list, if necessary */ 1601d22b2f41SRyan Harper bdrv_make_anon(bs); 160234c6f050Saurel32 1603b338082bSbellard bdrv_close(bs); 160466f82ceeSKevin Wolf 1605f9092b10SMarkus Armbruster assert(bs != bs_snapshots); 16067267c094SAnthony Liguori g_free(bs); 1607fc01f7e7Sbellard } 1608fc01f7e7Sbellard 1609fa879d62SMarkus Armbruster int bdrv_attach_dev(BlockDriverState *bs, void *dev) 1610fa879d62SMarkus Armbruster /* TODO change to DeviceState *dev when all users are qdevified */ 161118846deeSMarkus Armbruster { 1612fa879d62SMarkus Armbruster if (bs->dev) { 161318846deeSMarkus Armbruster return -EBUSY; 161418846deeSMarkus Armbruster } 1615fa879d62SMarkus Armbruster bs->dev = dev; 161628a7282aSLuiz Capitulino bdrv_iostatus_reset(bs); 161718846deeSMarkus Armbruster return 0; 161818846deeSMarkus Armbruster } 161918846deeSMarkus Armbruster 1620fa879d62SMarkus Armbruster /* TODO qdevified devices don't use this, remove when devices are qdevified */ 1621fa879d62SMarkus Armbruster void bdrv_attach_dev_nofail(BlockDriverState *bs, void *dev) 162218846deeSMarkus Armbruster { 1623fa879d62SMarkus Armbruster if (bdrv_attach_dev(bs, dev) < 0) { 1624fa879d62SMarkus Armbruster abort(); 1625fa879d62SMarkus Armbruster } 1626fa879d62SMarkus Armbruster } 1627fa879d62SMarkus Armbruster 1628fa879d62SMarkus Armbruster void bdrv_detach_dev(BlockDriverState *bs, void *dev) 1629fa879d62SMarkus Armbruster /* TODO change to DeviceState *dev when all users are qdevified */ 1630fa879d62SMarkus Armbruster { 1631fa879d62SMarkus Armbruster assert(bs->dev == dev); 1632fa879d62SMarkus Armbruster bs->dev = NULL; 16330e49de52SMarkus Armbruster bs->dev_ops = NULL; 16340e49de52SMarkus Armbruster bs->dev_opaque = NULL; 163529e05f20SMarkus Armbruster bs->buffer_alignment = 512; 163618846deeSMarkus Armbruster } 163718846deeSMarkus Armbruster 1638fa879d62SMarkus Armbruster /* TODO change to return DeviceState * when all users are qdevified */ 1639fa879d62SMarkus Armbruster void *bdrv_get_attached_dev(BlockDriverState *bs) 164018846deeSMarkus Armbruster { 1641fa879d62SMarkus Armbruster return bs->dev; 164218846deeSMarkus Armbruster } 164318846deeSMarkus Armbruster 16440e49de52SMarkus Armbruster void bdrv_set_dev_ops(BlockDriverState *bs, const BlockDevOps *ops, 16450e49de52SMarkus Armbruster void *opaque) 16460e49de52SMarkus Armbruster { 16470e49de52SMarkus Armbruster bs->dev_ops = ops; 16480e49de52SMarkus Armbruster bs->dev_opaque = opaque; 16492c6942faSMarkus Armbruster if (bdrv_dev_has_removable_media(bs) && bs == bs_snapshots) { 16502c6942faSMarkus Armbruster bs_snapshots = NULL; 16512c6942faSMarkus Armbruster } 16520e49de52SMarkus Armbruster } 16530e49de52SMarkus Armbruster 165432c81a4aSPaolo Bonzini void bdrv_emit_qmp_error_event(const BlockDriverState *bdrv, 165532c81a4aSPaolo Bonzini enum MonitorEvent ev, 16561ceee0d5SPaolo Bonzini BlockErrorAction action, bool is_read) 1657329c0a48SLuiz Capitulino { 1658329c0a48SLuiz Capitulino QObject *data; 1659329c0a48SLuiz Capitulino const char *action_str; 1660329c0a48SLuiz Capitulino 1661329c0a48SLuiz Capitulino switch (action) { 1662329c0a48SLuiz Capitulino case BDRV_ACTION_REPORT: 1663329c0a48SLuiz Capitulino action_str = "report"; 1664329c0a48SLuiz Capitulino break; 1665329c0a48SLuiz Capitulino case BDRV_ACTION_IGNORE: 1666329c0a48SLuiz Capitulino action_str = "ignore"; 1667329c0a48SLuiz Capitulino break; 1668329c0a48SLuiz Capitulino case BDRV_ACTION_STOP: 1669329c0a48SLuiz Capitulino action_str = "stop"; 1670329c0a48SLuiz Capitulino break; 1671329c0a48SLuiz Capitulino default: 1672329c0a48SLuiz Capitulino abort(); 1673329c0a48SLuiz Capitulino } 1674329c0a48SLuiz Capitulino 1675329c0a48SLuiz Capitulino data = qobject_from_jsonf("{ 'device': %s, 'action': %s, 'operation': %s }", 1676329c0a48SLuiz Capitulino bdrv->device_name, 1677329c0a48SLuiz Capitulino action_str, 1678329c0a48SLuiz Capitulino is_read ? "read" : "write"); 167932c81a4aSPaolo Bonzini monitor_protocol_event(ev, data); 1680329c0a48SLuiz Capitulino 1681329c0a48SLuiz Capitulino qobject_decref(data); 1682329c0a48SLuiz Capitulino } 1683329c0a48SLuiz Capitulino 16846f382ed2SLuiz Capitulino static void bdrv_emit_qmp_eject_event(BlockDriverState *bs, bool ejected) 16856f382ed2SLuiz Capitulino { 16866f382ed2SLuiz Capitulino QObject *data; 16876f382ed2SLuiz Capitulino 16886f382ed2SLuiz Capitulino data = qobject_from_jsonf("{ 'device': %s, 'tray-open': %i }", 16896f382ed2SLuiz Capitulino bdrv_get_device_name(bs), ejected); 16906f382ed2SLuiz Capitulino monitor_protocol_event(QEVENT_DEVICE_TRAY_MOVED, data); 16916f382ed2SLuiz Capitulino 16926f382ed2SLuiz Capitulino qobject_decref(data); 16936f382ed2SLuiz Capitulino } 16946f382ed2SLuiz Capitulino 16957d4b4ba5SMarkus Armbruster static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load) 16960e49de52SMarkus Armbruster { 1697145feb17SMarkus Armbruster if (bs->dev_ops && bs->dev_ops->change_media_cb) { 16986f382ed2SLuiz Capitulino bool tray_was_closed = !bdrv_dev_is_tray_open(bs); 16997d4b4ba5SMarkus Armbruster bs->dev_ops->change_media_cb(bs->dev_opaque, load); 17006f382ed2SLuiz Capitulino if (tray_was_closed) { 17016f382ed2SLuiz Capitulino /* tray open */ 17026f382ed2SLuiz Capitulino bdrv_emit_qmp_eject_event(bs, true); 17036f382ed2SLuiz Capitulino } 17046f382ed2SLuiz Capitulino if (load) { 17056f382ed2SLuiz Capitulino /* tray close */ 17066f382ed2SLuiz Capitulino bdrv_emit_qmp_eject_event(bs, false); 17076f382ed2SLuiz Capitulino } 1708145feb17SMarkus Armbruster } 1709145feb17SMarkus Armbruster } 1710145feb17SMarkus Armbruster 17112c6942faSMarkus Armbruster bool bdrv_dev_has_removable_media(BlockDriverState *bs) 17122c6942faSMarkus Armbruster { 17132c6942faSMarkus Armbruster return !bs->dev || (bs->dev_ops && bs->dev_ops->change_media_cb); 17142c6942faSMarkus Armbruster } 17152c6942faSMarkus Armbruster 1716025ccaa7SPaolo Bonzini void bdrv_dev_eject_request(BlockDriverState *bs, bool force) 1717025ccaa7SPaolo Bonzini { 1718025ccaa7SPaolo Bonzini if (bs->dev_ops && bs->dev_ops->eject_request_cb) { 1719025ccaa7SPaolo Bonzini bs->dev_ops->eject_request_cb(bs->dev_opaque, force); 1720025ccaa7SPaolo Bonzini } 1721025ccaa7SPaolo Bonzini } 1722025ccaa7SPaolo Bonzini 1723e4def80bSMarkus Armbruster bool bdrv_dev_is_tray_open(BlockDriverState *bs) 1724e4def80bSMarkus Armbruster { 1725e4def80bSMarkus Armbruster if (bs->dev_ops && bs->dev_ops->is_tray_open) { 1726e4def80bSMarkus Armbruster return bs->dev_ops->is_tray_open(bs->dev_opaque); 1727e4def80bSMarkus Armbruster } 1728e4def80bSMarkus Armbruster return false; 1729e4def80bSMarkus Armbruster } 1730e4def80bSMarkus Armbruster 1731145feb17SMarkus Armbruster static void bdrv_dev_resize_cb(BlockDriverState *bs) 1732145feb17SMarkus Armbruster { 1733145feb17SMarkus Armbruster if (bs->dev_ops && bs->dev_ops->resize_cb) { 1734145feb17SMarkus Armbruster bs->dev_ops->resize_cb(bs->dev_opaque); 17350e49de52SMarkus Armbruster } 17360e49de52SMarkus Armbruster } 17370e49de52SMarkus Armbruster 1738f107639aSMarkus Armbruster bool bdrv_dev_is_medium_locked(BlockDriverState *bs) 1739f107639aSMarkus Armbruster { 1740f107639aSMarkus Armbruster if (bs->dev_ops && bs->dev_ops->is_medium_locked) { 1741f107639aSMarkus Armbruster return bs->dev_ops->is_medium_locked(bs->dev_opaque); 1742f107639aSMarkus Armbruster } 1743f107639aSMarkus Armbruster return false; 1744f107639aSMarkus Armbruster } 1745f107639aSMarkus Armbruster 1746e97fc193Saliguori /* 1747e97fc193Saliguori * Run consistency checks on an image 1748e97fc193Saliguori * 1749e076f338SKevin Wolf * Returns 0 if the check could be completed (it doesn't mean that the image is 1750a1c7273bSStefan Weil * free of errors) or -errno when an internal error occurred. The results of the 1751e076f338SKevin Wolf * check are stored in res. 1752e97fc193Saliguori */ 17534534ff54SKevin Wolf int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix) 1754e97fc193Saliguori { 1755e97fc193Saliguori if (bs->drv->bdrv_check == NULL) { 1756e97fc193Saliguori return -ENOTSUP; 1757e97fc193Saliguori } 1758e97fc193Saliguori 1759e076f338SKevin Wolf memset(res, 0, sizeof(*res)); 17604534ff54SKevin Wolf return bs->drv->bdrv_check(bs, res, fix); 1761e97fc193Saliguori } 1762e97fc193Saliguori 17638a426614SKevin Wolf #define COMMIT_BUF_SECTORS 2048 17648a426614SKevin Wolf 176533e3963eSbellard /* commit COW file into the raw image */ 176633e3963eSbellard int bdrv_commit(BlockDriverState *bs) 176733e3963eSbellard { 176819cb3738Sbellard BlockDriver *drv = bs->drv; 17698a426614SKevin Wolf int64_t sector, total_sectors; 17708a426614SKevin Wolf int n, ro, open_flags; 17710bce597dSJeff Cody int ret = 0; 17728a426614SKevin Wolf uint8_t *buf; 1773c2cba3d9SJim Meyering char filename[PATH_MAX]; 177433e3963eSbellard 177519cb3738Sbellard if (!drv) 177619cb3738Sbellard return -ENOMEDIUM; 177733e3963eSbellard 17784dca4b63SNaphtali Sprei if (!bs->backing_hd) { 17794dca4b63SNaphtali Sprei return -ENOTSUP; 17804dca4b63SNaphtali Sprei } 17814dca4b63SNaphtali Sprei 17822d3735d3SStefan Hajnoczi if (bdrv_in_use(bs) || bdrv_in_use(bs->backing_hd)) { 17832d3735d3SStefan Hajnoczi return -EBUSY; 17842d3735d3SStefan Hajnoczi } 17852d3735d3SStefan Hajnoczi 17864dca4b63SNaphtali Sprei ro = bs->backing_hd->read_only; 1787c2cba3d9SJim Meyering /* Use pstrcpy (not strncpy): filename must be NUL-terminated. */ 1788c2cba3d9SJim Meyering pstrcpy(filename, sizeof(filename), bs->backing_hd->filename); 17894dca4b63SNaphtali Sprei open_flags = bs->backing_hd->open_flags; 17904dca4b63SNaphtali Sprei 17914dca4b63SNaphtali Sprei if (ro) { 17920bce597dSJeff Cody if (bdrv_reopen(bs->backing_hd, open_flags | BDRV_O_RDWR, NULL)) { 17930bce597dSJeff Cody return -EACCES; 17944dca4b63SNaphtali Sprei } 1795ea2384d3Sbellard } 1796ea2384d3Sbellard 17976ea44308SJan Kiszka total_sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS; 17987267c094SAnthony Liguori buf = g_malloc(COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE); 17998a426614SKevin Wolf 18008a426614SKevin Wolf for (sector = 0; sector < total_sectors; sector += n) { 180105c4af54SStefan Hajnoczi if (bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n)) { 18028a426614SKevin Wolf 18038a426614SKevin Wolf if (bdrv_read(bs, sector, buf, n) != 0) { 18044dca4b63SNaphtali Sprei ret = -EIO; 18054dca4b63SNaphtali Sprei goto ro_cleanup; 180633e3963eSbellard } 180733e3963eSbellard 18088a426614SKevin Wolf if (bdrv_write(bs->backing_hd, sector, buf, n) != 0) { 18094dca4b63SNaphtali Sprei ret = -EIO; 18104dca4b63SNaphtali Sprei goto ro_cleanup; 181133e3963eSbellard } 181233e3963eSbellard } 181333e3963eSbellard } 181495389c86Sbellard 18151d44952fSChristoph Hellwig if (drv->bdrv_make_empty) { 18161d44952fSChristoph Hellwig ret = drv->bdrv_make_empty(bs); 18171d44952fSChristoph Hellwig bdrv_flush(bs); 18181d44952fSChristoph Hellwig } 181995389c86Sbellard 18203f5075aeSChristoph Hellwig /* 18213f5075aeSChristoph Hellwig * Make sure all data we wrote to the backing device is actually 18223f5075aeSChristoph Hellwig * stable on disk. 18233f5075aeSChristoph Hellwig */ 18243f5075aeSChristoph Hellwig if (bs->backing_hd) 18253f5075aeSChristoph Hellwig bdrv_flush(bs->backing_hd); 18264dca4b63SNaphtali Sprei 18274dca4b63SNaphtali Sprei ro_cleanup: 18287267c094SAnthony Liguori g_free(buf); 18294dca4b63SNaphtali Sprei 18304dca4b63SNaphtali Sprei if (ro) { 18310bce597dSJeff Cody /* ignoring error return here */ 18320bce597dSJeff Cody bdrv_reopen(bs->backing_hd, open_flags & ~BDRV_O_RDWR, NULL); 18334dca4b63SNaphtali Sprei } 18344dca4b63SNaphtali Sprei 18351d44952fSChristoph Hellwig return ret; 183633e3963eSbellard } 183733e3963eSbellard 1838e8877497SStefan Hajnoczi int bdrv_commit_all(void) 18396ab4b5abSMarkus Armbruster { 18406ab4b5abSMarkus Armbruster BlockDriverState *bs; 18416ab4b5abSMarkus Armbruster 18426ab4b5abSMarkus Armbruster QTAILQ_FOREACH(bs, &bdrv_states, list) { 1843272d2d8eSJeff Cody if (bs->drv && bs->backing_hd) { 1844e8877497SStefan Hajnoczi int ret = bdrv_commit(bs); 1845e8877497SStefan Hajnoczi if (ret < 0) { 1846e8877497SStefan Hajnoczi return ret; 18476ab4b5abSMarkus Armbruster } 18486ab4b5abSMarkus Armbruster } 1849272d2d8eSJeff Cody } 1850e8877497SStefan Hajnoczi return 0; 1851e8877497SStefan Hajnoczi } 18526ab4b5abSMarkus Armbruster 1853dbffbdcfSStefan Hajnoczi struct BdrvTrackedRequest { 1854dbffbdcfSStefan Hajnoczi BlockDriverState *bs; 1855dbffbdcfSStefan Hajnoczi int64_t sector_num; 1856dbffbdcfSStefan Hajnoczi int nb_sectors; 1857dbffbdcfSStefan Hajnoczi bool is_write; 1858dbffbdcfSStefan Hajnoczi QLIST_ENTRY(BdrvTrackedRequest) list; 18595f8b6491SStefan Hajnoczi Coroutine *co; /* owner, used for deadlock detection */ 1860f4658285SStefan Hajnoczi CoQueue wait_queue; /* coroutines blocked on this request */ 1861dbffbdcfSStefan Hajnoczi }; 1862dbffbdcfSStefan Hajnoczi 1863dbffbdcfSStefan Hajnoczi /** 1864dbffbdcfSStefan Hajnoczi * Remove an active request from the tracked requests list 1865dbffbdcfSStefan Hajnoczi * 1866dbffbdcfSStefan Hajnoczi * This function should be called when a tracked request is completing. 1867dbffbdcfSStefan Hajnoczi */ 1868dbffbdcfSStefan Hajnoczi static void tracked_request_end(BdrvTrackedRequest *req) 1869dbffbdcfSStefan Hajnoczi { 1870dbffbdcfSStefan Hajnoczi QLIST_REMOVE(req, list); 1871f4658285SStefan Hajnoczi qemu_co_queue_restart_all(&req->wait_queue); 1872dbffbdcfSStefan Hajnoczi } 1873dbffbdcfSStefan Hajnoczi 1874dbffbdcfSStefan Hajnoczi /** 1875dbffbdcfSStefan Hajnoczi * Add an active request to the tracked requests list 1876dbffbdcfSStefan Hajnoczi */ 1877dbffbdcfSStefan Hajnoczi static void tracked_request_begin(BdrvTrackedRequest *req, 1878dbffbdcfSStefan Hajnoczi BlockDriverState *bs, 1879dbffbdcfSStefan Hajnoczi int64_t sector_num, 1880dbffbdcfSStefan Hajnoczi int nb_sectors, bool is_write) 1881dbffbdcfSStefan Hajnoczi { 1882dbffbdcfSStefan Hajnoczi *req = (BdrvTrackedRequest){ 1883dbffbdcfSStefan Hajnoczi .bs = bs, 1884dbffbdcfSStefan Hajnoczi .sector_num = sector_num, 1885dbffbdcfSStefan Hajnoczi .nb_sectors = nb_sectors, 1886dbffbdcfSStefan Hajnoczi .is_write = is_write, 18875f8b6491SStefan Hajnoczi .co = qemu_coroutine_self(), 1888dbffbdcfSStefan Hajnoczi }; 1889dbffbdcfSStefan Hajnoczi 1890f4658285SStefan Hajnoczi qemu_co_queue_init(&req->wait_queue); 1891f4658285SStefan Hajnoczi 1892dbffbdcfSStefan Hajnoczi QLIST_INSERT_HEAD(&bs->tracked_requests, req, list); 1893dbffbdcfSStefan Hajnoczi } 1894dbffbdcfSStefan Hajnoczi 1895d83947acSStefan Hajnoczi /** 1896d83947acSStefan Hajnoczi * Round a region to cluster boundaries 1897d83947acSStefan Hajnoczi */ 1898343bded4SPaolo Bonzini void bdrv_round_to_clusters(BlockDriverState *bs, 1899d83947acSStefan Hajnoczi int64_t sector_num, int nb_sectors, 1900d83947acSStefan Hajnoczi int64_t *cluster_sector_num, 1901d83947acSStefan Hajnoczi int *cluster_nb_sectors) 1902d83947acSStefan Hajnoczi { 1903d83947acSStefan Hajnoczi BlockDriverInfo bdi; 1904d83947acSStefan Hajnoczi 1905d83947acSStefan Hajnoczi if (bdrv_get_info(bs, &bdi) < 0 || bdi.cluster_size == 0) { 1906d83947acSStefan Hajnoczi *cluster_sector_num = sector_num; 1907d83947acSStefan Hajnoczi *cluster_nb_sectors = nb_sectors; 1908d83947acSStefan Hajnoczi } else { 1909d83947acSStefan Hajnoczi int64_t c = bdi.cluster_size / BDRV_SECTOR_SIZE; 1910d83947acSStefan Hajnoczi *cluster_sector_num = QEMU_ALIGN_DOWN(sector_num, c); 1911d83947acSStefan Hajnoczi *cluster_nb_sectors = QEMU_ALIGN_UP(sector_num - *cluster_sector_num + 1912d83947acSStefan Hajnoczi nb_sectors, c); 1913d83947acSStefan Hajnoczi } 1914d83947acSStefan Hajnoczi } 1915d83947acSStefan Hajnoczi 1916f4658285SStefan Hajnoczi static bool tracked_request_overlaps(BdrvTrackedRequest *req, 1917f4658285SStefan Hajnoczi int64_t sector_num, int nb_sectors) { 1918d83947acSStefan Hajnoczi /* aaaa bbbb */ 1919d83947acSStefan Hajnoczi if (sector_num >= req->sector_num + req->nb_sectors) { 1920d83947acSStefan Hajnoczi return false; 1921d83947acSStefan Hajnoczi } 1922d83947acSStefan Hajnoczi /* bbbb aaaa */ 1923d83947acSStefan Hajnoczi if (req->sector_num >= sector_num + nb_sectors) { 1924d83947acSStefan Hajnoczi return false; 1925d83947acSStefan Hajnoczi } 1926d83947acSStefan Hajnoczi return true; 1927f4658285SStefan Hajnoczi } 1928f4658285SStefan Hajnoczi 1929f4658285SStefan Hajnoczi static void coroutine_fn wait_for_overlapping_requests(BlockDriverState *bs, 1930f4658285SStefan Hajnoczi int64_t sector_num, int nb_sectors) 1931f4658285SStefan Hajnoczi { 1932f4658285SStefan Hajnoczi BdrvTrackedRequest *req; 1933d83947acSStefan Hajnoczi int64_t cluster_sector_num; 1934d83947acSStefan Hajnoczi int cluster_nb_sectors; 1935f4658285SStefan Hajnoczi bool retry; 1936f4658285SStefan Hajnoczi 1937d83947acSStefan Hajnoczi /* If we touch the same cluster it counts as an overlap. This guarantees 1938d83947acSStefan Hajnoczi * that allocating writes will be serialized and not race with each other 1939d83947acSStefan Hajnoczi * for the same cluster. For example, in copy-on-read it ensures that the 1940d83947acSStefan Hajnoczi * CoR read and write operations are atomic and guest writes cannot 1941d83947acSStefan Hajnoczi * interleave between them. 1942d83947acSStefan Hajnoczi */ 1943343bded4SPaolo Bonzini bdrv_round_to_clusters(bs, sector_num, nb_sectors, 1944d83947acSStefan Hajnoczi &cluster_sector_num, &cluster_nb_sectors); 1945d83947acSStefan Hajnoczi 1946f4658285SStefan Hajnoczi do { 1947f4658285SStefan Hajnoczi retry = false; 1948f4658285SStefan Hajnoczi QLIST_FOREACH(req, &bs->tracked_requests, list) { 1949d83947acSStefan Hajnoczi if (tracked_request_overlaps(req, cluster_sector_num, 1950d83947acSStefan Hajnoczi cluster_nb_sectors)) { 19515f8b6491SStefan Hajnoczi /* Hitting this means there was a reentrant request, for 19525f8b6491SStefan Hajnoczi * example, a block driver issuing nested requests. This must 19535f8b6491SStefan Hajnoczi * never happen since it means deadlock. 19545f8b6491SStefan Hajnoczi */ 19555f8b6491SStefan Hajnoczi assert(qemu_coroutine_self() != req->co); 19565f8b6491SStefan Hajnoczi 1957f4658285SStefan Hajnoczi qemu_co_queue_wait(&req->wait_queue); 1958f4658285SStefan Hajnoczi retry = true; 1959f4658285SStefan Hajnoczi break; 1960f4658285SStefan Hajnoczi } 1961f4658285SStefan Hajnoczi } 1962f4658285SStefan Hajnoczi } while (retry); 1963f4658285SStefan Hajnoczi } 1964f4658285SStefan Hajnoczi 1965756e6736SKevin Wolf /* 1966756e6736SKevin Wolf * Return values: 1967756e6736SKevin Wolf * 0 - success 1968756e6736SKevin Wolf * -EINVAL - backing format specified, but no file 1969756e6736SKevin Wolf * -ENOSPC - can't update the backing file because no space is left in the 1970756e6736SKevin Wolf * image file header 1971756e6736SKevin Wolf * -ENOTSUP - format driver doesn't support changing the backing file 1972756e6736SKevin Wolf */ 1973756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs, 1974756e6736SKevin Wolf const char *backing_file, const char *backing_fmt) 1975756e6736SKevin Wolf { 1976756e6736SKevin Wolf BlockDriver *drv = bs->drv; 1977469ef350SPaolo Bonzini int ret; 1978756e6736SKevin Wolf 19795f377794SPaolo Bonzini /* Backing file format doesn't make sense without a backing file */ 19805f377794SPaolo Bonzini if (backing_fmt && !backing_file) { 19815f377794SPaolo Bonzini return -EINVAL; 19825f377794SPaolo Bonzini } 19835f377794SPaolo Bonzini 1984756e6736SKevin Wolf if (drv->bdrv_change_backing_file != NULL) { 1985469ef350SPaolo Bonzini ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); 1986756e6736SKevin Wolf } else { 1987469ef350SPaolo Bonzini ret = -ENOTSUP; 1988756e6736SKevin Wolf } 1989469ef350SPaolo Bonzini 1990469ef350SPaolo Bonzini if (ret == 0) { 1991469ef350SPaolo Bonzini pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); 1992469ef350SPaolo Bonzini pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); 1993469ef350SPaolo Bonzini } 1994469ef350SPaolo Bonzini return ret; 1995756e6736SKevin Wolf } 1996756e6736SKevin Wolf 19976ebdcee2SJeff Cody /* 19986ebdcee2SJeff Cody * Finds the image layer in the chain that has 'bs' as its backing file. 19996ebdcee2SJeff Cody * 20006ebdcee2SJeff Cody * active is the current topmost image. 20016ebdcee2SJeff Cody * 20026ebdcee2SJeff Cody * Returns NULL if bs is not found in active's image chain, 20036ebdcee2SJeff Cody * or if active == bs. 20046ebdcee2SJeff Cody */ 20056ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active, 20066ebdcee2SJeff Cody BlockDriverState *bs) 20076ebdcee2SJeff Cody { 20086ebdcee2SJeff Cody BlockDriverState *overlay = NULL; 20096ebdcee2SJeff Cody BlockDriverState *intermediate; 20106ebdcee2SJeff Cody 20116ebdcee2SJeff Cody assert(active != NULL); 20126ebdcee2SJeff Cody assert(bs != NULL); 20136ebdcee2SJeff Cody 20146ebdcee2SJeff Cody /* if bs is the same as active, then by definition it has no overlay 20156ebdcee2SJeff Cody */ 20166ebdcee2SJeff Cody if (active == bs) { 20176ebdcee2SJeff Cody return NULL; 20186ebdcee2SJeff Cody } 20196ebdcee2SJeff Cody 20206ebdcee2SJeff Cody intermediate = active; 20216ebdcee2SJeff Cody while (intermediate->backing_hd) { 20226ebdcee2SJeff Cody if (intermediate->backing_hd == bs) { 20236ebdcee2SJeff Cody overlay = intermediate; 20246ebdcee2SJeff Cody break; 20256ebdcee2SJeff Cody } 20266ebdcee2SJeff Cody intermediate = intermediate->backing_hd; 20276ebdcee2SJeff Cody } 20286ebdcee2SJeff Cody 20296ebdcee2SJeff Cody return overlay; 20306ebdcee2SJeff Cody } 20316ebdcee2SJeff Cody 20326ebdcee2SJeff Cody typedef struct BlkIntermediateStates { 20336ebdcee2SJeff Cody BlockDriverState *bs; 20346ebdcee2SJeff Cody QSIMPLEQ_ENTRY(BlkIntermediateStates) entry; 20356ebdcee2SJeff Cody } BlkIntermediateStates; 20366ebdcee2SJeff Cody 20376ebdcee2SJeff Cody 20386ebdcee2SJeff Cody /* 20396ebdcee2SJeff Cody * Drops images above 'base' up to and including 'top', and sets the image 20406ebdcee2SJeff Cody * above 'top' to have base as its backing file. 20416ebdcee2SJeff Cody * 20426ebdcee2SJeff Cody * Requires that the overlay to 'top' is opened r/w, so that the backing file 20436ebdcee2SJeff Cody * information in 'bs' can be properly updated. 20446ebdcee2SJeff Cody * 20456ebdcee2SJeff Cody * E.g., this will convert the following chain: 20466ebdcee2SJeff Cody * bottom <- base <- intermediate <- top <- active 20476ebdcee2SJeff Cody * 20486ebdcee2SJeff Cody * to 20496ebdcee2SJeff Cody * 20506ebdcee2SJeff Cody * bottom <- base <- active 20516ebdcee2SJeff Cody * 20526ebdcee2SJeff Cody * It is allowed for bottom==base, in which case it converts: 20536ebdcee2SJeff Cody * 20546ebdcee2SJeff Cody * base <- intermediate <- top <- active 20556ebdcee2SJeff Cody * 20566ebdcee2SJeff Cody * to 20576ebdcee2SJeff Cody * 20586ebdcee2SJeff Cody * base <- active 20596ebdcee2SJeff Cody * 20606ebdcee2SJeff Cody * Error conditions: 20616ebdcee2SJeff Cody * if active == top, that is considered an error 20626ebdcee2SJeff Cody * 20636ebdcee2SJeff Cody */ 20646ebdcee2SJeff Cody int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top, 20656ebdcee2SJeff Cody BlockDriverState *base) 20666ebdcee2SJeff Cody { 20676ebdcee2SJeff Cody BlockDriverState *intermediate; 20686ebdcee2SJeff Cody BlockDriverState *base_bs = NULL; 20696ebdcee2SJeff Cody BlockDriverState *new_top_bs = NULL; 20706ebdcee2SJeff Cody BlkIntermediateStates *intermediate_state, *next; 20716ebdcee2SJeff Cody int ret = -EIO; 20726ebdcee2SJeff Cody 20736ebdcee2SJeff Cody QSIMPLEQ_HEAD(states_to_delete, BlkIntermediateStates) states_to_delete; 20746ebdcee2SJeff Cody QSIMPLEQ_INIT(&states_to_delete); 20756ebdcee2SJeff Cody 20766ebdcee2SJeff Cody if (!top->drv || !base->drv) { 20776ebdcee2SJeff Cody goto exit; 20786ebdcee2SJeff Cody } 20796ebdcee2SJeff Cody 20806ebdcee2SJeff Cody new_top_bs = bdrv_find_overlay(active, top); 20816ebdcee2SJeff Cody 20826ebdcee2SJeff Cody if (new_top_bs == NULL) { 20836ebdcee2SJeff Cody /* we could not find the image above 'top', this is an error */ 20846ebdcee2SJeff Cody goto exit; 20856ebdcee2SJeff Cody } 20866ebdcee2SJeff Cody 20876ebdcee2SJeff Cody /* special case of new_top_bs->backing_hd already pointing to base - nothing 20886ebdcee2SJeff Cody * to do, no intermediate images */ 20896ebdcee2SJeff Cody if (new_top_bs->backing_hd == base) { 20906ebdcee2SJeff Cody ret = 0; 20916ebdcee2SJeff Cody goto exit; 20926ebdcee2SJeff Cody } 20936ebdcee2SJeff Cody 20946ebdcee2SJeff Cody intermediate = top; 20956ebdcee2SJeff Cody 20966ebdcee2SJeff Cody /* now we will go down through the list, and add each BDS we find 20976ebdcee2SJeff Cody * into our deletion queue, until we hit the 'base' 20986ebdcee2SJeff Cody */ 20996ebdcee2SJeff Cody while (intermediate) { 21006ebdcee2SJeff Cody intermediate_state = g_malloc0(sizeof(BlkIntermediateStates)); 21016ebdcee2SJeff Cody intermediate_state->bs = intermediate; 21026ebdcee2SJeff Cody QSIMPLEQ_INSERT_TAIL(&states_to_delete, intermediate_state, entry); 21036ebdcee2SJeff Cody 21046ebdcee2SJeff Cody if (intermediate->backing_hd == base) { 21056ebdcee2SJeff Cody base_bs = intermediate->backing_hd; 21066ebdcee2SJeff Cody break; 21076ebdcee2SJeff Cody } 21086ebdcee2SJeff Cody intermediate = intermediate->backing_hd; 21096ebdcee2SJeff Cody } 21106ebdcee2SJeff Cody if (base_bs == NULL) { 21116ebdcee2SJeff Cody /* something went wrong, we did not end at the base. safely 21126ebdcee2SJeff Cody * unravel everything, and exit with error */ 21136ebdcee2SJeff Cody goto exit; 21146ebdcee2SJeff Cody } 21156ebdcee2SJeff Cody 21166ebdcee2SJeff Cody /* success - we can delete the intermediate states, and link top->base */ 21176ebdcee2SJeff Cody ret = bdrv_change_backing_file(new_top_bs, base_bs->filename, 21186ebdcee2SJeff Cody base_bs->drv ? base_bs->drv->format_name : ""); 21196ebdcee2SJeff Cody if (ret) { 21206ebdcee2SJeff Cody goto exit; 21216ebdcee2SJeff Cody } 21226ebdcee2SJeff Cody new_top_bs->backing_hd = base_bs; 21236ebdcee2SJeff Cody 21246ebdcee2SJeff Cody 21256ebdcee2SJeff Cody QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) { 21266ebdcee2SJeff Cody /* so that bdrv_close() does not recursively close the chain */ 21276ebdcee2SJeff Cody intermediate_state->bs->backing_hd = NULL; 21286ebdcee2SJeff Cody bdrv_delete(intermediate_state->bs); 21296ebdcee2SJeff Cody } 21306ebdcee2SJeff Cody ret = 0; 21316ebdcee2SJeff Cody 21326ebdcee2SJeff Cody exit: 21336ebdcee2SJeff Cody QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) { 21346ebdcee2SJeff Cody g_free(intermediate_state); 21356ebdcee2SJeff Cody } 21366ebdcee2SJeff Cody return ret; 21376ebdcee2SJeff Cody } 21386ebdcee2SJeff Cody 21396ebdcee2SJeff Cody 214071d0770cSaliguori static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset, 214171d0770cSaliguori size_t size) 214271d0770cSaliguori { 214371d0770cSaliguori int64_t len; 214471d0770cSaliguori 214571d0770cSaliguori if (!bdrv_is_inserted(bs)) 214671d0770cSaliguori return -ENOMEDIUM; 214771d0770cSaliguori 214871d0770cSaliguori if (bs->growable) 214971d0770cSaliguori return 0; 215071d0770cSaliguori 215171d0770cSaliguori len = bdrv_getlength(bs); 215271d0770cSaliguori 2153fbb7b4e0SKevin Wolf if (offset < 0) 2154fbb7b4e0SKevin Wolf return -EIO; 2155fbb7b4e0SKevin Wolf 2156fbb7b4e0SKevin Wolf if ((offset > len) || (len - offset < size)) 215771d0770cSaliguori return -EIO; 215871d0770cSaliguori 215971d0770cSaliguori return 0; 216071d0770cSaliguori } 216171d0770cSaliguori 216271d0770cSaliguori static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num, 216371d0770cSaliguori int nb_sectors) 216471d0770cSaliguori { 2165eb5a3165SJes Sorensen return bdrv_check_byte_request(bs, sector_num * BDRV_SECTOR_SIZE, 2166eb5a3165SJes Sorensen nb_sectors * BDRV_SECTOR_SIZE); 216771d0770cSaliguori } 216871d0770cSaliguori 21691c9805a3SStefan Hajnoczi typedef struct RwCo { 21701c9805a3SStefan Hajnoczi BlockDriverState *bs; 21711c9805a3SStefan Hajnoczi int64_t sector_num; 21721c9805a3SStefan Hajnoczi int nb_sectors; 21731c9805a3SStefan Hajnoczi QEMUIOVector *qiov; 21741c9805a3SStefan Hajnoczi bool is_write; 21751c9805a3SStefan Hajnoczi int ret; 21761c9805a3SStefan Hajnoczi } RwCo; 21771c9805a3SStefan Hajnoczi 21781c9805a3SStefan Hajnoczi static void coroutine_fn bdrv_rw_co_entry(void *opaque) 2179fc01f7e7Sbellard { 21801c9805a3SStefan Hajnoczi RwCo *rwco = opaque; 2181fc01f7e7Sbellard 21821c9805a3SStefan Hajnoczi if (!rwco->is_write) { 21831c9805a3SStefan Hajnoczi rwco->ret = bdrv_co_do_readv(rwco->bs, rwco->sector_num, 2184470c0504SStefan Hajnoczi rwco->nb_sectors, rwco->qiov, 0); 21851c9805a3SStefan Hajnoczi } else { 21861c9805a3SStefan Hajnoczi rwco->ret = bdrv_co_do_writev(rwco->bs, rwco->sector_num, 2187f08f2ddaSStefan Hajnoczi rwco->nb_sectors, rwco->qiov, 0); 21881c9805a3SStefan Hajnoczi } 21891c9805a3SStefan Hajnoczi } 2190e7a8a783SKevin Wolf 21911c9805a3SStefan Hajnoczi /* 21928d3b1a2dSKevin Wolf * Process a vectored synchronous request using coroutines 21931c9805a3SStefan Hajnoczi */ 21948d3b1a2dSKevin Wolf static int bdrv_rwv_co(BlockDriverState *bs, int64_t sector_num, 21958d3b1a2dSKevin Wolf QEMUIOVector *qiov, bool is_write) 21961c9805a3SStefan Hajnoczi { 21971c9805a3SStefan Hajnoczi Coroutine *co; 21981c9805a3SStefan Hajnoczi RwCo rwco = { 21991c9805a3SStefan Hajnoczi .bs = bs, 22001c9805a3SStefan Hajnoczi .sector_num = sector_num, 22018d3b1a2dSKevin Wolf .nb_sectors = qiov->size >> BDRV_SECTOR_BITS, 22028d3b1a2dSKevin Wolf .qiov = qiov, 22031c9805a3SStefan Hajnoczi .is_write = is_write, 22041c9805a3SStefan Hajnoczi .ret = NOT_DONE, 22051c9805a3SStefan Hajnoczi }; 22068d3b1a2dSKevin Wolf assert((qiov->size & (BDRV_SECTOR_SIZE - 1)) == 0); 22071c9805a3SStefan Hajnoczi 2208498e386cSZhi Yong Wu /** 2209498e386cSZhi Yong Wu * In sync call context, when the vcpu is blocked, this throttling timer 2210498e386cSZhi Yong Wu * will not fire; so the I/O throttling function has to be disabled here 2211498e386cSZhi Yong Wu * if it has been enabled. 2212498e386cSZhi Yong Wu */ 2213498e386cSZhi Yong Wu if (bs->io_limits_enabled) { 2214498e386cSZhi Yong Wu fprintf(stderr, "Disabling I/O throttling on '%s' due " 2215498e386cSZhi Yong Wu "to synchronous I/O.\n", bdrv_get_device_name(bs)); 2216498e386cSZhi Yong Wu bdrv_io_limits_disable(bs); 2217498e386cSZhi Yong Wu } 2218498e386cSZhi Yong Wu 22191c9805a3SStefan Hajnoczi if (qemu_in_coroutine()) { 22201c9805a3SStefan Hajnoczi /* Fast-path if already in coroutine context */ 22211c9805a3SStefan Hajnoczi bdrv_rw_co_entry(&rwco); 22221c9805a3SStefan Hajnoczi } else { 22231c9805a3SStefan Hajnoczi co = qemu_coroutine_create(bdrv_rw_co_entry); 22241c9805a3SStefan Hajnoczi qemu_coroutine_enter(co, &rwco); 22251c9805a3SStefan Hajnoczi while (rwco.ret == NOT_DONE) { 22261c9805a3SStefan Hajnoczi qemu_aio_wait(); 22271c9805a3SStefan Hajnoczi } 22281c9805a3SStefan Hajnoczi } 22291c9805a3SStefan Hajnoczi return rwco.ret; 2230e7a8a783SKevin Wolf } 2231e7a8a783SKevin Wolf 22328d3b1a2dSKevin Wolf /* 22338d3b1a2dSKevin Wolf * Process a synchronous request using coroutines 22348d3b1a2dSKevin Wolf */ 22358d3b1a2dSKevin Wolf static int bdrv_rw_co(BlockDriverState *bs, int64_t sector_num, uint8_t *buf, 22368d3b1a2dSKevin Wolf int nb_sectors, bool is_write) 22378d3b1a2dSKevin Wolf { 22388d3b1a2dSKevin Wolf QEMUIOVector qiov; 22398d3b1a2dSKevin Wolf struct iovec iov = { 22408d3b1a2dSKevin Wolf .iov_base = (void *)buf, 22418d3b1a2dSKevin Wolf .iov_len = nb_sectors * BDRV_SECTOR_SIZE, 22428d3b1a2dSKevin Wolf }; 22438d3b1a2dSKevin Wolf 22448d3b1a2dSKevin Wolf qemu_iovec_init_external(&qiov, &iov, 1); 22458d3b1a2dSKevin Wolf return bdrv_rwv_co(bs, sector_num, &qiov, is_write); 22468d3b1a2dSKevin Wolf } 22478d3b1a2dSKevin Wolf 22481c9805a3SStefan Hajnoczi /* return < 0 if error. See bdrv_write() for the return codes */ 22491c9805a3SStefan Hajnoczi int bdrv_read(BlockDriverState *bs, int64_t sector_num, 22501c9805a3SStefan Hajnoczi uint8_t *buf, int nb_sectors) 22511c9805a3SStefan Hajnoczi { 22521c9805a3SStefan Hajnoczi return bdrv_rw_co(bs, sector_num, buf, nb_sectors, false); 225383f64091Sbellard } 2254fc01f7e7Sbellard 225507d27a44SMarkus Armbruster /* Just like bdrv_read(), but with I/O throttling temporarily disabled */ 225607d27a44SMarkus Armbruster int bdrv_read_unthrottled(BlockDriverState *bs, int64_t sector_num, 225707d27a44SMarkus Armbruster uint8_t *buf, int nb_sectors) 225807d27a44SMarkus Armbruster { 225907d27a44SMarkus Armbruster bool enabled; 226007d27a44SMarkus Armbruster int ret; 226107d27a44SMarkus Armbruster 226207d27a44SMarkus Armbruster enabled = bs->io_limits_enabled; 226307d27a44SMarkus Armbruster bs->io_limits_enabled = false; 226407d27a44SMarkus Armbruster ret = bdrv_read(bs, 0, buf, 1); 226507d27a44SMarkus Armbruster bs->io_limits_enabled = enabled; 226607d27a44SMarkus Armbruster return ret; 226707d27a44SMarkus Armbruster } 226807d27a44SMarkus Armbruster 226919cb3738Sbellard /* Return < 0 if error. Important errors are: 227019cb3738Sbellard -EIO generic I/O error (may happen for all errors) 227119cb3738Sbellard -ENOMEDIUM No media inserted. 227219cb3738Sbellard -EINVAL Invalid sector number or nb_sectors 227319cb3738Sbellard -EACCES Trying to write a read-only device 227419cb3738Sbellard */ 2275fc01f7e7Sbellard int bdrv_write(BlockDriverState *bs, int64_t sector_num, 2276fc01f7e7Sbellard const uint8_t *buf, int nb_sectors) 2277fc01f7e7Sbellard { 22781c9805a3SStefan Hajnoczi return bdrv_rw_co(bs, sector_num, (uint8_t *)buf, nb_sectors, true); 227983f64091Sbellard } 228083f64091Sbellard 22818d3b1a2dSKevin Wolf int bdrv_writev(BlockDriverState *bs, int64_t sector_num, QEMUIOVector *qiov) 22828d3b1a2dSKevin Wolf { 22838d3b1a2dSKevin Wolf return bdrv_rwv_co(bs, sector_num, qiov, true); 22848d3b1a2dSKevin Wolf } 22858d3b1a2dSKevin Wolf 2286eda578e5Saliguori int bdrv_pread(BlockDriverState *bs, int64_t offset, 2287eda578e5Saliguori void *buf, int count1) 228883f64091Sbellard { 22896ea44308SJan Kiszka uint8_t tmp_buf[BDRV_SECTOR_SIZE]; 229083f64091Sbellard int len, nb_sectors, count; 229183f64091Sbellard int64_t sector_num; 22929a8c4cceSKevin Wolf int ret; 229383f64091Sbellard 229483f64091Sbellard count = count1; 229583f64091Sbellard /* first read to align to sector start */ 22966ea44308SJan Kiszka len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1); 229783f64091Sbellard if (len > count) 229883f64091Sbellard len = count; 22996ea44308SJan Kiszka sector_num = offset >> BDRV_SECTOR_BITS; 230083f64091Sbellard if (len > 0) { 23019a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) 23029a8c4cceSKevin Wolf return ret; 23036ea44308SJan Kiszka memcpy(buf, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), len); 230483f64091Sbellard count -= len; 230583f64091Sbellard if (count == 0) 230683f64091Sbellard return count1; 230783f64091Sbellard sector_num++; 230883f64091Sbellard buf += len; 230983f64091Sbellard } 231083f64091Sbellard 231183f64091Sbellard /* read the sectors "in place" */ 23126ea44308SJan Kiszka nb_sectors = count >> BDRV_SECTOR_BITS; 231383f64091Sbellard if (nb_sectors > 0) { 23149a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, buf, nb_sectors)) < 0) 23159a8c4cceSKevin Wolf return ret; 231683f64091Sbellard sector_num += nb_sectors; 23176ea44308SJan Kiszka len = nb_sectors << BDRV_SECTOR_BITS; 231883f64091Sbellard buf += len; 231983f64091Sbellard count -= len; 232083f64091Sbellard } 232183f64091Sbellard 232283f64091Sbellard /* add data from the last sector */ 232383f64091Sbellard if (count > 0) { 23249a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) 23259a8c4cceSKevin Wolf return ret; 232683f64091Sbellard memcpy(buf, tmp_buf, count); 232783f64091Sbellard } 232883f64091Sbellard return count1; 232983f64091Sbellard } 233083f64091Sbellard 23318d3b1a2dSKevin Wolf int bdrv_pwritev(BlockDriverState *bs, int64_t offset, QEMUIOVector *qiov) 233283f64091Sbellard { 23336ea44308SJan Kiszka uint8_t tmp_buf[BDRV_SECTOR_SIZE]; 233483f64091Sbellard int len, nb_sectors, count; 233583f64091Sbellard int64_t sector_num; 23369a8c4cceSKevin Wolf int ret; 233783f64091Sbellard 23388d3b1a2dSKevin Wolf count = qiov->size; 23398d3b1a2dSKevin Wolf 234083f64091Sbellard /* first write to align to sector start */ 23416ea44308SJan Kiszka len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1); 234283f64091Sbellard if (len > count) 234383f64091Sbellard len = count; 23446ea44308SJan Kiszka sector_num = offset >> BDRV_SECTOR_BITS; 234583f64091Sbellard if (len > 0) { 23469a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) 23479a8c4cceSKevin Wolf return ret; 23488d3b1a2dSKevin Wolf qemu_iovec_to_buf(qiov, 0, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), 23498d3b1a2dSKevin Wolf len); 23509a8c4cceSKevin Wolf if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0) 23519a8c4cceSKevin Wolf return ret; 235283f64091Sbellard count -= len; 235383f64091Sbellard if (count == 0) 23548d3b1a2dSKevin Wolf return qiov->size; 235583f64091Sbellard sector_num++; 235683f64091Sbellard } 235783f64091Sbellard 235883f64091Sbellard /* write the sectors "in place" */ 23596ea44308SJan Kiszka nb_sectors = count >> BDRV_SECTOR_BITS; 236083f64091Sbellard if (nb_sectors > 0) { 23618d3b1a2dSKevin Wolf QEMUIOVector qiov_inplace; 23628d3b1a2dSKevin Wolf 23638d3b1a2dSKevin Wolf qemu_iovec_init(&qiov_inplace, qiov->niov); 23648d3b1a2dSKevin Wolf qemu_iovec_concat(&qiov_inplace, qiov, len, 23658d3b1a2dSKevin Wolf nb_sectors << BDRV_SECTOR_BITS); 23668d3b1a2dSKevin Wolf ret = bdrv_writev(bs, sector_num, &qiov_inplace); 23678d3b1a2dSKevin Wolf qemu_iovec_destroy(&qiov_inplace); 23688d3b1a2dSKevin Wolf if (ret < 0) { 23699a8c4cceSKevin Wolf return ret; 23708d3b1a2dSKevin Wolf } 23718d3b1a2dSKevin Wolf 237283f64091Sbellard sector_num += nb_sectors; 23736ea44308SJan Kiszka len = nb_sectors << BDRV_SECTOR_BITS; 237483f64091Sbellard count -= len; 237583f64091Sbellard } 237683f64091Sbellard 237783f64091Sbellard /* add data from the last sector */ 237883f64091Sbellard if (count > 0) { 23799a8c4cceSKevin Wolf if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) 23809a8c4cceSKevin Wolf return ret; 23818d3b1a2dSKevin Wolf qemu_iovec_to_buf(qiov, qiov->size - count, tmp_buf, count); 23829a8c4cceSKevin Wolf if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0) 23839a8c4cceSKevin Wolf return ret; 238483f64091Sbellard } 23858d3b1a2dSKevin Wolf return qiov->size; 23868d3b1a2dSKevin Wolf } 23878d3b1a2dSKevin Wolf 23888d3b1a2dSKevin Wolf int bdrv_pwrite(BlockDriverState *bs, int64_t offset, 23898d3b1a2dSKevin Wolf const void *buf, int count1) 23908d3b1a2dSKevin Wolf { 23918d3b1a2dSKevin Wolf QEMUIOVector qiov; 23928d3b1a2dSKevin Wolf struct iovec iov = { 23938d3b1a2dSKevin Wolf .iov_base = (void *) buf, 23948d3b1a2dSKevin Wolf .iov_len = count1, 23958d3b1a2dSKevin Wolf }; 23968d3b1a2dSKevin Wolf 23978d3b1a2dSKevin Wolf qemu_iovec_init_external(&qiov, &iov, 1); 23988d3b1a2dSKevin Wolf return bdrv_pwritev(bs, offset, &qiov); 239983f64091Sbellard } 240083f64091Sbellard 2401f08145feSKevin Wolf /* 2402f08145feSKevin Wolf * Writes to the file and ensures that no writes are reordered across this 2403f08145feSKevin Wolf * request (acts as a barrier) 2404f08145feSKevin Wolf * 2405f08145feSKevin Wolf * Returns 0 on success, -errno in error cases. 2406f08145feSKevin Wolf */ 2407f08145feSKevin Wolf int bdrv_pwrite_sync(BlockDriverState *bs, int64_t offset, 2408f08145feSKevin Wolf const void *buf, int count) 2409f08145feSKevin Wolf { 2410f08145feSKevin Wolf int ret; 2411f08145feSKevin Wolf 2412f08145feSKevin Wolf ret = bdrv_pwrite(bs, offset, buf, count); 2413f08145feSKevin Wolf if (ret < 0) { 2414f08145feSKevin Wolf return ret; 2415f08145feSKevin Wolf } 2416f08145feSKevin Wolf 2417f05fa4adSPaolo Bonzini /* No flush needed for cache modes that already do it */ 2418f05fa4adSPaolo Bonzini if (bs->enable_write_cache) { 2419f08145feSKevin Wolf bdrv_flush(bs); 2420f08145feSKevin Wolf } 2421f08145feSKevin Wolf 2422f08145feSKevin Wolf return 0; 2423f08145feSKevin Wolf } 2424f08145feSKevin Wolf 2425470c0504SStefan Hajnoczi static int coroutine_fn bdrv_co_do_copy_on_readv(BlockDriverState *bs, 2426ab185921SStefan Hajnoczi int64_t sector_num, int nb_sectors, QEMUIOVector *qiov) 2427ab185921SStefan Hajnoczi { 2428ab185921SStefan Hajnoczi /* Perform I/O through a temporary buffer so that users who scribble over 2429ab185921SStefan Hajnoczi * their read buffer while the operation is in progress do not end up 2430ab185921SStefan Hajnoczi * modifying the image file. This is critical for zero-copy guest I/O 2431ab185921SStefan Hajnoczi * where anything might happen inside guest memory. 2432ab185921SStefan Hajnoczi */ 2433ab185921SStefan Hajnoczi void *bounce_buffer; 2434ab185921SStefan Hajnoczi 243579c053bdSStefan Hajnoczi BlockDriver *drv = bs->drv; 2436ab185921SStefan Hajnoczi struct iovec iov; 2437ab185921SStefan Hajnoczi QEMUIOVector bounce_qiov; 2438ab185921SStefan Hajnoczi int64_t cluster_sector_num; 2439ab185921SStefan Hajnoczi int cluster_nb_sectors; 2440ab185921SStefan Hajnoczi size_t skip_bytes; 2441ab185921SStefan Hajnoczi int ret; 2442ab185921SStefan Hajnoczi 2443ab185921SStefan Hajnoczi /* Cover entire cluster so no additional backing file I/O is required when 2444ab185921SStefan Hajnoczi * allocating cluster in the image file. 2445ab185921SStefan Hajnoczi */ 2446343bded4SPaolo Bonzini bdrv_round_to_clusters(bs, sector_num, nb_sectors, 2447ab185921SStefan Hajnoczi &cluster_sector_num, &cluster_nb_sectors); 2448ab185921SStefan Hajnoczi 2449470c0504SStefan Hajnoczi trace_bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors, 2450ab185921SStefan Hajnoczi cluster_sector_num, cluster_nb_sectors); 2451ab185921SStefan Hajnoczi 2452ab185921SStefan Hajnoczi iov.iov_len = cluster_nb_sectors * BDRV_SECTOR_SIZE; 2453ab185921SStefan Hajnoczi iov.iov_base = bounce_buffer = qemu_blockalign(bs, iov.iov_len); 2454ab185921SStefan Hajnoczi qemu_iovec_init_external(&bounce_qiov, &iov, 1); 2455ab185921SStefan Hajnoczi 245679c053bdSStefan Hajnoczi ret = drv->bdrv_co_readv(bs, cluster_sector_num, cluster_nb_sectors, 2457ab185921SStefan Hajnoczi &bounce_qiov); 2458ab185921SStefan Hajnoczi if (ret < 0) { 2459ab185921SStefan Hajnoczi goto err; 2460ab185921SStefan Hajnoczi } 2461ab185921SStefan Hajnoczi 246279c053bdSStefan Hajnoczi if (drv->bdrv_co_write_zeroes && 246379c053bdSStefan Hajnoczi buffer_is_zero(bounce_buffer, iov.iov_len)) { 2464621f0589SKevin Wolf ret = bdrv_co_do_write_zeroes(bs, cluster_sector_num, 246579c053bdSStefan Hajnoczi cluster_nb_sectors); 246679c053bdSStefan Hajnoczi } else { 2467f05fa4adSPaolo Bonzini /* This does not change the data on the disk, it is not necessary 2468f05fa4adSPaolo Bonzini * to flush even in cache=writethrough mode. 2469f05fa4adSPaolo Bonzini */ 247079c053bdSStefan Hajnoczi ret = drv->bdrv_co_writev(bs, cluster_sector_num, cluster_nb_sectors, 2471ab185921SStefan Hajnoczi &bounce_qiov); 247279c053bdSStefan Hajnoczi } 247379c053bdSStefan Hajnoczi 2474ab185921SStefan Hajnoczi if (ret < 0) { 2475ab185921SStefan Hajnoczi /* It might be okay to ignore write errors for guest requests. If this 2476ab185921SStefan Hajnoczi * is a deliberate copy-on-read then we don't want to ignore the error. 2477ab185921SStefan Hajnoczi * Simply report it in all cases. 2478ab185921SStefan Hajnoczi */ 2479ab185921SStefan Hajnoczi goto err; 2480ab185921SStefan Hajnoczi } 2481ab185921SStefan Hajnoczi 2482ab185921SStefan Hajnoczi skip_bytes = (sector_num - cluster_sector_num) * BDRV_SECTOR_SIZE; 248303396148SMichael Tokarev qemu_iovec_from_buf(qiov, 0, bounce_buffer + skip_bytes, 2484ab185921SStefan Hajnoczi nb_sectors * BDRV_SECTOR_SIZE); 2485ab185921SStefan Hajnoczi 2486ab185921SStefan Hajnoczi err: 2487ab185921SStefan Hajnoczi qemu_vfree(bounce_buffer); 2488ab185921SStefan Hajnoczi return ret; 2489ab185921SStefan Hajnoczi } 2490ab185921SStefan Hajnoczi 2491c5fbe571SStefan Hajnoczi /* 2492c5fbe571SStefan Hajnoczi * Handle a read request in coroutine context 2493c5fbe571SStefan Hajnoczi */ 2494c5fbe571SStefan Hajnoczi static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs, 2495470c0504SStefan Hajnoczi int64_t sector_num, int nb_sectors, QEMUIOVector *qiov, 2496470c0504SStefan Hajnoczi BdrvRequestFlags flags) 2497da1fa91dSKevin Wolf { 2498da1fa91dSKevin Wolf BlockDriver *drv = bs->drv; 2499dbffbdcfSStefan Hajnoczi BdrvTrackedRequest req; 2500dbffbdcfSStefan Hajnoczi int ret; 2501da1fa91dSKevin Wolf 2502da1fa91dSKevin Wolf if (!drv) { 2503da1fa91dSKevin Wolf return -ENOMEDIUM; 2504da1fa91dSKevin Wolf } 2505da1fa91dSKevin Wolf if (bdrv_check_request(bs, sector_num, nb_sectors)) { 2506da1fa91dSKevin Wolf return -EIO; 2507da1fa91dSKevin Wolf } 2508da1fa91dSKevin Wolf 250998f90dbaSZhi Yong Wu /* throttling disk read I/O */ 251098f90dbaSZhi Yong Wu if (bs->io_limits_enabled) { 251198f90dbaSZhi Yong Wu bdrv_io_limits_intercept(bs, false, nb_sectors); 251298f90dbaSZhi Yong Wu } 251398f90dbaSZhi Yong Wu 2514f4658285SStefan Hajnoczi if (bs->copy_on_read) { 2515470c0504SStefan Hajnoczi flags |= BDRV_REQ_COPY_ON_READ; 2516470c0504SStefan Hajnoczi } 2517470c0504SStefan Hajnoczi if (flags & BDRV_REQ_COPY_ON_READ) { 2518470c0504SStefan Hajnoczi bs->copy_on_read_in_flight++; 2519470c0504SStefan Hajnoczi } 2520470c0504SStefan Hajnoczi 2521470c0504SStefan Hajnoczi if (bs->copy_on_read_in_flight) { 2522f4658285SStefan Hajnoczi wait_for_overlapping_requests(bs, sector_num, nb_sectors); 2523f4658285SStefan Hajnoczi } 2524f4658285SStefan Hajnoczi 2525dbffbdcfSStefan Hajnoczi tracked_request_begin(&req, bs, sector_num, nb_sectors, false); 2526ab185921SStefan Hajnoczi 2527470c0504SStefan Hajnoczi if (flags & BDRV_REQ_COPY_ON_READ) { 2528ab185921SStefan Hajnoczi int pnum; 2529ab185921SStefan Hajnoczi 2530ab185921SStefan Hajnoczi ret = bdrv_co_is_allocated(bs, sector_num, nb_sectors, &pnum); 2531ab185921SStefan Hajnoczi if (ret < 0) { 2532ab185921SStefan Hajnoczi goto out; 2533ab185921SStefan Hajnoczi } 2534ab185921SStefan Hajnoczi 2535ab185921SStefan Hajnoczi if (!ret || pnum != nb_sectors) { 2536470c0504SStefan Hajnoczi ret = bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors, qiov); 2537ab185921SStefan Hajnoczi goto out; 2538ab185921SStefan Hajnoczi } 2539ab185921SStefan Hajnoczi } 2540ab185921SStefan Hajnoczi 2541dbffbdcfSStefan Hajnoczi ret = drv->bdrv_co_readv(bs, sector_num, nb_sectors, qiov); 2542ab185921SStefan Hajnoczi 2543ab185921SStefan Hajnoczi out: 2544dbffbdcfSStefan Hajnoczi tracked_request_end(&req); 2545470c0504SStefan Hajnoczi 2546470c0504SStefan Hajnoczi if (flags & BDRV_REQ_COPY_ON_READ) { 2547470c0504SStefan Hajnoczi bs->copy_on_read_in_flight--; 2548470c0504SStefan Hajnoczi } 2549470c0504SStefan Hajnoczi 2550dbffbdcfSStefan Hajnoczi return ret; 2551da1fa91dSKevin Wolf } 2552da1fa91dSKevin Wolf 2553c5fbe571SStefan Hajnoczi int coroutine_fn bdrv_co_readv(BlockDriverState *bs, int64_t sector_num, 2554da1fa91dSKevin Wolf int nb_sectors, QEMUIOVector *qiov) 2555da1fa91dSKevin Wolf { 2556c5fbe571SStefan Hajnoczi trace_bdrv_co_readv(bs, sector_num, nb_sectors); 2557da1fa91dSKevin Wolf 2558470c0504SStefan Hajnoczi return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov, 0); 2559470c0504SStefan Hajnoczi } 2560470c0504SStefan Hajnoczi 2561470c0504SStefan Hajnoczi int coroutine_fn bdrv_co_copy_on_readv(BlockDriverState *bs, 2562470c0504SStefan Hajnoczi int64_t sector_num, int nb_sectors, QEMUIOVector *qiov) 2563470c0504SStefan Hajnoczi { 2564470c0504SStefan Hajnoczi trace_bdrv_co_copy_on_readv(bs, sector_num, nb_sectors); 2565470c0504SStefan Hajnoczi 2566470c0504SStefan Hajnoczi return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov, 2567470c0504SStefan Hajnoczi BDRV_REQ_COPY_ON_READ); 2568c5fbe571SStefan Hajnoczi } 2569c5fbe571SStefan Hajnoczi 2570f08f2ddaSStefan Hajnoczi static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs, 2571f08f2ddaSStefan Hajnoczi int64_t sector_num, int nb_sectors) 2572f08f2ddaSStefan Hajnoczi { 2573f08f2ddaSStefan Hajnoczi BlockDriver *drv = bs->drv; 2574f08f2ddaSStefan Hajnoczi QEMUIOVector qiov; 2575f08f2ddaSStefan Hajnoczi struct iovec iov; 2576f08f2ddaSStefan Hajnoczi int ret; 2577f08f2ddaSStefan Hajnoczi 2578621f0589SKevin Wolf /* TODO Emulate only part of misaligned requests instead of letting block 2579621f0589SKevin Wolf * drivers return -ENOTSUP and emulate everything */ 2580621f0589SKevin Wolf 2581f08f2ddaSStefan Hajnoczi /* First try the efficient write zeroes operation */ 2582f08f2ddaSStefan Hajnoczi if (drv->bdrv_co_write_zeroes) { 2583621f0589SKevin Wolf ret = drv->bdrv_co_write_zeroes(bs, sector_num, nb_sectors); 2584621f0589SKevin Wolf if (ret != -ENOTSUP) { 2585621f0589SKevin Wolf return ret; 2586621f0589SKevin Wolf } 2587f08f2ddaSStefan Hajnoczi } 2588f08f2ddaSStefan Hajnoczi 2589f08f2ddaSStefan Hajnoczi /* Fall back to bounce buffer if write zeroes is unsupported */ 2590f08f2ddaSStefan Hajnoczi iov.iov_len = nb_sectors * BDRV_SECTOR_SIZE; 2591f08f2ddaSStefan Hajnoczi iov.iov_base = qemu_blockalign(bs, iov.iov_len); 2592f08f2ddaSStefan Hajnoczi memset(iov.iov_base, 0, iov.iov_len); 2593f08f2ddaSStefan Hajnoczi qemu_iovec_init_external(&qiov, &iov, 1); 2594f08f2ddaSStefan Hajnoczi 2595f08f2ddaSStefan Hajnoczi ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, &qiov); 2596f08f2ddaSStefan Hajnoczi 2597f08f2ddaSStefan Hajnoczi qemu_vfree(iov.iov_base); 2598f08f2ddaSStefan Hajnoczi return ret; 2599f08f2ddaSStefan Hajnoczi } 2600f08f2ddaSStefan Hajnoczi 2601c5fbe571SStefan Hajnoczi /* 2602c5fbe571SStefan Hajnoczi * Handle a write request in coroutine context 2603c5fbe571SStefan Hajnoczi */ 2604c5fbe571SStefan Hajnoczi static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs, 2605f08f2ddaSStefan Hajnoczi int64_t sector_num, int nb_sectors, QEMUIOVector *qiov, 2606f08f2ddaSStefan Hajnoczi BdrvRequestFlags flags) 2607c5fbe571SStefan Hajnoczi { 2608c5fbe571SStefan Hajnoczi BlockDriver *drv = bs->drv; 2609dbffbdcfSStefan Hajnoczi BdrvTrackedRequest req; 26106b7cb247SStefan Hajnoczi int ret; 2611da1fa91dSKevin Wolf 2612da1fa91dSKevin Wolf if (!bs->drv) { 2613da1fa91dSKevin Wolf return -ENOMEDIUM; 2614da1fa91dSKevin Wolf } 2615da1fa91dSKevin Wolf if (bs->read_only) { 2616da1fa91dSKevin Wolf return -EACCES; 2617da1fa91dSKevin Wolf } 2618da1fa91dSKevin Wolf if (bdrv_check_request(bs, sector_num, nb_sectors)) { 2619da1fa91dSKevin Wolf return -EIO; 2620da1fa91dSKevin Wolf } 2621da1fa91dSKevin Wolf 262298f90dbaSZhi Yong Wu /* throttling disk write I/O */ 262398f90dbaSZhi Yong Wu if (bs->io_limits_enabled) { 262498f90dbaSZhi Yong Wu bdrv_io_limits_intercept(bs, true, nb_sectors); 262598f90dbaSZhi Yong Wu } 262698f90dbaSZhi Yong Wu 2627470c0504SStefan Hajnoczi if (bs->copy_on_read_in_flight) { 2628f4658285SStefan Hajnoczi wait_for_overlapping_requests(bs, sector_num, nb_sectors); 2629f4658285SStefan Hajnoczi } 2630f4658285SStefan Hajnoczi 2631dbffbdcfSStefan Hajnoczi tracked_request_begin(&req, bs, sector_num, nb_sectors, true); 2632dbffbdcfSStefan Hajnoczi 2633f08f2ddaSStefan Hajnoczi if (flags & BDRV_REQ_ZERO_WRITE) { 2634f08f2ddaSStefan Hajnoczi ret = bdrv_co_do_write_zeroes(bs, sector_num, nb_sectors); 2635f08f2ddaSStefan Hajnoczi } else { 26366b7cb247SStefan Hajnoczi ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, qiov); 2637f08f2ddaSStefan Hajnoczi } 26386b7cb247SStefan Hajnoczi 2639f05fa4adSPaolo Bonzini if (ret == 0 && !bs->enable_write_cache) { 2640f05fa4adSPaolo Bonzini ret = bdrv_co_flush(bs); 2641f05fa4adSPaolo Bonzini } 2642f05fa4adSPaolo Bonzini 2643da1fa91dSKevin Wolf if (bs->dirty_bitmap) { 26441755da16SPaolo Bonzini bdrv_set_dirty(bs, sector_num, nb_sectors); 2645da1fa91dSKevin Wolf } 2646da1fa91dSKevin Wolf 2647da1fa91dSKevin Wolf if (bs->wr_highest_sector < sector_num + nb_sectors - 1) { 2648da1fa91dSKevin Wolf bs->wr_highest_sector = sector_num + nb_sectors - 1; 2649da1fa91dSKevin Wolf } 2650da1fa91dSKevin Wolf 2651dbffbdcfSStefan Hajnoczi tracked_request_end(&req); 2652dbffbdcfSStefan Hajnoczi 26536b7cb247SStefan Hajnoczi return ret; 2654da1fa91dSKevin Wolf } 2655da1fa91dSKevin Wolf 2656c5fbe571SStefan Hajnoczi int coroutine_fn bdrv_co_writev(BlockDriverState *bs, int64_t sector_num, 2657c5fbe571SStefan Hajnoczi int nb_sectors, QEMUIOVector *qiov) 2658c5fbe571SStefan Hajnoczi { 2659c5fbe571SStefan Hajnoczi trace_bdrv_co_writev(bs, sector_num, nb_sectors); 2660c5fbe571SStefan Hajnoczi 2661f08f2ddaSStefan Hajnoczi return bdrv_co_do_writev(bs, sector_num, nb_sectors, qiov, 0); 2662f08f2ddaSStefan Hajnoczi } 2663f08f2ddaSStefan Hajnoczi 2664f08f2ddaSStefan Hajnoczi int coroutine_fn bdrv_co_write_zeroes(BlockDriverState *bs, 2665f08f2ddaSStefan Hajnoczi int64_t sector_num, int nb_sectors) 2666f08f2ddaSStefan Hajnoczi { 2667f08f2ddaSStefan Hajnoczi trace_bdrv_co_write_zeroes(bs, sector_num, nb_sectors); 2668f08f2ddaSStefan Hajnoczi 2669f08f2ddaSStefan Hajnoczi return bdrv_co_do_writev(bs, sector_num, nb_sectors, NULL, 2670f08f2ddaSStefan Hajnoczi BDRV_REQ_ZERO_WRITE); 2671c5fbe571SStefan Hajnoczi } 2672c5fbe571SStefan Hajnoczi 267383f64091Sbellard /** 267483f64091Sbellard * Truncate file to 'offset' bytes (needed only for file protocols) 267583f64091Sbellard */ 267683f64091Sbellard int bdrv_truncate(BlockDriverState *bs, int64_t offset) 267783f64091Sbellard { 267883f64091Sbellard BlockDriver *drv = bs->drv; 267951762288SStefan Hajnoczi int ret; 268083f64091Sbellard if (!drv) 268119cb3738Sbellard return -ENOMEDIUM; 268283f64091Sbellard if (!drv->bdrv_truncate) 268383f64091Sbellard return -ENOTSUP; 268459f2689dSNaphtali Sprei if (bs->read_only) 268559f2689dSNaphtali Sprei return -EACCES; 26868591675fSMarcelo Tosatti if (bdrv_in_use(bs)) 26878591675fSMarcelo Tosatti return -EBUSY; 268851762288SStefan Hajnoczi ret = drv->bdrv_truncate(bs, offset); 268951762288SStefan Hajnoczi if (ret == 0) { 269051762288SStefan Hajnoczi ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS); 2691145feb17SMarkus Armbruster bdrv_dev_resize_cb(bs); 269251762288SStefan Hajnoczi } 269351762288SStefan Hajnoczi return ret; 269483f64091Sbellard } 269583f64091Sbellard 269683f64091Sbellard /** 26974a1d5e1fSFam Zheng * Length of a allocated file in bytes. Sparse files are counted by actual 26984a1d5e1fSFam Zheng * allocated space. Return < 0 if error or unknown. 26994a1d5e1fSFam Zheng */ 27004a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs) 27014a1d5e1fSFam Zheng { 27024a1d5e1fSFam Zheng BlockDriver *drv = bs->drv; 27034a1d5e1fSFam Zheng if (!drv) { 27044a1d5e1fSFam Zheng return -ENOMEDIUM; 27054a1d5e1fSFam Zheng } 27064a1d5e1fSFam Zheng if (drv->bdrv_get_allocated_file_size) { 27074a1d5e1fSFam Zheng return drv->bdrv_get_allocated_file_size(bs); 27084a1d5e1fSFam Zheng } 27094a1d5e1fSFam Zheng if (bs->file) { 27104a1d5e1fSFam Zheng return bdrv_get_allocated_file_size(bs->file); 27114a1d5e1fSFam Zheng } 27124a1d5e1fSFam Zheng return -ENOTSUP; 27134a1d5e1fSFam Zheng } 27144a1d5e1fSFam Zheng 27154a1d5e1fSFam Zheng /** 271683f64091Sbellard * Length of a file in bytes. Return < 0 if error or unknown. 271783f64091Sbellard */ 271883f64091Sbellard int64_t bdrv_getlength(BlockDriverState *bs) 271983f64091Sbellard { 272083f64091Sbellard BlockDriver *drv = bs->drv; 272183f64091Sbellard if (!drv) 272219cb3738Sbellard return -ENOMEDIUM; 272351762288SStefan Hajnoczi 27242c6942faSMarkus Armbruster if (bs->growable || bdrv_dev_has_removable_media(bs)) { 272546a4e4e6SStefan Hajnoczi if (drv->bdrv_getlength) { 272683f64091Sbellard return drv->bdrv_getlength(bs); 2727fc01f7e7Sbellard } 272846a4e4e6SStefan Hajnoczi } 272946a4e4e6SStefan Hajnoczi return bs->total_sectors * BDRV_SECTOR_SIZE; 273046a4e4e6SStefan Hajnoczi } 2731fc01f7e7Sbellard 273219cb3738Sbellard /* return 0 as number of sectors if no device present or error */ 273396b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) 2734fc01f7e7Sbellard { 273519cb3738Sbellard int64_t length; 273619cb3738Sbellard length = bdrv_getlength(bs); 273719cb3738Sbellard if (length < 0) 273819cb3738Sbellard length = 0; 273919cb3738Sbellard else 27406ea44308SJan Kiszka length = length >> BDRV_SECTOR_BITS; 274119cb3738Sbellard *nb_sectors_ptr = length; 2742fc01f7e7Sbellard } 2743cf98951bSbellard 27440563e191SZhi Yong Wu /* throttling disk io limits */ 27450563e191SZhi Yong Wu void bdrv_set_io_limits(BlockDriverState *bs, 27460563e191SZhi Yong Wu BlockIOLimit *io_limits) 27470563e191SZhi Yong Wu { 27480563e191SZhi Yong Wu bs->io_limits = *io_limits; 27490563e191SZhi Yong Wu bs->io_limits_enabled = bdrv_io_limits_enabled(bs); 27500563e191SZhi Yong Wu } 27510563e191SZhi Yong Wu 2752ff06f5f3SPaolo Bonzini void bdrv_set_on_error(BlockDriverState *bs, BlockdevOnError on_read_error, 2753ff06f5f3SPaolo Bonzini BlockdevOnError on_write_error) 2754abd7f68dSMarkus Armbruster { 2755abd7f68dSMarkus Armbruster bs->on_read_error = on_read_error; 2756abd7f68dSMarkus Armbruster bs->on_write_error = on_write_error; 2757abd7f68dSMarkus Armbruster } 2758abd7f68dSMarkus Armbruster 27591ceee0d5SPaolo Bonzini BlockdevOnError bdrv_get_on_error(BlockDriverState *bs, bool is_read) 2760abd7f68dSMarkus Armbruster { 2761abd7f68dSMarkus Armbruster return is_read ? bs->on_read_error : bs->on_write_error; 2762abd7f68dSMarkus Armbruster } 2763abd7f68dSMarkus Armbruster 27643e1caa5fSPaolo Bonzini BlockErrorAction bdrv_get_error_action(BlockDriverState *bs, bool is_read, int error) 27653e1caa5fSPaolo Bonzini { 27663e1caa5fSPaolo Bonzini BlockdevOnError on_err = is_read ? bs->on_read_error : bs->on_write_error; 27673e1caa5fSPaolo Bonzini 27683e1caa5fSPaolo Bonzini switch (on_err) { 27693e1caa5fSPaolo Bonzini case BLOCKDEV_ON_ERROR_ENOSPC: 27703e1caa5fSPaolo Bonzini return (error == ENOSPC) ? BDRV_ACTION_STOP : BDRV_ACTION_REPORT; 27713e1caa5fSPaolo Bonzini case BLOCKDEV_ON_ERROR_STOP: 27723e1caa5fSPaolo Bonzini return BDRV_ACTION_STOP; 27733e1caa5fSPaolo Bonzini case BLOCKDEV_ON_ERROR_REPORT: 27743e1caa5fSPaolo Bonzini return BDRV_ACTION_REPORT; 27753e1caa5fSPaolo Bonzini case BLOCKDEV_ON_ERROR_IGNORE: 27763e1caa5fSPaolo Bonzini return BDRV_ACTION_IGNORE; 27773e1caa5fSPaolo Bonzini default: 27783e1caa5fSPaolo Bonzini abort(); 27793e1caa5fSPaolo Bonzini } 27803e1caa5fSPaolo Bonzini } 27813e1caa5fSPaolo Bonzini 27823e1caa5fSPaolo Bonzini /* This is done by device models because, while the block layer knows 27833e1caa5fSPaolo Bonzini * about the error, it does not know whether an operation comes from 27843e1caa5fSPaolo Bonzini * the device or the block layer (from a job, for example). 27853e1caa5fSPaolo Bonzini */ 27863e1caa5fSPaolo Bonzini void bdrv_error_action(BlockDriverState *bs, BlockErrorAction action, 27873e1caa5fSPaolo Bonzini bool is_read, int error) 27883e1caa5fSPaolo Bonzini { 27893e1caa5fSPaolo Bonzini assert(error >= 0); 279032c81a4aSPaolo Bonzini bdrv_emit_qmp_error_event(bs, QEVENT_BLOCK_IO_ERROR, action, is_read); 27913e1caa5fSPaolo Bonzini if (action == BDRV_ACTION_STOP) { 27923e1caa5fSPaolo Bonzini vm_stop(RUN_STATE_IO_ERROR); 27933e1caa5fSPaolo Bonzini bdrv_iostatus_set_err(bs, error); 27943e1caa5fSPaolo Bonzini } 27953e1caa5fSPaolo Bonzini } 27963e1caa5fSPaolo Bonzini 2797b338082bSbellard int bdrv_is_read_only(BlockDriverState *bs) 2798b338082bSbellard { 2799b338082bSbellard return bs->read_only; 2800b338082bSbellard } 2801b338082bSbellard 2802985a03b0Sths int bdrv_is_sg(BlockDriverState *bs) 2803985a03b0Sths { 2804985a03b0Sths return bs->sg; 2805985a03b0Sths } 2806985a03b0Sths 2807e900a7b7SChristoph Hellwig int bdrv_enable_write_cache(BlockDriverState *bs) 2808e900a7b7SChristoph Hellwig { 2809e900a7b7SChristoph Hellwig return bs->enable_write_cache; 2810e900a7b7SChristoph Hellwig } 2811e900a7b7SChristoph Hellwig 2812425b0148SPaolo Bonzini void bdrv_set_enable_write_cache(BlockDriverState *bs, bool wce) 2813425b0148SPaolo Bonzini { 2814425b0148SPaolo Bonzini bs->enable_write_cache = wce; 281555b110f2SJeff Cody 281655b110f2SJeff Cody /* so a reopen() will preserve wce */ 281755b110f2SJeff Cody if (wce) { 281855b110f2SJeff Cody bs->open_flags |= BDRV_O_CACHE_WB; 281955b110f2SJeff Cody } else { 282055b110f2SJeff Cody bs->open_flags &= ~BDRV_O_CACHE_WB; 282155b110f2SJeff Cody } 2822425b0148SPaolo Bonzini } 2823425b0148SPaolo Bonzini 2824ea2384d3Sbellard int bdrv_is_encrypted(BlockDriverState *bs) 2825ea2384d3Sbellard { 2826ea2384d3Sbellard if (bs->backing_hd && bs->backing_hd->encrypted) 2827ea2384d3Sbellard return 1; 2828ea2384d3Sbellard return bs->encrypted; 2829ea2384d3Sbellard } 2830ea2384d3Sbellard 2831c0f4ce77Saliguori int bdrv_key_required(BlockDriverState *bs) 2832c0f4ce77Saliguori { 2833c0f4ce77Saliguori BlockDriverState *backing_hd = bs->backing_hd; 2834c0f4ce77Saliguori 2835c0f4ce77Saliguori if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key) 2836c0f4ce77Saliguori return 1; 2837c0f4ce77Saliguori return (bs->encrypted && !bs->valid_key); 2838c0f4ce77Saliguori } 2839c0f4ce77Saliguori 2840ea2384d3Sbellard int bdrv_set_key(BlockDriverState *bs, const char *key) 2841ea2384d3Sbellard { 2842ea2384d3Sbellard int ret; 2843ea2384d3Sbellard if (bs->backing_hd && bs->backing_hd->encrypted) { 2844ea2384d3Sbellard ret = bdrv_set_key(bs->backing_hd, key); 2845ea2384d3Sbellard if (ret < 0) 2846ea2384d3Sbellard return ret; 2847ea2384d3Sbellard if (!bs->encrypted) 2848ea2384d3Sbellard return 0; 2849ea2384d3Sbellard } 2850fd04a2aeSShahar Havivi if (!bs->encrypted) { 2851fd04a2aeSShahar Havivi return -EINVAL; 2852fd04a2aeSShahar Havivi } else if (!bs->drv || !bs->drv->bdrv_set_key) { 2853fd04a2aeSShahar Havivi return -ENOMEDIUM; 2854fd04a2aeSShahar Havivi } 2855c0f4ce77Saliguori ret = bs->drv->bdrv_set_key(bs, key); 2856bb5fc20fSaliguori if (ret < 0) { 2857bb5fc20fSaliguori bs->valid_key = 0; 2858bb5fc20fSaliguori } else if (!bs->valid_key) { 2859bb5fc20fSaliguori bs->valid_key = 1; 2860bb5fc20fSaliguori /* call the change callback now, we skipped it on open */ 28617d4b4ba5SMarkus Armbruster bdrv_dev_change_media_cb(bs, true); 2862bb5fc20fSaliguori } 2863c0f4ce77Saliguori return ret; 2864ea2384d3Sbellard } 2865ea2384d3Sbellard 2866f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs) 2867ea2384d3Sbellard { 2868f8d6bba1SMarkus Armbruster return bs->drv ? bs->drv->format_name : NULL; 2869ea2384d3Sbellard } 2870ea2384d3Sbellard 2871ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name), 2872ea2384d3Sbellard void *opaque) 2873ea2384d3Sbellard { 2874ea2384d3Sbellard BlockDriver *drv; 2875ea2384d3Sbellard 28768a22f02aSStefan Hajnoczi QLIST_FOREACH(drv, &bdrv_drivers, list) { 2877ea2384d3Sbellard it(opaque, drv->format_name); 2878ea2384d3Sbellard } 2879ea2384d3Sbellard } 2880ea2384d3Sbellard 2881b338082bSbellard BlockDriverState *bdrv_find(const char *name) 2882b338082bSbellard { 2883b338082bSbellard BlockDriverState *bs; 2884b338082bSbellard 28851b7bdbc1SStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 28861b7bdbc1SStefan Hajnoczi if (!strcmp(name, bs->device_name)) { 2887b338082bSbellard return bs; 2888b338082bSbellard } 28891b7bdbc1SStefan Hajnoczi } 2890b338082bSbellard return NULL; 2891b338082bSbellard } 2892b338082bSbellard 28932f399b0aSMarkus Armbruster BlockDriverState *bdrv_next(BlockDriverState *bs) 28942f399b0aSMarkus Armbruster { 28952f399b0aSMarkus Armbruster if (!bs) { 28962f399b0aSMarkus Armbruster return QTAILQ_FIRST(&bdrv_states); 28972f399b0aSMarkus Armbruster } 28982f399b0aSMarkus Armbruster return QTAILQ_NEXT(bs, list); 28992f399b0aSMarkus Armbruster } 29002f399b0aSMarkus Armbruster 290151de9760Saliguori void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque) 290281d0912dSbellard { 290381d0912dSbellard BlockDriverState *bs; 290481d0912dSbellard 29051b7bdbc1SStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 290651de9760Saliguori it(opaque, bs); 290781d0912dSbellard } 290881d0912dSbellard } 290981d0912dSbellard 2910ea2384d3Sbellard const char *bdrv_get_device_name(BlockDriverState *bs) 2911ea2384d3Sbellard { 2912ea2384d3Sbellard return bs->device_name; 2913ea2384d3Sbellard } 2914ea2384d3Sbellard 2915c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs) 2916c8433287SMarkus Armbruster { 2917c8433287SMarkus Armbruster return bs->open_flags; 2918c8433287SMarkus Armbruster } 2919c8433287SMarkus Armbruster 2920c6ca28d6Saliguori void bdrv_flush_all(void) 2921c6ca28d6Saliguori { 2922c6ca28d6Saliguori BlockDriverState *bs; 2923c6ca28d6Saliguori 29241b7bdbc1SStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 2925c6ca28d6Saliguori bdrv_flush(bs); 2926c6ca28d6Saliguori } 29271b7bdbc1SStefan Hajnoczi } 2928c6ca28d6Saliguori 2929f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs) 2930f2feebbdSKevin Wolf { 2931f2feebbdSKevin Wolf assert(bs->drv); 2932f2feebbdSKevin Wolf 2933336c1c12SKevin Wolf if (bs->drv->bdrv_has_zero_init) { 2934336c1c12SKevin Wolf return bs->drv->bdrv_has_zero_init(bs); 2935f2feebbdSKevin Wolf } 2936f2feebbdSKevin Wolf 2937f2feebbdSKevin Wolf return 1; 2938f2feebbdSKevin Wolf } 2939f2feebbdSKevin Wolf 2940376ae3f1SStefan Hajnoczi typedef struct BdrvCoIsAllocatedData { 2941376ae3f1SStefan Hajnoczi BlockDriverState *bs; 2942b35b2bbaSMiroslav Rezanina BlockDriverState *base; 2943376ae3f1SStefan Hajnoczi int64_t sector_num; 2944376ae3f1SStefan Hajnoczi int nb_sectors; 2945376ae3f1SStefan Hajnoczi int *pnum; 2946376ae3f1SStefan Hajnoczi int ret; 2947376ae3f1SStefan Hajnoczi bool done; 2948376ae3f1SStefan Hajnoczi } BdrvCoIsAllocatedData; 2949376ae3f1SStefan Hajnoczi 2950f58c7b35Sths /* 2951f58c7b35Sths * Returns true iff the specified sector is present in the disk image. Drivers 2952f58c7b35Sths * not implementing the functionality are assumed to not support backing files, 2953f58c7b35Sths * hence all their sectors are reported as allocated. 2954f58c7b35Sths * 2955bd9533e3SStefan Hajnoczi * If 'sector_num' is beyond the end of the disk image the return value is 0 2956bd9533e3SStefan Hajnoczi * and 'pnum' is set to 0. 2957bd9533e3SStefan Hajnoczi * 2958f58c7b35Sths * 'pnum' is set to the number of sectors (including and immediately following 2959f58c7b35Sths * the specified sector) that are known to be in the same 2960f58c7b35Sths * allocated/unallocated state. 2961f58c7b35Sths * 2962bd9533e3SStefan Hajnoczi * 'nb_sectors' is the max value 'pnum' should be set to. If nb_sectors goes 2963bd9533e3SStefan Hajnoczi * beyond the end of the disk image it will be clamped. 2964f58c7b35Sths */ 2965060f51c9SStefan Hajnoczi int coroutine_fn bdrv_co_is_allocated(BlockDriverState *bs, int64_t sector_num, 2966060f51c9SStefan Hajnoczi int nb_sectors, int *pnum) 2967f58c7b35Sths { 2968f58c7b35Sths int64_t n; 2969bd9533e3SStefan Hajnoczi 29706aebab14SStefan Hajnoczi if (sector_num >= bs->total_sectors) { 29716aebab14SStefan Hajnoczi *pnum = 0; 29726aebab14SStefan Hajnoczi return 0; 29736aebab14SStefan Hajnoczi } 2974bd9533e3SStefan Hajnoczi 29756aebab14SStefan Hajnoczi n = bs->total_sectors - sector_num; 2976bd9533e3SStefan Hajnoczi if (n < nb_sectors) { 2977bd9533e3SStefan Hajnoczi nb_sectors = n; 2978bd9533e3SStefan Hajnoczi } 2979bd9533e3SStefan Hajnoczi 2980bd9533e3SStefan Hajnoczi if (!bs->drv->bdrv_co_is_allocated) { 2981bd9533e3SStefan Hajnoczi *pnum = nb_sectors; 29826aebab14SStefan Hajnoczi return 1; 29836aebab14SStefan Hajnoczi } 29846aebab14SStefan Hajnoczi 2985060f51c9SStefan Hajnoczi return bs->drv->bdrv_co_is_allocated(bs, sector_num, nb_sectors, pnum); 2986060f51c9SStefan Hajnoczi } 2987060f51c9SStefan Hajnoczi 2988060f51c9SStefan Hajnoczi /* Coroutine wrapper for bdrv_is_allocated() */ 2989060f51c9SStefan Hajnoczi static void coroutine_fn bdrv_is_allocated_co_entry(void *opaque) 2990060f51c9SStefan Hajnoczi { 2991060f51c9SStefan Hajnoczi BdrvCoIsAllocatedData *data = opaque; 2992060f51c9SStefan Hajnoczi BlockDriverState *bs = data->bs; 2993060f51c9SStefan Hajnoczi 2994060f51c9SStefan Hajnoczi data->ret = bdrv_co_is_allocated(bs, data->sector_num, data->nb_sectors, 2995060f51c9SStefan Hajnoczi data->pnum); 2996060f51c9SStefan Hajnoczi data->done = true; 2997060f51c9SStefan Hajnoczi } 2998060f51c9SStefan Hajnoczi 2999060f51c9SStefan Hajnoczi /* 3000060f51c9SStefan Hajnoczi * Synchronous wrapper around bdrv_co_is_allocated(). 3001060f51c9SStefan Hajnoczi * 3002060f51c9SStefan Hajnoczi * See bdrv_co_is_allocated() for details. 3003060f51c9SStefan Hajnoczi */ 3004060f51c9SStefan Hajnoczi int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors, 3005060f51c9SStefan Hajnoczi int *pnum) 3006060f51c9SStefan Hajnoczi { 3007376ae3f1SStefan Hajnoczi Coroutine *co; 3008376ae3f1SStefan Hajnoczi BdrvCoIsAllocatedData data = { 3009376ae3f1SStefan Hajnoczi .bs = bs, 3010376ae3f1SStefan Hajnoczi .sector_num = sector_num, 3011376ae3f1SStefan Hajnoczi .nb_sectors = nb_sectors, 3012376ae3f1SStefan Hajnoczi .pnum = pnum, 3013376ae3f1SStefan Hajnoczi .done = false, 3014376ae3f1SStefan Hajnoczi }; 3015376ae3f1SStefan Hajnoczi 3016376ae3f1SStefan Hajnoczi co = qemu_coroutine_create(bdrv_is_allocated_co_entry); 3017376ae3f1SStefan Hajnoczi qemu_coroutine_enter(co, &data); 3018376ae3f1SStefan Hajnoczi while (!data.done) { 3019376ae3f1SStefan Hajnoczi qemu_aio_wait(); 3020376ae3f1SStefan Hajnoczi } 3021376ae3f1SStefan Hajnoczi return data.ret; 3022376ae3f1SStefan Hajnoczi } 3023f58c7b35Sths 3024188a7bbfSPaolo Bonzini /* 3025188a7bbfSPaolo Bonzini * Given an image chain: ... -> [BASE] -> [INTER1] -> [INTER2] -> [TOP] 3026188a7bbfSPaolo Bonzini * 3027188a7bbfSPaolo Bonzini * Return true if the given sector is allocated in any image between 3028188a7bbfSPaolo Bonzini * BASE and TOP (inclusive). BASE can be NULL to check if the given 3029188a7bbfSPaolo Bonzini * sector is allocated in any image of the chain. Return false otherwise. 3030188a7bbfSPaolo Bonzini * 3031188a7bbfSPaolo Bonzini * 'pnum' is set to the number of sectors (including and immediately following 3032188a7bbfSPaolo Bonzini * the specified sector) that are known to be in the same 3033188a7bbfSPaolo Bonzini * allocated/unallocated state. 3034188a7bbfSPaolo Bonzini * 3035188a7bbfSPaolo Bonzini */ 3036188a7bbfSPaolo Bonzini int coroutine_fn bdrv_co_is_allocated_above(BlockDriverState *top, 3037188a7bbfSPaolo Bonzini BlockDriverState *base, 3038188a7bbfSPaolo Bonzini int64_t sector_num, 3039188a7bbfSPaolo Bonzini int nb_sectors, int *pnum) 3040188a7bbfSPaolo Bonzini { 3041188a7bbfSPaolo Bonzini BlockDriverState *intermediate; 3042188a7bbfSPaolo Bonzini int ret, n = nb_sectors; 3043188a7bbfSPaolo Bonzini 3044188a7bbfSPaolo Bonzini intermediate = top; 3045188a7bbfSPaolo Bonzini while (intermediate && intermediate != base) { 3046188a7bbfSPaolo Bonzini int pnum_inter; 3047188a7bbfSPaolo Bonzini ret = bdrv_co_is_allocated(intermediate, sector_num, nb_sectors, 3048188a7bbfSPaolo Bonzini &pnum_inter); 3049188a7bbfSPaolo Bonzini if (ret < 0) { 3050188a7bbfSPaolo Bonzini return ret; 3051188a7bbfSPaolo Bonzini } else if (ret) { 3052188a7bbfSPaolo Bonzini *pnum = pnum_inter; 3053188a7bbfSPaolo Bonzini return 1; 3054188a7bbfSPaolo Bonzini } 3055188a7bbfSPaolo Bonzini 3056188a7bbfSPaolo Bonzini /* 3057188a7bbfSPaolo Bonzini * [sector_num, nb_sectors] is unallocated on top but intermediate 3058188a7bbfSPaolo Bonzini * might have 3059188a7bbfSPaolo Bonzini * 3060188a7bbfSPaolo Bonzini * [sector_num+x, nr_sectors] allocated. 3061188a7bbfSPaolo Bonzini */ 306263ba17d3SVishvananda Ishaya if (n > pnum_inter && 306363ba17d3SVishvananda Ishaya (intermediate == top || 306463ba17d3SVishvananda Ishaya sector_num + pnum_inter < intermediate->total_sectors)) { 3065188a7bbfSPaolo Bonzini n = pnum_inter; 3066188a7bbfSPaolo Bonzini } 3067188a7bbfSPaolo Bonzini 3068188a7bbfSPaolo Bonzini intermediate = intermediate->backing_hd; 3069188a7bbfSPaolo Bonzini } 3070188a7bbfSPaolo Bonzini 3071188a7bbfSPaolo Bonzini *pnum = n; 3072188a7bbfSPaolo Bonzini return 0; 3073188a7bbfSPaolo Bonzini } 3074188a7bbfSPaolo Bonzini 3075b35b2bbaSMiroslav Rezanina /* Coroutine wrapper for bdrv_is_allocated_above() */ 3076b35b2bbaSMiroslav Rezanina static void coroutine_fn bdrv_is_allocated_above_co_entry(void *opaque) 3077b35b2bbaSMiroslav Rezanina { 3078b35b2bbaSMiroslav Rezanina BdrvCoIsAllocatedData *data = opaque; 3079b35b2bbaSMiroslav Rezanina BlockDriverState *top = data->bs; 3080b35b2bbaSMiroslav Rezanina BlockDriverState *base = data->base; 3081b35b2bbaSMiroslav Rezanina 3082b35b2bbaSMiroslav Rezanina data->ret = bdrv_co_is_allocated_above(top, base, data->sector_num, 3083b35b2bbaSMiroslav Rezanina data->nb_sectors, data->pnum); 3084b35b2bbaSMiroslav Rezanina data->done = true; 3085b35b2bbaSMiroslav Rezanina } 3086b35b2bbaSMiroslav Rezanina 3087b35b2bbaSMiroslav Rezanina /* 3088b35b2bbaSMiroslav Rezanina * Synchronous wrapper around bdrv_co_is_allocated_above(). 3089b35b2bbaSMiroslav Rezanina * 3090b35b2bbaSMiroslav Rezanina * See bdrv_co_is_allocated_above() for details. 3091b35b2bbaSMiroslav Rezanina */ 3092b35b2bbaSMiroslav Rezanina int bdrv_is_allocated_above(BlockDriverState *top, BlockDriverState *base, 3093b35b2bbaSMiroslav Rezanina int64_t sector_num, int nb_sectors, int *pnum) 3094b35b2bbaSMiroslav Rezanina { 3095b35b2bbaSMiroslav Rezanina Coroutine *co; 3096b35b2bbaSMiroslav Rezanina BdrvCoIsAllocatedData data = { 3097b35b2bbaSMiroslav Rezanina .bs = top, 3098b35b2bbaSMiroslav Rezanina .base = base, 3099b35b2bbaSMiroslav Rezanina .sector_num = sector_num, 3100b35b2bbaSMiroslav Rezanina .nb_sectors = nb_sectors, 3101b35b2bbaSMiroslav Rezanina .pnum = pnum, 3102b35b2bbaSMiroslav Rezanina .done = false, 3103b35b2bbaSMiroslav Rezanina }; 3104b35b2bbaSMiroslav Rezanina 3105b35b2bbaSMiroslav Rezanina co = qemu_coroutine_create(bdrv_is_allocated_above_co_entry); 3106b35b2bbaSMiroslav Rezanina qemu_coroutine_enter(co, &data); 3107b35b2bbaSMiroslav Rezanina while (!data.done) { 3108b35b2bbaSMiroslav Rezanina qemu_aio_wait(); 3109b35b2bbaSMiroslav Rezanina } 3110b35b2bbaSMiroslav Rezanina return data.ret; 3111b35b2bbaSMiroslav Rezanina } 3112b35b2bbaSMiroslav Rezanina 3113ac84adacSPaolo Bonzini BlockInfo *bdrv_query_info(BlockDriverState *bs) 3114ac84adacSPaolo Bonzini { 3115ac84adacSPaolo Bonzini BlockInfo *info = g_malloc0(sizeof(*info)); 3116ac84adacSPaolo Bonzini info->device = g_strdup(bs->device_name); 3117ac84adacSPaolo Bonzini info->type = g_strdup("unknown"); 3118ac84adacSPaolo Bonzini info->locked = bdrv_dev_is_medium_locked(bs); 3119ac84adacSPaolo Bonzini info->removable = bdrv_dev_has_removable_media(bs); 3120ac84adacSPaolo Bonzini 3121ac84adacSPaolo Bonzini if (bdrv_dev_has_removable_media(bs)) { 3122ac84adacSPaolo Bonzini info->has_tray_open = true; 3123ac84adacSPaolo Bonzini info->tray_open = bdrv_dev_is_tray_open(bs); 3124ac84adacSPaolo Bonzini } 3125ac84adacSPaolo Bonzini 3126ac84adacSPaolo Bonzini if (bdrv_iostatus_is_enabled(bs)) { 3127ac84adacSPaolo Bonzini info->has_io_status = true; 3128ac84adacSPaolo Bonzini info->io_status = bs->iostatus; 3129ac84adacSPaolo Bonzini } 3130ac84adacSPaolo Bonzini 3131b9a9b3a4SPaolo Bonzini if (bs->dirty_bitmap) { 3132b9a9b3a4SPaolo Bonzini info->has_dirty = true; 3133b9a9b3a4SPaolo Bonzini info->dirty = g_malloc0(sizeof(*info->dirty)); 3134acc906c6SPaolo Bonzini info->dirty->count = bdrv_get_dirty_count(bs) * BDRV_SECTOR_SIZE; 313550717e94SPaolo Bonzini info->dirty->granularity = 313650717e94SPaolo Bonzini ((int64_t) BDRV_SECTOR_SIZE << hbitmap_granularity(bs->dirty_bitmap)); 3137b9a9b3a4SPaolo Bonzini } 3138b9a9b3a4SPaolo Bonzini 3139ac84adacSPaolo Bonzini if (bs->drv) { 3140ac84adacSPaolo Bonzini info->has_inserted = true; 3141ac84adacSPaolo Bonzini info->inserted = g_malloc0(sizeof(*info->inserted)); 3142ac84adacSPaolo Bonzini info->inserted->file = g_strdup(bs->filename); 3143ac84adacSPaolo Bonzini info->inserted->ro = bs->read_only; 3144ac84adacSPaolo Bonzini info->inserted->drv = g_strdup(bs->drv->format_name); 3145ac84adacSPaolo Bonzini info->inserted->encrypted = bs->encrypted; 3146ac84adacSPaolo Bonzini info->inserted->encryption_key_missing = bdrv_key_required(bs); 3147ac84adacSPaolo Bonzini 3148ac84adacSPaolo Bonzini if (bs->backing_file[0]) { 3149ac84adacSPaolo Bonzini info->inserted->has_backing_file = true; 3150ac84adacSPaolo Bonzini info->inserted->backing_file = g_strdup(bs->backing_file); 3151ac84adacSPaolo Bonzini } 3152ac84adacSPaolo Bonzini 3153ac84adacSPaolo Bonzini info->inserted->backing_file_depth = bdrv_get_backing_file_depth(bs); 3154ac84adacSPaolo Bonzini 3155ac84adacSPaolo Bonzini if (bs->io_limits_enabled) { 3156ac84adacSPaolo Bonzini info->inserted->bps = 3157ac84adacSPaolo Bonzini bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL]; 3158ac84adacSPaolo Bonzini info->inserted->bps_rd = 3159ac84adacSPaolo Bonzini bs->io_limits.bps[BLOCK_IO_LIMIT_READ]; 3160ac84adacSPaolo Bonzini info->inserted->bps_wr = 3161ac84adacSPaolo Bonzini bs->io_limits.bps[BLOCK_IO_LIMIT_WRITE]; 3162ac84adacSPaolo Bonzini info->inserted->iops = 3163ac84adacSPaolo Bonzini bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL]; 3164ac84adacSPaolo Bonzini info->inserted->iops_rd = 3165ac84adacSPaolo Bonzini bs->io_limits.iops[BLOCK_IO_LIMIT_READ]; 3166ac84adacSPaolo Bonzini info->inserted->iops_wr = 3167ac84adacSPaolo Bonzini bs->io_limits.iops[BLOCK_IO_LIMIT_WRITE]; 3168ac84adacSPaolo Bonzini } 3169ac84adacSPaolo Bonzini } 3170ac84adacSPaolo Bonzini return info; 3171ac84adacSPaolo Bonzini } 3172ac84adacSPaolo Bonzini 3173b2023818SLuiz Capitulino BlockInfoList *qmp_query_block(Error **errp) 3174b338082bSbellard { 3175ac84adacSPaolo Bonzini BlockInfoList *head = NULL, **p_next = &head; 3176d15e5465SLuiz Capitulino BlockDriverState *bs; 3177d15e5465SLuiz Capitulino 31781b7bdbc1SStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 3179b2023818SLuiz Capitulino BlockInfoList *info = g_malloc0(sizeof(*info)); 3180ac84adacSPaolo Bonzini info->value = bdrv_query_info(bs); 3181d15e5465SLuiz Capitulino 3182ac84adacSPaolo Bonzini *p_next = info; 3183ac84adacSPaolo Bonzini p_next = &info->next; 3184d15e5465SLuiz Capitulino } 3185d15e5465SLuiz Capitulino 3186b2023818SLuiz Capitulino return head; 3187b338082bSbellard } 3188a36e69ddSths 31899887b616SPaolo Bonzini BlockStats *bdrv_query_stats(const BlockDriverState *bs) 3190a36e69ddSths { 3191f11f57e4SLuiz Capitulino BlockStats *s; 3192218a536aSLuiz Capitulino 3193f11f57e4SLuiz Capitulino s = g_malloc0(sizeof(*s)); 3194218a536aSLuiz Capitulino 3195f11f57e4SLuiz Capitulino if (bs->device_name[0]) { 3196f11f57e4SLuiz Capitulino s->has_device = true; 3197f11f57e4SLuiz Capitulino s->device = g_strdup(bs->device_name); 3198218a536aSLuiz Capitulino } 3199218a536aSLuiz Capitulino 3200f11f57e4SLuiz Capitulino s->stats = g_malloc0(sizeof(*s->stats)); 3201f11f57e4SLuiz Capitulino s->stats->rd_bytes = bs->nr_bytes[BDRV_ACCT_READ]; 3202f11f57e4SLuiz Capitulino s->stats->wr_bytes = bs->nr_bytes[BDRV_ACCT_WRITE]; 3203f11f57e4SLuiz Capitulino s->stats->rd_operations = bs->nr_ops[BDRV_ACCT_READ]; 3204f11f57e4SLuiz Capitulino s->stats->wr_operations = bs->nr_ops[BDRV_ACCT_WRITE]; 3205f11f57e4SLuiz Capitulino s->stats->wr_highest_offset = bs->wr_highest_sector * BDRV_SECTOR_SIZE; 3206f11f57e4SLuiz Capitulino s->stats->flush_operations = bs->nr_ops[BDRV_ACCT_FLUSH]; 3207f11f57e4SLuiz Capitulino s->stats->wr_total_time_ns = bs->total_time_ns[BDRV_ACCT_WRITE]; 3208f11f57e4SLuiz Capitulino s->stats->rd_total_time_ns = bs->total_time_ns[BDRV_ACCT_READ]; 3209f11f57e4SLuiz Capitulino s->stats->flush_total_time_ns = bs->total_time_ns[BDRV_ACCT_FLUSH]; 3210294cc35fSKevin Wolf 3211294cc35fSKevin Wolf if (bs->file) { 3212f11f57e4SLuiz Capitulino s->has_parent = true; 32139887b616SPaolo Bonzini s->parent = bdrv_query_stats(bs->file); 3214294cc35fSKevin Wolf } 3215294cc35fSKevin Wolf 3216f11f57e4SLuiz Capitulino return s; 3217294cc35fSKevin Wolf } 3218294cc35fSKevin Wolf 3219f11f57e4SLuiz Capitulino BlockStatsList *qmp_query_blockstats(Error **errp) 3220218a536aSLuiz Capitulino { 32219887b616SPaolo Bonzini BlockStatsList *head = NULL, **p_next = &head; 3222a36e69ddSths BlockDriverState *bs; 3223a36e69ddSths 32241b7bdbc1SStefan Hajnoczi QTAILQ_FOREACH(bs, &bdrv_states, list) { 3225f11f57e4SLuiz Capitulino BlockStatsList *info = g_malloc0(sizeof(*info)); 32269887b616SPaolo Bonzini info->value = bdrv_query_stats(bs); 3227f11f57e4SLuiz Capitulino 32289887b616SPaolo Bonzini *p_next = info; 32299887b616SPaolo Bonzini p_next = &info->next; 3230a36e69ddSths } 3231218a536aSLuiz Capitulino 3232f11f57e4SLuiz Capitulino return head; 3233a36e69ddSths } 3234ea2384d3Sbellard 3235045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs) 3236045df330Saliguori { 3237045df330Saliguori if (bs->backing_hd && bs->backing_hd->encrypted) 3238045df330Saliguori return bs->backing_file; 3239045df330Saliguori else if (bs->encrypted) 3240045df330Saliguori return bs->filename; 3241045df330Saliguori else 3242045df330Saliguori return NULL; 3243045df330Saliguori } 3244045df330Saliguori 324583f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs, 324683f64091Sbellard char *filename, int filename_size) 324783f64091Sbellard { 324883f64091Sbellard pstrcpy(filename, filename_size, bs->backing_file); 324983f64091Sbellard } 325083f64091Sbellard 3251faea38e7Sbellard int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num, 3252faea38e7Sbellard const uint8_t *buf, int nb_sectors) 3253faea38e7Sbellard { 3254faea38e7Sbellard BlockDriver *drv = bs->drv; 3255faea38e7Sbellard if (!drv) 325619cb3738Sbellard return -ENOMEDIUM; 3257faea38e7Sbellard if (!drv->bdrv_write_compressed) 3258faea38e7Sbellard return -ENOTSUP; 3259fbb7b4e0SKevin Wolf if (bdrv_check_request(bs, sector_num, nb_sectors)) 3260fbb7b4e0SKevin Wolf return -EIO; 32617cd1e32aSlirans@il.ibm.com 32621755da16SPaolo Bonzini assert(!bs->dirty_bitmap); 32637cd1e32aSlirans@il.ibm.com 3264faea38e7Sbellard return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors); 3265faea38e7Sbellard } 3266faea38e7Sbellard 3267faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) 3268faea38e7Sbellard { 3269faea38e7Sbellard BlockDriver *drv = bs->drv; 3270faea38e7Sbellard if (!drv) 327119cb3738Sbellard return -ENOMEDIUM; 3272faea38e7Sbellard if (!drv->bdrv_get_info) 3273faea38e7Sbellard return -ENOTSUP; 3274faea38e7Sbellard memset(bdi, 0, sizeof(*bdi)); 3275faea38e7Sbellard return drv->bdrv_get_info(bs, bdi); 3276faea38e7Sbellard } 3277faea38e7Sbellard 327845566e9cSChristoph Hellwig int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf, 327945566e9cSChristoph Hellwig int64_t pos, int size) 3280178e08a5Saliguori { 3281cf8074b3SKevin Wolf QEMUIOVector qiov; 3282cf8074b3SKevin Wolf struct iovec iov = { 3283cf8074b3SKevin Wolf .iov_base = (void *) buf, 3284cf8074b3SKevin Wolf .iov_len = size, 3285cf8074b3SKevin Wolf }; 3286cf8074b3SKevin Wolf 3287cf8074b3SKevin Wolf qemu_iovec_init_external(&qiov, &iov, 1); 3288cf8074b3SKevin Wolf return bdrv_writev_vmstate(bs, &qiov, pos); 3289cf8074b3SKevin Wolf } 3290cf8074b3SKevin Wolf 3291cf8074b3SKevin Wolf int bdrv_writev_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos) 3292cf8074b3SKevin Wolf { 3293178e08a5Saliguori BlockDriver *drv = bs->drv; 3294cf8074b3SKevin Wolf 3295cf8074b3SKevin Wolf if (!drv) { 3296178e08a5Saliguori return -ENOMEDIUM; 3297cf8074b3SKevin Wolf } else if (drv->bdrv_save_vmstate) { 3298cf8074b3SKevin Wolf return drv->bdrv_save_vmstate(bs, qiov, pos); 3299cf8074b3SKevin Wolf } else if (bs->file) { 3300cf8074b3SKevin Wolf return bdrv_writev_vmstate(bs->file, qiov, pos); 3301cf8074b3SKevin Wolf } 3302cf8074b3SKevin Wolf 33037cdb1f6dSMORITA Kazutaka return -ENOTSUP; 3304178e08a5Saliguori } 3305178e08a5Saliguori 330645566e9cSChristoph Hellwig int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf, 330745566e9cSChristoph Hellwig int64_t pos, int size) 3308178e08a5Saliguori { 3309178e08a5Saliguori BlockDriver *drv = bs->drv; 3310178e08a5Saliguori if (!drv) 3311178e08a5Saliguori return -ENOMEDIUM; 33127cdb1f6dSMORITA Kazutaka if (drv->bdrv_load_vmstate) 331345566e9cSChristoph Hellwig return drv->bdrv_load_vmstate(bs, buf, pos, size); 33147cdb1f6dSMORITA Kazutaka if (bs->file) 33157cdb1f6dSMORITA Kazutaka return bdrv_load_vmstate(bs->file, buf, pos, size); 33167cdb1f6dSMORITA Kazutaka return -ENOTSUP; 3317178e08a5Saliguori } 3318178e08a5Saliguori 33198b9b0cc2SKevin Wolf void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event) 33208b9b0cc2SKevin Wolf { 33218b9b0cc2SKevin Wolf BlockDriver *drv = bs->drv; 33228b9b0cc2SKevin Wolf 33238b9b0cc2SKevin Wolf if (!drv || !drv->bdrv_debug_event) { 33248b9b0cc2SKevin Wolf return; 33258b9b0cc2SKevin Wolf } 33268b9b0cc2SKevin Wolf 33270ed8b6f6SBlue Swirl drv->bdrv_debug_event(bs, event); 332841c695c7SKevin Wolf } 33298b9b0cc2SKevin Wolf 333041c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event, 333141c695c7SKevin Wolf const char *tag) 333241c695c7SKevin Wolf { 333341c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) { 333441c695c7SKevin Wolf bs = bs->file; 333541c695c7SKevin Wolf } 333641c695c7SKevin Wolf 333741c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) { 333841c695c7SKevin Wolf return bs->drv->bdrv_debug_breakpoint(bs, event, tag); 333941c695c7SKevin Wolf } 334041c695c7SKevin Wolf 334141c695c7SKevin Wolf return -ENOTSUP; 334241c695c7SKevin Wolf } 334341c695c7SKevin Wolf 334441c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag) 334541c695c7SKevin Wolf { 334641c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_resume) { 334741c695c7SKevin Wolf bs = bs->file; 334841c695c7SKevin Wolf } 334941c695c7SKevin Wolf 335041c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_resume) { 335141c695c7SKevin Wolf return bs->drv->bdrv_debug_resume(bs, tag); 335241c695c7SKevin Wolf } 335341c695c7SKevin Wolf 335441c695c7SKevin Wolf return -ENOTSUP; 335541c695c7SKevin Wolf } 335641c695c7SKevin Wolf 335741c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag) 335841c695c7SKevin Wolf { 335941c695c7SKevin Wolf while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) { 336041c695c7SKevin Wolf bs = bs->file; 336141c695c7SKevin Wolf } 336241c695c7SKevin Wolf 336341c695c7SKevin Wolf if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) { 336441c695c7SKevin Wolf return bs->drv->bdrv_debug_is_suspended(bs, tag); 336541c695c7SKevin Wolf } 336641c695c7SKevin Wolf 336741c695c7SKevin Wolf return false; 33688b9b0cc2SKevin Wolf } 33698b9b0cc2SKevin Wolf 3370faea38e7Sbellard /**************************************************************/ 3371faea38e7Sbellard /* handling of snapshots */ 3372faea38e7Sbellard 3373feeee5acSMiguel Di Ciurcio Filho int bdrv_can_snapshot(BlockDriverState *bs) 3374feeee5acSMiguel Di Ciurcio Filho { 3375feeee5acSMiguel Di Ciurcio Filho BlockDriver *drv = bs->drv; 337607b70bfbSMarkus Armbruster if (!drv || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) { 3377feeee5acSMiguel Di Ciurcio Filho return 0; 3378feeee5acSMiguel Di Ciurcio Filho } 3379feeee5acSMiguel Di Ciurcio Filho 3380feeee5acSMiguel Di Ciurcio Filho if (!drv->bdrv_snapshot_create) { 3381feeee5acSMiguel Di Ciurcio Filho if (bs->file != NULL) { 3382feeee5acSMiguel Di Ciurcio Filho return bdrv_can_snapshot(bs->file); 3383feeee5acSMiguel Di Ciurcio Filho } 3384feeee5acSMiguel Di Ciurcio Filho return 0; 3385feeee5acSMiguel Di Ciurcio Filho } 3386feeee5acSMiguel Di Ciurcio Filho 3387feeee5acSMiguel Di Ciurcio Filho return 1; 3388feeee5acSMiguel Di Ciurcio Filho } 3389feeee5acSMiguel Di Ciurcio Filho 3390199630b6SBlue Swirl int bdrv_is_snapshot(BlockDriverState *bs) 3391199630b6SBlue Swirl { 3392199630b6SBlue Swirl return !!(bs->open_flags & BDRV_O_SNAPSHOT); 3393199630b6SBlue Swirl } 3394199630b6SBlue Swirl 3395f9092b10SMarkus Armbruster BlockDriverState *bdrv_snapshots(void) 3396f9092b10SMarkus Armbruster { 3397f9092b10SMarkus Armbruster BlockDriverState *bs; 3398f9092b10SMarkus Armbruster 33993ac906f7SMarkus Armbruster if (bs_snapshots) { 3400f9092b10SMarkus Armbruster return bs_snapshots; 34013ac906f7SMarkus Armbruster } 3402f9092b10SMarkus Armbruster 3403f9092b10SMarkus Armbruster bs = NULL; 3404f9092b10SMarkus Armbruster while ((bs = bdrv_next(bs))) { 3405f9092b10SMarkus Armbruster if (bdrv_can_snapshot(bs)) { 34063ac906f7SMarkus Armbruster bs_snapshots = bs; 34073ac906f7SMarkus Armbruster return bs; 3408f9092b10SMarkus Armbruster } 3409f9092b10SMarkus Armbruster } 3410f9092b10SMarkus Armbruster return NULL; 3411f9092b10SMarkus Armbruster } 3412f9092b10SMarkus Armbruster 3413faea38e7Sbellard int bdrv_snapshot_create(BlockDriverState *bs, 3414faea38e7Sbellard QEMUSnapshotInfo *sn_info) 3415faea38e7Sbellard { 3416faea38e7Sbellard BlockDriver *drv = bs->drv; 3417faea38e7Sbellard if (!drv) 341819cb3738Sbellard return -ENOMEDIUM; 34197cdb1f6dSMORITA Kazutaka if (drv->bdrv_snapshot_create) 3420faea38e7Sbellard return drv->bdrv_snapshot_create(bs, sn_info); 34217cdb1f6dSMORITA Kazutaka if (bs->file) 34227cdb1f6dSMORITA Kazutaka return bdrv_snapshot_create(bs->file, sn_info); 34237cdb1f6dSMORITA Kazutaka return -ENOTSUP; 3424faea38e7Sbellard } 3425faea38e7Sbellard 3426faea38e7Sbellard int bdrv_snapshot_goto(BlockDriverState *bs, 3427faea38e7Sbellard const char *snapshot_id) 3428faea38e7Sbellard { 3429faea38e7Sbellard BlockDriver *drv = bs->drv; 34307cdb1f6dSMORITA Kazutaka int ret, open_ret; 34317cdb1f6dSMORITA Kazutaka 3432faea38e7Sbellard if (!drv) 343319cb3738Sbellard return -ENOMEDIUM; 34347cdb1f6dSMORITA Kazutaka if (drv->bdrv_snapshot_goto) 3435faea38e7Sbellard return drv->bdrv_snapshot_goto(bs, snapshot_id); 34367cdb1f6dSMORITA Kazutaka 34377cdb1f6dSMORITA Kazutaka if (bs->file) { 34387cdb1f6dSMORITA Kazutaka drv->bdrv_close(bs); 34397cdb1f6dSMORITA Kazutaka ret = bdrv_snapshot_goto(bs->file, snapshot_id); 34401a86938fSKevin Wolf open_ret = drv->bdrv_open(bs, NULL, bs->open_flags); 34417cdb1f6dSMORITA Kazutaka if (open_ret < 0) { 34427cdb1f6dSMORITA Kazutaka bdrv_delete(bs->file); 34437cdb1f6dSMORITA Kazutaka bs->drv = NULL; 34447cdb1f6dSMORITA Kazutaka return open_ret; 34457cdb1f6dSMORITA Kazutaka } 34467cdb1f6dSMORITA Kazutaka return ret; 34477cdb1f6dSMORITA Kazutaka } 34487cdb1f6dSMORITA Kazutaka 34497cdb1f6dSMORITA Kazutaka return -ENOTSUP; 3450faea38e7Sbellard } 3451faea38e7Sbellard 3452faea38e7Sbellard int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id) 3453faea38e7Sbellard { 3454faea38e7Sbellard BlockDriver *drv = bs->drv; 3455faea38e7Sbellard if (!drv) 345619cb3738Sbellard return -ENOMEDIUM; 34577cdb1f6dSMORITA Kazutaka if (drv->bdrv_snapshot_delete) 3458faea38e7Sbellard return drv->bdrv_snapshot_delete(bs, snapshot_id); 34597cdb1f6dSMORITA Kazutaka if (bs->file) 34607cdb1f6dSMORITA Kazutaka return bdrv_snapshot_delete(bs->file, snapshot_id); 34617cdb1f6dSMORITA Kazutaka return -ENOTSUP; 3462faea38e7Sbellard } 3463faea38e7Sbellard 3464faea38e7Sbellard int bdrv_snapshot_list(BlockDriverState *bs, 3465faea38e7Sbellard QEMUSnapshotInfo **psn_info) 3466faea38e7Sbellard { 3467faea38e7Sbellard BlockDriver *drv = bs->drv; 3468faea38e7Sbellard if (!drv) 346919cb3738Sbellard return -ENOMEDIUM; 34707cdb1f6dSMORITA Kazutaka if (drv->bdrv_snapshot_list) 3471faea38e7Sbellard return drv->bdrv_snapshot_list(bs, psn_info); 34727cdb1f6dSMORITA Kazutaka if (bs->file) 34737cdb1f6dSMORITA Kazutaka return bdrv_snapshot_list(bs->file, psn_info); 34747cdb1f6dSMORITA Kazutaka return -ENOTSUP; 3475faea38e7Sbellard } 3476faea38e7Sbellard 347751ef6727Sedison int bdrv_snapshot_load_tmp(BlockDriverState *bs, 347851ef6727Sedison const char *snapshot_name) 347951ef6727Sedison { 348051ef6727Sedison BlockDriver *drv = bs->drv; 348151ef6727Sedison if (!drv) { 348251ef6727Sedison return -ENOMEDIUM; 348351ef6727Sedison } 348451ef6727Sedison if (!bs->read_only) { 348551ef6727Sedison return -EINVAL; 348651ef6727Sedison } 348751ef6727Sedison if (drv->bdrv_snapshot_load_tmp) { 348851ef6727Sedison return drv->bdrv_snapshot_load_tmp(bs, snapshot_name); 348951ef6727Sedison } 349051ef6727Sedison return -ENOTSUP; 349151ef6727Sedison } 349251ef6727Sedison 3493b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol. If it is 3494b1b1d783SJeff Cody * relative, it must be relative to the chain. So, passing in bs->filename 3495b1b1d783SJeff Cody * from a BDS as backing_file should not be done, as that may be relative to 3496b1b1d783SJeff Cody * the CWD rather than the chain. */ 3497e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs, 3498e8a6bb9cSMarcelo Tosatti const char *backing_file) 3499e8a6bb9cSMarcelo Tosatti { 3500b1b1d783SJeff Cody char *filename_full = NULL; 3501b1b1d783SJeff Cody char *backing_file_full = NULL; 3502b1b1d783SJeff Cody char *filename_tmp = NULL; 3503b1b1d783SJeff Cody int is_protocol = 0; 3504b1b1d783SJeff Cody BlockDriverState *curr_bs = NULL; 3505b1b1d783SJeff Cody BlockDriverState *retval = NULL; 3506b1b1d783SJeff Cody 3507b1b1d783SJeff Cody if (!bs || !bs->drv || !backing_file) { 3508e8a6bb9cSMarcelo Tosatti return NULL; 3509e8a6bb9cSMarcelo Tosatti } 3510e8a6bb9cSMarcelo Tosatti 3511b1b1d783SJeff Cody filename_full = g_malloc(PATH_MAX); 3512b1b1d783SJeff Cody backing_file_full = g_malloc(PATH_MAX); 3513b1b1d783SJeff Cody filename_tmp = g_malloc(PATH_MAX); 3514b1b1d783SJeff Cody 3515b1b1d783SJeff Cody is_protocol = path_has_protocol(backing_file); 3516b1b1d783SJeff Cody 3517b1b1d783SJeff Cody for (curr_bs = bs; curr_bs->backing_hd; curr_bs = curr_bs->backing_hd) { 3518b1b1d783SJeff Cody 3519b1b1d783SJeff Cody /* If either of the filename paths is actually a protocol, then 3520b1b1d783SJeff Cody * compare unmodified paths; otherwise make paths relative */ 3521b1b1d783SJeff Cody if (is_protocol || path_has_protocol(curr_bs->backing_file)) { 3522b1b1d783SJeff Cody if (strcmp(backing_file, curr_bs->backing_file) == 0) { 3523b1b1d783SJeff Cody retval = curr_bs->backing_hd; 3524b1b1d783SJeff Cody break; 3525b1b1d783SJeff Cody } 3526e8a6bb9cSMarcelo Tosatti } else { 3527b1b1d783SJeff Cody /* If not an absolute filename path, make it relative to the current 3528b1b1d783SJeff Cody * image's filename path */ 3529b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 3530b1b1d783SJeff Cody backing_file); 3531b1b1d783SJeff Cody 3532b1b1d783SJeff Cody /* We are going to compare absolute pathnames */ 3533b1b1d783SJeff Cody if (!realpath(filename_tmp, filename_full)) { 3534b1b1d783SJeff Cody continue; 3535b1b1d783SJeff Cody } 3536b1b1d783SJeff Cody 3537b1b1d783SJeff Cody /* We need to make sure the backing filename we are comparing against 3538b1b1d783SJeff Cody * is relative to the current image filename (or absolute) */ 3539b1b1d783SJeff Cody path_combine(filename_tmp, PATH_MAX, curr_bs->filename, 3540b1b1d783SJeff Cody curr_bs->backing_file); 3541b1b1d783SJeff Cody 3542b1b1d783SJeff Cody if (!realpath(filename_tmp, backing_file_full)) { 3543b1b1d783SJeff Cody continue; 3544b1b1d783SJeff Cody } 3545b1b1d783SJeff Cody 3546b1b1d783SJeff Cody if (strcmp(backing_file_full, filename_full) == 0) { 3547b1b1d783SJeff Cody retval = curr_bs->backing_hd; 3548b1b1d783SJeff Cody break; 3549b1b1d783SJeff Cody } 3550e8a6bb9cSMarcelo Tosatti } 3551e8a6bb9cSMarcelo Tosatti } 3552e8a6bb9cSMarcelo Tosatti 3553b1b1d783SJeff Cody g_free(filename_full); 3554b1b1d783SJeff Cody g_free(backing_file_full); 3555b1b1d783SJeff Cody g_free(filename_tmp); 3556b1b1d783SJeff Cody return retval; 3557e8a6bb9cSMarcelo Tosatti } 3558e8a6bb9cSMarcelo Tosatti 3559f198fd1cSBenoît Canet int bdrv_get_backing_file_depth(BlockDriverState *bs) 3560f198fd1cSBenoît Canet { 3561f198fd1cSBenoît Canet if (!bs->drv) { 3562f198fd1cSBenoît Canet return 0; 3563f198fd1cSBenoît Canet } 3564f198fd1cSBenoît Canet 3565f198fd1cSBenoît Canet if (!bs->backing_hd) { 3566f198fd1cSBenoît Canet return 0; 3567f198fd1cSBenoît Canet } 3568f198fd1cSBenoît Canet 3569f198fd1cSBenoît Canet return 1 + bdrv_get_backing_file_depth(bs->backing_hd); 3570f198fd1cSBenoît Canet } 3571f198fd1cSBenoît Canet 357279fac568SJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs) 357379fac568SJeff Cody { 357479fac568SJeff Cody BlockDriverState *curr_bs = NULL; 357579fac568SJeff Cody 357679fac568SJeff Cody if (!bs) { 357779fac568SJeff Cody return NULL; 357879fac568SJeff Cody } 357979fac568SJeff Cody 358079fac568SJeff Cody curr_bs = bs; 358179fac568SJeff Cody 358279fac568SJeff Cody while (curr_bs->backing_hd) { 358379fac568SJeff Cody curr_bs = curr_bs->backing_hd; 358479fac568SJeff Cody } 358579fac568SJeff Cody return curr_bs; 358679fac568SJeff Cody } 358779fac568SJeff Cody 3588faea38e7Sbellard #define NB_SUFFIXES 4 3589faea38e7Sbellard 3590faea38e7Sbellard char *get_human_readable_size(char *buf, int buf_size, int64_t size) 3591faea38e7Sbellard { 3592faea38e7Sbellard static const char suffixes[NB_SUFFIXES] = "KMGT"; 3593faea38e7Sbellard int64_t base; 3594faea38e7Sbellard int i; 3595faea38e7Sbellard 3596faea38e7Sbellard if (size <= 999) { 3597faea38e7Sbellard snprintf(buf, buf_size, "%" PRId64, size); 3598faea38e7Sbellard } else { 3599faea38e7Sbellard base = 1024; 3600faea38e7Sbellard for(i = 0; i < NB_SUFFIXES; i++) { 3601faea38e7Sbellard if (size < (10 * base)) { 3602faea38e7Sbellard snprintf(buf, buf_size, "%0.1f%c", 3603faea38e7Sbellard (double)size / base, 3604faea38e7Sbellard suffixes[i]); 3605faea38e7Sbellard break; 3606faea38e7Sbellard } else if (size < (1000 * base) || i == (NB_SUFFIXES - 1)) { 3607faea38e7Sbellard snprintf(buf, buf_size, "%" PRId64 "%c", 3608faea38e7Sbellard ((size + (base >> 1)) / base), 3609faea38e7Sbellard suffixes[i]); 3610faea38e7Sbellard break; 3611faea38e7Sbellard } 3612faea38e7Sbellard base = base * 1024; 3613faea38e7Sbellard } 3614faea38e7Sbellard } 3615faea38e7Sbellard return buf; 3616faea38e7Sbellard } 3617faea38e7Sbellard 3618faea38e7Sbellard char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn) 3619faea38e7Sbellard { 3620faea38e7Sbellard char buf1[128], date_buf[128], clock_buf[128]; 3621faea38e7Sbellard struct tm tm; 3622faea38e7Sbellard time_t ti; 3623faea38e7Sbellard int64_t secs; 3624faea38e7Sbellard 3625faea38e7Sbellard if (!sn) { 3626faea38e7Sbellard snprintf(buf, buf_size, 3627faea38e7Sbellard "%-10s%-20s%7s%20s%15s", 3628faea38e7Sbellard "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK"); 3629faea38e7Sbellard } else { 3630faea38e7Sbellard ti = sn->date_sec; 3631faea38e7Sbellard localtime_r(&ti, &tm); 3632faea38e7Sbellard strftime(date_buf, sizeof(date_buf), 3633faea38e7Sbellard "%Y-%m-%d %H:%M:%S", &tm); 3634faea38e7Sbellard secs = sn->vm_clock_nsec / 1000000000; 3635faea38e7Sbellard snprintf(clock_buf, sizeof(clock_buf), 3636faea38e7Sbellard "%02d:%02d:%02d.%03d", 3637faea38e7Sbellard (int)(secs / 3600), 3638faea38e7Sbellard (int)((secs / 60) % 60), 3639faea38e7Sbellard (int)(secs % 60), 3640faea38e7Sbellard (int)((sn->vm_clock_nsec / 1000000) % 1000)); 3641faea38e7Sbellard snprintf(buf, buf_size, 3642faea38e7Sbellard "%-10s%-20s%7s%20s%15s", 3643faea38e7Sbellard sn->id_str, sn->name, 3644faea38e7Sbellard get_human_readable_size(buf1, sizeof(buf1), sn->vm_state_size), 3645faea38e7Sbellard date_buf, 3646faea38e7Sbellard clock_buf); 3647faea38e7Sbellard } 3648faea38e7Sbellard return buf; 3649faea38e7Sbellard } 3650faea38e7Sbellard 3651ea2384d3Sbellard /**************************************************************/ 365283f64091Sbellard /* async I/Os */ 3653ea2384d3Sbellard 36543b69e4b9Saliguori BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num, 3655f141eafeSaliguori QEMUIOVector *qiov, int nb_sectors, 365683f64091Sbellard BlockDriverCompletionFunc *cb, void *opaque) 3657ea2384d3Sbellard { 3658bbf0a440SStefan Hajnoczi trace_bdrv_aio_readv(bs, sector_num, nb_sectors, opaque); 3659bbf0a440SStefan Hajnoczi 3660b2a61371SStefan Hajnoczi return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors, 36618c5873d6SStefan Hajnoczi cb, opaque, false); 366283f64091Sbellard } 366383f64091Sbellard 3664f141eafeSaliguori BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num, 3665f141eafeSaliguori QEMUIOVector *qiov, int nb_sectors, 366683f64091Sbellard BlockDriverCompletionFunc *cb, void *opaque) 36677674e7bfSbellard { 3668bbf0a440SStefan Hajnoczi trace_bdrv_aio_writev(bs, sector_num, nb_sectors, opaque); 3669bbf0a440SStefan Hajnoczi 36701a6e115bSStefan Hajnoczi return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors, 36718c5873d6SStefan Hajnoczi cb, opaque, true); 367283f64091Sbellard } 367383f64091Sbellard 367440b4f539SKevin Wolf 367540b4f539SKevin Wolf typedef struct MultiwriteCB { 367640b4f539SKevin Wolf int error; 367740b4f539SKevin Wolf int num_requests; 367840b4f539SKevin Wolf int num_callbacks; 367940b4f539SKevin Wolf struct { 368040b4f539SKevin Wolf BlockDriverCompletionFunc *cb; 368140b4f539SKevin Wolf void *opaque; 368240b4f539SKevin Wolf QEMUIOVector *free_qiov; 368340b4f539SKevin Wolf } callbacks[]; 368440b4f539SKevin Wolf } MultiwriteCB; 368540b4f539SKevin Wolf 368640b4f539SKevin Wolf static void multiwrite_user_cb(MultiwriteCB *mcb) 368740b4f539SKevin Wolf { 368840b4f539SKevin Wolf int i; 368940b4f539SKevin Wolf 369040b4f539SKevin Wolf for (i = 0; i < mcb->num_callbacks; i++) { 369140b4f539SKevin Wolf mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error); 36921e1ea48dSStefan Hajnoczi if (mcb->callbacks[i].free_qiov) { 36931e1ea48dSStefan Hajnoczi qemu_iovec_destroy(mcb->callbacks[i].free_qiov); 36941e1ea48dSStefan Hajnoczi } 36957267c094SAnthony Liguori g_free(mcb->callbacks[i].free_qiov); 369640b4f539SKevin Wolf } 369740b4f539SKevin Wolf } 369840b4f539SKevin Wolf 369940b4f539SKevin Wolf static void multiwrite_cb(void *opaque, int ret) 370040b4f539SKevin Wolf { 370140b4f539SKevin Wolf MultiwriteCB *mcb = opaque; 370240b4f539SKevin Wolf 37036d519a5fSStefan Hajnoczi trace_multiwrite_cb(mcb, ret); 37046d519a5fSStefan Hajnoczi 3705cb6d3ca0SKevin Wolf if (ret < 0 && !mcb->error) { 370640b4f539SKevin Wolf mcb->error = ret; 370740b4f539SKevin Wolf } 370840b4f539SKevin Wolf 370940b4f539SKevin Wolf mcb->num_requests--; 371040b4f539SKevin Wolf if (mcb->num_requests == 0) { 371140b4f539SKevin Wolf multiwrite_user_cb(mcb); 37127267c094SAnthony Liguori g_free(mcb); 371340b4f539SKevin Wolf } 371440b4f539SKevin Wolf } 371540b4f539SKevin Wolf 371640b4f539SKevin Wolf static int multiwrite_req_compare(const void *a, const void *b) 371740b4f539SKevin Wolf { 371877be4366SChristoph Hellwig const BlockRequest *req1 = a, *req2 = b; 371977be4366SChristoph Hellwig 372077be4366SChristoph Hellwig /* 372177be4366SChristoph Hellwig * Note that we can't simply subtract req2->sector from req1->sector 372277be4366SChristoph Hellwig * here as that could overflow the return value. 372377be4366SChristoph Hellwig */ 372477be4366SChristoph Hellwig if (req1->sector > req2->sector) { 372577be4366SChristoph Hellwig return 1; 372677be4366SChristoph Hellwig } else if (req1->sector < req2->sector) { 372777be4366SChristoph Hellwig return -1; 372877be4366SChristoph Hellwig } else { 372977be4366SChristoph Hellwig return 0; 373077be4366SChristoph Hellwig } 373140b4f539SKevin Wolf } 373240b4f539SKevin Wolf 373340b4f539SKevin Wolf /* 373440b4f539SKevin Wolf * Takes a bunch of requests and tries to merge them. Returns the number of 373540b4f539SKevin Wolf * requests that remain after merging. 373640b4f539SKevin Wolf */ 373740b4f539SKevin Wolf static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs, 373840b4f539SKevin Wolf int num_reqs, MultiwriteCB *mcb) 373940b4f539SKevin Wolf { 374040b4f539SKevin Wolf int i, outidx; 374140b4f539SKevin Wolf 374240b4f539SKevin Wolf // Sort requests by start sector 374340b4f539SKevin Wolf qsort(reqs, num_reqs, sizeof(*reqs), &multiwrite_req_compare); 374440b4f539SKevin Wolf 374540b4f539SKevin Wolf // Check if adjacent requests touch the same clusters. If so, combine them, 374640b4f539SKevin Wolf // filling up gaps with zero sectors. 374740b4f539SKevin Wolf outidx = 0; 374840b4f539SKevin Wolf for (i = 1; i < num_reqs; i++) { 374940b4f539SKevin Wolf int merge = 0; 375040b4f539SKevin Wolf int64_t oldreq_last = reqs[outidx].sector + reqs[outidx].nb_sectors; 375140b4f539SKevin Wolf 3752b6a127a1SPaolo Bonzini // Handle exactly sequential writes and overlapping writes. 375340b4f539SKevin Wolf if (reqs[i].sector <= oldreq_last) { 375440b4f539SKevin Wolf merge = 1; 375540b4f539SKevin Wolf } 375640b4f539SKevin Wolf 3757e2a305fbSChristoph Hellwig if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) { 3758e2a305fbSChristoph Hellwig merge = 0; 3759e2a305fbSChristoph Hellwig } 3760e2a305fbSChristoph Hellwig 376140b4f539SKevin Wolf if (merge) { 376240b4f539SKevin Wolf size_t size; 37637267c094SAnthony Liguori QEMUIOVector *qiov = g_malloc0(sizeof(*qiov)); 376440b4f539SKevin Wolf qemu_iovec_init(qiov, 376540b4f539SKevin Wolf reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1); 376640b4f539SKevin Wolf 376740b4f539SKevin Wolf // Add the first request to the merged one. If the requests are 376840b4f539SKevin Wolf // overlapping, drop the last sectors of the first request. 376940b4f539SKevin Wolf size = (reqs[i].sector - reqs[outidx].sector) << 9; 37701b093c48SMichael Tokarev qemu_iovec_concat(qiov, reqs[outidx].qiov, 0, size); 377140b4f539SKevin Wolf 3772b6a127a1SPaolo Bonzini // We should need to add any zeros between the two requests 3773b6a127a1SPaolo Bonzini assert (reqs[i].sector <= oldreq_last); 377440b4f539SKevin Wolf 377540b4f539SKevin Wolf // Add the second request 37761b093c48SMichael Tokarev qemu_iovec_concat(qiov, reqs[i].qiov, 0, reqs[i].qiov->size); 377740b4f539SKevin Wolf 3778cbf1dff2SKevin Wolf reqs[outidx].nb_sectors = qiov->size >> 9; 377940b4f539SKevin Wolf reqs[outidx].qiov = qiov; 378040b4f539SKevin Wolf 378140b4f539SKevin Wolf mcb->callbacks[i].free_qiov = reqs[outidx].qiov; 378240b4f539SKevin Wolf } else { 378340b4f539SKevin Wolf outidx++; 378440b4f539SKevin Wolf reqs[outidx].sector = reqs[i].sector; 378540b4f539SKevin Wolf reqs[outidx].nb_sectors = reqs[i].nb_sectors; 378640b4f539SKevin Wolf reqs[outidx].qiov = reqs[i].qiov; 378740b4f539SKevin Wolf } 378840b4f539SKevin Wolf } 378940b4f539SKevin Wolf 379040b4f539SKevin Wolf return outidx + 1; 379140b4f539SKevin Wolf } 379240b4f539SKevin Wolf 379340b4f539SKevin Wolf /* 379440b4f539SKevin Wolf * Submit multiple AIO write requests at once. 379540b4f539SKevin Wolf * 379640b4f539SKevin Wolf * On success, the function returns 0 and all requests in the reqs array have 379740b4f539SKevin Wolf * been submitted. In error case this function returns -1, and any of the 379840b4f539SKevin Wolf * requests may or may not be submitted yet. In particular, this means that the 379940b4f539SKevin Wolf * callback will be called for some of the requests, for others it won't. The 380040b4f539SKevin Wolf * caller must check the error field of the BlockRequest to wait for the right 380140b4f539SKevin Wolf * callbacks (if error != 0, no callback will be called). 380240b4f539SKevin Wolf * 380340b4f539SKevin Wolf * The implementation may modify the contents of the reqs array, e.g. to merge 380440b4f539SKevin Wolf * requests. However, the fields opaque and error are left unmodified as they 380540b4f539SKevin Wolf * are used to signal failure for a single request to the caller. 380640b4f539SKevin Wolf */ 380740b4f539SKevin Wolf int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs) 380840b4f539SKevin Wolf { 380940b4f539SKevin Wolf MultiwriteCB *mcb; 381040b4f539SKevin Wolf int i; 381140b4f539SKevin Wolf 3812301db7c2SRyan Harper /* don't submit writes if we don't have a medium */ 3813301db7c2SRyan Harper if (bs->drv == NULL) { 3814301db7c2SRyan Harper for (i = 0; i < num_reqs; i++) { 3815301db7c2SRyan Harper reqs[i].error = -ENOMEDIUM; 3816301db7c2SRyan Harper } 3817301db7c2SRyan Harper return -1; 3818301db7c2SRyan Harper } 3819301db7c2SRyan Harper 382040b4f539SKevin Wolf if (num_reqs == 0) { 382140b4f539SKevin Wolf return 0; 382240b4f539SKevin Wolf } 382340b4f539SKevin Wolf 382440b4f539SKevin Wolf // Create MultiwriteCB structure 38257267c094SAnthony Liguori mcb = g_malloc0(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks)); 382640b4f539SKevin Wolf mcb->num_requests = 0; 382740b4f539SKevin Wolf mcb->num_callbacks = num_reqs; 382840b4f539SKevin Wolf 382940b4f539SKevin Wolf for (i = 0; i < num_reqs; i++) { 383040b4f539SKevin Wolf mcb->callbacks[i].cb = reqs[i].cb; 383140b4f539SKevin Wolf mcb->callbacks[i].opaque = reqs[i].opaque; 383240b4f539SKevin Wolf } 383340b4f539SKevin Wolf 383440b4f539SKevin Wolf // Check for mergable requests 383540b4f539SKevin Wolf num_reqs = multiwrite_merge(bs, reqs, num_reqs, mcb); 383640b4f539SKevin Wolf 38376d519a5fSStefan Hajnoczi trace_bdrv_aio_multiwrite(mcb, mcb->num_callbacks, num_reqs); 38386d519a5fSStefan Hajnoczi 3839df9309fbSPaolo Bonzini /* Run the aio requests. */ 3840df9309fbSPaolo Bonzini mcb->num_requests = num_reqs; 384140b4f539SKevin Wolf for (i = 0; i < num_reqs; i++) { 3842ad54ae80SPaolo Bonzini bdrv_aio_writev(bs, reqs[i].sector, reqs[i].qiov, 384340b4f539SKevin Wolf reqs[i].nb_sectors, multiwrite_cb, mcb); 384440b4f539SKevin Wolf } 384540b4f539SKevin Wolf 384640b4f539SKevin Wolf return 0; 384740b4f539SKevin Wolf } 384840b4f539SKevin Wolf 384983f64091Sbellard void bdrv_aio_cancel(BlockDriverAIOCB *acb) 385083f64091Sbellard { 3851d7331bedSStefan Hajnoczi acb->aiocb_info->cancel(acb); 385283f64091Sbellard } 385383f64091Sbellard 385498f90dbaSZhi Yong Wu /* block I/O throttling */ 385598f90dbaSZhi Yong Wu static bool bdrv_exceed_bps_limits(BlockDriverState *bs, int nb_sectors, 385698f90dbaSZhi Yong Wu bool is_write, double elapsed_time, uint64_t *wait) 385798f90dbaSZhi Yong Wu { 385898f90dbaSZhi Yong Wu uint64_t bps_limit = 0; 3859ae29d6c6SStefan Hajnoczi uint64_t extension; 386098f90dbaSZhi Yong Wu double bytes_limit, bytes_base, bytes_res; 386198f90dbaSZhi Yong Wu double slice_time, wait_time; 386298f90dbaSZhi Yong Wu 386398f90dbaSZhi Yong Wu if (bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL]) { 386498f90dbaSZhi Yong Wu bps_limit = bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL]; 386598f90dbaSZhi Yong Wu } else if (bs->io_limits.bps[is_write]) { 386698f90dbaSZhi Yong Wu bps_limit = bs->io_limits.bps[is_write]; 386798f90dbaSZhi Yong Wu } else { 386898f90dbaSZhi Yong Wu if (wait) { 386998f90dbaSZhi Yong Wu *wait = 0; 387098f90dbaSZhi Yong Wu } 387198f90dbaSZhi Yong Wu 387298f90dbaSZhi Yong Wu return false; 387398f90dbaSZhi Yong Wu } 387498f90dbaSZhi Yong Wu 387598f90dbaSZhi Yong Wu slice_time = bs->slice_end - bs->slice_start; 387698f90dbaSZhi Yong Wu slice_time /= (NANOSECONDS_PER_SECOND); 387798f90dbaSZhi Yong Wu bytes_limit = bps_limit * slice_time; 38785905fbc9SStefan Hajnoczi bytes_base = bs->slice_submitted.bytes[is_write]; 387998f90dbaSZhi Yong Wu if (bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL]) { 38805905fbc9SStefan Hajnoczi bytes_base += bs->slice_submitted.bytes[!is_write]; 388198f90dbaSZhi Yong Wu } 388298f90dbaSZhi Yong Wu 388398f90dbaSZhi Yong Wu /* bytes_base: the bytes of data which have been read/written; and 388498f90dbaSZhi Yong Wu * it is obtained from the history statistic info. 388598f90dbaSZhi Yong Wu * bytes_res: the remaining bytes of data which need to be read/written. 388698f90dbaSZhi Yong Wu * (bytes_base + bytes_res) / bps_limit: used to calcuate 388798f90dbaSZhi Yong Wu * the total time for completing reading/writting all data. 388898f90dbaSZhi Yong Wu */ 388998f90dbaSZhi Yong Wu bytes_res = (unsigned) nb_sectors * BDRV_SECTOR_SIZE; 389098f90dbaSZhi Yong Wu 389198f90dbaSZhi Yong Wu if (bytes_base + bytes_res <= bytes_limit) { 389298f90dbaSZhi Yong Wu if (wait) { 389398f90dbaSZhi Yong Wu *wait = 0; 389498f90dbaSZhi Yong Wu } 389598f90dbaSZhi Yong Wu 389698f90dbaSZhi Yong Wu return false; 389798f90dbaSZhi Yong Wu } 389898f90dbaSZhi Yong Wu 389998f90dbaSZhi Yong Wu /* Calc approx time to dispatch */ 390098f90dbaSZhi Yong Wu wait_time = (bytes_base + bytes_res) / bps_limit - elapsed_time; 390198f90dbaSZhi Yong Wu 390298f90dbaSZhi Yong Wu /* When the I/O rate at runtime exceeds the limits, 390398f90dbaSZhi Yong Wu * bs->slice_end need to be extended in order that the current statistic 390498f90dbaSZhi Yong Wu * info can be kept until the timer fire, so it is increased and tuned 390598f90dbaSZhi Yong Wu * based on the result of experiment. 390698f90dbaSZhi Yong Wu */ 3907ae29d6c6SStefan Hajnoczi extension = wait_time * NANOSECONDS_PER_SECOND; 3908ae29d6c6SStefan Hajnoczi extension = DIV_ROUND_UP(extension, BLOCK_IO_SLICE_TIME) * 3909ae29d6c6SStefan Hajnoczi BLOCK_IO_SLICE_TIME; 3910ae29d6c6SStefan Hajnoczi bs->slice_end += extension; 391198f90dbaSZhi Yong Wu if (wait) { 39120775437fSStefan Hajnoczi *wait = wait_time * NANOSECONDS_PER_SECOND; 391398f90dbaSZhi Yong Wu } 391498f90dbaSZhi Yong Wu 391598f90dbaSZhi Yong Wu return true; 391698f90dbaSZhi Yong Wu } 391798f90dbaSZhi Yong Wu 391898f90dbaSZhi Yong Wu static bool bdrv_exceed_iops_limits(BlockDriverState *bs, bool is_write, 391998f90dbaSZhi Yong Wu double elapsed_time, uint64_t *wait) 392098f90dbaSZhi Yong Wu { 392198f90dbaSZhi Yong Wu uint64_t iops_limit = 0; 392298f90dbaSZhi Yong Wu double ios_limit, ios_base; 392398f90dbaSZhi Yong Wu double slice_time, wait_time; 392498f90dbaSZhi Yong Wu 392598f90dbaSZhi Yong Wu if (bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL]) { 392698f90dbaSZhi Yong Wu iops_limit = bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL]; 392798f90dbaSZhi Yong Wu } else if (bs->io_limits.iops[is_write]) { 392898f90dbaSZhi Yong Wu iops_limit = bs->io_limits.iops[is_write]; 392998f90dbaSZhi Yong Wu } else { 393098f90dbaSZhi Yong Wu if (wait) { 393198f90dbaSZhi Yong Wu *wait = 0; 393298f90dbaSZhi Yong Wu } 393398f90dbaSZhi Yong Wu 393498f90dbaSZhi Yong Wu return false; 393598f90dbaSZhi Yong Wu } 393698f90dbaSZhi Yong Wu 393798f90dbaSZhi Yong Wu slice_time = bs->slice_end - bs->slice_start; 393898f90dbaSZhi Yong Wu slice_time /= (NANOSECONDS_PER_SECOND); 393998f90dbaSZhi Yong Wu ios_limit = iops_limit * slice_time; 39405905fbc9SStefan Hajnoczi ios_base = bs->slice_submitted.ios[is_write]; 394198f90dbaSZhi Yong Wu if (bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL]) { 39425905fbc9SStefan Hajnoczi ios_base += bs->slice_submitted.ios[!is_write]; 394398f90dbaSZhi Yong Wu } 394498f90dbaSZhi Yong Wu 394598f90dbaSZhi Yong Wu if (ios_base + 1 <= ios_limit) { 394698f90dbaSZhi Yong Wu if (wait) { 394798f90dbaSZhi Yong Wu *wait = 0; 394898f90dbaSZhi Yong Wu } 394998f90dbaSZhi Yong Wu 395098f90dbaSZhi Yong Wu return false; 395198f90dbaSZhi Yong Wu } 395298f90dbaSZhi Yong Wu 39530775437fSStefan Hajnoczi /* Calc approx time to dispatch, in seconds */ 395498f90dbaSZhi Yong Wu wait_time = (ios_base + 1) / iops_limit; 395598f90dbaSZhi Yong Wu if (wait_time > elapsed_time) { 395698f90dbaSZhi Yong Wu wait_time = wait_time - elapsed_time; 395798f90dbaSZhi Yong Wu } else { 395898f90dbaSZhi Yong Wu wait_time = 0; 395998f90dbaSZhi Yong Wu } 396098f90dbaSZhi Yong Wu 3961ae29d6c6SStefan Hajnoczi /* Exceeded current slice, extend it by another slice time */ 3962ae29d6c6SStefan Hajnoczi bs->slice_end += BLOCK_IO_SLICE_TIME; 396398f90dbaSZhi Yong Wu if (wait) { 39640775437fSStefan Hajnoczi *wait = wait_time * NANOSECONDS_PER_SECOND; 396598f90dbaSZhi Yong Wu } 396698f90dbaSZhi Yong Wu 396798f90dbaSZhi Yong Wu return true; 396898f90dbaSZhi Yong Wu } 396998f90dbaSZhi Yong Wu 397098f90dbaSZhi Yong Wu static bool bdrv_exceed_io_limits(BlockDriverState *bs, int nb_sectors, 397198f90dbaSZhi Yong Wu bool is_write, int64_t *wait) 397298f90dbaSZhi Yong Wu { 397398f90dbaSZhi Yong Wu int64_t now, max_wait; 397498f90dbaSZhi Yong Wu uint64_t bps_wait = 0, iops_wait = 0; 397598f90dbaSZhi Yong Wu double elapsed_time; 397698f90dbaSZhi Yong Wu int bps_ret, iops_ret; 397798f90dbaSZhi Yong Wu 397898f90dbaSZhi Yong Wu now = qemu_get_clock_ns(vm_clock); 3979e660fb8bSStefan Hajnoczi if (now > bs->slice_end) { 398098f90dbaSZhi Yong Wu bs->slice_start = now; 3981ae29d6c6SStefan Hajnoczi bs->slice_end = now + BLOCK_IO_SLICE_TIME; 39825905fbc9SStefan Hajnoczi memset(&bs->slice_submitted, 0, sizeof(bs->slice_submitted)); 398398f90dbaSZhi Yong Wu } 398498f90dbaSZhi Yong Wu 398598f90dbaSZhi Yong Wu elapsed_time = now - bs->slice_start; 398698f90dbaSZhi Yong Wu elapsed_time /= (NANOSECONDS_PER_SECOND); 398798f90dbaSZhi Yong Wu 398898f90dbaSZhi Yong Wu bps_ret = bdrv_exceed_bps_limits(bs, nb_sectors, 398998f90dbaSZhi Yong Wu is_write, elapsed_time, &bps_wait); 399098f90dbaSZhi Yong Wu iops_ret = bdrv_exceed_iops_limits(bs, is_write, 399198f90dbaSZhi Yong Wu elapsed_time, &iops_wait); 399298f90dbaSZhi Yong Wu if (bps_ret || iops_ret) { 399398f90dbaSZhi Yong Wu max_wait = bps_wait > iops_wait ? bps_wait : iops_wait; 399498f90dbaSZhi Yong Wu if (wait) { 399598f90dbaSZhi Yong Wu *wait = max_wait; 399698f90dbaSZhi Yong Wu } 399798f90dbaSZhi Yong Wu 399898f90dbaSZhi Yong Wu now = qemu_get_clock_ns(vm_clock); 399998f90dbaSZhi Yong Wu if (bs->slice_end < now + max_wait) { 400098f90dbaSZhi Yong Wu bs->slice_end = now + max_wait; 400198f90dbaSZhi Yong Wu } 400298f90dbaSZhi Yong Wu 400398f90dbaSZhi Yong Wu return true; 400498f90dbaSZhi Yong Wu } 400598f90dbaSZhi Yong Wu 400698f90dbaSZhi Yong Wu if (wait) { 400798f90dbaSZhi Yong Wu *wait = 0; 400898f90dbaSZhi Yong Wu } 400998f90dbaSZhi Yong Wu 40105905fbc9SStefan Hajnoczi bs->slice_submitted.bytes[is_write] += (int64_t)nb_sectors * 40115905fbc9SStefan Hajnoczi BDRV_SECTOR_SIZE; 40125905fbc9SStefan Hajnoczi bs->slice_submitted.ios[is_write]++; 40135905fbc9SStefan Hajnoczi 401498f90dbaSZhi Yong Wu return false; 401598f90dbaSZhi Yong Wu } 401683f64091Sbellard 401783f64091Sbellard /**************************************************************/ 401883f64091Sbellard /* async block device emulation */ 401983f64091Sbellard 4020c16b5a2cSChristoph Hellwig typedef struct BlockDriverAIOCBSync { 4021c16b5a2cSChristoph Hellwig BlockDriverAIOCB common; 4022c16b5a2cSChristoph Hellwig QEMUBH *bh; 4023c16b5a2cSChristoph Hellwig int ret; 4024c16b5a2cSChristoph Hellwig /* vector translation state */ 4025c16b5a2cSChristoph Hellwig QEMUIOVector *qiov; 4026c16b5a2cSChristoph Hellwig uint8_t *bounce; 4027c16b5a2cSChristoph Hellwig int is_write; 4028c16b5a2cSChristoph Hellwig } BlockDriverAIOCBSync; 4029c16b5a2cSChristoph Hellwig 4030c16b5a2cSChristoph Hellwig static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb) 4031c16b5a2cSChristoph Hellwig { 4032b666d239SKevin Wolf BlockDriverAIOCBSync *acb = 4033b666d239SKevin Wolf container_of(blockacb, BlockDriverAIOCBSync, common); 40346a7ad299SDor Laor qemu_bh_delete(acb->bh); 403536afc451SAvi Kivity acb->bh = NULL; 4036c16b5a2cSChristoph Hellwig qemu_aio_release(acb); 4037c16b5a2cSChristoph Hellwig } 4038c16b5a2cSChristoph Hellwig 4039d7331bedSStefan Hajnoczi static const AIOCBInfo bdrv_em_aiocb_info = { 4040c16b5a2cSChristoph Hellwig .aiocb_size = sizeof(BlockDriverAIOCBSync), 4041c16b5a2cSChristoph Hellwig .cancel = bdrv_aio_cancel_em, 4042c16b5a2cSChristoph Hellwig }; 4043c16b5a2cSChristoph Hellwig 404483f64091Sbellard static void bdrv_aio_bh_cb(void *opaque) 4045beac80cdSbellard { 4046ce1a14dcSpbrook BlockDriverAIOCBSync *acb = opaque; 4047f141eafeSaliguori 4048f141eafeSaliguori if (!acb->is_write) 404903396148SMichael Tokarev qemu_iovec_from_buf(acb->qiov, 0, acb->bounce, acb->qiov->size); 4050ceb42de8Saliguori qemu_vfree(acb->bounce); 4051ce1a14dcSpbrook acb->common.cb(acb->common.opaque, acb->ret); 40526a7ad299SDor Laor qemu_bh_delete(acb->bh); 405336afc451SAvi Kivity acb->bh = NULL; 4054ce1a14dcSpbrook qemu_aio_release(acb); 4055beac80cdSbellard } 4056beac80cdSbellard 4057f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs, 4058f141eafeSaliguori int64_t sector_num, 4059f141eafeSaliguori QEMUIOVector *qiov, 4060f141eafeSaliguori int nb_sectors, 4061f141eafeSaliguori BlockDriverCompletionFunc *cb, 4062f141eafeSaliguori void *opaque, 4063f141eafeSaliguori int is_write) 4064f141eafeSaliguori 4065ea2384d3Sbellard { 4066ce1a14dcSpbrook BlockDriverAIOCBSync *acb; 406783f64091Sbellard 4068d7331bedSStefan Hajnoczi acb = qemu_aio_get(&bdrv_em_aiocb_info, bs, cb, opaque); 4069f141eafeSaliguori acb->is_write = is_write; 4070f141eafeSaliguori acb->qiov = qiov; 4071e268ca52Saliguori acb->bounce = qemu_blockalign(bs, qiov->size); 4072ce1a14dcSpbrook acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb); 4073f141eafeSaliguori 4074f141eafeSaliguori if (is_write) { 4075d5e6b161SMichael Tokarev qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size); 40761ed20acfSStefan Hajnoczi acb->ret = bs->drv->bdrv_write(bs, sector_num, acb->bounce, nb_sectors); 4077f141eafeSaliguori } else { 40781ed20acfSStefan Hajnoczi acb->ret = bs->drv->bdrv_read(bs, sector_num, acb->bounce, nb_sectors); 4079f141eafeSaliguori } 4080f141eafeSaliguori 4081ce1a14dcSpbrook qemu_bh_schedule(acb->bh); 4082f141eafeSaliguori 4083ce1a14dcSpbrook return &acb->common; 40847a6cba61Spbrook } 40857a6cba61Spbrook 4086f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs, 4087f141eafeSaliguori int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, 4088ce1a14dcSpbrook BlockDriverCompletionFunc *cb, void *opaque) 408983f64091Sbellard { 4090f141eafeSaliguori return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0); 409183f64091Sbellard } 409283f64091Sbellard 4093f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs, 4094f141eafeSaliguori int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, 4095f141eafeSaliguori BlockDriverCompletionFunc *cb, void *opaque) 4096f141eafeSaliguori { 4097f141eafeSaliguori return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1); 4098f141eafeSaliguori } 4099f141eafeSaliguori 410068485420SKevin Wolf 410168485420SKevin Wolf typedef struct BlockDriverAIOCBCoroutine { 410268485420SKevin Wolf BlockDriverAIOCB common; 410368485420SKevin Wolf BlockRequest req; 410468485420SKevin Wolf bool is_write; 4105d318aea9SKevin Wolf bool *done; 410668485420SKevin Wolf QEMUBH* bh; 410768485420SKevin Wolf } BlockDriverAIOCBCoroutine; 410868485420SKevin Wolf 410968485420SKevin Wolf static void bdrv_aio_co_cancel_em(BlockDriverAIOCB *blockacb) 411068485420SKevin Wolf { 4111d318aea9SKevin Wolf BlockDriverAIOCBCoroutine *acb = 4112d318aea9SKevin Wolf container_of(blockacb, BlockDriverAIOCBCoroutine, common); 4113d318aea9SKevin Wolf bool done = false; 4114d318aea9SKevin Wolf 4115d318aea9SKevin Wolf acb->done = &done; 4116d318aea9SKevin Wolf while (!done) { 4117d318aea9SKevin Wolf qemu_aio_wait(); 4118d318aea9SKevin Wolf } 411968485420SKevin Wolf } 412068485420SKevin Wolf 4121d7331bedSStefan Hajnoczi static const AIOCBInfo bdrv_em_co_aiocb_info = { 412268485420SKevin Wolf .aiocb_size = sizeof(BlockDriverAIOCBCoroutine), 412368485420SKevin Wolf .cancel = bdrv_aio_co_cancel_em, 412468485420SKevin Wolf }; 412568485420SKevin Wolf 412635246a68SPaolo Bonzini static void bdrv_co_em_bh(void *opaque) 412768485420SKevin Wolf { 412868485420SKevin Wolf BlockDriverAIOCBCoroutine *acb = opaque; 412968485420SKevin Wolf 413068485420SKevin Wolf acb->common.cb(acb->common.opaque, acb->req.error); 4131d318aea9SKevin Wolf 4132d318aea9SKevin Wolf if (acb->done) { 4133d318aea9SKevin Wolf *acb->done = true; 4134d318aea9SKevin Wolf } 4135d318aea9SKevin Wolf 413668485420SKevin Wolf qemu_bh_delete(acb->bh); 413768485420SKevin Wolf qemu_aio_release(acb); 413868485420SKevin Wolf } 413968485420SKevin Wolf 4140b2a61371SStefan Hajnoczi /* Invoke bdrv_co_do_readv/bdrv_co_do_writev */ 4141b2a61371SStefan Hajnoczi static void coroutine_fn bdrv_co_do_rw(void *opaque) 4142b2a61371SStefan Hajnoczi { 4143b2a61371SStefan Hajnoczi BlockDriverAIOCBCoroutine *acb = opaque; 4144b2a61371SStefan Hajnoczi BlockDriverState *bs = acb->common.bs; 4145b2a61371SStefan Hajnoczi 4146b2a61371SStefan Hajnoczi if (!acb->is_write) { 4147b2a61371SStefan Hajnoczi acb->req.error = bdrv_co_do_readv(bs, acb->req.sector, 4148470c0504SStefan Hajnoczi acb->req.nb_sectors, acb->req.qiov, 0); 4149b2a61371SStefan Hajnoczi } else { 4150b2a61371SStefan Hajnoczi acb->req.error = bdrv_co_do_writev(bs, acb->req.sector, 4151f08f2ddaSStefan Hajnoczi acb->req.nb_sectors, acb->req.qiov, 0); 4152b2a61371SStefan Hajnoczi } 4153b2a61371SStefan Hajnoczi 415435246a68SPaolo Bonzini acb->bh = qemu_bh_new(bdrv_co_em_bh, acb); 4155b2a61371SStefan Hajnoczi qemu_bh_schedule(acb->bh); 4156b2a61371SStefan Hajnoczi } 4157b2a61371SStefan Hajnoczi 415868485420SKevin Wolf static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs, 415968485420SKevin Wolf int64_t sector_num, 416068485420SKevin Wolf QEMUIOVector *qiov, 416168485420SKevin Wolf int nb_sectors, 416268485420SKevin Wolf BlockDriverCompletionFunc *cb, 416368485420SKevin Wolf void *opaque, 41648c5873d6SStefan Hajnoczi bool is_write) 416568485420SKevin Wolf { 416668485420SKevin Wolf Coroutine *co; 416768485420SKevin Wolf BlockDriverAIOCBCoroutine *acb; 416868485420SKevin Wolf 4169d7331bedSStefan Hajnoczi acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque); 417068485420SKevin Wolf acb->req.sector = sector_num; 417168485420SKevin Wolf acb->req.nb_sectors = nb_sectors; 417268485420SKevin Wolf acb->req.qiov = qiov; 417368485420SKevin Wolf acb->is_write = is_write; 4174d318aea9SKevin Wolf acb->done = NULL; 417568485420SKevin Wolf 41768c5873d6SStefan Hajnoczi co = qemu_coroutine_create(bdrv_co_do_rw); 417768485420SKevin Wolf qemu_coroutine_enter(co, acb); 417868485420SKevin Wolf 417968485420SKevin Wolf return &acb->common; 418068485420SKevin Wolf } 418168485420SKevin Wolf 418207f07615SPaolo Bonzini static void coroutine_fn bdrv_aio_flush_co_entry(void *opaque) 4183b2e12bc6SChristoph Hellwig { 418407f07615SPaolo Bonzini BlockDriverAIOCBCoroutine *acb = opaque; 418507f07615SPaolo Bonzini BlockDriverState *bs = acb->common.bs; 4186b2e12bc6SChristoph Hellwig 418707f07615SPaolo Bonzini acb->req.error = bdrv_co_flush(bs); 418807f07615SPaolo Bonzini acb->bh = qemu_bh_new(bdrv_co_em_bh, acb); 4189b2e12bc6SChristoph Hellwig qemu_bh_schedule(acb->bh); 4190b2e12bc6SChristoph Hellwig } 4191b2e12bc6SChristoph Hellwig 419207f07615SPaolo Bonzini BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs, 4193016f5cf6SAlexander Graf BlockDriverCompletionFunc *cb, void *opaque) 4194016f5cf6SAlexander Graf { 419507f07615SPaolo Bonzini trace_bdrv_aio_flush(bs, opaque); 4196016f5cf6SAlexander Graf 419707f07615SPaolo Bonzini Coroutine *co; 419807f07615SPaolo Bonzini BlockDriverAIOCBCoroutine *acb; 4199016f5cf6SAlexander Graf 4200d7331bedSStefan Hajnoczi acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque); 4201d318aea9SKevin Wolf acb->done = NULL; 4202d318aea9SKevin Wolf 420307f07615SPaolo Bonzini co = qemu_coroutine_create(bdrv_aio_flush_co_entry); 420407f07615SPaolo Bonzini qemu_coroutine_enter(co, acb); 4205016f5cf6SAlexander Graf 4206016f5cf6SAlexander Graf return &acb->common; 4207016f5cf6SAlexander Graf } 4208016f5cf6SAlexander Graf 42094265d620SPaolo Bonzini static void coroutine_fn bdrv_aio_discard_co_entry(void *opaque) 42104265d620SPaolo Bonzini { 42114265d620SPaolo Bonzini BlockDriverAIOCBCoroutine *acb = opaque; 42124265d620SPaolo Bonzini BlockDriverState *bs = acb->common.bs; 42134265d620SPaolo Bonzini 42144265d620SPaolo Bonzini acb->req.error = bdrv_co_discard(bs, acb->req.sector, acb->req.nb_sectors); 42154265d620SPaolo Bonzini acb->bh = qemu_bh_new(bdrv_co_em_bh, acb); 42164265d620SPaolo Bonzini qemu_bh_schedule(acb->bh); 42174265d620SPaolo Bonzini } 42184265d620SPaolo Bonzini 42194265d620SPaolo Bonzini BlockDriverAIOCB *bdrv_aio_discard(BlockDriverState *bs, 42204265d620SPaolo Bonzini int64_t sector_num, int nb_sectors, 42214265d620SPaolo Bonzini BlockDriverCompletionFunc *cb, void *opaque) 42224265d620SPaolo Bonzini { 42234265d620SPaolo Bonzini Coroutine *co; 42244265d620SPaolo Bonzini BlockDriverAIOCBCoroutine *acb; 42254265d620SPaolo Bonzini 42264265d620SPaolo Bonzini trace_bdrv_aio_discard(bs, sector_num, nb_sectors, opaque); 42274265d620SPaolo Bonzini 4228d7331bedSStefan Hajnoczi acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque); 42294265d620SPaolo Bonzini acb->req.sector = sector_num; 42304265d620SPaolo Bonzini acb->req.nb_sectors = nb_sectors; 4231d318aea9SKevin Wolf acb->done = NULL; 42324265d620SPaolo Bonzini co = qemu_coroutine_create(bdrv_aio_discard_co_entry); 42334265d620SPaolo Bonzini qemu_coroutine_enter(co, acb); 42344265d620SPaolo Bonzini 42354265d620SPaolo Bonzini return &acb->common; 42364265d620SPaolo Bonzini } 42374265d620SPaolo Bonzini 4238ea2384d3Sbellard void bdrv_init(void) 4239ea2384d3Sbellard { 42405efa9d5aSAnthony Liguori module_call_init(MODULE_INIT_BLOCK); 4241ea2384d3Sbellard } 4242ce1a14dcSpbrook 4243eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void) 4244eb852011SMarkus Armbruster { 4245eb852011SMarkus Armbruster use_bdrv_whitelist = 1; 4246eb852011SMarkus Armbruster bdrv_init(); 4247eb852011SMarkus Armbruster } 4248eb852011SMarkus Armbruster 4249d7331bedSStefan Hajnoczi void *qemu_aio_get(const AIOCBInfo *aiocb_info, BlockDriverState *bs, 42506bbff9a0Saliguori BlockDriverCompletionFunc *cb, void *opaque) 42516bbff9a0Saliguori { 4252ce1a14dcSpbrook BlockDriverAIOCB *acb; 4253ce1a14dcSpbrook 4254d7331bedSStefan Hajnoczi acb = g_slice_alloc(aiocb_info->aiocb_size); 4255d7331bedSStefan Hajnoczi acb->aiocb_info = aiocb_info; 4256ce1a14dcSpbrook acb->bs = bs; 4257ce1a14dcSpbrook acb->cb = cb; 4258ce1a14dcSpbrook acb->opaque = opaque; 4259ce1a14dcSpbrook return acb; 4260ce1a14dcSpbrook } 4261ce1a14dcSpbrook 4262ce1a14dcSpbrook void qemu_aio_release(void *p) 4263ce1a14dcSpbrook { 4264d37c975fSStefan Hajnoczi BlockDriverAIOCB *acb = p; 4265d7331bedSStefan Hajnoczi g_slice_free1(acb->aiocb_info->aiocb_size, acb); 4266ce1a14dcSpbrook } 426719cb3738Sbellard 426819cb3738Sbellard /**************************************************************/ 4269f9f05dc5SKevin Wolf /* Coroutine block device emulation */ 4270f9f05dc5SKevin Wolf 4271f9f05dc5SKevin Wolf typedef struct CoroutineIOCompletion { 4272f9f05dc5SKevin Wolf Coroutine *coroutine; 4273f9f05dc5SKevin Wolf int ret; 4274f9f05dc5SKevin Wolf } CoroutineIOCompletion; 4275f9f05dc5SKevin Wolf 4276f9f05dc5SKevin Wolf static void bdrv_co_io_em_complete(void *opaque, int ret) 4277f9f05dc5SKevin Wolf { 4278f9f05dc5SKevin Wolf CoroutineIOCompletion *co = opaque; 4279f9f05dc5SKevin Wolf 4280f9f05dc5SKevin Wolf co->ret = ret; 4281f9f05dc5SKevin Wolf qemu_coroutine_enter(co->coroutine, NULL); 4282f9f05dc5SKevin Wolf } 4283f9f05dc5SKevin Wolf 4284f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_io_em(BlockDriverState *bs, int64_t sector_num, 4285f9f05dc5SKevin Wolf int nb_sectors, QEMUIOVector *iov, 4286f9f05dc5SKevin Wolf bool is_write) 4287f9f05dc5SKevin Wolf { 4288f9f05dc5SKevin Wolf CoroutineIOCompletion co = { 4289f9f05dc5SKevin Wolf .coroutine = qemu_coroutine_self(), 4290f9f05dc5SKevin Wolf }; 4291f9f05dc5SKevin Wolf BlockDriverAIOCB *acb; 4292f9f05dc5SKevin Wolf 4293f9f05dc5SKevin Wolf if (is_write) { 4294a652d160SStefan Hajnoczi acb = bs->drv->bdrv_aio_writev(bs, sector_num, iov, nb_sectors, 4295f9f05dc5SKevin Wolf bdrv_co_io_em_complete, &co); 4296f9f05dc5SKevin Wolf } else { 4297a652d160SStefan Hajnoczi acb = bs->drv->bdrv_aio_readv(bs, sector_num, iov, nb_sectors, 4298f9f05dc5SKevin Wolf bdrv_co_io_em_complete, &co); 4299f9f05dc5SKevin Wolf } 4300f9f05dc5SKevin Wolf 430159370aaaSStefan Hajnoczi trace_bdrv_co_io_em(bs, sector_num, nb_sectors, is_write, acb); 4302f9f05dc5SKevin Wolf if (!acb) { 4303f9f05dc5SKevin Wolf return -EIO; 4304f9f05dc5SKevin Wolf } 4305f9f05dc5SKevin Wolf qemu_coroutine_yield(); 4306f9f05dc5SKevin Wolf 4307f9f05dc5SKevin Wolf return co.ret; 4308f9f05dc5SKevin Wolf } 4309f9f05dc5SKevin Wolf 4310f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs, 4311f9f05dc5SKevin Wolf int64_t sector_num, int nb_sectors, 4312f9f05dc5SKevin Wolf QEMUIOVector *iov) 4313f9f05dc5SKevin Wolf { 4314f9f05dc5SKevin Wolf return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, false); 4315f9f05dc5SKevin Wolf } 4316f9f05dc5SKevin Wolf 4317f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs, 4318f9f05dc5SKevin Wolf int64_t sector_num, int nb_sectors, 4319f9f05dc5SKevin Wolf QEMUIOVector *iov) 4320f9f05dc5SKevin Wolf { 4321f9f05dc5SKevin Wolf return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, true); 4322f9f05dc5SKevin Wolf } 4323f9f05dc5SKevin Wolf 432407f07615SPaolo Bonzini static void coroutine_fn bdrv_flush_co_entry(void *opaque) 4325e7a8a783SKevin Wolf { 432607f07615SPaolo Bonzini RwCo *rwco = opaque; 432707f07615SPaolo Bonzini 432807f07615SPaolo Bonzini rwco->ret = bdrv_co_flush(rwco->bs); 432907f07615SPaolo Bonzini } 433007f07615SPaolo Bonzini 433107f07615SPaolo Bonzini int coroutine_fn bdrv_co_flush(BlockDriverState *bs) 433207f07615SPaolo Bonzini { 4333eb489bb1SKevin Wolf int ret; 4334eb489bb1SKevin Wolf 433529cdb251SPaolo Bonzini if (!bs || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) { 433607f07615SPaolo Bonzini return 0; 4337eb489bb1SKevin Wolf } 4338eb489bb1SKevin Wolf 4339ca716364SKevin Wolf /* Write back cached data to the OS even with cache=unsafe */ 4340eb489bb1SKevin Wolf if (bs->drv->bdrv_co_flush_to_os) { 4341eb489bb1SKevin Wolf ret = bs->drv->bdrv_co_flush_to_os(bs); 4342eb489bb1SKevin Wolf if (ret < 0) { 4343eb489bb1SKevin Wolf return ret; 4344eb489bb1SKevin Wolf } 4345eb489bb1SKevin Wolf } 4346eb489bb1SKevin Wolf 4347ca716364SKevin Wolf /* But don't actually force it to the disk with cache=unsafe */ 4348ca716364SKevin Wolf if (bs->open_flags & BDRV_O_NO_FLUSH) { 4349d4c82329SKevin Wolf goto flush_parent; 4350ca716364SKevin Wolf } 4351ca716364SKevin Wolf 4352eb489bb1SKevin Wolf if (bs->drv->bdrv_co_flush_to_disk) { 435329cdb251SPaolo Bonzini ret = bs->drv->bdrv_co_flush_to_disk(bs); 435407f07615SPaolo Bonzini } else if (bs->drv->bdrv_aio_flush) { 435507f07615SPaolo Bonzini BlockDriverAIOCB *acb; 4356e7a8a783SKevin Wolf CoroutineIOCompletion co = { 4357e7a8a783SKevin Wolf .coroutine = qemu_coroutine_self(), 4358e7a8a783SKevin Wolf }; 4359e7a8a783SKevin Wolf 436007f07615SPaolo Bonzini acb = bs->drv->bdrv_aio_flush(bs, bdrv_co_io_em_complete, &co); 436107f07615SPaolo Bonzini if (acb == NULL) { 436229cdb251SPaolo Bonzini ret = -EIO; 436307f07615SPaolo Bonzini } else { 4364e7a8a783SKevin Wolf qemu_coroutine_yield(); 436529cdb251SPaolo Bonzini ret = co.ret; 4366e7a8a783SKevin Wolf } 436707f07615SPaolo Bonzini } else { 436807f07615SPaolo Bonzini /* 436907f07615SPaolo Bonzini * Some block drivers always operate in either writethrough or unsafe 437007f07615SPaolo Bonzini * mode and don't support bdrv_flush therefore. Usually qemu doesn't 437107f07615SPaolo Bonzini * know how the server works (because the behaviour is hardcoded or 437207f07615SPaolo Bonzini * depends on server-side configuration), so we can't ensure that 437307f07615SPaolo Bonzini * everything is safe on disk. Returning an error doesn't work because 437407f07615SPaolo Bonzini * that would break guests even if the server operates in writethrough 437507f07615SPaolo Bonzini * mode. 437607f07615SPaolo Bonzini * 437707f07615SPaolo Bonzini * Let's hope the user knows what he's doing. 437807f07615SPaolo Bonzini */ 437929cdb251SPaolo Bonzini ret = 0; 438007f07615SPaolo Bonzini } 438129cdb251SPaolo Bonzini if (ret < 0) { 438229cdb251SPaolo Bonzini return ret; 438329cdb251SPaolo Bonzini } 438429cdb251SPaolo Bonzini 438529cdb251SPaolo Bonzini /* Now flush the underlying protocol. It will also have BDRV_O_NO_FLUSH 438629cdb251SPaolo Bonzini * in the case of cache=unsafe, so there are no useless flushes. 438729cdb251SPaolo Bonzini */ 4388d4c82329SKevin Wolf flush_parent: 438929cdb251SPaolo Bonzini return bdrv_co_flush(bs->file); 439007f07615SPaolo Bonzini } 439107f07615SPaolo Bonzini 43920f15423cSAnthony Liguori void bdrv_invalidate_cache(BlockDriverState *bs) 43930f15423cSAnthony Liguori { 43940f15423cSAnthony Liguori if (bs->drv && bs->drv->bdrv_invalidate_cache) { 43950f15423cSAnthony Liguori bs->drv->bdrv_invalidate_cache(bs); 43960f15423cSAnthony Liguori } 43970f15423cSAnthony Liguori } 43980f15423cSAnthony Liguori 43990f15423cSAnthony Liguori void bdrv_invalidate_cache_all(void) 44000f15423cSAnthony Liguori { 44010f15423cSAnthony Liguori BlockDriverState *bs; 44020f15423cSAnthony Liguori 44030f15423cSAnthony Liguori QTAILQ_FOREACH(bs, &bdrv_states, list) { 44040f15423cSAnthony Liguori bdrv_invalidate_cache(bs); 44050f15423cSAnthony Liguori } 44060f15423cSAnthony Liguori } 44070f15423cSAnthony Liguori 440807789269SBenoît Canet void bdrv_clear_incoming_migration_all(void) 440907789269SBenoît Canet { 441007789269SBenoît Canet BlockDriverState *bs; 441107789269SBenoît Canet 441207789269SBenoît Canet QTAILQ_FOREACH(bs, &bdrv_states, list) { 441307789269SBenoît Canet bs->open_flags = bs->open_flags & ~(BDRV_O_INCOMING); 441407789269SBenoît Canet } 441507789269SBenoît Canet } 441607789269SBenoît Canet 441707f07615SPaolo Bonzini int bdrv_flush(BlockDriverState *bs) 441807f07615SPaolo Bonzini { 441907f07615SPaolo Bonzini Coroutine *co; 442007f07615SPaolo Bonzini RwCo rwco = { 442107f07615SPaolo Bonzini .bs = bs, 442207f07615SPaolo Bonzini .ret = NOT_DONE, 442307f07615SPaolo Bonzini }; 442407f07615SPaolo Bonzini 442507f07615SPaolo Bonzini if (qemu_in_coroutine()) { 442607f07615SPaolo Bonzini /* Fast-path if already in coroutine context */ 442707f07615SPaolo Bonzini bdrv_flush_co_entry(&rwco); 442807f07615SPaolo Bonzini } else { 442907f07615SPaolo Bonzini co = qemu_coroutine_create(bdrv_flush_co_entry); 443007f07615SPaolo Bonzini qemu_coroutine_enter(co, &rwco); 443107f07615SPaolo Bonzini while (rwco.ret == NOT_DONE) { 443207f07615SPaolo Bonzini qemu_aio_wait(); 443307f07615SPaolo Bonzini } 443407f07615SPaolo Bonzini } 443507f07615SPaolo Bonzini 443607f07615SPaolo Bonzini return rwco.ret; 443707f07615SPaolo Bonzini } 4438e7a8a783SKevin Wolf 44394265d620SPaolo Bonzini static void coroutine_fn bdrv_discard_co_entry(void *opaque) 44404265d620SPaolo Bonzini { 44414265d620SPaolo Bonzini RwCo *rwco = opaque; 44424265d620SPaolo Bonzini 44434265d620SPaolo Bonzini rwco->ret = bdrv_co_discard(rwco->bs, rwco->sector_num, rwco->nb_sectors); 44444265d620SPaolo Bonzini } 44454265d620SPaolo Bonzini 44464265d620SPaolo Bonzini int coroutine_fn bdrv_co_discard(BlockDriverState *bs, int64_t sector_num, 44474265d620SPaolo Bonzini int nb_sectors) 44484265d620SPaolo Bonzini { 44494265d620SPaolo Bonzini if (!bs->drv) { 44504265d620SPaolo Bonzini return -ENOMEDIUM; 44514265d620SPaolo Bonzini } else if (bdrv_check_request(bs, sector_num, nb_sectors)) { 44524265d620SPaolo Bonzini return -EIO; 44534265d620SPaolo Bonzini } else if (bs->read_only) { 44544265d620SPaolo Bonzini return -EROFS; 4455df702c9bSPaolo Bonzini } 4456df702c9bSPaolo Bonzini 4457df702c9bSPaolo Bonzini if (bs->dirty_bitmap) { 44588f0720ecSPaolo Bonzini bdrv_reset_dirty(bs, sector_num, nb_sectors); 4459df702c9bSPaolo Bonzini } 4460df702c9bSPaolo Bonzini 44619e8f1835SPaolo Bonzini /* Do nothing if disabled. */ 44629e8f1835SPaolo Bonzini if (!(bs->open_flags & BDRV_O_UNMAP)) { 44639e8f1835SPaolo Bonzini return 0; 44649e8f1835SPaolo Bonzini } 44659e8f1835SPaolo Bonzini 4466df702c9bSPaolo Bonzini if (bs->drv->bdrv_co_discard) { 44674265d620SPaolo Bonzini return bs->drv->bdrv_co_discard(bs, sector_num, nb_sectors); 44684265d620SPaolo Bonzini } else if (bs->drv->bdrv_aio_discard) { 44694265d620SPaolo Bonzini BlockDriverAIOCB *acb; 44704265d620SPaolo Bonzini CoroutineIOCompletion co = { 44714265d620SPaolo Bonzini .coroutine = qemu_coroutine_self(), 44724265d620SPaolo Bonzini }; 44734265d620SPaolo Bonzini 44744265d620SPaolo Bonzini acb = bs->drv->bdrv_aio_discard(bs, sector_num, nb_sectors, 44754265d620SPaolo Bonzini bdrv_co_io_em_complete, &co); 44764265d620SPaolo Bonzini if (acb == NULL) { 44774265d620SPaolo Bonzini return -EIO; 44784265d620SPaolo Bonzini } else { 44794265d620SPaolo Bonzini qemu_coroutine_yield(); 44804265d620SPaolo Bonzini return co.ret; 44814265d620SPaolo Bonzini } 44824265d620SPaolo Bonzini } else { 44834265d620SPaolo Bonzini return 0; 44844265d620SPaolo Bonzini } 44854265d620SPaolo Bonzini } 44864265d620SPaolo Bonzini 44874265d620SPaolo Bonzini int bdrv_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors) 44884265d620SPaolo Bonzini { 44894265d620SPaolo Bonzini Coroutine *co; 44904265d620SPaolo Bonzini RwCo rwco = { 44914265d620SPaolo Bonzini .bs = bs, 44924265d620SPaolo Bonzini .sector_num = sector_num, 44934265d620SPaolo Bonzini .nb_sectors = nb_sectors, 44944265d620SPaolo Bonzini .ret = NOT_DONE, 44954265d620SPaolo Bonzini }; 44964265d620SPaolo Bonzini 44974265d620SPaolo Bonzini if (qemu_in_coroutine()) { 44984265d620SPaolo Bonzini /* Fast-path if already in coroutine context */ 44994265d620SPaolo Bonzini bdrv_discard_co_entry(&rwco); 45004265d620SPaolo Bonzini } else { 45014265d620SPaolo Bonzini co = qemu_coroutine_create(bdrv_discard_co_entry); 45024265d620SPaolo Bonzini qemu_coroutine_enter(co, &rwco); 45034265d620SPaolo Bonzini while (rwco.ret == NOT_DONE) { 45044265d620SPaolo Bonzini qemu_aio_wait(); 45054265d620SPaolo Bonzini } 45064265d620SPaolo Bonzini } 45074265d620SPaolo Bonzini 45084265d620SPaolo Bonzini return rwco.ret; 45094265d620SPaolo Bonzini } 45104265d620SPaolo Bonzini 4511f9f05dc5SKevin Wolf /**************************************************************/ 451219cb3738Sbellard /* removable device support */ 451319cb3738Sbellard 451419cb3738Sbellard /** 451519cb3738Sbellard * Return TRUE if the media is present 451619cb3738Sbellard */ 451719cb3738Sbellard int bdrv_is_inserted(BlockDriverState *bs) 451819cb3738Sbellard { 451919cb3738Sbellard BlockDriver *drv = bs->drv; 4520a1aff5bfSMarkus Armbruster 452119cb3738Sbellard if (!drv) 452219cb3738Sbellard return 0; 452319cb3738Sbellard if (!drv->bdrv_is_inserted) 4524a1aff5bfSMarkus Armbruster return 1; 4525a1aff5bfSMarkus Armbruster return drv->bdrv_is_inserted(bs); 452619cb3738Sbellard } 452719cb3738Sbellard 452819cb3738Sbellard /** 45298e49ca46SMarkus Armbruster * Return whether the media changed since the last call to this 45308e49ca46SMarkus Armbruster * function, or -ENOTSUP if we don't know. Most drivers don't know. 453119cb3738Sbellard */ 453219cb3738Sbellard int bdrv_media_changed(BlockDriverState *bs) 453319cb3738Sbellard { 453419cb3738Sbellard BlockDriver *drv = bs->drv; 453519cb3738Sbellard 45368e49ca46SMarkus Armbruster if (drv && drv->bdrv_media_changed) { 45378e49ca46SMarkus Armbruster return drv->bdrv_media_changed(bs); 45388e49ca46SMarkus Armbruster } 45398e49ca46SMarkus Armbruster return -ENOTSUP; 454019cb3738Sbellard } 454119cb3738Sbellard 454219cb3738Sbellard /** 454319cb3738Sbellard * If eject_flag is TRUE, eject the media. Otherwise, close the tray 454419cb3738Sbellard */ 4545f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag) 454619cb3738Sbellard { 454719cb3738Sbellard BlockDriver *drv = bs->drv; 454819cb3738Sbellard 4549822e1cd1SMarkus Armbruster if (drv && drv->bdrv_eject) { 4550822e1cd1SMarkus Armbruster drv->bdrv_eject(bs, eject_flag); 455119cb3738Sbellard } 45526f382ed2SLuiz Capitulino 45536f382ed2SLuiz Capitulino if (bs->device_name[0] != '\0') { 45546f382ed2SLuiz Capitulino bdrv_emit_qmp_eject_event(bs, eject_flag); 45556f382ed2SLuiz Capitulino } 455619cb3738Sbellard } 455719cb3738Sbellard 455819cb3738Sbellard /** 455919cb3738Sbellard * Lock or unlock the media (if it is locked, the user won't be able 456019cb3738Sbellard * to eject it manually). 456119cb3738Sbellard */ 4562025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked) 456319cb3738Sbellard { 456419cb3738Sbellard BlockDriver *drv = bs->drv; 456519cb3738Sbellard 4566025e849aSMarkus Armbruster trace_bdrv_lock_medium(bs, locked); 4567b8c6d095SStefan Hajnoczi 4568025e849aSMarkus Armbruster if (drv && drv->bdrv_lock_medium) { 4569025e849aSMarkus Armbruster drv->bdrv_lock_medium(bs, locked); 457019cb3738Sbellard } 457119cb3738Sbellard } 4572985a03b0Sths 4573985a03b0Sths /* needed for generic scsi interface */ 4574985a03b0Sths 4575985a03b0Sths int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf) 4576985a03b0Sths { 4577985a03b0Sths BlockDriver *drv = bs->drv; 4578985a03b0Sths 4579985a03b0Sths if (drv && drv->bdrv_ioctl) 4580985a03b0Sths return drv->bdrv_ioctl(bs, req, buf); 4581985a03b0Sths return -ENOTSUP; 4582985a03b0Sths } 45837d780669Saliguori 4584221f715dSaliguori BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs, 4585221f715dSaliguori unsigned long int req, void *buf, 45867d780669Saliguori BlockDriverCompletionFunc *cb, void *opaque) 45877d780669Saliguori { 4588221f715dSaliguori BlockDriver *drv = bs->drv; 45897d780669Saliguori 4590221f715dSaliguori if (drv && drv->bdrv_aio_ioctl) 4591221f715dSaliguori return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque); 4592221f715dSaliguori return NULL; 45937d780669Saliguori } 4594e268ca52Saliguori 45957b6f9300SMarkus Armbruster void bdrv_set_buffer_alignment(BlockDriverState *bs, int align) 45967b6f9300SMarkus Armbruster { 45977b6f9300SMarkus Armbruster bs->buffer_alignment = align; 45987b6f9300SMarkus Armbruster } 45997cd1e32aSlirans@il.ibm.com 4600e268ca52Saliguori void *qemu_blockalign(BlockDriverState *bs, size_t size) 4601e268ca52Saliguori { 4602e268ca52Saliguori return qemu_memalign((bs && bs->buffer_alignment) ? bs->buffer_alignment : 512, size); 4603e268ca52Saliguori } 46047cd1e32aSlirans@il.ibm.com 4605c53b1c51SStefan Hajnoczi /* 4606c53b1c51SStefan Hajnoczi * Check if all memory in this vector is sector aligned. 4607c53b1c51SStefan Hajnoczi */ 4608c53b1c51SStefan Hajnoczi bool bdrv_qiov_is_aligned(BlockDriverState *bs, QEMUIOVector *qiov) 4609c53b1c51SStefan Hajnoczi { 4610c53b1c51SStefan Hajnoczi int i; 4611c53b1c51SStefan Hajnoczi 4612c53b1c51SStefan Hajnoczi for (i = 0; i < qiov->niov; i++) { 4613c53b1c51SStefan Hajnoczi if ((uintptr_t) qiov->iov[i].iov_base % bs->buffer_alignment) { 4614c53b1c51SStefan Hajnoczi return false; 4615c53b1c51SStefan Hajnoczi } 4616c53b1c51SStefan Hajnoczi } 4617c53b1c51SStefan Hajnoczi 4618c53b1c51SStefan Hajnoczi return true; 4619c53b1c51SStefan Hajnoczi } 4620c53b1c51SStefan Hajnoczi 462150717e94SPaolo Bonzini void bdrv_set_dirty_tracking(BlockDriverState *bs, int granularity) 46227cd1e32aSlirans@il.ibm.com { 46237cd1e32aSlirans@il.ibm.com int64_t bitmap_size; 4624a55eb92cSJan Kiszka 462550717e94SPaolo Bonzini assert((granularity & (granularity - 1)) == 0); 462650717e94SPaolo Bonzini 462750717e94SPaolo Bonzini if (granularity) { 462850717e94SPaolo Bonzini granularity >>= BDRV_SECTOR_BITS; 462950717e94SPaolo Bonzini assert(!bs->dirty_bitmap); 46308f0720ecSPaolo Bonzini bitmap_size = (bdrv_getlength(bs) >> BDRV_SECTOR_BITS); 463150717e94SPaolo Bonzini bs->dirty_bitmap = hbitmap_alloc(bitmap_size, ffs(granularity) - 1); 46327cd1e32aSlirans@il.ibm.com } else { 4633c6d22830SJan Kiszka if (bs->dirty_bitmap) { 46348f0720ecSPaolo Bonzini hbitmap_free(bs->dirty_bitmap); 4635c6d22830SJan Kiszka bs->dirty_bitmap = NULL; 46367cd1e32aSlirans@il.ibm.com } 46377cd1e32aSlirans@il.ibm.com } 46387cd1e32aSlirans@il.ibm.com } 46397cd1e32aSlirans@il.ibm.com 46407cd1e32aSlirans@il.ibm.com int bdrv_get_dirty(BlockDriverState *bs, int64_t sector) 46417cd1e32aSlirans@il.ibm.com { 46428f0720ecSPaolo Bonzini if (bs->dirty_bitmap) { 46438f0720ecSPaolo Bonzini return hbitmap_get(bs->dirty_bitmap, sector); 46447cd1e32aSlirans@il.ibm.com } else { 46457cd1e32aSlirans@il.ibm.com return 0; 46467cd1e32aSlirans@il.ibm.com } 46477cd1e32aSlirans@il.ibm.com } 46487cd1e32aSlirans@il.ibm.com 46498f0720ecSPaolo Bonzini void bdrv_dirty_iter_init(BlockDriverState *bs, HBitmapIter *hbi) 46501755da16SPaolo Bonzini { 46518f0720ecSPaolo Bonzini hbitmap_iter_init(hbi, bs->dirty_bitmap, 0); 46521755da16SPaolo Bonzini } 46531755da16SPaolo Bonzini 46541755da16SPaolo Bonzini void bdrv_set_dirty(BlockDriverState *bs, int64_t cur_sector, 46551755da16SPaolo Bonzini int nr_sectors) 46561755da16SPaolo Bonzini { 46578f0720ecSPaolo Bonzini hbitmap_set(bs->dirty_bitmap, cur_sector, nr_sectors); 46581755da16SPaolo Bonzini } 46591755da16SPaolo Bonzini 46607cd1e32aSlirans@il.ibm.com void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector, 46617cd1e32aSlirans@il.ibm.com int nr_sectors) 46627cd1e32aSlirans@il.ibm.com { 46638f0720ecSPaolo Bonzini hbitmap_reset(bs->dirty_bitmap, cur_sector, nr_sectors); 46647cd1e32aSlirans@il.ibm.com } 4665aaa0eb75SLiran Schour 4666aaa0eb75SLiran Schour int64_t bdrv_get_dirty_count(BlockDriverState *bs) 4667aaa0eb75SLiran Schour { 46688f0720ecSPaolo Bonzini if (bs->dirty_bitmap) { 4669acc906c6SPaolo Bonzini return hbitmap_count(bs->dirty_bitmap); 46708f0720ecSPaolo Bonzini } else { 46718f0720ecSPaolo Bonzini return 0; 46728f0720ecSPaolo Bonzini } 4673aaa0eb75SLiran Schour } 4674f88e1a42SJes Sorensen 4675db593f25SMarcelo Tosatti void bdrv_set_in_use(BlockDriverState *bs, int in_use) 4676db593f25SMarcelo Tosatti { 4677db593f25SMarcelo Tosatti assert(bs->in_use != in_use); 4678db593f25SMarcelo Tosatti bs->in_use = in_use; 4679db593f25SMarcelo Tosatti } 4680db593f25SMarcelo Tosatti 4681db593f25SMarcelo Tosatti int bdrv_in_use(BlockDriverState *bs) 4682db593f25SMarcelo Tosatti { 4683db593f25SMarcelo Tosatti return bs->in_use; 4684db593f25SMarcelo Tosatti } 4685db593f25SMarcelo Tosatti 468628a7282aSLuiz Capitulino void bdrv_iostatus_enable(BlockDriverState *bs) 468728a7282aSLuiz Capitulino { 4688d6bf279eSLuiz Capitulino bs->iostatus_enabled = true; 468958e21ef5SLuiz Capitulino bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK; 469028a7282aSLuiz Capitulino } 469128a7282aSLuiz Capitulino 469228a7282aSLuiz Capitulino /* The I/O status is only enabled if the drive explicitly 469328a7282aSLuiz Capitulino * enables it _and_ the VM is configured to stop on errors */ 469428a7282aSLuiz Capitulino bool bdrv_iostatus_is_enabled(const BlockDriverState *bs) 469528a7282aSLuiz Capitulino { 4696d6bf279eSLuiz Capitulino return (bs->iostatus_enabled && 469792aa5c6dSPaolo Bonzini (bs->on_write_error == BLOCKDEV_ON_ERROR_ENOSPC || 469892aa5c6dSPaolo Bonzini bs->on_write_error == BLOCKDEV_ON_ERROR_STOP || 469992aa5c6dSPaolo Bonzini bs->on_read_error == BLOCKDEV_ON_ERROR_STOP)); 470028a7282aSLuiz Capitulino } 470128a7282aSLuiz Capitulino 470228a7282aSLuiz Capitulino void bdrv_iostatus_disable(BlockDriverState *bs) 470328a7282aSLuiz Capitulino { 4704d6bf279eSLuiz Capitulino bs->iostatus_enabled = false; 470528a7282aSLuiz Capitulino } 470628a7282aSLuiz Capitulino 470728a7282aSLuiz Capitulino void bdrv_iostatus_reset(BlockDriverState *bs) 470828a7282aSLuiz Capitulino { 470928a7282aSLuiz Capitulino if (bdrv_iostatus_is_enabled(bs)) { 471058e21ef5SLuiz Capitulino bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK; 47113bd293c3SPaolo Bonzini if (bs->job) { 47123bd293c3SPaolo Bonzini block_job_iostatus_reset(bs->job); 47133bd293c3SPaolo Bonzini } 471428a7282aSLuiz Capitulino } 471528a7282aSLuiz Capitulino } 471628a7282aSLuiz Capitulino 471728a7282aSLuiz Capitulino void bdrv_iostatus_set_err(BlockDriverState *bs, int error) 471828a7282aSLuiz Capitulino { 47193e1caa5fSPaolo Bonzini assert(bdrv_iostatus_is_enabled(bs)); 47203e1caa5fSPaolo Bonzini if (bs->iostatus == BLOCK_DEVICE_IO_STATUS_OK) { 472158e21ef5SLuiz Capitulino bs->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE : 472258e21ef5SLuiz Capitulino BLOCK_DEVICE_IO_STATUS_FAILED; 472328a7282aSLuiz Capitulino } 472428a7282aSLuiz Capitulino } 472528a7282aSLuiz Capitulino 4726a597e79cSChristoph Hellwig void 4727a597e79cSChristoph Hellwig bdrv_acct_start(BlockDriverState *bs, BlockAcctCookie *cookie, int64_t bytes, 4728a597e79cSChristoph Hellwig enum BlockAcctType type) 4729a597e79cSChristoph Hellwig { 4730a597e79cSChristoph Hellwig assert(type < BDRV_MAX_IOTYPE); 4731a597e79cSChristoph Hellwig 4732a597e79cSChristoph Hellwig cookie->bytes = bytes; 4733c488c7f6SChristoph Hellwig cookie->start_time_ns = get_clock(); 4734a597e79cSChristoph Hellwig cookie->type = type; 4735a597e79cSChristoph Hellwig } 4736a597e79cSChristoph Hellwig 4737a597e79cSChristoph Hellwig void 4738a597e79cSChristoph Hellwig bdrv_acct_done(BlockDriverState *bs, BlockAcctCookie *cookie) 4739a597e79cSChristoph Hellwig { 4740a597e79cSChristoph Hellwig assert(cookie->type < BDRV_MAX_IOTYPE); 4741a597e79cSChristoph Hellwig 4742a597e79cSChristoph Hellwig bs->nr_bytes[cookie->type] += cookie->bytes; 4743a597e79cSChristoph Hellwig bs->nr_ops[cookie->type]++; 4744c488c7f6SChristoph Hellwig bs->total_time_ns[cookie->type] += get_clock() - cookie->start_time_ns; 4745a597e79cSChristoph Hellwig } 4746a597e79cSChristoph Hellwig 4747d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt, 4748f88e1a42SJes Sorensen const char *base_filename, const char *base_fmt, 4749f382d43aSMiroslav Rezanina char *options, uint64_t img_size, int flags, 4750f382d43aSMiroslav Rezanina Error **errp, bool quiet) 4751f88e1a42SJes Sorensen { 4752f88e1a42SJes Sorensen QEMUOptionParameter *param = NULL, *create_options = NULL; 4753d220894eSKevin Wolf QEMUOptionParameter *backing_fmt, *backing_file, *size; 4754f88e1a42SJes Sorensen BlockDriverState *bs = NULL; 4755f88e1a42SJes Sorensen BlockDriver *drv, *proto_drv; 475696df67d1SStefan Hajnoczi BlockDriver *backing_drv = NULL; 4757f88e1a42SJes Sorensen int ret = 0; 4758f88e1a42SJes Sorensen 4759f88e1a42SJes Sorensen /* Find driver and parse its options */ 4760f88e1a42SJes Sorensen drv = bdrv_find_format(fmt); 4761f88e1a42SJes Sorensen if (!drv) { 476271c79813SLuiz Capitulino error_setg(errp, "Unknown file format '%s'", fmt); 4763d92ada22SLuiz Capitulino return; 4764f88e1a42SJes Sorensen } 4765f88e1a42SJes Sorensen 4766f88e1a42SJes Sorensen proto_drv = bdrv_find_protocol(filename); 4767f88e1a42SJes Sorensen if (!proto_drv) { 476871c79813SLuiz Capitulino error_setg(errp, "Unknown protocol '%s'", filename); 4769d92ada22SLuiz Capitulino return; 4770f88e1a42SJes Sorensen } 4771f88e1a42SJes Sorensen 4772f88e1a42SJes Sorensen create_options = append_option_parameters(create_options, 4773f88e1a42SJes Sorensen drv->create_options); 4774f88e1a42SJes Sorensen create_options = append_option_parameters(create_options, 4775f88e1a42SJes Sorensen proto_drv->create_options); 4776f88e1a42SJes Sorensen 4777f88e1a42SJes Sorensen /* Create parameter list with default values */ 4778f88e1a42SJes Sorensen param = parse_option_parameters("", create_options, param); 4779f88e1a42SJes Sorensen 4780f88e1a42SJes Sorensen set_option_parameter_int(param, BLOCK_OPT_SIZE, img_size); 4781f88e1a42SJes Sorensen 4782f88e1a42SJes Sorensen /* Parse -o options */ 4783f88e1a42SJes Sorensen if (options) { 4784f88e1a42SJes Sorensen param = parse_option_parameters(options, create_options, param); 4785f88e1a42SJes Sorensen if (param == NULL) { 478671c79813SLuiz Capitulino error_setg(errp, "Invalid options for file format '%s'.", fmt); 4787f88e1a42SJes Sorensen goto out; 4788f88e1a42SJes Sorensen } 4789f88e1a42SJes Sorensen } 4790f88e1a42SJes Sorensen 4791f88e1a42SJes Sorensen if (base_filename) { 4792f88e1a42SJes Sorensen if (set_option_parameter(param, BLOCK_OPT_BACKING_FILE, 4793f88e1a42SJes Sorensen base_filename)) { 479471c79813SLuiz Capitulino error_setg(errp, "Backing file not supported for file format '%s'", 479571c79813SLuiz Capitulino fmt); 4796f88e1a42SJes Sorensen goto out; 4797f88e1a42SJes Sorensen } 4798f88e1a42SJes Sorensen } 4799f88e1a42SJes Sorensen 4800f88e1a42SJes Sorensen if (base_fmt) { 4801f88e1a42SJes Sorensen if (set_option_parameter(param, BLOCK_OPT_BACKING_FMT, base_fmt)) { 480271c79813SLuiz Capitulino error_setg(errp, "Backing file format not supported for file " 480371c79813SLuiz Capitulino "format '%s'", fmt); 4804f88e1a42SJes Sorensen goto out; 4805f88e1a42SJes Sorensen } 4806f88e1a42SJes Sorensen } 4807f88e1a42SJes Sorensen 4808792da93aSJes Sorensen backing_file = get_option_parameter(param, BLOCK_OPT_BACKING_FILE); 4809792da93aSJes Sorensen if (backing_file && backing_file->value.s) { 4810792da93aSJes Sorensen if (!strcmp(filename, backing_file->value.s)) { 481171c79813SLuiz Capitulino error_setg(errp, "Error: Trying to create an image with the " 481271c79813SLuiz Capitulino "same filename as the backing file"); 4813792da93aSJes Sorensen goto out; 4814792da93aSJes Sorensen } 4815792da93aSJes Sorensen } 4816792da93aSJes Sorensen 4817f88e1a42SJes Sorensen backing_fmt = get_option_parameter(param, BLOCK_OPT_BACKING_FMT); 4818f88e1a42SJes Sorensen if (backing_fmt && backing_fmt->value.s) { 481996df67d1SStefan Hajnoczi backing_drv = bdrv_find_format(backing_fmt->value.s); 482096df67d1SStefan Hajnoczi if (!backing_drv) { 482171c79813SLuiz Capitulino error_setg(errp, "Unknown backing file format '%s'", 482271c79813SLuiz Capitulino backing_fmt->value.s); 4823f88e1a42SJes Sorensen goto out; 4824f88e1a42SJes Sorensen } 4825f88e1a42SJes Sorensen } 4826f88e1a42SJes Sorensen 4827f88e1a42SJes Sorensen // The size for the image must always be specified, with one exception: 4828f88e1a42SJes Sorensen // If we are using a backing file, we can obtain the size from there 4829d220894eSKevin Wolf size = get_option_parameter(param, BLOCK_OPT_SIZE); 4830d220894eSKevin Wolf if (size && size->value.n == -1) { 4831f88e1a42SJes Sorensen if (backing_file && backing_file->value.s) { 4832f88e1a42SJes Sorensen uint64_t size; 4833f88e1a42SJes Sorensen char buf[32]; 483463090dacSPaolo Bonzini int back_flags; 483563090dacSPaolo Bonzini 483663090dacSPaolo Bonzini /* backing files always opened read-only */ 483763090dacSPaolo Bonzini back_flags = 483863090dacSPaolo Bonzini flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); 4839f88e1a42SJes Sorensen 4840f88e1a42SJes Sorensen bs = bdrv_new(""); 4841f88e1a42SJes Sorensen 4842de9c0cecSKevin Wolf ret = bdrv_open(bs, backing_file->value.s, NULL, back_flags, 4843de9c0cecSKevin Wolf backing_drv); 4844f88e1a42SJes Sorensen if (ret < 0) { 484571c79813SLuiz Capitulino error_setg_errno(errp, -ret, "Could not open '%s'", 484671c79813SLuiz Capitulino backing_file->value.s); 4847f88e1a42SJes Sorensen goto out; 4848f88e1a42SJes Sorensen } 4849f88e1a42SJes Sorensen bdrv_get_geometry(bs, &size); 4850f88e1a42SJes Sorensen size *= 512; 4851f88e1a42SJes Sorensen 4852f88e1a42SJes Sorensen snprintf(buf, sizeof(buf), "%" PRId64, size); 4853f88e1a42SJes Sorensen set_option_parameter(param, BLOCK_OPT_SIZE, buf); 4854f88e1a42SJes Sorensen } else { 485571c79813SLuiz Capitulino error_setg(errp, "Image creation needs a size parameter"); 4856f88e1a42SJes Sorensen goto out; 4857f88e1a42SJes Sorensen } 4858f88e1a42SJes Sorensen } 4859f88e1a42SJes Sorensen 4860f382d43aSMiroslav Rezanina if (!quiet) { 4861f88e1a42SJes Sorensen printf("Formatting '%s', fmt=%s ", filename, fmt); 4862f88e1a42SJes Sorensen print_option_parameters(param); 4863f88e1a42SJes Sorensen puts(""); 4864f382d43aSMiroslav Rezanina } 4865f88e1a42SJes Sorensen ret = bdrv_create(drv, filename, param); 4866f88e1a42SJes Sorensen if (ret < 0) { 4867f88e1a42SJes Sorensen if (ret == -ENOTSUP) { 486871c79813SLuiz Capitulino error_setg(errp,"Formatting or formatting option not supported for " 486971c79813SLuiz Capitulino "file format '%s'", fmt); 4870f88e1a42SJes Sorensen } else if (ret == -EFBIG) { 4871f3f4d2c0SKevin Wolf const char *cluster_size_hint = ""; 4872f3f4d2c0SKevin Wolf if (get_option_parameter(create_options, BLOCK_OPT_CLUSTER_SIZE)) { 4873f3f4d2c0SKevin Wolf cluster_size_hint = " (try using a larger cluster size)"; 4874f3f4d2c0SKevin Wolf } 4875f3f4d2c0SKevin Wolf error_setg(errp, "The image size is too large for file format '%s'%s", 4876f3f4d2c0SKevin Wolf fmt, cluster_size_hint); 4877f88e1a42SJes Sorensen } else { 487871c79813SLuiz Capitulino error_setg(errp, "%s: error while creating %s: %s", filename, fmt, 487971c79813SLuiz Capitulino strerror(-ret)); 4880f88e1a42SJes Sorensen } 4881f88e1a42SJes Sorensen } 4882f88e1a42SJes Sorensen 4883f88e1a42SJes Sorensen out: 4884f88e1a42SJes Sorensen free_option_parameters(create_options); 4885f88e1a42SJes Sorensen free_option_parameters(param); 4886f88e1a42SJes Sorensen 4887f88e1a42SJes Sorensen if (bs) { 4888f88e1a42SJes Sorensen bdrv_delete(bs); 4889f88e1a42SJes Sorensen } 4890f88e1a42SJes Sorensen } 489185d126f3SStefan Hajnoczi 489285d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs) 489385d126f3SStefan Hajnoczi { 489485d126f3SStefan Hajnoczi /* Currently BlockDriverState always uses the main loop AioContext */ 489585d126f3SStefan Hajnoczi return qemu_get_aio_context(); 489685d126f3SStefan Hajnoczi } 4897