Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1 | /* |
| 2 | * QEMU host block devices |
| 3 | * |
| 4 | * Copyright (c) 2003-2008 Fabrice Bellard |
| 5 | * |
| 6 | * This work is licensed under the terms of the GNU GPL, version 2 or |
| 7 | * later. See the COPYING file in the top-level directory. |
Markus Armbruster | 3618a09 | 2013-03-14 13:59:53 +0100 | [diff] [blame] | 8 | * |
| 9 | * This file incorporates work covered by the following copyright and |
| 10 | * permission notice: |
| 11 | * |
| 12 | * Copyright (c) 2003-2008 Fabrice Bellard |
| 13 | * |
| 14 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 15 | * of this software and associated documentation files (the "Software"), to deal |
| 16 | * in the Software without restriction, including without limitation the rights |
| 17 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 18 | * copies of the Software, and to permit persons to whom the Software is |
| 19 | * furnished to do so, subject to the following conditions: |
| 20 | * |
| 21 | * The above copyright notice and this permission notice shall be included in |
| 22 | * all copies or substantial portions of the Software. |
| 23 | * |
| 24 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 25 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 26 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 27 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 28 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 29 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 30 | * THE SOFTWARE. |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 31 | */ |
| 32 | |
Paolo Bonzini | 9c17d61 | 2012-12-17 18:20:04 +0100 | [diff] [blame] | 33 | #include "sysemu/blockdev.h" |
Paolo Bonzini | 0d09e41 | 2013-02-05 17:06:20 +0100 | [diff] [blame] | 34 | #include "hw/block/block.h" |
Paolo Bonzini | 737e150 | 2012-12-17 18:19:44 +0100 | [diff] [blame] | 35 | #include "block/blockjob.h" |
Paolo Bonzini | 83c9089 | 2012-12-17 18:19:49 +0100 | [diff] [blame] | 36 | #include "monitor/monitor.h" |
Paolo Bonzini | 7b1b5d1 | 2012-12-17 18:19:43 +0100 | [diff] [blame] | 37 | #include "qapi/qmp/qerror.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 38 | #include "qemu/option.h" |
| 39 | #include "qemu/config-file.h" |
Paolo Bonzini | 7b1b5d1 | 2012-12-17 18:19:43 +0100 | [diff] [blame] | 40 | #include "qapi/qmp/types.h" |
Kevin Wolf | d26c9a1 | 2013-09-23 15:26:03 +0200 | [diff] [blame] | 41 | #include "qapi-visit.h" |
| 42 | #include "qapi/qmp-output-visitor.h" |
Paolo Bonzini | 9c17d61 | 2012-12-17 18:20:04 +0100 | [diff] [blame] | 43 | #include "sysemu/sysemu.h" |
Paolo Bonzini | 737e150 | 2012-12-17 18:19:44 +0100 | [diff] [blame] | 44 | #include "block/block_int.h" |
Luiz Capitulino | a4dea8a | 2011-11-23 13:28:21 -0200 | [diff] [blame] | 45 | #include "qmp-commands.h" |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 46 | #include "trace.h" |
Paolo Bonzini | 9c17d61 | 2012-12-17 18:20:04 +0100 | [diff] [blame] | 47 | #include "sysemu/arch_init.h" |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 48 | |
Markus Armbruster | c9b62a7 | 2010-06-02 18:55:22 +0200 | [diff] [blame] | 49 | static QTAILQ_HEAD(drivelist, DriveInfo) drives = QTAILQ_HEAD_INITIALIZER(drives); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 50 | |
Markus Armbruster | 1960966 | 2011-01-28 11:21:39 +0100 | [diff] [blame] | 51 | static const char *const if_name[IF_COUNT] = { |
| 52 | [IF_NONE] = "none", |
| 53 | [IF_IDE] = "ide", |
| 54 | [IF_SCSI] = "scsi", |
| 55 | [IF_FLOPPY] = "floppy", |
| 56 | [IF_PFLASH] = "pflash", |
| 57 | [IF_MTD] = "mtd", |
| 58 | [IF_SD] = "sd", |
| 59 | [IF_VIRTIO] = "virtio", |
| 60 | [IF_XEN] = "xen", |
| 61 | }; |
| 62 | |
| 63 | static const int if_max_devs[IF_COUNT] = { |
Markus Armbruster | 27d6bf4 | 2011-01-28 11:21:40 +0100 | [diff] [blame] | 64 | /* |
| 65 | * Do not change these numbers! They govern how drive option |
| 66 | * index maps to unit and bus. That mapping is ABI. |
| 67 | * |
| 68 | * All controllers used to imlement if=T drives need to support |
| 69 | * if_max_devs[T] units, for any T with if_max_devs[T] != 0. |
| 70 | * Otherwise, some index values map to "impossible" bus, unit |
| 71 | * values. |
| 72 | * |
| 73 | * For instance, if you change [IF_SCSI] to 255, -drive |
| 74 | * if=scsi,index=12 no longer means bus=1,unit=5, but |
| 75 | * bus=0,unit=12. With an lsi53c895a controller (7 units max), |
| 76 | * the drive can't be set up. Regression. |
| 77 | */ |
| 78 | [IF_IDE] = 2, |
| 79 | [IF_SCSI] = 7, |
Markus Armbruster | 1960966 | 2011-01-28 11:21:39 +0100 | [diff] [blame] | 80 | }; |
| 81 | |
Markus Armbruster | 14bafc5 | 2010-06-25 08:09:10 +0200 | [diff] [blame] | 82 | /* |
| 83 | * We automatically delete the drive when a device using it gets |
| 84 | * unplugged. Questionable feature, but we can't just drop it. |
| 85 | * Device models call blockdev_mark_auto_del() to schedule the |
| 86 | * automatic deletion, and generic qdev code calls blockdev_auto_del() |
| 87 | * when deletion is actually safe. |
| 88 | */ |
| 89 | void blockdev_mark_auto_del(BlockDriverState *bs) |
| 90 | { |
| 91 | DriveInfo *dinfo = drive_get_by_blockdev(bs); |
| 92 | |
Kevin Wolf | 2d246f0 | 2013-09-18 15:14:47 +0200 | [diff] [blame] | 93 | if (dinfo && !dinfo->enable_auto_del) { |
| 94 | return; |
| 95 | } |
| 96 | |
Paolo Bonzini | 12bde0e | 2012-03-30 13:17:10 +0200 | [diff] [blame] | 97 | if (bs->job) { |
| 98 | block_job_cancel(bs->job); |
| 99 | } |
Ryan Harper | 0fc0f1f | 2010-12-08 10:05:00 -0600 | [diff] [blame] | 100 | if (dinfo) { |
| 101 | dinfo->auto_del = 1; |
| 102 | } |
Markus Armbruster | 14bafc5 | 2010-06-25 08:09:10 +0200 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | void blockdev_auto_del(BlockDriverState *bs) |
| 106 | { |
| 107 | DriveInfo *dinfo = drive_get_by_blockdev(bs); |
| 108 | |
Ryan Harper | 0fc0f1f | 2010-12-08 10:05:00 -0600 | [diff] [blame] | 109 | if (dinfo && dinfo->auto_del) { |
Marcelo Tosatti | 84fb392 | 2011-01-26 12:12:32 -0200 | [diff] [blame] | 110 | drive_put_ref(dinfo); |
Markus Armbruster | 14bafc5 | 2010-06-25 08:09:10 +0200 | [diff] [blame] | 111 | } |
| 112 | } |
| 113 | |
Markus Armbruster | 505a7fb | 2011-01-28 11:21:43 +0100 | [diff] [blame] | 114 | static int drive_index_to_bus_id(BlockInterfaceType type, int index) |
| 115 | { |
| 116 | int max_devs = if_max_devs[type]; |
| 117 | return max_devs ? index / max_devs : 0; |
| 118 | } |
| 119 | |
| 120 | static int drive_index_to_unit_id(BlockInterfaceType type, int index) |
| 121 | { |
| 122 | int max_devs = if_max_devs[type]; |
| 123 | return max_devs ? index % max_devs : index; |
| 124 | } |
| 125 | |
Markus Armbruster | 2292dda | 2011-01-28 11:21:41 +0100 | [diff] [blame] | 126 | QemuOpts *drive_def(const char *optstr) |
| 127 | { |
| 128 | return qemu_opts_parse(qemu_find_opts("drive"), optstr, 0); |
| 129 | } |
| 130 | |
| 131 | QemuOpts *drive_add(BlockInterfaceType type, int index, const char *file, |
Markus Armbruster | 5645b0f | 2011-01-31 11:50:09 +0100 | [diff] [blame] | 132 | const char *optstr) |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 133 | { |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 134 | QemuOpts *opts; |
Markus Armbruster | 2292dda | 2011-01-28 11:21:41 +0100 | [diff] [blame] | 135 | char buf[32]; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 136 | |
Markus Armbruster | 2292dda | 2011-01-28 11:21:41 +0100 | [diff] [blame] | 137 | opts = drive_def(optstr); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 138 | if (!opts) { |
| 139 | return NULL; |
| 140 | } |
Markus Armbruster | 2292dda | 2011-01-28 11:21:41 +0100 | [diff] [blame] | 141 | if (type != IF_DEFAULT) { |
| 142 | qemu_opt_set(opts, "if", if_name[type]); |
| 143 | } |
| 144 | if (index >= 0) { |
| 145 | snprintf(buf, sizeof(buf), "%d", index); |
| 146 | qemu_opt_set(opts, "index", buf); |
| 147 | } |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 148 | if (file) |
| 149 | qemu_opt_set(opts, "file", file); |
| 150 | return opts; |
| 151 | } |
| 152 | |
| 153 | DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit) |
| 154 | { |
| 155 | DriveInfo *dinfo; |
| 156 | |
| 157 | /* seek interface, bus and unit */ |
| 158 | |
| 159 | QTAILQ_FOREACH(dinfo, &drives, next) { |
| 160 | if (dinfo->type == type && |
| 161 | dinfo->bus == bus && |
| 162 | dinfo->unit == unit) |
| 163 | return dinfo; |
| 164 | } |
| 165 | |
| 166 | return NULL; |
| 167 | } |
| 168 | |
Markus Armbruster | f1bd51a | 2011-01-28 11:21:44 +0100 | [diff] [blame] | 169 | DriveInfo *drive_get_by_index(BlockInterfaceType type, int index) |
| 170 | { |
| 171 | return drive_get(type, |
| 172 | drive_index_to_bus_id(type, index), |
| 173 | drive_index_to_unit_id(type, index)); |
| 174 | } |
| 175 | |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 176 | int drive_get_max_bus(BlockInterfaceType type) |
| 177 | { |
| 178 | int max_bus; |
| 179 | DriveInfo *dinfo; |
| 180 | |
| 181 | max_bus = -1; |
| 182 | QTAILQ_FOREACH(dinfo, &drives, next) { |
| 183 | if(dinfo->type == type && |
| 184 | dinfo->bus > max_bus) |
| 185 | max_bus = dinfo->bus; |
| 186 | } |
| 187 | return max_bus; |
| 188 | } |
| 189 | |
Markus Armbruster | 1383997 | 2011-01-28 11:21:37 +0100 | [diff] [blame] | 190 | /* Get a block device. This should only be used for single-drive devices |
| 191 | (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the |
| 192 | appropriate bus. */ |
| 193 | DriveInfo *drive_get_next(BlockInterfaceType type) |
| 194 | { |
| 195 | static int next_block_unit[IF_COUNT]; |
| 196 | |
| 197 | return drive_get(type, 0, next_block_unit[type]++); |
| 198 | } |
| 199 | |
Markus Armbruster | e4700e5 | 2010-06-24 17:25:32 +0200 | [diff] [blame] | 200 | DriveInfo *drive_get_by_blockdev(BlockDriverState *bs) |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 201 | { |
| 202 | DriveInfo *dinfo; |
| 203 | |
| 204 | QTAILQ_FOREACH(dinfo, &drives, next) { |
Markus Armbruster | e4700e5 | 2010-06-24 17:25:32 +0200 | [diff] [blame] | 205 | if (dinfo->bdrv == bs) { |
| 206 | return dinfo; |
| 207 | } |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 208 | } |
Markus Armbruster | e4700e5 | 2010-06-24 17:25:32 +0200 | [diff] [blame] | 209 | return NULL; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 210 | } |
| 211 | |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 212 | static void bdrv_format_print(void *opaque, const char *name) |
| 213 | { |
Markus Armbruster | 807105a | 2011-01-17 19:31:27 +0100 | [diff] [blame] | 214 | error_printf(" %s", name); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 215 | } |
| 216 | |
Marcelo Tosatti | 84fb392 | 2011-01-26 12:12:32 -0200 | [diff] [blame] | 217 | static void drive_uninit(DriveInfo *dinfo) |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 218 | { |
Kevin Wolf | f298d07 | 2013-09-10 12:01:20 +0200 | [diff] [blame] | 219 | if (dinfo->opts) { |
| 220 | qemu_opts_del(dinfo->opts); |
| 221 | } |
| 222 | |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 223 | bdrv_unref(dinfo->bdrv); |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 224 | g_free(dinfo->id); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 225 | QTAILQ_REMOVE(&drives, dinfo, next); |
Kevin Wolf | bb44619 | 2013-03-15 10:35:06 +0100 | [diff] [blame] | 226 | g_free(dinfo->serial); |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 227 | g_free(dinfo); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 228 | } |
| 229 | |
Marcelo Tosatti | 84fb392 | 2011-01-26 12:12:32 -0200 | [diff] [blame] | 230 | void drive_put_ref(DriveInfo *dinfo) |
| 231 | { |
| 232 | assert(dinfo->refcount); |
| 233 | if (--dinfo->refcount == 0) { |
| 234 | drive_uninit(dinfo); |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | void drive_get_ref(DriveInfo *dinfo) |
| 239 | { |
| 240 | dinfo->refcount++; |
| 241 | } |
| 242 | |
Stefan Hajnoczi | aa398a5 | 2012-01-18 14:40:50 +0000 | [diff] [blame] | 243 | typedef struct { |
| 244 | QEMUBH *bh; |
Fam Zheng | fa510eb | 2013-08-23 09:14:51 +0800 | [diff] [blame] | 245 | BlockDriverState *bs; |
| 246 | } BDRVPutRefBH; |
Stefan Hajnoczi | aa398a5 | 2012-01-18 14:40:50 +0000 | [diff] [blame] | 247 | |
Fam Zheng | fa510eb | 2013-08-23 09:14:51 +0800 | [diff] [blame] | 248 | static void bdrv_put_ref_bh(void *opaque) |
Stefan Hajnoczi | aa398a5 | 2012-01-18 14:40:50 +0000 | [diff] [blame] | 249 | { |
Fam Zheng | fa510eb | 2013-08-23 09:14:51 +0800 | [diff] [blame] | 250 | BDRVPutRefBH *s = opaque; |
Stefan Hajnoczi | aa398a5 | 2012-01-18 14:40:50 +0000 | [diff] [blame] | 251 | |
Fam Zheng | fa510eb | 2013-08-23 09:14:51 +0800 | [diff] [blame] | 252 | bdrv_unref(s->bs); |
Stefan Hajnoczi | aa398a5 | 2012-01-18 14:40:50 +0000 | [diff] [blame] | 253 | qemu_bh_delete(s->bh); |
| 254 | g_free(s); |
| 255 | } |
| 256 | |
| 257 | /* |
Fam Zheng | fa510eb | 2013-08-23 09:14:51 +0800 | [diff] [blame] | 258 | * Release a BDS reference in a BH |
Stefan Hajnoczi | aa398a5 | 2012-01-18 14:40:50 +0000 | [diff] [blame] | 259 | * |
Fam Zheng | fa510eb | 2013-08-23 09:14:51 +0800 | [diff] [blame] | 260 | * It is not safe to use bdrv_unref() from a callback function when the callers |
| 261 | * still need the BlockDriverState. In such cases we schedule a BH to release |
| 262 | * the reference. |
Stefan Hajnoczi | aa398a5 | 2012-01-18 14:40:50 +0000 | [diff] [blame] | 263 | */ |
Fam Zheng | fa510eb | 2013-08-23 09:14:51 +0800 | [diff] [blame] | 264 | static void bdrv_put_ref_bh_schedule(BlockDriverState *bs) |
Stefan Hajnoczi | aa398a5 | 2012-01-18 14:40:50 +0000 | [diff] [blame] | 265 | { |
Fam Zheng | fa510eb | 2013-08-23 09:14:51 +0800 | [diff] [blame] | 266 | BDRVPutRefBH *s; |
Stefan Hajnoczi | aa398a5 | 2012-01-18 14:40:50 +0000 | [diff] [blame] | 267 | |
Fam Zheng | fa510eb | 2013-08-23 09:14:51 +0800 | [diff] [blame] | 268 | s = g_new(BDRVPutRefBH, 1); |
| 269 | s->bh = qemu_bh_new(bdrv_put_ref_bh, s); |
| 270 | s->bs = bs; |
Stefan Hajnoczi | aa398a5 | 2012-01-18 14:40:50 +0000 | [diff] [blame] | 271 | qemu_bh_schedule(s->bh); |
| 272 | } |
| 273 | |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 274 | static int parse_block_error_action(const char *buf, bool is_read, Error **errp) |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 275 | { |
| 276 | if (!strcmp(buf, "ignore")) { |
Paolo Bonzini | 92aa5c6 | 2012-09-28 17:22:55 +0200 | [diff] [blame] | 277 | return BLOCKDEV_ON_ERROR_IGNORE; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 278 | } else if (!is_read && !strcmp(buf, "enospc")) { |
Paolo Bonzini | 92aa5c6 | 2012-09-28 17:22:55 +0200 | [diff] [blame] | 279 | return BLOCKDEV_ON_ERROR_ENOSPC; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 280 | } else if (!strcmp(buf, "stop")) { |
Paolo Bonzini | 92aa5c6 | 2012-09-28 17:22:55 +0200 | [diff] [blame] | 281 | return BLOCKDEV_ON_ERROR_STOP; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 282 | } else if (!strcmp(buf, "report")) { |
Paolo Bonzini | 92aa5c6 | 2012-09-28 17:22:55 +0200 | [diff] [blame] | 283 | return BLOCKDEV_ON_ERROR_REPORT; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 284 | } else { |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 285 | error_setg(errp, "'%s' invalid %s error action", |
| 286 | buf, is_read ? "read" : "write"); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 287 | return -1; |
| 288 | } |
| 289 | } |
| 290 | |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 291 | static bool check_throttle_config(ThrottleConfig *cfg, Error **errp) |
Zhi Yong Wu | 0563e19 | 2011-11-03 16:57:25 +0800 | [diff] [blame] | 292 | { |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 293 | if (throttle_conflicting(cfg)) { |
| 294 | error_setg(errp, "bps/iops/max total values and read/write values" |
| 295 | " cannot be used at the same time"); |
Zhi Yong Wu | 0563e19 | 2011-11-03 16:57:25 +0800 | [diff] [blame] | 296 | return false; |
| 297 | } |
| 298 | |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 299 | if (!throttle_is_valid(cfg)) { |
| 300 | error_setg(errp, "bps/iops/maxs values must be 0 or greater"); |
Stefan Hajnoczi | 7d81c14 | 2013-02-13 16:53:43 +0100 | [diff] [blame] | 301 | return false; |
| 302 | } |
| 303 | |
Zhi Yong Wu | 0563e19 | 2011-11-03 16:57:25 +0800 | [diff] [blame] | 304 | return true; |
| 305 | } |
| 306 | |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 307 | typedef enum { MEDIA_DISK, MEDIA_CDROM } DriveMediaType; |
| 308 | |
Kevin Wolf | f298d07 | 2013-09-10 12:01:20 +0200 | [diff] [blame] | 309 | /* Takes the ownership of bs_opts */ |
| 310 | static DriveInfo *blockdev_init(QDict *bs_opts, |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 311 | BlockInterfaceType type, |
| 312 | Error **errp) |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 313 | { |
| 314 | const char *buf; |
| 315 | const char *file = NULL; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 316 | const char *serial; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 317 | int ro = 0; |
| 318 | int bdrv_flags = 0; |
| 319 | int on_read_error, on_write_error; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 320 | DriveInfo *dinfo; |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 321 | ThrottleConfig cfg; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 322 | int snapshot = 0; |
Stefan Hajnoczi | fb0490f | 2011-11-17 13:40:32 +0000 | [diff] [blame] | 323 | bool copy_on_read; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 324 | int ret; |
Stefan Hajnoczi | c546194 | 2013-02-13 16:53:42 +0100 | [diff] [blame] | 325 | Error *error = NULL; |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 326 | QemuOpts *opts; |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 327 | const char *id; |
Kevin Wolf | 74fe54f | 2013-07-09 11:09:02 +0200 | [diff] [blame] | 328 | bool has_driver_specific_opts; |
Mike Qiu | 6db5f5d | 2013-08-08 10:45:16 -0400 | [diff] [blame] | 329 | BlockDriver *drv = NULL; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 330 | |
Kevin Wolf | f298d07 | 2013-09-10 12:01:20 +0200 | [diff] [blame] | 331 | /* Check common options by copying from bs_opts to opts, all other options |
| 332 | * stay in bs_opts for processing by bdrv_open(). */ |
| 333 | id = qdict_get_try_str(bs_opts, "id"); |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 334 | opts = qemu_opts_create(&qemu_common_drive_opts, id, 1, &error); |
| 335 | if (error_is_set(&error)) { |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 336 | error_propagate(errp, error); |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 337 | return NULL; |
| 338 | } |
| 339 | |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 340 | qemu_opts_absorb_qdict(opts, bs_opts, &error); |
| 341 | if (error_is_set(&error)) { |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 342 | error_propagate(errp, error); |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 343 | goto early_err; |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | if (id) { |
| 347 | qdict_del(bs_opts, "id"); |
| 348 | } |
| 349 | |
Kevin Wolf | 74fe54f | 2013-07-09 11:09:02 +0200 | [diff] [blame] | 350 | has_driver_specific_opts = !!qdict_size(bs_opts); |
| 351 | |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 352 | /* extract parameters */ |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 353 | snapshot = qemu_opt_get_bool(opts, "snapshot", 0); |
Kevin Wolf | 0f227a9 | 2013-07-19 20:07:29 +0200 | [diff] [blame] | 354 | ro = qemu_opt_get_bool(opts, "read-only", 0); |
Stefan Hajnoczi | fb0490f | 2011-11-17 13:40:32 +0000 | [diff] [blame] | 355 | copy_on_read = qemu_opt_get_bool(opts, "copy-on-read", false); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 356 | |
| 357 | file = qemu_opt_get(opts, "file"); |
| 358 | serial = qemu_opt_get(opts, "serial"); |
| 359 | |
Paolo Bonzini | a9384af | 2013-02-08 14:06:12 +0100 | [diff] [blame] | 360 | if ((buf = qemu_opt_get(opts, "discard")) != NULL) { |
| 361 | if (bdrv_parse_discard_flags(buf, &bdrv_flags) != 0) { |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 362 | error_setg(errp, "invalid discard option"); |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 363 | goto early_err; |
Paolo Bonzini | a9384af | 2013-02-08 14:06:12 +0100 | [diff] [blame] | 364 | } |
| 365 | } |
| 366 | |
Kevin Wolf | 29c4e2b | 2013-07-18 16:31:25 +0200 | [diff] [blame] | 367 | if (qemu_opt_get_bool(opts, "cache.writeback", true)) { |
| 368 | bdrv_flags |= BDRV_O_CACHE_WB; |
| 369 | } |
| 370 | if (qemu_opt_get_bool(opts, "cache.direct", false)) { |
| 371 | bdrv_flags |= BDRV_O_NOCACHE; |
| 372 | } |
Paolo Bonzini | 1df6fa4 | 2013-09-19 18:48:53 +0200 | [diff] [blame] | 373 | if (qemu_opt_get_bool(opts, "cache.no-flush", false)) { |
Kevin Wolf | 29c4e2b | 2013-07-18 16:31:25 +0200 | [diff] [blame] | 374 | bdrv_flags |= BDRV_O_NO_FLUSH; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 375 | } |
| 376 | |
| 377 | #ifdef CONFIG_LINUX_AIO |
| 378 | if ((buf = qemu_opt_get(opts, "aio")) != NULL) { |
| 379 | if (!strcmp(buf, "native")) { |
| 380 | bdrv_flags |= BDRV_O_NATIVE_AIO; |
| 381 | } else if (!strcmp(buf, "threads")) { |
| 382 | /* this is the default */ |
| 383 | } else { |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 384 | error_setg(errp, "invalid aio option"); |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 385 | goto early_err; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 386 | } |
| 387 | } |
| 388 | #endif |
| 389 | |
| 390 | if ((buf = qemu_opt_get(opts, "format")) != NULL) { |
Peter Maydell | c8057f9 | 2012-08-02 13:45:54 +0100 | [diff] [blame] | 391 | if (is_help_option(buf)) { |
| 392 | error_printf("Supported formats:"); |
| 393 | bdrv_iterate_format(bdrv_format_print, NULL); |
| 394 | error_printf("\n"); |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 395 | goto early_err; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 396 | } |
Kevin Wolf | 74fe54f | 2013-07-09 11:09:02 +0200 | [diff] [blame] | 397 | |
Kevin Wolf | 8f94a6e | 2013-10-10 11:45:55 +0200 | [diff] [blame] | 398 | drv = bdrv_find_format(buf); |
Mike Qiu | 6db5f5d | 2013-08-08 10:45:16 -0400 | [diff] [blame] | 399 | if (!drv) { |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 400 | error_setg(errp, "'%s' invalid format", buf); |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 401 | goto early_err; |
Mike Qiu | 6db5f5d | 2013-08-08 10:45:16 -0400 | [diff] [blame] | 402 | } |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 403 | } |
| 404 | |
Zhi Yong Wu | 0563e19 | 2011-11-03 16:57:25 +0800 | [diff] [blame] | 405 | /* disk I/O throttling */ |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 406 | memset(&cfg, 0, sizeof(cfg)); |
| 407 | cfg.buckets[THROTTLE_BPS_TOTAL].avg = |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 408 | qemu_opt_get_number(opts, "throttling.bps-total", 0); |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 409 | cfg.buckets[THROTTLE_BPS_READ].avg = |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 410 | qemu_opt_get_number(opts, "throttling.bps-read", 0); |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 411 | cfg.buckets[THROTTLE_BPS_WRITE].avg = |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 412 | qemu_opt_get_number(opts, "throttling.bps-write", 0); |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 413 | cfg.buckets[THROTTLE_OPS_TOTAL].avg = |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 414 | qemu_opt_get_number(opts, "throttling.iops-total", 0); |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 415 | cfg.buckets[THROTTLE_OPS_READ].avg = |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 416 | qemu_opt_get_number(opts, "throttling.iops-read", 0); |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 417 | cfg.buckets[THROTTLE_OPS_WRITE].avg = |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 418 | qemu_opt_get_number(opts, "throttling.iops-write", 0); |
Zhi Yong Wu | 0563e19 | 2011-11-03 16:57:25 +0800 | [diff] [blame] | 419 | |
Benoît Canet | 3e9fab6 | 2013-09-02 14:14:40 +0200 | [diff] [blame] | 420 | cfg.buckets[THROTTLE_BPS_TOTAL].max = |
| 421 | qemu_opt_get_number(opts, "throttling.bps-total-max", 0); |
| 422 | cfg.buckets[THROTTLE_BPS_READ].max = |
| 423 | qemu_opt_get_number(opts, "throttling.bps-read-max", 0); |
| 424 | cfg.buckets[THROTTLE_BPS_WRITE].max = |
| 425 | qemu_opt_get_number(opts, "throttling.bps-write-max", 0); |
| 426 | cfg.buckets[THROTTLE_OPS_TOTAL].max = |
| 427 | qemu_opt_get_number(opts, "throttling.iops-total-max", 0); |
| 428 | cfg.buckets[THROTTLE_OPS_READ].max = |
| 429 | qemu_opt_get_number(opts, "throttling.iops-read-max", 0); |
| 430 | cfg.buckets[THROTTLE_OPS_WRITE].max = |
| 431 | qemu_opt_get_number(opts, "throttling.iops-write-max", 0); |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 432 | |
Benoît Canet | 2024c1d | 2013-09-02 14:14:41 +0200 | [diff] [blame] | 433 | cfg.op_size = qemu_opt_get_number(opts, "throttling.iops-size", 0); |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 434 | |
| 435 | if (!check_throttle_config(&cfg, &error)) { |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 436 | error_propagate(errp, error); |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 437 | goto early_err; |
Zhi Yong Wu | 0563e19 | 2011-11-03 16:57:25 +0800 | [diff] [blame] | 438 | } |
| 439 | |
Paolo Bonzini | 92aa5c6 | 2012-09-28 17:22:55 +0200 | [diff] [blame] | 440 | on_write_error = BLOCKDEV_ON_ERROR_ENOSPC; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 441 | if ((buf = qemu_opt_get(opts, "werror")) != NULL) { |
| 442 | if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO && type != IF_NONE) { |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 443 | error_setg(errp, "werror is not supported by this bus type"); |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 444 | goto early_err; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 445 | } |
| 446 | |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 447 | on_write_error = parse_block_error_action(buf, 0, &error); |
| 448 | if (error_is_set(&error)) { |
| 449 | error_propagate(errp, error); |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 450 | goto early_err; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 451 | } |
| 452 | } |
| 453 | |
Paolo Bonzini | 92aa5c6 | 2012-09-28 17:22:55 +0200 | [diff] [blame] | 454 | on_read_error = BLOCKDEV_ON_ERROR_REPORT; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 455 | if ((buf = qemu_opt_get(opts, "rerror")) != NULL) { |
Kevin Wolf | 5dba48a | 2010-10-25 14:52:21 +0200 | [diff] [blame] | 456 | if (type != IF_IDE && type != IF_VIRTIO && type != IF_SCSI && type != IF_NONE) { |
Markus Armbruster | 807105a | 2011-01-17 19:31:27 +0100 | [diff] [blame] | 457 | error_report("rerror is not supported by this bus type"); |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 458 | goto early_err; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 459 | } |
| 460 | |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 461 | on_read_error = parse_block_error_action(buf, 1, &error); |
| 462 | if (error_is_set(&error)) { |
| 463 | error_propagate(errp, error); |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 464 | goto early_err; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 465 | } |
| 466 | } |
| 467 | |
Kevin Wolf | 326642b | 2013-07-11 12:52:34 +0200 | [diff] [blame] | 468 | /* init */ |
| 469 | dinfo = g_malloc0(sizeof(*dinfo)); |
| 470 | dinfo->id = g_strdup(qemu_opts_id(opts)); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 471 | dinfo->bdrv = bdrv_new(dinfo->id); |
Kevin Shanahan | 80dd1aa | 2012-09-21 08:50:22 +0930 | [diff] [blame] | 472 | dinfo->bdrv->open_flags = snapshot ? BDRV_O_SNAPSHOT : 0; |
| 473 | dinfo->bdrv->read_only = ro; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 474 | dinfo->type = type; |
Marcelo Tosatti | 84fb392 | 2011-01-26 12:12:32 -0200 | [diff] [blame] | 475 | dinfo->refcount = 1; |
Kevin Wolf | bb44619 | 2013-03-15 10:35:06 +0100 | [diff] [blame] | 476 | if (serial != NULL) { |
| 477 | dinfo->serial = g_strdup(serial); |
| 478 | } |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 479 | QTAILQ_INSERT_TAIL(&drives, dinfo, next); |
| 480 | |
Markus Armbruster | abd7f68 | 2010-06-02 18:55:17 +0200 | [diff] [blame] | 481 | bdrv_set_on_error(dinfo->bdrv, on_read_error, on_write_error); |
| 482 | |
Zhi Yong Wu | 0563e19 | 2011-11-03 16:57:25 +0800 | [diff] [blame] | 483 | /* disk I/O throttling */ |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 484 | if (throttle_enabled(&cfg)) { |
| 485 | bdrv_io_limits_enable(dinfo->bdrv); |
| 486 | bdrv_set_io_limits(dinfo->bdrv, &cfg); |
| 487 | } |
Zhi Yong Wu | 0563e19 | 2011-11-03 16:57:25 +0800 | [diff] [blame] | 488 | |
Markus Armbruster | dd5b0d7 | 2010-05-11 15:36:46 +0200 | [diff] [blame] | 489 | if (!file || !*file) { |
Kevin Wolf | 74fe54f | 2013-07-09 11:09:02 +0200 | [diff] [blame] | 490 | if (has_driver_specific_opts) { |
Kevin Wolf | c2ad1b0 | 2013-03-18 16:40:51 +0100 | [diff] [blame] | 491 | file = NULL; |
| 492 | } else { |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 493 | QDECREF(bs_opts); |
| 494 | qemu_opts_del(opts); |
Kevin Wolf | c2ad1b0 | 2013-03-18 16:40:51 +0100 | [diff] [blame] | 495 | return dinfo; |
| 496 | } |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 497 | } |
| 498 | if (snapshot) { |
| 499 | /* always use cache=unsafe with snapshot */ |
| 500 | bdrv_flags &= ~BDRV_O_CACHE_MASK; |
| 501 | bdrv_flags |= (BDRV_O_SNAPSHOT|BDRV_O_CACHE_WB|BDRV_O_NO_FLUSH); |
| 502 | } |
| 503 | |
Stefan Hajnoczi | fb0490f | 2011-11-17 13:40:32 +0000 | [diff] [blame] | 504 | if (copy_on_read) { |
| 505 | bdrv_flags |= BDRV_O_COPY_ON_READ; |
| 506 | } |
| 507 | |
Benoît Canet | ed9d420 | 2012-03-23 08:36:50 +0100 | [diff] [blame] | 508 | if (runstate_check(RUN_STATE_INMIGRATE)) { |
| 509 | bdrv_flags |= BDRV_O_INCOMING; |
| 510 | } |
| 511 | |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 512 | bdrv_flags |= ro ? 0 : BDRV_O_RDWR; |
| 513 | |
Kevin Wolf | 74fe54f | 2013-07-09 11:09:02 +0200 | [diff] [blame] | 514 | QINCREF(bs_opts); |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 515 | ret = bdrv_open(dinfo->bdrv, file, bs_opts, bdrv_flags, drv, &error); |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 516 | |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 517 | if (ret < 0) { |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 518 | error_setg(errp, "could not open disk image %s: %s", |
| 519 | file ?: dinfo->id, error_get_pretty(error)); |
| 520 | error_free(error); |
Markus Armbruster | a9ae2bf | 2011-02-08 15:12:39 +0100 | [diff] [blame] | 521 | goto err; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 522 | } |
| 523 | |
| 524 | if (bdrv_key_required(dinfo->bdrv)) |
| 525 | autostart = 0; |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 526 | |
Kevin Wolf | 74fe54f | 2013-07-09 11:09:02 +0200 | [diff] [blame] | 527 | QDECREF(bs_opts); |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 528 | qemu_opts_del(opts); |
| 529 | |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 530 | return dinfo; |
Markus Armbruster | a9ae2bf | 2011-02-08 15:12:39 +0100 | [diff] [blame] | 531 | |
| 532 | err: |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 533 | bdrv_unref(dinfo->bdrv); |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 534 | g_free(dinfo->id); |
Markus Armbruster | a9ae2bf | 2011-02-08 15:12:39 +0100 | [diff] [blame] | 535 | QTAILQ_REMOVE(&drives, dinfo, next); |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 536 | g_free(dinfo); |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 537 | early_err: |
| 538 | QDECREF(bs_opts); |
| 539 | qemu_opts_del(opts); |
Markus Armbruster | a9ae2bf | 2011-02-08 15:12:39 +0100 | [diff] [blame] | 540 | return NULL; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 541 | } |
| 542 | |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 543 | static void qemu_opt_rename(QemuOpts *opts, const char *from, const char *to) |
| 544 | { |
| 545 | const char *value; |
| 546 | |
| 547 | value = qemu_opt_get(opts, from); |
| 548 | if (value) { |
| 549 | qemu_opt_set(opts, to, value); |
| 550 | qemu_opt_unset(opts, from); |
| 551 | } |
| 552 | } |
| 553 | |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 554 | QemuOptsList qemu_legacy_drive_opts = { |
| 555 | .name = "drive", |
| 556 | .head = QTAILQ_HEAD_INITIALIZER(qemu_legacy_drive_opts.head), |
| 557 | .desc = { |
| 558 | { |
Kevin Wolf | 87a899c | 2013-09-10 15:48:13 +0200 | [diff] [blame] | 559 | .name = "bus", |
| 560 | .type = QEMU_OPT_NUMBER, |
| 561 | .help = "bus number", |
| 562 | },{ |
| 563 | .name = "unit", |
| 564 | .type = QEMU_OPT_NUMBER, |
| 565 | .help = "unit number (i.e. lun for scsi)", |
| 566 | },{ |
| 567 | .name = "index", |
| 568 | .type = QEMU_OPT_NUMBER, |
| 569 | .help = "index number", |
| 570 | },{ |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 571 | .name = "media", |
| 572 | .type = QEMU_OPT_STRING, |
| 573 | .help = "media type (disk, cdrom)", |
Kevin Wolf | 593d464 | 2013-08-28 17:24:51 +0200 | [diff] [blame] | 574 | },{ |
| 575 | .name = "if", |
| 576 | .type = QEMU_OPT_STRING, |
| 577 | .help = "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)", |
Kevin Wolf | b41a733 | 2013-09-09 16:49:49 +0200 | [diff] [blame] | 578 | },{ |
| 579 | .name = "cyls", |
| 580 | .type = QEMU_OPT_NUMBER, |
| 581 | .help = "number of cylinders (ide disk geometry)", |
| 582 | },{ |
| 583 | .name = "heads", |
| 584 | .type = QEMU_OPT_NUMBER, |
| 585 | .help = "number of heads (ide disk geometry)", |
| 586 | },{ |
| 587 | .name = "secs", |
| 588 | .type = QEMU_OPT_NUMBER, |
| 589 | .help = "number of sectors (ide disk geometry)", |
| 590 | },{ |
| 591 | .name = "trans", |
| 592 | .type = QEMU_OPT_STRING, |
| 593 | .help = "chs translation (auto, lba, none)", |
Kevin Wolf | 2692929 | 2013-09-09 17:01:03 +0200 | [diff] [blame] | 594 | },{ |
| 595 | .name = "boot", |
| 596 | .type = QEMU_OPT_BOOL, |
| 597 | .help = "(deprecated, ignored)", |
Kevin Wolf | 394c7d4 | 2013-09-13 14:09:17 +0200 | [diff] [blame] | 598 | },{ |
| 599 | .name = "addr", |
| 600 | .type = QEMU_OPT_STRING, |
| 601 | .help = "pci address (virtio only)", |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 602 | }, |
Kevin Wolf | 0ebd24e | 2013-09-19 15:12:18 +0200 | [diff] [blame] | 603 | |
| 604 | /* Options that are passed on, but have special semantics with -drive */ |
| 605 | { |
| 606 | .name = "read-only", |
| 607 | .type = QEMU_OPT_BOOL, |
| 608 | .help = "open drive file as read-only", |
| 609 | },{ |
| 610 | .name = "copy-on-read", |
| 611 | .type = QEMU_OPT_BOOL, |
| 612 | .help = "copy read data from backing file into image file", |
| 613 | }, |
| 614 | |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 615 | { /* end of list */ } |
| 616 | }, |
| 617 | }; |
| 618 | |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 619 | DriveInfo *drive_init(QemuOpts *all_opts, BlockInterfaceType block_default_type) |
| 620 | { |
Kevin Wolf | 29c4e2b | 2013-07-18 16:31:25 +0200 | [diff] [blame] | 621 | const char *value; |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 622 | DriveInfo *dinfo = NULL; |
Kevin Wolf | f298d07 | 2013-09-10 12:01:20 +0200 | [diff] [blame] | 623 | QDict *bs_opts; |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 624 | QemuOpts *legacy_opts; |
| 625 | DriveMediaType media = MEDIA_DISK; |
Kevin Wolf | 593d464 | 2013-08-28 17:24:51 +0200 | [diff] [blame] | 626 | BlockInterfaceType type; |
Kevin Wolf | b41a733 | 2013-09-09 16:49:49 +0200 | [diff] [blame] | 627 | int cyls, heads, secs, translation; |
Kevin Wolf | 87a899c | 2013-09-10 15:48:13 +0200 | [diff] [blame] | 628 | int max_devs, bus_id, unit_id, index; |
Kevin Wolf | 394c7d4 | 2013-09-13 14:09:17 +0200 | [diff] [blame] | 629 | const char *devaddr; |
Fam Zheng | a7fdbcf | 2013-10-15 17:45:50 +0800 | [diff] [blame] | 630 | bool read_only = false; |
| 631 | bool copy_on_read; |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 632 | Error *local_err = NULL; |
Kevin Wolf | 29c4e2b | 2013-07-18 16:31:25 +0200 | [diff] [blame] | 633 | |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 634 | /* Change legacy command line options into QMP ones */ |
| 635 | qemu_opt_rename(all_opts, "iops", "throttling.iops-total"); |
| 636 | qemu_opt_rename(all_opts, "iops_rd", "throttling.iops-read"); |
| 637 | qemu_opt_rename(all_opts, "iops_wr", "throttling.iops-write"); |
| 638 | |
| 639 | qemu_opt_rename(all_opts, "bps", "throttling.bps-total"); |
| 640 | qemu_opt_rename(all_opts, "bps_rd", "throttling.bps-read"); |
| 641 | qemu_opt_rename(all_opts, "bps_wr", "throttling.bps-write"); |
| 642 | |
Benoît Canet | 3e9fab6 | 2013-09-02 14:14:40 +0200 | [diff] [blame] | 643 | qemu_opt_rename(all_opts, "iops_max", "throttling.iops-total-max"); |
| 644 | qemu_opt_rename(all_opts, "iops_rd_max", "throttling.iops-read-max"); |
| 645 | qemu_opt_rename(all_opts, "iops_wr_max", "throttling.iops-write-max"); |
| 646 | |
| 647 | qemu_opt_rename(all_opts, "bps_max", "throttling.bps-total-max"); |
| 648 | qemu_opt_rename(all_opts, "bps_rd_max", "throttling.bps-read-max"); |
| 649 | qemu_opt_rename(all_opts, "bps_wr_max", "throttling.bps-write-max"); |
| 650 | |
Benoît Canet | 2024c1d | 2013-09-02 14:14:41 +0200 | [diff] [blame] | 651 | qemu_opt_rename(all_opts, |
| 652 | "iops_size", "throttling.iops-size"); |
| 653 | |
Kevin Wolf | 0f227a9 | 2013-07-19 20:07:29 +0200 | [diff] [blame] | 654 | qemu_opt_rename(all_opts, "readonly", "read-only"); |
| 655 | |
Kevin Wolf | 29c4e2b | 2013-07-18 16:31:25 +0200 | [diff] [blame] | 656 | value = qemu_opt_get(all_opts, "cache"); |
| 657 | if (value) { |
| 658 | int flags = 0; |
| 659 | |
| 660 | if (bdrv_parse_cache_flags(value, &flags) != 0) { |
| 661 | error_report("invalid cache option"); |
| 662 | return NULL; |
| 663 | } |
| 664 | |
| 665 | /* Specific options take precedence */ |
| 666 | if (!qemu_opt_get(all_opts, "cache.writeback")) { |
| 667 | qemu_opt_set_bool(all_opts, "cache.writeback", |
| 668 | !!(flags & BDRV_O_CACHE_WB)); |
| 669 | } |
| 670 | if (!qemu_opt_get(all_opts, "cache.direct")) { |
| 671 | qemu_opt_set_bool(all_opts, "cache.direct", |
| 672 | !!(flags & BDRV_O_NOCACHE)); |
| 673 | } |
| 674 | if (!qemu_opt_get(all_opts, "cache.no-flush")) { |
| 675 | qemu_opt_set_bool(all_opts, "cache.no-flush", |
| 676 | !!(flags & BDRV_O_NO_FLUSH)); |
| 677 | } |
| 678 | qemu_opt_unset(all_opts, "cache"); |
| 679 | } |
| 680 | |
Kevin Wolf | f298d07 | 2013-09-10 12:01:20 +0200 | [diff] [blame] | 681 | /* Get a QDict for processing the options */ |
| 682 | bs_opts = qdict_new(); |
| 683 | qemu_opts_to_qdict(all_opts, bs_opts); |
| 684 | |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 685 | legacy_opts = qemu_opts_create_nofail(&qemu_legacy_drive_opts); |
| 686 | qemu_opts_absorb_qdict(legacy_opts, bs_opts, &local_err); |
| 687 | if (error_is_set(&local_err)) { |
| 688 | qerror_report_err(local_err); |
| 689 | error_free(local_err); |
| 690 | goto fail; |
| 691 | } |
| 692 | |
Kevin Wolf | 2692929 | 2013-09-09 17:01:03 +0200 | [diff] [blame] | 693 | /* Deprecated option boot=[on|off] */ |
| 694 | if (qemu_opt_get(legacy_opts, "boot") != NULL) { |
| 695 | fprintf(stderr, "qemu-kvm: boot=on|off is deprecated and will be " |
| 696 | "ignored. Future versions will reject this parameter. Please " |
| 697 | "update your scripts.\n"); |
| 698 | } |
| 699 | |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 700 | /* Media type */ |
| 701 | value = qemu_opt_get(legacy_opts, "media"); |
| 702 | if (value) { |
| 703 | if (!strcmp(value, "disk")) { |
| 704 | media = MEDIA_DISK; |
| 705 | } else if (!strcmp(value, "cdrom")) { |
| 706 | media = MEDIA_CDROM; |
Fam Zheng | a7fdbcf | 2013-10-15 17:45:50 +0800 | [diff] [blame] | 707 | read_only = true; |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 708 | } else { |
| 709 | error_report("'%s' invalid media", value); |
| 710 | goto fail; |
| 711 | } |
| 712 | } |
| 713 | |
Kevin Wolf | 0ebd24e | 2013-09-19 15:12:18 +0200 | [diff] [blame] | 714 | /* copy-on-read is disabled with a warning for read-only devices */ |
Fam Zheng | a7fdbcf | 2013-10-15 17:45:50 +0800 | [diff] [blame] | 715 | read_only |= qemu_opt_get_bool(legacy_opts, "read-only", false); |
Kevin Wolf | 0ebd24e | 2013-09-19 15:12:18 +0200 | [diff] [blame] | 716 | copy_on_read = qemu_opt_get_bool(legacy_opts, "copy-on-read", false); |
| 717 | |
| 718 | if (read_only && copy_on_read) { |
| 719 | error_report("warning: disabling copy-on-read on read-only drive"); |
| 720 | copy_on_read = false; |
| 721 | } |
| 722 | |
| 723 | qdict_put(bs_opts, "read-only", |
| 724 | qstring_from_str(read_only ? "on" : "off")); |
| 725 | qdict_put(bs_opts, "copy-on-read", |
| 726 | qstring_from_str(copy_on_read ? "on" :"off")); |
| 727 | |
Kevin Wolf | 593d464 | 2013-08-28 17:24:51 +0200 | [diff] [blame] | 728 | /* Controller type */ |
| 729 | value = qemu_opt_get(legacy_opts, "if"); |
| 730 | if (value) { |
| 731 | for (type = 0; |
| 732 | type < IF_COUNT && strcmp(value, if_name[type]); |
| 733 | type++) { |
| 734 | } |
| 735 | if (type == IF_COUNT) { |
| 736 | error_report("unsupported bus type '%s'", value); |
| 737 | goto fail; |
| 738 | } |
| 739 | } else { |
| 740 | type = block_default_type; |
| 741 | } |
| 742 | |
Kevin Wolf | b41a733 | 2013-09-09 16:49:49 +0200 | [diff] [blame] | 743 | /* Geometry */ |
| 744 | cyls = qemu_opt_get_number(legacy_opts, "cyls", 0); |
| 745 | heads = qemu_opt_get_number(legacy_opts, "heads", 0); |
| 746 | secs = qemu_opt_get_number(legacy_opts, "secs", 0); |
| 747 | |
| 748 | if (cyls || heads || secs) { |
| 749 | if (cyls < 1) { |
| 750 | error_report("invalid physical cyls number"); |
| 751 | goto fail; |
| 752 | } |
| 753 | if (heads < 1) { |
| 754 | error_report("invalid physical heads number"); |
| 755 | goto fail; |
| 756 | } |
| 757 | if (secs < 1) { |
| 758 | error_report("invalid physical secs number"); |
| 759 | goto fail; |
| 760 | } |
| 761 | } |
| 762 | |
| 763 | translation = BIOS_ATA_TRANSLATION_AUTO; |
| 764 | value = qemu_opt_get(legacy_opts, "trans"); |
| 765 | if (value != NULL) { |
| 766 | if (!cyls) { |
| 767 | error_report("'%s' trans must be used with cyls, heads and secs", |
| 768 | value); |
| 769 | goto fail; |
| 770 | } |
| 771 | if (!strcmp(value, "none")) { |
| 772 | translation = BIOS_ATA_TRANSLATION_NONE; |
| 773 | } else if (!strcmp(value, "lba")) { |
| 774 | translation = BIOS_ATA_TRANSLATION_LBA; |
| 775 | } else if (!strcmp(value, "auto")) { |
| 776 | translation = BIOS_ATA_TRANSLATION_AUTO; |
| 777 | } else { |
| 778 | error_report("'%s' invalid translation type", value); |
| 779 | goto fail; |
| 780 | } |
| 781 | } |
| 782 | |
| 783 | if (media == MEDIA_CDROM) { |
| 784 | if (cyls || secs || heads) { |
| 785 | error_report("CHS can't be set with media=cdrom"); |
| 786 | goto fail; |
| 787 | } |
| 788 | } |
| 789 | |
Kevin Wolf | 87a899c | 2013-09-10 15:48:13 +0200 | [diff] [blame] | 790 | /* Device address specified by bus/unit or index. |
| 791 | * If none was specified, try to find the first free one. */ |
| 792 | bus_id = qemu_opt_get_number(legacy_opts, "bus", 0); |
| 793 | unit_id = qemu_opt_get_number(legacy_opts, "unit", -1); |
| 794 | index = qemu_opt_get_number(legacy_opts, "index", -1); |
| 795 | |
| 796 | max_devs = if_max_devs[type]; |
| 797 | |
| 798 | if (index != -1) { |
| 799 | if (bus_id != 0 || unit_id != -1) { |
| 800 | error_report("index cannot be used with bus and unit"); |
| 801 | goto fail; |
| 802 | } |
| 803 | bus_id = drive_index_to_bus_id(type, index); |
| 804 | unit_id = drive_index_to_unit_id(type, index); |
| 805 | } |
| 806 | |
| 807 | if (unit_id == -1) { |
| 808 | unit_id = 0; |
| 809 | while (drive_get(type, bus_id, unit_id) != NULL) { |
| 810 | unit_id++; |
| 811 | if (max_devs && unit_id >= max_devs) { |
| 812 | unit_id -= max_devs; |
| 813 | bus_id++; |
| 814 | } |
| 815 | } |
| 816 | } |
| 817 | |
| 818 | if (max_devs && unit_id >= max_devs) { |
| 819 | error_report("unit %d too big (max is %d)", unit_id, max_devs - 1); |
| 820 | goto fail; |
| 821 | } |
| 822 | |
| 823 | if (drive_get(type, bus_id, unit_id) != NULL) { |
| 824 | error_report("drive with bus=%d, unit=%d (index=%d) exists", |
| 825 | bus_id, unit_id, index); |
| 826 | goto fail; |
| 827 | } |
| 828 | |
| 829 | /* no id supplied -> create one */ |
| 830 | if (qemu_opts_id(all_opts) == NULL) { |
| 831 | char *new_id; |
| 832 | const char *mediastr = ""; |
| 833 | if (type == IF_IDE || type == IF_SCSI) { |
| 834 | mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd"; |
| 835 | } |
| 836 | if (max_devs) { |
| 837 | new_id = g_strdup_printf("%s%i%s%i", if_name[type], bus_id, |
| 838 | mediastr, unit_id); |
| 839 | } else { |
| 840 | new_id = g_strdup_printf("%s%s%i", if_name[type], |
| 841 | mediastr, unit_id); |
| 842 | } |
| 843 | qdict_put(bs_opts, "id", qstring_from_str(new_id)); |
| 844 | g_free(new_id); |
| 845 | } |
| 846 | |
Kevin Wolf | 394c7d4 | 2013-09-13 14:09:17 +0200 | [diff] [blame] | 847 | /* Add virtio block device */ |
| 848 | devaddr = qemu_opt_get(legacy_opts, "addr"); |
| 849 | if (devaddr && type != IF_VIRTIO) { |
| 850 | error_report("addr is not supported by this bus type"); |
| 851 | goto fail; |
| 852 | } |
| 853 | |
| 854 | if (type == IF_VIRTIO) { |
| 855 | QemuOpts *devopts; |
| 856 | devopts = qemu_opts_create_nofail(qemu_find_opts("device")); |
| 857 | if (arch_type == QEMU_ARCH_S390X) { |
| 858 | qemu_opt_set(devopts, "driver", "virtio-blk-s390"); |
| 859 | } else { |
| 860 | qemu_opt_set(devopts, "driver", "virtio-blk-pci"); |
| 861 | } |
| 862 | qemu_opt_set(devopts, "drive", qdict_get_str(bs_opts, "id")); |
| 863 | if (devaddr) { |
| 864 | qemu_opt_set(devopts, "addr", devaddr); |
| 865 | } |
| 866 | } |
| 867 | |
Kevin Wolf | 2d246f0 | 2013-09-18 15:14:47 +0200 | [diff] [blame] | 868 | /* Actual block device init: Functionality shared with blockdev-add */ |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 869 | dinfo = blockdev_init(bs_opts, type, &local_err); |
Kevin Wolf | 2d246f0 | 2013-09-18 15:14:47 +0200 | [diff] [blame] | 870 | if (dinfo == NULL) { |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 871 | if (error_is_set(&local_err)) { |
| 872 | qerror_report_err(local_err); |
| 873 | error_free(local_err); |
| 874 | } |
Kevin Wolf | 2d246f0 | 2013-09-18 15:14:47 +0200 | [diff] [blame] | 875 | goto fail; |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 876 | } else { |
| 877 | assert(!error_is_set(&local_err)); |
Kevin Wolf | 2d246f0 | 2013-09-18 15:14:47 +0200 | [diff] [blame] | 878 | } |
| 879 | |
| 880 | /* Set legacy DriveInfo fields */ |
| 881 | dinfo->enable_auto_del = true; |
Kevin Wolf | f298d07 | 2013-09-10 12:01:20 +0200 | [diff] [blame] | 882 | dinfo->opts = all_opts; |
Kevin Wolf | 2d246f0 | 2013-09-18 15:14:47 +0200 | [diff] [blame] | 883 | |
Kevin Wolf | b41a733 | 2013-09-09 16:49:49 +0200 | [diff] [blame] | 884 | dinfo->cyls = cyls; |
| 885 | dinfo->heads = heads; |
| 886 | dinfo->secs = secs; |
| 887 | dinfo->trans = translation; |
| 888 | |
Kevin Wolf | 87a899c | 2013-09-10 15:48:13 +0200 | [diff] [blame] | 889 | dinfo->bus = bus_id; |
| 890 | dinfo->unit = unit_id; |
Kevin Wolf | 394c7d4 | 2013-09-13 14:09:17 +0200 | [diff] [blame] | 891 | dinfo->devaddr = devaddr; |
Kevin Wolf | 87a899c | 2013-09-10 15:48:13 +0200 | [diff] [blame] | 892 | |
Kevin Wolf | e34ef04 | 2013-09-19 14:24:10 +0200 | [diff] [blame] | 893 | switch(type) { |
| 894 | case IF_IDE: |
| 895 | case IF_SCSI: |
| 896 | case IF_XEN: |
| 897 | case IF_NONE: |
| 898 | dinfo->media_cd = media == MEDIA_CDROM; |
| 899 | break; |
| 900 | default: |
| 901 | break; |
| 902 | } |
| 903 | |
Kevin Wolf | 2d246f0 | 2013-09-18 15:14:47 +0200 | [diff] [blame] | 904 | fail: |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 905 | qemu_opts_del(legacy_opts); |
Kevin Wolf | 2d246f0 | 2013-09-18 15:14:47 +0200 | [diff] [blame] | 906 | return dinfo; |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 907 | } |
| 908 | |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 909 | void do_commit(Monitor *mon, const QDict *qdict) |
| 910 | { |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 911 | const char *device = qdict_get_str(qdict, "device"); |
Markus Armbruster | 6ab4b5a | 2010-06-02 18:55:18 +0200 | [diff] [blame] | 912 | BlockDriverState *bs; |
Stefan Hajnoczi | e887749 | 2012-03-05 18:10:11 +0000 | [diff] [blame] | 913 | int ret; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 914 | |
Markus Armbruster | 6ab4b5a | 2010-06-02 18:55:18 +0200 | [diff] [blame] | 915 | if (!strcmp(device, "all")) { |
Stefan Hajnoczi | e887749 | 2012-03-05 18:10:11 +0000 | [diff] [blame] | 916 | ret = bdrv_commit_all(); |
Markus Armbruster | 6ab4b5a | 2010-06-02 18:55:18 +0200 | [diff] [blame] | 917 | } else { |
| 918 | bs = bdrv_find(device); |
Markus Armbruster | ac59eb9 | 2010-06-02 18:55:19 +0200 | [diff] [blame] | 919 | if (!bs) { |
Jeff Cody | 58513bd | 2013-01-18 12:45:35 -0500 | [diff] [blame] | 920 | monitor_printf(mon, "Device '%s' not found\n", device); |
Markus Armbruster | ac59eb9 | 2010-06-02 18:55:19 +0200 | [diff] [blame] | 921 | return; |
Markus Armbruster | 6ab4b5a | 2010-06-02 18:55:18 +0200 | [diff] [blame] | 922 | } |
Stefan Hajnoczi | 2d3735d | 2012-01-18 14:40:41 +0000 | [diff] [blame] | 923 | ret = bdrv_commit(bs); |
Jeff Cody | 58513bd | 2013-01-18 12:45:35 -0500 | [diff] [blame] | 924 | } |
| 925 | if (ret < 0) { |
| 926 | monitor_printf(mon, "'commit' error for '%s': %s\n", device, |
| 927 | strerror(-ret)); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 928 | } |
| 929 | } |
| 930 | |
Paolo Bonzini | 6cc2a41 | 2012-03-06 18:55:59 +0100 | [diff] [blame] | 931 | static void blockdev_do_action(int kind, void *data, Error **errp) |
| 932 | { |
Kevin Wolf | c8a83e8 | 2013-05-13 10:43:43 +0200 | [diff] [blame] | 933 | TransactionAction action; |
| 934 | TransactionActionList list; |
Paolo Bonzini | 6cc2a41 | 2012-03-06 18:55:59 +0100 | [diff] [blame] | 935 | |
| 936 | action.kind = kind; |
| 937 | action.data = data; |
| 938 | list.value = &action; |
| 939 | list.next = NULL; |
| 940 | qmp_transaction(&list, errp); |
| 941 | } |
| 942 | |
Luiz Capitulino | 6106e24 | 2011-11-25 16:15:19 -0200 | [diff] [blame] | 943 | void qmp_blockdev_snapshot_sync(const char *device, const char *snapshot_file, |
| 944 | bool has_format, const char *format, |
Paolo Bonzini | 6cc2a41 | 2012-03-06 18:55:59 +0100 | [diff] [blame] | 945 | bool has_mode, enum NewImageMode mode, |
Luiz Capitulino | 6106e24 | 2011-11-25 16:15:19 -0200 | [diff] [blame] | 946 | Error **errp) |
Jes Sorensen | f888256 | 2010-12-16 13:52:16 +0100 | [diff] [blame] | 947 | { |
Paolo Bonzini | 6cc2a41 | 2012-03-06 18:55:59 +0100 | [diff] [blame] | 948 | BlockdevSnapshot snapshot = { |
| 949 | .device = (char *) device, |
| 950 | .snapshot_file = (char *) snapshot_file, |
| 951 | .has_format = has_format, |
| 952 | .format = (char *) format, |
| 953 | .has_mode = has_mode, |
| 954 | .mode = mode, |
| 955 | }; |
Kevin Wolf | c8a83e8 | 2013-05-13 10:43:43 +0200 | [diff] [blame] | 956 | blockdev_do_action(TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC, |
| 957 | &snapshot, errp); |
Jes Sorensen | f888256 | 2010-12-16 13:52:16 +0100 | [diff] [blame] | 958 | } |
| 959 | |
Wenchao Xia | f323bc9 | 2013-09-11 14:04:35 +0800 | [diff] [blame] | 960 | void qmp_blockdev_snapshot_internal_sync(const char *device, |
| 961 | const char *name, |
| 962 | Error **errp) |
| 963 | { |
| 964 | BlockdevSnapshotInternal snapshot = { |
| 965 | .device = (char *) device, |
| 966 | .name = (char *) name |
| 967 | }; |
| 968 | |
| 969 | blockdev_do_action(TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC, |
| 970 | &snapshot, errp); |
| 971 | } |
| 972 | |
Wenchao Xia | 44e3e05 | 2013-09-11 14:04:36 +0800 | [diff] [blame] | 973 | SnapshotInfo *qmp_blockdev_snapshot_delete_internal_sync(const char *device, |
| 974 | bool has_id, |
| 975 | const char *id, |
| 976 | bool has_name, |
| 977 | const char *name, |
| 978 | Error **errp) |
| 979 | { |
| 980 | BlockDriverState *bs = bdrv_find(device); |
| 981 | QEMUSnapshotInfo sn; |
| 982 | Error *local_err = NULL; |
| 983 | SnapshotInfo *info = NULL; |
| 984 | int ret; |
| 985 | |
| 986 | if (!bs) { |
| 987 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
| 988 | return NULL; |
| 989 | } |
| 990 | |
| 991 | if (!has_id) { |
| 992 | id = NULL; |
| 993 | } |
| 994 | |
| 995 | if (!has_name) { |
| 996 | name = NULL; |
| 997 | } |
| 998 | |
| 999 | if (!id && !name) { |
| 1000 | error_setg(errp, "Name or id must be provided"); |
| 1001 | return NULL; |
| 1002 | } |
| 1003 | |
| 1004 | ret = bdrv_snapshot_find_by_id_and_name(bs, id, name, &sn, &local_err); |
| 1005 | if (error_is_set(&local_err)) { |
| 1006 | error_propagate(errp, local_err); |
| 1007 | return NULL; |
| 1008 | } |
| 1009 | if (!ret) { |
| 1010 | error_setg(errp, |
| 1011 | "Snapshot with id '%s' and name '%s' does not exist on " |
| 1012 | "device '%s'", |
| 1013 | STR_OR_NULL(id), STR_OR_NULL(name), device); |
| 1014 | return NULL; |
| 1015 | } |
| 1016 | |
| 1017 | bdrv_snapshot_delete(bs, id, name, &local_err); |
| 1018 | if (error_is_set(&local_err)) { |
| 1019 | error_propagate(errp, local_err); |
| 1020 | return NULL; |
| 1021 | } |
| 1022 | |
| 1023 | info = g_malloc0(sizeof(SnapshotInfo)); |
| 1024 | info->id = g_strdup(sn.id_str); |
| 1025 | info->name = g_strdup(sn.name); |
| 1026 | info->date_nsec = sn.date_nsec; |
| 1027 | info->date_sec = sn.date_sec; |
| 1028 | info->vm_state_size = sn.vm_state_size; |
| 1029 | info->vm_clock_nsec = sn.vm_clock_nsec % 1000000000; |
| 1030 | info->vm_clock_sec = sn.vm_clock_nsec / 1000000000; |
| 1031 | |
| 1032 | return info; |
| 1033 | } |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 1034 | |
| 1035 | /* New and old BlockDriverState structs for group snapshots */ |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1036 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1037 | typedef struct BlkTransactionState BlkTransactionState; |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1038 | |
| 1039 | /* Only prepare() may fail. In a single transaction, only one of commit() or |
| 1040 | abort() will be called, clean() will always be called if it present. */ |
| 1041 | typedef struct BdrvActionOps { |
| 1042 | /* Size of state struct, in bytes. */ |
| 1043 | size_t instance_size; |
| 1044 | /* Prepare the work, must NOT be NULL. */ |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1045 | void (*prepare)(BlkTransactionState *common, Error **errp); |
Stefan Hajnoczi | f9ea81e | 2013-06-24 17:13:16 +0200 | [diff] [blame] | 1046 | /* Commit the changes, can be NULL. */ |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1047 | void (*commit)(BlkTransactionState *common); |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1048 | /* Abort the changes on fail, can be NULL. */ |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1049 | void (*abort)(BlkTransactionState *common); |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1050 | /* Clean up resource in the end, can be NULL. */ |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1051 | void (*clean)(BlkTransactionState *common); |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1052 | } BdrvActionOps; |
| 1053 | |
| 1054 | /* |
| 1055 | * This structure must be arranged as first member in child type, assuming |
| 1056 | * that compiler will also arrange it to the same address with parent instance. |
| 1057 | * Later it will be used in free(). |
| 1058 | */ |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1059 | struct BlkTransactionState { |
Kevin Wolf | c8a83e8 | 2013-05-13 10:43:43 +0200 | [diff] [blame] | 1060 | TransactionAction *action; |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1061 | const BdrvActionOps *ops; |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1062 | QSIMPLEQ_ENTRY(BlkTransactionState) entry; |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1063 | }; |
| 1064 | |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1065 | /* internal snapshot private data */ |
| 1066 | typedef struct InternalSnapshotState { |
| 1067 | BlkTransactionState common; |
| 1068 | BlockDriverState *bs; |
| 1069 | QEMUSnapshotInfo sn; |
| 1070 | } InternalSnapshotState; |
| 1071 | |
| 1072 | static void internal_snapshot_prepare(BlkTransactionState *common, |
| 1073 | Error **errp) |
| 1074 | { |
| 1075 | const char *device; |
| 1076 | const char *name; |
| 1077 | BlockDriverState *bs; |
| 1078 | QEMUSnapshotInfo old_sn, *sn; |
| 1079 | bool ret; |
| 1080 | qemu_timeval tv; |
| 1081 | BlockdevSnapshotInternal *internal; |
| 1082 | InternalSnapshotState *state; |
| 1083 | int ret1; |
| 1084 | |
| 1085 | g_assert(common->action->kind == |
| 1086 | TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC); |
| 1087 | internal = common->action->blockdev_snapshot_internal_sync; |
| 1088 | state = DO_UPCAST(InternalSnapshotState, common, common); |
| 1089 | |
| 1090 | /* 1. parse input */ |
| 1091 | device = internal->device; |
| 1092 | name = internal->name; |
| 1093 | |
| 1094 | /* 2. check for validation */ |
| 1095 | bs = bdrv_find(device); |
| 1096 | if (!bs) { |
| 1097 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
| 1098 | return; |
| 1099 | } |
| 1100 | |
| 1101 | if (!bdrv_is_inserted(bs)) { |
| 1102 | error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); |
| 1103 | return; |
| 1104 | } |
| 1105 | |
| 1106 | if (bdrv_is_read_only(bs)) { |
| 1107 | error_set(errp, QERR_DEVICE_IS_READ_ONLY, device); |
| 1108 | return; |
| 1109 | } |
| 1110 | |
| 1111 | if (!bdrv_can_snapshot(bs)) { |
| 1112 | error_set(errp, QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED, |
| 1113 | bs->drv->format_name, device, "internal snapshot"); |
| 1114 | return; |
| 1115 | } |
| 1116 | |
| 1117 | if (!strlen(name)) { |
| 1118 | error_setg(errp, "Name is empty"); |
| 1119 | return; |
| 1120 | } |
| 1121 | |
| 1122 | /* check whether a snapshot with name exist */ |
| 1123 | ret = bdrv_snapshot_find_by_id_and_name(bs, NULL, name, &old_sn, errp); |
| 1124 | if (error_is_set(errp)) { |
| 1125 | return; |
| 1126 | } else if (ret) { |
| 1127 | error_setg(errp, |
| 1128 | "Snapshot with name '%s' already exists on device '%s'", |
| 1129 | name, device); |
| 1130 | return; |
| 1131 | } |
| 1132 | |
| 1133 | /* 3. take the snapshot */ |
| 1134 | sn = &state->sn; |
| 1135 | pstrcpy(sn->name, sizeof(sn->name), name); |
| 1136 | qemu_gettimeofday(&tv); |
| 1137 | sn->date_sec = tv.tv_sec; |
| 1138 | sn->date_nsec = tv.tv_usec * 1000; |
| 1139 | sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL); |
| 1140 | |
| 1141 | ret1 = bdrv_snapshot_create(bs, sn); |
| 1142 | if (ret1 < 0) { |
| 1143 | error_setg_errno(errp, -ret1, |
| 1144 | "Failed to create snapshot '%s' on device '%s'", |
| 1145 | name, device); |
| 1146 | return; |
| 1147 | } |
| 1148 | |
| 1149 | /* 4. succeed, mark a snapshot is created */ |
| 1150 | state->bs = bs; |
| 1151 | } |
| 1152 | |
| 1153 | static void internal_snapshot_abort(BlkTransactionState *common) |
| 1154 | { |
| 1155 | InternalSnapshotState *state = |
| 1156 | DO_UPCAST(InternalSnapshotState, common, common); |
| 1157 | BlockDriverState *bs = state->bs; |
| 1158 | QEMUSnapshotInfo *sn = &state->sn; |
| 1159 | Error *local_error = NULL; |
| 1160 | |
| 1161 | if (!bs) { |
| 1162 | return; |
| 1163 | } |
| 1164 | |
| 1165 | if (bdrv_snapshot_delete(bs, sn->id_str, sn->name, &local_error) < 0) { |
| 1166 | error_report("Failed to delete snapshot with id '%s' and name '%s' on " |
| 1167 | "device '%s' in abort: %s", |
| 1168 | sn->id_str, |
| 1169 | sn->name, |
| 1170 | bdrv_get_device_name(bs), |
| 1171 | error_get_pretty(local_error)); |
| 1172 | error_free(local_error); |
| 1173 | } |
| 1174 | } |
| 1175 | |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1176 | /* external snapshot private data */ |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1177 | typedef struct ExternalSnapshotState { |
| 1178 | BlkTransactionState common; |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 1179 | BlockDriverState *old_bs; |
| 1180 | BlockDriverState *new_bs; |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1181 | } ExternalSnapshotState; |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 1182 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1183 | static void external_snapshot_prepare(BlkTransactionState *common, |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1184 | Error **errp) |
| 1185 | { |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1186 | BlockDriver *drv; |
| 1187 | int flags, ret; |
| 1188 | Error *local_err = NULL; |
Wenchao Xia | e2a31e8 | 2013-05-08 18:25:13 +0800 | [diff] [blame] | 1189 | const char *device; |
| 1190 | const char *new_image_file; |
| 1191 | const char *format = "qcow2"; |
| 1192 | enum NewImageMode mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS; |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1193 | ExternalSnapshotState *state = |
| 1194 | DO_UPCAST(ExternalSnapshotState, common, common); |
Kevin Wolf | c8a83e8 | 2013-05-13 10:43:43 +0200 | [diff] [blame] | 1195 | TransactionAction *action = common->action; |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1196 | |
Wenchao Xia | e2a31e8 | 2013-05-08 18:25:13 +0800 | [diff] [blame] | 1197 | /* get parameters */ |
Kevin Wolf | c8a83e8 | 2013-05-13 10:43:43 +0200 | [diff] [blame] | 1198 | g_assert(action->kind == TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC); |
Wenchao Xia | e2a31e8 | 2013-05-08 18:25:13 +0800 | [diff] [blame] | 1199 | |
| 1200 | device = action->blockdev_snapshot_sync->device; |
| 1201 | new_image_file = action->blockdev_snapshot_sync->snapshot_file; |
| 1202 | if (action->blockdev_snapshot_sync->has_format) { |
| 1203 | format = action->blockdev_snapshot_sync->format; |
| 1204 | } |
| 1205 | if (action->blockdev_snapshot_sync->has_mode) { |
| 1206 | mode = action->blockdev_snapshot_sync->mode; |
| 1207 | } |
| 1208 | |
| 1209 | /* start processing */ |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1210 | drv = bdrv_find_format(format); |
| 1211 | if (!drv) { |
| 1212 | error_set(errp, QERR_INVALID_BLOCK_FORMAT, format); |
| 1213 | return; |
| 1214 | } |
| 1215 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1216 | state->old_bs = bdrv_find(device); |
| 1217 | if (!state->old_bs) { |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1218 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
| 1219 | return; |
| 1220 | } |
| 1221 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1222 | if (!bdrv_is_inserted(state->old_bs)) { |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1223 | error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); |
| 1224 | return; |
| 1225 | } |
| 1226 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1227 | if (bdrv_in_use(state->old_bs)) { |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1228 | error_set(errp, QERR_DEVICE_IN_USE, device); |
| 1229 | return; |
| 1230 | } |
| 1231 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1232 | if (!bdrv_is_read_only(state->old_bs)) { |
| 1233 | if (bdrv_flush(state->old_bs)) { |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1234 | error_set(errp, QERR_IO_ERROR); |
| 1235 | return; |
| 1236 | } |
| 1237 | } |
| 1238 | |
Benoît Canet | f6186f4 | 2013-10-02 14:33:48 +0200 | [diff] [blame] | 1239 | if (bdrv_check_ext_snapshot(state->old_bs) != EXT_SNAPSHOT_ALLOWED) { |
| 1240 | error_set(errp, QERR_FEATURE_DISABLED, "snapshot"); |
| 1241 | return; |
| 1242 | } |
| 1243 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1244 | flags = state->old_bs->open_flags; |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1245 | |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1246 | /* create new image w/backing file */ |
| 1247 | if (mode != NEW_IMAGE_MODE_EXISTING) { |
| 1248 | bdrv_img_create(new_image_file, format, |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1249 | state->old_bs->filename, |
| 1250 | state->old_bs->drv->format_name, |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1251 | NULL, -1, flags, &local_err, false); |
| 1252 | if (error_is_set(&local_err)) { |
| 1253 | error_propagate(errp, local_err); |
| 1254 | return; |
| 1255 | } |
| 1256 | } |
| 1257 | |
| 1258 | /* We will manually add the backing_hd field to the bs later */ |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1259 | state->new_bs = bdrv_new(""); |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1260 | /* TODO Inherit bs->options or only take explicit options with an |
| 1261 | * extended QMP command? */ |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1262 | ret = bdrv_open(state->new_bs, new_image_file, NULL, |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1263 | flags | BDRV_O_NO_BACKING, drv, &local_err); |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1264 | if (ret != 0) { |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1265 | error_propagate(errp, local_err); |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1266 | } |
| 1267 | } |
| 1268 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1269 | static void external_snapshot_commit(BlkTransactionState *common) |
Wenchao Xia | 3b0047e | 2013-05-08 18:25:14 +0800 | [diff] [blame] | 1270 | { |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1271 | ExternalSnapshotState *state = |
| 1272 | DO_UPCAST(ExternalSnapshotState, common, common); |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1273 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1274 | /* This removes our old bs and adds the new bs */ |
| 1275 | bdrv_append(state->new_bs, state->old_bs); |
Wenchao Xia | 3b0047e | 2013-05-08 18:25:14 +0800 | [diff] [blame] | 1276 | /* We don't need (or want) to use the transactional |
| 1277 | * bdrv_reopen_multiple() across all the entries at once, because we |
| 1278 | * don't want to abort all of them if one of them fails the reopen */ |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1279 | bdrv_reopen(state->new_bs, state->new_bs->open_flags & ~BDRV_O_RDWR, |
Wenchao Xia | 3b0047e | 2013-05-08 18:25:14 +0800 | [diff] [blame] | 1280 | NULL); |
| 1281 | } |
| 1282 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1283 | static void external_snapshot_abort(BlkTransactionState *common) |
Wenchao Xia | 96b86bf | 2013-05-08 18:25:15 +0800 | [diff] [blame] | 1284 | { |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1285 | ExternalSnapshotState *state = |
| 1286 | DO_UPCAST(ExternalSnapshotState, common, common); |
| 1287 | if (state->new_bs) { |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 1288 | bdrv_unref(state->new_bs); |
Wenchao Xia | 96b86bf | 2013-05-08 18:25:15 +0800 | [diff] [blame] | 1289 | } |
| 1290 | } |
| 1291 | |
Stefan Hajnoczi | 3037f36 | 2013-06-24 17:13:17 +0200 | [diff] [blame] | 1292 | typedef struct DriveBackupState { |
| 1293 | BlkTransactionState common; |
| 1294 | BlockDriverState *bs; |
| 1295 | BlockJob *job; |
| 1296 | } DriveBackupState; |
| 1297 | |
| 1298 | static void drive_backup_prepare(BlkTransactionState *common, Error **errp) |
| 1299 | { |
| 1300 | DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common); |
| 1301 | DriveBackup *backup; |
| 1302 | Error *local_err = NULL; |
| 1303 | |
| 1304 | assert(common->action->kind == TRANSACTION_ACTION_KIND_DRIVE_BACKUP); |
| 1305 | backup = common->action->drive_backup; |
| 1306 | |
| 1307 | qmp_drive_backup(backup->device, backup->target, |
| 1308 | backup->has_format, backup->format, |
Stefan Hajnoczi | b53169e | 2013-06-26 14:11:57 +0200 | [diff] [blame] | 1309 | backup->sync, |
Stefan Hajnoczi | 3037f36 | 2013-06-24 17:13:17 +0200 | [diff] [blame] | 1310 | backup->has_mode, backup->mode, |
| 1311 | backup->has_speed, backup->speed, |
| 1312 | backup->has_on_source_error, backup->on_source_error, |
| 1313 | backup->has_on_target_error, backup->on_target_error, |
| 1314 | &local_err); |
| 1315 | if (error_is_set(&local_err)) { |
| 1316 | error_propagate(errp, local_err); |
| 1317 | state->bs = NULL; |
| 1318 | state->job = NULL; |
| 1319 | return; |
| 1320 | } |
| 1321 | |
| 1322 | state->bs = bdrv_find(backup->device); |
| 1323 | state->job = state->bs->job; |
| 1324 | } |
| 1325 | |
| 1326 | static void drive_backup_abort(BlkTransactionState *common) |
| 1327 | { |
| 1328 | DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common); |
| 1329 | BlockDriverState *bs = state->bs; |
| 1330 | |
| 1331 | /* Only cancel if it's the job we started */ |
| 1332 | if (bs && bs->job && bs->job == state->job) { |
| 1333 | block_job_cancel_sync(bs->job); |
| 1334 | } |
| 1335 | } |
| 1336 | |
Stefan Hajnoczi | 78b18b7 | 2013-06-24 17:13:18 +0200 | [diff] [blame] | 1337 | static void abort_prepare(BlkTransactionState *common, Error **errp) |
| 1338 | { |
| 1339 | error_setg(errp, "Transaction aborted using Abort action"); |
| 1340 | } |
| 1341 | |
| 1342 | static void abort_commit(BlkTransactionState *common) |
| 1343 | { |
Stefan Weil | dfc6f86 | 2013-07-25 18:21:28 +0200 | [diff] [blame] | 1344 | g_assert_not_reached(); /* this action never succeeds */ |
Stefan Hajnoczi | 78b18b7 | 2013-06-24 17:13:18 +0200 | [diff] [blame] | 1345 | } |
| 1346 | |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1347 | static const BdrvActionOps actions[] = { |
Kevin Wolf | c8a83e8 | 2013-05-13 10:43:43 +0200 | [diff] [blame] | 1348 | [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC] = { |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1349 | .instance_size = sizeof(ExternalSnapshotState), |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1350 | .prepare = external_snapshot_prepare, |
| 1351 | .commit = external_snapshot_commit, |
| 1352 | .abort = external_snapshot_abort, |
| 1353 | }, |
Stefan Hajnoczi | 3037f36 | 2013-06-24 17:13:17 +0200 | [diff] [blame] | 1354 | [TRANSACTION_ACTION_KIND_DRIVE_BACKUP] = { |
| 1355 | .instance_size = sizeof(DriveBackupState), |
| 1356 | .prepare = drive_backup_prepare, |
| 1357 | .abort = drive_backup_abort, |
| 1358 | }, |
Stefan Hajnoczi | 78b18b7 | 2013-06-24 17:13:18 +0200 | [diff] [blame] | 1359 | [TRANSACTION_ACTION_KIND_ABORT] = { |
| 1360 | .instance_size = sizeof(BlkTransactionState), |
| 1361 | .prepare = abort_prepare, |
| 1362 | .commit = abort_commit, |
| 1363 | }, |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1364 | [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC] = { |
| 1365 | .instance_size = sizeof(InternalSnapshotState), |
| 1366 | .prepare = internal_snapshot_prepare, |
| 1367 | .abort = internal_snapshot_abort, |
| 1368 | }, |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1369 | }; |
| 1370 | |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 1371 | /* |
| 1372 | * 'Atomic' group snapshots. The snapshots are taken as a set, and if any fail |
| 1373 | * then we do not pivot any of the devices in the group, and abandon the |
| 1374 | * snapshots |
| 1375 | */ |
Kevin Wolf | c8a83e8 | 2013-05-13 10:43:43 +0200 | [diff] [blame] | 1376 | void qmp_transaction(TransactionActionList *dev_list, Error **errp) |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 1377 | { |
Kevin Wolf | c8a83e8 | 2013-05-13 10:43:43 +0200 | [diff] [blame] | 1378 | TransactionActionList *dev_entry = dev_list; |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1379 | BlkTransactionState *state, *next; |
Luiz Capitulino | 43e1704 | 2012-11-30 10:52:07 -0200 | [diff] [blame] | 1380 | Error *local_err = NULL; |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 1381 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1382 | QSIMPLEQ_HEAD(snap_bdrv_states, BlkTransactionState) snap_bdrv_states; |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 1383 | QSIMPLEQ_INIT(&snap_bdrv_states); |
| 1384 | |
| 1385 | /* drain all i/o before any snapshots */ |
| 1386 | bdrv_drain_all(); |
| 1387 | |
| 1388 | /* We don't do anything in this loop that commits us to the snapshot */ |
| 1389 | while (NULL != dev_entry) { |
Kevin Wolf | c8a83e8 | 2013-05-13 10:43:43 +0200 | [diff] [blame] | 1390 | TransactionAction *dev_info = NULL; |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1391 | const BdrvActionOps *ops; |
Paolo Bonzini | 52e7c24 | 2012-03-06 18:55:57 +0100 | [diff] [blame] | 1392 | |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 1393 | dev_info = dev_entry->value; |
| 1394 | dev_entry = dev_entry->next; |
| 1395 | |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1396 | assert(dev_info->kind < ARRAY_SIZE(actions)); |
| 1397 | |
| 1398 | ops = &actions[dev_info->kind]; |
Max Reitz | aa3fe71 | 2013-09-12 14:57:27 +0200 | [diff] [blame] | 1399 | assert(ops->instance_size > 0); |
| 1400 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1401 | state = g_malloc0(ops->instance_size); |
| 1402 | state->ops = ops; |
| 1403 | state->action = dev_info; |
| 1404 | QSIMPLEQ_INSERT_TAIL(&snap_bdrv_states, state, entry); |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 1405 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1406 | state->ops->prepare(state, &local_err); |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1407 | if (error_is_set(&local_err)) { |
| 1408 | error_propagate(errp, local_err); |
| 1409 | goto delete_and_fail; |
Paolo Bonzini | 52e7c24 | 2012-03-06 18:55:57 +0100 | [diff] [blame] | 1410 | } |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 1411 | } |
| 1412 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1413 | QSIMPLEQ_FOREACH(state, &snap_bdrv_states, entry) { |
Stefan Hajnoczi | f9ea81e | 2013-06-24 17:13:16 +0200 | [diff] [blame] | 1414 | if (state->ops->commit) { |
| 1415 | state->ops->commit(state); |
| 1416 | } |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 1417 | } |
| 1418 | |
| 1419 | /* success */ |
| 1420 | goto exit; |
| 1421 | |
| 1422 | delete_and_fail: |
| 1423 | /* |
| 1424 | * failure, and it is all-or-none; abandon each new bs, and keep using |
| 1425 | * the original bs for all images |
| 1426 | */ |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1427 | QSIMPLEQ_FOREACH(state, &snap_bdrv_states, entry) { |
| 1428 | if (state->ops->abort) { |
| 1429 | state->ops->abort(state); |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1430 | } |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 1431 | } |
| 1432 | exit: |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1433 | QSIMPLEQ_FOREACH_SAFE(state, &snap_bdrv_states, entry, next) { |
| 1434 | if (state->ops->clean) { |
| 1435 | state->ops->clean(state); |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1436 | } |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1437 | g_free(state); |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 1438 | } |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 1439 | } |
| 1440 | |
| 1441 | |
Luiz Capitulino | 92d4855 | 2011-12-07 15:47:23 -0200 | [diff] [blame] | 1442 | static void eject_device(BlockDriverState *bs, int force, Error **errp) |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1443 | { |
Stefan Hajnoczi | 2d3735d | 2012-01-18 14:40:41 +0000 | [diff] [blame] | 1444 | if (bdrv_in_use(bs)) { |
| 1445 | error_set(errp, QERR_DEVICE_IN_USE, bdrv_get_device_name(bs)); |
| 1446 | return; |
| 1447 | } |
Markus Armbruster | 2c6942f | 2011-09-06 18:58:51 +0200 | [diff] [blame] | 1448 | if (!bdrv_dev_has_removable_media(bs)) { |
Luiz Capitulino | 92d4855 | 2011-12-07 15:47:23 -0200 | [diff] [blame] | 1449 | error_set(errp, QERR_DEVICE_NOT_REMOVABLE, bdrv_get_device_name(bs)); |
| 1450 | return; |
Markus Armbruster | ea8f942 | 2011-07-20 18:23:35 +0200 | [diff] [blame] | 1451 | } |
Luiz Capitulino | 92d4855 | 2011-12-07 15:47:23 -0200 | [diff] [blame] | 1452 | |
Paolo Bonzini | 025ccaa | 2011-11-07 17:50:13 +0100 | [diff] [blame] | 1453 | if (bdrv_dev_is_medium_locked(bs) && !bdrv_dev_is_tray_open(bs)) { |
| 1454 | bdrv_dev_eject_request(bs, force); |
| 1455 | if (!force) { |
Luiz Capitulino | 92d4855 | 2011-12-07 15:47:23 -0200 | [diff] [blame] | 1456 | error_set(errp, QERR_DEVICE_LOCKED, bdrv_get_device_name(bs)); |
| 1457 | return; |
Paolo Bonzini | 025ccaa | 2011-11-07 17:50:13 +0100 | [diff] [blame] | 1458 | } |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1459 | } |
Luiz Capitulino | 92d4855 | 2011-12-07 15:47:23 -0200 | [diff] [blame] | 1460 | |
Eduardo Habkost | 3b5276b | 2010-06-01 19:12:19 -0300 | [diff] [blame] | 1461 | bdrv_close(bs); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1462 | } |
| 1463 | |
Luiz Capitulino | c245b6a | 2011-12-07 16:02:36 -0200 | [diff] [blame] | 1464 | void qmp_eject(const char *device, bool has_force, bool force, Error **errp) |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1465 | { |
| 1466 | BlockDriverState *bs; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1467 | |
Luiz Capitulino | c245b6a | 2011-12-07 16:02:36 -0200 | [diff] [blame] | 1468 | bs = bdrv_find(device); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1469 | if (!bs) { |
Luiz Capitulino | c245b6a | 2011-12-07 16:02:36 -0200 | [diff] [blame] | 1470 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
| 1471 | return; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1472 | } |
Luiz Capitulino | 92d4855 | 2011-12-07 15:47:23 -0200 | [diff] [blame] | 1473 | |
Luiz Capitulino | c245b6a | 2011-12-07 16:02:36 -0200 | [diff] [blame] | 1474 | eject_device(bs, force, errp); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1475 | } |
| 1476 | |
Luiz Capitulino | a4dea8a | 2011-11-23 13:28:21 -0200 | [diff] [blame] | 1477 | void qmp_block_passwd(const char *device, const char *password, Error **errp) |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1478 | { |
| 1479 | BlockDriverState *bs; |
| 1480 | int err; |
| 1481 | |
Luiz Capitulino | a4dea8a | 2011-11-23 13:28:21 -0200 | [diff] [blame] | 1482 | bs = bdrv_find(device); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1483 | if (!bs) { |
Luiz Capitulino | a4dea8a | 2011-11-23 13:28:21 -0200 | [diff] [blame] | 1484 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
| 1485 | return; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1486 | } |
| 1487 | |
Luiz Capitulino | a4dea8a | 2011-11-23 13:28:21 -0200 | [diff] [blame] | 1488 | err = bdrv_set_key(bs, password); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1489 | if (err == -EINVAL) { |
Luiz Capitulino | a4dea8a | 2011-11-23 13:28:21 -0200 | [diff] [blame] | 1490 | error_set(errp, QERR_DEVICE_NOT_ENCRYPTED, bdrv_get_device_name(bs)); |
| 1491 | return; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1492 | } else if (err < 0) { |
Luiz Capitulino | a4dea8a | 2011-11-23 13:28:21 -0200 | [diff] [blame] | 1493 | error_set(errp, QERR_INVALID_PASSWORD); |
| 1494 | return; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1495 | } |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1496 | } |
| 1497 | |
Luiz Capitulino | 333a96e | 2011-12-08 11:13:50 -0200 | [diff] [blame] | 1498 | static void qmp_bdrv_open_encrypted(BlockDriverState *bs, const char *filename, |
| 1499 | int bdrv_flags, BlockDriver *drv, |
| 1500 | const char *password, Error **errp) |
| 1501 | { |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1502 | Error *local_err = NULL; |
Luiz Capitulino | 0eef407 | 2013-06-07 14:33:48 -0400 | [diff] [blame] | 1503 | int ret; |
| 1504 | |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1505 | ret = bdrv_open(bs, filename, NULL, bdrv_flags, drv, &local_err); |
Luiz Capitulino | 0eef407 | 2013-06-07 14:33:48 -0400 | [diff] [blame] | 1506 | if (ret < 0) { |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1507 | error_propagate(errp, local_err); |
Luiz Capitulino | 333a96e | 2011-12-08 11:13:50 -0200 | [diff] [blame] | 1508 | return; |
| 1509 | } |
| 1510 | |
| 1511 | if (bdrv_key_required(bs)) { |
| 1512 | if (password) { |
| 1513 | if (bdrv_set_key(bs, password) < 0) { |
| 1514 | error_set(errp, QERR_INVALID_PASSWORD); |
| 1515 | } |
| 1516 | } else { |
| 1517 | error_set(errp, QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs), |
| 1518 | bdrv_get_encrypted_filename(bs)); |
| 1519 | } |
| 1520 | } else if (password) { |
| 1521 | error_set(errp, QERR_DEVICE_NOT_ENCRYPTED, bdrv_get_device_name(bs)); |
| 1522 | } |
| 1523 | } |
| 1524 | |
| 1525 | void qmp_change_blockdev(const char *device, const char *filename, |
| 1526 | bool has_format, const char *format, Error **errp) |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1527 | { |
| 1528 | BlockDriverState *bs; |
| 1529 | BlockDriver *drv = NULL; |
| 1530 | int bdrv_flags; |
Luiz Capitulino | 92d4855 | 2011-12-07 15:47:23 -0200 | [diff] [blame] | 1531 | Error *err = NULL; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1532 | |
| 1533 | bs = bdrv_find(device); |
| 1534 | if (!bs) { |
Luiz Capitulino | 333a96e | 2011-12-08 11:13:50 -0200 | [diff] [blame] | 1535 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
| 1536 | return; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1537 | } |
Luiz Capitulino | 333a96e | 2011-12-08 11:13:50 -0200 | [diff] [blame] | 1538 | |
| 1539 | if (format) { |
Fam Zheng | b64ec4e | 2013-05-29 19:35:40 +0800 | [diff] [blame] | 1540 | drv = bdrv_find_whitelisted_format(format, bs->read_only); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1541 | if (!drv) { |
Luiz Capitulino | 333a96e | 2011-12-08 11:13:50 -0200 | [diff] [blame] | 1542 | error_set(errp, QERR_INVALID_BLOCK_FORMAT, format); |
| 1543 | return; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1544 | } |
| 1545 | } |
Luiz Capitulino | 333a96e | 2011-12-08 11:13:50 -0200 | [diff] [blame] | 1546 | |
Luiz Capitulino | 92d4855 | 2011-12-07 15:47:23 -0200 | [diff] [blame] | 1547 | eject_device(bs, 0, &err); |
| 1548 | if (error_is_set(&err)) { |
Luiz Capitulino | 333a96e | 2011-12-08 11:13:50 -0200 | [diff] [blame] | 1549 | error_propagate(errp, err); |
| 1550 | return; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1551 | } |
Luiz Capitulino | 333a96e | 2011-12-08 11:13:50 -0200 | [diff] [blame] | 1552 | |
Markus Armbruster | 528f766 | 2010-06-25 15:26:48 +0200 | [diff] [blame] | 1553 | bdrv_flags = bdrv_is_read_only(bs) ? 0 : BDRV_O_RDWR; |
Blue Swirl | 199630b | 2010-07-25 20:49:34 +0000 | [diff] [blame] | 1554 | bdrv_flags |= bdrv_is_snapshot(bs) ? BDRV_O_SNAPSHOT : 0; |
Luiz Capitulino | 333a96e | 2011-12-08 11:13:50 -0200 | [diff] [blame] | 1555 | |
| 1556 | qmp_bdrv_open_encrypted(bs, filename, bdrv_flags, drv, NULL, errp); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1557 | } |
Ryan Harper | 9063f81 | 2010-11-12 11:07:13 -0600 | [diff] [blame] | 1558 | |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 1559 | /* throttling disk I/O limits */ |
Luiz Capitulino | 80047da | 2011-12-14 16:49:14 -0200 | [diff] [blame] | 1560 | void qmp_block_set_io_throttle(const char *device, int64_t bps, int64_t bps_rd, |
Benoît Canet | 3e9fab6 | 2013-09-02 14:14:40 +0200 | [diff] [blame] | 1561 | int64_t bps_wr, |
| 1562 | int64_t iops, |
| 1563 | int64_t iops_rd, |
| 1564 | int64_t iops_wr, |
| 1565 | bool has_bps_max, |
| 1566 | int64_t bps_max, |
| 1567 | bool has_bps_rd_max, |
| 1568 | int64_t bps_rd_max, |
| 1569 | bool has_bps_wr_max, |
| 1570 | int64_t bps_wr_max, |
| 1571 | bool has_iops_max, |
| 1572 | int64_t iops_max, |
| 1573 | bool has_iops_rd_max, |
| 1574 | int64_t iops_rd_max, |
| 1575 | bool has_iops_wr_max, |
Benoît Canet | 2024c1d | 2013-09-02 14:14:41 +0200 | [diff] [blame] | 1576 | int64_t iops_wr_max, |
| 1577 | bool has_iops_size, |
| 1578 | int64_t iops_size, Error **errp) |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 1579 | { |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 1580 | ThrottleConfig cfg; |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 1581 | BlockDriverState *bs; |
| 1582 | |
Luiz Capitulino | 80047da | 2011-12-14 16:49:14 -0200 | [diff] [blame] | 1583 | bs = bdrv_find(device); |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 1584 | if (!bs) { |
Luiz Capitulino | 80047da | 2011-12-14 16:49:14 -0200 | [diff] [blame] | 1585 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
| 1586 | return; |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 1587 | } |
| 1588 | |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 1589 | memset(&cfg, 0, sizeof(cfg)); |
| 1590 | cfg.buckets[THROTTLE_BPS_TOTAL].avg = bps; |
| 1591 | cfg.buckets[THROTTLE_BPS_READ].avg = bps_rd; |
| 1592 | cfg.buckets[THROTTLE_BPS_WRITE].avg = bps_wr; |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 1593 | |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 1594 | cfg.buckets[THROTTLE_OPS_TOTAL].avg = iops; |
| 1595 | cfg.buckets[THROTTLE_OPS_READ].avg = iops_rd; |
| 1596 | cfg.buckets[THROTTLE_OPS_WRITE].avg = iops_wr; |
| 1597 | |
Benoît Canet | 3e9fab6 | 2013-09-02 14:14:40 +0200 | [diff] [blame] | 1598 | if (has_bps_max) { |
| 1599 | cfg.buckets[THROTTLE_BPS_TOTAL].max = bps_max; |
| 1600 | } |
| 1601 | if (has_bps_rd_max) { |
| 1602 | cfg.buckets[THROTTLE_BPS_READ].max = bps_rd_max; |
| 1603 | } |
| 1604 | if (has_bps_wr_max) { |
| 1605 | cfg.buckets[THROTTLE_BPS_WRITE].max = bps_wr_max; |
| 1606 | } |
| 1607 | if (has_iops_max) { |
| 1608 | cfg.buckets[THROTTLE_OPS_TOTAL].max = iops_max; |
| 1609 | } |
| 1610 | if (has_iops_rd_max) { |
| 1611 | cfg.buckets[THROTTLE_OPS_READ].max = iops_rd_max; |
| 1612 | } |
| 1613 | if (has_iops_wr_max) { |
| 1614 | cfg.buckets[THROTTLE_OPS_WRITE].max = iops_wr_max; |
| 1615 | } |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 1616 | |
Benoît Canet | 2024c1d | 2013-09-02 14:14:41 +0200 | [diff] [blame] | 1617 | if (has_iops_size) { |
| 1618 | cfg.op_size = iops_size; |
| 1619 | } |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 1620 | |
| 1621 | if (!check_throttle_config(&cfg, errp)) { |
Luiz Capitulino | 80047da | 2011-12-14 16:49:14 -0200 | [diff] [blame] | 1622 | return; |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 1623 | } |
| 1624 | |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 1625 | if (!bs->io_limits_enabled && throttle_enabled(&cfg)) { |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 1626 | bdrv_io_limits_enable(bs); |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 1627 | } else if (bs->io_limits_enabled && !throttle_enabled(&cfg)) { |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 1628 | bdrv_io_limits_disable(bs); |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 1629 | } |
| 1630 | |
| 1631 | if (bs->io_limits_enabled) { |
| 1632 | bdrv_set_io_limits(bs, &cfg); |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 1633 | } |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 1634 | } |
| 1635 | |
Ryan Harper | 9063f81 | 2010-11-12 11:07:13 -0600 | [diff] [blame] | 1636 | int do_drive_del(Monitor *mon, const QDict *qdict, QObject **ret_data) |
| 1637 | { |
| 1638 | const char *id = qdict_get_str(qdict, "id"); |
| 1639 | BlockDriverState *bs; |
Ryan Harper | 9063f81 | 2010-11-12 11:07:13 -0600 | [diff] [blame] | 1640 | |
| 1641 | bs = bdrv_find(id); |
| 1642 | if (!bs) { |
| 1643 | qerror_report(QERR_DEVICE_NOT_FOUND, id); |
| 1644 | return -1; |
| 1645 | } |
Marcelo Tosatti | 8591675 | 2011-01-26 12:12:35 -0200 | [diff] [blame] | 1646 | if (bdrv_in_use(bs)) { |
| 1647 | qerror_report(QERR_DEVICE_IN_USE, id); |
| 1648 | return -1; |
| 1649 | } |
Ryan Harper | 9063f81 | 2010-11-12 11:07:13 -0600 | [diff] [blame] | 1650 | |
| 1651 | /* quiesce block driver; prevent further io */ |
Stefan Hajnoczi | 922453b | 2011-11-30 12:23:43 +0000 | [diff] [blame] | 1652 | bdrv_drain_all(); |
Ryan Harper | 9063f81 | 2010-11-12 11:07:13 -0600 | [diff] [blame] | 1653 | bdrv_flush(bs); |
| 1654 | bdrv_close(bs); |
| 1655 | |
Markus Armbruster | fa879d6 | 2011-08-03 15:07:40 +0200 | [diff] [blame] | 1656 | /* if we have a device attached to this BlockDriverState |
Ryan Harper | d22b2f4 | 2011-03-29 20:51:47 -0500 | [diff] [blame] | 1657 | * then we need to make the drive anonymous until the device |
| 1658 | * can be removed. If this is a drive with no device backing |
| 1659 | * then we can just get rid of the block driver state right here. |
| 1660 | */ |
Markus Armbruster | fa879d6 | 2011-08-03 15:07:40 +0200 | [diff] [blame] | 1661 | if (bdrv_get_attached_dev(bs)) { |
Ryan Harper | d22b2f4 | 2011-03-29 20:51:47 -0500 | [diff] [blame] | 1662 | bdrv_make_anon(bs); |
Stefan Hajnoczi | 293c51a | 2013-06-05 10:33:14 +0200 | [diff] [blame] | 1663 | |
| 1664 | /* Further I/O must not pause the guest */ |
| 1665 | bdrv_set_on_error(bs, BLOCKDEV_ON_ERROR_REPORT, |
| 1666 | BLOCKDEV_ON_ERROR_REPORT); |
Ryan Harper | d22b2f4 | 2011-03-29 20:51:47 -0500 | [diff] [blame] | 1667 | } else { |
| 1668 | drive_uninit(drive_get_by_blockdev(bs)); |
Ryan Harper | 9063f81 | 2010-11-12 11:07:13 -0600 | [diff] [blame] | 1669 | } |
| 1670 | |
Ryan Harper | 9063f81 | 2010-11-12 11:07:13 -0600 | [diff] [blame] | 1671 | return 0; |
| 1672 | } |
Christoph Hellwig | 6d4a2b3 | 2011-01-24 13:32:33 +0100 | [diff] [blame] | 1673 | |
Luiz Capitulino | 5e7caac | 2011-11-25 14:57:10 -0200 | [diff] [blame] | 1674 | void qmp_block_resize(const char *device, int64_t size, Error **errp) |
Christoph Hellwig | 6d4a2b3 | 2011-01-24 13:32:33 +0100 | [diff] [blame] | 1675 | { |
Christoph Hellwig | 6d4a2b3 | 2011-01-24 13:32:33 +0100 | [diff] [blame] | 1676 | BlockDriverState *bs; |
Kevin Wolf | 8732901 | 2013-05-02 15:32:55 +0200 | [diff] [blame] | 1677 | int ret; |
Christoph Hellwig | 6d4a2b3 | 2011-01-24 13:32:33 +0100 | [diff] [blame] | 1678 | |
| 1679 | bs = bdrv_find(device); |
| 1680 | if (!bs) { |
Luiz Capitulino | 5e7caac | 2011-11-25 14:57:10 -0200 | [diff] [blame] | 1681 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
| 1682 | return; |
Christoph Hellwig | 6d4a2b3 | 2011-01-24 13:32:33 +0100 | [diff] [blame] | 1683 | } |
| 1684 | |
| 1685 | if (size < 0) { |
Stefan Hajnoczi | 939a1cc | 2012-01-04 22:23:34 +0000 | [diff] [blame] | 1686 | error_set(errp, QERR_INVALID_PARAMETER_VALUE, "size", "a >0 size"); |
Luiz Capitulino | 5e7caac | 2011-11-25 14:57:10 -0200 | [diff] [blame] | 1687 | return; |
Christoph Hellwig | 6d4a2b3 | 2011-01-24 13:32:33 +0100 | [diff] [blame] | 1688 | } |
| 1689 | |
Peter Lieven | 92b7a08 | 2013-03-11 11:04:24 +0100 | [diff] [blame] | 1690 | /* complete all in-flight operations before resizing the device */ |
| 1691 | bdrv_drain_all(); |
| 1692 | |
Kevin Wolf | 8732901 | 2013-05-02 15:32:55 +0200 | [diff] [blame] | 1693 | ret = bdrv_truncate(bs, size); |
| 1694 | switch (ret) { |
Stefan Hajnoczi | 939a1cc | 2012-01-04 22:23:34 +0000 | [diff] [blame] | 1695 | case 0: |
| 1696 | break; |
| 1697 | case -ENOMEDIUM: |
| 1698 | error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); |
| 1699 | break; |
| 1700 | case -ENOTSUP: |
| 1701 | error_set(errp, QERR_UNSUPPORTED); |
| 1702 | break; |
| 1703 | case -EACCES: |
| 1704 | error_set(errp, QERR_DEVICE_IS_READ_ONLY, device); |
| 1705 | break; |
| 1706 | case -EBUSY: |
| 1707 | error_set(errp, QERR_DEVICE_IN_USE, device); |
| 1708 | break; |
| 1709 | default: |
Kevin Wolf | 8732901 | 2013-05-02 15:32:55 +0200 | [diff] [blame] | 1710 | error_setg_errno(errp, -ret, "Could not resize"); |
Stefan Hajnoczi | 939a1cc | 2012-01-04 22:23:34 +0000 | [diff] [blame] | 1711 | break; |
Christoph Hellwig | 6d4a2b3 | 2011-01-24 13:32:33 +0100 | [diff] [blame] | 1712 | } |
Christoph Hellwig | 6d4a2b3 | 2011-01-24 13:32:33 +0100 | [diff] [blame] | 1713 | } |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 1714 | |
Jeff Cody | 9abf2db | 2012-09-27 13:29:14 -0400 | [diff] [blame] | 1715 | static void block_job_cb(void *opaque, int ret) |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 1716 | { |
| 1717 | BlockDriverState *bs = opaque; |
| 1718 | QObject *obj; |
| 1719 | |
Jeff Cody | 9abf2db | 2012-09-27 13:29:14 -0400 | [diff] [blame] | 1720 | trace_block_job_cb(bs, bs->job, ret); |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 1721 | |
| 1722 | assert(bs->job); |
| 1723 | obj = qobject_from_block_job(bs->job); |
| 1724 | if (ret < 0) { |
| 1725 | QDict *dict = qobject_to_qdict(obj); |
| 1726 | qdict_put(dict, "error", qstring_from_str(strerror(-ret))); |
| 1727 | } |
| 1728 | |
Stefan Hajnoczi | 370521a | 2012-01-18 14:40:48 +0000 | [diff] [blame] | 1729 | if (block_job_is_cancelled(bs->job)) { |
| 1730 | monitor_protocol_event(QEVENT_BLOCK_JOB_CANCELLED, obj); |
| 1731 | } else { |
| 1732 | monitor_protocol_event(QEVENT_BLOCK_JOB_COMPLETED, obj); |
| 1733 | } |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 1734 | qobject_decref(obj); |
Stefan Hajnoczi | aa398a5 | 2012-01-18 14:40:50 +0000 | [diff] [blame] | 1735 | |
Fam Zheng | fa510eb | 2013-08-23 09:14:51 +0800 | [diff] [blame] | 1736 | bdrv_put_ref_bh_schedule(bs); |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 1737 | } |
| 1738 | |
| 1739 | void qmp_block_stream(const char *device, bool has_base, |
Paolo Bonzini | 1d80909 | 2012-09-28 17:22:59 +0200 | [diff] [blame] | 1740 | const char *base, bool has_speed, int64_t speed, |
| 1741 | bool has_on_error, BlockdevOnError on_error, |
| 1742 | Error **errp) |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 1743 | { |
| 1744 | BlockDriverState *bs; |
Marcelo Tosatti | c8c3080 | 2012-01-18 14:40:53 +0000 | [diff] [blame] | 1745 | BlockDriverState *base_bs = NULL; |
Stefan Hajnoczi | fd7f8c6 | 2012-04-25 16:51:00 +0100 | [diff] [blame] | 1746 | Error *local_err = NULL; |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 1747 | |
Paolo Bonzini | 1d80909 | 2012-09-28 17:22:59 +0200 | [diff] [blame] | 1748 | if (!has_on_error) { |
| 1749 | on_error = BLOCKDEV_ON_ERROR_REPORT; |
| 1750 | } |
| 1751 | |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 1752 | bs = bdrv_find(device); |
| 1753 | if (!bs) { |
| 1754 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
| 1755 | return; |
| 1756 | } |
| 1757 | |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 1758 | if (base) { |
Marcelo Tosatti | c8c3080 | 2012-01-18 14:40:53 +0000 | [diff] [blame] | 1759 | base_bs = bdrv_find_backing_image(bs, base); |
| 1760 | if (base_bs == NULL) { |
| 1761 | error_set(errp, QERR_BASE_NOT_FOUND, base); |
| 1762 | return; |
| 1763 | } |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 1764 | } |
| 1765 | |
Stefan Hajnoczi | c83c66c | 2012-04-25 16:51:03 +0100 | [diff] [blame] | 1766 | stream_start(bs, base_bs, base, has_speed ? speed : 0, |
Paolo Bonzini | 1d80909 | 2012-09-28 17:22:59 +0200 | [diff] [blame] | 1767 | on_error, block_job_cb, bs, &local_err); |
Stefan Hajnoczi | fd7f8c6 | 2012-04-25 16:51:00 +0100 | [diff] [blame] | 1768 | if (error_is_set(&local_err)) { |
| 1769 | error_propagate(errp, local_err); |
| 1770 | return; |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 1771 | } |
| 1772 | |
| 1773 | trace_qmp_block_stream(bs, bs->job); |
| 1774 | } |
Stefan Hajnoczi | 2d47c6e | 2012-01-18 14:40:47 +0000 | [diff] [blame] | 1775 | |
Jeff Cody | ed61fc1 | 2012-09-27 13:29:16 -0400 | [diff] [blame] | 1776 | void qmp_block_commit(const char *device, |
| 1777 | bool has_base, const char *base, const char *top, |
| 1778 | bool has_speed, int64_t speed, |
| 1779 | Error **errp) |
| 1780 | { |
| 1781 | BlockDriverState *bs; |
| 1782 | BlockDriverState *base_bs, *top_bs; |
| 1783 | Error *local_err = NULL; |
| 1784 | /* This will be part of the QMP command, if/when the |
| 1785 | * BlockdevOnError change for blkmirror makes it in |
| 1786 | */ |
Paolo Bonzini | 92aa5c6 | 2012-09-28 17:22:55 +0200 | [diff] [blame] | 1787 | BlockdevOnError on_error = BLOCKDEV_ON_ERROR_REPORT; |
Jeff Cody | ed61fc1 | 2012-09-27 13:29:16 -0400 | [diff] [blame] | 1788 | |
| 1789 | /* drain all i/o before commits */ |
| 1790 | bdrv_drain_all(); |
| 1791 | |
| 1792 | bs = bdrv_find(device); |
| 1793 | if (!bs) { |
| 1794 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
| 1795 | return; |
| 1796 | } |
Jeff Cody | ed61fc1 | 2012-09-27 13:29:16 -0400 | [diff] [blame] | 1797 | |
| 1798 | /* default top_bs is the active layer */ |
| 1799 | top_bs = bs; |
| 1800 | |
| 1801 | if (top) { |
| 1802 | if (strcmp(bs->filename, top) != 0) { |
| 1803 | top_bs = bdrv_find_backing_image(bs, top); |
| 1804 | } |
| 1805 | } |
| 1806 | |
| 1807 | if (top_bs == NULL) { |
| 1808 | error_setg(errp, "Top image file %s not found", top ? top : "NULL"); |
| 1809 | return; |
| 1810 | } |
| 1811 | |
Jeff Cody | d5208c4 | 2012-10-16 15:49:10 -0400 | [diff] [blame] | 1812 | if (has_base && base) { |
| 1813 | base_bs = bdrv_find_backing_image(top_bs, base); |
| 1814 | } else { |
| 1815 | base_bs = bdrv_find_base(top_bs); |
| 1816 | } |
| 1817 | |
| 1818 | if (base_bs == NULL) { |
| 1819 | error_set(errp, QERR_BASE_NOT_FOUND, base ? base : "NULL"); |
| 1820 | return; |
| 1821 | } |
| 1822 | |
Jeff Cody | ed61fc1 | 2012-09-27 13:29:16 -0400 | [diff] [blame] | 1823 | commit_start(bs, base_bs, top_bs, speed, on_error, block_job_cb, bs, |
| 1824 | &local_err); |
| 1825 | if (local_err != NULL) { |
| 1826 | error_propagate(errp, local_err); |
| 1827 | return; |
| 1828 | } |
Jeff Cody | ed61fc1 | 2012-09-27 13:29:16 -0400 | [diff] [blame] | 1829 | } |
| 1830 | |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 1831 | void qmp_drive_backup(const char *device, const char *target, |
| 1832 | bool has_format, const char *format, |
Stefan Hajnoczi | b53169e | 2013-06-26 14:11:57 +0200 | [diff] [blame] | 1833 | enum MirrorSyncMode sync, |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 1834 | bool has_mode, enum NewImageMode mode, |
| 1835 | bool has_speed, int64_t speed, |
| 1836 | bool has_on_source_error, BlockdevOnError on_source_error, |
| 1837 | bool has_on_target_error, BlockdevOnError on_target_error, |
| 1838 | Error **errp) |
| 1839 | { |
| 1840 | BlockDriverState *bs; |
| 1841 | BlockDriverState *target_bs; |
Ian Main | fc5d3f8 | 2013-07-26 11:39:04 -0700 | [diff] [blame] | 1842 | BlockDriverState *source = NULL; |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 1843 | BlockDriver *drv = NULL; |
| 1844 | Error *local_err = NULL; |
| 1845 | int flags; |
| 1846 | int64_t size; |
| 1847 | int ret; |
| 1848 | |
| 1849 | if (!has_speed) { |
| 1850 | speed = 0; |
| 1851 | } |
| 1852 | if (!has_on_source_error) { |
| 1853 | on_source_error = BLOCKDEV_ON_ERROR_REPORT; |
| 1854 | } |
| 1855 | if (!has_on_target_error) { |
| 1856 | on_target_error = BLOCKDEV_ON_ERROR_REPORT; |
| 1857 | } |
| 1858 | if (!has_mode) { |
| 1859 | mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS; |
| 1860 | } |
| 1861 | |
| 1862 | bs = bdrv_find(device); |
| 1863 | if (!bs) { |
| 1864 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
| 1865 | return; |
| 1866 | } |
| 1867 | |
| 1868 | if (!bdrv_is_inserted(bs)) { |
| 1869 | error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); |
| 1870 | return; |
| 1871 | } |
| 1872 | |
| 1873 | if (!has_format) { |
| 1874 | format = mode == NEW_IMAGE_MODE_EXISTING ? NULL : bs->drv->format_name; |
| 1875 | } |
| 1876 | if (format) { |
| 1877 | drv = bdrv_find_format(format); |
| 1878 | if (!drv) { |
| 1879 | error_set(errp, QERR_INVALID_BLOCK_FORMAT, format); |
| 1880 | return; |
| 1881 | } |
| 1882 | } |
| 1883 | |
| 1884 | if (bdrv_in_use(bs)) { |
| 1885 | error_set(errp, QERR_DEVICE_IN_USE, device); |
| 1886 | return; |
| 1887 | } |
| 1888 | |
| 1889 | flags = bs->open_flags | BDRV_O_RDWR; |
| 1890 | |
Ian Main | fc5d3f8 | 2013-07-26 11:39:04 -0700 | [diff] [blame] | 1891 | /* See if we have a backing HD we can use to create our new image |
| 1892 | * on top of. */ |
| 1893 | if (sync == MIRROR_SYNC_MODE_TOP) { |
| 1894 | source = bs->backing_hd; |
| 1895 | if (!source) { |
| 1896 | sync = MIRROR_SYNC_MODE_FULL; |
| 1897 | } |
| 1898 | } |
| 1899 | if (sync == MIRROR_SYNC_MODE_NONE) { |
| 1900 | source = bs; |
| 1901 | } |
| 1902 | |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 1903 | size = bdrv_getlength(bs); |
| 1904 | if (size < 0) { |
| 1905 | error_setg_errno(errp, -size, "bdrv_getlength failed"); |
| 1906 | return; |
| 1907 | } |
| 1908 | |
| 1909 | if (mode != NEW_IMAGE_MODE_EXISTING) { |
| 1910 | assert(format && drv); |
Ian Main | fc5d3f8 | 2013-07-26 11:39:04 -0700 | [diff] [blame] | 1911 | if (source) { |
| 1912 | bdrv_img_create(target, format, source->filename, |
| 1913 | source->drv->format_name, NULL, |
| 1914 | size, flags, &local_err, false); |
| 1915 | } else { |
| 1916 | bdrv_img_create(target, format, NULL, NULL, NULL, |
| 1917 | size, flags, &local_err, false); |
| 1918 | } |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 1919 | } |
| 1920 | |
| 1921 | if (error_is_set(&local_err)) { |
| 1922 | error_propagate(errp, local_err); |
| 1923 | return; |
| 1924 | } |
| 1925 | |
| 1926 | target_bs = bdrv_new(""); |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1927 | ret = bdrv_open(target_bs, target, NULL, flags, drv, &local_err); |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 1928 | if (ret < 0) { |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 1929 | bdrv_unref(target_bs); |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 1930 | error_propagate(errp, local_err); |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 1931 | return; |
| 1932 | } |
| 1933 | |
Ian Main | fc5d3f8 | 2013-07-26 11:39:04 -0700 | [diff] [blame] | 1934 | backup_start(bs, target_bs, speed, sync, on_source_error, on_target_error, |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 1935 | block_job_cb, bs, &local_err); |
| 1936 | if (local_err != NULL) { |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 1937 | bdrv_unref(target_bs); |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 1938 | error_propagate(errp, local_err); |
| 1939 | return; |
| 1940 | } |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 1941 | } |
| 1942 | |
Paolo Bonzini | 08e4ed6 | 2013-01-22 09:03:13 +0100 | [diff] [blame] | 1943 | #define DEFAULT_MIRROR_BUF_SIZE (10 << 20) |
| 1944 | |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 1945 | void qmp_drive_mirror(const char *device, const char *target, |
| 1946 | bool has_format, const char *format, |
| 1947 | enum MirrorSyncMode sync, |
| 1948 | bool has_mode, enum NewImageMode mode, |
Paolo Bonzini | b952b55 | 2012-10-18 16:49:28 +0200 | [diff] [blame] | 1949 | bool has_speed, int64_t speed, |
Paolo Bonzini | eee13df | 2013-01-21 17:09:46 +0100 | [diff] [blame] | 1950 | bool has_granularity, uint32_t granularity, |
Paolo Bonzini | 08e4ed6 | 2013-01-22 09:03:13 +0100 | [diff] [blame] | 1951 | bool has_buf_size, int64_t buf_size, |
Paolo Bonzini | b952b55 | 2012-10-18 16:49:28 +0200 | [diff] [blame] | 1952 | bool has_on_source_error, BlockdevOnError on_source_error, |
| 1953 | bool has_on_target_error, BlockdevOnError on_target_error, |
| 1954 | Error **errp) |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 1955 | { |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 1956 | BlockDriverState *bs; |
| 1957 | BlockDriverState *source, *target_bs; |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 1958 | BlockDriver *drv = NULL; |
| 1959 | Error *local_err = NULL; |
| 1960 | int flags; |
Stefan Hajnoczi | ac3c5d8 | 2013-06-24 17:13:13 +0200 | [diff] [blame] | 1961 | int64_t size; |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 1962 | int ret; |
| 1963 | |
| 1964 | if (!has_speed) { |
| 1965 | speed = 0; |
| 1966 | } |
Paolo Bonzini | b952b55 | 2012-10-18 16:49:28 +0200 | [diff] [blame] | 1967 | if (!has_on_source_error) { |
| 1968 | on_source_error = BLOCKDEV_ON_ERROR_REPORT; |
| 1969 | } |
| 1970 | if (!has_on_target_error) { |
| 1971 | on_target_error = BLOCKDEV_ON_ERROR_REPORT; |
| 1972 | } |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 1973 | if (!has_mode) { |
| 1974 | mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS; |
| 1975 | } |
Paolo Bonzini | eee13df | 2013-01-21 17:09:46 +0100 | [diff] [blame] | 1976 | if (!has_granularity) { |
| 1977 | granularity = 0; |
| 1978 | } |
Paolo Bonzini | 08e4ed6 | 2013-01-22 09:03:13 +0100 | [diff] [blame] | 1979 | if (!has_buf_size) { |
| 1980 | buf_size = DEFAULT_MIRROR_BUF_SIZE; |
| 1981 | } |
| 1982 | |
Paolo Bonzini | eee13df | 2013-01-21 17:09:46 +0100 | [diff] [blame] | 1983 | if (granularity != 0 && (granularity < 512 || granularity > 1048576 * 64)) { |
| 1984 | error_set(errp, QERR_INVALID_PARAMETER, device); |
| 1985 | return; |
| 1986 | } |
| 1987 | if (granularity & (granularity - 1)) { |
| 1988 | error_set(errp, QERR_INVALID_PARAMETER, device); |
| 1989 | return; |
| 1990 | } |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 1991 | |
| 1992 | bs = bdrv_find(device); |
| 1993 | if (!bs) { |
| 1994 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
| 1995 | return; |
| 1996 | } |
| 1997 | |
| 1998 | if (!bdrv_is_inserted(bs)) { |
| 1999 | error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); |
| 2000 | return; |
| 2001 | } |
| 2002 | |
| 2003 | if (!has_format) { |
| 2004 | format = mode == NEW_IMAGE_MODE_EXISTING ? NULL : bs->drv->format_name; |
| 2005 | } |
| 2006 | if (format) { |
| 2007 | drv = bdrv_find_format(format); |
| 2008 | if (!drv) { |
| 2009 | error_set(errp, QERR_INVALID_BLOCK_FORMAT, format); |
| 2010 | return; |
| 2011 | } |
| 2012 | } |
| 2013 | |
| 2014 | if (bdrv_in_use(bs)) { |
| 2015 | error_set(errp, QERR_DEVICE_IN_USE, device); |
| 2016 | return; |
| 2017 | } |
| 2018 | |
| 2019 | flags = bs->open_flags | BDRV_O_RDWR; |
| 2020 | source = bs->backing_hd; |
| 2021 | if (!source && sync == MIRROR_SYNC_MODE_TOP) { |
| 2022 | sync = MIRROR_SYNC_MODE_FULL; |
| 2023 | } |
| 2024 | |
Stefan Hajnoczi | ac3c5d8 | 2013-06-24 17:13:13 +0200 | [diff] [blame] | 2025 | size = bdrv_getlength(bs); |
| 2026 | if (size < 0) { |
| 2027 | error_setg_errno(errp, -size, "bdrv_getlength failed"); |
| 2028 | return; |
| 2029 | } |
| 2030 | |
Max Reitz | 1452686 | 2013-11-06 19:50:44 +0100 | [diff] [blame] | 2031 | if ((sync == MIRROR_SYNC_MODE_FULL || !source) |
| 2032 | && mode != NEW_IMAGE_MODE_EXISTING) |
| 2033 | { |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 2034 | /* create new image w/o backing file */ |
| 2035 | assert(format && drv); |
Luiz Capitulino | cf8f242 | 2012-11-30 10:52:08 -0200 | [diff] [blame] | 2036 | bdrv_img_create(target, format, |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 2037 | NULL, NULL, NULL, size, flags, &local_err, false); |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 2038 | } else { |
| 2039 | switch (mode) { |
| 2040 | case NEW_IMAGE_MODE_EXISTING: |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 2041 | break; |
| 2042 | case NEW_IMAGE_MODE_ABSOLUTE_PATHS: |
| 2043 | /* create new image with backing file */ |
Luiz Capitulino | cf8f242 | 2012-11-30 10:52:08 -0200 | [diff] [blame] | 2044 | bdrv_img_create(target, format, |
| 2045 | source->filename, |
| 2046 | source->drv->format_name, |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 2047 | NULL, size, flags, &local_err, false); |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 2048 | break; |
| 2049 | default: |
| 2050 | abort(); |
| 2051 | } |
| 2052 | } |
| 2053 | |
Luiz Capitulino | cf8f242 | 2012-11-30 10:52:08 -0200 | [diff] [blame] | 2054 | if (error_is_set(&local_err)) { |
| 2055 | error_propagate(errp, local_err); |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 2056 | return; |
| 2057 | } |
| 2058 | |
Paolo Bonzini | b812f67 | 2013-01-21 17:09:43 +0100 | [diff] [blame] | 2059 | /* Mirroring takes care of copy-on-write using the source's backing |
| 2060 | * file. |
| 2061 | */ |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 2062 | target_bs = bdrv_new(""); |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 2063 | ret = bdrv_open(target_bs, target, NULL, flags | BDRV_O_NO_BACKING, drv, |
| 2064 | &local_err); |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 2065 | if (ret < 0) { |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 2066 | bdrv_unref(target_bs); |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 2067 | error_propagate(errp, local_err); |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 2068 | return; |
| 2069 | } |
| 2070 | |
Paolo Bonzini | 08e4ed6 | 2013-01-22 09:03:13 +0100 | [diff] [blame] | 2071 | mirror_start(bs, target_bs, speed, granularity, buf_size, sync, |
Paolo Bonzini | eee13df | 2013-01-21 17:09:46 +0100 | [diff] [blame] | 2072 | on_source_error, on_target_error, |
Paolo Bonzini | b952b55 | 2012-10-18 16:49:28 +0200 | [diff] [blame] | 2073 | block_job_cb, bs, &local_err); |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 2074 | if (local_err != NULL) { |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 2075 | bdrv_unref(target_bs); |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 2076 | error_propagate(errp, local_err); |
| 2077 | return; |
| 2078 | } |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 2079 | } |
| 2080 | |
Stefan Hajnoczi | 2d47c6e | 2012-01-18 14:40:47 +0000 | [diff] [blame] | 2081 | static BlockJob *find_block_job(const char *device) |
| 2082 | { |
| 2083 | BlockDriverState *bs; |
| 2084 | |
| 2085 | bs = bdrv_find(device); |
| 2086 | if (!bs || !bs->job) { |
| 2087 | return NULL; |
| 2088 | } |
| 2089 | return bs->job; |
| 2090 | } |
| 2091 | |
Stefan Hajnoczi | 882ec7c | 2012-04-25 16:51:02 +0100 | [diff] [blame] | 2092 | void qmp_block_job_set_speed(const char *device, int64_t speed, Error **errp) |
Stefan Hajnoczi | 2d47c6e | 2012-01-18 14:40:47 +0000 | [diff] [blame] | 2093 | { |
| 2094 | BlockJob *job = find_block_job(device); |
| 2095 | |
| 2096 | if (!job) { |
Paolo Bonzini | 7ef1507 | 2012-09-28 17:22:44 +0200 | [diff] [blame] | 2097 | error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device); |
Stefan Hajnoczi | 2d47c6e | 2012-01-18 14:40:47 +0000 | [diff] [blame] | 2098 | return; |
| 2099 | } |
| 2100 | |
Stefan Hajnoczi | 882ec7c | 2012-04-25 16:51:02 +0100 | [diff] [blame] | 2101 | block_job_set_speed(job, speed, errp); |
Stefan Hajnoczi | 2d47c6e | 2012-01-18 14:40:47 +0000 | [diff] [blame] | 2102 | } |
Stefan Hajnoczi | 370521a | 2012-01-18 14:40:48 +0000 | [diff] [blame] | 2103 | |
Paolo Bonzini | 6e37fb8 | 2012-09-28 17:22:51 +0200 | [diff] [blame] | 2104 | void qmp_block_job_cancel(const char *device, |
| 2105 | bool has_force, bool force, Error **errp) |
| 2106 | { |
| 2107 | BlockJob *job = find_block_job(device); |
| 2108 | |
| 2109 | if (!has_force) { |
| 2110 | force = false; |
| 2111 | } |
| 2112 | |
| 2113 | if (!job) { |
| 2114 | error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device); |
| 2115 | return; |
| 2116 | } |
| 2117 | if (job->paused && !force) { |
| 2118 | error_set(errp, QERR_BLOCK_JOB_PAUSED, device); |
| 2119 | return; |
| 2120 | } |
| 2121 | |
| 2122 | trace_qmp_block_job_cancel(job); |
| 2123 | block_job_cancel(job); |
| 2124 | } |
| 2125 | |
| 2126 | void qmp_block_job_pause(const char *device, Error **errp) |
Stefan Hajnoczi | 370521a | 2012-01-18 14:40:48 +0000 | [diff] [blame] | 2127 | { |
| 2128 | BlockJob *job = find_block_job(device); |
| 2129 | |
| 2130 | if (!job) { |
Paolo Bonzini | 7ef1507 | 2012-09-28 17:22:44 +0200 | [diff] [blame] | 2131 | error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device); |
Stefan Hajnoczi | 370521a | 2012-01-18 14:40:48 +0000 | [diff] [blame] | 2132 | return; |
| 2133 | } |
Paolo Bonzini | 6e37fb8 | 2012-09-28 17:22:51 +0200 | [diff] [blame] | 2134 | |
| 2135 | trace_qmp_block_job_pause(job); |
| 2136 | block_job_pause(job); |
| 2137 | } |
| 2138 | |
| 2139 | void qmp_block_job_resume(const char *device, Error **errp) |
| 2140 | { |
| 2141 | BlockJob *job = find_block_job(device); |
| 2142 | |
| 2143 | if (!job) { |
| 2144 | error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device); |
Paolo Bonzini | 8acc72a | 2012-09-28 17:22:50 +0200 | [diff] [blame] | 2145 | return; |
| 2146 | } |
Stefan Hajnoczi | 370521a | 2012-01-18 14:40:48 +0000 | [diff] [blame] | 2147 | |
Paolo Bonzini | 6e37fb8 | 2012-09-28 17:22:51 +0200 | [diff] [blame] | 2148 | trace_qmp_block_job_resume(job); |
| 2149 | block_job_resume(job); |
Stefan Hajnoczi | 370521a | 2012-01-18 14:40:48 +0000 | [diff] [blame] | 2150 | } |
Stefan Hajnoczi | fb5458c | 2012-01-18 14:40:49 +0000 | [diff] [blame] | 2151 | |
Paolo Bonzini | aeae883 | 2012-10-18 16:49:21 +0200 | [diff] [blame] | 2152 | void qmp_block_job_complete(const char *device, Error **errp) |
| 2153 | { |
| 2154 | BlockJob *job = find_block_job(device); |
| 2155 | |
| 2156 | if (!job) { |
| 2157 | error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device); |
| 2158 | return; |
| 2159 | } |
| 2160 | |
| 2161 | trace_qmp_block_job_complete(job); |
| 2162 | block_job_complete(job, errp); |
| 2163 | } |
| 2164 | |
Kevin Wolf | d26c9a1 | 2013-09-23 15:26:03 +0200 | [diff] [blame] | 2165 | void qmp_blockdev_add(BlockdevOptions *options, Error **errp) |
| 2166 | { |
| 2167 | QmpOutputVisitor *ov = qmp_output_visitor_new(); |
| 2168 | QObject *obj; |
| 2169 | QDict *qdict; |
Kevin Wolf | d26c9a1 | 2013-09-23 15:26:03 +0200 | [diff] [blame] | 2170 | Error *local_err = NULL; |
| 2171 | |
| 2172 | /* Require an ID in the top level */ |
| 2173 | if (!options->has_id) { |
| 2174 | error_setg(errp, "Block device needs an ID"); |
| 2175 | goto fail; |
| 2176 | } |
| 2177 | |
| 2178 | /* TODO Sort it out in raw-posix and drive_init: Reject aio=native with |
| 2179 | * cache.direct=false instead of silently switching to aio=threads, except |
| 2180 | * if called from drive_init. |
| 2181 | * |
| 2182 | * For now, simply forbidding the combination for all drivers will do. */ |
| 2183 | if (options->has_aio && options->aio == BLOCKDEV_AIO_OPTIONS_NATIVE) { |
| 2184 | bool direct = options->cache->has_direct && options->cache->direct; |
| 2185 | if (!options->has_cache && !direct) { |
| 2186 | error_setg(errp, "aio=native requires cache.direct=true"); |
| 2187 | goto fail; |
| 2188 | } |
| 2189 | } |
| 2190 | |
| 2191 | visit_type_BlockdevOptions(qmp_output_get_visitor(ov), |
| 2192 | &options, NULL, &local_err); |
| 2193 | if (error_is_set(&local_err)) { |
| 2194 | error_propagate(errp, local_err); |
| 2195 | goto fail; |
| 2196 | } |
| 2197 | |
| 2198 | obj = qmp_output_get_qobject(ov); |
| 2199 | qdict = qobject_to_qdict(obj); |
| 2200 | |
| 2201 | qdict_flatten(qdict); |
| 2202 | |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 2203 | blockdev_init(qdict, IF_NONE, &local_err); |
| 2204 | if (error_is_set(&local_err)) { |
| 2205 | error_propagate(errp, local_err); |
Kevin Wolf | d26c9a1 | 2013-09-23 15:26:03 +0200 | [diff] [blame] | 2206 | goto fail; |
| 2207 | } |
| 2208 | |
| 2209 | fail: |
| 2210 | qmp_output_visitor_cleanup(ov); |
| 2211 | } |
| 2212 | |
Stefan Hajnoczi | fb5458c | 2012-01-18 14:40:49 +0000 | [diff] [blame] | 2213 | static void do_qmp_query_block_jobs_one(void *opaque, BlockDriverState *bs) |
| 2214 | { |
| 2215 | BlockJobInfoList **prev = opaque; |
| 2216 | BlockJob *job = bs->job; |
| 2217 | |
| 2218 | if (job) { |
Paolo Bonzini | 30e628b | 2012-09-28 17:22:48 +0200 | [diff] [blame] | 2219 | BlockJobInfoList *elem = g_new0(BlockJobInfoList, 1); |
| 2220 | elem->value = block_job_query(bs->job); |
Stefan Hajnoczi | fb5458c | 2012-01-18 14:40:49 +0000 | [diff] [blame] | 2221 | (*prev)->next = elem; |
| 2222 | *prev = elem; |
| 2223 | } |
| 2224 | } |
| 2225 | |
| 2226 | BlockJobInfoList *qmp_query_block_jobs(Error **errp) |
| 2227 | { |
| 2228 | /* Dummy is a fake list element for holding the head pointer */ |
| 2229 | BlockJobInfoList dummy = {}; |
| 2230 | BlockJobInfoList *prev = &dummy; |
| 2231 | bdrv_iterate(do_qmp_query_block_jobs_one, &prev); |
| 2232 | return dummy.next; |
| 2233 | } |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 2234 | |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 2235 | QemuOptsList qemu_common_drive_opts = { |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 2236 | .name = "drive", |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 2237 | .head = QTAILQ_HEAD_INITIALIZER(qemu_common_drive_opts.head), |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 2238 | .desc = { |
| 2239 | { |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 2240 | .name = "snapshot", |
| 2241 | .type = QEMU_OPT_BOOL, |
| 2242 | .help = "enable/disable snapshot mode", |
| 2243 | },{ |
| 2244 | .name = "file", |
| 2245 | .type = QEMU_OPT_STRING, |
| 2246 | .help = "disk image", |
| 2247 | },{ |
Paolo Bonzini | a9384af | 2013-02-08 14:06:12 +0100 | [diff] [blame] | 2248 | .name = "discard", |
| 2249 | .type = QEMU_OPT_STRING, |
| 2250 | .help = "discard operation (ignore/off, unmap/on)", |
| 2251 | },{ |
Kevin Wolf | 29c4e2b | 2013-07-18 16:31:25 +0200 | [diff] [blame] | 2252 | .name = "cache.writeback", |
| 2253 | .type = QEMU_OPT_BOOL, |
| 2254 | .help = "enables writeback mode for any caches", |
| 2255 | },{ |
| 2256 | .name = "cache.direct", |
| 2257 | .type = QEMU_OPT_BOOL, |
| 2258 | .help = "enables use of O_DIRECT (bypass the host page cache)", |
| 2259 | },{ |
| 2260 | .name = "cache.no-flush", |
| 2261 | .type = QEMU_OPT_BOOL, |
| 2262 | .help = "ignore any flush requests for the device", |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 2263 | },{ |
| 2264 | .name = "aio", |
| 2265 | .type = QEMU_OPT_STRING, |
| 2266 | .help = "host AIO implementation (threads, native)", |
| 2267 | },{ |
| 2268 | .name = "format", |
| 2269 | .type = QEMU_OPT_STRING, |
| 2270 | .help = "disk format (raw, qcow2, ...)", |
| 2271 | },{ |
| 2272 | .name = "serial", |
| 2273 | .type = QEMU_OPT_STRING, |
| 2274 | .help = "disk serial number", |
| 2275 | },{ |
| 2276 | .name = "rerror", |
| 2277 | .type = QEMU_OPT_STRING, |
| 2278 | .help = "read error action", |
| 2279 | },{ |
| 2280 | .name = "werror", |
| 2281 | .type = QEMU_OPT_STRING, |
| 2282 | .help = "write error action", |
| 2283 | },{ |
Kevin Wolf | 0f227a9 | 2013-07-19 20:07:29 +0200 | [diff] [blame] | 2284 | .name = "read-only", |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 2285 | .type = QEMU_OPT_BOOL, |
| 2286 | .help = "open drive file as read-only", |
| 2287 | },{ |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 2288 | .name = "throttling.iops-total", |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 2289 | .type = QEMU_OPT_NUMBER, |
| 2290 | .help = "limit total I/O operations per second", |
| 2291 | },{ |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 2292 | .name = "throttling.iops-read", |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 2293 | .type = QEMU_OPT_NUMBER, |
| 2294 | .help = "limit read operations per second", |
| 2295 | },{ |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 2296 | .name = "throttling.iops-write", |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 2297 | .type = QEMU_OPT_NUMBER, |
| 2298 | .help = "limit write operations per second", |
| 2299 | },{ |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 2300 | .name = "throttling.bps-total", |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 2301 | .type = QEMU_OPT_NUMBER, |
| 2302 | .help = "limit total bytes per second", |
| 2303 | },{ |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 2304 | .name = "throttling.bps-read", |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 2305 | .type = QEMU_OPT_NUMBER, |
| 2306 | .help = "limit read bytes per second", |
| 2307 | },{ |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 2308 | .name = "throttling.bps-write", |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 2309 | .type = QEMU_OPT_NUMBER, |
| 2310 | .help = "limit write bytes per second", |
| 2311 | },{ |
Benoît Canet | 3e9fab6 | 2013-09-02 14:14:40 +0200 | [diff] [blame] | 2312 | .name = "throttling.iops-total-max", |
| 2313 | .type = QEMU_OPT_NUMBER, |
| 2314 | .help = "I/O operations burst", |
| 2315 | },{ |
| 2316 | .name = "throttling.iops-read-max", |
| 2317 | .type = QEMU_OPT_NUMBER, |
| 2318 | .help = "I/O operations read burst", |
| 2319 | },{ |
| 2320 | .name = "throttling.iops-write-max", |
| 2321 | .type = QEMU_OPT_NUMBER, |
| 2322 | .help = "I/O operations write burst", |
| 2323 | },{ |
| 2324 | .name = "throttling.bps-total-max", |
| 2325 | .type = QEMU_OPT_NUMBER, |
| 2326 | .help = "total bytes burst", |
| 2327 | },{ |
| 2328 | .name = "throttling.bps-read-max", |
| 2329 | .type = QEMU_OPT_NUMBER, |
| 2330 | .help = "total bytes read burst", |
| 2331 | },{ |
| 2332 | .name = "throttling.bps-write-max", |
| 2333 | .type = QEMU_OPT_NUMBER, |
| 2334 | .help = "total bytes write burst", |
| 2335 | },{ |
Benoît Canet | 2024c1d | 2013-09-02 14:14:41 +0200 | [diff] [blame] | 2336 | .name = "throttling.iops-size", |
| 2337 | .type = QEMU_OPT_NUMBER, |
| 2338 | .help = "when limiting by iops max size of an I/O in bytes", |
| 2339 | },{ |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 2340 | .name = "copy-on-read", |
| 2341 | .type = QEMU_OPT_BOOL, |
| 2342 | .help = "copy read data from backing file into image file", |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 2343 | }, |
| 2344 | { /* end of list */ } |
| 2345 | }, |
| 2346 | }; |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 2347 | |
| 2348 | QemuOptsList qemu_drive_opts = { |
| 2349 | .name = "drive", |
| 2350 | .head = QTAILQ_HEAD_INITIALIZER(qemu_drive_opts.head), |
| 2351 | .desc = { |
Kevin Wolf | 492fdc6 | 2013-06-19 13:44:17 +0200 | [diff] [blame] | 2352 | /* |
| 2353 | * no elements => accept any params |
| 2354 | * validation will happen later |
| 2355 | */ |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 2356 | { /* end of list */ } |
| 2357 | }, |
| 2358 | }; |