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