1666daa68SMarkus Armbruster /* 2666daa68SMarkus Armbruster * QEMU host block devices 3666daa68SMarkus Armbruster * 4666daa68SMarkus Armbruster * Copyright (c) 2003-2008 Fabrice Bellard 5666daa68SMarkus Armbruster * 6666daa68SMarkus Armbruster * This work is licensed under the terms of the GNU GPL, version 2 or 7666daa68SMarkus Armbruster * later. See the COPYING file in the top-level directory. 83618a094SMarkus Armbruster * 93618a094SMarkus Armbruster * This file incorporates work covered by the following copyright and 103618a094SMarkus Armbruster * permission notice: 113618a094SMarkus Armbruster * 123618a094SMarkus Armbruster * Copyright (c) 2003-2008 Fabrice Bellard 133618a094SMarkus Armbruster * 143618a094SMarkus Armbruster * Permission is hereby granted, free of charge, to any person obtaining a copy 153618a094SMarkus Armbruster * of this software and associated documentation files (the "Software"), to deal 163618a094SMarkus Armbruster * in the Software without restriction, including without limitation the rights 173618a094SMarkus Armbruster * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 183618a094SMarkus Armbruster * copies of the Software, and to permit persons to whom the Software is 193618a094SMarkus Armbruster * furnished to do so, subject to the following conditions: 203618a094SMarkus Armbruster * 213618a094SMarkus Armbruster * The above copyright notice and this permission notice shall be included in 223618a094SMarkus Armbruster * all copies or substantial portions of the Software. 233618a094SMarkus Armbruster * 243618a094SMarkus Armbruster * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 253618a094SMarkus Armbruster * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 263618a094SMarkus Armbruster * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 273618a094SMarkus Armbruster * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 283618a094SMarkus Armbruster * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 293618a094SMarkus Armbruster * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 303618a094SMarkus Armbruster * THE SOFTWARE. 31666daa68SMarkus Armbruster */ 32666daa68SMarkus Armbruster 33d38ea87aSPeter Maydell #include "qemu/osdep.h" 3426f54e9aSMarkus Armbruster #include "sysemu/block-backend.h" 359c17d615SPaolo Bonzini #include "sysemu/blockdev.h" 360d09e41aSPaolo Bonzini #include "hw/block/block.h" 37737e150eSPaolo Bonzini #include "block/blockjob.h" 38609f45eaSMax Reitz #include "block/qdict.h" 3976f4afb4SAlberto Garcia #include "block/throttle-groups.h" 4083c9089eSPaolo Bonzini #include "monitor/monitor.h" 41d49b6836SMarkus Armbruster #include "qemu/error-report.h" 421de7afc9SPaolo Bonzini #include "qemu/option.h" 431de7afc9SPaolo Bonzini #include "qemu/config-file.h" 449af23989SMarkus Armbruster #include "qapi/qapi-commands-block.h" 459af23989SMarkus Armbruster #include "qapi/qapi-commands-transaction.h" 469af23989SMarkus Armbruster #include "qapi/qapi-visit-block-core.h" 47452fcdbcSMarkus Armbruster #include "qapi/qmp/qdict.h" 4815280c36SMarkus Armbruster #include "qapi/qmp/qnum.h" 496b673957SMarkus Armbruster #include "qapi/qmp/qstring.h" 50e688df6bSMarkus Armbruster #include "qapi/error.h" 51cc7a8ea7SMarkus Armbruster #include "qapi/qmp/qerror.h" 5247e6b297SMarkus Armbruster #include "qapi/qmp/qlist.h" 53b3db211fSDaniel P. Berrange #include "qapi/qobject-output-visitor.h" 549c17d615SPaolo Bonzini #include "sysemu/sysemu.h" 55ca00bbb1SStefan Hajnoczi #include "sysemu/iothread.h" 56737e150eSPaolo Bonzini #include "block/block_int.h" 570ab8ed18SDaniel P. Berrange #include "block/trace.h" 589c17d615SPaolo Bonzini #include "sysemu/arch_init.h" 59c616f16eSThomas Huth #include "sysemu/qtest.h" 60f348b6d1SVeronia Bahaa #include "qemu/cutils.h" 61f348b6d1SVeronia Bahaa #include "qemu/help_option.h" 62a2a7862cSPradeep Jagadeesh #include "qemu/throttle-options.h" 63666daa68SMarkus Armbruster 649c4218e9SMax Reitz static QTAILQ_HEAD(, BlockDriverState) monitor_bdrv_states = 659c4218e9SMax Reitz QTAILQ_HEAD_INITIALIZER(monitor_bdrv_states); 669c4218e9SMax Reitz 67b33945cfSKevin Wolf static int do_open_tray(const char *blk_name, const char *qdev_id, 68b33945cfSKevin Wolf bool force, Error **errp); 6982fcf66eSMax Reitz static void blockdev_remove_medium(bool has_device, const char *device, 7082fcf66eSMax Reitz bool has_id, const char *id, Error **errp); 7182fcf66eSMax Reitz static void blockdev_insert_medium(bool has_device, const char *device, 7282fcf66eSMax Reitz bool has_id, const char *id, 7382fcf66eSMax Reitz const char *node_name, Error **errp); 74bf18bee5SColin Lord 751960966dSMarkus Armbruster static const char *const if_name[IF_COUNT] = { 761960966dSMarkus Armbruster [IF_NONE] = "none", 771960966dSMarkus Armbruster [IF_IDE] = "ide", 781960966dSMarkus Armbruster [IF_SCSI] = "scsi", 791960966dSMarkus Armbruster [IF_FLOPPY] = "floppy", 801960966dSMarkus Armbruster [IF_PFLASH] = "pflash", 811960966dSMarkus Armbruster [IF_MTD] = "mtd", 821960966dSMarkus Armbruster [IF_SD] = "sd", 831960966dSMarkus Armbruster [IF_VIRTIO] = "virtio", 841960966dSMarkus Armbruster [IF_XEN] = "xen", 851960966dSMarkus Armbruster }; 861960966dSMarkus Armbruster 8721dff8cfSJohn Snow static int if_max_devs[IF_COUNT] = { 8827d6bf40SMarkus Armbruster /* 8927d6bf40SMarkus Armbruster * Do not change these numbers! They govern how drive option 9027d6bf40SMarkus Armbruster * index maps to unit and bus. That mapping is ABI. 9127d6bf40SMarkus Armbruster * 92547cb157SWei Jiangang * All controllers used to implement if=T drives need to support 9327d6bf40SMarkus Armbruster * if_max_devs[T] units, for any T with if_max_devs[T] != 0. 9427d6bf40SMarkus Armbruster * Otherwise, some index values map to "impossible" bus, unit 9527d6bf40SMarkus Armbruster * values. 9627d6bf40SMarkus Armbruster * 9727d6bf40SMarkus Armbruster * For instance, if you change [IF_SCSI] to 255, -drive 9827d6bf40SMarkus Armbruster * if=scsi,index=12 no longer means bus=1,unit=5, but 9927d6bf40SMarkus Armbruster * bus=0,unit=12. With an lsi53c895a controller (7 units max), 10027d6bf40SMarkus Armbruster * the drive can't be set up. Regression. 10127d6bf40SMarkus Armbruster */ 10227d6bf40SMarkus Armbruster [IF_IDE] = 2, 10327d6bf40SMarkus Armbruster [IF_SCSI] = 7, 1041960966dSMarkus Armbruster }; 1051960966dSMarkus Armbruster 10621dff8cfSJohn Snow /** 10721dff8cfSJohn Snow * Boards may call this to offer board-by-board overrides 10821dff8cfSJohn Snow * of the default, global values. 10921dff8cfSJohn Snow */ 11021dff8cfSJohn Snow void override_max_devs(BlockInterfaceType type, int max_devs) 11121dff8cfSJohn Snow { 11218e46a03SMarkus Armbruster BlockBackend *blk; 11321dff8cfSJohn Snow DriveInfo *dinfo; 11421dff8cfSJohn Snow 11521dff8cfSJohn Snow if (max_devs <= 0) { 11621dff8cfSJohn Snow return; 11721dff8cfSJohn Snow } 11821dff8cfSJohn Snow 11918e46a03SMarkus Armbruster for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { 12018e46a03SMarkus Armbruster dinfo = blk_legacy_dinfo(blk); 12121dff8cfSJohn Snow if (dinfo->type == type) { 12221dff8cfSJohn Snow fprintf(stderr, "Cannot override units-per-bus property of" 12321dff8cfSJohn Snow " the %s interface, because a drive of that type has" 12421dff8cfSJohn Snow " already been added.\n", if_name[type]); 12521dff8cfSJohn Snow g_assert_not_reached(); 12621dff8cfSJohn Snow } 12721dff8cfSJohn Snow } 12821dff8cfSJohn Snow 12921dff8cfSJohn Snow if_max_devs[type] = max_devs; 13021dff8cfSJohn Snow } 13121dff8cfSJohn Snow 13214bafc54SMarkus Armbruster /* 13314bafc54SMarkus Armbruster * We automatically delete the drive when a device using it gets 13414bafc54SMarkus Armbruster * unplugged. Questionable feature, but we can't just drop it. 13514bafc54SMarkus Armbruster * Device models call blockdev_mark_auto_del() to schedule the 13614bafc54SMarkus Armbruster * automatic deletion, and generic qdev code calls blockdev_auto_del() 13714bafc54SMarkus Armbruster * when deletion is actually safe. 13814bafc54SMarkus Armbruster */ 1394be74634SMarkus Armbruster void blockdev_mark_auto_del(BlockBackend *blk) 14014bafc54SMarkus Armbruster { 14118e46a03SMarkus Armbruster DriveInfo *dinfo = blk_legacy_dinfo(blk); 1424be74634SMarkus Armbruster BlockDriverState *bs = blk_bs(blk); 14391fddb0dSStefan Hajnoczi AioContext *aio_context; 14414bafc54SMarkus Armbruster 14526f8b3a8SMarkus Armbruster if (!dinfo) { 1462d246f01SKevin Wolf return; 1472d246f01SKevin Wolf } 1482d246f01SKevin Wolf 1495433c24fSMax Reitz if (bs) { 15091fddb0dSStefan Hajnoczi aio_context = bdrv_get_aio_context(bs); 15191fddb0dSStefan Hajnoczi aio_context_acquire(aio_context); 15291fddb0dSStefan Hajnoczi 15312bde0eeSPaolo Bonzini if (bs->job) { 1543d70ff53SKevin Wolf job_cancel(&bs->job->job, false); 15512bde0eeSPaolo Bonzini } 15691fddb0dSStefan Hajnoczi 15791fddb0dSStefan Hajnoczi aio_context_release(aio_context); 1585433c24fSMax Reitz } 15991fddb0dSStefan Hajnoczi 16014bafc54SMarkus Armbruster dinfo->auto_del = 1; 16114bafc54SMarkus Armbruster } 16214bafc54SMarkus Armbruster 1634be74634SMarkus Armbruster void blockdev_auto_del(BlockBackend *blk) 16414bafc54SMarkus Armbruster { 16518e46a03SMarkus Armbruster DriveInfo *dinfo = blk_legacy_dinfo(blk); 16614bafc54SMarkus Armbruster 1670fc0f1faSRyan Harper if (dinfo && dinfo->auto_del) { 168efaa7c4eSMax Reitz monitor_remove_blk(blk); 169b9fe8a7aSMarkus Armbruster blk_unref(blk); 17014bafc54SMarkus Armbruster } 17114bafc54SMarkus Armbruster } 17214bafc54SMarkus Armbruster 173d8f94e1bSJohn Snow /** 174d8f94e1bSJohn Snow * Returns the current mapping of how many units per bus 175d8f94e1bSJohn Snow * a particular interface can support. 176d8f94e1bSJohn Snow * 177d8f94e1bSJohn Snow * A positive integer indicates n units per bus. 178d8f94e1bSJohn Snow * 0 implies the mapping has not been established. 179d8f94e1bSJohn Snow * -1 indicates an invalid BlockInterfaceType was given. 180d8f94e1bSJohn Snow */ 181d8f94e1bSJohn Snow int drive_get_max_devs(BlockInterfaceType type) 182d8f94e1bSJohn Snow { 183d8f94e1bSJohn Snow if (type >= IF_IDE && type < IF_COUNT) { 184d8f94e1bSJohn Snow return if_max_devs[type]; 185d8f94e1bSJohn Snow } 186d8f94e1bSJohn Snow 187d8f94e1bSJohn Snow return -1; 188d8f94e1bSJohn Snow } 189d8f94e1bSJohn Snow 190505a7fb1SMarkus Armbruster static int drive_index_to_bus_id(BlockInterfaceType type, int index) 191505a7fb1SMarkus Armbruster { 192505a7fb1SMarkus Armbruster int max_devs = if_max_devs[type]; 193505a7fb1SMarkus Armbruster return max_devs ? index / max_devs : 0; 194505a7fb1SMarkus Armbruster } 195505a7fb1SMarkus Armbruster 196505a7fb1SMarkus Armbruster static int drive_index_to_unit_id(BlockInterfaceType type, int index) 197505a7fb1SMarkus Armbruster { 198505a7fb1SMarkus Armbruster int max_devs = if_max_devs[type]; 199505a7fb1SMarkus Armbruster return max_devs ? index % max_devs : index; 200505a7fb1SMarkus Armbruster } 201505a7fb1SMarkus Armbruster 2022292ddaeSMarkus Armbruster QemuOpts *drive_def(const char *optstr) 2032292ddaeSMarkus Armbruster { 20470b94331SMarkus Armbruster return qemu_opts_parse_noisily(qemu_find_opts("drive"), optstr, false); 2052292ddaeSMarkus Armbruster } 2062292ddaeSMarkus Armbruster 2072292ddaeSMarkus Armbruster QemuOpts *drive_add(BlockInterfaceType type, int index, const char *file, 2085645b0f4SMarkus Armbruster const char *optstr) 209666daa68SMarkus Armbruster { 210666daa68SMarkus Armbruster QemuOpts *opts; 211666daa68SMarkus Armbruster 2122292ddaeSMarkus Armbruster opts = drive_def(optstr); 213666daa68SMarkus Armbruster if (!opts) { 214666daa68SMarkus Armbruster return NULL; 215666daa68SMarkus Armbruster } 2162292ddaeSMarkus Armbruster if (type != IF_DEFAULT) { 217f43e47dbSMarkus Armbruster qemu_opt_set(opts, "if", if_name[type], &error_abort); 2182292ddaeSMarkus Armbruster } 2192292ddaeSMarkus Armbruster if (index >= 0) { 220a8b18f8fSMarkus Armbruster qemu_opt_set_number(opts, "index", index, &error_abort); 2212292ddaeSMarkus Armbruster } 222666daa68SMarkus Armbruster if (file) 223f43e47dbSMarkus Armbruster qemu_opt_set(opts, "file", file, &error_abort); 224666daa68SMarkus Armbruster return opts; 225666daa68SMarkus Armbruster } 226666daa68SMarkus Armbruster 227666daa68SMarkus Armbruster DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit) 228666daa68SMarkus Armbruster { 22918e46a03SMarkus Armbruster BlockBackend *blk; 230666daa68SMarkus Armbruster DriveInfo *dinfo; 231666daa68SMarkus Armbruster 23218e46a03SMarkus Armbruster for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { 23318e46a03SMarkus Armbruster dinfo = blk_legacy_dinfo(blk); 23418e46a03SMarkus Armbruster if (dinfo && dinfo->type == type 23518e46a03SMarkus Armbruster && dinfo->bus == bus && dinfo->unit == unit) { 236666daa68SMarkus Armbruster return dinfo; 237666daa68SMarkus Armbruster } 23818e46a03SMarkus Armbruster } 239666daa68SMarkus Armbruster 240666daa68SMarkus Armbruster return NULL; 241666daa68SMarkus Armbruster } 242666daa68SMarkus Armbruster 243720b8dc0SMarkus Armbruster void drive_check_orphaned(void) 244a66c9dc7SJohn Snow { 24518e46a03SMarkus Armbruster BlockBackend *blk; 246a66c9dc7SJohn Snow DriveInfo *dinfo; 247664cc623SMarkus Armbruster Location loc; 248720b8dc0SMarkus Armbruster bool orphans = false; 249a66c9dc7SJohn Snow 25018e46a03SMarkus Armbruster for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { 25118e46a03SMarkus Armbruster dinfo = blk_legacy_dinfo(blk); 252a7f53e26SMarkus Armbruster if (!blk_get_attached_dev(blk) && !dinfo->is_default && 253a66c9dc7SJohn Snow dinfo->type != IF_NONE) { 254664cc623SMarkus Armbruster loc_push_none(&loc); 255664cc623SMarkus Armbruster qemu_opts_loc_restore(dinfo->opts); 256720b8dc0SMarkus Armbruster error_report("machine type does not support" 257664cc623SMarkus Armbruster " if=%s,bus=%d,unit=%d", 2585433c24fSMax Reitz if_name[dinfo->type], dinfo->bus, dinfo->unit); 259664cc623SMarkus Armbruster loc_pop(&loc); 260720b8dc0SMarkus Armbruster orphans = true; 261a66c9dc7SJohn Snow } 262a66c9dc7SJohn Snow } 263a66c9dc7SJohn Snow 264720b8dc0SMarkus Armbruster if (orphans) { 265720b8dc0SMarkus Armbruster exit(1); 266720b8dc0SMarkus Armbruster } 267a66c9dc7SJohn Snow } 268a66c9dc7SJohn Snow 269f1bd51acSMarkus Armbruster DriveInfo *drive_get_by_index(BlockInterfaceType type, int index) 270f1bd51acSMarkus Armbruster { 271f1bd51acSMarkus Armbruster return drive_get(type, 272f1bd51acSMarkus Armbruster drive_index_to_bus_id(type, index), 273f1bd51acSMarkus Armbruster drive_index_to_unit_id(type, index)); 274f1bd51acSMarkus Armbruster } 275f1bd51acSMarkus Armbruster 276666daa68SMarkus Armbruster int drive_get_max_bus(BlockInterfaceType type) 277666daa68SMarkus Armbruster { 278666daa68SMarkus Armbruster int max_bus; 27918e46a03SMarkus Armbruster BlockBackend *blk; 280666daa68SMarkus Armbruster DriveInfo *dinfo; 281666daa68SMarkus Armbruster 282666daa68SMarkus Armbruster max_bus = -1; 28318e46a03SMarkus Armbruster for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { 28418e46a03SMarkus Armbruster dinfo = blk_legacy_dinfo(blk); 28518e46a03SMarkus Armbruster if (dinfo && dinfo->type == type && dinfo->bus > max_bus) { 286666daa68SMarkus Armbruster max_bus = dinfo->bus; 287666daa68SMarkus Armbruster } 28818e46a03SMarkus Armbruster } 289666daa68SMarkus Armbruster return max_bus; 290666daa68SMarkus Armbruster } 291666daa68SMarkus Armbruster 29213839974SMarkus Armbruster /* Get a block device. This should only be used for single-drive devices 29313839974SMarkus Armbruster (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the 29413839974SMarkus Armbruster appropriate bus. */ 29513839974SMarkus Armbruster DriveInfo *drive_get_next(BlockInterfaceType type) 29613839974SMarkus Armbruster { 29713839974SMarkus Armbruster static int next_block_unit[IF_COUNT]; 29813839974SMarkus Armbruster 29913839974SMarkus Armbruster return drive_get(type, 0, next_block_unit[type]++); 30013839974SMarkus Armbruster } 30113839974SMarkus Armbruster 302666daa68SMarkus Armbruster static void bdrv_format_print(void *opaque, const char *name) 303666daa68SMarkus Armbruster { 304807105a7SMarkus Armbruster error_printf(" %s", name); 305666daa68SMarkus Armbruster } 306666daa68SMarkus Armbruster 307aa398a5cSStefan Hajnoczi typedef struct { 308aa398a5cSStefan Hajnoczi QEMUBH *bh; 309fa510ebfSFam Zheng BlockDriverState *bs; 310fa510ebfSFam Zheng } BDRVPutRefBH; 311aa398a5cSStefan Hajnoczi 312b681072dSKevin Wolf static int parse_block_error_action(const char *buf, bool is_read, Error **errp) 313666daa68SMarkus Armbruster { 314666daa68SMarkus Armbruster if (!strcmp(buf, "ignore")) { 31592aa5c6dSPaolo Bonzini return BLOCKDEV_ON_ERROR_IGNORE; 316666daa68SMarkus Armbruster } else if (!is_read && !strcmp(buf, "enospc")) { 31792aa5c6dSPaolo Bonzini return BLOCKDEV_ON_ERROR_ENOSPC; 318666daa68SMarkus Armbruster } else if (!strcmp(buf, "stop")) { 31992aa5c6dSPaolo Bonzini return BLOCKDEV_ON_ERROR_STOP; 320666daa68SMarkus Armbruster } else if (!strcmp(buf, "report")) { 32192aa5c6dSPaolo Bonzini return BLOCKDEV_ON_ERROR_REPORT; 322666daa68SMarkus Armbruster } else { 323b681072dSKevin Wolf error_setg(errp, "'%s' invalid %s error action", 324666daa68SMarkus Armbruster buf, is_read ? "read" : "write"); 325666daa68SMarkus Armbruster return -1; 326666daa68SMarkus Armbruster } 327666daa68SMarkus Armbruster } 328666daa68SMarkus Armbruster 32940119effSAlberto Garcia static bool parse_stats_intervals(BlockAcctStats *stats, QList *intervals, 33040119effSAlberto Garcia Error **errp) 33140119effSAlberto Garcia { 33240119effSAlberto Garcia const QListEntry *entry; 33340119effSAlberto Garcia for (entry = qlist_first(intervals); entry; entry = qlist_next(entry)) { 33440119effSAlberto Garcia switch (qobject_type(entry->value)) { 33540119effSAlberto Garcia 33640119effSAlberto Garcia case QTYPE_QSTRING: { 33740119effSAlberto Garcia unsigned long long length; 3387dc847ebSMax Reitz const char *str = qstring_get_str(qobject_to(QString, 3397dc847ebSMax Reitz entry->value)); 34040119effSAlberto Garcia if (parse_uint_full(str, &length, 10) == 0 && 34140119effSAlberto Garcia length > 0 && length <= UINT_MAX) { 34240119effSAlberto Garcia block_acct_add_interval(stats, (unsigned) length); 34340119effSAlberto Garcia } else { 34440119effSAlberto Garcia error_setg(errp, "Invalid interval length: %s", str); 34540119effSAlberto Garcia return false; 34640119effSAlberto Garcia } 34740119effSAlberto Garcia break; 34840119effSAlberto Garcia } 34940119effSAlberto Garcia 35001b2ffceSMarc-André Lureau case QTYPE_QNUM: { 3517dc847ebSMax Reitz int64_t length = qnum_get_int(qobject_to(QNum, entry->value)); 35201b2ffceSMarc-André Lureau 35340119effSAlberto Garcia if (length > 0 && length <= UINT_MAX) { 35440119effSAlberto Garcia block_acct_add_interval(stats, (unsigned) length); 35540119effSAlberto Garcia } else { 35640119effSAlberto Garcia error_setg(errp, "Invalid interval length: %" PRId64, length); 35740119effSAlberto Garcia return false; 35840119effSAlberto Garcia } 35940119effSAlberto Garcia break; 36040119effSAlberto Garcia } 36140119effSAlberto Garcia 36240119effSAlberto Garcia default: 36340119effSAlberto Garcia error_setg(errp, "The specification of stats-intervals is invalid"); 36440119effSAlberto Garcia return false; 36540119effSAlberto Garcia } 36640119effSAlberto Garcia } 36740119effSAlberto Garcia return true; 36840119effSAlberto Garcia } 36940119effSAlberto Garcia 37033cb7dc8SKevin Wolf typedef enum { MEDIA_DISK, MEDIA_CDROM } DriveMediaType; 37133cb7dc8SKevin Wolf 372fbf8175eSMax Reitz /* All parameters but @opts are optional and may be set to NULL. */ 373fbf8175eSMax Reitz static void extract_common_blockdev_options(QemuOpts *opts, int *bdrv_flags, 374fbf8175eSMax Reitz const char **throttling_group, ThrottleConfig *throttle_cfg, 375fbf8175eSMax Reitz BlockdevDetectZeroesOptions *detect_zeroes, Error **errp) 376fbf8175eSMax Reitz { 377fbf8175eSMax Reitz Error *local_error = NULL; 378fbf8175eSMax Reitz const char *aio; 379fbf8175eSMax Reitz 380fbf8175eSMax Reitz if (bdrv_flags) { 381fbf8175eSMax Reitz if (qemu_opt_get_bool(opts, "copy-on-read", false)) { 382fbf8175eSMax Reitz *bdrv_flags |= BDRV_O_COPY_ON_READ; 383fbf8175eSMax Reitz } 384fbf8175eSMax Reitz 385fbf8175eSMax Reitz if ((aio = qemu_opt_get(opts, "aio")) != NULL) { 386fbf8175eSMax Reitz if (!strcmp(aio, "native")) { 387fbf8175eSMax Reitz *bdrv_flags |= BDRV_O_NATIVE_AIO; 388fbf8175eSMax Reitz } else if (!strcmp(aio, "threads")) { 389fbf8175eSMax Reitz /* this is the default */ 390fbf8175eSMax Reitz } else { 391fbf8175eSMax Reitz error_setg(errp, "invalid aio option"); 392fbf8175eSMax Reitz return; 393fbf8175eSMax Reitz } 394fbf8175eSMax Reitz } 395fbf8175eSMax Reitz } 396fbf8175eSMax Reitz 397fbf8175eSMax Reitz /* disk I/O throttling */ 398fbf8175eSMax Reitz if (throttling_group) { 399fbf8175eSMax Reitz *throttling_group = qemu_opt_get(opts, "throttling.group"); 400fbf8175eSMax Reitz } 401fbf8175eSMax Reitz 402fbf8175eSMax Reitz if (throttle_cfg) { 4031588ab5dSAlberto Garcia throttle_config_init(throttle_cfg); 404fbf8175eSMax Reitz throttle_cfg->buckets[THROTTLE_BPS_TOTAL].avg = 405fbf8175eSMax Reitz qemu_opt_get_number(opts, "throttling.bps-total", 0); 406fbf8175eSMax Reitz throttle_cfg->buckets[THROTTLE_BPS_READ].avg = 407fbf8175eSMax Reitz qemu_opt_get_number(opts, "throttling.bps-read", 0); 408fbf8175eSMax Reitz throttle_cfg->buckets[THROTTLE_BPS_WRITE].avg = 409fbf8175eSMax Reitz qemu_opt_get_number(opts, "throttling.bps-write", 0); 410fbf8175eSMax Reitz throttle_cfg->buckets[THROTTLE_OPS_TOTAL].avg = 411fbf8175eSMax Reitz qemu_opt_get_number(opts, "throttling.iops-total", 0); 412fbf8175eSMax Reitz throttle_cfg->buckets[THROTTLE_OPS_READ].avg = 413fbf8175eSMax Reitz qemu_opt_get_number(opts, "throttling.iops-read", 0); 414fbf8175eSMax Reitz throttle_cfg->buckets[THROTTLE_OPS_WRITE].avg = 415fbf8175eSMax Reitz qemu_opt_get_number(opts, "throttling.iops-write", 0); 416fbf8175eSMax Reitz 417fbf8175eSMax Reitz throttle_cfg->buckets[THROTTLE_BPS_TOTAL].max = 418fbf8175eSMax Reitz qemu_opt_get_number(opts, "throttling.bps-total-max", 0); 419fbf8175eSMax Reitz throttle_cfg->buckets[THROTTLE_BPS_READ].max = 420fbf8175eSMax Reitz qemu_opt_get_number(opts, "throttling.bps-read-max", 0); 421fbf8175eSMax Reitz throttle_cfg->buckets[THROTTLE_BPS_WRITE].max = 422fbf8175eSMax Reitz qemu_opt_get_number(opts, "throttling.bps-write-max", 0); 423fbf8175eSMax Reitz throttle_cfg->buckets[THROTTLE_OPS_TOTAL].max = 424fbf8175eSMax Reitz qemu_opt_get_number(opts, "throttling.iops-total-max", 0); 425fbf8175eSMax Reitz throttle_cfg->buckets[THROTTLE_OPS_READ].max = 426fbf8175eSMax Reitz qemu_opt_get_number(opts, "throttling.iops-read-max", 0); 427fbf8175eSMax Reitz throttle_cfg->buckets[THROTTLE_OPS_WRITE].max = 428fbf8175eSMax Reitz qemu_opt_get_number(opts, "throttling.iops-write-max", 0); 429fbf8175eSMax Reitz 4308a0fc18dSAlberto Garcia throttle_cfg->buckets[THROTTLE_BPS_TOTAL].burst_length = 4318a0fc18dSAlberto Garcia qemu_opt_get_number(opts, "throttling.bps-total-max-length", 1); 4328a0fc18dSAlberto Garcia throttle_cfg->buckets[THROTTLE_BPS_READ].burst_length = 4338a0fc18dSAlberto Garcia qemu_opt_get_number(opts, "throttling.bps-read-max-length", 1); 4348a0fc18dSAlberto Garcia throttle_cfg->buckets[THROTTLE_BPS_WRITE].burst_length = 4358a0fc18dSAlberto Garcia qemu_opt_get_number(opts, "throttling.bps-write-max-length", 1); 4368a0fc18dSAlberto Garcia throttle_cfg->buckets[THROTTLE_OPS_TOTAL].burst_length = 4378a0fc18dSAlberto Garcia qemu_opt_get_number(opts, "throttling.iops-total-max-length", 1); 4388a0fc18dSAlberto Garcia throttle_cfg->buckets[THROTTLE_OPS_READ].burst_length = 4398a0fc18dSAlberto Garcia qemu_opt_get_number(opts, "throttling.iops-read-max-length", 1); 4408a0fc18dSAlberto Garcia throttle_cfg->buckets[THROTTLE_OPS_WRITE].burst_length = 4418a0fc18dSAlberto Garcia qemu_opt_get_number(opts, "throttling.iops-write-max-length", 1); 4428a0fc18dSAlberto Garcia 443fbf8175eSMax Reitz throttle_cfg->op_size = 444fbf8175eSMax Reitz qemu_opt_get_number(opts, "throttling.iops-size", 0); 445fbf8175eSMax Reitz 446d5851089SAlberto Garcia if (!throttle_is_valid(throttle_cfg, errp)) { 447fbf8175eSMax Reitz return; 448fbf8175eSMax Reitz } 449fbf8175eSMax Reitz } 450fbf8175eSMax Reitz 451fbf8175eSMax Reitz if (detect_zeroes) { 452fbf8175eSMax Reitz *detect_zeroes = 453f7abe0ecSMarc-André Lureau qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, 454fbf8175eSMax Reitz qemu_opt_get(opts, "detect-zeroes"), 455fbf8175eSMax Reitz BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, 456fbf8175eSMax Reitz &local_error); 457fbf8175eSMax Reitz if (local_error) { 458fbf8175eSMax Reitz error_propagate(errp, local_error); 459fbf8175eSMax Reitz return; 460fbf8175eSMax Reitz } 461fbf8175eSMax Reitz } 462fbf8175eSMax Reitz } 463fbf8175eSMax Reitz 464f298d071SKevin Wolf /* Takes the ownership of bs_opts */ 46518e46a03SMarkus Armbruster static BlockBackend *blockdev_init(const char *file, QDict *bs_opts, 466b681072dSKevin Wolf Error **errp) 467666daa68SMarkus Armbruster { 468666daa68SMarkus Armbruster const char *buf; 469666daa68SMarkus Armbruster int bdrv_flags = 0; 470666daa68SMarkus Armbruster int on_read_error, on_write_error; 471362e9299SAlberto Garcia bool account_invalid, account_failed; 472f87a0e29SAlberto Garcia bool writethrough, read_only; 47326f54e9aSMarkus Armbruster BlockBackend *blk; 474a0f1eab1SMarkus Armbruster BlockDriverState *bs; 475cc0681c4SBenoît Canet ThrottleConfig cfg; 476666daa68SMarkus Armbruster int snapshot = 0; 477c546194fSStefan Hajnoczi Error *error = NULL; 4780006383eSKevin Wolf QemuOpts *opts; 47940119effSAlberto Garcia QDict *interval_dict = NULL; 48040119effSAlberto Garcia QList *interval_list = NULL; 4810006383eSKevin Wolf const char *id; 482fbf8175eSMax Reitz BlockdevDetectZeroesOptions detect_zeroes = 483fbf8175eSMax Reitz BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF; 484fbf8175eSMax Reitz const char *throttling_group = NULL; 485666daa68SMarkus Armbruster 486f298d071SKevin Wolf /* Check common options by copying from bs_opts to opts, all other options 487f298d071SKevin Wolf * stay in bs_opts for processing by bdrv_open(). */ 488f298d071SKevin Wolf id = qdict_get_try_str(bs_opts, "id"); 4890006383eSKevin Wolf opts = qemu_opts_create(&qemu_common_drive_opts, id, 1, &error); 49084d18f06SMarkus Armbruster if (error) { 491b681072dSKevin Wolf error_propagate(errp, error); 4926376f952SMarkus Armbruster goto err_no_opts; 4930006383eSKevin Wolf } 4940006383eSKevin Wolf 4950006383eSKevin Wolf qemu_opts_absorb_qdict(opts, bs_opts, &error); 49684d18f06SMarkus Armbruster if (error) { 497b681072dSKevin Wolf error_propagate(errp, error); 498ec9c10d2SStefan Hajnoczi goto early_err; 4990006383eSKevin Wolf } 5000006383eSKevin Wolf 5010006383eSKevin Wolf if (id) { 5020006383eSKevin Wolf qdict_del(bs_opts, "id"); 5030006383eSKevin Wolf } 5040006383eSKevin Wolf 505666daa68SMarkus Armbruster /* extract parameters */ 506666daa68SMarkus Armbruster snapshot = qemu_opt_get_bool(opts, "snapshot", 0); 507666daa68SMarkus Armbruster 508362e9299SAlberto Garcia account_invalid = qemu_opt_get_bool(opts, "stats-account-invalid", true); 509362e9299SAlberto Garcia account_failed = qemu_opt_get_bool(opts, "stats-account-failed", true); 510362e9299SAlberto Garcia 511e4b24b49SKevin Wolf writethrough = !qemu_opt_get_bool(opts, BDRV_OPT_CACHE_WB, true); 512e4b24b49SKevin Wolf 513ff356ee4SAlberto Garcia id = qemu_opts_id(opts); 514ff356ee4SAlberto Garcia 51540119effSAlberto Garcia qdict_extract_subqdict(bs_opts, &interval_dict, "stats-intervals."); 51640119effSAlberto Garcia qdict_array_split(interval_dict, &interval_list); 51740119effSAlberto Garcia 51840119effSAlberto Garcia if (qdict_size(interval_dict) != 0) { 51940119effSAlberto Garcia error_setg(errp, "Invalid option stats-intervals.%s", 52040119effSAlberto Garcia qdict_first(interval_dict)->key); 52140119effSAlberto Garcia goto early_err; 52240119effSAlberto Garcia } 5232be5506fSAlberto Garcia 524fbf8175eSMax Reitz extract_common_blockdev_options(opts, &bdrv_flags, &throttling_group, &cfg, 525fbf8175eSMax Reitz &detect_zeroes, &error); 526fbf8175eSMax Reitz if (error) { 527fbf8175eSMax Reitz error_propagate(errp, error); 528ec9c10d2SStefan Hajnoczi goto early_err; 529a9384affSPaolo Bonzini } 530666daa68SMarkus Armbruster 531666daa68SMarkus Armbruster if ((buf = qemu_opt_get(opts, "format")) != NULL) { 532c8057f95SPeter Maydell if (is_help_option(buf)) { 533807105a7SMarkus Armbruster error_printf("Supported formats:"); 534666daa68SMarkus Armbruster bdrv_iterate_format(bdrv_format_print, NULL); 535807105a7SMarkus Armbruster error_printf("\n"); 536ec9c10d2SStefan Hajnoczi goto early_err; 537666daa68SMarkus Armbruster } 53874fe54f2SKevin Wolf 539e4342ce5SMax Reitz if (qdict_haskey(bs_opts, "driver")) { 540e4342ce5SMax Reitz error_setg(errp, "Cannot specify both 'driver' and 'format'"); 541ec9c10d2SStefan Hajnoczi goto early_err; 5426db5f5d6SMike Qiu } 54346f5ac20SEric Blake qdict_put_str(bs_opts, "driver", buf); 544666daa68SMarkus Armbruster } 545666daa68SMarkus Armbruster 54692aa5c6dSPaolo Bonzini on_write_error = BLOCKDEV_ON_ERROR_ENOSPC; 547666daa68SMarkus Armbruster if ((buf = qemu_opt_get(opts, "werror")) != NULL) { 548b681072dSKevin Wolf on_write_error = parse_block_error_action(buf, 0, &error); 54984d18f06SMarkus Armbruster if (error) { 550b681072dSKevin Wolf error_propagate(errp, error); 551ec9c10d2SStefan Hajnoczi goto early_err; 552666daa68SMarkus Armbruster } 553666daa68SMarkus Armbruster } 554666daa68SMarkus Armbruster 55592aa5c6dSPaolo Bonzini on_read_error = BLOCKDEV_ON_ERROR_REPORT; 556666daa68SMarkus Armbruster if ((buf = qemu_opt_get(opts, "rerror")) != NULL) { 557b681072dSKevin Wolf on_read_error = parse_block_error_action(buf, 1, &error); 55884d18f06SMarkus Armbruster if (error) { 559b681072dSKevin Wolf error_propagate(errp, error); 560ec9c10d2SStefan Hajnoczi goto early_err; 561666daa68SMarkus Armbruster } 562666daa68SMarkus Armbruster } 563666daa68SMarkus Armbruster 564666daa68SMarkus Armbruster if (snapshot) { 56591a097e7SKevin Wolf bdrv_flags |= BDRV_O_SNAPSHOT; 566666daa68SMarkus Armbruster } 567666daa68SMarkus Armbruster 568f87a0e29SAlberto Garcia read_only = qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false); 569f87a0e29SAlberto Garcia 5705ec18f8cSMax Reitz /* init */ 57139c4ae94SKevin Wolf if ((!file || !*file) && !qdict_size(bs_opts)) { 5725ec18f8cSMax Reitz BlockBackendRootState *blk_rs; 5735ec18f8cSMax Reitz 5746d0eb64dSKevin Wolf blk = blk_new(0, BLK_PERM_ALL); 5755ec18f8cSMax Reitz blk_rs = blk_get_root_state(blk); 5765ec18f8cSMax Reitz blk_rs->open_flags = bdrv_flags; 577f87a0e29SAlberto Garcia blk_rs->read_only = read_only; 5785ec18f8cSMax Reitz blk_rs->detect_zeroes = detect_zeroes; 5795ec18f8cSMax Reitz 580cb3e7f08SMarc-André Lureau qobject_unref(bs_opts); 5815ec18f8cSMax Reitz } else { 5825ec18f8cSMax Reitz if (file && !*file) { 5835ec18f8cSMax Reitz file = NULL; 5845ec18f8cSMax Reitz } 5855ec18f8cSMax Reitz 58691a097e7SKevin Wolf /* bdrv_open() defaults to the values in bdrv_flags (for compatibility 58791a097e7SKevin Wolf * with other callers) rather than what we want as the real defaults. 58891a097e7SKevin Wolf * Apply the defaults here instead. */ 58991a097e7SKevin Wolf qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_DIRECT, "off"); 59091a097e7SKevin Wolf qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_NO_FLUSH, "off"); 591f87a0e29SAlberto Garcia qdict_set_default_str(bs_opts, BDRV_OPT_READ_ONLY, 592f87a0e29SAlberto Garcia read_only ? "on" : "off"); 5939384a444SKevin Wolf qdict_set_default_str(bs_opts, BDRV_OPT_AUTO_READ_ONLY, "on"); 59472e775c7SKevin Wolf assert((bdrv_flags & BDRV_O_CACHE_MASK) == 0); 59591a097e7SKevin Wolf 59612d5ee3aSKevin Wolf if (runstate_check(RUN_STATE_INMIGRATE)) { 59712d5ee3aSKevin Wolf bdrv_flags |= BDRV_O_INACTIVE; 59812d5ee3aSKevin Wolf } 59912d5ee3aSKevin Wolf 600efaa7c4eSMax Reitz blk = blk_new_open(file, NULL, bs_opts, bdrv_flags, errp); 601e4342ce5SMax Reitz if (!blk) { 602e4342ce5SMax Reitz goto err_no_bs_opts; 603e4342ce5SMax Reitz } 604e4342ce5SMax Reitz bs = blk_bs(blk); 6050006383eSKevin Wolf 606e4342ce5SMax Reitz bs->detect_zeroes = detect_zeroes; 607e4342ce5SMax Reitz 6089caa6f3dSPaolo Bonzini block_acct_setup(blk_get_stats(blk), account_invalid, account_failed); 6092be5506fSAlberto Garcia 61040119effSAlberto Garcia if (!parse_stats_intervals(blk_get_stats(blk), interval_list, errp)) { 6112be5506fSAlberto Garcia blk_unref(blk); 6122be5506fSAlberto Garcia blk = NULL; 6132be5506fSAlberto Garcia goto err_no_bs_opts; 6142be5506fSAlberto Garcia } 6152be5506fSAlberto Garcia } 6165ec18f8cSMax Reitz 6177ca7f0f6SKevin Wolf /* disk I/O throttling */ 6187ca7f0f6SKevin Wolf if (throttle_enabled(&cfg)) { 6197ca7f0f6SKevin Wolf if (!throttling_group) { 620ff356ee4SAlberto Garcia throttling_group = id; 6217ca7f0f6SKevin Wolf } 6227ca7f0f6SKevin Wolf blk_io_limits_enable(blk, throttling_group); 6237ca7f0f6SKevin Wolf blk_set_io_limits(blk, &cfg); 6247ca7f0f6SKevin Wolf } 6257ca7f0f6SKevin Wolf 626e4b24b49SKevin Wolf blk_set_enable_write_cache(blk, !writethrough); 6275ec18f8cSMax Reitz blk_set_on_error(blk, on_read_error, on_write_error); 6280006383eSKevin Wolf 629ff356ee4SAlberto Garcia if (!monitor_add_blk(blk, id, errp)) { 630efaa7c4eSMax Reitz blk_unref(blk); 631efaa7c4eSMax Reitz blk = NULL; 632efaa7c4eSMax Reitz goto err_no_bs_opts; 633efaa7c4eSMax Reitz } 634efaa7c4eSMax Reitz 635e4342ce5SMax Reitz err_no_bs_opts: 6360006383eSKevin Wolf qemu_opts_del(opts); 637cb3e7f08SMarc-André Lureau qobject_unref(interval_dict); 638cb3e7f08SMarc-André Lureau qobject_unref(interval_list); 63918e46a03SMarkus Armbruster return blk; 640a9ae2bffSMarkus Armbruster 641ec9c10d2SStefan Hajnoczi early_err: 642ec9c10d2SStefan Hajnoczi qemu_opts_del(opts); 643cb3e7f08SMarc-André Lureau qobject_unref(interval_dict); 644cb3e7f08SMarc-André Lureau qobject_unref(interval_list); 6456376f952SMarkus Armbruster err_no_opts: 646cb3e7f08SMarc-André Lureau qobject_unref(bs_opts); 647a9ae2bffSMarkus Armbruster return NULL; 648666daa68SMarkus Armbruster } 649666daa68SMarkus Armbruster 650bd745e23SMax Reitz /* Takes the ownership of bs_opts */ 651bd745e23SMax Reitz static BlockDriverState *bds_tree_init(QDict *bs_opts, Error **errp) 652bd745e23SMax Reitz { 653bd745e23SMax Reitz int bdrv_flags = 0; 654bd745e23SMax Reitz 655a81d6164SKevin Wolf /* bdrv_open() defaults to the values in bdrv_flags (for compatibility 656a81d6164SKevin Wolf * with other callers) rather than what we want as the real defaults. 657a81d6164SKevin Wolf * Apply the defaults here instead. */ 658a81d6164SKevin Wolf qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_DIRECT, "off"); 659a81d6164SKevin Wolf qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_NO_FLUSH, "off"); 660f87a0e29SAlberto Garcia qdict_set_default_str(bs_opts, BDRV_OPT_READ_ONLY, "off"); 661a81d6164SKevin Wolf 66212d5ee3aSKevin Wolf if (runstate_check(RUN_STATE_INMIGRATE)) { 66312d5ee3aSKevin Wolf bdrv_flags |= BDRV_O_INACTIVE; 66412d5ee3aSKevin Wolf } 66512d5ee3aSKevin Wolf 66674e1ae7cSKevin Wolf return bdrv_open(NULL, NULL, bs_opts, bdrv_flags, errp); 667bd745e23SMax Reitz } 668bd745e23SMax Reitz 6699c4218e9SMax Reitz void blockdev_close_all_bdrv_states(void) 6709c4218e9SMax Reitz { 6719c4218e9SMax Reitz BlockDriverState *bs, *next_bs; 6729c4218e9SMax Reitz 6739c4218e9SMax Reitz QTAILQ_FOREACH_SAFE(bs, &monitor_bdrv_states, monitor_list, next_bs) { 6749c4218e9SMax Reitz AioContext *ctx = bdrv_get_aio_context(bs); 6759c4218e9SMax Reitz 6769c4218e9SMax Reitz aio_context_acquire(ctx); 6779c4218e9SMax Reitz bdrv_unref(bs); 6789c4218e9SMax Reitz aio_context_release(ctx); 6799c4218e9SMax Reitz } 6809c4218e9SMax Reitz } 6819c4218e9SMax Reitz 682262b4e8fSMax Reitz /* Iterates over the list of monitor-owned BlockDriverStates */ 683262b4e8fSMax Reitz BlockDriverState *bdrv_next_monitor_owned(BlockDriverState *bs) 684262b4e8fSMax Reitz { 685262b4e8fSMax Reitz return bs ? QTAILQ_NEXT(bs, monitor_list) 686262b4e8fSMax Reitz : QTAILQ_FIRST(&monitor_bdrv_states); 687262b4e8fSMax Reitz } 688262b4e8fSMax Reitz 6895abbf0eeSKevin Wolf static void qemu_opt_rename(QemuOpts *opts, const char *from, const char *to, 6905abbf0eeSKevin Wolf Error **errp) 69157975222SKevin Wolf { 69257975222SKevin Wolf const char *value; 69357975222SKevin Wolf 69457975222SKevin Wolf value = qemu_opt_get(opts, from); 69557975222SKevin Wolf if (value) { 6965abbf0eeSKevin Wolf if (qemu_opt_find(opts, to)) { 6975abbf0eeSKevin Wolf error_setg(errp, "'%s' and its alias '%s' can't be used at the " 6985abbf0eeSKevin Wolf "same time", to, from); 6995abbf0eeSKevin Wolf return; 7005abbf0eeSKevin Wolf } 70120d6cd47SJun Li } 70220d6cd47SJun Li 70320d6cd47SJun Li /* rename all items in opts */ 70420d6cd47SJun Li while ((value = qemu_opt_get(opts, from))) { 705f43e47dbSMarkus Armbruster qemu_opt_set(opts, to, value, &error_abort); 70657975222SKevin Wolf qemu_opt_unset(opts, from); 70757975222SKevin Wolf } 70857975222SKevin Wolf } 70957975222SKevin Wolf 71033cb7dc8SKevin Wolf QemuOptsList qemu_legacy_drive_opts = { 71133cb7dc8SKevin Wolf .name = "drive", 71233cb7dc8SKevin Wolf .head = QTAILQ_HEAD_INITIALIZER(qemu_legacy_drive_opts.head), 71333cb7dc8SKevin Wolf .desc = { 71433cb7dc8SKevin Wolf { 71587a899c5SKevin Wolf .name = "bus", 71687a899c5SKevin Wolf .type = QEMU_OPT_NUMBER, 71787a899c5SKevin Wolf .help = "bus number", 71887a899c5SKevin Wolf },{ 71987a899c5SKevin Wolf .name = "unit", 72087a899c5SKevin Wolf .type = QEMU_OPT_NUMBER, 72187a899c5SKevin Wolf .help = "unit number (i.e. lun for scsi)", 72287a899c5SKevin Wolf },{ 72387a899c5SKevin Wolf .name = "index", 72487a899c5SKevin Wolf .type = QEMU_OPT_NUMBER, 72587a899c5SKevin Wolf .help = "index number", 72687a899c5SKevin Wolf },{ 72733cb7dc8SKevin Wolf .name = "media", 72833cb7dc8SKevin Wolf .type = QEMU_OPT_STRING, 72933cb7dc8SKevin Wolf .help = "media type (disk, cdrom)", 730593d464bSKevin Wolf },{ 731593d464bSKevin Wolf .name = "if", 732593d464bSKevin Wolf .type = QEMU_OPT_STRING, 733593d464bSKevin Wolf .help = "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)", 734b41a7338SKevin Wolf },{ 735d095b465SMax Reitz .name = "file", 736d095b465SMax Reitz .type = QEMU_OPT_STRING, 737d095b465SMax Reitz .help = "file name", 73833cb7dc8SKevin Wolf }, 7390ebd24e0SKevin Wolf 7400ebd24e0SKevin Wolf /* Options that are passed on, but have special semantics with -drive */ 7410ebd24e0SKevin Wolf { 7424e200cf8SAlberto Garcia .name = BDRV_OPT_READ_ONLY, 7430ebd24e0SKevin Wolf .type = QEMU_OPT_BOOL, 7440ebd24e0SKevin Wolf .help = "open drive file as read-only", 7450ebd24e0SKevin Wolf },{ 746ee13ed1cSKevin Wolf .name = "rerror", 747ee13ed1cSKevin Wolf .type = QEMU_OPT_STRING, 748ee13ed1cSKevin Wolf .help = "read error action", 749ee13ed1cSKevin Wolf },{ 750ee13ed1cSKevin Wolf .name = "werror", 751ee13ed1cSKevin Wolf .type = QEMU_OPT_STRING, 752ee13ed1cSKevin Wolf .help = "write error action", 753ee13ed1cSKevin Wolf },{ 7540ebd24e0SKevin Wolf .name = "copy-on-read", 7550ebd24e0SKevin Wolf .type = QEMU_OPT_BOOL, 7560ebd24e0SKevin Wolf .help = "copy read data from backing file into image file", 7570ebd24e0SKevin Wolf }, 7580ebd24e0SKevin Wolf 75933cb7dc8SKevin Wolf { /* end of list */ } 76033cb7dc8SKevin Wolf }, 76133cb7dc8SKevin Wolf }; 76233cb7dc8SKevin Wolf 763c4f26c9fSMarkus Armbruster DriveInfo *drive_new(QemuOpts *all_opts, BlockInterfaceType block_default_type, 764c4f26c9fSMarkus Armbruster Error **errp) 76557975222SKevin Wolf { 76629c4e2b5SKevin Wolf const char *value; 76718e46a03SMarkus Armbruster BlockBackend *blk; 76833cb7dc8SKevin Wolf DriveInfo *dinfo = NULL; 769f298d071SKevin Wolf QDict *bs_opts; 77033cb7dc8SKevin Wolf QemuOpts *legacy_opts; 77133cb7dc8SKevin Wolf DriveMediaType media = MEDIA_DISK; 772593d464bSKevin Wolf BlockInterfaceType type; 77387a899c5SKevin Wolf int max_devs, bus_id, unit_id, index; 774ee13ed1cSKevin Wolf const char *werror, *rerror; 775a7fdbcf0SFam Zheng bool read_only = false; 776a7fdbcf0SFam Zheng bool copy_on_read; 777d095b465SMax Reitz const char *filename; 77833cb7dc8SKevin Wolf Error *local_err = NULL; 779247147fbSKevin Wolf int i; 78029c4e2b5SKevin Wolf 78157975222SKevin Wolf /* Change legacy command line options into QMP ones */ 782247147fbSKevin Wolf static const struct { 783247147fbSKevin Wolf const char *from; 784247147fbSKevin Wolf const char *to; 785247147fbSKevin Wolf } opt_renames[] = { 786247147fbSKevin Wolf { "iops", "throttling.iops-total" }, 787247147fbSKevin Wolf { "iops_rd", "throttling.iops-read" }, 788247147fbSKevin Wolf { "iops_wr", "throttling.iops-write" }, 78957975222SKevin Wolf 790247147fbSKevin Wolf { "bps", "throttling.bps-total" }, 791247147fbSKevin Wolf { "bps_rd", "throttling.bps-read" }, 792247147fbSKevin Wolf { "bps_wr", "throttling.bps-write" }, 79357975222SKevin Wolf 794247147fbSKevin Wolf { "iops_max", "throttling.iops-total-max" }, 795247147fbSKevin Wolf { "iops_rd_max", "throttling.iops-read-max" }, 796247147fbSKevin Wolf { "iops_wr_max", "throttling.iops-write-max" }, 7973e9fab69SBenoît Canet 798247147fbSKevin Wolf { "bps_max", "throttling.bps-total-max" }, 799247147fbSKevin Wolf { "bps_rd_max", "throttling.bps-read-max" }, 800247147fbSKevin Wolf { "bps_wr_max", "throttling.bps-write-max" }, 8013e9fab69SBenoît Canet 802247147fbSKevin Wolf { "iops_size", "throttling.iops-size" }, 8032024c1dfSBenoît Canet 80476f4afb4SAlberto Garcia { "group", "throttling.group" }, 80576f4afb4SAlberto Garcia 8064e200cf8SAlberto Garcia { "readonly", BDRV_OPT_READ_ONLY }, 807247147fbSKevin Wolf }; 808247147fbSKevin Wolf 809247147fbSKevin Wolf for (i = 0; i < ARRAY_SIZE(opt_renames); i++) { 8105abbf0eeSKevin Wolf qemu_opt_rename(all_opts, opt_renames[i].from, opt_renames[i].to, 8115abbf0eeSKevin Wolf &local_err); 8125abbf0eeSKevin Wolf if (local_err) { 813c4f26c9fSMarkus Armbruster error_propagate(errp, local_err); 8145abbf0eeSKevin Wolf return NULL; 8155abbf0eeSKevin Wolf } 816247147fbSKevin Wolf } 8170f227a94SKevin Wolf 81829c4e2b5SKevin Wolf value = qemu_opt_get(all_opts, "cache"); 81929c4e2b5SKevin Wolf if (value) { 82029c4e2b5SKevin Wolf int flags = 0; 82104feb4a5SKevin Wolf bool writethrough; 82229c4e2b5SKevin Wolf 82304feb4a5SKevin Wolf if (bdrv_parse_cache_mode(value, &flags, &writethrough) != 0) { 824c4f26c9fSMarkus Armbruster error_setg(errp, "invalid cache option"); 82529c4e2b5SKevin Wolf return NULL; 82629c4e2b5SKevin Wolf } 82729c4e2b5SKevin Wolf 82829c4e2b5SKevin Wolf /* Specific options take precedence */ 82954861b92SKevin Wolf if (!qemu_opt_get(all_opts, BDRV_OPT_CACHE_WB)) { 83054861b92SKevin Wolf qemu_opt_set_bool(all_opts, BDRV_OPT_CACHE_WB, 83104feb4a5SKevin Wolf !writethrough, &error_abort); 83229c4e2b5SKevin Wolf } 83354861b92SKevin Wolf if (!qemu_opt_get(all_opts, BDRV_OPT_CACHE_DIRECT)) { 83454861b92SKevin Wolf qemu_opt_set_bool(all_opts, BDRV_OPT_CACHE_DIRECT, 835cccb7967SMarkus Armbruster !!(flags & BDRV_O_NOCACHE), &error_abort); 83629c4e2b5SKevin Wolf } 83754861b92SKevin Wolf if (!qemu_opt_get(all_opts, BDRV_OPT_CACHE_NO_FLUSH)) { 83854861b92SKevin Wolf qemu_opt_set_bool(all_opts, BDRV_OPT_CACHE_NO_FLUSH, 839cccb7967SMarkus Armbruster !!(flags & BDRV_O_NO_FLUSH), &error_abort); 84029c4e2b5SKevin Wolf } 84129c4e2b5SKevin Wolf qemu_opt_unset(all_opts, "cache"); 84229c4e2b5SKevin Wolf } 84329c4e2b5SKevin Wolf 844f298d071SKevin Wolf /* Get a QDict for processing the options */ 845f298d071SKevin Wolf bs_opts = qdict_new(); 846f298d071SKevin Wolf qemu_opts_to_qdict(all_opts, bs_opts); 847f298d071SKevin Wolf 84887ea75d5SPeter Crosthwaite legacy_opts = qemu_opts_create(&qemu_legacy_drive_opts, NULL, 0, 84987ea75d5SPeter Crosthwaite &error_abort); 85033cb7dc8SKevin Wolf qemu_opts_absorb_qdict(legacy_opts, bs_opts, &local_err); 85184d18f06SMarkus Armbruster if (local_err) { 852c4f26c9fSMarkus Armbruster error_propagate(errp, local_err); 85333cb7dc8SKevin Wolf goto fail; 85433cb7dc8SKevin Wolf } 85533cb7dc8SKevin Wolf 85633cb7dc8SKevin Wolf /* Media type */ 85733cb7dc8SKevin Wolf value = qemu_opt_get(legacy_opts, "media"); 85833cb7dc8SKevin Wolf if (value) { 85933cb7dc8SKevin Wolf if (!strcmp(value, "disk")) { 86033cb7dc8SKevin Wolf media = MEDIA_DISK; 86133cb7dc8SKevin Wolf } else if (!strcmp(value, "cdrom")) { 86233cb7dc8SKevin Wolf media = MEDIA_CDROM; 863a7fdbcf0SFam Zheng read_only = true; 86433cb7dc8SKevin Wolf } else { 865c4f26c9fSMarkus Armbruster error_setg(errp, "'%s' invalid media", value); 86633cb7dc8SKevin Wolf goto fail; 86733cb7dc8SKevin Wolf } 86833cb7dc8SKevin Wolf } 86933cb7dc8SKevin Wolf 8700ebd24e0SKevin Wolf /* copy-on-read is disabled with a warning for read-only devices */ 8714e200cf8SAlberto Garcia read_only |= qemu_opt_get_bool(legacy_opts, BDRV_OPT_READ_ONLY, false); 8720ebd24e0SKevin Wolf copy_on_read = qemu_opt_get_bool(legacy_opts, "copy-on-read", false); 8730ebd24e0SKevin Wolf 8740ebd24e0SKevin Wolf if (read_only && copy_on_read) { 8753dc6f869SAlistair Francis warn_report("disabling copy-on-read on read-only drive"); 8760ebd24e0SKevin Wolf copy_on_read = false; 8770ebd24e0SKevin Wolf } 8780ebd24e0SKevin Wolf 87946f5ac20SEric Blake qdict_put_str(bs_opts, BDRV_OPT_READ_ONLY, read_only ? "on" : "off"); 88046f5ac20SEric Blake qdict_put_str(bs_opts, "copy-on-read", copy_on_read ? "on" : "off"); 8810ebd24e0SKevin Wolf 882593d464bSKevin Wolf /* Controller type */ 883593d464bSKevin Wolf value = qemu_opt_get(legacy_opts, "if"); 884593d464bSKevin Wolf if (value) { 885593d464bSKevin Wolf for (type = 0; 886593d464bSKevin Wolf type < IF_COUNT && strcmp(value, if_name[type]); 887593d464bSKevin Wolf type++) { 888593d464bSKevin Wolf } 889593d464bSKevin Wolf if (type == IF_COUNT) { 890c4f26c9fSMarkus Armbruster error_setg(errp, "unsupported bus type '%s'", value); 891593d464bSKevin Wolf goto fail; 892593d464bSKevin Wolf } 893593d464bSKevin Wolf } else { 894593d464bSKevin Wolf type = block_default_type; 895593d464bSKevin Wolf } 896593d464bSKevin Wolf 89787a899c5SKevin Wolf /* Device address specified by bus/unit or index. 89887a899c5SKevin Wolf * If none was specified, try to find the first free one. */ 89987a899c5SKevin Wolf bus_id = qemu_opt_get_number(legacy_opts, "bus", 0); 90087a899c5SKevin Wolf unit_id = qemu_opt_get_number(legacy_opts, "unit", -1); 90187a899c5SKevin Wolf index = qemu_opt_get_number(legacy_opts, "index", -1); 90287a899c5SKevin Wolf 90387a899c5SKevin Wolf max_devs = if_max_devs[type]; 90487a899c5SKevin Wolf 90587a899c5SKevin Wolf if (index != -1) { 90687a899c5SKevin Wolf if (bus_id != 0 || unit_id != -1) { 907c4f26c9fSMarkus Armbruster error_setg(errp, "index cannot be used with bus and unit"); 90887a899c5SKevin Wolf goto fail; 90987a899c5SKevin Wolf } 91087a899c5SKevin Wolf bus_id = drive_index_to_bus_id(type, index); 91187a899c5SKevin Wolf unit_id = drive_index_to_unit_id(type, index); 91287a899c5SKevin Wolf } 91387a899c5SKevin Wolf 91487a899c5SKevin Wolf if (unit_id == -1) { 91587a899c5SKevin Wolf unit_id = 0; 91687a899c5SKevin Wolf while (drive_get(type, bus_id, unit_id) != NULL) { 91787a899c5SKevin Wolf unit_id++; 91887a899c5SKevin Wolf if (max_devs && unit_id >= max_devs) { 91987a899c5SKevin Wolf unit_id -= max_devs; 92087a899c5SKevin Wolf bus_id++; 92187a899c5SKevin Wolf } 92287a899c5SKevin Wolf } 92387a899c5SKevin Wolf } 92487a899c5SKevin Wolf 92587a899c5SKevin Wolf if (max_devs && unit_id >= max_devs) { 926c4f26c9fSMarkus Armbruster error_setg(errp, "unit %d too big (max is %d)", unit_id, max_devs - 1); 92787a899c5SKevin Wolf goto fail; 92887a899c5SKevin Wolf } 92987a899c5SKevin Wolf 93087a899c5SKevin Wolf if (drive_get(type, bus_id, unit_id) != NULL) { 931c4f26c9fSMarkus Armbruster error_setg(errp, "drive with bus=%d, unit=%d (index=%d) exists", 93287a899c5SKevin Wolf bus_id, unit_id, index); 93387a899c5SKevin Wolf goto fail; 93487a899c5SKevin Wolf } 93587a899c5SKevin Wolf 93687a899c5SKevin Wolf /* no id supplied -> create one */ 93787a899c5SKevin Wolf if (qemu_opts_id(all_opts) == NULL) { 93887a899c5SKevin Wolf char *new_id; 93987a899c5SKevin Wolf const char *mediastr = ""; 94087a899c5SKevin Wolf if (type == IF_IDE || type == IF_SCSI) { 94187a899c5SKevin Wolf mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd"; 94287a899c5SKevin Wolf } 94387a899c5SKevin Wolf if (max_devs) { 94487a899c5SKevin Wolf new_id = g_strdup_printf("%s%i%s%i", if_name[type], bus_id, 94587a899c5SKevin Wolf mediastr, unit_id); 94687a899c5SKevin Wolf } else { 94787a899c5SKevin Wolf new_id = g_strdup_printf("%s%s%i", if_name[type], 94887a899c5SKevin Wolf mediastr, unit_id); 94987a899c5SKevin Wolf } 95046f5ac20SEric Blake qdict_put_str(bs_opts, "id", new_id); 95187a899c5SKevin Wolf g_free(new_id); 95287a899c5SKevin Wolf } 95387a899c5SKevin Wolf 954394c7d4dSKevin Wolf /* Add virtio block device */ 955394c7d4dSKevin Wolf if (type == IF_VIRTIO) { 956394c7d4dSKevin Wolf QemuOpts *devopts; 95787ea75d5SPeter Crosthwaite devopts = qemu_opts_create(qemu_find_opts("device"), NULL, 0, 95887ea75d5SPeter Crosthwaite &error_abort); 959394c7d4dSKevin Wolf if (arch_type == QEMU_ARCH_S390X) { 9601f68f1d3SAlexander Graf qemu_opt_set(devopts, "driver", "virtio-blk-ccw", &error_abort); 961394c7d4dSKevin Wolf } else { 962f43e47dbSMarkus Armbruster qemu_opt_set(devopts, "driver", "virtio-blk-pci", &error_abort); 963394c7d4dSKevin Wolf } 964f43e47dbSMarkus Armbruster qemu_opt_set(devopts, "drive", qdict_get_str(bs_opts, "id"), 965f43e47dbSMarkus Armbruster &error_abort); 966394c7d4dSKevin Wolf } 967394c7d4dSKevin Wolf 968d095b465SMax Reitz filename = qemu_opt_get(legacy_opts, "file"); 969d095b465SMax Reitz 970ee13ed1cSKevin Wolf /* Check werror/rerror compatibility with if=... */ 971ee13ed1cSKevin Wolf werror = qemu_opt_get(legacy_opts, "werror"); 972ee13ed1cSKevin Wolf if (werror != NULL) { 973ee13ed1cSKevin Wolf if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO && 974ee13ed1cSKevin Wolf type != IF_NONE) { 975c4f26c9fSMarkus Armbruster error_setg(errp, "werror is not supported by this bus type"); 976ee13ed1cSKevin Wolf goto fail; 977ee13ed1cSKevin Wolf } 97846f5ac20SEric Blake qdict_put_str(bs_opts, "werror", werror); 979ee13ed1cSKevin Wolf } 980ee13ed1cSKevin Wolf 981ee13ed1cSKevin Wolf rerror = qemu_opt_get(legacy_opts, "rerror"); 982ee13ed1cSKevin Wolf if (rerror != NULL) { 983ee13ed1cSKevin Wolf if (type != IF_IDE && type != IF_VIRTIO && type != IF_SCSI && 984ee13ed1cSKevin Wolf type != IF_NONE) { 985c4f26c9fSMarkus Armbruster error_setg(errp, "rerror is not supported by this bus type"); 986ee13ed1cSKevin Wolf goto fail; 987ee13ed1cSKevin Wolf } 98846f5ac20SEric Blake qdict_put_str(bs_opts, "rerror", rerror); 989ee13ed1cSKevin Wolf } 990ee13ed1cSKevin Wolf 9912d246f01SKevin Wolf /* Actual block device init: Functionality shared with blockdev-add */ 99218e46a03SMarkus Armbruster blk = blockdev_init(filename, bs_opts, &local_err); 9933cb0e25cSMarkus Armbruster bs_opts = NULL; 99418e46a03SMarkus Armbruster if (!blk) { 99584d18f06SMarkus Armbruster if (local_err) { 996c4f26c9fSMarkus Armbruster error_propagate(errp, local_err); 997b681072dSKevin Wolf } 9982d246f01SKevin Wolf goto fail; 999b681072dSKevin Wolf } else { 100084d18f06SMarkus Armbruster assert(!local_err); 10012d246f01SKevin Wolf } 10022d246f01SKevin Wolf 100326f8b3a8SMarkus Armbruster /* Create legacy DriveInfo */ 100426f8b3a8SMarkus Armbruster dinfo = g_malloc0(sizeof(*dinfo)); 1005f298d071SKevin Wolf dinfo->opts = all_opts; 10062d246f01SKevin Wolf 1007ee13ed1cSKevin Wolf dinfo->type = type; 100887a899c5SKevin Wolf dinfo->bus = bus_id; 100987a899c5SKevin Wolf dinfo->unit = unit_id; 1010bcf83158SKevin Wolf 101126f8b3a8SMarkus Armbruster blk_set_legacy_dinfo(blk, dinfo); 101226f8b3a8SMarkus Armbruster 1013e34ef046SKevin Wolf switch(type) { 1014e34ef046SKevin Wolf case IF_IDE: 1015e34ef046SKevin Wolf case IF_SCSI: 1016e34ef046SKevin Wolf case IF_XEN: 1017e34ef046SKevin Wolf case IF_NONE: 1018e34ef046SKevin Wolf dinfo->media_cd = media == MEDIA_CDROM; 1019e34ef046SKevin Wolf break; 1020e34ef046SKevin Wolf default: 1021e34ef046SKevin Wolf break; 1022e34ef046SKevin Wolf } 1023e34ef046SKevin Wolf 10242d246f01SKevin Wolf fail: 102533cb7dc8SKevin Wolf qemu_opts_del(legacy_opts); 1026cb3e7f08SMarc-André Lureau qobject_unref(bs_opts); 10272d246f01SKevin Wolf return dinfo; 102857975222SKevin Wolf } 102957975222SKevin Wolf 1030b6c1bae5SKevin Wolf static BlockDriverState *qmp_get_root_bs(const char *name, Error **errp) 1031b6c1bae5SKevin Wolf { 1032b6c1bae5SKevin Wolf BlockDriverState *bs; 1033b6c1bae5SKevin Wolf 1034b6c1bae5SKevin Wolf bs = bdrv_lookup_bs(name, name, errp); 1035b6c1bae5SKevin Wolf if (bs == NULL) { 1036b6c1bae5SKevin Wolf return NULL; 1037b6c1bae5SKevin Wolf } 1038b6c1bae5SKevin Wolf 1039b6c1bae5SKevin Wolf if (!bdrv_is_root_node(bs)) { 1040b6c1bae5SKevin Wolf error_setg(errp, "Need a root block node"); 1041b6c1bae5SKevin Wolf return NULL; 1042b6c1bae5SKevin Wolf } 1043b6c1bae5SKevin Wolf 1044b6c1bae5SKevin Wolf if (!bdrv_is_inserted(bs)) { 1045b6c1bae5SKevin Wolf error_setg(errp, "Device has no medium"); 1046b6c1bae5SKevin Wolf return NULL; 1047b6c1bae5SKevin Wolf } 1048b6c1bae5SKevin Wolf 1049b6c1bae5SKevin Wolf return bs; 1050b6c1bae5SKevin Wolf } 1051b6c1bae5SKevin Wolf 1052b33945cfSKevin Wolf static BlockBackend *qmp_get_blk(const char *blk_name, const char *qdev_id, 1053b33945cfSKevin Wolf Error **errp) 1054b33945cfSKevin Wolf { 1055b33945cfSKevin Wolf BlockBackend *blk; 1056b33945cfSKevin Wolf 1057b33945cfSKevin Wolf if (!blk_name == !qdev_id) { 1058b33945cfSKevin Wolf error_setg(errp, "Need exactly one of 'device' and 'id'"); 1059b33945cfSKevin Wolf return NULL; 1060b33945cfSKevin Wolf } 1061b33945cfSKevin Wolf 1062b33945cfSKevin Wolf if (qdev_id) { 1063b33945cfSKevin Wolf blk = blk_by_qdev_id(qdev_id, errp); 1064b33945cfSKevin Wolf } else { 1065b33945cfSKevin Wolf blk = blk_by_name(blk_name); 1066b33945cfSKevin Wolf if (blk == NULL) { 1067b33945cfSKevin Wolf error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, 1068b33945cfSKevin Wolf "Device '%s' not found", blk_name); 1069b33945cfSKevin Wolf } 1070b33945cfSKevin Wolf } 1071b33945cfSKevin Wolf 1072b33945cfSKevin Wolf return blk; 1073b33945cfSKevin Wolf } 1074b33945cfSKevin Wolf 10753e5a50d6SMarkus Armbruster void hmp_commit(Monitor *mon, const QDict *qdict) 1076666daa68SMarkus Armbruster { 1077666daa68SMarkus Armbruster const char *device = qdict_get_str(qdict, "device"); 1078a0e8544cSFam Zheng BlockBackend *blk; 10792d3735d3SStefan Hajnoczi int ret; 10802d3735d3SStefan Hajnoczi 1081e8877497SStefan Hajnoczi if (!strcmp(device, "all")) { 1082da31d594SMax Reitz ret = blk_commit_all(); 1083e8877497SStefan Hajnoczi } else { 108484aa0140SStefan Hajnoczi BlockDriverState *bs; 108584aa0140SStefan Hajnoczi AioContext *aio_context; 108684aa0140SStefan Hajnoczi 1087a0e8544cSFam Zheng blk = blk_by_name(device); 1088a0e8544cSFam Zheng if (!blk) { 108958513bdeSJeff Cody monitor_printf(mon, "Device '%s' not found\n", device); 1090ac59eb95SMarkus Armbruster return; 10916ab4b5abSMarkus Armbruster } 10925433c24fSMax Reitz if (!blk_is_available(blk)) { 10935433c24fSMax Reitz monitor_printf(mon, "Device '%s' has no medium\n", device); 10945433c24fSMax Reitz return; 10955433c24fSMax Reitz } 109684aa0140SStefan Hajnoczi 109784aa0140SStefan Hajnoczi bs = blk_bs(blk); 109884aa0140SStefan Hajnoczi aio_context = bdrv_get_aio_context(bs); 109984aa0140SStefan Hajnoczi aio_context_acquire(aio_context); 110084aa0140SStefan Hajnoczi 110184aa0140SStefan Hajnoczi ret = bdrv_commit(bs); 110284aa0140SStefan Hajnoczi 110384aa0140SStefan Hajnoczi aio_context_release(aio_context); 11042d3735d3SStefan Hajnoczi } 110558513bdeSJeff Cody if (ret < 0) { 110658513bdeSJeff Cody monitor_printf(mon, "'commit' error for '%s': %s\n", device, 110758513bdeSJeff Cody strerror(-ret)); 1108666daa68SMarkus Armbruster } 1109666daa68SMarkus Armbruster } 1110666daa68SMarkus Armbruster 111110f75907SEric Blake static void blockdev_do_action(TransactionAction *action, Error **errp) 11126cc2a415SPaolo Bonzini { 1113c8a83e85SKevin Wolf TransactionActionList list; 11146cc2a415SPaolo Bonzini 111510f75907SEric Blake list.value = action; 11166cc2a415SPaolo Bonzini list.next = NULL; 111794d16a64SJohn Snow qmp_transaction(&list, false, NULL, errp); 11186cc2a415SPaolo Bonzini } 11196cc2a415SPaolo Bonzini 11200901f67eSBenoît Canet void qmp_blockdev_snapshot_sync(bool has_device, const char *device, 11210901f67eSBenoît Canet bool has_node_name, const char *node_name, 11220901f67eSBenoît Canet const char *snapshot_file, 11230901f67eSBenoît Canet bool has_snapshot_node_name, 11240901f67eSBenoît Canet const char *snapshot_node_name, 11256106e249SLuiz Capitulino bool has_format, const char *format, 11260901f67eSBenoît Canet bool has_mode, NewImageMode mode, Error **errp) 1127f8882568SJes Sorensen { 1128a911e6aeSAlberto Garcia BlockdevSnapshotSync snapshot = { 11290901f67eSBenoît Canet .has_device = has_device, 11306cc2a415SPaolo Bonzini .device = (char *) device, 11310901f67eSBenoît Canet .has_node_name = has_node_name, 11320901f67eSBenoît Canet .node_name = (char *) node_name, 11336cc2a415SPaolo Bonzini .snapshot_file = (char *) snapshot_file, 11340901f67eSBenoît Canet .has_snapshot_node_name = has_snapshot_node_name, 11350901f67eSBenoît Canet .snapshot_node_name = (char *) snapshot_node_name, 11366cc2a415SPaolo Bonzini .has_format = has_format, 11376cc2a415SPaolo Bonzini .format = (char *) format, 11386cc2a415SPaolo Bonzini .has_mode = has_mode, 11396cc2a415SPaolo Bonzini .mode = mode, 11406cc2a415SPaolo Bonzini }; 114110f75907SEric Blake TransactionAction action = { 114210f75907SEric Blake .type = TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC, 114332bafa8fSEric Blake .u.blockdev_snapshot_sync.data = &snapshot, 114410f75907SEric Blake }; 114510f75907SEric Blake blockdev_do_action(&action, errp); 1146f8882568SJes Sorensen } 1147f8882568SJes Sorensen 114843de7e2dSAlberto Garcia void qmp_blockdev_snapshot(const char *node, const char *overlay, 114943de7e2dSAlberto Garcia Error **errp) 115043de7e2dSAlberto Garcia { 115143de7e2dSAlberto Garcia BlockdevSnapshot snapshot_data = { 115243de7e2dSAlberto Garcia .node = (char *) node, 115343de7e2dSAlberto Garcia .overlay = (char *) overlay 115443de7e2dSAlberto Garcia }; 115510f75907SEric Blake TransactionAction action = { 115610f75907SEric Blake .type = TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT, 115732bafa8fSEric Blake .u.blockdev_snapshot.data = &snapshot_data, 115810f75907SEric Blake }; 115910f75907SEric Blake blockdev_do_action(&action, errp); 116043de7e2dSAlberto Garcia } 116143de7e2dSAlberto Garcia 1162f323bc9eSWenchao Xia void qmp_blockdev_snapshot_internal_sync(const char *device, 1163f323bc9eSWenchao Xia const char *name, 1164f323bc9eSWenchao Xia Error **errp) 1165f323bc9eSWenchao Xia { 1166f323bc9eSWenchao Xia BlockdevSnapshotInternal snapshot = { 1167f323bc9eSWenchao Xia .device = (char *) device, 1168f323bc9eSWenchao Xia .name = (char *) name 1169f323bc9eSWenchao Xia }; 117010f75907SEric Blake TransactionAction action = { 117110f75907SEric Blake .type = TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC, 117232bafa8fSEric Blake .u.blockdev_snapshot_internal_sync.data = &snapshot, 117310f75907SEric Blake }; 117410f75907SEric Blake blockdev_do_action(&action, errp); 1175f323bc9eSWenchao Xia } 1176f323bc9eSWenchao Xia 117744e3e053SWenchao Xia SnapshotInfo *qmp_blockdev_snapshot_delete_internal_sync(const char *device, 117844e3e053SWenchao Xia bool has_id, 117944e3e053SWenchao Xia const char *id, 118044e3e053SWenchao Xia bool has_name, 118144e3e053SWenchao Xia const char *name, 118244e3e053SWenchao Xia Error **errp) 118344e3e053SWenchao Xia { 1184a0e8544cSFam Zheng BlockDriverState *bs; 11854ef3982aSStefan Hajnoczi AioContext *aio_context; 118644e3e053SWenchao Xia QEMUSnapshotInfo sn; 118744e3e053SWenchao Xia Error *local_err = NULL; 118844e3e053SWenchao Xia SnapshotInfo *info = NULL; 118944e3e053SWenchao Xia int ret; 119044e3e053SWenchao Xia 11912dfb4c03SKevin Wolf bs = qmp_get_root_bs(device, errp); 11922dfb4c03SKevin Wolf if (!bs) { 119344e3e053SWenchao Xia return NULL; 119444e3e053SWenchao Xia } 11952dfb4c03SKevin Wolf aio_context = bdrv_get_aio_context(bs); 11965433c24fSMax Reitz aio_context_acquire(aio_context); 119744e3e053SWenchao Xia 119844e3e053SWenchao Xia if (!has_id) { 119944e3e053SWenchao Xia id = NULL; 120044e3e053SWenchao Xia } 120144e3e053SWenchao Xia 120244e3e053SWenchao Xia if (!has_name) { 120344e3e053SWenchao Xia name = NULL; 120444e3e053SWenchao Xia } 120544e3e053SWenchao Xia 120644e3e053SWenchao Xia if (!id && !name) { 120744e3e053SWenchao Xia error_setg(errp, "Name or id must be provided"); 12085433c24fSMax Reitz goto out_aio_context; 120944e3e053SWenchao Xia } 121044e3e053SWenchao Xia 12110b928854SStefan Hajnoczi if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT_DELETE, errp)) { 12120b928854SStefan Hajnoczi goto out_aio_context; 12130b928854SStefan Hajnoczi } 12140b928854SStefan Hajnoczi 121544e3e053SWenchao Xia ret = bdrv_snapshot_find_by_id_and_name(bs, id, name, &sn, &local_err); 121684d18f06SMarkus Armbruster if (local_err) { 121744e3e053SWenchao Xia error_propagate(errp, local_err); 12184ef3982aSStefan Hajnoczi goto out_aio_context; 121944e3e053SWenchao Xia } 122044e3e053SWenchao Xia if (!ret) { 122144e3e053SWenchao Xia error_setg(errp, 122244e3e053SWenchao Xia "Snapshot with id '%s' and name '%s' does not exist on " 122344e3e053SWenchao Xia "device '%s'", 122444e3e053SWenchao Xia STR_OR_NULL(id), STR_OR_NULL(name), device); 12254ef3982aSStefan Hajnoczi goto out_aio_context; 122644e3e053SWenchao Xia } 122744e3e053SWenchao Xia 122844e3e053SWenchao Xia bdrv_snapshot_delete(bs, id, name, &local_err); 122984d18f06SMarkus Armbruster if (local_err) { 123044e3e053SWenchao Xia error_propagate(errp, local_err); 12314ef3982aSStefan Hajnoczi goto out_aio_context; 123244e3e053SWenchao Xia } 123344e3e053SWenchao Xia 12344ef3982aSStefan Hajnoczi aio_context_release(aio_context); 12354ef3982aSStefan Hajnoczi 12365839e53bSMarkus Armbruster info = g_new0(SnapshotInfo, 1); 123744e3e053SWenchao Xia info->id = g_strdup(sn.id_str); 123844e3e053SWenchao Xia info->name = g_strdup(sn.name); 123944e3e053SWenchao Xia info->date_nsec = sn.date_nsec; 124044e3e053SWenchao Xia info->date_sec = sn.date_sec; 124144e3e053SWenchao Xia info->vm_state_size = sn.vm_state_size; 124244e3e053SWenchao Xia info->vm_clock_nsec = sn.vm_clock_nsec % 1000000000; 124344e3e053SWenchao Xia info->vm_clock_sec = sn.vm_clock_nsec / 1000000000; 124444e3e053SWenchao Xia 124544e3e053SWenchao Xia return info; 12464ef3982aSStefan Hajnoczi 12474ef3982aSStefan Hajnoczi out_aio_context: 12484ef3982aSStefan Hajnoczi aio_context_release(aio_context); 12494ef3982aSStefan Hajnoczi return NULL; 125044e3e053SWenchao Xia } 12518802d1fdSJeff Cody 1252341ebc2fSJohn Snow /** 1253341ebc2fSJohn Snow * block_dirty_bitmap_lookup: 1254341ebc2fSJohn Snow * Return a dirty bitmap (if present), after validating 1255341ebc2fSJohn Snow * the node reference and bitmap names. 1256341ebc2fSJohn Snow * 1257341ebc2fSJohn Snow * @node: The name of the BDS node to search for bitmaps 1258341ebc2fSJohn Snow * @name: The name of the bitmap to search for 1259341ebc2fSJohn Snow * @pbs: Output pointer for BDS lookup, if desired. Can be NULL. 1260341ebc2fSJohn Snow * @paio: Output pointer for aio_context acquisition, if desired. Can be NULL. 1261341ebc2fSJohn Snow * @errp: Output pointer for error information. Can be NULL. 1262341ebc2fSJohn Snow * 1263341ebc2fSJohn Snow * @return: A bitmap object on success, or NULL on failure. 1264341ebc2fSJohn Snow */ 1265341ebc2fSJohn Snow static BdrvDirtyBitmap *block_dirty_bitmap_lookup(const char *node, 1266341ebc2fSJohn Snow const char *name, 1267341ebc2fSJohn Snow BlockDriverState **pbs, 1268341ebc2fSJohn Snow Error **errp) 1269341ebc2fSJohn Snow { 1270341ebc2fSJohn Snow BlockDriverState *bs; 1271341ebc2fSJohn Snow BdrvDirtyBitmap *bitmap; 1272341ebc2fSJohn Snow 1273341ebc2fSJohn Snow if (!node) { 1274341ebc2fSJohn Snow error_setg(errp, "Node cannot be NULL"); 1275341ebc2fSJohn Snow return NULL; 1276341ebc2fSJohn Snow } 1277341ebc2fSJohn Snow if (!name) { 1278341ebc2fSJohn Snow error_setg(errp, "Bitmap name cannot be NULL"); 1279341ebc2fSJohn Snow return NULL; 1280341ebc2fSJohn Snow } 1281341ebc2fSJohn Snow bs = bdrv_lookup_bs(node, node, NULL); 1282341ebc2fSJohn Snow if (!bs) { 1283341ebc2fSJohn Snow error_setg(errp, "Node '%s' not found", node); 1284341ebc2fSJohn Snow return NULL; 1285341ebc2fSJohn Snow } 1286341ebc2fSJohn Snow 1287341ebc2fSJohn Snow bitmap = bdrv_find_dirty_bitmap(bs, name); 1288341ebc2fSJohn Snow if (!bitmap) { 1289341ebc2fSJohn Snow error_setg(errp, "Dirty bitmap '%s' not found", name); 12902119882cSPaolo Bonzini return NULL; 1291341ebc2fSJohn Snow } 1292341ebc2fSJohn Snow 1293341ebc2fSJohn Snow if (pbs) { 1294341ebc2fSJohn Snow *pbs = bs; 1295341ebc2fSJohn Snow } 1296341ebc2fSJohn Snow 1297341ebc2fSJohn Snow return bitmap; 1298341ebc2fSJohn Snow } 1299341ebc2fSJohn Snow 1300b756b9ceSStefan Hajnoczi /* New and old BlockDriverState structs for atomic group operations */ 1301ba0c86a3SWenchao Xia 130250f43f0fSJohn Snow typedef struct BlkActionState BlkActionState; 1303ba0c86a3SWenchao Xia 130450f43f0fSJohn Snow /** 130550f43f0fSJohn Snow * BlkActionOps: 130650f43f0fSJohn Snow * Table of operations that define an Action. 130750f43f0fSJohn Snow * 130850f43f0fSJohn Snow * @instance_size: Size of state struct, in bytes. 130950f43f0fSJohn Snow * @prepare: Prepare the work, must NOT be NULL. 131050f43f0fSJohn Snow * @commit: Commit the changes, can be NULL. 131150f43f0fSJohn Snow * @abort: Abort the changes on fail, can be NULL. 131250f43f0fSJohn Snow * @clean: Clean up resources after all transaction actions have called 131350f43f0fSJohn Snow * commit() or abort(). Can be NULL. 131450f43f0fSJohn Snow * 131550f43f0fSJohn Snow * Only prepare() may fail. In a single transaction, only one of commit() or 131650f43f0fSJohn Snow * abort() will be called. clean() will always be called if it is present. 1317ba0c86a3SWenchao Xia */ 131850f43f0fSJohn Snow typedef struct BlkActionOps { 131950f43f0fSJohn Snow size_t instance_size; 132050f43f0fSJohn Snow void (*prepare)(BlkActionState *common, Error **errp); 132150f43f0fSJohn Snow void (*commit)(BlkActionState *common); 132250f43f0fSJohn Snow void (*abort)(BlkActionState *common); 132350f43f0fSJohn Snow void (*clean)(BlkActionState *common); 132450f43f0fSJohn Snow } BlkActionOps; 132550f43f0fSJohn Snow 132650f43f0fSJohn Snow /** 132750f43f0fSJohn Snow * BlkActionState: 132850f43f0fSJohn Snow * Describes one Action's state within a Transaction. 132950f43f0fSJohn Snow * 133050f43f0fSJohn Snow * @action: QAPI-defined enum identifying which Action to perform. 133150f43f0fSJohn Snow * @ops: Table of ActionOps this Action can perform. 133294d16a64SJohn Snow * @block_job_txn: Transaction which this action belongs to. 133350f43f0fSJohn Snow * @entry: List membership for all Actions in this Transaction. 133450f43f0fSJohn Snow * 133550f43f0fSJohn Snow * This structure must be arranged as first member in a subclassed type, 133650f43f0fSJohn Snow * assuming that the compiler will also arrange it to the same offsets as the 133750f43f0fSJohn Snow * base class. 133850f43f0fSJohn Snow */ 133950f43f0fSJohn Snow struct BlkActionState { 1340c8a83e85SKevin Wolf TransactionAction *action; 134150f43f0fSJohn Snow const BlkActionOps *ops; 134262c9e416SKevin Wolf JobTxn *block_job_txn; 134394d16a64SJohn Snow TransactionProperties *txn_props; 134450f43f0fSJohn Snow QSIMPLEQ_ENTRY(BlkActionState) entry; 1345ba0c86a3SWenchao Xia }; 1346ba0c86a3SWenchao Xia 1347bbe86010SWenchao Xia /* internal snapshot private data */ 1348bbe86010SWenchao Xia typedef struct InternalSnapshotState { 134950f43f0fSJohn Snow BlkActionState common; 1350bbe86010SWenchao Xia BlockDriverState *bs; 1351bbe86010SWenchao Xia QEMUSnapshotInfo sn; 1352507306ccSFam Zheng bool created; 1353bbe86010SWenchao Xia } InternalSnapshotState; 1354bbe86010SWenchao Xia 135594d16a64SJohn Snow 135694d16a64SJohn Snow static int action_check_completion_mode(BlkActionState *s, Error **errp) 135794d16a64SJohn Snow { 135894d16a64SJohn Snow if (s->txn_props->completion_mode != ACTION_COMPLETION_MODE_INDIVIDUAL) { 135994d16a64SJohn Snow error_setg(errp, 136094d16a64SJohn Snow "Action '%s' does not support Transaction property " 136194d16a64SJohn Snow "completion-mode = %s", 1362977c736fSMarkus Armbruster TransactionActionKind_str(s->action->type), 1363977c736fSMarkus Armbruster ActionCompletionMode_str(s->txn_props->completion_mode)); 136494d16a64SJohn Snow return -1; 136594d16a64SJohn Snow } 136694d16a64SJohn Snow return 0; 136794d16a64SJohn Snow } 136894d16a64SJohn Snow 136950f43f0fSJohn Snow static void internal_snapshot_prepare(BlkActionState *common, 1370bbe86010SWenchao Xia Error **errp) 1371bbe86010SWenchao Xia { 1372f70edf99SMarkus Armbruster Error *local_err = NULL; 1373bbe86010SWenchao Xia const char *device; 1374bbe86010SWenchao Xia const char *name; 1375bbe86010SWenchao Xia BlockDriverState *bs; 1376bbe86010SWenchao Xia QEMUSnapshotInfo old_sn, *sn; 1377bbe86010SWenchao Xia bool ret; 1378bbe86010SWenchao Xia qemu_timeval tv; 1379bbe86010SWenchao Xia BlockdevSnapshotInternal *internal; 1380bbe86010SWenchao Xia InternalSnapshotState *state; 1381a36e458cSStefan Hajnoczi AioContext *aio_context; 1382bbe86010SWenchao Xia int ret1; 1383bbe86010SWenchao Xia 13846a8f9661SEric Blake g_assert(common->action->type == 1385bbe86010SWenchao Xia TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC); 138632bafa8fSEric Blake internal = common->action->u.blockdev_snapshot_internal_sync.data; 1387bbe86010SWenchao Xia state = DO_UPCAST(InternalSnapshotState, common, common); 1388bbe86010SWenchao Xia 1389bbe86010SWenchao Xia /* 1. parse input */ 1390bbe86010SWenchao Xia device = internal->device; 1391bbe86010SWenchao Xia name = internal->name; 1392bbe86010SWenchao Xia 1393bbe86010SWenchao Xia /* 2. check for validation */ 139494d16a64SJohn Snow if (action_check_completion_mode(common, errp) < 0) { 139594d16a64SJohn Snow return; 139694d16a64SJohn Snow } 139794d16a64SJohn Snow 139875dfd402SKevin Wolf bs = qmp_get_root_bs(device, errp); 139975dfd402SKevin Wolf if (!bs) { 1400bbe86010SWenchao Xia return; 1401bbe86010SWenchao Xia } 1402bbe86010SWenchao Xia 1403a36e458cSStefan Hajnoczi aio_context = bdrv_get_aio_context(bs); 1404a36e458cSStefan Hajnoczi aio_context_acquire(aio_context); 14055d6e96efSStefan Hajnoczi 1406507306ccSFam Zheng state->bs = bs; 1407a36e458cSStefan Hajnoczi 1408a36e458cSStefan Hajnoczi /* Paired with .clean() */ 1409507306ccSFam Zheng bdrv_drained_begin(bs); 1410507306ccSFam Zheng 14113dc7ca3cSStefan Hajnoczi if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT, errp)) { 1412a36e458cSStefan Hajnoczi goto out; 14133dc7ca3cSStefan Hajnoczi } 14143dc7ca3cSStefan Hajnoczi 1415bbe86010SWenchao Xia if (bdrv_is_read_only(bs)) { 141681e5f78aSAlberto Garcia error_setg(errp, "Device '%s' is read only", device); 1417a36e458cSStefan Hajnoczi goto out; 1418bbe86010SWenchao Xia } 1419bbe86010SWenchao Xia 1420bbe86010SWenchao Xia if (!bdrv_can_snapshot(bs)) { 142181e5f78aSAlberto Garcia error_setg(errp, "Block format '%s' used by device '%s' " 142281e5f78aSAlberto Garcia "does not support internal snapshots", 142381e5f78aSAlberto Garcia bs->drv->format_name, device); 1424a36e458cSStefan Hajnoczi goto out; 1425bbe86010SWenchao Xia } 1426bbe86010SWenchao Xia 1427bbe86010SWenchao Xia if (!strlen(name)) { 1428bbe86010SWenchao Xia error_setg(errp, "Name is empty"); 1429a36e458cSStefan Hajnoczi goto out; 1430bbe86010SWenchao Xia } 1431bbe86010SWenchao Xia 1432bbe86010SWenchao Xia /* check whether a snapshot with name exist */ 1433f70edf99SMarkus Armbruster ret = bdrv_snapshot_find_by_id_and_name(bs, NULL, name, &old_sn, 1434f70edf99SMarkus Armbruster &local_err); 1435f70edf99SMarkus Armbruster if (local_err) { 1436f70edf99SMarkus Armbruster error_propagate(errp, local_err); 1437a36e458cSStefan Hajnoczi goto out; 1438bbe86010SWenchao Xia } else if (ret) { 1439bbe86010SWenchao Xia error_setg(errp, 1440bbe86010SWenchao Xia "Snapshot with name '%s' already exists on device '%s'", 1441bbe86010SWenchao Xia name, device); 1442a36e458cSStefan Hajnoczi goto out; 1443bbe86010SWenchao Xia } 1444bbe86010SWenchao Xia 1445bbe86010SWenchao Xia /* 3. take the snapshot */ 1446bbe86010SWenchao Xia sn = &state->sn; 1447bbe86010SWenchao Xia pstrcpy(sn->name, sizeof(sn->name), name); 1448bbe86010SWenchao Xia qemu_gettimeofday(&tv); 1449bbe86010SWenchao Xia sn->date_sec = tv.tv_sec; 1450bbe86010SWenchao Xia sn->date_nsec = tv.tv_usec * 1000; 1451bbe86010SWenchao Xia sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL); 1452bbe86010SWenchao Xia 1453bbe86010SWenchao Xia ret1 = bdrv_snapshot_create(bs, sn); 1454bbe86010SWenchao Xia if (ret1 < 0) { 1455bbe86010SWenchao Xia error_setg_errno(errp, -ret1, 1456bbe86010SWenchao Xia "Failed to create snapshot '%s' on device '%s'", 1457bbe86010SWenchao Xia name, device); 1458a36e458cSStefan Hajnoczi goto out; 1459bbe86010SWenchao Xia } 1460bbe86010SWenchao Xia 1461bbe86010SWenchao Xia /* 4. succeed, mark a snapshot is created */ 1462507306ccSFam Zheng state->created = true; 1463a36e458cSStefan Hajnoczi 1464a36e458cSStefan Hajnoczi out: 1465a36e458cSStefan Hajnoczi aio_context_release(aio_context); 1466bbe86010SWenchao Xia } 1467bbe86010SWenchao Xia 146850f43f0fSJohn Snow static void internal_snapshot_abort(BlkActionState *common) 1469bbe86010SWenchao Xia { 1470bbe86010SWenchao Xia InternalSnapshotState *state = 1471bbe86010SWenchao Xia DO_UPCAST(InternalSnapshotState, common, common); 1472bbe86010SWenchao Xia BlockDriverState *bs = state->bs; 1473bbe86010SWenchao Xia QEMUSnapshotInfo *sn = &state->sn; 1474a36e458cSStefan Hajnoczi AioContext *aio_context; 1475bbe86010SWenchao Xia Error *local_error = NULL; 1476bbe86010SWenchao Xia 1477507306ccSFam Zheng if (!state->created) { 1478bbe86010SWenchao Xia return; 1479bbe86010SWenchao Xia } 1480bbe86010SWenchao Xia 1481a36e458cSStefan Hajnoczi aio_context = bdrv_get_aio_context(state->bs); 1482a36e458cSStefan Hajnoczi aio_context_acquire(aio_context); 1483a36e458cSStefan Hajnoczi 1484bbe86010SWenchao Xia if (bdrv_snapshot_delete(bs, sn->id_str, sn->name, &local_error) < 0) { 1485c29b77f9SMarkus Armbruster error_reportf_err(local_error, 1486c29b77f9SMarkus Armbruster "Failed to delete snapshot with id '%s' and " 1487c29b77f9SMarkus Armbruster "name '%s' on device '%s' in abort: ", 1488c29b77f9SMarkus Armbruster sn->id_str, sn->name, 1489c29b77f9SMarkus Armbruster bdrv_get_device_name(bs)); 1490bbe86010SWenchao Xia } 1491a36e458cSStefan Hajnoczi 1492a36e458cSStefan Hajnoczi aio_context_release(aio_context); 1493bbe86010SWenchao Xia } 1494bbe86010SWenchao Xia 149550f43f0fSJohn Snow static void internal_snapshot_clean(BlkActionState *common) 14965d6e96efSStefan Hajnoczi { 14975d6e96efSStefan Hajnoczi InternalSnapshotState *state = DO_UPCAST(InternalSnapshotState, 14985d6e96efSStefan Hajnoczi common, common); 1499a36e458cSStefan Hajnoczi AioContext *aio_context; 15005d6e96efSStefan Hajnoczi 1501a36e458cSStefan Hajnoczi if (!state->bs) { 1502a36e458cSStefan Hajnoczi return; 1503a36e458cSStefan Hajnoczi } 1504a36e458cSStefan Hajnoczi 1505a36e458cSStefan Hajnoczi aio_context = bdrv_get_aio_context(state->bs); 1506a36e458cSStefan Hajnoczi aio_context_acquire(aio_context); 1507a36e458cSStefan Hajnoczi 1508507306ccSFam Zheng bdrv_drained_end(state->bs); 1509a36e458cSStefan Hajnoczi 1510a36e458cSStefan Hajnoczi aio_context_release(aio_context); 15115d6e96efSStefan Hajnoczi } 15125d6e96efSStefan Hajnoczi 1513ba0c86a3SWenchao Xia /* external snapshot private data */ 1514ba5d6ab6SStefan Hajnoczi typedef struct ExternalSnapshotState { 151550f43f0fSJohn Snow BlkActionState common; 15168802d1fdSJeff Cody BlockDriverState *old_bs; 15178802d1fdSJeff Cody BlockDriverState *new_bs; 1518067acf28SKevin Wolf bool overlay_appended; 1519ba5d6ab6SStefan Hajnoczi } ExternalSnapshotState; 15208802d1fdSJeff Cody 152150f43f0fSJohn Snow static void external_snapshot_prepare(BlkActionState *common, 15229b9877eeSWenchao Xia Error **errp) 15239b9877eeSWenchao Xia { 15245b363937SMax Reitz int flags = 0; 152543de7e2dSAlberto Garcia QDict *options = NULL; 15269b9877eeSWenchao Xia Error *local_err = NULL; 152743de7e2dSAlberto Garcia /* Device and node name of the image to generate the snapshot from */ 1528e2a31e87SWenchao Xia const char *device; 15290901f67eSBenoît Canet const char *node_name; 153043de7e2dSAlberto Garcia /* Reference to the new image (for 'blockdev-snapshot') */ 153143de7e2dSAlberto Garcia const char *snapshot_ref; 153243de7e2dSAlberto Garcia /* File name of the new image (for 'blockdev-snapshot-sync') */ 1533e2a31e87SWenchao Xia const char *new_image_file; 1534ba5d6ab6SStefan Hajnoczi ExternalSnapshotState *state = 1535ba5d6ab6SStefan Hajnoczi DO_UPCAST(ExternalSnapshotState, common, common); 1536c8a83e85SKevin Wolf TransactionAction *action = common->action; 15372d24b60bSStefan Hajnoczi AioContext *aio_context; 15389b9877eeSWenchao Xia 153943de7e2dSAlberto Garcia /* 'blockdev-snapshot' and 'blockdev-snapshot-sync' have similar 154043de7e2dSAlberto Garcia * purpose but a different set of parameters */ 154143de7e2dSAlberto Garcia switch (action->type) { 154243de7e2dSAlberto Garcia case TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT: 154343de7e2dSAlberto Garcia { 154432bafa8fSEric Blake BlockdevSnapshot *s = action->u.blockdev_snapshot.data; 154543de7e2dSAlberto Garcia device = s->node; 154643de7e2dSAlberto Garcia node_name = s->node; 154743de7e2dSAlberto Garcia new_image_file = NULL; 154843de7e2dSAlberto Garcia snapshot_ref = s->overlay; 1549e2a31e87SWenchao Xia } 155043de7e2dSAlberto Garcia break; 155143de7e2dSAlberto Garcia case TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC: 155243de7e2dSAlberto Garcia { 155332bafa8fSEric Blake BlockdevSnapshotSync *s = action->u.blockdev_snapshot_sync.data; 155443de7e2dSAlberto Garcia device = s->has_device ? s->device : NULL; 155543de7e2dSAlberto Garcia node_name = s->has_node_name ? s->node_name : NULL; 155643de7e2dSAlberto Garcia new_image_file = s->snapshot_file; 155743de7e2dSAlberto Garcia snapshot_ref = NULL; 155843de7e2dSAlberto Garcia } 155943de7e2dSAlberto Garcia break; 156043de7e2dSAlberto Garcia default: 156143de7e2dSAlberto Garcia g_assert_not_reached(); 1562e2a31e87SWenchao Xia } 1563e2a31e87SWenchao Xia 1564e2a31e87SWenchao Xia /* start processing */ 156594d16a64SJohn Snow if (action_check_completion_mode(common, errp) < 0) { 156694d16a64SJohn Snow return; 156794d16a64SJohn Snow } 156894d16a64SJohn Snow 156943de7e2dSAlberto Garcia state->old_bs = bdrv_lookup_bs(device, node_name, errp); 157043de7e2dSAlberto Garcia if (!state->old_bs) { 15719b9877eeSWenchao Xia return; 15729b9877eeSWenchao Xia } 15739b9877eeSWenchao Xia 15742d24b60bSStefan Hajnoczi aio_context = bdrv_get_aio_context(state->old_bs); 15752d24b60bSStefan Hajnoczi aio_context_acquire(aio_context); 15762d24b60bSStefan Hajnoczi 15772d24b60bSStefan Hajnoczi /* Paired with .clean() */ 1578da763e83SFam Zheng bdrv_drained_begin(state->old_bs); 15795d6e96efSStefan Hajnoczi 1580ba5d6ab6SStefan Hajnoczi if (!bdrv_is_inserted(state->old_bs)) { 1581c6bd8c70SMarkus Armbruster error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); 15822d24b60bSStefan Hajnoczi goto out; 15839b9877eeSWenchao Xia } 15849b9877eeSWenchao Xia 15853718d8abSFam Zheng if (bdrv_op_is_blocked(state->old_bs, 15863718d8abSFam Zheng BLOCK_OP_TYPE_EXTERNAL_SNAPSHOT, errp)) { 15872d24b60bSStefan Hajnoczi goto out; 15889b9877eeSWenchao Xia } 15899b9877eeSWenchao Xia 1590ba5d6ab6SStefan Hajnoczi if (!bdrv_is_read_only(state->old_bs)) { 1591ba5d6ab6SStefan Hajnoczi if (bdrv_flush(state->old_bs)) { 1592c6bd8c70SMarkus Armbruster error_setg(errp, QERR_IO_ERROR); 15932d24b60bSStefan Hajnoczi goto out; 15949b9877eeSWenchao Xia } 15959b9877eeSWenchao Xia } 15969b9877eeSWenchao Xia 1597212a5a8fSBenoît Canet if (!bdrv_is_first_non_filter(state->old_bs)) { 1598c6bd8c70SMarkus Armbruster error_setg(errp, QERR_FEATURE_DISABLED, "snapshot"); 15992d24b60bSStefan Hajnoczi goto out; 1600f6186f49SBenoît Canet } 1601f6186f49SBenoît Canet 160243de7e2dSAlberto Garcia if (action->type == TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC) { 160332bafa8fSEric Blake BlockdevSnapshotSync *s = action->u.blockdev_snapshot_sync.data; 160443de7e2dSAlberto Garcia const char *format = s->has_format ? s->format : "qcow2"; 160543de7e2dSAlberto Garcia enum NewImageMode mode; 160643de7e2dSAlberto Garcia const char *snapshot_node_name = 160743de7e2dSAlberto Garcia s->has_snapshot_node_name ? s->snapshot_node_name : NULL; 160843de7e2dSAlberto Garcia 160943de7e2dSAlberto Garcia if (node_name && !snapshot_node_name) { 161043de7e2dSAlberto Garcia error_setg(errp, "New snapshot node name missing"); 16112d24b60bSStefan Hajnoczi goto out; 161243de7e2dSAlberto Garcia } 161343de7e2dSAlberto Garcia 161443de7e2dSAlberto Garcia if (snapshot_node_name && 161543de7e2dSAlberto Garcia bdrv_lookup_bs(snapshot_node_name, snapshot_node_name, NULL)) { 161643de7e2dSAlberto Garcia error_setg(errp, "New snapshot node name already in use"); 16172d24b60bSStefan Hajnoczi goto out; 161843de7e2dSAlberto Garcia } 161943de7e2dSAlberto Garcia 1620ba5d6ab6SStefan Hajnoczi flags = state->old_bs->open_flags; 16212a32c6e8SJohn Snow flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_COPY_ON_READ); 16222a32c6e8SJohn Snow flags |= BDRV_O_NO_BACKING; 16239b9877eeSWenchao Xia 16249b9877eeSWenchao Xia /* create new image w/backing file */ 162543de7e2dSAlberto Garcia mode = s->has_mode ? s->mode : NEW_IMAGE_MODE_ABSOLUTE_PATHS; 16269b9877eeSWenchao Xia if (mode != NEW_IMAGE_MODE_EXISTING) { 1627f86b8b58SKevin Wolf int64_t size = bdrv_getlength(state->old_bs); 1628f86b8b58SKevin Wolf if (size < 0) { 1629f86b8b58SKevin Wolf error_setg_errno(errp, -size, "bdrv_getlength failed"); 16302d24b60bSStefan Hajnoczi goto out; 1631f86b8b58SKevin Wolf } 16329b9877eeSWenchao Xia bdrv_img_create(new_image_file, format, 1633ba5d6ab6SStefan Hajnoczi state->old_bs->filename, 1634ba5d6ab6SStefan Hajnoczi state->old_bs->drv->format_name, 16359217283dSFam Zheng NULL, size, flags, false, &local_err); 163684d18f06SMarkus Armbruster if (local_err) { 16379b9877eeSWenchao Xia error_propagate(errp, local_err); 16382d24b60bSStefan Hajnoczi goto out; 16399b9877eeSWenchao Xia } 16409b9877eeSWenchao Xia } 16419b9877eeSWenchao Xia 16420901f67eSBenoît Canet options = qdict_new(); 1643*d52e1a0eSPeter Maydell if (snapshot_node_name) { 164446f5ac20SEric Blake qdict_put_str(options, "node-name", snapshot_node_name); 16450901f67eSBenoît Canet } 164646f5ac20SEric Blake qdict_put_str(options, "driver", format); 164743de7e2dSAlberto Garcia } 164843de7e2dSAlberto Garcia 16495b363937SMax Reitz state->new_bs = bdrv_open(new_image_file, snapshot_ref, options, flags, 16505b363937SMax Reitz errp); 1651f67503e5SMax Reitz /* We will manually add the backing_hd field to the bs later */ 16525b363937SMax Reitz if (!state->new_bs) { 16532d24b60bSStefan Hajnoczi goto out; 165443de7e2dSAlberto Garcia } 165543de7e2dSAlberto Garcia 16561f0c461bSKevin Wolf if (bdrv_has_blk(state->new_bs)) { 1657e467da7bSKevin Wolf error_setg(errp, "The snapshot is already in use"); 16582d24b60bSStefan Hajnoczi goto out; 165943de7e2dSAlberto Garcia } 166043de7e2dSAlberto Garcia 166143de7e2dSAlberto Garcia if (bdrv_op_is_blocked(state->new_bs, BLOCK_OP_TYPE_EXTERNAL_SNAPSHOT, 166243de7e2dSAlberto Garcia errp)) { 16632d24b60bSStefan Hajnoczi goto out; 166443de7e2dSAlberto Garcia } 166543de7e2dSAlberto Garcia 166643de7e2dSAlberto Garcia if (state->new_bs->backing != NULL) { 166743de7e2dSAlberto Garcia error_setg(errp, "The snapshot already has a backing image"); 16682d24b60bSStefan Hajnoczi goto out; 166908b24cfeSAlberto Garcia } 167008b24cfeSAlberto Garcia 167108b24cfeSAlberto Garcia if (!state->new_bs->drv->supports_backing) { 167208b24cfeSAlberto Garcia error_setg(errp, "The snapshot does not support backing images"); 16732d24b60bSStefan Hajnoczi goto out; 1674b2c2832cSKevin Wolf } 1675b2c2832cSKevin Wolf 16762d24b60bSStefan Hajnoczi bdrv_set_aio_context(state->new_bs, aio_context); 1677c26a5ab7SFam Zheng 1678b2c2832cSKevin Wolf /* This removes our old bs and adds the new bs. This is an operation that 1679b2c2832cSKevin Wolf * can fail, so we need to do it in .prepare; undoing it for abort is 1680b2c2832cSKevin Wolf * always possible. */ 1681b2c2832cSKevin Wolf bdrv_ref(state->new_bs); 1682b2c2832cSKevin Wolf bdrv_append(state->new_bs, state->old_bs, &local_err); 1683b2c2832cSKevin Wolf if (local_err) { 1684b2c2832cSKevin Wolf error_propagate(errp, local_err); 16852d24b60bSStefan Hajnoczi goto out; 16869b9877eeSWenchao Xia } 1687067acf28SKevin Wolf state->overlay_appended = true; 16882d24b60bSStefan Hajnoczi 16892d24b60bSStefan Hajnoczi out: 16902d24b60bSStefan Hajnoczi aio_context_release(aio_context); 16919b9877eeSWenchao Xia } 16929b9877eeSWenchao Xia 169350f43f0fSJohn Snow static void external_snapshot_commit(BlkActionState *common) 16943b0047e8SWenchao Xia { 1695ba5d6ab6SStefan Hajnoczi ExternalSnapshotState *state = 1696ba5d6ab6SStefan Hajnoczi DO_UPCAST(ExternalSnapshotState, common, common); 16972d24b60bSStefan Hajnoczi AioContext *aio_context; 16982d24b60bSStefan Hajnoczi 16992d24b60bSStefan Hajnoczi aio_context = bdrv_get_aio_context(state->old_bs); 17002d24b60bSStefan Hajnoczi aio_context_acquire(aio_context); 1701ba0c86a3SWenchao Xia 17023b0047e8SWenchao Xia /* We don't need (or want) to use the transactional 17033b0047e8SWenchao Xia * bdrv_reopen_multiple() across all the entries at once, because we 17043b0047e8SWenchao Xia * don't want to abort all of them if one of them fails the reopen */ 1705d3faa13eSPaolo Bonzini if (!atomic_read(&state->old_bs->copy_on_read)) { 1706dd62f1caSKevin Wolf bdrv_reopen(state->old_bs, state->old_bs->open_flags & ~BDRV_O_RDWR, 17073b0047e8SWenchao Xia NULL); 17083b0047e8SWenchao Xia } 17092d24b60bSStefan Hajnoczi 17102d24b60bSStefan Hajnoczi aio_context_release(aio_context); 17114c844983SKevin Wolf } 17123b0047e8SWenchao Xia 171350f43f0fSJohn Snow static void external_snapshot_abort(BlkActionState *common) 171496b86bf7SWenchao Xia { 1715ba5d6ab6SStefan Hajnoczi ExternalSnapshotState *state = 1716ba5d6ab6SStefan Hajnoczi DO_UPCAST(ExternalSnapshotState, common, common); 1717ba5d6ab6SStefan Hajnoczi if (state->new_bs) { 1718067acf28SKevin Wolf if (state->overlay_appended) { 17192d24b60bSStefan Hajnoczi AioContext *aio_context; 17202d24b60bSStefan Hajnoczi 17212d24b60bSStefan Hajnoczi aio_context = bdrv_get_aio_context(state->old_bs); 17222d24b60bSStefan Hajnoczi aio_context_acquire(aio_context); 17232d24b60bSStefan Hajnoczi 1724719fc28cSJeff Cody bdrv_ref(state->old_bs); /* we can't let bdrv_set_backind_hd() 1725719fc28cSJeff Cody close state->old_bs; we need it */ 1726719fc28cSJeff Cody bdrv_set_backing_hd(state->new_bs, NULL, &error_abort); 17275fe31c25SKevin Wolf bdrv_replace_node(state->new_bs, state->old_bs, &error_abort); 1728719fc28cSJeff Cody bdrv_unref(state->old_bs); /* bdrv_replace_node() ref'ed old_bs */ 17292d24b60bSStefan Hajnoczi 17302d24b60bSStefan Hajnoczi aio_context_release(aio_context); 1731b2c2832cSKevin Wolf } 173296b86bf7SWenchao Xia } 1733da763e83SFam Zheng } 1734da763e83SFam Zheng 173550f43f0fSJohn Snow static void external_snapshot_clean(BlkActionState *common) 1736da763e83SFam Zheng { 1737da763e83SFam Zheng ExternalSnapshotState *state = 1738da763e83SFam Zheng DO_UPCAST(ExternalSnapshotState, common, common); 17392d24b60bSStefan Hajnoczi AioContext *aio_context; 17402d24b60bSStefan Hajnoczi 17412d24b60bSStefan Hajnoczi if (!state->old_bs) { 17422d24b60bSStefan Hajnoczi return; 17432d24b60bSStefan Hajnoczi } 17442d24b60bSStefan Hajnoczi 17452d24b60bSStefan Hajnoczi aio_context = bdrv_get_aio_context(state->old_bs); 17462d24b60bSStefan Hajnoczi aio_context_acquire(aio_context); 17472d24b60bSStefan Hajnoczi 1748da763e83SFam Zheng bdrv_drained_end(state->old_bs); 1749b2c2832cSKevin Wolf bdrv_unref(state->new_bs); 17502d24b60bSStefan Hajnoczi 17512d24b60bSStefan Hajnoczi aio_context_release(aio_context); 175296b86bf7SWenchao Xia } 175396b86bf7SWenchao Xia 17543037f364SStefan Hajnoczi typedef struct DriveBackupState { 175550f43f0fSJohn Snow BlkActionState common; 17563037f364SStefan Hajnoczi BlockDriverState *bs; 17573037f364SStefan Hajnoczi BlockJob *job; 17583037f364SStefan Hajnoczi } DriveBackupState; 17593037f364SStefan Hajnoczi 176062c9e416SKevin Wolf static BlockJob *do_drive_backup(DriveBackup *backup, JobTxn *txn, 176181206a89SPavel Butsykin Error **errp); 176278f51fdeSJohn Snow 176350f43f0fSJohn Snow static void drive_backup_prepare(BlkActionState *common, Error **errp) 17643037f364SStefan Hajnoczi { 17653037f364SStefan Hajnoczi DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common); 1766b7e4fa22SKevin Wolf BlockDriverState *bs; 17673037f364SStefan Hajnoczi DriveBackup *backup; 176866d56054SStefan Hajnoczi AioContext *aio_context; 17693037f364SStefan Hajnoczi Error *local_err = NULL; 17703037f364SStefan Hajnoczi 17716a8f9661SEric Blake assert(common->action->type == TRANSACTION_ACTION_KIND_DRIVE_BACKUP); 177232bafa8fSEric Blake backup = common->action->u.drive_backup.data; 17733037f364SStefan Hajnoczi 1774b7e4fa22SKevin Wolf bs = qmp_get_root_bs(backup->device, errp); 1775b7e4fa22SKevin Wolf if (!bs) { 17761fdd4b7bSFam Zheng return; 17771fdd4b7bSFam Zheng } 17781fdd4b7bSFam Zheng 177966d56054SStefan Hajnoczi aio_context = bdrv_get_aio_context(bs); 178066d56054SStefan Hajnoczi aio_context_acquire(aio_context); 178166d56054SStefan Hajnoczi 178266d56054SStefan Hajnoczi /* Paired with .clean() */ 1783b7e4fa22SKevin Wolf bdrv_drained_begin(bs); 178466d56054SStefan Hajnoczi 1785b7e4fa22SKevin Wolf state->bs = bs; 17865d6e96efSStefan Hajnoczi 1787111049a4SJohn Snow state->job = do_drive_backup(backup, common->block_job_txn, &local_err); 178884d18f06SMarkus Armbruster if (local_err) { 17893037f364SStefan Hajnoczi error_propagate(errp, local_err); 179066d56054SStefan Hajnoczi goto out; 17913037f364SStefan Hajnoczi } 179266d56054SStefan Hajnoczi 179366d56054SStefan Hajnoczi out: 179466d56054SStefan Hajnoczi aio_context_release(aio_context); 1795111049a4SJohn Snow } 17963037f364SStefan Hajnoczi 1797111049a4SJohn Snow static void drive_backup_commit(BlkActionState *common) 1798111049a4SJohn Snow { 1799111049a4SJohn Snow DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common); 180066d56054SStefan Hajnoczi AioContext *aio_context; 180166d56054SStefan Hajnoczi 180266d56054SStefan Hajnoczi aio_context = bdrv_get_aio_context(state->bs); 180366d56054SStefan Hajnoczi aio_context_acquire(aio_context); 180466d56054SStefan Hajnoczi 1805111049a4SJohn Snow assert(state->job); 1806da01ff7fSKevin Wolf job_start(&state->job->job); 180766d56054SStefan Hajnoczi 180866d56054SStefan Hajnoczi aio_context_release(aio_context); 18093037f364SStefan Hajnoczi } 18103037f364SStefan Hajnoczi 181150f43f0fSJohn Snow static void drive_backup_abort(BlkActionState *common) 18123037f364SStefan Hajnoczi { 18133037f364SStefan Hajnoczi DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common); 18143037f364SStefan Hajnoczi 1815111049a4SJohn Snow if (state->job) { 181666d56054SStefan Hajnoczi AioContext *aio_context; 181766d56054SStefan Hajnoczi 181866d56054SStefan Hajnoczi aio_context = bdrv_get_aio_context(state->bs); 181966d56054SStefan Hajnoczi aio_context_acquire(aio_context); 182066d56054SStefan Hajnoczi 18213d70ff53SKevin Wolf job_cancel_sync(&state->job->job); 182266d56054SStefan Hajnoczi 182366d56054SStefan Hajnoczi aio_context_release(aio_context); 18243037f364SStefan Hajnoczi } 18253037f364SStefan Hajnoczi } 18263037f364SStefan Hajnoczi 182750f43f0fSJohn Snow static void drive_backup_clean(BlkActionState *common) 18285d6e96efSStefan Hajnoczi { 18295d6e96efSStefan Hajnoczi DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common); 183066d56054SStefan Hajnoczi AioContext *aio_context; 18315d6e96efSStefan Hajnoczi 183266d56054SStefan Hajnoczi if (!state->bs) { 183366d56054SStefan Hajnoczi return; 18345d6e96efSStefan Hajnoczi } 183566d56054SStefan Hajnoczi 183666d56054SStefan Hajnoczi aio_context = bdrv_get_aio_context(state->bs); 183766d56054SStefan Hajnoczi aio_context_acquire(aio_context); 183866d56054SStefan Hajnoczi 183966d56054SStefan Hajnoczi bdrv_drained_end(state->bs); 184066d56054SStefan Hajnoczi 184166d56054SStefan Hajnoczi aio_context_release(aio_context); 18425d6e96efSStefan Hajnoczi } 18435d6e96efSStefan Hajnoczi 1844bd8baecdSFam Zheng typedef struct BlockdevBackupState { 184550f43f0fSJohn Snow BlkActionState common; 1846bd8baecdSFam Zheng BlockDriverState *bs; 1847bd8baecdSFam Zheng BlockJob *job; 1848bd8baecdSFam Zheng } BlockdevBackupState; 1849bd8baecdSFam Zheng 185062c9e416SKevin Wolf static BlockJob *do_blockdev_backup(BlockdevBackup *backup, JobTxn *txn, 1851dc7a4a9eSPavel Butsykin Error **errp); 185278f51fdeSJohn Snow 185350f43f0fSJohn Snow static void blockdev_backup_prepare(BlkActionState *common, Error **errp) 1854bd8baecdSFam Zheng { 1855bd8baecdSFam Zheng BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common); 1856bd8baecdSFam Zheng BlockdevBackup *backup; 1857cef34eebSKevin Wolf BlockDriverState *bs, *target; 1858edd5adeeSStefan Hajnoczi AioContext *aio_context; 1859bd8baecdSFam Zheng Error *local_err = NULL; 1860bd8baecdSFam Zheng 18616a8f9661SEric Blake assert(common->action->type == TRANSACTION_ACTION_KIND_BLOCKDEV_BACKUP); 186232bafa8fSEric Blake backup = common->action->u.blockdev_backup.data; 1863bd8baecdSFam Zheng 1864930fe17fSVladimir Sementsov-Ogievskiy bs = bdrv_lookup_bs(backup->device, backup->device, errp); 1865cef34eebSKevin Wolf if (!bs) { 1866ff52bf36SFam Zheng return; 1867ff52bf36SFam Zheng } 1868ff52bf36SFam Zheng 186939d990acSKevin Wolf target = bdrv_lookup_bs(backup->target, backup->target, errp); 18705433c24fSMax Reitz if (!target) { 1871bd8baecdSFam Zheng return; 1872bd8baecdSFam Zheng } 1873bd8baecdSFam Zheng 1874edd5adeeSStefan Hajnoczi aio_context = bdrv_get_aio_context(bs); 1875edd5adeeSStefan Hajnoczi if (aio_context != bdrv_get_aio_context(target)) { 1876bd8baecdSFam Zheng error_setg(errp, "Backup between two IO threads is not implemented"); 1877bd8baecdSFam Zheng return; 1878bd8baecdSFam Zheng } 1879edd5adeeSStefan Hajnoczi aio_context_acquire(aio_context); 1880cef34eebSKevin Wolf state->bs = bs; 1881edd5adeeSStefan Hajnoczi 1882edd5adeeSStefan Hajnoczi /* Paired with .clean() */ 1883ff52bf36SFam Zheng bdrv_drained_begin(state->bs); 1884bd8baecdSFam Zheng 1885111049a4SJohn Snow state->job = do_blockdev_backup(backup, common->block_job_txn, &local_err); 1886bd8baecdSFam Zheng if (local_err) { 1887bd8baecdSFam Zheng error_propagate(errp, local_err); 1888edd5adeeSStefan Hajnoczi goto out; 1889bd8baecdSFam Zheng } 1890edd5adeeSStefan Hajnoczi 1891edd5adeeSStefan Hajnoczi out: 1892edd5adeeSStefan Hajnoczi aio_context_release(aio_context); 1893111049a4SJohn Snow } 1894bd8baecdSFam Zheng 1895111049a4SJohn Snow static void blockdev_backup_commit(BlkActionState *common) 1896111049a4SJohn Snow { 1897111049a4SJohn Snow BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common); 1898edd5adeeSStefan Hajnoczi AioContext *aio_context; 1899edd5adeeSStefan Hajnoczi 1900edd5adeeSStefan Hajnoczi aio_context = bdrv_get_aio_context(state->bs); 1901edd5adeeSStefan Hajnoczi aio_context_acquire(aio_context); 1902edd5adeeSStefan Hajnoczi 1903111049a4SJohn Snow assert(state->job); 1904da01ff7fSKevin Wolf job_start(&state->job->job); 1905edd5adeeSStefan Hajnoczi 1906edd5adeeSStefan Hajnoczi aio_context_release(aio_context); 1907bd8baecdSFam Zheng } 1908bd8baecdSFam Zheng 190950f43f0fSJohn Snow static void blockdev_backup_abort(BlkActionState *common) 1910bd8baecdSFam Zheng { 1911bd8baecdSFam Zheng BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common); 1912bd8baecdSFam Zheng 1913111049a4SJohn Snow if (state->job) { 1914edd5adeeSStefan Hajnoczi AioContext *aio_context; 1915edd5adeeSStefan Hajnoczi 1916edd5adeeSStefan Hajnoczi aio_context = bdrv_get_aio_context(state->bs); 1917edd5adeeSStefan Hajnoczi aio_context_acquire(aio_context); 1918edd5adeeSStefan Hajnoczi 19193d70ff53SKevin Wolf job_cancel_sync(&state->job->job); 1920edd5adeeSStefan Hajnoczi 1921edd5adeeSStefan Hajnoczi aio_context_release(aio_context); 1922bd8baecdSFam Zheng } 1923bd8baecdSFam Zheng } 1924bd8baecdSFam Zheng 192550f43f0fSJohn Snow static void blockdev_backup_clean(BlkActionState *common) 1926bd8baecdSFam Zheng { 1927bd8baecdSFam Zheng BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common); 1928edd5adeeSStefan Hajnoczi AioContext *aio_context; 1929bd8baecdSFam Zheng 1930edd5adeeSStefan Hajnoczi if (!state->bs) { 1931edd5adeeSStefan Hajnoczi return; 1932bd8baecdSFam Zheng } 1933edd5adeeSStefan Hajnoczi 1934edd5adeeSStefan Hajnoczi aio_context = bdrv_get_aio_context(state->bs); 1935edd5adeeSStefan Hajnoczi aio_context_acquire(aio_context); 1936edd5adeeSStefan Hajnoczi 1937edd5adeeSStefan Hajnoczi bdrv_drained_end(state->bs); 1938edd5adeeSStefan Hajnoczi 1939edd5adeeSStefan Hajnoczi aio_context_release(aio_context); 1940bd8baecdSFam Zheng } 1941bd8baecdSFam Zheng 1942df9a681dSFam Zheng typedef struct BlockDirtyBitmapState { 194350f43f0fSJohn Snow BlkActionState common; 1944df9a681dSFam Zheng BdrvDirtyBitmap *bitmap; 1945df9a681dSFam Zheng BlockDriverState *bs; 1946df9a681dSFam Zheng HBitmap *backup; 1947df9a681dSFam Zheng bool prepared; 1948c6490447SVladimir Sementsov-Ogievskiy bool was_enabled; 1949df9a681dSFam Zheng } BlockDirtyBitmapState; 1950df9a681dSFam Zheng 195150f43f0fSJohn Snow static void block_dirty_bitmap_add_prepare(BlkActionState *common, 1952df9a681dSFam Zheng Error **errp) 1953df9a681dSFam Zheng { 1954df9a681dSFam Zheng Error *local_err = NULL; 1955df9a681dSFam Zheng BlockDirtyBitmapAdd *action; 1956df9a681dSFam Zheng BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, 1957df9a681dSFam Zheng common, common); 1958df9a681dSFam Zheng 195994d16a64SJohn Snow if (action_check_completion_mode(common, errp) < 0) { 196094d16a64SJohn Snow return; 196194d16a64SJohn Snow } 196294d16a64SJohn Snow 196332bafa8fSEric Blake action = common->action->u.block_dirty_bitmap_add.data; 1964df9a681dSFam Zheng /* AIO context taken and released within qmp_block_dirty_bitmap_add */ 1965df9a681dSFam Zheng qmp_block_dirty_bitmap_add(action->node, action->name, 1966df9a681dSFam Zheng action->has_granularity, action->granularity, 1967fd5ae4ccSVladimir Sementsov-Ogievskiy action->has_persistent, action->persistent, 1968eb738bb5SVladimir Sementsov-Ogievskiy action->has_autoload, action->autoload, 1969a6e2ca5fSVladimir Sementsov-Ogievskiy action->has_x_disabled, action->x_disabled, 1970df9a681dSFam Zheng &local_err); 1971df9a681dSFam Zheng 1972df9a681dSFam Zheng if (!local_err) { 1973df9a681dSFam Zheng state->prepared = true; 1974df9a681dSFam Zheng } else { 1975df9a681dSFam Zheng error_propagate(errp, local_err); 1976df9a681dSFam Zheng } 1977df9a681dSFam Zheng } 1978df9a681dSFam Zheng 197950f43f0fSJohn Snow static void block_dirty_bitmap_add_abort(BlkActionState *common) 1980df9a681dSFam Zheng { 1981df9a681dSFam Zheng BlockDirtyBitmapAdd *action; 1982df9a681dSFam Zheng BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, 1983df9a681dSFam Zheng common, common); 1984df9a681dSFam Zheng 198532bafa8fSEric Blake action = common->action->u.block_dirty_bitmap_add.data; 1986df9a681dSFam Zheng /* Should not be able to fail: IF the bitmap was added via .prepare(), 1987df9a681dSFam Zheng * then the node reference and bitmap name must have been valid. 1988df9a681dSFam Zheng */ 1989df9a681dSFam Zheng if (state->prepared) { 1990df9a681dSFam Zheng qmp_block_dirty_bitmap_remove(action->node, action->name, &error_abort); 1991df9a681dSFam Zheng } 1992df9a681dSFam Zheng } 1993df9a681dSFam Zheng 199450f43f0fSJohn Snow static void block_dirty_bitmap_clear_prepare(BlkActionState *common, 1995df9a681dSFam Zheng Error **errp) 1996df9a681dSFam Zheng { 1997df9a681dSFam Zheng BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, 1998df9a681dSFam Zheng common, common); 1999df9a681dSFam Zheng BlockDirtyBitmap *action; 2000df9a681dSFam Zheng 200194d16a64SJohn Snow if (action_check_completion_mode(common, errp) < 0) { 200294d16a64SJohn Snow return; 200394d16a64SJohn Snow } 200494d16a64SJohn Snow 200532bafa8fSEric Blake action = common->action->u.block_dirty_bitmap_clear.data; 2006df9a681dSFam Zheng state->bitmap = block_dirty_bitmap_lookup(action->node, 2007df9a681dSFam Zheng action->name, 2008df9a681dSFam Zheng &state->bs, 2009df9a681dSFam Zheng errp); 2010df9a681dSFam Zheng if (!state->bitmap) { 2011df9a681dSFam Zheng return; 2012df9a681dSFam Zheng } 2013df9a681dSFam Zheng 2014993edc0cSJohn Snow if (bdrv_dirty_bitmap_user_locked(state->bitmap)) { 2015993edc0cSJohn Snow error_setg(errp, "Cannot modify a bitmap in use by another operation"); 20164f43e953SVladimir Sementsov-Ogievskiy return; 2017d6883bc9SVladimir Sementsov-Ogievskiy } else if (bdrv_dirty_bitmap_readonly(state->bitmap)) { 2018d6883bc9SVladimir Sementsov-Ogievskiy error_setg(errp, "Cannot clear a readonly bitmap"); 2019d6883bc9SVladimir Sementsov-Ogievskiy return; 2020df9a681dSFam Zheng } 2021df9a681dSFam Zheng 2022df9a681dSFam Zheng bdrv_clear_dirty_bitmap(state->bitmap, &state->backup); 2023df9a681dSFam Zheng } 2024df9a681dSFam Zheng 20255c4cf8b2SVladimir Sementsov-Ogievskiy static void block_dirty_bitmap_restore(BlkActionState *common) 2026df9a681dSFam Zheng { 2027df9a681dSFam Zheng BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, 2028df9a681dSFam Zheng common, common); 2029df9a681dSFam Zheng 2030184dd9c4SJohn Snow if (state->backup) { 203156bd6624SVladimir Sementsov-Ogievskiy bdrv_restore_dirty_bitmap(state->bitmap, state->backup); 2032df9a681dSFam Zheng } 2033184dd9c4SJohn Snow } 2034df9a681dSFam Zheng 20355c4cf8b2SVladimir Sementsov-Ogievskiy static void block_dirty_bitmap_free_backup(BlkActionState *common) 2036df9a681dSFam Zheng { 2037df9a681dSFam Zheng BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, 2038df9a681dSFam Zheng common, common); 2039df9a681dSFam Zheng 2040df9a681dSFam Zheng hbitmap_free(state->backup); 2041df9a681dSFam Zheng } 2042df9a681dSFam Zheng 2043c6490447SVladimir Sementsov-Ogievskiy static void block_dirty_bitmap_enable_prepare(BlkActionState *common, 2044c6490447SVladimir Sementsov-Ogievskiy Error **errp) 2045c6490447SVladimir Sementsov-Ogievskiy { 2046c6490447SVladimir Sementsov-Ogievskiy BlockDirtyBitmap *action; 2047c6490447SVladimir Sementsov-Ogievskiy BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, 2048c6490447SVladimir Sementsov-Ogievskiy common, common); 2049c6490447SVladimir Sementsov-Ogievskiy 2050c6490447SVladimir Sementsov-Ogievskiy if (action_check_completion_mode(common, errp) < 0) { 2051c6490447SVladimir Sementsov-Ogievskiy return; 2052c6490447SVladimir Sementsov-Ogievskiy } 2053c6490447SVladimir Sementsov-Ogievskiy 2054c6490447SVladimir Sementsov-Ogievskiy action = common->action->u.x_block_dirty_bitmap_enable.data; 2055c6490447SVladimir Sementsov-Ogievskiy state->bitmap = block_dirty_bitmap_lookup(action->node, 2056c6490447SVladimir Sementsov-Ogievskiy action->name, 2057c6490447SVladimir Sementsov-Ogievskiy NULL, 2058c6490447SVladimir Sementsov-Ogievskiy errp); 2059c6490447SVladimir Sementsov-Ogievskiy if (!state->bitmap) { 2060c6490447SVladimir Sementsov-Ogievskiy return; 2061c6490447SVladimir Sementsov-Ogievskiy } 2062c6490447SVladimir Sementsov-Ogievskiy 2063b053bb55SJohn Snow if (bdrv_dirty_bitmap_user_locked(state->bitmap)) { 2064b053bb55SJohn Snow error_setg(errp, 2065b053bb55SJohn Snow "Bitmap '%s' is currently in use by another operation" 2066b053bb55SJohn Snow " and cannot be enabled", action->name); 2067b053bb55SJohn Snow return; 2068b053bb55SJohn Snow } 2069b053bb55SJohn Snow 2070c6490447SVladimir Sementsov-Ogievskiy state->was_enabled = bdrv_dirty_bitmap_enabled(state->bitmap); 2071c6490447SVladimir Sementsov-Ogievskiy bdrv_enable_dirty_bitmap(state->bitmap); 2072c6490447SVladimir Sementsov-Ogievskiy } 2073c6490447SVladimir Sementsov-Ogievskiy 2074c6490447SVladimir Sementsov-Ogievskiy static void block_dirty_bitmap_enable_abort(BlkActionState *common) 2075c6490447SVladimir Sementsov-Ogievskiy { 2076c6490447SVladimir Sementsov-Ogievskiy BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, 2077c6490447SVladimir Sementsov-Ogievskiy common, common); 2078c6490447SVladimir Sementsov-Ogievskiy 2079c6490447SVladimir Sementsov-Ogievskiy if (!state->was_enabled) { 2080c6490447SVladimir Sementsov-Ogievskiy bdrv_disable_dirty_bitmap(state->bitmap); 2081c6490447SVladimir Sementsov-Ogievskiy } 2082c6490447SVladimir Sementsov-Ogievskiy } 2083c6490447SVladimir Sementsov-Ogievskiy 2084c6490447SVladimir Sementsov-Ogievskiy static void block_dirty_bitmap_disable_prepare(BlkActionState *common, 2085c6490447SVladimir Sementsov-Ogievskiy Error **errp) 2086c6490447SVladimir Sementsov-Ogievskiy { 2087c6490447SVladimir Sementsov-Ogievskiy BlockDirtyBitmap *action; 2088c6490447SVladimir Sementsov-Ogievskiy BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, 2089c6490447SVladimir Sementsov-Ogievskiy common, common); 2090c6490447SVladimir Sementsov-Ogievskiy 2091c6490447SVladimir Sementsov-Ogievskiy if (action_check_completion_mode(common, errp) < 0) { 2092c6490447SVladimir Sementsov-Ogievskiy return; 2093c6490447SVladimir Sementsov-Ogievskiy } 2094c6490447SVladimir Sementsov-Ogievskiy 2095c6490447SVladimir Sementsov-Ogievskiy action = common->action->u.x_block_dirty_bitmap_disable.data; 2096c6490447SVladimir Sementsov-Ogievskiy state->bitmap = block_dirty_bitmap_lookup(action->node, 2097c6490447SVladimir Sementsov-Ogievskiy action->name, 2098c6490447SVladimir Sementsov-Ogievskiy NULL, 2099c6490447SVladimir Sementsov-Ogievskiy errp); 2100c6490447SVladimir Sementsov-Ogievskiy if (!state->bitmap) { 2101c6490447SVladimir Sementsov-Ogievskiy return; 2102c6490447SVladimir Sementsov-Ogievskiy } 2103c6490447SVladimir Sementsov-Ogievskiy 2104b053bb55SJohn Snow if (bdrv_dirty_bitmap_user_locked(state->bitmap)) { 2105b053bb55SJohn Snow error_setg(errp, 2106b053bb55SJohn Snow "Bitmap '%s' is currently in use by another operation" 2107b053bb55SJohn Snow " and cannot be disabled", action->name); 2108b053bb55SJohn Snow return; 2109b053bb55SJohn Snow } 2110b053bb55SJohn Snow 2111c6490447SVladimir Sementsov-Ogievskiy state->was_enabled = bdrv_dirty_bitmap_enabled(state->bitmap); 2112c6490447SVladimir Sementsov-Ogievskiy bdrv_disable_dirty_bitmap(state->bitmap); 2113c6490447SVladimir Sementsov-Ogievskiy } 2114c6490447SVladimir Sementsov-Ogievskiy 2115c6490447SVladimir Sementsov-Ogievskiy static void block_dirty_bitmap_disable_abort(BlkActionState *common) 2116c6490447SVladimir Sementsov-Ogievskiy { 2117c6490447SVladimir Sementsov-Ogievskiy BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, 2118c6490447SVladimir Sementsov-Ogievskiy common, common); 2119c6490447SVladimir Sementsov-Ogievskiy 2120c6490447SVladimir Sementsov-Ogievskiy if (state->was_enabled) { 2121c6490447SVladimir Sementsov-Ogievskiy bdrv_enable_dirty_bitmap(state->bitmap); 2122c6490447SVladimir Sementsov-Ogievskiy } 2123c6490447SVladimir Sementsov-Ogievskiy } 2124c6490447SVladimir Sementsov-Ogievskiy 21256fd2e407SVladimir Sementsov-Ogievskiy static void block_dirty_bitmap_merge_prepare(BlkActionState *common, 21266fd2e407SVladimir Sementsov-Ogievskiy Error **errp) 21276fd2e407SVladimir Sementsov-Ogievskiy { 21286fd2e407SVladimir Sementsov-Ogievskiy BlockDirtyBitmapMerge *action; 21296fd2e407SVladimir Sementsov-Ogievskiy BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, 21306fd2e407SVladimir Sementsov-Ogievskiy common, common); 21316fd2e407SVladimir Sementsov-Ogievskiy BdrvDirtyBitmap *merge_source; 21326fd2e407SVladimir Sementsov-Ogievskiy 21336fd2e407SVladimir Sementsov-Ogievskiy if (action_check_completion_mode(common, errp) < 0) { 21346fd2e407SVladimir Sementsov-Ogievskiy return; 21356fd2e407SVladimir Sementsov-Ogievskiy } 21366fd2e407SVladimir Sementsov-Ogievskiy 21376fd2e407SVladimir Sementsov-Ogievskiy action = common->action->u.x_block_dirty_bitmap_merge.data; 21386fd2e407SVladimir Sementsov-Ogievskiy state->bitmap = block_dirty_bitmap_lookup(action->node, 21396fd2e407SVladimir Sementsov-Ogievskiy action->dst_name, 21406fd2e407SVladimir Sementsov-Ogievskiy &state->bs, 21416fd2e407SVladimir Sementsov-Ogievskiy errp); 21426fd2e407SVladimir Sementsov-Ogievskiy if (!state->bitmap) { 21436fd2e407SVladimir Sementsov-Ogievskiy return; 21446fd2e407SVladimir Sementsov-Ogievskiy } 21456fd2e407SVladimir Sementsov-Ogievskiy 21466fd2e407SVladimir Sementsov-Ogievskiy merge_source = bdrv_find_dirty_bitmap(state->bs, action->src_name); 21476fd2e407SVladimir Sementsov-Ogievskiy if (!merge_source) { 21486fd2e407SVladimir Sementsov-Ogievskiy return; 21496fd2e407SVladimir Sementsov-Ogievskiy } 21506fd2e407SVladimir Sementsov-Ogievskiy 21516fd2e407SVladimir Sementsov-Ogievskiy bdrv_merge_dirty_bitmap(state->bitmap, merge_source, &state->backup, errp); 21526fd2e407SVladimir Sementsov-Ogievskiy } 21536fd2e407SVladimir Sementsov-Ogievskiy 215450f43f0fSJohn Snow static void abort_prepare(BlkActionState *common, Error **errp) 215578b18b78SStefan Hajnoczi { 215678b18b78SStefan Hajnoczi error_setg(errp, "Transaction aborted using Abort action"); 215778b18b78SStefan Hajnoczi } 215878b18b78SStefan Hajnoczi 215950f43f0fSJohn Snow static void abort_commit(BlkActionState *common) 216078b18b78SStefan Hajnoczi { 2161dfc6f865SStefan Weil g_assert_not_reached(); /* this action never succeeds */ 216278b18b78SStefan Hajnoczi } 216378b18b78SStefan Hajnoczi 216450f43f0fSJohn Snow static const BlkActionOps actions[] = { 216543de7e2dSAlberto Garcia [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT] = { 216643de7e2dSAlberto Garcia .instance_size = sizeof(ExternalSnapshotState), 216743de7e2dSAlberto Garcia .prepare = external_snapshot_prepare, 216843de7e2dSAlberto Garcia .commit = external_snapshot_commit, 216943de7e2dSAlberto Garcia .abort = external_snapshot_abort, 21704ad6f3dbSAlberto Garcia .clean = external_snapshot_clean, 217143de7e2dSAlberto Garcia }, 2172c8a83e85SKevin Wolf [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC] = { 2173ba5d6ab6SStefan Hajnoczi .instance_size = sizeof(ExternalSnapshotState), 2174ba0c86a3SWenchao Xia .prepare = external_snapshot_prepare, 2175ba0c86a3SWenchao Xia .commit = external_snapshot_commit, 2176ba0c86a3SWenchao Xia .abort = external_snapshot_abort, 2177da763e83SFam Zheng .clean = external_snapshot_clean, 2178ba0c86a3SWenchao Xia }, 21793037f364SStefan Hajnoczi [TRANSACTION_ACTION_KIND_DRIVE_BACKUP] = { 21803037f364SStefan Hajnoczi .instance_size = sizeof(DriveBackupState), 21813037f364SStefan Hajnoczi .prepare = drive_backup_prepare, 2182111049a4SJohn Snow .commit = drive_backup_commit, 21833037f364SStefan Hajnoczi .abort = drive_backup_abort, 21845d6e96efSStefan Hajnoczi .clean = drive_backup_clean, 21853037f364SStefan Hajnoczi }, 2186bd8baecdSFam Zheng [TRANSACTION_ACTION_KIND_BLOCKDEV_BACKUP] = { 2187bd8baecdSFam Zheng .instance_size = sizeof(BlockdevBackupState), 2188bd8baecdSFam Zheng .prepare = blockdev_backup_prepare, 2189111049a4SJohn Snow .commit = blockdev_backup_commit, 2190bd8baecdSFam Zheng .abort = blockdev_backup_abort, 2191bd8baecdSFam Zheng .clean = blockdev_backup_clean, 2192bd8baecdSFam Zheng }, 219378b18b78SStefan Hajnoczi [TRANSACTION_ACTION_KIND_ABORT] = { 219450f43f0fSJohn Snow .instance_size = sizeof(BlkActionState), 219578b18b78SStefan Hajnoczi .prepare = abort_prepare, 219678b18b78SStefan Hajnoczi .commit = abort_commit, 219778b18b78SStefan Hajnoczi }, 2198bbe86010SWenchao Xia [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC] = { 2199bbe86010SWenchao Xia .instance_size = sizeof(InternalSnapshotState), 2200bbe86010SWenchao Xia .prepare = internal_snapshot_prepare, 2201bbe86010SWenchao Xia .abort = internal_snapshot_abort, 22025d6e96efSStefan Hajnoczi .clean = internal_snapshot_clean, 2203bbe86010SWenchao Xia }, 2204df9a681dSFam Zheng [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_ADD] = { 2205df9a681dSFam Zheng .instance_size = sizeof(BlockDirtyBitmapState), 2206df9a681dSFam Zheng .prepare = block_dirty_bitmap_add_prepare, 2207df9a681dSFam Zheng .abort = block_dirty_bitmap_add_abort, 2208df9a681dSFam Zheng }, 2209df9a681dSFam Zheng [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_CLEAR] = { 2210df9a681dSFam Zheng .instance_size = sizeof(BlockDirtyBitmapState), 2211df9a681dSFam Zheng .prepare = block_dirty_bitmap_clear_prepare, 22125c4cf8b2SVladimir Sementsov-Ogievskiy .commit = block_dirty_bitmap_free_backup, 22135c4cf8b2SVladimir Sementsov-Ogievskiy .abort = block_dirty_bitmap_restore, 2214c6490447SVladimir Sementsov-Ogievskiy }, 2215c6490447SVladimir Sementsov-Ogievskiy [TRANSACTION_ACTION_KIND_X_BLOCK_DIRTY_BITMAP_ENABLE] = { 2216c6490447SVladimir Sementsov-Ogievskiy .instance_size = sizeof(BlockDirtyBitmapState), 2217c6490447SVladimir Sementsov-Ogievskiy .prepare = block_dirty_bitmap_enable_prepare, 2218c6490447SVladimir Sementsov-Ogievskiy .abort = block_dirty_bitmap_enable_abort, 2219c6490447SVladimir Sementsov-Ogievskiy }, 2220c6490447SVladimir Sementsov-Ogievskiy [TRANSACTION_ACTION_KIND_X_BLOCK_DIRTY_BITMAP_DISABLE] = { 2221c6490447SVladimir Sementsov-Ogievskiy .instance_size = sizeof(BlockDirtyBitmapState), 2222c6490447SVladimir Sementsov-Ogievskiy .prepare = block_dirty_bitmap_disable_prepare, 2223c6490447SVladimir Sementsov-Ogievskiy .abort = block_dirty_bitmap_disable_abort, 222466da04ddSJohn Snow }, 22256fd2e407SVladimir Sementsov-Ogievskiy [TRANSACTION_ACTION_KIND_X_BLOCK_DIRTY_BITMAP_MERGE] = { 22266fd2e407SVladimir Sementsov-Ogievskiy .instance_size = sizeof(BlockDirtyBitmapState), 22276fd2e407SVladimir Sementsov-Ogievskiy .prepare = block_dirty_bitmap_merge_prepare, 22286fd2e407SVladimir Sementsov-Ogievskiy .commit = block_dirty_bitmap_free_backup, 22296fd2e407SVladimir Sementsov-Ogievskiy .abort = block_dirty_bitmap_restore, 22306fd2e407SVladimir Sementsov-Ogievskiy }, 223166da04ddSJohn Snow /* Where are transactions for MIRROR, COMMIT and STREAM? 223266da04ddSJohn Snow * Although these blockjobs use transaction callbacks like the backup job, 223366da04ddSJohn Snow * these jobs do not necessarily adhere to transaction semantics. 223466da04ddSJohn Snow * These jobs may not fully undo all of their actions on abort, nor do they 223566da04ddSJohn Snow * necessarily work in transactions with more than one job in them. 223666da04ddSJohn Snow */ 2237ba0c86a3SWenchao Xia }; 2238ba0c86a3SWenchao Xia 223994d16a64SJohn Snow /** 224094d16a64SJohn Snow * Allocate a TransactionProperties structure if necessary, and fill 224194d16a64SJohn Snow * that structure with desired defaults if they are unset. 224294d16a64SJohn Snow */ 224394d16a64SJohn Snow static TransactionProperties *get_transaction_properties( 224494d16a64SJohn Snow TransactionProperties *props) 224594d16a64SJohn Snow { 224694d16a64SJohn Snow if (!props) { 224794d16a64SJohn Snow props = g_new0(TransactionProperties, 1); 224894d16a64SJohn Snow } 224994d16a64SJohn Snow 225094d16a64SJohn Snow if (!props->has_completion_mode) { 225194d16a64SJohn Snow props->has_completion_mode = true; 225294d16a64SJohn Snow props->completion_mode = ACTION_COMPLETION_MODE_INDIVIDUAL; 225394d16a64SJohn Snow } 225494d16a64SJohn Snow 225594d16a64SJohn Snow return props; 225694d16a64SJohn Snow } 225794d16a64SJohn Snow 22588802d1fdSJeff Cody /* 2259b756b9ceSStefan Hajnoczi * 'Atomic' group operations. The operations are performed as a set, and if 2260b756b9ceSStefan Hajnoczi * any fail then we roll back all operations in the group. 22618802d1fdSJeff Cody */ 226294d16a64SJohn Snow void qmp_transaction(TransactionActionList *dev_list, 226394d16a64SJohn Snow bool has_props, 226494d16a64SJohn Snow struct TransactionProperties *props, 226594d16a64SJohn Snow Error **errp) 22668802d1fdSJeff Cody { 2267c8a83e85SKevin Wolf TransactionActionList *dev_entry = dev_list; 226862c9e416SKevin Wolf JobTxn *block_job_txn = NULL; 226950f43f0fSJohn Snow BlkActionState *state, *next; 227043e17041SLuiz Capitulino Error *local_err = NULL; 22718802d1fdSJeff Cody 227250f43f0fSJohn Snow QSIMPLEQ_HEAD(snap_bdrv_states, BlkActionState) snap_bdrv_states; 22738802d1fdSJeff Cody QSIMPLEQ_INIT(&snap_bdrv_states); 22748802d1fdSJeff Cody 227594d16a64SJohn Snow /* Does this transaction get canceled as a group on failure? 227662c9e416SKevin Wolf * If not, we don't really need to make a JobTxn. 227794d16a64SJohn Snow */ 227894d16a64SJohn Snow props = get_transaction_properties(props); 227994d16a64SJohn Snow if (props->completion_mode != ACTION_COMPLETION_MODE_INDIVIDUAL) { 22807eaa8fb5SKevin Wolf block_job_txn = job_txn_new(); 228194d16a64SJohn Snow } 228294d16a64SJohn Snow 2283b756b9ceSStefan Hajnoczi /* drain all i/o before any operations */ 22848802d1fdSJeff Cody bdrv_drain_all(); 22858802d1fdSJeff Cody 2286b756b9ceSStefan Hajnoczi /* We don't do anything in this loop that commits us to the operations */ 22878802d1fdSJeff Cody while (NULL != dev_entry) { 2288c8a83e85SKevin Wolf TransactionAction *dev_info = NULL; 228950f43f0fSJohn Snow const BlkActionOps *ops; 229052e7c241SPaolo Bonzini 22918802d1fdSJeff Cody dev_info = dev_entry->value; 22928802d1fdSJeff Cody dev_entry = dev_entry->next; 22938802d1fdSJeff Cody 22946a8f9661SEric Blake assert(dev_info->type < ARRAY_SIZE(actions)); 2295ba0c86a3SWenchao Xia 22966a8f9661SEric Blake ops = &actions[dev_info->type]; 2297aa3fe714SMax Reitz assert(ops->instance_size > 0); 2298aa3fe714SMax Reitz 2299ba5d6ab6SStefan Hajnoczi state = g_malloc0(ops->instance_size); 2300ba5d6ab6SStefan Hajnoczi state->ops = ops; 2301ba5d6ab6SStefan Hajnoczi state->action = dev_info; 230294d16a64SJohn Snow state->block_job_txn = block_job_txn; 230394d16a64SJohn Snow state->txn_props = props; 2304ba5d6ab6SStefan Hajnoczi QSIMPLEQ_INSERT_TAIL(&snap_bdrv_states, state, entry); 23058802d1fdSJeff Cody 2306ba5d6ab6SStefan Hajnoczi state->ops->prepare(state, &local_err); 230784d18f06SMarkus Armbruster if (local_err) { 23089b9877eeSWenchao Xia error_propagate(errp, local_err); 23099b9877eeSWenchao Xia goto delete_and_fail; 23109b9877eeSWenchao Xia } 231152e7c241SPaolo Bonzini } 23128802d1fdSJeff Cody 2313ba5d6ab6SStefan Hajnoczi QSIMPLEQ_FOREACH(state, &snap_bdrv_states, entry) { 2314f9ea81e8SStefan Hajnoczi if (state->ops->commit) { 2315ba5d6ab6SStefan Hajnoczi state->ops->commit(state); 23168802d1fdSJeff Cody } 2317f9ea81e8SStefan Hajnoczi } 23188802d1fdSJeff Cody 23198802d1fdSJeff Cody /* success */ 23208802d1fdSJeff Cody goto exit; 23218802d1fdSJeff Cody 23228802d1fdSJeff Cody delete_and_fail: 2323b756b9ceSStefan Hajnoczi /* failure, and it is all-or-none; roll back all operations */ 2324ba5d6ab6SStefan Hajnoczi QSIMPLEQ_FOREACH(state, &snap_bdrv_states, entry) { 2325ba5d6ab6SStefan Hajnoczi if (state->ops->abort) { 2326ba5d6ab6SStefan Hajnoczi state->ops->abort(state); 2327ba0c86a3SWenchao Xia } 23288802d1fdSJeff Cody } 23298802d1fdSJeff Cody exit: 2330ba5d6ab6SStefan Hajnoczi QSIMPLEQ_FOREACH_SAFE(state, &snap_bdrv_states, entry, next) { 2331ba5d6ab6SStefan Hajnoczi if (state->ops->clean) { 2332ba5d6ab6SStefan Hajnoczi state->ops->clean(state); 2333ba0c86a3SWenchao Xia } 2334ba5d6ab6SStefan Hajnoczi g_free(state); 23358802d1fdSJeff Cody } 233694d16a64SJohn Snow if (!has_props) { 233794d16a64SJohn Snow qapi_free_TransactionProperties(props); 233894d16a64SJohn Snow } 23397eaa8fb5SKevin Wolf job_txn_unref(block_job_txn); 23408802d1fdSJeff Cody } 23418802d1fdSJeff Cody 2342fbe2d816SKevin Wolf void qmp_eject(bool has_device, const char *device, 2343fbe2d816SKevin Wolf bool has_id, const char *id, 2344fbe2d816SKevin Wolf bool has_force, bool force, Error **errp) 2345666daa68SMarkus Armbruster { 234638f54bd1SMax Reitz Error *local_err = NULL; 23473a3086b7SJohn Snow int rc; 2348666daa68SMarkus Armbruster 23493a3086b7SJohn Snow if (!has_force) { 23503a3086b7SJohn Snow force = false; 23513a3086b7SJohn Snow } 23523a3086b7SJohn Snow 2353fbe2d816SKevin Wolf rc = do_open_tray(has_device ? device : NULL, 2354fbe2d816SKevin Wolf has_id ? id : NULL, 2355fbe2d816SKevin Wolf force, &local_err); 2356bf18bee5SColin Lord if (rc && rc != -ENOSYS) { 235738f54bd1SMax Reitz error_propagate(errp, local_err); 2358c245b6a3SLuiz Capitulino return; 2359666daa68SMarkus Armbruster } 2360bf18bee5SColin Lord error_free(local_err); 23613a3086b7SJohn Snow 236282fcf66eSMax Reitz blockdev_remove_medium(has_device, device, has_id, id, errp); 2363666daa68SMarkus Armbruster } 2364666daa68SMarkus Armbruster 236512d3ba82SBenoît Canet void qmp_block_passwd(bool has_device, const char *device, 236612d3ba82SBenoît Canet bool has_node_name, const char *node_name, 236712d3ba82SBenoît Canet const char *password, Error **errp) 2368666daa68SMarkus Armbruster { 2369c01c214bSDaniel P. Berrange error_setg(errp, 2370c01c214bSDaniel P. Berrange "Setting block passwords directly is no longer supported"); 2371e3442099SStefan Hajnoczi } 2372e3442099SStefan Hajnoczi 2373bf18bee5SColin Lord /* 2374bf18bee5SColin Lord * Attempt to open the tray of @device. 2375bf18bee5SColin Lord * If @force, ignore its tray lock. 2376bf18bee5SColin Lord * Else, if the tray is locked, don't open it, but ask the guest to open it. 2377bf18bee5SColin Lord * On error, store an error through @errp and return -errno. 2378bf18bee5SColin Lord * If @device does not exist, return -ENODEV. 2379bf18bee5SColin Lord * If it has no removable media, return -ENOTSUP. 2380bf18bee5SColin Lord * If it has no tray, return -ENOSYS. 2381bf18bee5SColin Lord * If the guest was asked to open the tray, return -EINPROGRESS. 2382bf18bee5SColin Lord * Else, return 0. 23833a3086b7SJohn Snow */ 2384b33945cfSKevin Wolf static int do_open_tray(const char *blk_name, const char *qdev_id, 2385b33945cfSKevin Wolf bool force, Error **errp) 23867d8a9f71SMax Reitz { 23877d8a9f71SMax Reitz BlockBackend *blk; 2388b33945cfSKevin Wolf const char *device = qdev_id ?: blk_name; 23897d8a9f71SMax Reitz bool locked; 23907d8a9f71SMax Reitz 2391b33945cfSKevin Wolf blk = qmp_get_blk(blk_name, qdev_id, errp); 23927d8a9f71SMax Reitz if (!blk) { 23933a3086b7SJohn Snow return -ENODEV; 23947d8a9f71SMax Reitz } 23957d8a9f71SMax Reitz 23967d8a9f71SMax Reitz if (!blk_dev_has_removable_media(blk)) { 23977d8a9f71SMax Reitz error_setg(errp, "Device '%s' is not removable", device); 23983a3086b7SJohn Snow return -ENOTSUP; 23997d8a9f71SMax Reitz } 24007d8a9f71SMax Reitz 240112c7ec87SMax Reitz if (!blk_dev_has_tray(blk)) { 2402bf18bee5SColin Lord error_setg(errp, "Device '%s' does not have a tray", device); 2403bf18bee5SColin Lord return -ENOSYS; 240412c7ec87SMax Reitz } 240512c7ec87SMax Reitz 24067d8a9f71SMax Reitz if (blk_dev_is_tray_open(blk)) { 24073a3086b7SJohn Snow return 0; 24087d8a9f71SMax Reitz } 24097d8a9f71SMax Reitz 24107d8a9f71SMax Reitz locked = blk_dev_is_medium_locked(blk); 24117d8a9f71SMax Reitz if (locked) { 24127d8a9f71SMax Reitz blk_dev_eject_request(blk, force); 24137d8a9f71SMax Reitz } 24147d8a9f71SMax Reitz 24157d8a9f71SMax Reitz if (!locked || force) { 241639829a01SKevin Wolf blk_dev_change_media_cb(blk, false, &error_abort); 24177d8a9f71SMax Reitz } 24183a3086b7SJohn Snow 24193a3086b7SJohn Snow if (locked && !force) { 2420bf18bee5SColin Lord error_setg(errp, "Device '%s' is locked and force was not specified, " 2421bf18bee5SColin Lord "wait for tray to open and try again", device); 2422bf18bee5SColin Lord return -EINPROGRESS; 24233a3086b7SJohn Snow } 24243a3086b7SJohn Snow 24253a3086b7SJohn Snow return 0; 24263a3086b7SJohn Snow } 24273a3086b7SJohn Snow 2428b33945cfSKevin Wolf void qmp_blockdev_open_tray(bool has_device, const char *device, 2429b33945cfSKevin Wolf bool has_id, const char *id, 2430b33945cfSKevin Wolf bool has_force, bool force, 24313a3086b7SJohn Snow Error **errp) 24323a3086b7SJohn Snow { 2433bf18bee5SColin Lord Error *local_err = NULL; 2434bf18bee5SColin Lord int rc; 2435bf18bee5SColin Lord 24363a3086b7SJohn Snow if (!has_force) { 24373a3086b7SJohn Snow force = false; 24383a3086b7SJohn Snow } 2439b33945cfSKevin Wolf rc = do_open_tray(has_device ? device : NULL, 2440b33945cfSKevin Wolf has_id ? id : NULL, 2441b33945cfSKevin Wolf force, &local_err); 2442bf18bee5SColin Lord if (rc && rc != -ENOSYS && rc != -EINPROGRESS) { 2443bf18bee5SColin Lord error_propagate(errp, local_err); 2444bf18bee5SColin Lord return; 2445bf18bee5SColin Lord } 2446bf18bee5SColin Lord error_free(local_err); 24477d8a9f71SMax Reitz } 24487d8a9f71SMax Reitz 2449b33945cfSKevin Wolf void qmp_blockdev_close_tray(bool has_device, const char *device, 2450b33945cfSKevin Wolf bool has_id, const char *id, 2451b33945cfSKevin Wolf Error **errp) 2452abaaf59dSMax Reitz { 2453abaaf59dSMax Reitz BlockBackend *blk; 245439829a01SKevin Wolf Error *local_err = NULL; 2455abaaf59dSMax Reitz 2456b33945cfSKevin Wolf device = has_device ? device : NULL; 2457b33945cfSKevin Wolf id = has_id ? id : NULL; 2458b33945cfSKevin Wolf 2459b33945cfSKevin Wolf blk = qmp_get_blk(device, id, errp); 2460abaaf59dSMax Reitz if (!blk) { 2461abaaf59dSMax Reitz return; 2462abaaf59dSMax Reitz } 2463abaaf59dSMax Reitz 2464abaaf59dSMax Reitz if (!blk_dev_has_removable_media(blk)) { 2465b33945cfSKevin Wolf error_setg(errp, "Device '%s' is not removable", device ?: id); 2466abaaf59dSMax Reitz return; 2467abaaf59dSMax Reitz } 2468abaaf59dSMax Reitz 246912c7ec87SMax Reitz if (!blk_dev_has_tray(blk)) { 247012c7ec87SMax Reitz /* Ignore this command on tray-less devices */ 247112c7ec87SMax Reitz return; 247212c7ec87SMax Reitz } 247312c7ec87SMax Reitz 2474abaaf59dSMax Reitz if (!blk_dev_is_tray_open(blk)) { 2475abaaf59dSMax Reitz return; 2476abaaf59dSMax Reitz } 2477abaaf59dSMax Reitz 247839829a01SKevin Wolf blk_dev_change_media_cb(blk, true, &local_err); 247939829a01SKevin Wolf if (local_err) { 248039829a01SKevin Wolf error_propagate(errp, local_err); 248139829a01SKevin Wolf return; 248239829a01SKevin Wolf } 2483abaaf59dSMax Reitz } 2484abaaf59dSMax Reitz 248582fcf66eSMax Reitz static void blockdev_remove_medium(bool has_device, const char *device, 248600949babSKevin Wolf bool has_id, const char *id, Error **errp) 24872814f672SMax Reitz { 24882814f672SMax Reitz BlockBackend *blk; 24892814f672SMax Reitz BlockDriverState *bs; 24902814f672SMax Reitz AioContext *aio_context; 249100949babSKevin Wolf bool has_attached_device; 24922814f672SMax Reitz 249300949babSKevin Wolf device = has_device ? device : NULL; 249400949babSKevin Wolf id = has_id ? id : NULL; 249500949babSKevin Wolf 249600949babSKevin Wolf blk = qmp_get_blk(device, id, errp); 24972814f672SMax Reitz if (!blk) { 24982814f672SMax Reitz return; 24992814f672SMax Reitz } 25002814f672SMax Reitz 25012814f672SMax Reitz /* For BBs without a device, we can exchange the BDS tree at will */ 250200949babSKevin Wolf has_attached_device = blk_get_attached_dev(blk); 25032814f672SMax Reitz 250400949babSKevin Wolf if (has_attached_device && !blk_dev_has_removable_media(blk)) { 250500949babSKevin Wolf error_setg(errp, "Device '%s' is not removable", device ?: id); 25062814f672SMax Reitz return; 25072814f672SMax Reitz } 25082814f672SMax Reitz 250900949babSKevin Wolf if (has_attached_device && blk_dev_has_tray(blk) && 251000949babSKevin Wolf !blk_dev_is_tray_open(blk)) 251100949babSKevin Wolf { 251200949babSKevin Wolf error_setg(errp, "Tray of device '%s' is not open", device ?: id); 25132814f672SMax Reitz return; 25142814f672SMax Reitz } 25152814f672SMax Reitz 25162814f672SMax Reitz bs = blk_bs(blk); 25172814f672SMax Reitz if (!bs) { 25182814f672SMax Reitz return; 25192814f672SMax Reitz } 25202814f672SMax Reitz 25212814f672SMax Reitz aio_context = bdrv_get_aio_context(bs); 25222814f672SMax Reitz aio_context_acquire(aio_context); 25232814f672SMax Reitz 25242814f672SMax Reitz if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_EJECT, errp)) { 25252814f672SMax Reitz goto out; 25262814f672SMax Reitz } 25272814f672SMax Reitz 25282814f672SMax Reitz blk_remove_bs(blk); 25292814f672SMax Reitz 253012c7ec87SMax Reitz if (!blk_dev_has_tray(blk)) { 253112c7ec87SMax Reitz /* For tray-less devices, blockdev-open-tray is a no-op (or may not be 253212c7ec87SMax Reitz * called at all); therefore, the medium needs to be ejected here. 253312c7ec87SMax Reitz * Do it after blk_remove_bs() so blk_is_inserted(blk) returns the @load 253412c7ec87SMax Reitz * value passed here (i.e. false). */ 253539829a01SKevin Wolf blk_dev_change_media_cb(blk, false, &error_abort); 253612c7ec87SMax Reitz } 253712c7ec87SMax Reitz 25382814f672SMax Reitz out: 25392814f672SMax Reitz aio_context_release(aio_context); 25402814f672SMax Reitz } 25412814f672SMax Reitz 254234ce1111SMax Reitz void qmp_blockdev_remove_medium(const char *id, Error **errp) 254382fcf66eSMax Reitz { 254482fcf66eSMax Reitz blockdev_remove_medium(false, NULL, true, id, errp); 254582fcf66eSMax Reitz } 254682fcf66eSMax Reitz 2547716df217SKevin Wolf static void qmp_blockdev_insert_anon_medium(BlockBackend *blk, 2548d1299882SMax Reitz BlockDriverState *bs, Error **errp) 2549d1299882SMax Reitz { 255039829a01SKevin Wolf Error *local_err = NULL; 2551d1299882SMax Reitz bool has_device; 2552d7086422SKevin Wolf int ret; 2553d1299882SMax Reitz 2554d1299882SMax Reitz /* For BBs without a device, we can exchange the BDS tree at will */ 2555d1299882SMax Reitz has_device = blk_get_attached_dev(blk); 2556d1299882SMax Reitz 2557d1299882SMax Reitz if (has_device && !blk_dev_has_removable_media(blk)) { 2558716df217SKevin Wolf error_setg(errp, "Device is not removable"); 2559d1299882SMax Reitz return; 2560d1299882SMax Reitz } 2561d1299882SMax Reitz 256212c7ec87SMax Reitz if (has_device && blk_dev_has_tray(blk) && !blk_dev_is_tray_open(blk)) { 2563716df217SKevin Wolf error_setg(errp, "Tray of the device is not open"); 2564d1299882SMax Reitz return; 2565d1299882SMax Reitz } 2566d1299882SMax Reitz 2567d1299882SMax Reitz if (blk_bs(blk)) { 2568716df217SKevin Wolf error_setg(errp, "There already is a medium in the device"); 2569d1299882SMax Reitz return; 2570d1299882SMax Reitz } 2571d1299882SMax Reitz 2572d7086422SKevin Wolf ret = blk_insert_bs(blk, bs, errp); 2573d7086422SKevin Wolf if (ret < 0) { 2574d7086422SKevin Wolf return; 2575d7086422SKevin Wolf } 2576d1299882SMax Reitz 257712c7ec87SMax Reitz if (!blk_dev_has_tray(blk)) { 257812c7ec87SMax Reitz /* For tray-less devices, blockdev-close-tray is a no-op (or may not be 257912c7ec87SMax Reitz * called at all); therefore, the medium needs to be pushed into the 258012c7ec87SMax Reitz * slot here. 258112c7ec87SMax Reitz * Do it after blk_insert_bs() so blk_is_inserted(blk) returns the @load 258212c7ec87SMax Reitz * value passed here (i.e. true). */ 258339829a01SKevin Wolf blk_dev_change_media_cb(blk, true, &local_err); 258439829a01SKevin Wolf if (local_err) { 258539829a01SKevin Wolf error_propagate(errp, local_err); 258639829a01SKevin Wolf blk_remove_bs(blk); 258739829a01SKevin Wolf return; 258839829a01SKevin Wolf } 258912c7ec87SMax Reitz } 2590d1299882SMax Reitz } 2591d1299882SMax Reitz 259282fcf66eSMax Reitz static void blockdev_insert_medium(bool has_device, const char *device, 2593716df217SKevin Wolf bool has_id, const char *id, 2594716df217SKevin Wolf const char *node_name, Error **errp) 2595d1299882SMax Reitz { 2596716df217SKevin Wolf BlockBackend *blk; 2597d1299882SMax Reitz BlockDriverState *bs; 2598d1299882SMax Reitz 2599716df217SKevin Wolf blk = qmp_get_blk(has_device ? device : NULL, 2600716df217SKevin Wolf has_id ? id : NULL, 2601716df217SKevin Wolf errp); 2602716df217SKevin Wolf if (!blk) { 2603716df217SKevin Wolf return; 2604716df217SKevin Wolf } 2605716df217SKevin Wolf 2606d1299882SMax Reitz bs = bdrv_find_node(node_name); 2607d1299882SMax Reitz if (!bs) { 2608d1299882SMax Reitz error_setg(errp, "Node '%s' not found", node_name); 2609d1299882SMax Reitz return; 2610d1299882SMax Reitz } 2611d1299882SMax Reitz 26121f0c461bSKevin Wolf if (bdrv_has_blk(bs)) { 2613e467da7bSKevin Wolf error_setg(errp, "Node '%s' is already in use", node_name); 2614d1299882SMax Reitz return; 2615d1299882SMax Reitz } 2616d1299882SMax Reitz 2617716df217SKevin Wolf qmp_blockdev_insert_anon_medium(blk, bs, errp); 2618d1299882SMax Reitz } 2619d1299882SMax Reitz 262034ce1111SMax Reitz void qmp_blockdev_insert_medium(const char *id, const char *node_name, 262182fcf66eSMax Reitz Error **errp) 262282fcf66eSMax Reitz { 262382fcf66eSMax Reitz blockdev_insert_medium(false, NULL, true, id, node_name, errp); 262482fcf66eSMax Reitz } 262582fcf66eSMax Reitz 262670e2cb3bSKevin Wolf void qmp_blockdev_change_medium(bool has_device, const char *device, 262770e2cb3bSKevin Wolf bool has_id, const char *id, 262870e2cb3bSKevin Wolf const char *filename, 262924fb4133SMax Reitz bool has_format, const char *format, 263039ff43d9SMax Reitz bool has_read_only, 263139ff43d9SMax Reitz BlockdevChangeReadOnlyMode read_only, 263224fb4133SMax Reitz Error **errp) 2633de2c6c05SMax Reitz { 2634de2c6c05SMax Reitz BlockBackend *blk; 2635de2c6c05SMax Reitz BlockDriverState *medium_bs = NULL; 26365b363937SMax Reitz int bdrv_flags; 2637b85114f8SKevin Wolf bool detect_zeroes; 263838a53d50SColin Lord int rc; 2639de2c6c05SMax Reitz QDict *options = NULL; 2640de2c6c05SMax Reitz Error *err = NULL; 2641de2c6c05SMax Reitz 264270e2cb3bSKevin Wolf blk = qmp_get_blk(has_device ? device : NULL, 264370e2cb3bSKevin Wolf has_id ? id : NULL, 264470e2cb3bSKevin Wolf errp); 2645de2c6c05SMax Reitz if (!blk) { 2646de2c6c05SMax Reitz goto fail; 2647de2c6c05SMax Reitz } 2648de2c6c05SMax Reitz 2649de2c6c05SMax Reitz if (blk_bs(blk)) { 2650de2c6c05SMax Reitz blk_update_root_state(blk); 2651de2c6c05SMax Reitz } 2652de2c6c05SMax Reitz 2653de2c6c05SMax Reitz bdrv_flags = blk_get_open_flags_from_root_state(blk); 2654156abc2fSAlyssa Milburn bdrv_flags &= ~(BDRV_O_TEMPORARY | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | 2655e35bdc12SKevin Wolf BDRV_O_PROTOCOL | BDRV_O_AUTO_RDONLY); 2656de2c6c05SMax Reitz 265739ff43d9SMax Reitz if (!has_read_only) { 265839ff43d9SMax Reitz read_only = BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN; 265939ff43d9SMax Reitz } 266039ff43d9SMax Reitz 266139ff43d9SMax Reitz switch (read_only) { 266239ff43d9SMax Reitz case BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN: 266339ff43d9SMax Reitz break; 266439ff43d9SMax Reitz 266539ff43d9SMax Reitz case BLOCKDEV_CHANGE_READ_ONLY_MODE_READ_ONLY: 266639ff43d9SMax Reitz bdrv_flags &= ~BDRV_O_RDWR; 266739ff43d9SMax Reitz break; 266839ff43d9SMax Reitz 266939ff43d9SMax Reitz case BLOCKDEV_CHANGE_READ_ONLY_MODE_READ_WRITE: 267039ff43d9SMax Reitz bdrv_flags |= BDRV_O_RDWR; 267139ff43d9SMax Reitz break; 267239ff43d9SMax Reitz 267339ff43d9SMax Reitz default: 267439ff43d9SMax Reitz abort(); 267539ff43d9SMax Reitz } 267639ff43d9SMax Reitz 2677de2c6c05SMax Reitz options = qdict_new(); 2678b85114f8SKevin Wolf detect_zeroes = blk_get_detect_zeroes_from_root_state(blk); 267946f5ac20SEric Blake qdict_put_str(options, "detect-zeroes", detect_zeroes ? "on" : "off"); 2680b85114f8SKevin Wolf 2681b85114f8SKevin Wolf if (has_format) { 268246f5ac20SEric Blake qdict_put_str(options, "driver", format); 2683de2c6c05SMax Reitz } 2684de2c6c05SMax Reitz 26855b363937SMax Reitz medium_bs = bdrv_open(filename, NULL, options, bdrv_flags, errp); 26865b363937SMax Reitz if (!medium_bs) { 2687de2c6c05SMax Reitz goto fail; 2688de2c6c05SMax Reitz } 2689de2c6c05SMax Reitz 269070e2cb3bSKevin Wolf rc = do_open_tray(has_device ? device : NULL, 269170e2cb3bSKevin Wolf has_id ? id : NULL, 269270e2cb3bSKevin Wolf false, &err); 269338a53d50SColin Lord if (rc && rc != -ENOSYS) { 2694de2c6c05SMax Reitz error_propagate(errp, err); 2695de2c6c05SMax Reitz goto fail; 2696de2c6c05SMax Reitz } 269738a53d50SColin Lord error_free(err); 269838a53d50SColin Lord err = NULL; 2699de2c6c05SMax Reitz 270082fcf66eSMax Reitz blockdev_remove_medium(has_device, device, has_id, id, &err); 2701de2c6c05SMax Reitz if (err) { 2702de2c6c05SMax Reitz error_propagate(errp, err); 2703de2c6c05SMax Reitz goto fail; 2704de2c6c05SMax Reitz } 2705de2c6c05SMax Reitz 2706716df217SKevin Wolf qmp_blockdev_insert_anon_medium(blk, medium_bs, &err); 2707de2c6c05SMax Reitz if (err) { 2708de2c6c05SMax Reitz error_propagate(errp, err); 2709de2c6c05SMax Reitz goto fail; 2710de2c6c05SMax Reitz } 2711de2c6c05SMax Reitz 271270e2cb3bSKevin Wolf qmp_blockdev_close_tray(has_device, device, has_id, id, errp); 2713de2c6c05SMax Reitz 2714de2c6c05SMax Reitz fail: 2715de2c6c05SMax Reitz /* If the medium has been inserted, the device has its own reference, so 2716de2c6c05SMax Reitz * ours must be relinquished; and if it has not been inserted successfully, 2717de2c6c05SMax Reitz * the reference must be relinquished anyway */ 2718de2c6c05SMax Reitz bdrv_unref(medium_bs); 2719de2c6c05SMax Reitz } 2720de2c6c05SMax Reitz 2721727f005eSZhi Yong Wu /* throttling disk I/O limits */ 27224dc9397bSEric Blake void qmp_block_set_io_throttle(BlockIOThrottle *arg, Error **errp) 2723727f005eSZhi Yong Wu { 2724cc0681c4SBenoît Canet ThrottleConfig cfg; 2725727f005eSZhi Yong Wu BlockDriverState *bs; 2726a0e8544cSFam Zheng BlockBackend *blk; 2727b15446fdSStefan Hajnoczi AioContext *aio_context; 2728727f005eSZhi Yong Wu 27297a9877a0SKevin Wolf blk = qmp_get_blk(arg->has_device ? arg->device : NULL, 27307a9877a0SKevin Wolf arg->has_id ? arg->id : NULL, 27317a9877a0SKevin Wolf errp); 2732a0e8544cSFam Zheng if (!blk) { 273380047da5SLuiz Capitulino return; 2734727f005eSZhi Yong Wu } 27355433c24fSMax Reitz 27365433c24fSMax Reitz aio_context = blk_get_aio_context(blk); 27375433c24fSMax Reitz aio_context_acquire(aio_context); 27385433c24fSMax Reitz 2739a0e8544cSFam Zheng bs = blk_bs(blk); 27405433c24fSMax Reitz if (!bs) { 27417a9877a0SKevin Wolf error_setg(errp, "Device has no medium"); 27425433c24fSMax Reitz goto out; 27435433c24fSMax Reitz } 2744727f005eSZhi Yong Wu 27451588ab5dSAlberto Garcia throttle_config_init(&cfg); 27464dc9397bSEric Blake cfg.buckets[THROTTLE_BPS_TOTAL].avg = arg->bps; 27474dc9397bSEric Blake cfg.buckets[THROTTLE_BPS_READ].avg = arg->bps_rd; 27484dc9397bSEric Blake cfg.buckets[THROTTLE_BPS_WRITE].avg = arg->bps_wr; 2749727f005eSZhi Yong Wu 27504dc9397bSEric Blake cfg.buckets[THROTTLE_OPS_TOTAL].avg = arg->iops; 27514dc9397bSEric Blake cfg.buckets[THROTTLE_OPS_READ].avg = arg->iops_rd; 27524dc9397bSEric Blake cfg.buckets[THROTTLE_OPS_WRITE].avg = arg->iops_wr; 2753cc0681c4SBenoît Canet 27544dc9397bSEric Blake if (arg->has_bps_max) { 27554dc9397bSEric Blake cfg.buckets[THROTTLE_BPS_TOTAL].max = arg->bps_max; 27563e9fab69SBenoît Canet } 27574dc9397bSEric Blake if (arg->has_bps_rd_max) { 27584dc9397bSEric Blake cfg.buckets[THROTTLE_BPS_READ].max = arg->bps_rd_max; 27593e9fab69SBenoît Canet } 27604dc9397bSEric Blake if (arg->has_bps_wr_max) { 27614dc9397bSEric Blake cfg.buckets[THROTTLE_BPS_WRITE].max = arg->bps_wr_max; 27623e9fab69SBenoît Canet } 27634dc9397bSEric Blake if (arg->has_iops_max) { 27644dc9397bSEric Blake cfg.buckets[THROTTLE_OPS_TOTAL].max = arg->iops_max; 27653e9fab69SBenoît Canet } 27664dc9397bSEric Blake if (arg->has_iops_rd_max) { 27674dc9397bSEric Blake cfg.buckets[THROTTLE_OPS_READ].max = arg->iops_rd_max; 27683e9fab69SBenoît Canet } 27694dc9397bSEric Blake if (arg->has_iops_wr_max) { 27704dc9397bSEric Blake cfg.buckets[THROTTLE_OPS_WRITE].max = arg->iops_wr_max; 27713e9fab69SBenoît Canet } 2772cc0681c4SBenoît Canet 27734dc9397bSEric Blake if (arg->has_bps_max_length) { 27744dc9397bSEric Blake cfg.buckets[THROTTLE_BPS_TOTAL].burst_length = arg->bps_max_length; 2775dce13204SAlberto Garcia } 27764dc9397bSEric Blake if (arg->has_bps_rd_max_length) { 27774dc9397bSEric Blake cfg.buckets[THROTTLE_BPS_READ].burst_length = arg->bps_rd_max_length; 2778dce13204SAlberto Garcia } 27794dc9397bSEric Blake if (arg->has_bps_wr_max_length) { 27804dc9397bSEric Blake cfg.buckets[THROTTLE_BPS_WRITE].burst_length = arg->bps_wr_max_length; 2781dce13204SAlberto Garcia } 27824dc9397bSEric Blake if (arg->has_iops_max_length) { 27834dc9397bSEric Blake cfg.buckets[THROTTLE_OPS_TOTAL].burst_length = arg->iops_max_length; 2784dce13204SAlberto Garcia } 27854dc9397bSEric Blake if (arg->has_iops_rd_max_length) { 27864dc9397bSEric Blake cfg.buckets[THROTTLE_OPS_READ].burst_length = arg->iops_rd_max_length; 2787dce13204SAlberto Garcia } 27884dc9397bSEric Blake if (arg->has_iops_wr_max_length) { 27894dc9397bSEric Blake cfg.buckets[THROTTLE_OPS_WRITE].burst_length = arg->iops_wr_max_length; 2790dce13204SAlberto Garcia } 2791dce13204SAlberto Garcia 27924dc9397bSEric Blake if (arg->has_iops_size) { 27934dc9397bSEric Blake cfg.op_size = arg->iops_size; 27942024c1dfSBenoît Canet } 2795cc0681c4SBenoît Canet 2796d5851089SAlberto Garcia if (!throttle_is_valid(&cfg, errp)) { 27975433c24fSMax Reitz goto out; 2798727f005eSZhi Yong Wu } 2799727f005eSZhi Yong Wu 280076f4afb4SAlberto Garcia if (throttle_enabled(&cfg)) { 280176f4afb4SAlberto Garcia /* Enable I/O limits if they're not enabled yet, otherwise 280276f4afb4SAlberto Garcia * just update the throttling group. */ 2803022cdc9fSManos Pitsidianakis if (!blk_get_public(blk)->throttle_group_member.throttle_state) { 28044dc9397bSEric Blake blk_io_limits_enable(blk, 28057a9877a0SKevin Wolf arg->has_group ? arg->group : 28067a9877a0SKevin Wolf arg->has_device ? arg->device : 28077a9877a0SKevin Wolf arg->id); 28084dc9397bSEric Blake } else if (arg->has_group) { 28094dc9397bSEric Blake blk_io_limits_update_group(blk, arg->group); 2810727f005eSZhi Yong Wu } 281176f4afb4SAlberto Garcia /* Set the new throttling configuration */ 281297148076SKevin Wolf blk_set_io_limits(blk, &cfg); 2813022cdc9fSManos Pitsidianakis } else if (blk_get_public(blk)->throttle_group_member.throttle_state) { 281476f4afb4SAlberto Garcia /* If all throttling settings are set to 0, disable I/O limits */ 281597148076SKevin Wolf blk_io_limits_disable(blk); 2816727f005eSZhi Yong Wu } 2817b15446fdSStefan Hajnoczi 28185433c24fSMax Reitz out: 2819b15446fdSStefan Hajnoczi aio_context_release(aio_context); 2820727f005eSZhi Yong Wu } 2821727f005eSZhi Yong Wu 2822341ebc2fSJohn Snow void qmp_block_dirty_bitmap_add(const char *node, const char *name, 2823341ebc2fSJohn Snow bool has_granularity, uint32_t granularity, 2824fd5ae4ccSVladimir Sementsov-Ogievskiy bool has_persistent, bool persistent, 2825eb738bb5SVladimir Sementsov-Ogievskiy bool has_autoload, bool autoload, 2826a6e2ca5fSVladimir Sementsov-Ogievskiy bool has_disabled, bool disabled, 2827341ebc2fSJohn Snow Error **errp) 2828341ebc2fSJohn Snow { 2829341ebc2fSJohn Snow BlockDriverState *bs; 2830fd5ae4ccSVladimir Sementsov-Ogievskiy BdrvDirtyBitmap *bitmap; 2831341ebc2fSJohn Snow 2832341ebc2fSJohn Snow if (!name || name[0] == '\0') { 2833341ebc2fSJohn Snow error_setg(errp, "Bitmap name cannot be empty"); 2834341ebc2fSJohn Snow return; 2835341ebc2fSJohn Snow } 2836341ebc2fSJohn Snow 2837341ebc2fSJohn Snow bs = bdrv_lookup_bs(node, node, errp); 2838341ebc2fSJohn Snow if (!bs) { 2839341ebc2fSJohn Snow return; 2840341ebc2fSJohn Snow } 2841341ebc2fSJohn Snow 2842341ebc2fSJohn Snow if (has_granularity) { 2843341ebc2fSJohn Snow if (granularity < 512 || !is_power_of_2(granularity)) { 2844341ebc2fSJohn Snow error_setg(errp, "Granularity must be power of 2 " 2845341ebc2fSJohn Snow "and at least 512"); 28462119882cSPaolo Bonzini return; 2847341ebc2fSJohn Snow } 2848341ebc2fSJohn Snow } else { 2849341ebc2fSJohn Snow /* Default to cluster size, if available: */ 2850341ebc2fSJohn Snow granularity = bdrv_get_default_bitmap_granularity(bs); 2851341ebc2fSJohn Snow } 2852341ebc2fSJohn Snow 2853fd5ae4ccSVladimir Sementsov-Ogievskiy if (!has_persistent) { 2854fd5ae4ccSVladimir Sementsov-Ogievskiy persistent = false; 2855fd5ae4ccSVladimir Sementsov-Ogievskiy } 2856eb738bb5SVladimir Sementsov-Ogievskiy 28573e99da5eSVladimir Sementsov-Ogievskiy if (has_autoload) { 28583e99da5eSVladimir Sementsov-Ogievskiy warn_report("Autoload option is deprecated and its value is ignored"); 2859eb738bb5SVladimir Sementsov-Ogievskiy } 2860fd5ae4ccSVladimir Sementsov-Ogievskiy 2861a6e2ca5fSVladimir Sementsov-Ogievskiy if (!has_disabled) { 2862a6e2ca5fSVladimir Sementsov-Ogievskiy disabled = false; 2863a6e2ca5fSVladimir Sementsov-Ogievskiy } 2864a6e2ca5fSVladimir Sementsov-Ogievskiy 2865fd5ae4ccSVladimir Sementsov-Ogievskiy if (persistent && 2866fd5ae4ccSVladimir Sementsov-Ogievskiy !bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp)) 2867fd5ae4ccSVladimir Sementsov-Ogievskiy { 2868fd5ae4ccSVladimir Sementsov-Ogievskiy return; 2869fd5ae4ccSVladimir Sementsov-Ogievskiy } 2870fd5ae4ccSVladimir Sementsov-Ogievskiy 2871fd5ae4ccSVladimir Sementsov-Ogievskiy bitmap = bdrv_create_dirty_bitmap(bs, granularity, name, errp); 2872eb738bb5SVladimir Sementsov-Ogievskiy if (bitmap == NULL) { 2873eb738bb5SVladimir Sementsov-Ogievskiy return; 2874fd5ae4ccSVladimir Sementsov-Ogievskiy } 2875eb738bb5SVladimir Sementsov-Ogievskiy 2876a6e2ca5fSVladimir Sementsov-Ogievskiy if (disabled) { 2877a6e2ca5fSVladimir Sementsov-Ogievskiy bdrv_disable_dirty_bitmap(bitmap); 2878a6e2ca5fSVladimir Sementsov-Ogievskiy } 2879a6e2ca5fSVladimir Sementsov-Ogievskiy 2880eb738bb5SVladimir Sementsov-Ogievskiy bdrv_dirty_bitmap_set_persistance(bitmap, persistent); 2881341ebc2fSJohn Snow } 2882341ebc2fSJohn Snow 2883341ebc2fSJohn Snow void qmp_block_dirty_bitmap_remove(const char *node, const char *name, 2884341ebc2fSJohn Snow Error **errp) 2885341ebc2fSJohn Snow { 2886341ebc2fSJohn Snow BlockDriverState *bs; 2887341ebc2fSJohn Snow BdrvDirtyBitmap *bitmap; 28885c36c1afSVladimir Sementsov-Ogievskiy Error *local_err = NULL; 2889341ebc2fSJohn Snow 28902119882cSPaolo Bonzini bitmap = block_dirty_bitmap_lookup(node, name, &bs, errp); 2891341ebc2fSJohn Snow if (!bitmap || !bs) { 2892341ebc2fSJohn Snow return; 2893341ebc2fSJohn Snow } 2894341ebc2fSJohn Snow 2895993edc0cSJohn Snow if (bdrv_dirty_bitmap_user_locked(bitmap)) { 28969bd2b08fSJohn Snow error_setg(errp, 2897993edc0cSJohn Snow "Bitmap '%s' is currently in use by another operation and" 2898993edc0cSJohn Snow " cannot be removed", name); 28994f43e953SVladimir Sementsov-Ogievskiy return; 29009bd2b08fSJohn Snow } 29015c36c1afSVladimir Sementsov-Ogievskiy 29025c36c1afSVladimir Sementsov-Ogievskiy if (bdrv_dirty_bitmap_get_persistance(bitmap)) { 29035c36c1afSVladimir Sementsov-Ogievskiy bdrv_remove_persistent_dirty_bitmap(bs, name, &local_err); 29045c36c1afSVladimir Sementsov-Ogievskiy if (local_err != NULL) { 29055c36c1afSVladimir Sementsov-Ogievskiy error_propagate(errp, local_err); 29065c36c1afSVladimir Sementsov-Ogievskiy return; 29075c36c1afSVladimir Sementsov-Ogievskiy } 29085c36c1afSVladimir Sementsov-Ogievskiy } 29095c36c1afSVladimir Sementsov-Ogievskiy 2910341ebc2fSJohn Snow bdrv_release_dirty_bitmap(bs, bitmap); 2911341ebc2fSJohn Snow } 2912341ebc2fSJohn Snow 2913e74e6b78SJohn Snow /** 2914e74e6b78SJohn Snow * Completely clear a bitmap, for the purposes of synchronizing a bitmap 2915e74e6b78SJohn Snow * immediately after a full backup operation. 2916e74e6b78SJohn Snow */ 2917e74e6b78SJohn Snow void qmp_block_dirty_bitmap_clear(const char *node, const char *name, 2918e74e6b78SJohn Snow Error **errp) 2919e74e6b78SJohn Snow { 2920e74e6b78SJohn Snow BdrvDirtyBitmap *bitmap; 2921e74e6b78SJohn Snow BlockDriverState *bs; 2922e74e6b78SJohn Snow 29232119882cSPaolo Bonzini bitmap = block_dirty_bitmap_lookup(node, name, &bs, errp); 2924e74e6b78SJohn Snow if (!bitmap || !bs) { 2925e74e6b78SJohn Snow return; 2926e74e6b78SJohn Snow } 2927e74e6b78SJohn Snow 2928993edc0cSJohn Snow if (bdrv_dirty_bitmap_user_locked(bitmap)) { 2929e74e6b78SJohn Snow error_setg(errp, 2930993edc0cSJohn Snow "Bitmap '%s' is currently in use by another operation" 2931993edc0cSJohn Snow " and cannot be cleared", name); 29324f43e953SVladimir Sementsov-Ogievskiy return; 2933d6883bc9SVladimir Sementsov-Ogievskiy } else if (bdrv_dirty_bitmap_readonly(bitmap)) { 2934d6883bc9SVladimir Sementsov-Ogievskiy error_setg(errp, "Bitmap '%s' is readonly and cannot be cleared", name); 2935d6883bc9SVladimir Sementsov-Ogievskiy return; 2936e74e6b78SJohn Snow } 2937e74e6b78SJohn Snow 2938df9a681dSFam Zheng bdrv_clear_dirty_bitmap(bitmap, NULL); 2939e74e6b78SJohn Snow } 2940e74e6b78SJohn Snow 29415c5d2e50SVladimir Sementsov-Ogievskiy void qmp_x_block_dirty_bitmap_enable(const char *node, const char *name, 29425c5d2e50SVladimir Sementsov-Ogievskiy Error **errp) 29435c5d2e50SVladimir Sementsov-Ogievskiy { 29445c5d2e50SVladimir Sementsov-Ogievskiy BlockDriverState *bs; 29455c5d2e50SVladimir Sementsov-Ogievskiy BdrvDirtyBitmap *bitmap; 29465c5d2e50SVladimir Sementsov-Ogievskiy 29475c5d2e50SVladimir Sementsov-Ogievskiy bitmap = block_dirty_bitmap_lookup(node, name, &bs, errp); 29485c5d2e50SVladimir Sementsov-Ogievskiy if (!bitmap) { 29495c5d2e50SVladimir Sementsov-Ogievskiy return; 29505c5d2e50SVladimir Sementsov-Ogievskiy } 29515c5d2e50SVladimir Sementsov-Ogievskiy 2952b053bb55SJohn Snow if (bdrv_dirty_bitmap_user_locked(bitmap)) { 29535c5d2e50SVladimir Sementsov-Ogievskiy error_setg(errp, 2954b053bb55SJohn Snow "Bitmap '%s' is currently in use by another operation" 2955b053bb55SJohn Snow " and cannot be enabled", name); 29565c5d2e50SVladimir Sementsov-Ogievskiy return; 29575c5d2e50SVladimir Sementsov-Ogievskiy } 29585c5d2e50SVladimir Sementsov-Ogievskiy 29595c5d2e50SVladimir Sementsov-Ogievskiy bdrv_enable_dirty_bitmap(bitmap); 29605c5d2e50SVladimir Sementsov-Ogievskiy } 29615c5d2e50SVladimir Sementsov-Ogievskiy 29625c5d2e50SVladimir Sementsov-Ogievskiy void qmp_x_block_dirty_bitmap_disable(const char *node, const char *name, 29635c5d2e50SVladimir Sementsov-Ogievskiy Error **errp) 29645c5d2e50SVladimir Sementsov-Ogievskiy { 29655c5d2e50SVladimir Sementsov-Ogievskiy BlockDriverState *bs; 29665c5d2e50SVladimir Sementsov-Ogievskiy BdrvDirtyBitmap *bitmap; 29675c5d2e50SVladimir Sementsov-Ogievskiy 29685c5d2e50SVladimir Sementsov-Ogievskiy bitmap = block_dirty_bitmap_lookup(node, name, &bs, errp); 29695c5d2e50SVladimir Sementsov-Ogievskiy if (!bitmap) { 29705c5d2e50SVladimir Sementsov-Ogievskiy return; 29715c5d2e50SVladimir Sementsov-Ogievskiy } 29725c5d2e50SVladimir Sementsov-Ogievskiy 2973b053bb55SJohn Snow if (bdrv_dirty_bitmap_user_locked(bitmap)) { 29745c5d2e50SVladimir Sementsov-Ogievskiy error_setg(errp, 2975b053bb55SJohn Snow "Bitmap '%s' is currently in use by another operation" 2976b053bb55SJohn Snow " and cannot be disabled", name); 29775c5d2e50SVladimir Sementsov-Ogievskiy return; 29785c5d2e50SVladimir Sementsov-Ogievskiy } 29795c5d2e50SVladimir Sementsov-Ogievskiy 29805c5d2e50SVladimir Sementsov-Ogievskiy bdrv_disable_dirty_bitmap(bitmap); 29815c5d2e50SVladimir Sementsov-Ogievskiy } 29825c5d2e50SVladimir Sementsov-Ogievskiy 2983b598e531SVladimir Sementsov-Ogievskiy void qmp_x_block_dirty_bitmap_merge(const char *node, const char *dst_name, 2984b598e531SVladimir Sementsov-Ogievskiy const char *src_name, Error **errp) 2985b598e531SVladimir Sementsov-Ogievskiy { 2986b598e531SVladimir Sementsov-Ogievskiy BlockDriverState *bs; 2987b598e531SVladimir Sementsov-Ogievskiy BdrvDirtyBitmap *dst, *src; 2988b598e531SVladimir Sementsov-Ogievskiy 2989b598e531SVladimir Sementsov-Ogievskiy dst = block_dirty_bitmap_lookup(node, dst_name, &bs, errp); 2990b598e531SVladimir Sementsov-Ogievskiy if (!dst) { 2991b598e531SVladimir Sementsov-Ogievskiy return; 2992b598e531SVladimir Sementsov-Ogievskiy } 2993b598e531SVladimir Sementsov-Ogievskiy 2994b598e531SVladimir Sementsov-Ogievskiy src = bdrv_find_dirty_bitmap(bs, src_name); 2995b598e531SVladimir Sementsov-Ogievskiy if (!src) { 2996b598e531SVladimir Sementsov-Ogievskiy error_setg(errp, "Dirty bitmap '%s' not found", src_name); 2997b598e531SVladimir Sementsov-Ogievskiy return; 2998b598e531SVladimir Sementsov-Ogievskiy } 2999b598e531SVladimir Sementsov-Ogievskiy 3000fa000f2fSVladimir Sementsov-Ogievskiy bdrv_merge_dirty_bitmap(dst, src, NULL, errp); 3001b598e531SVladimir Sementsov-Ogievskiy } 3002b598e531SVladimir Sementsov-Ogievskiy 3003a3b52535SVladimir Sementsov-Ogievskiy BlockDirtyBitmapSha256 *qmp_x_debug_block_dirty_bitmap_sha256(const char *node, 3004a3b52535SVladimir Sementsov-Ogievskiy const char *name, 3005a3b52535SVladimir Sementsov-Ogievskiy Error **errp) 3006a3b52535SVladimir Sementsov-Ogievskiy { 3007a3b52535SVladimir Sementsov-Ogievskiy BdrvDirtyBitmap *bitmap; 3008a3b52535SVladimir Sementsov-Ogievskiy BlockDriverState *bs; 3009a3b52535SVladimir Sementsov-Ogievskiy BlockDirtyBitmapSha256 *ret = NULL; 3010a3b52535SVladimir Sementsov-Ogievskiy char *sha256; 3011a3b52535SVladimir Sementsov-Ogievskiy 3012a3b52535SVladimir Sementsov-Ogievskiy bitmap = block_dirty_bitmap_lookup(node, name, &bs, errp); 3013a3b52535SVladimir Sementsov-Ogievskiy if (!bitmap || !bs) { 3014a3b52535SVladimir Sementsov-Ogievskiy return NULL; 3015a3b52535SVladimir Sementsov-Ogievskiy } 3016a3b52535SVladimir Sementsov-Ogievskiy 3017a3b52535SVladimir Sementsov-Ogievskiy sha256 = bdrv_dirty_bitmap_sha256(bitmap, errp); 3018a3b52535SVladimir Sementsov-Ogievskiy if (sha256 == NULL) { 3019a3b52535SVladimir Sementsov-Ogievskiy return NULL; 3020a3b52535SVladimir Sementsov-Ogievskiy } 3021a3b52535SVladimir Sementsov-Ogievskiy 3022a3b52535SVladimir Sementsov-Ogievskiy ret = g_new(BlockDirtyBitmapSha256, 1); 3023a3b52535SVladimir Sementsov-Ogievskiy ret->sha256 = sha256; 3024a3b52535SVladimir Sementsov-Ogievskiy 3025a3b52535SVladimir Sementsov-Ogievskiy return ret; 3026a3b52535SVladimir Sementsov-Ogievskiy } 3027a3b52535SVladimir Sementsov-Ogievskiy 3028072ebe6bSMarkus Armbruster void hmp_drive_del(Monitor *mon, const QDict *qdict) 30299063f814SRyan Harper { 30309063f814SRyan Harper const char *id = qdict_get_str(qdict, "id"); 30317e7d56d9SMarkus Armbruster BlockBackend *blk; 30329063f814SRyan Harper BlockDriverState *bs; 30338ad4202bSStefan Hajnoczi AioContext *aio_context; 30343718d8abSFam Zheng Error *local_err = NULL; 30359063f814SRyan Harper 30362073d410SKevin Wolf bs = bdrv_find_node(id); 30372073d410SKevin Wolf if (bs) { 303879b7a77eSMarkus Armbruster qmp_blockdev_del(id, &local_err); 30392073d410SKevin Wolf if (local_err) { 30402073d410SKevin Wolf error_report_err(local_err); 30412073d410SKevin Wolf } 30422073d410SKevin Wolf return; 30432073d410SKevin Wolf } 30442073d410SKevin Wolf 30457e7d56d9SMarkus Armbruster blk = blk_by_name(id); 30467e7d56d9SMarkus Armbruster if (!blk) { 3047b1422f20SMarkus Armbruster error_report("Device '%s' not found", id); 3048072ebe6bSMarkus Armbruster return; 30499063f814SRyan Harper } 30508ad4202bSStefan Hajnoczi 305126f8b3a8SMarkus Armbruster if (!blk_legacy_dinfo(blk)) { 305248f364ddSMarkus Armbruster error_report("Deleting device added with blockdev-add" 305348f364ddSMarkus Armbruster " is not supported"); 3054072ebe6bSMarkus Armbruster return; 305548f364ddSMarkus Armbruster } 305648f364ddSMarkus Armbruster 30575433c24fSMax Reitz aio_context = blk_get_aio_context(blk); 30588ad4202bSStefan Hajnoczi aio_context_acquire(aio_context); 30598ad4202bSStefan Hajnoczi 30605433c24fSMax Reitz bs = blk_bs(blk); 30615433c24fSMax Reitz if (bs) { 30623718d8abSFam Zheng if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_DRIVE_DEL, &local_err)) { 3063565f65d2SMarkus Armbruster error_report_err(local_err); 30648ad4202bSStefan Hajnoczi aio_context_release(aio_context); 3065072ebe6bSMarkus Armbruster return; 30668591675fSMarcelo Tosatti } 30679063f814SRyan Harper 3068938abd43SMax Reitz blk_remove_bs(blk); 30695433c24fSMax Reitz } 30709063f814SRyan Harper 30717c735873SMax Reitz /* Make the BlockBackend and the attached BlockDriverState anonymous */ 3072efaa7c4eSMax Reitz monitor_remove_blk(blk); 3073efaa7c4eSMax Reitz 30747c735873SMax Reitz /* If this BlockBackend has a device attached to it, its refcount will be 30757c735873SMax Reitz * decremented when the device is removed; otherwise we have to do so here. 3076d22b2f41SRyan Harper */ 3077a7f53e26SMarkus Armbruster if (blk_get_attached_dev(blk)) { 3078293c51a6SStefan Hajnoczi /* Further I/O must not pause the guest */ 3079373340b2SMax Reitz blk_set_on_error(blk, BLOCKDEV_ON_ERROR_REPORT, 3080293c51a6SStefan Hajnoczi BLOCKDEV_ON_ERROR_REPORT); 3081d22b2f41SRyan Harper } else { 3082b9fe8a7aSMarkus Armbruster blk_unref(blk); 3083d22b2f41SRyan Harper } 30849063f814SRyan Harper 30858ad4202bSStefan Hajnoczi aio_context_release(aio_context); 30869063f814SRyan Harper } 30876d4a2b3aSChristoph Hellwig 30883b1dbd11SBenoît Canet void qmp_block_resize(bool has_device, const char *device, 30893b1dbd11SBenoît Canet bool has_node_name, const char *node_name, 30903b1dbd11SBenoît Canet int64_t size, Error **errp) 30916d4a2b3aSChristoph Hellwig { 30923b1dbd11SBenoît Canet Error *local_err = NULL; 30937dad9ee6SKevin Wolf BlockBackend *blk = NULL; 30946d4a2b3aSChristoph Hellwig BlockDriverState *bs; 3095927e0e76SStefan Hajnoczi AioContext *aio_context; 30968732901eSKevin Wolf int ret; 30976d4a2b3aSChristoph Hellwig 30983b1dbd11SBenoît Canet bs = bdrv_lookup_bs(has_device ? device : NULL, 30993b1dbd11SBenoît Canet has_node_name ? node_name : NULL, 31003b1dbd11SBenoît Canet &local_err); 310184d18f06SMarkus Armbruster if (local_err) { 31023b1dbd11SBenoît Canet error_propagate(errp, local_err); 31033b1dbd11SBenoît Canet return; 31043b1dbd11SBenoît Canet } 31053b1dbd11SBenoît Canet 3106927e0e76SStefan Hajnoczi aio_context = bdrv_get_aio_context(bs); 3107927e0e76SStefan Hajnoczi aio_context_acquire(aio_context); 3108927e0e76SStefan Hajnoczi 31093b1dbd11SBenoît Canet if (!bdrv_is_first_non_filter(bs)) { 3110c6bd8c70SMarkus Armbruster error_setg(errp, QERR_FEATURE_DISABLED, "resize"); 3111927e0e76SStefan Hajnoczi goto out; 31126d4a2b3aSChristoph Hellwig } 31136d4a2b3aSChristoph Hellwig 31146d4a2b3aSChristoph Hellwig if (size < 0) { 3115c6bd8c70SMarkus Armbruster error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "size", "a >0 size"); 3116927e0e76SStefan Hajnoczi goto out; 31176d4a2b3aSChristoph Hellwig } 31186d4a2b3aSChristoph Hellwig 31199c75e168SJeff Cody if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_RESIZE, NULL)) { 3120c6bd8c70SMarkus Armbruster error_setg(errp, QERR_DEVICE_IN_USE, device); 3121927e0e76SStefan Hajnoczi goto out; 31229c75e168SJeff Cody } 31239c75e168SJeff Cody 31246d0eb64dSKevin Wolf blk = blk_new(BLK_PERM_RESIZE, BLK_PERM_ALL); 3125d7086422SKevin Wolf ret = blk_insert_bs(blk, bs, errp); 3126d7086422SKevin Wolf if (ret < 0) { 3127d7086422SKevin Wolf goto out; 3128d7086422SKevin Wolf } 31297dad9ee6SKevin Wolf 3130698bdfa0SJohn Snow bdrv_drained_begin(bs); 31313a691c50SMax Reitz ret = blk_truncate(blk, size, PREALLOC_MODE_OFF, errp); 3132698bdfa0SJohn Snow bdrv_drained_end(bs); 3133927e0e76SStefan Hajnoczi 3134927e0e76SStefan Hajnoczi out: 31357dad9ee6SKevin Wolf blk_unref(blk); 3136927e0e76SStefan Hajnoczi aio_context_release(aio_context); 31376d4a2b3aSChristoph Hellwig } 313812bd451fSStefan Hajnoczi 31392323322eSAlberto Garcia void qmp_block_stream(bool has_job_id, const char *job_id, const char *device, 314013d8cc51SJeff Cody bool has_base, const char *base, 3141312fe09cSAlberto Garcia bool has_base_node, const char *base_node, 314213d8cc51SJeff Cody bool has_backing_file, const char *backing_file, 314313d8cc51SJeff Cody bool has_speed, int64_t speed, 31441d809098SPaolo Bonzini bool has_on_error, BlockdevOnError on_error, 3145241ca1abSJohn Snow bool has_auto_finalize, bool auto_finalize, 3146241ca1abSJohn Snow bool has_auto_dismiss, bool auto_dismiss, 31471d809098SPaolo Bonzini Error **errp) 314812bd451fSStefan Hajnoczi { 3149554b6147SAlberto Garcia BlockDriverState *bs, *iter; 3150c8c3080fSMarcelo Tosatti BlockDriverState *base_bs = NULL; 3151f3e69bebSStefan Hajnoczi AioContext *aio_context; 3152fd7f8c65SStefan Hajnoczi Error *local_err = NULL; 315313d8cc51SJeff Cody const char *base_name = NULL; 3154cf6320dfSJohn Snow int job_flags = JOB_DEFAULT; 315512bd451fSStefan Hajnoczi 31561d809098SPaolo Bonzini if (!has_on_error) { 31571d809098SPaolo Bonzini on_error = BLOCKDEV_ON_ERROR_REPORT; 31581d809098SPaolo Bonzini } 31591d809098SPaolo Bonzini 3160554b6147SAlberto Garcia bs = bdrv_lookup_bs(device, device, errp); 3161b6c1bae5SKevin Wolf if (!bs) { 316212bd451fSStefan Hajnoczi return; 316312bd451fSStefan Hajnoczi } 316412bd451fSStefan Hajnoczi 3165b6c1bae5SKevin Wolf aio_context = bdrv_get_aio_context(bs); 3166f3e69bebSStefan Hajnoczi aio_context_acquire(aio_context); 3167f3e69bebSStefan Hajnoczi 3168312fe09cSAlberto Garcia if (has_base && has_base_node) { 3169312fe09cSAlberto Garcia error_setg(errp, "'base' and 'base-node' cannot be specified " 3170312fe09cSAlberto Garcia "at the same time"); 3171312fe09cSAlberto Garcia goto out; 3172312fe09cSAlberto Garcia } 3173312fe09cSAlberto Garcia 317413d8cc51SJeff Cody if (has_base) { 3175c8c3080fSMarcelo Tosatti base_bs = bdrv_find_backing_image(bs, base); 3176c8c3080fSMarcelo Tosatti if (base_bs == NULL) { 3177c6bd8c70SMarkus Armbruster error_setg(errp, QERR_BASE_NOT_FOUND, base); 3178f3e69bebSStefan Hajnoczi goto out; 317912bd451fSStefan Hajnoczi } 3180f3e69bebSStefan Hajnoczi assert(bdrv_get_aio_context(base_bs) == aio_context); 318113d8cc51SJeff Cody base_name = base; 3182c8c3080fSMarcelo Tosatti } 318312bd451fSStefan Hajnoczi 3184312fe09cSAlberto Garcia if (has_base_node) { 3185312fe09cSAlberto Garcia base_bs = bdrv_lookup_bs(NULL, base_node, errp); 3186312fe09cSAlberto Garcia if (!base_bs) { 3187312fe09cSAlberto Garcia goto out; 3188312fe09cSAlberto Garcia } 3189312fe09cSAlberto Garcia if (bs == base_bs || !bdrv_chain_contains(bs, base_bs)) { 3190312fe09cSAlberto Garcia error_setg(errp, "Node '%s' is not a backing image of '%s'", 3191312fe09cSAlberto Garcia base_node, device); 3192312fe09cSAlberto Garcia goto out; 3193312fe09cSAlberto Garcia } 3194312fe09cSAlberto Garcia assert(bdrv_get_aio_context(base_bs) == aio_context); 3195312fe09cSAlberto Garcia base_name = base_bs->filename; 3196312fe09cSAlberto Garcia } 3197312fe09cSAlberto Garcia 3198554b6147SAlberto Garcia /* Check for op blockers in the whole chain between bs and base */ 3199554b6147SAlberto Garcia for (iter = bs; iter && iter != base_bs; iter = backing_bs(iter)) { 3200554b6147SAlberto Garcia if (bdrv_op_is_blocked(iter, BLOCK_OP_TYPE_STREAM, errp)) { 3201554b6147SAlberto Garcia goto out; 3202554b6147SAlberto Garcia } 3203554b6147SAlberto Garcia } 3204554b6147SAlberto Garcia 320513d8cc51SJeff Cody /* if we are streaming the entire chain, the result will have no backing 320613d8cc51SJeff Cody * file, and specifying one is therefore an error */ 320713d8cc51SJeff Cody if (base_bs == NULL && has_backing_file) { 320813d8cc51SJeff Cody error_setg(errp, "backing file specified, but streaming the " 320913d8cc51SJeff Cody "entire chain"); 3210f3e69bebSStefan Hajnoczi goto out; 321113d8cc51SJeff Cody } 321213d8cc51SJeff Cody 321313d8cc51SJeff Cody /* backing_file string overrides base bs filename */ 321413d8cc51SJeff Cody base_name = has_backing_file ? backing_file : base_name; 321513d8cc51SJeff Cody 3216241ca1abSJohn Snow if (has_auto_finalize && !auto_finalize) { 3217241ca1abSJohn Snow job_flags |= JOB_MANUAL_FINALIZE; 3218241ca1abSJohn Snow } 3219241ca1abSJohn Snow if (has_auto_dismiss && !auto_dismiss) { 3220241ca1abSJohn Snow job_flags |= JOB_MANUAL_DISMISS; 3221241ca1abSJohn Snow } 3222241ca1abSJohn Snow 32232323322eSAlberto Garcia stream_start(has_job_id ? job_id : NULL, bs, base_bs, base_name, 3224cf6320dfSJohn Snow job_flags, has_speed ? speed : 0, on_error, &local_err); 322584d18f06SMarkus Armbruster if (local_err) { 3226fd7f8c65SStefan Hajnoczi error_propagate(errp, local_err); 3227f3e69bebSStefan Hajnoczi goto out; 322812bd451fSStefan Hajnoczi } 322912bd451fSStefan Hajnoczi 323012bd451fSStefan Hajnoczi trace_qmp_block_stream(bs, bs->job); 3231f3e69bebSStefan Hajnoczi 3232f3e69bebSStefan Hajnoczi out: 3233f3e69bebSStefan Hajnoczi aio_context_release(aio_context); 323412bd451fSStefan Hajnoczi } 32352d47c6e9SStefan Hajnoczi 3236fd62c609SAlberto Garcia void qmp_block_commit(bool has_job_id, const char *job_id, const char *device, 32373c605f40SKevin Wolf bool has_base_node, const char *base_node, 32387676e2c5SJeff Cody bool has_base, const char *base, 32393c605f40SKevin Wolf bool has_top_node, const char *top_node, 32407676e2c5SJeff Cody bool has_top, const char *top, 324154e26900SJeff Cody bool has_backing_file, const char *backing_file, 3242ed61fc10SJeff Cody bool has_speed, int64_t speed, 32430db832f4SKevin Wolf bool has_filter_node_name, const char *filter_node_name, 324496fbf534SJohn Snow bool has_auto_finalize, bool auto_finalize, 324596fbf534SJohn Snow bool has_auto_dismiss, bool auto_dismiss, 3246ed61fc10SJeff Cody Error **errp) 3247ed61fc10SJeff Cody { 3248ed61fc10SJeff Cody BlockDriverState *bs; 3249058223a6SAlberto Garcia BlockDriverState *iter; 3250ed61fc10SJeff Cody BlockDriverState *base_bs, *top_bs; 32519e85cd5cSStefan Hajnoczi AioContext *aio_context; 3252ed61fc10SJeff Cody Error *local_err = NULL; 3253ed61fc10SJeff Cody /* This will be part of the QMP command, if/when the 3254ed61fc10SJeff Cody * BlockdevOnError change for blkmirror makes it in 3255ed61fc10SJeff Cody */ 325692aa5c6dSPaolo Bonzini BlockdevOnError on_error = BLOCKDEV_ON_ERROR_REPORT; 32575360782dSJohn Snow int job_flags = JOB_DEFAULT; 3258ed61fc10SJeff Cody 325954504663SMax Reitz if (!has_speed) { 326054504663SMax Reitz speed = 0; 326154504663SMax Reitz } 32620db832f4SKevin Wolf if (!has_filter_node_name) { 32630db832f4SKevin Wolf filter_node_name = NULL; 32640db832f4SKevin Wolf } 326596fbf534SJohn Snow if (has_auto_finalize && !auto_finalize) { 326696fbf534SJohn Snow job_flags |= JOB_MANUAL_FINALIZE; 326796fbf534SJohn Snow } 326896fbf534SJohn Snow if (has_auto_dismiss && !auto_dismiss) { 326996fbf534SJohn Snow job_flags |= JOB_MANUAL_DISMISS; 327096fbf534SJohn Snow } 327154504663SMax Reitz 32727676e2c5SJeff Cody /* Important Note: 32737676e2c5SJeff Cody * libvirt relies on the DeviceNotFound error class in order to probe for 32747676e2c5SJeff Cody * live commit feature versions; for this to work, we must make sure to 32757676e2c5SJeff Cody * perform the device lookup before any generic errors that may occur in a 32767676e2c5SJeff Cody * scenario in which all optional arguments are omitted. */ 32771d13b167SKevin Wolf bs = qmp_get_root_bs(device, &local_err); 32781d13b167SKevin Wolf if (!bs) { 32791d13b167SKevin Wolf bs = bdrv_lookup_bs(device, device, NULL); 32801d13b167SKevin Wolf if (!bs) { 32811d13b167SKevin Wolf error_free(local_err); 328275158ebbSMarkus Armbruster error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, 328375158ebbSMarkus Armbruster "Device '%s' not found", device); 32841d13b167SKevin Wolf } else { 32851d13b167SKevin Wolf error_propagate(errp, local_err); 32861d13b167SKevin Wolf } 3287ed61fc10SJeff Cody return; 3288ed61fc10SJeff Cody } 3289ed61fc10SJeff Cody 32901d13b167SKevin Wolf aio_context = bdrv_get_aio_context(bs); 32919e85cd5cSStefan Hajnoczi aio_context_acquire(aio_context); 32929e85cd5cSStefan Hajnoczi 3293bb00021dSFam Zheng if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_COMMIT_SOURCE, errp)) { 32949e85cd5cSStefan Hajnoczi goto out; 3295628ff683SFam Zheng } 3296628ff683SFam Zheng 3297ed61fc10SJeff Cody /* default top_bs is the active layer */ 3298ed61fc10SJeff Cody top_bs = bs; 3299ed61fc10SJeff Cody 33003c605f40SKevin Wolf if (has_top_node && has_top) { 33013c605f40SKevin Wolf error_setg(errp, "'top-node' and 'top' are mutually exclusive"); 33023c605f40SKevin Wolf goto out; 33033c605f40SKevin Wolf } else if (has_top_node) { 33043c605f40SKevin Wolf top_bs = bdrv_lookup_bs(NULL, top_node, errp); 33053c605f40SKevin Wolf if (top_bs == NULL) { 33063c605f40SKevin Wolf goto out; 33073c605f40SKevin Wolf } 33083c605f40SKevin Wolf if (!bdrv_chain_contains(bs, top_bs)) { 33093c605f40SKevin Wolf error_setg(errp, "'%s' is not in this backing file chain", 33103c605f40SKevin Wolf top_node); 33113c605f40SKevin Wolf goto out; 33123c605f40SKevin Wolf } 33133c605f40SKevin Wolf } else if (has_top && top) { 3314ed61fc10SJeff Cody if (strcmp(bs->filename, top) != 0) { 3315ed61fc10SJeff Cody top_bs = bdrv_find_backing_image(bs, top); 3316ed61fc10SJeff Cody } 3317ed61fc10SJeff Cody } 3318ed61fc10SJeff Cody 3319ed61fc10SJeff Cody if (top_bs == NULL) { 3320ed61fc10SJeff Cody error_setg(errp, "Top image file %s not found", top ? top : "NULL"); 33219e85cd5cSStefan Hajnoczi goto out; 3322ed61fc10SJeff Cody } 3323ed61fc10SJeff Cody 33249e85cd5cSStefan Hajnoczi assert(bdrv_get_aio_context(top_bs) == aio_context); 33259e85cd5cSStefan Hajnoczi 33263c605f40SKevin Wolf if (has_base_node && has_base) { 33273c605f40SKevin Wolf error_setg(errp, "'base-node' and 'base' are mutually exclusive"); 33283c605f40SKevin Wolf goto out; 33293c605f40SKevin Wolf } else if (has_base_node) { 33303c605f40SKevin Wolf base_bs = bdrv_lookup_bs(NULL, base_node, errp); 33313c605f40SKevin Wolf if (base_bs == NULL) { 33323c605f40SKevin Wolf goto out; 33333c605f40SKevin Wolf } 33343c605f40SKevin Wolf if (!bdrv_chain_contains(top_bs, base_bs)) { 33353c605f40SKevin Wolf error_setg(errp, "'%s' is not in this backing file chain", 33363c605f40SKevin Wolf base_node); 33373c605f40SKevin Wolf goto out; 33383c605f40SKevin Wolf } 33393c605f40SKevin Wolf } else if (has_base && base) { 3340d5208c45SJeff Cody base_bs = bdrv_find_backing_image(top_bs, base); 3341d5208c45SJeff Cody } else { 3342d5208c45SJeff Cody base_bs = bdrv_find_base(top_bs); 3343d5208c45SJeff Cody } 3344d5208c45SJeff Cody 3345d5208c45SJeff Cody if (base_bs == NULL) { 3346c6bd8c70SMarkus Armbruster error_setg(errp, QERR_BASE_NOT_FOUND, base ? base : "NULL"); 33479e85cd5cSStefan Hajnoczi goto out; 3348d5208c45SJeff Cody } 3349d5208c45SJeff Cody 33509e85cd5cSStefan Hajnoczi assert(bdrv_get_aio_context(base_bs) == aio_context); 33519e85cd5cSStefan Hajnoczi 3352058223a6SAlberto Garcia for (iter = top_bs; iter != backing_bs(base_bs); iter = backing_bs(iter)) { 3353058223a6SAlberto Garcia if (bdrv_op_is_blocked(iter, BLOCK_OP_TYPE_COMMIT_TARGET, errp)) { 3354bb00021dSFam Zheng goto out; 3355bb00021dSFam Zheng } 3356058223a6SAlberto Garcia } 3357bb00021dSFam Zheng 33587676e2c5SJeff Cody /* Do not allow attempts to commit an image into itself */ 33597676e2c5SJeff Cody if (top_bs == base_bs) { 33607676e2c5SJeff Cody error_setg(errp, "cannot commit an image into itself"); 33619e85cd5cSStefan Hajnoczi goto out; 33627676e2c5SJeff Cody } 33637676e2c5SJeff Cody 336420a63d2cSFam Zheng if (top_bs == bs) { 336554e26900SJeff Cody if (has_backing_file) { 336654e26900SJeff Cody error_setg(errp, "'backing-file' specified," 336754e26900SJeff Cody " but 'top' is the active layer"); 33689e85cd5cSStefan Hajnoczi goto out; 336954e26900SJeff Cody } 337047970dfbSJohn Snow commit_active_start(has_job_id ? job_id : NULL, bs, base_bs, 33715360782dSJohn Snow job_flags, speed, on_error, 337278bbd910SFam Zheng filter_node_name, NULL, NULL, false, &local_err); 337320a63d2cSFam Zheng } else { 3374058223a6SAlberto Garcia BlockDriverState *overlay_bs = bdrv_find_overlay(bs, top_bs); 3375058223a6SAlberto Garcia if (bdrv_op_is_blocked(overlay_bs, BLOCK_OP_TYPE_COMMIT_TARGET, errp)) { 3376058223a6SAlberto Garcia goto out; 3377058223a6SAlberto Garcia } 33785360782dSJohn Snow commit_start(has_job_id ? job_id : NULL, bs, base_bs, top_bs, job_flags, 33795360782dSJohn Snow speed, on_error, has_backing_file ? backing_file : NULL, 33800db832f4SKevin Wolf filter_node_name, &local_err); 338120a63d2cSFam Zheng } 3382ed61fc10SJeff Cody if (local_err != NULL) { 3383ed61fc10SJeff Cody error_propagate(errp, local_err); 33849e85cd5cSStefan Hajnoczi goto out; 3385ed61fc10SJeff Cody } 33869e85cd5cSStefan Hajnoczi 33879e85cd5cSStefan Hajnoczi out: 33889e85cd5cSStefan Hajnoczi aio_context_release(aio_context); 3389ed61fc10SJeff Cody } 3390ed61fc10SJeff Cody 339162c9e416SKevin Wolf static BlockJob *do_drive_backup(DriveBackup *backup, JobTxn *txn, 3392111049a4SJohn Snow Error **errp) 339399a9addfSStefan Hajnoczi { 339499a9addfSStefan Hajnoczi BlockDriverState *bs; 339599a9addfSStefan Hajnoczi BlockDriverState *target_bs; 3396fc5d3f84SIan Main BlockDriverState *source = NULL; 3397111049a4SJohn Snow BlockJob *job = NULL; 3398d58d8453SJohn Snow BdrvDirtyBitmap *bmap = NULL; 3399761731b1SStefan Hajnoczi AioContext *aio_context; 3400e6641719SMax Reitz QDict *options = NULL; 340199a9addfSStefan Hajnoczi Error *local_err = NULL; 3402bb02b65cSKevin Wolf int flags, job_flags = JOB_DEFAULT; 340399a9addfSStefan Hajnoczi int64_t size; 3404fc0932fdSFam Zheng bool set_backing_hd = false; 340599a9addfSStefan Hajnoczi 340681206a89SPavel Butsykin if (!backup->has_speed) { 340781206a89SPavel Butsykin backup->speed = 0; 340899a9addfSStefan Hajnoczi } 340981206a89SPavel Butsykin if (!backup->has_on_source_error) { 341081206a89SPavel Butsykin backup->on_source_error = BLOCKDEV_ON_ERROR_REPORT; 341199a9addfSStefan Hajnoczi } 341281206a89SPavel Butsykin if (!backup->has_on_target_error) { 341381206a89SPavel Butsykin backup->on_target_error = BLOCKDEV_ON_ERROR_REPORT; 341499a9addfSStefan Hajnoczi } 341581206a89SPavel Butsykin if (!backup->has_mode) { 341681206a89SPavel Butsykin backup->mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS; 341781206a89SPavel Butsykin } 341881206a89SPavel Butsykin if (!backup->has_job_id) { 341981206a89SPavel Butsykin backup->job_id = NULL; 342099a9addfSStefan Hajnoczi } 3421b40dacdcSJohn Snow if (!backup->has_auto_finalize) { 3422b40dacdcSJohn Snow backup->auto_finalize = true; 3423b40dacdcSJohn Snow } 3424b40dacdcSJohn Snow if (!backup->has_auto_dismiss) { 3425b40dacdcSJohn Snow backup->auto_dismiss = true; 3426b40dacdcSJohn Snow } 342713b9414bSPavel Butsykin if (!backup->has_compress) { 342813b9414bSPavel Butsykin backup->compress = false; 342913b9414bSPavel Butsykin } 343099a9addfSStefan Hajnoczi 343181206a89SPavel Butsykin bs = qmp_get_root_bs(backup->device, errp); 3432b7e4fa22SKevin Wolf if (!bs) { 3433111049a4SJohn Snow return NULL; 343499a9addfSStefan Hajnoczi } 343599a9addfSStefan Hajnoczi 3436b7e4fa22SKevin Wolf aio_context = bdrv_get_aio_context(bs); 3437761731b1SStefan Hajnoczi aio_context_acquire(aio_context); 3438761731b1SStefan Hajnoczi 343981206a89SPavel Butsykin if (!backup->has_format) { 344081206a89SPavel Butsykin backup->format = backup->mode == NEW_IMAGE_MODE_EXISTING ? 344181206a89SPavel Butsykin NULL : (char*) bs->drv->format_name; 344299a9addfSStefan Hajnoczi } 344399a9addfSStefan Hajnoczi 3444c29c1dd3SFam Zheng /* Early check to avoid creating target */ 34453718d8abSFam Zheng if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_BACKUP_SOURCE, errp)) { 3446761731b1SStefan Hajnoczi goto out; 344799a9addfSStefan Hajnoczi } 344899a9addfSStefan Hajnoczi 344961de4c68SKevin Wolf flags = bs->open_flags | BDRV_O_RDWR; 345099a9addfSStefan Hajnoczi 3451fc5d3f84SIan Main /* See if we have a backing HD we can use to create our new image 3452fc5d3f84SIan Main * on top of. */ 345381206a89SPavel Butsykin if (backup->sync == MIRROR_SYNC_MODE_TOP) { 3454760e0063SKevin Wolf source = backing_bs(bs); 3455fc5d3f84SIan Main if (!source) { 345681206a89SPavel Butsykin backup->sync = MIRROR_SYNC_MODE_FULL; 3457fc5d3f84SIan Main } 3458fc5d3f84SIan Main } 345981206a89SPavel Butsykin if (backup->sync == MIRROR_SYNC_MODE_NONE) { 3460fc5d3f84SIan Main source = bs; 3461fc0932fdSFam Zheng flags |= BDRV_O_NO_BACKING; 3462fc0932fdSFam Zheng set_backing_hd = true; 3463fc5d3f84SIan Main } 3464fc5d3f84SIan Main 346599a9addfSStefan Hajnoczi size = bdrv_getlength(bs); 346699a9addfSStefan Hajnoczi if (size < 0) { 346799a9addfSStefan Hajnoczi error_setg_errno(errp, -size, "bdrv_getlength failed"); 3468761731b1SStefan Hajnoczi goto out; 346999a9addfSStefan Hajnoczi } 347099a9addfSStefan Hajnoczi 347181206a89SPavel Butsykin if (backup->mode != NEW_IMAGE_MODE_EXISTING) { 347281206a89SPavel Butsykin assert(backup->format); 3473fc5d3f84SIan Main if (source) { 347481206a89SPavel Butsykin bdrv_img_create(backup->target, backup->format, source->filename, 3475fc5d3f84SIan Main source->drv->format_name, NULL, 34769217283dSFam Zheng size, flags, false, &local_err); 3477fc5d3f84SIan Main } else { 347881206a89SPavel Butsykin bdrv_img_create(backup->target, backup->format, NULL, NULL, NULL, 34799217283dSFam Zheng size, flags, false, &local_err); 3480fc5d3f84SIan Main } 348199a9addfSStefan Hajnoczi } 348299a9addfSStefan Hajnoczi 348384d18f06SMarkus Armbruster if (local_err) { 348499a9addfSStefan Hajnoczi error_propagate(errp, local_err); 3485761731b1SStefan Hajnoczi goto out; 348699a9addfSStefan Hajnoczi } 348799a9addfSStefan Hajnoczi 348881206a89SPavel Butsykin if (backup->format) { 3489fc0932fdSFam Zheng if (!options) { 3490e6641719SMax Reitz options = qdict_new(); 3491fc0932fdSFam Zheng } 349246f5ac20SEric Blake qdict_put_str(options, "driver", backup->format); 3493e6641719SMax Reitz } 3494e6641719SMax Reitz 349581206a89SPavel Butsykin target_bs = bdrv_open(backup->target, NULL, options, flags, errp); 34965b363937SMax Reitz if (!target_bs) { 3497761731b1SStefan Hajnoczi goto out; 349899a9addfSStefan Hajnoczi } 349999a9addfSStefan Hajnoczi 3500761731b1SStefan Hajnoczi bdrv_set_aio_context(target_bs, aio_context); 3501761731b1SStefan Hajnoczi 3502fc0932fdSFam Zheng if (set_backing_hd) { 3503fc0932fdSFam Zheng bdrv_set_backing_hd(target_bs, source, &local_err); 3504fc0932fdSFam Zheng if (local_err) { 3505fc0932fdSFam Zheng bdrv_unref(target_bs); 3506fc0932fdSFam Zheng goto out; 3507fc0932fdSFam Zheng } 3508fc0932fdSFam Zheng } 3509fc0932fdSFam Zheng 351081206a89SPavel Butsykin if (backup->has_bitmap) { 351181206a89SPavel Butsykin bmap = bdrv_find_dirty_bitmap(bs, backup->bitmap); 3512d58d8453SJohn Snow if (!bmap) { 351381206a89SPavel Butsykin error_setg(errp, "Bitmap '%s' could not be found", backup->bitmap); 35140702d3d8SMax Reitz bdrv_unref(target_bs); 3515d58d8453SJohn Snow goto out; 3516d58d8453SJohn Snow } 3517b27a6b8bSJohn Snow if (bdrv_dirty_bitmap_user_locked(bmap)) { 35184f43e953SVladimir Sementsov-Ogievskiy error_setg(errp, 3519b27a6b8bSJohn Snow "Bitmap '%s' is currently in use by another operation" 3520b27a6b8bSJohn Snow " and cannot be used for backup", backup->bitmap); 35214f43e953SVladimir Sementsov-Ogievskiy goto out; 35224f43e953SVladimir Sementsov-Ogievskiy } 3523d58d8453SJohn Snow } 3524b40dacdcSJohn Snow if (!backup->auto_finalize) { 3525bb02b65cSKevin Wolf job_flags |= JOB_MANUAL_FINALIZE; 3526b40dacdcSJohn Snow } 3527b40dacdcSJohn Snow if (!backup->auto_dismiss) { 3528bb02b65cSKevin Wolf job_flags |= JOB_MANUAL_DISMISS; 3529b40dacdcSJohn Snow } 3530d58d8453SJohn Snow 3531111049a4SJohn Snow job = backup_job_create(backup->job_id, bs, target_bs, backup->speed, 3532111049a4SJohn Snow backup->sync, bmap, backup->compress, 3533111049a4SJohn Snow backup->on_source_error, backup->on_target_error, 3534b40dacdcSJohn Snow job_flags, NULL, NULL, txn, &local_err); 35354f6fd349SFam Zheng bdrv_unref(target_bs); 35365c438bc6SKevin Wolf if (local_err != NULL) { 353799a9addfSStefan Hajnoczi error_propagate(errp, local_err); 3538761731b1SStefan Hajnoczi goto out; 353999a9addfSStefan Hajnoczi } 3540761731b1SStefan Hajnoczi 3541761731b1SStefan Hajnoczi out: 3542761731b1SStefan Hajnoczi aio_context_release(aio_context); 3543111049a4SJohn Snow return job; 354499a9addfSStefan Hajnoczi } 354599a9addfSStefan Hajnoczi 354681206a89SPavel Butsykin void qmp_drive_backup(DriveBackup *arg, Error **errp) 354778f51fdeSJohn Snow { 3548111049a4SJohn Snow 3549111049a4SJohn Snow BlockJob *job; 3550111049a4SJohn Snow job = do_drive_backup(arg, NULL, errp); 3551111049a4SJohn Snow if (job) { 3552da01ff7fSKevin Wolf job_start(&job->job); 3553111049a4SJohn Snow } 355478f51fdeSJohn Snow } 355578f51fdeSJohn Snow 3556c13163fbSBenoît Canet BlockDeviceInfoList *qmp_query_named_block_nodes(Error **errp) 3557c13163fbSBenoît Canet { 3558d5a8ee60SAlberto Garcia return bdrv_named_nodes_list(errp); 3559c13163fbSBenoît Canet } 3560c13163fbSBenoît Canet 356162c9e416SKevin Wolf BlockJob *do_blockdev_backup(BlockdevBackup *backup, JobTxn *txn, 3562111049a4SJohn Snow Error **errp) 3563c29c1dd3SFam Zheng { 3564c29c1dd3SFam Zheng BlockDriverState *bs; 3565c29c1dd3SFam Zheng BlockDriverState *target_bs; 3566c29c1dd3SFam Zheng Error *local_err = NULL; 3567945c1ee0SJohn Snow BdrvDirtyBitmap *bmap = NULL; 3568c29c1dd3SFam Zheng AioContext *aio_context; 3569111049a4SJohn Snow BlockJob *job = NULL; 3570bb02b65cSKevin Wolf int job_flags = JOB_DEFAULT; 3571c29c1dd3SFam Zheng 3572dc7a4a9eSPavel Butsykin if (!backup->has_speed) { 3573dc7a4a9eSPavel Butsykin backup->speed = 0; 3574c29c1dd3SFam Zheng } 3575dc7a4a9eSPavel Butsykin if (!backup->has_on_source_error) { 3576dc7a4a9eSPavel Butsykin backup->on_source_error = BLOCKDEV_ON_ERROR_REPORT; 3577c29c1dd3SFam Zheng } 3578dc7a4a9eSPavel Butsykin if (!backup->has_on_target_error) { 3579dc7a4a9eSPavel Butsykin backup->on_target_error = BLOCKDEV_ON_ERROR_REPORT; 3580dc7a4a9eSPavel Butsykin } 3581dc7a4a9eSPavel Butsykin if (!backup->has_job_id) { 3582dc7a4a9eSPavel Butsykin backup->job_id = NULL; 3583c29c1dd3SFam Zheng } 3584b40dacdcSJohn Snow if (!backup->has_auto_finalize) { 3585b40dacdcSJohn Snow backup->auto_finalize = true; 3586b40dacdcSJohn Snow } 3587b40dacdcSJohn Snow if (!backup->has_auto_dismiss) { 3588b40dacdcSJohn Snow backup->auto_dismiss = true; 3589b40dacdcSJohn Snow } 35903b7b1236SPavel Butsykin if (!backup->has_compress) { 35913b7b1236SPavel Butsykin backup->compress = false; 35923b7b1236SPavel Butsykin } 3593c29c1dd3SFam Zheng 3594930fe17fSVladimir Sementsov-Ogievskiy bs = bdrv_lookup_bs(backup->device, backup->device, errp); 3595cef34eebSKevin Wolf if (!bs) { 3596111049a4SJohn Snow return NULL; 3597c29c1dd3SFam Zheng } 3598c29c1dd3SFam Zheng 3599cef34eebSKevin Wolf aio_context = bdrv_get_aio_context(bs); 3600c29c1dd3SFam Zheng aio_context_acquire(aio_context); 3601c29c1dd3SFam Zheng 3602dc7a4a9eSPavel Butsykin target_bs = bdrv_lookup_bs(backup->target, backup->target, errp); 36030d978913SFam Zheng if (!target_bs) { 3604c29c1dd3SFam Zheng goto out; 3605c29c1dd3SFam Zheng } 36065433c24fSMax Reitz 3607efd75567SFam Zheng if (bdrv_get_aio_context(target_bs) != aio_context) { 3608efd75567SFam Zheng if (!bdrv_has_blk(target_bs)) { 3609efd75567SFam Zheng /* The target BDS is not attached, we can safely move it to another 3610efd75567SFam Zheng * AioContext. */ 3611c29c1dd3SFam Zheng bdrv_set_aio_context(target_bs, aio_context); 3612efd75567SFam Zheng } else { 3613efd75567SFam Zheng error_setg(errp, "Target is attached to a different thread from " 3614efd75567SFam Zheng "source."); 3615efd75567SFam Zheng goto out; 3616efd75567SFam Zheng } 3617efd75567SFam Zheng } 3618945c1ee0SJohn Snow 3619945c1ee0SJohn Snow if (backup->has_bitmap) { 3620945c1ee0SJohn Snow bmap = bdrv_find_dirty_bitmap(bs, backup->bitmap); 3621945c1ee0SJohn Snow if (!bmap) { 3622945c1ee0SJohn Snow error_setg(errp, "Bitmap '%s' could not be found", backup->bitmap); 3623945c1ee0SJohn Snow goto out; 3624945c1ee0SJohn Snow } 3625b27a6b8bSJohn Snow if (bdrv_dirty_bitmap_user_locked(bmap)) { 3626945c1ee0SJohn Snow error_setg(errp, 3627b27a6b8bSJohn Snow "Bitmap '%s' is currently in use by another operation" 3628b27a6b8bSJohn Snow " and cannot be used for backup", backup->bitmap); 3629945c1ee0SJohn Snow goto out; 3630945c1ee0SJohn Snow } 3631945c1ee0SJohn Snow } 3632945c1ee0SJohn Snow 3633b40dacdcSJohn Snow if (!backup->auto_finalize) { 3634bb02b65cSKevin Wolf job_flags |= JOB_MANUAL_FINALIZE; 3635b40dacdcSJohn Snow } 3636b40dacdcSJohn Snow if (!backup->auto_dismiss) { 3637bb02b65cSKevin Wolf job_flags |= JOB_MANUAL_DISMISS; 3638b40dacdcSJohn Snow } 3639111049a4SJohn Snow job = backup_job_create(backup->job_id, bs, target_bs, backup->speed, 3640945c1ee0SJohn Snow backup->sync, bmap, backup->compress, 3641111049a4SJohn Snow backup->on_source_error, backup->on_target_error, 3642b40dacdcSJohn Snow job_flags, NULL, NULL, txn, &local_err); 3643c29c1dd3SFam Zheng if (local_err != NULL) { 3644c29c1dd3SFam Zheng error_propagate(errp, local_err); 3645c29c1dd3SFam Zheng } 3646c29c1dd3SFam Zheng out: 3647c29c1dd3SFam Zheng aio_context_release(aio_context); 3648111049a4SJohn Snow return job; 3649c29c1dd3SFam Zheng } 3650c29c1dd3SFam Zheng 3651dc7a4a9eSPavel Butsykin void qmp_blockdev_backup(BlockdevBackup *arg, Error **errp) 365278f51fdeSJohn Snow { 3653111049a4SJohn Snow BlockJob *job; 3654111049a4SJohn Snow job = do_blockdev_backup(arg, NULL, errp); 3655111049a4SJohn Snow if (job) { 3656da01ff7fSKevin Wolf job_start(&job->job); 3657111049a4SJohn Snow } 365878f51fdeSJohn Snow } 365978f51fdeSJohn Snow 36604193cdd7SFam Zheng /* Parameter check and block job starting for drive mirroring. 36614193cdd7SFam Zheng * Caller should hold @device and @target's aio context (must be the same). 36624193cdd7SFam Zheng **/ 366371aa9867SAlberto Garcia static void blockdev_mirror_common(const char *job_id, BlockDriverState *bs, 36644193cdd7SFam Zheng BlockDriverState *target, 366509158f00SBenoît Canet bool has_replaces, const char *replaces, 3666d9b902dbSPaolo Bonzini enum MirrorSyncMode sync, 3667274fcceeSMax Reitz BlockMirrorBackingMode backing_mode, 3668b952b558SPaolo Bonzini bool has_speed, int64_t speed, 3669eee13dfeSPaolo Bonzini bool has_granularity, uint32_t granularity, 367008e4ed6cSPaolo Bonzini bool has_buf_size, int64_t buf_size, 36714193cdd7SFam Zheng bool has_on_source_error, 36724193cdd7SFam Zheng BlockdevOnError on_source_error, 36734193cdd7SFam Zheng bool has_on_target_error, 36744193cdd7SFam Zheng BlockdevOnError on_target_error, 36750fc9f8eaSFam Zheng bool has_unmap, bool unmap, 36766cdbceb1SKevin Wolf bool has_filter_node_name, 36776cdbceb1SKevin Wolf const char *filter_node_name, 3678481debaaSMax Reitz bool has_copy_mode, MirrorCopyMode copy_mode, 3679a6b58adeSJohn Snow bool has_auto_finalize, bool auto_finalize, 3680a6b58adeSJohn Snow bool has_auto_dismiss, bool auto_dismiss, 3681b952b558SPaolo Bonzini Error **errp) 3682d9b902dbSPaolo Bonzini { 3683a1999b33SJohn Snow int job_flags = JOB_DEFAULT; 3684d9b902dbSPaolo Bonzini 3685d9b902dbSPaolo Bonzini if (!has_speed) { 3686d9b902dbSPaolo Bonzini speed = 0; 3687d9b902dbSPaolo Bonzini } 3688b952b558SPaolo Bonzini if (!has_on_source_error) { 3689b952b558SPaolo Bonzini on_source_error = BLOCKDEV_ON_ERROR_REPORT; 3690b952b558SPaolo Bonzini } 3691b952b558SPaolo Bonzini if (!has_on_target_error) { 3692b952b558SPaolo Bonzini on_target_error = BLOCKDEV_ON_ERROR_REPORT; 3693b952b558SPaolo Bonzini } 3694eee13dfeSPaolo Bonzini if (!has_granularity) { 3695eee13dfeSPaolo Bonzini granularity = 0; 3696eee13dfeSPaolo Bonzini } 369708e4ed6cSPaolo Bonzini if (!has_buf_size) { 369848ac0a4dSWen Congyang buf_size = 0; 369908e4ed6cSPaolo Bonzini } 37000fc9f8eaSFam Zheng if (!has_unmap) { 37010fc9f8eaSFam Zheng unmap = true; 37020fc9f8eaSFam Zheng } 37036cdbceb1SKevin Wolf if (!has_filter_node_name) { 37046cdbceb1SKevin Wolf filter_node_name = NULL; 37056cdbceb1SKevin Wolf } 3706481debaaSMax Reitz if (!has_copy_mode) { 3707481debaaSMax Reitz copy_mode = MIRROR_COPY_MODE_BACKGROUND; 3708481debaaSMax Reitz } 3709a6b58adeSJohn Snow if (has_auto_finalize && !auto_finalize) { 3710a6b58adeSJohn Snow job_flags |= JOB_MANUAL_FINALIZE; 3711a6b58adeSJohn Snow } 3712a6b58adeSJohn Snow if (has_auto_dismiss && !auto_dismiss) { 3713a6b58adeSJohn Snow job_flags |= JOB_MANUAL_DISMISS; 3714a6b58adeSJohn Snow } 371508e4ed6cSPaolo Bonzini 3716eee13dfeSPaolo Bonzini if (granularity != 0 && (granularity < 512 || granularity > 1048576 * 64)) { 3717c6bd8c70SMarkus Armbruster error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "granularity", 37183cbbe9fdSStefan Hajnoczi "a value in range [512B, 64MB]"); 3719eee13dfeSPaolo Bonzini return; 3720eee13dfeSPaolo Bonzini } 3721eee13dfeSPaolo Bonzini if (granularity & (granularity - 1)) { 3722c6bd8c70SMarkus Armbruster error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "granularity", 3723c6bd8c70SMarkus Armbruster "power of 2"); 3724eee13dfeSPaolo Bonzini return; 3725eee13dfeSPaolo Bonzini } 3726d9b902dbSPaolo Bonzini 37274193cdd7SFam Zheng if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_MIRROR_SOURCE, errp)) { 37284193cdd7SFam Zheng return; 37294193cdd7SFam Zheng } 3730e40e5027SFam Zheng if (bdrv_op_is_blocked(target, BLOCK_OP_TYPE_MIRROR_TARGET, errp)) { 3731e40e5027SFam Zheng return; 3732e40e5027SFam Zheng } 37334193cdd7SFam Zheng 37344193cdd7SFam Zheng if (!bs->backing && sync == MIRROR_SYNC_MODE_TOP) { 37354193cdd7SFam Zheng sync = MIRROR_SYNC_MODE_FULL; 37364193cdd7SFam Zheng } 37374193cdd7SFam Zheng 37384193cdd7SFam Zheng /* pass the node name to replace to mirror start since it's loose coupling 37394193cdd7SFam Zheng * and will allow to check whether the node still exist at mirror completion 37404193cdd7SFam Zheng */ 374171aa9867SAlberto Garcia mirror_start(job_id, bs, target, 3742a1999b33SJohn Snow has_replaces ? replaces : NULL, job_flags, 3743274fcceeSMax Reitz speed, granularity, buf_size, sync, backing_mode, 37446cdbceb1SKevin Wolf on_source_error, on_target_error, unmap, filter_node_name, 3745481debaaSMax Reitz copy_mode, errp); 37464193cdd7SFam Zheng } 37474193cdd7SFam Zheng 3748faecd40aSEric Blake void qmp_drive_mirror(DriveMirror *arg, Error **errp) 37494193cdd7SFam Zheng { 37504193cdd7SFam Zheng BlockDriverState *bs; 37514193cdd7SFam Zheng BlockDriverState *source, *target_bs; 37524193cdd7SFam Zheng AioContext *aio_context; 3753274fcceeSMax Reitz BlockMirrorBackingMode backing_mode; 37544193cdd7SFam Zheng Error *local_err = NULL; 37554193cdd7SFam Zheng QDict *options = NULL; 37564193cdd7SFam Zheng int flags; 37574193cdd7SFam Zheng int64_t size; 3758faecd40aSEric Blake const char *format = arg->format; 37594193cdd7SFam Zheng 37600524e93aSKevin Wolf bs = qmp_get_root_bs(arg->device, errp); 37610524e93aSKevin Wolf if (!bs) { 3762d9b902dbSPaolo Bonzini return; 3763d9b902dbSPaolo Bonzini } 3764d9b902dbSPaolo Bonzini 3765cb2af917SPaolo Bonzini /* Early check to avoid creating target */ 3766cb2af917SPaolo Bonzini if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_MIRROR_SOURCE, errp)) { 3767cb2af917SPaolo Bonzini return; 3768cb2af917SPaolo Bonzini } 3769cb2af917SPaolo Bonzini 37700524e93aSKevin Wolf aio_context = bdrv_get_aio_context(bs); 37715a7e7a0bSStefan Hajnoczi aio_context_acquire(aio_context); 37725a7e7a0bSStefan Hajnoczi 3773faecd40aSEric Blake if (!arg->has_mode) { 3774faecd40aSEric Blake arg->mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS; 37754193cdd7SFam Zheng } 3776d9b902dbSPaolo Bonzini 3777faecd40aSEric Blake if (!arg->has_format) { 3778faecd40aSEric Blake format = (arg->mode == NEW_IMAGE_MODE_EXISTING 3779faecd40aSEric Blake ? NULL : bs->drv->format_name); 3780d9b902dbSPaolo Bonzini } 3781d9b902dbSPaolo Bonzini 378261de4c68SKevin Wolf flags = bs->open_flags | BDRV_O_RDWR; 3783760e0063SKevin Wolf source = backing_bs(bs); 3784faecd40aSEric Blake if (!source && arg->sync == MIRROR_SYNC_MODE_TOP) { 3785faecd40aSEric Blake arg->sync = MIRROR_SYNC_MODE_FULL; 3786d9b902dbSPaolo Bonzini } 3787faecd40aSEric Blake if (arg->sync == MIRROR_SYNC_MODE_NONE) { 3788117e0c82SMax Reitz source = bs; 3789117e0c82SMax Reitz } 3790d9b902dbSPaolo Bonzini 3791ac3c5d83SStefan Hajnoczi size = bdrv_getlength(bs); 3792ac3c5d83SStefan Hajnoczi if (size < 0) { 3793ac3c5d83SStefan Hajnoczi error_setg_errno(errp, -size, "bdrv_getlength failed"); 37945a7e7a0bSStefan Hajnoczi goto out; 3795ac3c5d83SStefan Hajnoczi } 3796ac3c5d83SStefan Hajnoczi 3797faecd40aSEric Blake if (arg->has_replaces) { 379809158f00SBenoît Canet BlockDriverState *to_replace_bs; 37995a7e7a0bSStefan Hajnoczi AioContext *replace_aio_context; 38005a7e7a0bSStefan Hajnoczi int64_t replace_size; 380109158f00SBenoît Canet 3802faecd40aSEric Blake if (!arg->has_node_name) { 380309158f00SBenoît Canet error_setg(errp, "a node-name must be provided when replacing a" 380409158f00SBenoît Canet " named node of the graph"); 38055a7e7a0bSStefan Hajnoczi goto out; 380609158f00SBenoît Canet } 380709158f00SBenoît Canet 3808faecd40aSEric Blake to_replace_bs = check_to_replace_node(bs, arg->replaces, &local_err); 380909158f00SBenoît Canet 381009158f00SBenoît Canet if (!to_replace_bs) { 381109158f00SBenoît Canet error_propagate(errp, local_err); 38125a7e7a0bSStefan Hajnoczi goto out; 381309158f00SBenoît Canet } 381409158f00SBenoît Canet 38155a7e7a0bSStefan Hajnoczi replace_aio_context = bdrv_get_aio_context(to_replace_bs); 38165a7e7a0bSStefan Hajnoczi aio_context_acquire(replace_aio_context); 38175a7e7a0bSStefan Hajnoczi replace_size = bdrv_getlength(to_replace_bs); 38185a7e7a0bSStefan Hajnoczi aio_context_release(replace_aio_context); 38195a7e7a0bSStefan Hajnoczi 38205a7e7a0bSStefan Hajnoczi if (size != replace_size) { 382109158f00SBenoît Canet error_setg(errp, "cannot replace image with a mirror image of " 382209158f00SBenoît Canet "different size"); 38235a7e7a0bSStefan Hajnoczi goto out; 382409158f00SBenoît Canet } 382509158f00SBenoît Canet } 382609158f00SBenoît Canet 3827faecd40aSEric Blake if (arg->mode == NEW_IMAGE_MODE_ABSOLUTE_PATHS) { 3828274fcceeSMax Reitz backing_mode = MIRROR_SOURCE_BACKING_CHAIN; 3829274fcceeSMax Reitz } else { 3830274fcceeSMax Reitz backing_mode = MIRROR_OPEN_BACKING_CHAIN; 3831274fcceeSMax Reitz } 3832274fcceeSMax Reitz 38332a32c6e8SJohn Snow /* Don't open backing image in create() */ 38342a32c6e8SJohn Snow flags |= BDRV_O_NO_BACKING; 38352a32c6e8SJohn Snow 3836faecd40aSEric Blake if ((arg->sync == MIRROR_SYNC_MODE_FULL || !source) 3837faecd40aSEric Blake && arg->mode != NEW_IMAGE_MODE_EXISTING) 383814526864SMax Reitz { 3839d9b902dbSPaolo Bonzini /* create new image w/o backing file */ 3840e6641719SMax Reitz assert(format); 3841faecd40aSEric Blake bdrv_img_create(arg->target, format, 38429217283dSFam Zheng NULL, NULL, NULL, size, flags, false, &local_err); 3843d9b902dbSPaolo Bonzini } else { 3844faecd40aSEric Blake switch (arg->mode) { 3845d9b902dbSPaolo Bonzini case NEW_IMAGE_MODE_EXISTING: 3846d9b902dbSPaolo Bonzini break; 3847d9b902dbSPaolo Bonzini case NEW_IMAGE_MODE_ABSOLUTE_PATHS: 3848d9b902dbSPaolo Bonzini /* create new image with backing file */ 3849faecd40aSEric Blake bdrv_img_create(arg->target, format, 3850d9b902dbSPaolo Bonzini source->filename, 3851d9b902dbSPaolo Bonzini source->drv->format_name, 38529217283dSFam Zheng NULL, size, flags, false, &local_err); 3853d9b902dbSPaolo Bonzini break; 3854d9b902dbSPaolo Bonzini default: 3855d9b902dbSPaolo Bonzini abort(); 3856d9b902dbSPaolo Bonzini } 3857d9b902dbSPaolo Bonzini } 3858d9b902dbSPaolo Bonzini 385984d18f06SMarkus Armbruster if (local_err) { 3860cf8f2426SLuiz Capitulino error_propagate(errp, local_err); 38615a7e7a0bSStefan Hajnoczi goto out; 3862d9b902dbSPaolo Bonzini } 3863d9b902dbSPaolo Bonzini 38644c828dc6SBenoît Canet options = qdict_new(); 3865faecd40aSEric Blake if (arg->has_node_name) { 386646f5ac20SEric Blake qdict_put_str(options, "node-name", arg->node_name); 38674c828dc6SBenoît Canet } 3868e6641719SMax Reitz if (format) { 386946f5ac20SEric Blake qdict_put_str(options, "driver", format); 3870e6641719SMax Reitz } 38714c828dc6SBenoît Canet 3872b812f671SPaolo Bonzini /* Mirroring takes care of copy-on-write using the source's backing 3873b812f671SPaolo Bonzini * file. 3874b812f671SPaolo Bonzini */ 38752a32c6e8SJohn Snow target_bs = bdrv_open(arg->target, NULL, options, flags, errp); 38765b363937SMax Reitz if (!target_bs) { 38775a7e7a0bSStefan Hajnoczi goto out; 3878d9b902dbSPaolo Bonzini } 3879d9b902dbSPaolo Bonzini 38805a7e7a0bSStefan Hajnoczi bdrv_set_aio_context(target_bs, aio_context); 38815a7e7a0bSStefan Hajnoczi 3882faecd40aSEric Blake blockdev_mirror_common(arg->has_job_id ? arg->job_id : NULL, bs, target_bs, 3883faecd40aSEric Blake arg->has_replaces, arg->replaces, arg->sync, 3884faecd40aSEric Blake backing_mode, arg->has_speed, arg->speed, 3885faecd40aSEric Blake arg->has_granularity, arg->granularity, 3886faecd40aSEric Blake arg->has_buf_size, arg->buf_size, 3887faecd40aSEric Blake arg->has_on_source_error, arg->on_source_error, 3888faecd40aSEric Blake arg->has_on_target_error, arg->on_target_error, 3889faecd40aSEric Blake arg->has_unmap, arg->unmap, 38906cdbceb1SKevin Wolf false, NULL, 3891481debaaSMax Reitz arg->has_copy_mode, arg->copy_mode, 3892a6b58adeSJohn Snow arg->has_auto_finalize, arg->auto_finalize, 3893a6b58adeSJohn Snow arg->has_auto_dismiss, arg->auto_dismiss, 38944193cdd7SFam Zheng &local_err); 3895e253f4b8SKevin Wolf bdrv_unref(target_bs); 3896d9b902dbSPaolo Bonzini error_propagate(errp, local_err); 38975a7e7a0bSStefan Hajnoczi out: 38985a7e7a0bSStefan Hajnoczi aio_context_release(aio_context); 3899d9b902dbSPaolo Bonzini } 3900d9b902dbSPaolo Bonzini 390171aa9867SAlberto Garcia void qmp_blockdev_mirror(bool has_job_id, const char *job_id, 390271aa9867SAlberto Garcia const char *device, const char *target, 3903df92562eSFam Zheng bool has_replaces, const char *replaces, 3904df92562eSFam Zheng MirrorSyncMode sync, 3905df92562eSFam Zheng bool has_speed, int64_t speed, 3906df92562eSFam Zheng bool has_granularity, uint32_t granularity, 3907df92562eSFam Zheng bool has_buf_size, int64_t buf_size, 3908df92562eSFam Zheng bool has_on_source_error, 3909df92562eSFam Zheng BlockdevOnError on_source_error, 3910df92562eSFam Zheng bool has_on_target_error, 3911df92562eSFam Zheng BlockdevOnError on_target_error, 39126cdbceb1SKevin Wolf bool has_filter_node_name, 39136cdbceb1SKevin Wolf const char *filter_node_name, 3914481debaaSMax Reitz bool has_copy_mode, MirrorCopyMode copy_mode, 3915a6b58adeSJohn Snow bool has_auto_finalize, bool auto_finalize, 3916a6b58adeSJohn Snow bool has_auto_dismiss, bool auto_dismiss, 3917df92562eSFam Zheng Error **errp) 3918df92562eSFam Zheng { 3919df92562eSFam Zheng BlockDriverState *bs; 3920df92562eSFam Zheng BlockDriverState *target_bs; 3921df92562eSFam Zheng AioContext *aio_context; 3922274fcceeSMax Reitz BlockMirrorBackingMode backing_mode = MIRROR_LEAVE_BACKING_CHAIN; 3923df92562eSFam Zheng Error *local_err = NULL; 3924df92562eSFam Zheng 392507eec652SKevin Wolf bs = qmp_get_root_bs(device, errp); 3926df92562eSFam Zheng if (!bs) { 3927df92562eSFam Zheng return; 3928df92562eSFam Zheng } 3929df92562eSFam Zheng 3930df92562eSFam Zheng target_bs = bdrv_lookup_bs(target, target, errp); 3931df92562eSFam Zheng if (!target_bs) { 3932df92562eSFam Zheng return; 3933df92562eSFam Zheng } 3934df92562eSFam Zheng 3935df92562eSFam Zheng aio_context = bdrv_get_aio_context(bs); 3936df92562eSFam Zheng aio_context_acquire(aio_context); 3937df92562eSFam Zheng 3938df92562eSFam Zheng bdrv_set_aio_context(target_bs, aio_context); 3939df92562eSFam Zheng 394071aa9867SAlberto Garcia blockdev_mirror_common(has_job_id ? job_id : NULL, bs, target_bs, 3941274fcceeSMax Reitz has_replaces, replaces, sync, backing_mode, 3942df92562eSFam Zheng has_speed, speed, 3943df92562eSFam Zheng has_granularity, granularity, 3944df92562eSFam Zheng has_buf_size, buf_size, 3945df92562eSFam Zheng has_on_source_error, on_source_error, 3946df92562eSFam Zheng has_on_target_error, on_target_error, 3947df92562eSFam Zheng true, true, 39486cdbceb1SKevin Wolf has_filter_node_name, filter_node_name, 3949481debaaSMax Reitz has_copy_mode, copy_mode, 3950a6b58adeSJohn Snow has_auto_finalize, auto_finalize, 3951a6b58adeSJohn Snow has_auto_dismiss, auto_dismiss, 3952df92562eSFam Zheng &local_err); 3953df92562eSFam Zheng error_propagate(errp, local_err); 3954df92562eSFam Zheng 3955df92562eSFam Zheng aio_context_release(aio_context); 3956df92562eSFam Zheng } 3957df92562eSFam Zheng 39583ddf3efeSAlberto Garcia /* Get a block job using its ID and acquire its AioContext */ 39593ddf3efeSAlberto Garcia static BlockJob *find_block_job(const char *id, AioContext **aio_context, 396024d6bffeSMarkus Armbruster Error **errp) 39612d47c6e9SStefan Hajnoczi { 39623ddf3efeSAlberto Garcia BlockJob *job; 39633ddf3efeSAlberto Garcia 39643ddf3efeSAlberto Garcia assert(id != NULL); 39652d47c6e9SStefan Hajnoczi 39665433c24fSMax Reitz *aio_context = NULL; 39675433c24fSMax Reitz 39683ddf3efeSAlberto Garcia job = block_job_get(id); 39693ddf3efeSAlberto Garcia 39703ddf3efeSAlberto Garcia if (!job) { 39713ddf3efeSAlberto Garcia error_set(errp, ERROR_CLASS_DEVICE_NOT_ACTIVE, 39723ddf3efeSAlberto Garcia "Block job '%s' not found", id); 39733ddf3efeSAlberto Garcia return NULL; 39742d47c6e9SStefan Hajnoczi } 39753d948cdfSStefan Hajnoczi 39763ddf3efeSAlberto Garcia *aio_context = blk_get_aio_context(job->blk); 39773d948cdfSStefan Hajnoczi aio_context_acquire(*aio_context); 39783d948cdfSStefan Hajnoczi 39793ddf3efeSAlberto Garcia return job; 39802d47c6e9SStefan Hajnoczi } 39812d47c6e9SStefan Hajnoczi 3982882ec7ceSStefan Hajnoczi void qmp_block_job_set_speed(const char *device, int64_t speed, Error **errp) 39832d47c6e9SStefan Hajnoczi { 39843d948cdfSStefan Hajnoczi AioContext *aio_context; 398524d6bffeSMarkus Armbruster BlockJob *job = find_block_job(device, &aio_context, errp); 39862d47c6e9SStefan Hajnoczi 39872d47c6e9SStefan Hajnoczi if (!job) { 39882d47c6e9SStefan Hajnoczi return; 39892d47c6e9SStefan Hajnoczi } 39902d47c6e9SStefan Hajnoczi 3991882ec7ceSStefan Hajnoczi block_job_set_speed(job, speed, errp); 39923d948cdfSStefan Hajnoczi aio_context_release(aio_context); 39932d47c6e9SStefan Hajnoczi } 3994370521a1SStefan Hajnoczi 39956e37fb81SPaolo Bonzini void qmp_block_job_cancel(const char *device, 39966e37fb81SPaolo Bonzini bool has_force, bool force, Error **errp) 39976e37fb81SPaolo Bonzini { 39983d948cdfSStefan Hajnoczi AioContext *aio_context; 399924d6bffeSMarkus Armbruster BlockJob *job = find_block_job(device, &aio_context, errp); 40006e37fb81SPaolo Bonzini 40016e37fb81SPaolo Bonzini if (!job) { 40026e37fb81SPaolo Bonzini return; 40036e37fb81SPaolo Bonzini } 40043d948cdfSStefan Hajnoczi 40053d948cdfSStefan Hajnoczi if (!has_force) { 40063d948cdfSStefan Hajnoczi force = false; 40073d948cdfSStefan Hajnoczi } 40083d948cdfSStefan Hajnoczi 4009b15de828SKevin Wolf if (job_user_paused(&job->job) && !force) { 4010f231b88dSCole Robinson error_setg(errp, "The block job for device '%s' is currently paused", 4011f231b88dSCole Robinson device); 40123d948cdfSStefan Hajnoczi goto out; 40136e37fb81SPaolo Bonzini } 40146e37fb81SPaolo Bonzini 40156e37fb81SPaolo Bonzini trace_qmp_block_job_cancel(job); 40163d70ff53SKevin Wolf job_user_cancel(&job->job, force, errp); 40173d948cdfSStefan Hajnoczi out: 40183d948cdfSStefan Hajnoczi aio_context_release(aio_context); 40196e37fb81SPaolo Bonzini } 40206e37fb81SPaolo Bonzini 40216e37fb81SPaolo Bonzini void qmp_block_job_pause(const char *device, Error **errp) 4022370521a1SStefan Hajnoczi { 40233d948cdfSStefan Hajnoczi AioContext *aio_context; 402424d6bffeSMarkus Armbruster BlockJob *job = find_block_job(device, &aio_context, errp); 4025370521a1SStefan Hajnoczi 40260ec4dfb8SJohn Snow if (!job) { 4027370521a1SStefan Hajnoczi return; 4028370521a1SStefan Hajnoczi } 40296e37fb81SPaolo Bonzini 40306e37fb81SPaolo Bonzini trace_qmp_block_job_pause(job); 4031b15de828SKevin Wolf job_user_pause(&job->job, errp); 40323d948cdfSStefan Hajnoczi aio_context_release(aio_context); 40336e37fb81SPaolo Bonzini } 40346e37fb81SPaolo Bonzini 40356e37fb81SPaolo Bonzini void qmp_block_job_resume(const char *device, Error **errp) 40366e37fb81SPaolo Bonzini { 40373d948cdfSStefan Hajnoczi AioContext *aio_context; 403824d6bffeSMarkus Armbruster BlockJob *job = find_block_job(device, &aio_context, errp); 40396e37fb81SPaolo Bonzini 40400ec4dfb8SJohn Snow if (!job) { 40418acc72a4SPaolo Bonzini return; 40428acc72a4SPaolo Bonzini } 4043370521a1SStefan Hajnoczi 40446e37fb81SPaolo Bonzini trace_qmp_block_job_resume(job); 4045b15de828SKevin Wolf job_user_resume(&job->job, errp); 40463d948cdfSStefan Hajnoczi aio_context_release(aio_context); 4047370521a1SStefan Hajnoczi } 4048fb5458cdSStefan Hajnoczi 4049aeae883bSPaolo Bonzini void qmp_block_job_complete(const char *device, Error **errp) 4050aeae883bSPaolo Bonzini { 40513d948cdfSStefan Hajnoczi AioContext *aio_context; 405224d6bffeSMarkus Armbruster BlockJob *job = find_block_job(device, &aio_context, errp); 4053aeae883bSPaolo Bonzini 4054aeae883bSPaolo Bonzini if (!job) { 4055aeae883bSPaolo Bonzini return; 4056aeae883bSPaolo Bonzini } 4057aeae883bSPaolo Bonzini 4058aeae883bSPaolo Bonzini trace_qmp_block_job_complete(job); 40593453d972SKevin Wolf job_complete(&job->job, errp); 40603d948cdfSStefan Hajnoczi aio_context_release(aio_context); 4061aeae883bSPaolo Bonzini } 4062aeae883bSPaolo Bonzini 406311b61fbcSJohn Snow void qmp_block_job_finalize(const char *id, Error **errp) 406411b61fbcSJohn Snow { 406511b61fbcSJohn Snow AioContext *aio_context; 406611b61fbcSJohn Snow BlockJob *job = find_block_job(id, &aio_context, errp); 406711b61fbcSJohn Snow 406811b61fbcSJohn Snow if (!job) { 406911b61fbcSJohn Snow return; 407011b61fbcSJohn Snow } 407111b61fbcSJohn Snow 407211b61fbcSJohn Snow trace_qmp_block_job_finalize(job); 40737eaa8fb5SKevin Wolf job_finalize(&job->job, errp); 407411b61fbcSJohn Snow aio_context_release(aio_context); 407511b61fbcSJohn Snow } 407611b61fbcSJohn Snow 407775f71059SJohn Snow void qmp_block_job_dismiss(const char *id, Error **errp) 407875f71059SJohn Snow { 407975f71059SJohn Snow AioContext *aio_context; 40805f9a6a08SKevin Wolf BlockJob *bjob = find_block_job(id, &aio_context, errp); 40815f9a6a08SKevin Wolf Job *job; 408275f71059SJohn Snow 40835f9a6a08SKevin Wolf if (!bjob) { 408475f71059SJohn Snow return; 408575f71059SJohn Snow } 408675f71059SJohn Snow 40875f9a6a08SKevin Wolf trace_qmp_block_job_dismiss(bjob); 40885f9a6a08SKevin Wolf job = &bjob->job; 40895f9a6a08SKevin Wolf job_dismiss(&job, errp); 409075f71059SJohn Snow aio_context_release(aio_context); 409175f71059SJohn Snow } 409275f71059SJohn Snow 4093fa40e656SJeff Cody void qmp_change_backing_file(const char *device, 4094fa40e656SJeff Cody const char *image_node_name, 4095fa40e656SJeff Cody const char *backing_file, 4096fa40e656SJeff Cody Error **errp) 4097fa40e656SJeff Cody { 4098fa40e656SJeff Cody BlockDriverState *bs = NULL; 4099729962f6SStefan Hajnoczi AioContext *aio_context; 4100fa40e656SJeff Cody BlockDriverState *image_bs = NULL; 4101fa40e656SJeff Cody Error *local_err = NULL; 4102fa40e656SJeff Cody bool ro; 4103fa40e656SJeff Cody int open_flags; 4104fa40e656SJeff Cody int ret; 4105fa40e656SJeff Cody 41067b5dca3fSKevin Wolf bs = qmp_get_root_bs(device, errp); 41077b5dca3fSKevin Wolf if (!bs) { 4108fa40e656SJeff Cody return; 4109fa40e656SJeff Cody } 4110fa40e656SJeff Cody 41117b5dca3fSKevin Wolf aio_context = bdrv_get_aio_context(bs); 4112729962f6SStefan Hajnoczi aio_context_acquire(aio_context); 4113729962f6SStefan Hajnoczi 4114fa40e656SJeff Cody image_bs = bdrv_lookup_bs(NULL, image_node_name, &local_err); 4115fa40e656SJeff Cody if (local_err) { 4116fa40e656SJeff Cody error_propagate(errp, local_err); 4117729962f6SStefan Hajnoczi goto out; 4118fa40e656SJeff Cody } 4119fa40e656SJeff Cody 4120fa40e656SJeff Cody if (!image_bs) { 4121fa40e656SJeff Cody error_setg(errp, "image file not found"); 4122729962f6SStefan Hajnoczi goto out; 4123fa40e656SJeff Cody } 4124fa40e656SJeff Cody 4125fa40e656SJeff Cody if (bdrv_find_base(image_bs) == image_bs) { 4126fa40e656SJeff Cody error_setg(errp, "not allowing backing file change on an image " 4127fa40e656SJeff Cody "without a backing file"); 4128729962f6SStefan Hajnoczi goto out; 4129fa40e656SJeff Cody } 4130fa40e656SJeff Cody 4131fa40e656SJeff Cody /* even though we are not necessarily operating on bs, we need it to 4132fa40e656SJeff Cody * determine if block ops are currently prohibited on the chain */ 4133fa40e656SJeff Cody if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_CHANGE, errp)) { 4134729962f6SStefan Hajnoczi goto out; 4135fa40e656SJeff Cody } 4136fa40e656SJeff Cody 4137fa40e656SJeff Cody /* final sanity check */ 4138fa40e656SJeff Cody if (!bdrv_chain_contains(bs, image_bs)) { 4139fa40e656SJeff Cody error_setg(errp, "'%s' and image file are not in the same chain", 4140fa40e656SJeff Cody device); 4141729962f6SStefan Hajnoczi goto out; 4142fa40e656SJeff Cody } 4143fa40e656SJeff Cody 4144fa40e656SJeff Cody /* if not r/w, reopen to make r/w */ 4145fa40e656SJeff Cody open_flags = image_bs->open_flags; 4146fa40e656SJeff Cody ro = bdrv_is_read_only(image_bs); 4147fa40e656SJeff Cody 4148fa40e656SJeff Cody if (ro) { 4149fa40e656SJeff Cody bdrv_reopen(image_bs, open_flags | BDRV_O_RDWR, &local_err); 4150fa40e656SJeff Cody if (local_err) { 4151fa40e656SJeff Cody error_propagate(errp, local_err); 4152729962f6SStefan Hajnoczi goto out; 4153fa40e656SJeff Cody } 4154fa40e656SJeff Cody } 4155fa40e656SJeff Cody 4156fa40e656SJeff Cody ret = bdrv_change_backing_file(image_bs, backing_file, 4157fa40e656SJeff Cody image_bs->drv ? image_bs->drv->format_name : ""); 4158fa40e656SJeff Cody 4159fa40e656SJeff Cody if (ret < 0) { 4160fa40e656SJeff Cody error_setg_errno(errp, -ret, "Could not change backing file to '%s'", 4161fa40e656SJeff Cody backing_file); 4162fa40e656SJeff Cody /* don't exit here, so we can try to restore open flags if 4163fa40e656SJeff Cody * appropriate */ 4164fa40e656SJeff Cody } 4165fa40e656SJeff Cody 4166fa40e656SJeff Cody if (ro) { 4167fa40e656SJeff Cody bdrv_reopen(image_bs, open_flags, &local_err); 4168621ff94dSEduardo Habkost error_propagate(errp, local_err); 4169fa40e656SJeff Cody } 4170729962f6SStefan Hajnoczi 4171729962f6SStefan Hajnoczi out: 4172729962f6SStefan Hajnoczi aio_context_release(aio_context); 4173fa40e656SJeff Cody } 4174fa40e656SJeff Cody 4175abb21ac3SKevin Wolf void hmp_drive_add_node(Monitor *mon, const char *optstr) 4176abb21ac3SKevin Wolf { 4177abb21ac3SKevin Wolf QemuOpts *opts; 4178abb21ac3SKevin Wolf QDict *qdict; 4179abb21ac3SKevin Wolf Error *local_err = NULL; 4180abb21ac3SKevin Wolf 4181abb21ac3SKevin Wolf opts = qemu_opts_parse_noisily(&qemu_drive_opts, optstr, false); 4182abb21ac3SKevin Wolf if (!opts) { 4183abb21ac3SKevin Wolf return; 4184abb21ac3SKevin Wolf } 4185abb21ac3SKevin Wolf 4186abb21ac3SKevin Wolf qdict = qemu_opts_to_qdict(opts, NULL); 4187abb21ac3SKevin Wolf 4188abb21ac3SKevin Wolf if (!qdict_get_try_str(qdict, "node-name")) { 4189cb3e7f08SMarc-André Lureau qobject_unref(qdict); 4190abb21ac3SKevin Wolf error_report("'node-name' needs to be specified"); 4191abb21ac3SKevin Wolf goto out; 4192abb21ac3SKevin Wolf } 4193abb21ac3SKevin Wolf 4194abb21ac3SKevin Wolf BlockDriverState *bs = bds_tree_init(qdict, &local_err); 4195abb21ac3SKevin Wolf if (!bs) { 4196abb21ac3SKevin Wolf error_report_err(local_err); 4197abb21ac3SKevin Wolf goto out; 4198abb21ac3SKevin Wolf } 4199abb21ac3SKevin Wolf 4200abb21ac3SKevin Wolf QTAILQ_INSERT_TAIL(&monitor_bdrv_states, bs, monitor_list); 4201abb21ac3SKevin Wolf 4202abb21ac3SKevin Wolf out: 4203abb21ac3SKevin Wolf qemu_opts_del(opts); 4204abb21ac3SKevin Wolf } 4205abb21ac3SKevin Wolf 4206d26c9a15SKevin Wolf void qmp_blockdev_add(BlockdevOptions *options, Error **errp) 4207d26c9a15SKevin Wolf { 4208be4b67bcSMax Reitz BlockDriverState *bs; 4209d26c9a15SKevin Wolf QObject *obj; 42107d5e199aSDaniel P. Berrange Visitor *v = qobject_output_visitor_new(&obj); 4211d26c9a15SKevin Wolf QDict *qdict; 4212d26c9a15SKevin Wolf Error *local_err = NULL; 4213d26c9a15SKevin Wolf 42143b098d56SEric Blake visit_type_BlockdevOptions(v, NULL, &options, &local_err); 421584d18f06SMarkus Armbruster if (local_err) { 4216d26c9a15SKevin Wolf error_propagate(errp, local_err); 4217d26c9a15SKevin Wolf goto fail; 4218d26c9a15SKevin Wolf } 4219d26c9a15SKevin Wolf 42203b098d56SEric Blake visit_complete(v, &obj); 42217dc847ebSMax Reitz qdict = qobject_to(QDict, obj); 4222d26c9a15SKevin Wolf 4223d26c9a15SKevin Wolf qdict_flatten(qdict); 4224d26c9a15SKevin Wolf 4225be4b67bcSMax Reitz if (!qdict_get_try_str(qdict, "node-name")) { 42269ec8873eSKevin Wolf error_setg(errp, "'node-name' must be specified for the root node"); 4227be4b67bcSMax Reitz goto fail; 4228be4b67bcSMax Reitz } 4229be4b67bcSMax Reitz 4230bd745e23SMax Reitz bs = bds_tree_init(qdict, errp); 4231bd745e23SMax Reitz if (!bs) { 4232be4b67bcSMax Reitz goto fail; 4233be4b67bcSMax Reitz } 42349c4218e9SMax Reitz 42359c4218e9SMax Reitz QTAILQ_INSERT_TAIL(&monitor_bdrv_states, bs, monitor_list); 4236be4b67bcSMax Reitz 4237d26c9a15SKevin Wolf fail: 42383b098d56SEric Blake visit_free(v); 4239d26c9a15SKevin Wolf } 4240d26c9a15SKevin Wolf 424179b7a77eSMarkus Armbruster void qmp_blockdev_del(const char *node_name, Error **errp) 424281b936aeSAlberto Garcia { 424381b936aeSAlberto Garcia AioContext *aio_context; 424481b936aeSAlberto Garcia BlockDriverState *bs; 424581b936aeSAlberto Garcia 424681b936aeSAlberto Garcia bs = bdrv_find_node(node_name); 424781b936aeSAlberto Garcia if (!bs) { 424881b936aeSAlberto Garcia error_setg(errp, "Cannot find node %s", node_name); 424981b936aeSAlberto Garcia return; 425081b936aeSAlberto Garcia } 42511f0c461bSKevin Wolf if (bdrv_has_blk(bs)) { 4252e467da7bSKevin Wolf error_setg(errp, "Node %s is in use", node_name); 425381b936aeSAlberto Garcia return; 425481b936aeSAlberto Garcia } 425581b936aeSAlberto Garcia aio_context = bdrv_get_aio_context(bs); 425681b936aeSAlberto Garcia aio_context_acquire(aio_context); 425781b936aeSAlberto Garcia 425881b936aeSAlberto Garcia if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_DRIVE_DEL, errp)) { 425981b936aeSAlberto Garcia goto out; 426081b936aeSAlberto Garcia } 426181b936aeSAlberto Garcia 42629ec8873eSKevin Wolf if (!bs->monitor_list.tqe_prev) { 42639c4218e9SMax Reitz error_setg(errp, "Node %s is not owned by the monitor", 42649c4218e9SMax Reitz bs->node_name); 42659c4218e9SMax Reitz goto out; 42669c4218e9SMax Reitz } 42679c4218e9SMax Reitz 42689c4218e9SMax Reitz if (bs->refcnt > 1) { 426981b936aeSAlberto Garcia error_setg(errp, "Block device %s is in use", 427081b936aeSAlberto Garcia bdrv_get_device_or_node_name(bs)); 427181b936aeSAlberto Garcia goto out; 427281b936aeSAlberto Garcia } 427381b936aeSAlberto Garcia 42749c4218e9SMax Reitz QTAILQ_REMOVE(&monitor_bdrv_states, bs, monitor_list); 427581b936aeSAlberto Garcia bdrv_unref(bs); 427681b936aeSAlberto Garcia 427781b936aeSAlberto Garcia out: 427881b936aeSAlberto Garcia aio_context_release(aio_context); 427981b936aeSAlberto Garcia } 428081b936aeSAlberto Garcia 42817f821597SWen Congyang static BdrvChild *bdrv_find_child(BlockDriverState *parent_bs, 42827f821597SWen Congyang const char *child_name) 42837f821597SWen Congyang { 42847f821597SWen Congyang BdrvChild *child; 42857f821597SWen Congyang 42867f821597SWen Congyang QLIST_FOREACH(child, &parent_bs->children, next) { 42877f821597SWen Congyang if (strcmp(child->name, child_name) == 0) { 42887f821597SWen Congyang return child; 42897f821597SWen Congyang } 42907f821597SWen Congyang } 42917f821597SWen Congyang 42927f821597SWen Congyang return NULL; 42937f821597SWen Congyang } 42947f821597SWen Congyang 42957f821597SWen Congyang void qmp_x_blockdev_change(const char *parent, bool has_child, 42967f821597SWen Congyang const char *child, bool has_node, 42977f821597SWen Congyang const char *node, Error **errp) 42987f821597SWen Congyang { 42997f821597SWen Congyang BlockDriverState *parent_bs, *new_bs = NULL; 43007f821597SWen Congyang BdrvChild *p_child; 43017f821597SWen Congyang 43027f821597SWen Congyang parent_bs = bdrv_lookup_bs(parent, parent, errp); 43037f821597SWen Congyang if (!parent_bs) { 43047f821597SWen Congyang return; 43057f821597SWen Congyang } 43067f821597SWen Congyang 43077f821597SWen Congyang if (has_child == has_node) { 43087f821597SWen Congyang if (has_child) { 43097f821597SWen Congyang error_setg(errp, "The parameters child and node are in conflict"); 43107f821597SWen Congyang } else { 43117f821597SWen Congyang error_setg(errp, "Either child or node must be specified"); 43127f821597SWen Congyang } 43137f821597SWen Congyang return; 43147f821597SWen Congyang } 43157f821597SWen Congyang 43167f821597SWen Congyang if (has_child) { 43177f821597SWen Congyang p_child = bdrv_find_child(parent_bs, child); 43187f821597SWen Congyang if (!p_child) { 43197f821597SWen Congyang error_setg(errp, "Node '%s' does not have child '%s'", 43207f821597SWen Congyang parent, child); 43217f821597SWen Congyang return; 43227f821597SWen Congyang } 43237f821597SWen Congyang bdrv_del_child(parent_bs, p_child, errp); 43247f821597SWen Congyang } 43257f821597SWen Congyang 43267f821597SWen Congyang if (has_node) { 43277f821597SWen Congyang new_bs = bdrv_find_node(node); 43287f821597SWen Congyang if (!new_bs) { 43297f821597SWen Congyang error_setg(errp, "Node '%s' not found", node); 43307f821597SWen Congyang return; 43317f821597SWen Congyang } 43327f821597SWen Congyang bdrv_add_child(parent_bs, new_bs, errp); 43337f821597SWen Congyang } 43347f821597SWen Congyang } 43357f821597SWen Congyang 4336fb5458cdSStefan Hajnoczi BlockJobInfoList *qmp_query_block_jobs(Error **errp) 4337fb5458cdSStefan Hajnoczi { 4338fea68bb6SMarkus Armbruster BlockJobInfoList *head = NULL, **p_next = &head; 4339f0f55dedSAlberto Garcia BlockJob *job; 4340fea68bb6SMarkus Armbruster 4341f0f55dedSAlberto Garcia for (job = block_job_next(NULL); job; job = block_job_next(job)) { 4342559b935fSJohn Snow BlockJobInfoList *elem; 4343559b935fSJohn Snow AioContext *aio_context; 434469691e72SStefan Hajnoczi 4345559b935fSJohn Snow if (block_job_is_internal(job)) { 4346559b935fSJohn Snow continue; 4347559b935fSJohn Snow } 4348559b935fSJohn Snow elem = g_new0(BlockJobInfoList, 1); 4349559b935fSJohn Snow aio_context = blk_get_aio_context(job->blk); 435069691e72SStefan Hajnoczi aio_context_acquire(aio_context); 4351559b935fSJohn Snow elem->value = block_job_query(job, errp); 4352f0f55dedSAlberto Garcia aio_context_release(aio_context); 4353559b935fSJohn Snow if (!elem->value) { 4354559b935fSJohn Snow g_free(elem); 4355559b935fSJohn Snow qapi_free_BlockJobInfoList(head); 4356559b935fSJohn Snow return NULL; 4357559b935fSJohn Snow } 4358fea68bb6SMarkus Armbruster *p_next = elem; 4359fea68bb6SMarkus Armbruster p_next = &elem->next; 4360fea68bb6SMarkus Armbruster } 436169691e72SStefan Hajnoczi 4362fea68bb6SMarkus Armbruster return head; 4363fb5458cdSStefan Hajnoczi } 43644d454574SPaolo Bonzini 4365ca00bbb1SStefan Hajnoczi void qmp_x_blockdev_set_iothread(const char *node_name, StrOrNull *iothread, 4366882e9b89SStefan Hajnoczi bool has_force, bool force, Error **errp) 4367ca00bbb1SStefan Hajnoczi { 4368ca00bbb1SStefan Hajnoczi AioContext *old_context; 4369ca00bbb1SStefan Hajnoczi AioContext *new_context; 4370ca00bbb1SStefan Hajnoczi BlockDriverState *bs; 4371ca00bbb1SStefan Hajnoczi 4372ca00bbb1SStefan Hajnoczi bs = bdrv_find_node(node_name); 4373ca00bbb1SStefan Hajnoczi if (!bs) { 4374ca00bbb1SStefan Hajnoczi error_setg(errp, "Cannot find node %s", node_name); 4375ca00bbb1SStefan Hajnoczi return; 4376ca00bbb1SStefan Hajnoczi } 4377ca00bbb1SStefan Hajnoczi 4378882e9b89SStefan Hajnoczi /* Protects against accidents. */ 4379882e9b89SStefan Hajnoczi if (!(has_force && force) && bdrv_has_blk(bs)) { 4380882e9b89SStefan Hajnoczi error_setg(errp, "Node %s is associated with a BlockBackend and could " 4381882e9b89SStefan Hajnoczi "be in use (use force=true to override this check)", 4382882e9b89SStefan Hajnoczi node_name); 4383ca00bbb1SStefan Hajnoczi return; 4384ca00bbb1SStefan Hajnoczi } 4385ca00bbb1SStefan Hajnoczi 4386ca00bbb1SStefan Hajnoczi if (iothread->type == QTYPE_QSTRING) { 4387ca00bbb1SStefan Hajnoczi IOThread *obj = iothread_by_id(iothread->u.s); 4388ca00bbb1SStefan Hajnoczi if (!obj) { 4389ca00bbb1SStefan Hajnoczi error_setg(errp, "Cannot find iothread %s", iothread->u.s); 4390ca00bbb1SStefan Hajnoczi return; 4391ca00bbb1SStefan Hajnoczi } 4392ca00bbb1SStefan Hajnoczi 4393ca00bbb1SStefan Hajnoczi new_context = iothread_get_aio_context(obj); 4394ca00bbb1SStefan Hajnoczi } else { 4395ca00bbb1SStefan Hajnoczi new_context = qemu_get_aio_context(); 4396ca00bbb1SStefan Hajnoczi } 4397ca00bbb1SStefan Hajnoczi 4398ca00bbb1SStefan Hajnoczi old_context = bdrv_get_aio_context(bs); 4399ca00bbb1SStefan Hajnoczi aio_context_acquire(old_context); 4400ca00bbb1SStefan Hajnoczi 4401ca00bbb1SStefan Hajnoczi bdrv_set_aio_context(bs, new_context); 4402ca00bbb1SStefan Hajnoczi 4403ca00bbb1SStefan Hajnoczi aio_context_release(old_context); 4404ca00bbb1SStefan Hajnoczi } 4405ca00bbb1SStefan Hajnoczi 44067e5c776dSVladimir Sementsov-Ogievskiy void qmp_x_block_latency_histogram_set( 44077e5c776dSVladimir Sementsov-Ogievskiy const char *device, 44087e5c776dSVladimir Sementsov-Ogievskiy bool has_boundaries, uint64List *boundaries, 44097e5c776dSVladimir Sementsov-Ogievskiy bool has_boundaries_read, uint64List *boundaries_read, 44107e5c776dSVladimir Sementsov-Ogievskiy bool has_boundaries_write, uint64List *boundaries_write, 44117e5c776dSVladimir Sementsov-Ogievskiy bool has_boundaries_flush, uint64List *boundaries_flush, 44127e5c776dSVladimir Sementsov-Ogievskiy Error **errp) 44137e5c776dSVladimir Sementsov-Ogievskiy { 44147e5c776dSVladimir Sementsov-Ogievskiy BlockBackend *blk = blk_by_name(device); 44157e5c776dSVladimir Sementsov-Ogievskiy BlockAcctStats *stats; 441663d5341fSzhenwei pi int ret; 44177e5c776dSVladimir Sementsov-Ogievskiy 44187e5c776dSVladimir Sementsov-Ogievskiy if (!blk) { 44197e5c776dSVladimir Sementsov-Ogievskiy error_setg(errp, "Device '%s' not found", device); 44207e5c776dSVladimir Sementsov-Ogievskiy return; 44217e5c776dSVladimir Sementsov-Ogievskiy } 44227e5c776dSVladimir Sementsov-Ogievskiy stats = blk_get_stats(blk); 44237e5c776dSVladimir Sementsov-Ogievskiy 44247e5c776dSVladimir Sementsov-Ogievskiy if (!has_boundaries && !has_boundaries_read && !has_boundaries_write && 44257e5c776dSVladimir Sementsov-Ogievskiy !has_boundaries_flush) 44267e5c776dSVladimir Sementsov-Ogievskiy { 44277e5c776dSVladimir Sementsov-Ogievskiy block_latency_histograms_clear(stats); 44287e5c776dSVladimir Sementsov-Ogievskiy return; 44297e5c776dSVladimir Sementsov-Ogievskiy } 44307e5c776dSVladimir Sementsov-Ogievskiy 44317e5c776dSVladimir Sementsov-Ogievskiy if (has_boundaries || has_boundaries_read) { 443263d5341fSzhenwei pi ret = block_latency_histogram_set( 44337e5c776dSVladimir Sementsov-Ogievskiy stats, BLOCK_ACCT_READ, 44347e5c776dSVladimir Sementsov-Ogievskiy has_boundaries_read ? boundaries_read : boundaries); 443563d5341fSzhenwei pi if (ret) { 443663d5341fSzhenwei pi error_setg(errp, "Device '%s' set read boundaries fail", device); 443763d5341fSzhenwei pi return; 443863d5341fSzhenwei pi } 44397e5c776dSVladimir Sementsov-Ogievskiy } 44407e5c776dSVladimir Sementsov-Ogievskiy 44417e5c776dSVladimir Sementsov-Ogievskiy if (has_boundaries || has_boundaries_write) { 444263d5341fSzhenwei pi ret = block_latency_histogram_set( 44437e5c776dSVladimir Sementsov-Ogievskiy stats, BLOCK_ACCT_WRITE, 44447e5c776dSVladimir Sementsov-Ogievskiy has_boundaries_write ? boundaries_write : boundaries); 444563d5341fSzhenwei pi if (ret) { 444663d5341fSzhenwei pi error_setg(errp, "Device '%s' set write boundaries fail", device); 444763d5341fSzhenwei pi return; 444863d5341fSzhenwei pi } 44497e5c776dSVladimir Sementsov-Ogievskiy } 44507e5c776dSVladimir Sementsov-Ogievskiy 44517e5c776dSVladimir Sementsov-Ogievskiy if (has_boundaries || has_boundaries_flush) { 445263d5341fSzhenwei pi ret = block_latency_histogram_set( 44537e5c776dSVladimir Sementsov-Ogievskiy stats, BLOCK_ACCT_FLUSH, 44547e5c776dSVladimir Sementsov-Ogievskiy has_boundaries_flush ? boundaries_flush : boundaries); 445563d5341fSzhenwei pi if (ret) { 445663d5341fSzhenwei pi error_setg(errp, "Device '%s' set flush boundaries fail", device); 445763d5341fSzhenwei pi return; 445863d5341fSzhenwei pi } 44597e5c776dSVladimir Sementsov-Ogievskiy } 44607e5c776dSVladimir Sementsov-Ogievskiy } 44617e5c776dSVladimir Sementsov-Ogievskiy 44620006383eSKevin Wolf QemuOptsList qemu_common_drive_opts = { 44634d454574SPaolo Bonzini .name = "drive", 44640006383eSKevin Wolf .head = QTAILQ_HEAD_INITIALIZER(qemu_common_drive_opts.head), 44654d454574SPaolo Bonzini .desc = { 44664d454574SPaolo Bonzini { 44674d454574SPaolo Bonzini .name = "snapshot", 44684d454574SPaolo Bonzini .type = QEMU_OPT_BOOL, 44694d454574SPaolo Bonzini .help = "enable/disable snapshot mode", 44704d454574SPaolo Bonzini },{ 44714d454574SPaolo Bonzini .name = "aio", 44724d454574SPaolo Bonzini .type = QEMU_OPT_STRING, 44734d454574SPaolo Bonzini .help = "host AIO implementation (threads, native)", 44744d454574SPaolo Bonzini },{ 4475e4b24b49SKevin Wolf .name = BDRV_OPT_CACHE_WB, 4476e4b24b49SKevin Wolf .type = QEMU_OPT_BOOL, 4477e4b24b49SKevin Wolf .help = "Enable writeback mode", 4478e4b24b49SKevin Wolf },{ 44794d454574SPaolo Bonzini .name = "format", 44804d454574SPaolo Bonzini .type = QEMU_OPT_STRING, 44814d454574SPaolo Bonzini .help = "disk format (raw, qcow2, ...)", 44824d454574SPaolo Bonzini },{ 44834d454574SPaolo Bonzini .name = "rerror", 44844d454574SPaolo Bonzini .type = QEMU_OPT_STRING, 44854d454574SPaolo Bonzini .help = "read error action", 44864d454574SPaolo Bonzini },{ 44874d454574SPaolo Bonzini .name = "werror", 44884d454574SPaolo Bonzini .type = QEMU_OPT_STRING, 44894d454574SPaolo Bonzini .help = "write error action", 44904d454574SPaolo Bonzini },{ 44914e200cf8SAlberto Garcia .name = BDRV_OPT_READ_ONLY, 44924d454574SPaolo Bonzini .type = QEMU_OPT_BOOL, 44934d454574SPaolo Bonzini .help = "open drive file as read-only", 4494a2a7862cSPradeep Jagadeesh }, 4495a2a7862cSPradeep Jagadeesh 4496a2a7862cSPradeep Jagadeesh THROTTLE_OPTS, 4497a2a7862cSPradeep Jagadeesh 4498a2a7862cSPradeep Jagadeesh { 449976f4afb4SAlberto Garcia .name = "throttling.group", 450076f4afb4SAlberto Garcia .type = QEMU_OPT_STRING, 450176f4afb4SAlberto Garcia .help = "name of the block throttling group", 450276f4afb4SAlberto Garcia },{ 45034d454574SPaolo Bonzini .name = "copy-on-read", 45044d454574SPaolo Bonzini .type = QEMU_OPT_BOOL, 45054d454574SPaolo Bonzini .help = "copy read data from backing file into image file", 4506465bee1dSPeter Lieven },{ 4507465bee1dSPeter Lieven .name = "detect-zeroes", 4508465bee1dSPeter Lieven .type = QEMU_OPT_STRING, 4509465bee1dSPeter Lieven .help = "try to optimize zero writes (off, on, unmap)", 4510362e9299SAlberto Garcia },{ 4511362e9299SAlberto Garcia .name = "stats-account-invalid", 4512362e9299SAlberto Garcia .type = QEMU_OPT_BOOL, 4513362e9299SAlberto Garcia .help = "whether to account for invalid I/O operations " 4514362e9299SAlberto Garcia "in the statistics", 4515362e9299SAlberto Garcia },{ 4516362e9299SAlberto Garcia .name = "stats-account-failed", 4517362e9299SAlberto Garcia .type = QEMU_OPT_BOOL, 4518362e9299SAlberto Garcia .help = "whether to account for failed I/O operations " 4519362e9299SAlberto Garcia "in the statistics", 45204d454574SPaolo Bonzini }, 45214d454574SPaolo Bonzini { /* end of list */ } 45224d454574SPaolo Bonzini }, 45234d454574SPaolo Bonzini }; 45240006383eSKevin Wolf 45250006383eSKevin Wolf QemuOptsList qemu_drive_opts = { 45260006383eSKevin Wolf .name = "drive", 45270006383eSKevin Wolf .head = QTAILQ_HEAD_INITIALIZER(qemu_drive_opts.head), 45280006383eSKevin Wolf .desc = { 4529492fdc6fSKevin Wolf /* 4530492fdc6fSKevin Wolf * no elements => accept any params 4531492fdc6fSKevin Wolf * validation will happen later 4532492fdc6fSKevin Wolf */ 45330006383eSKevin Wolf { /* end of list */ } 45340006383eSKevin Wolf }, 45350006383eSKevin Wolf }; 4536