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 | |
Peter Maydell | d38ea87 | 2016-01-29 17:50:05 +0000 | [diff] [blame] | 33 | #include "qemu/osdep.h" |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 34 | #include "sysemu/block-backend.h" |
Paolo Bonzini | 9c17d61 | 2012-12-17 18:20:04 +0100 | [diff] [blame] | 35 | #include "sysemu/blockdev.h" |
Paolo Bonzini | 0d09e41 | 2013-02-05 17:06:20 +0100 | [diff] [blame] | 36 | #include "hw/block/block.h" |
Paolo Bonzini | 737e150 | 2012-12-17 18:19:44 +0100 | [diff] [blame] | 37 | #include "block/blockjob.h" |
Alberto Garcia | 76f4afb | 2015-06-08 18:17:44 +0200 | [diff] [blame] | 38 | #include "block/throttle-groups.h" |
Paolo Bonzini | 83c9089 | 2012-12-17 18:19:49 +0100 | [diff] [blame] | 39 | #include "monitor/monitor.h" |
Markus Armbruster | d49b683 | 2015-03-17 18:29:20 +0100 | [diff] [blame] | 40 | #include "qemu/error-report.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 41 | #include "qemu/option.h" |
| 42 | #include "qemu/config-file.h" |
Paolo Bonzini | 7b1b5d1 | 2012-12-17 18:19:43 +0100 | [diff] [blame] | 43 | #include "qapi/qmp/types.h" |
Kevin Wolf | d26c9a1 | 2013-09-23 15:26:03 +0200 | [diff] [blame] | 44 | #include "qapi-visit.h" |
Markus Armbruster | cc7a8ea | 2015-03-17 17:22:46 +0100 | [diff] [blame] | 45 | #include "qapi/qmp/qerror.h" |
Kevin Wolf | d26c9a1 | 2013-09-23 15:26:03 +0200 | [diff] [blame] | 46 | #include "qapi/qmp-output-visitor.h" |
Peter Lieven | 9e7dac7 | 2014-08-13 19:20:17 +0200 | [diff] [blame] | 47 | #include "qapi/util.h" |
Paolo Bonzini | 9c17d61 | 2012-12-17 18:20:04 +0100 | [diff] [blame] | 48 | #include "sysemu/sysemu.h" |
Paolo Bonzini | 737e150 | 2012-12-17 18:19:44 +0100 | [diff] [blame] | 49 | #include "block/block_int.h" |
Luiz Capitulino | a4dea8a | 2011-11-23 13:28:21 -0200 | [diff] [blame] | 50 | #include "qmp-commands.h" |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 51 | #include "trace.h" |
Paolo Bonzini | 9c17d61 | 2012-12-17 18:20:04 +0100 | [diff] [blame] | 52 | #include "sysemu/arch_init.h" |
Veronia Bahaa | f348b6d | 2016-03-20 19:16:19 +0200 | [diff] [blame] | 53 | #include "qemu/cutils.h" |
| 54 | #include "qemu/help_option.h" |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 55 | |
Max Reitz | 9c4218e | 2016-01-29 16:36:12 +0100 | [diff] [blame] | 56 | static QTAILQ_HEAD(, BlockDriverState) monitor_bdrv_states = |
| 57 | QTAILQ_HEAD_INITIALIZER(monitor_bdrv_states); |
| 58 | |
Colin Lord | bf18bee | 2016-06-06 14:15:22 -0400 | [diff] [blame] | 59 | static int do_open_tray(const char *device, bool force, Error **errp); |
| 60 | |
Markus Armbruster | 1960966 | 2011-01-28 11:21:39 +0100 | [diff] [blame] | 61 | static const char *const if_name[IF_COUNT] = { |
| 62 | [IF_NONE] = "none", |
| 63 | [IF_IDE] = "ide", |
| 64 | [IF_SCSI] = "scsi", |
| 65 | [IF_FLOPPY] = "floppy", |
| 66 | [IF_PFLASH] = "pflash", |
| 67 | [IF_MTD] = "mtd", |
| 68 | [IF_SD] = "sd", |
| 69 | [IF_VIRTIO] = "virtio", |
| 70 | [IF_XEN] = "xen", |
| 71 | }; |
| 72 | |
John Snow | 21dff8c | 2014-10-01 14:19:25 -0400 | [diff] [blame] | 73 | static int if_max_devs[IF_COUNT] = { |
Markus Armbruster | 27d6bf4 | 2011-01-28 11:21:40 +0100 | [diff] [blame] | 74 | /* |
| 75 | * Do not change these numbers! They govern how drive option |
| 76 | * index maps to unit and bus. That mapping is ABI. |
| 77 | * |
Wei Jiangang | 547cb15 | 2016-04-26 18:12:43 +0800 | [diff] [blame] | 78 | * All controllers used to implement if=T drives need to support |
Markus Armbruster | 27d6bf4 | 2011-01-28 11:21:40 +0100 | [diff] [blame] | 79 | * if_max_devs[T] units, for any T with if_max_devs[T] != 0. |
| 80 | * Otherwise, some index values map to "impossible" bus, unit |
| 81 | * values. |
| 82 | * |
| 83 | * For instance, if you change [IF_SCSI] to 255, -drive |
| 84 | * if=scsi,index=12 no longer means bus=1,unit=5, but |
| 85 | * bus=0,unit=12. With an lsi53c895a controller (7 units max), |
| 86 | * the drive can't be set up. Regression. |
| 87 | */ |
| 88 | [IF_IDE] = 2, |
| 89 | [IF_SCSI] = 7, |
Markus Armbruster | 1960966 | 2011-01-28 11:21:39 +0100 | [diff] [blame] | 90 | }; |
| 91 | |
John Snow | 21dff8c | 2014-10-01 14:19:25 -0400 | [diff] [blame] | 92 | /** |
| 93 | * Boards may call this to offer board-by-board overrides |
| 94 | * of the default, global values. |
| 95 | */ |
| 96 | void override_max_devs(BlockInterfaceType type, int max_devs) |
| 97 | { |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 98 | BlockBackend *blk; |
John Snow | 21dff8c | 2014-10-01 14:19:25 -0400 | [diff] [blame] | 99 | DriveInfo *dinfo; |
| 100 | |
| 101 | if (max_devs <= 0) { |
| 102 | return; |
| 103 | } |
| 104 | |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 105 | for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { |
| 106 | dinfo = blk_legacy_dinfo(blk); |
John Snow | 21dff8c | 2014-10-01 14:19:25 -0400 | [diff] [blame] | 107 | if (dinfo->type == type) { |
| 108 | fprintf(stderr, "Cannot override units-per-bus property of" |
| 109 | " the %s interface, because a drive of that type has" |
| 110 | " already been added.\n", if_name[type]); |
| 111 | g_assert_not_reached(); |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | if_max_devs[type] = max_devs; |
| 116 | } |
| 117 | |
Markus Armbruster | 14bafc5 | 2010-06-25 08:09:10 +0200 | [diff] [blame] | 118 | /* |
| 119 | * We automatically delete the drive when a device using it gets |
| 120 | * unplugged. Questionable feature, but we can't just drop it. |
| 121 | * Device models call blockdev_mark_auto_del() to schedule the |
| 122 | * automatic deletion, and generic qdev code calls blockdev_auto_del() |
| 123 | * when deletion is actually safe. |
| 124 | */ |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 125 | void blockdev_mark_auto_del(BlockBackend *blk) |
Markus Armbruster | 14bafc5 | 2010-06-25 08:09:10 +0200 | [diff] [blame] | 126 | { |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 127 | DriveInfo *dinfo = blk_legacy_dinfo(blk); |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 128 | BlockDriverState *bs = blk_bs(blk); |
Stefan Hajnoczi | 91fddb0 | 2014-10-21 12:03:52 +0100 | [diff] [blame] | 129 | AioContext *aio_context; |
Markus Armbruster | 14bafc5 | 2010-06-25 08:09:10 +0200 | [diff] [blame] | 130 | |
Markus Armbruster | 26f8b3a | 2014-10-07 13:59:22 +0200 | [diff] [blame] | 131 | if (!dinfo) { |
Kevin Wolf | 2d246f0 | 2013-09-18 15:14:47 +0200 | [diff] [blame] | 132 | return; |
| 133 | } |
| 134 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 135 | if (bs) { |
| 136 | aio_context = bdrv_get_aio_context(bs); |
| 137 | aio_context_acquire(aio_context); |
Stefan Hajnoczi | 91fddb0 | 2014-10-21 12:03:52 +0100 | [diff] [blame] | 138 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 139 | if (bs->job) { |
| 140 | block_job_cancel(bs->job); |
| 141 | } |
| 142 | |
| 143 | aio_context_release(aio_context); |
Paolo Bonzini | 12bde0e | 2012-03-30 13:17:10 +0200 | [diff] [blame] | 144 | } |
Stefan Hajnoczi | 91fddb0 | 2014-10-21 12:03:52 +0100 | [diff] [blame] | 145 | |
Markus Armbruster | 26f8b3a | 2014-10-07 13:59:22 +0200 | [diff] [blame] | 146 | dinfo->auto_del = 1; |
Markus Armbruster | 14bafc5 | 2010-06-25 08:09:10 +0200 | [diff] [blame] | 147 | } |
| 148 | |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 149 | void blockdev_auto_del(BlockBackend *blk) |
Markus Armbruster | 14bafc5 | 2010-06-25 08:09:10 +0200 | [diff] [blame] | 150 | { |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 151 | DriveInfo *dinfo = blk_legacy_dinfo(blk); |
Markus Armbruster | 14bafc5 | 2010-06-25 08:09:10 +0200 | [diff] [blame] | 152 | |
Ryan Harper | 0fc0f1f | 2010-12-08 10:05:00 -0600 | [diff] [blame] | 153 | if (dinfo && dinfo->auto_del) { |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 154 | monitor_remove_blk(blk); |
Markus Armbruster | b9fe8a7 | 2014-10-07 13:59:09 +0200 | [diff] [blame] | 155 | blk_unref(blk); |
Markus Armbruster | 14bafc5 | 2010-06-25 08:09:10 +0200 | [diff] [blame] | 156 | } |
| 157 | } |
| 158 | |
John Snow | d8f94e1 | 2014-10-01 14:19:27 -0400 | [diff] [blame] | 159 | /** |
| 160 | * Returns the current mapping of how many units per bus |
| 161 | * a particular interface can support. |
| 162 | * |
| 163 | * A positive integer indicates n units per bus. |
| 164 | * 0 implies the mapping has not been established. |
| 165 | * -1 indicates an invalid BlockInterfaceType was given. |
| 166 | */ |
| 167 | int drive_get_max_devs(BlockInterfaceType type) |
| 168 | { |
| 169 | if (type >= IF_IDE && type < IF_COUNT) { |
| 170 | return if_max_devs[type]; |
| 171 | } |
| 172 | |
| 173 | return -1; |
| 174 | } |
| 175 | |
Markus Armbruster | 505a7fb | 2011-01-28 11:21:43 +0100 | [diff] [blame] | 176 | static int drive_index_to_bus_id(BlockInterfaceType type, int index) |
| 177 | { |
| 178 | int max_devs = if_max_devs[type]; |
| 179 | return max_devs ? index / max_devs : 0; |
| 180 | } |
| 181 | |
| 182 | static int drive_index_to_unit_id(BlockInterfaceType type, int index) |
| 183 | { |
| 184 | int max_devs = if_max_devs[type]; |
| 185 | return max_devs ? index % max_devs : index; |
| 186 | } |
| 187 | |
Markus Armbruster | 2292dda | 2011-01-28 11:21:41 +0100 | [diff] [blame] | 188 | QemuOpts *drive_def(const char *optstr) |
| 189 | { |
Markus Armbruster | 70b9433 | 2015-02-13 12:50:26 +0100 | [diff] [blame] | 190 | return qemu_opts_parse_noisily(qemu_find_opts("drive"), optstr, false); |
Markus Armbruster | 2292dda | 2011-01-28 11:21:41 +0100 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | QemuOpts *drive_add(BlockInterfaceType type, int index, const char *file, |
Markus Armbruster | 5645b0f | 2011-01-31 11:50:09 +0100 | [diff] [blame] | 194 | const char *optstr) |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 195 | { |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 196 | QemuOpts *opts; |
| 197 | |
Markus Armbruster | 2292dda | 2011-01-28 11:21:41 +0100 | [diff] [blame] | 198 | opts = drive_def(optstr); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 199 | if (!opts) { |
| 200 | return NULL; |
| 201 | } |
Markus Armbruster | 2292dda | 2011-01-28 11:21:41 +0100 | [diff] [blame] | 202 | if (type != IF_DEFAULT) { |
Markus Armbruster | f43e47d | 2015-02-12 17:52:20 +0100 | [diff] [blame] | 203 | qemu_opt_set(opts, "if", if_name[type], &error_abort); |
Markus Armbruster | 2292dda | 2011-01-28 11:21:41 +0100 | [diff] [blame] | 204 | } |
| 205 | if (index >= 0) { |
Markus Armbruster | a8b18f8 | 2015-02-13 15:50:43 +0100 | [diff] [blame] | 206 | qemu_opt_set_number(opts, "index", index, &error_abort); |
Markus Armbruster | 2292dda | 2011-01-28 11:21:41 +0100 | [diff] [blame] | 207 | } |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 208 | if (file) |
Markus Armbruster | f43e47d | 2015-02-12 17:52:20 +0100 | [diff] [blame] | 209 | qemu_opt_set(opts, "file", file, &error_abort); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 210 | return opts; |
| 211 | } |
| 212 | |
| 213 | DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit) |
| 214 | { |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 215 | BlockBackend *blk; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 216 | DriveInfo *dinfo; |
| 217 | |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 218 | for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { |
| 219 | dinfo = blk_legacy_dinfo(blk); |
| 220 | if (dinfo && dinfo->type == type |
| 221 | && dinfo->bus == bus && dinfo->unit == unit) { |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 222 | return dinfo; |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 223 | } |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | return NULL; |
| 227 | } |
| 228 | |
John Snow | a66c9dc | 2014-10-01 14:19:24 -0400 | [diff] [blame] | 229 | bool drive_check_orphaned(void) |
| 230 | { |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 231 | BlockBackend *blk; |
John Snow | a66c9dc | 2014-10-01 14:19:24 -0400 | [diff] [blame] | 232 | DriveInfo *dinfo; |
| 233 | bool rs = false; |
| 234 | |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 235 | for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { |
| 236 | dinfo = blk_legacy_dinfo(blk); |
John Snow | a66c9dc | 2014-10-01 14:19:24 -0400 | [diff] [blame] | 237 | /* If dinfo->bdrv->dev is NULL, it has no device attached. */ |
| 238 | /* Unless this is a default drive, this may be an oversight. */ |
Markus Armbruster | a7f53e2 | 2014-10-07 13:59:25 +0200 | [diff] [blame] | 239 | if (!blk_get_attached_dev(blk) && !dinfo->is_default && |
John Snow | a66c9dc | 2014-10-01 14:19:24 -0400 | [diff] [blame] | 240 | dinfo->type != IF_NONE) { |
| 241 | fprintf(stderr, "Warning: Orphaned drive without device: " |
| 242 | "id=%s,file=%s,if=%s,bus=%d,unit=%d\n", |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 243 | blk_name(blk), blk_bs(blk) ? blk_bs(blk)->filename : "", |
| 244 | if_name[dinfo->type], dinfo->bus, dinfo->unit); |
John Snow | a66c9dc | 2014-10-01 14:19:24 -0400 | [diff] [blame] | 245 | rs = true; |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | return rs; |
| 250 | } |
| 251 | |
Markus Armbruster | f1bd51a | 2011-01-28 11:21:44 +0100 | [diff] [blame] | 252 | DriveInfo *drive_get_by_index(BlockInterfaceType type, int index) |
| 253 | { |
| 254 | return drive_get(type, |
| 255 | drive_index_to_bus_id(type, index), |
| 256 | drive_index_to_unit_id(type, index)); |
| 257 | } |
| 258 | |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 259 | int drive_get_max_bus(BlockInterfaceType type) |
| 260 | { |
| 261 | int max_bus; |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 262 | BlockBackend *blk; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 263 | DriveInfo *dinfo; |
| 264 | |
| 265 | max_bus = -1; |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 266 | for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { |
| 267 | dinfo = blk_legacy_dinfo(blk); |
| 268 | if (dinfo && dinfo->type == type && dinfo->bus > max_bus) { |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 269 | max_bus = dinfo->bus; |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 270 | } |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 271 | } |
| 272 | return max_bus; |
| 273 | } |
| 274 | |
Markus Armbruster | 1383997 | 2011-01-28 11:21:37 +0100 | [diff] [blame] | 275 | /* Get a block device. This should only be used for single-drive devices |
| 276 | (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the |
| 277 | appropriate bus. */ |
| 278 | DriveInfo *drive_get_next(BlockInterfaceType type) |
| 279 | { |
| 280 | static int next_block_unit[IF_COUNT]; |
| 281 | |
| 282 | return drive_get(type, 0, next_block_unit[type]++); |
| 283 | } |
| 284 | |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 285 | static void bdrv_format_print(void *opaque, const char *name) |
| 286 | { |
Markus Armbruster | 807105a | 2011-01-17 19:31:27 +0100 | [diff] [blame] | 287 | error_printf(" %s", name); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 288 | } |
| 289 | |
Stefan Hajnoczi | aa398a5 | 2012-01-18 14:40:50 +0000 | [diff] [blame] | 290 | typedef struct { |
| 291 | QEMUBH *bh; |
Fam Zheng | fa510eb | 2013-08-23 09:14:51 +0800 | [diff] [blame] | 292 | BlockDriverState *bs; |
| 293 | } BDRVPutRefBH; |
Stefan Hajnoczi | aa398a5 | 2012-01-18 14:40:50 +0000 | [diff] [blame] | 294 | |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 295 | 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] | 296 | { |
| 297 | if (!strcmp(buf, "ignore")) { |
Paolo Bonzini | 92aa5c6 | 2012-09-28 17:22:55 +0200 | [diff] [blame] | 298 | return BLOCKDEV_ON_ERROR_IGNORE; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 299 | } else if (!is_read && !strcmp(buf, "enospc")) { |
Paolo Bonzini | 92aa5c6 | 2012-09-28 17:22:55 +0200 | [diff] [blame] | 300 | return BLOCKDEV_ON_ERROR_ENOSPC; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 301 | } else if (!strcmp(buf, "stop")) { |
Paolo Bonzini | 92aa5c6 | 2012-09-28 17:22:55 +0200 | [diff] [blame] | 302 | return BLOCKDEV_ON_ERROR_STOP; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 303 | } else if (!strcmp(buf, "report")) { |
Paolo Bonzini | 92aa5c6 | 2012-09-28 17:22:55 +0200 | [diff] [blame] | 304 | return BLOCKDEV_ON_ERROR_REPORT; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 305 | } else { |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 306 | error_setg(errp, "'%s' invalid %s error action", |
| 307 | buf, is_read ? "read" : "write"); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 308 | return -1; |
| 309 | } |
| 310 | } |
| 311 | |
Alberto Garcia | 40119ef | 2015-11-16 11:28:38 +0200 | [diff] [blame] | 312 | static bool parse_stats_intervals(BlockAcctStats *stats, QList *intervals, |
| 313 | Error **errp) |
| 314 | { |
| 315 | const QListEntry *entry; |
| 316 | for (entry = qlist_first(intervals); entry; entry = qlist_next(entry)) { |
| 317 | switch (qobject_type(entry->value)) { |
| 318 | |
| 319 | case QTYPE_QSTRING: { |
| 320 | unsigned long long length; |
| 321 | const char *str = qstring_get_str(qobject_to_qstring(entry->value)); |
| 322 | if (parse_uint_full(str, &length, 10) == 0 && |
| 323 | length > 0 && length <= UINT_MAX) { |
| 324 | block_acct_add_interval(stats, (unsigned) length); |
| 325 | } else { |
| 326 | error_setg(errp, "Invalid interval length: %s", str); |
| 327 | return false; |
| 328 | } |
| 329 | break; |
| 330 | } |
| 331 | |
| 332 | case QTYPE_QINT: { |
| 333 | int64_t length = qint_get_int(qobject_to_qint(entry->value)); |
| 334 | if (length > 0 && length <= UINT_MAX) { |
| 335 | block_acct_add_interval(stats, (unsigned) length); |
| 336 | } else { |
| 337 | error_setg(errp, "Invalid interval length: %" PRId64, length); |
| 338 | return false; |
| 339 | } |
| 340 | break; |
| 341 | } |
| 342 | |
| 343 | default: |
| 344 | error_setg(errp, "The specification of stats-intervals is invalid"); |
| 345 | return false; |
| 346 | } |
| 347 | } |
| 348 | return true; |
| 349 | } |
| 350 | |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 351 | typedef enum { MEDIA_DISK, MEDIA_CDROM } DriveMediaType; |
| 352 | |
Max Reitz | fbf8175 | 2015-10-19 17:53:31 +0200 | [diff] [blame] | 353 | /* All parameters but @opts are optional and may be set to NULL. */ |
| 354 | static void extract_common_blockdev_options(QemuOpts *opts, int *bdrv_flags, |
| 355 | const char **throttling_group, ThrottleConfig *throttle_cfg, |
| 356 | BlockdevDetectZeroesOptions *detect_zeroes, Error **errp) |
| 357 | { |
| 358 | const char *discard; |
| 359 | Error *local_error = NULL; |
| 360 | const char *aio; |
| 361 | |
| 362 | if (bdrv_flags) { |
| 363 | if (!qemu_opt_get_bool(opts, "read-only", false)) { |
| 364 | *bdrv_flags |= BDRV_O_RDWR; |
| 365 | } |
| 366 | if (qemu_opt_get_bool(opts, "copy-on-read", false)) { |
| 367 | *bdrv_flags |= BDRV_O_COPY_ON_READ; |
| 368 | } |
| 369 | |
| 370 | if ((discard = qemu_opt_get(opts, "discard")) != NULL) { |
| 371 | if (bdrv_parse_discard_flags(discard, bdrv_flags) != 0) { |
| 372 | error_setg(errp, "Invalid discard option"); |
| 373 | return; |
| 374 | } |
| 375 | } |
| 376 | |
Max Reitz | fbf8175 | 2015-10-19 17:53:31 +0200 | [diff] [blame] | 377 | if ((aio = qemu_opt_get(opts, "aio")) != NULL) { |
| 378 | if (!strcmp(aio, "native")) { |
| 379 | *bdrv_flags |= BDRV_O_NATIVE_AIO; |
| 380 | } else if (!strcmp(aio, "threads")) { |
| 381 | /* this is the default */ |
| 382 | } else { |
| 383 | error_setg(errp, "invalid aio option"); |
| 384 | return; |
| 385 | } |
| 386 | } |
| 387 | } |
| 388 | |
| 389 | /* disk I/O throttling */ |
| 390 | if (throttling_group) { |
| 391 | *throttling_group = qemu_opt_get(opts, "throttling.group"); |
| 392 | } |
| 393 | |
| 394 | if (throttle_cfg) { |
Alberto Garcia | 1588ab5 | 2016-02-18 12:27:00 +0200 | [diff] [blame] | 395 | throttle_config_init(throttle_cfg); |
Max Reitz | fbf8175 | 2015-10-19 17:53:31 +0200 | [diff] [blame] | 396 | throttle_cfg->buckets[THROTTLE_BPS_TOTAL].avg = |
| 397 | qemu_opt_get_number(opts, "throttling.bps-total", 0); |
| 398 | throttle_cfg->buckets[THROTTLE_BPS_READ].avg = |
| 399 | qemu_opt_get_number(opts, "throttling.bps-read", 0); |
| 400 | throttle_cfg->buckets[THROTTLE_BPS_WRITE].avg = |
| 401 | qemu_opt_get_number(opts, "throttling.bps-write", 0); |
| 402 | throttle_cfg->buckets[THROTTLE_OPS_TOTAL].avg = |
| 403 | qemu_opt_get_number(opts, "throttling.iops-total", 0); |
| 404 | throttle_cfg->buckets[THROTTLE_OPS_READ].avg = |
| 405 | qemu_opt_get_number(opts, "throttling.iops-read", 0); |
| 406 | throttle_cfg->buckets[THROTTLE_OPS_WRITE].avg = |
| 407 | qemu_opt_get_number(opts, "throttling.iops-write", 0); |
| 408 | |
| 409 | throttle_cfg->buckets[THROTTLE_BPS_TOTAL].max = |
| 410 | qemu_opt_get_number(opts, "throttling.bps-total-max", 0); |
| 411 | throttle_cfg->buckets[THROTTLE_BPS_READ].max = |
| 412 | qemu_opt_get_number(opts, "throttling.bps-read-max", 0); |
| 413 | throttle_cfg->buckets[THROTTLE_BPS_WRITE].max = |
| 414 | qemu_opt_get_number(opts, "throttling.bps-write-max", 0); |
| 415 | throttle_cfg->buckets[THROTTLE_OPS_TOTAL].max = |
| 416 | qemu_opt_get_number(opts, "throttling.iops-total-max", 0); |
| 417 | throttle_cfg->buckets[THROTTLE_OPS_READ].max = |
| 418 | qemu_opt_get_number(opts, "throttling.iops-read-max", 0); |
| 419 | throttle_cfg->buckets[THROTTLE_OPS_WRITE].max = |
| 420 | qemu_opt_get_number(opts, "throttling.iops-write-max", 0); |
| 421 | |
Alberto Garcia | 8a0fc18 | 2016-02-18 12:27:02 +0200 | [diff] [blame] | 422 | throttle_cfg->buckets[THROTTLE_BPS_TOTAL].burst_length = |
| 423 | qemu_opt_get_number(opts, "throttling.bps-total-max-length", 1); |
| 424 | throttle_cfg->buckets[THROTTLE_BPS_READ].burst_length = |
| 425 | qemu_opt_get_number(opts, "throttling.bps-read-max-length", 1); |
| 426 | throttle_cfg->buckets[THROTTLE_BPS_WRITE].burst_length = |
| 427 | qemu_opt_get_number(opts, "throttling.bps-write-max-length", 1); |
| 428 | throttle_cfg->buckets[THROTTLE_OPS_TOTAL].burst_length = |
| 429 | qemu_opt_get_number(opts, "throttling.iops-total-max-length", 1); |
| 430 | throttle_cfg->buckets[THROTTLE_OPS_READ].burst_length = |
| 431 | qemu_opt_get_number(opts, "throttling.iops-read-max-length", 1); |
| 432 | throttle_cfg->buckets[THROTTLE_OPS_WRITE].burst_length = |
| 433 | qemu_opt_get_number(opts, "throttling.iops-write-max-length", 1); |
| 434 | |
Max Reitz | fbf8175 | 2015-10-19 17:53:31 +0200 | [diff] [blame] | 435 | throttle_cfg->op_size = |
| 436 | qemu_opt_get_number(opts, "throttling.iops-size", 0); |
| 437 | |
Alberto Garcia | d585108 | 2016-02-18 12:26:59 +0200 | [diff] [blame] | 438 | if (!throttle_is_valid(throttle_cfg, errp)) { |
Max Reitz | fbf8175 | 2015-10-19 17:53:31 +0200 | [diff] [blame] | 439 | return; |
| 440 | } |
| 441 | } |
| 442 | |
| 443 | if (detect_zeroes) { |
| 444 | *detect_zeroes = |
| 445 | qapi_enum_parse(BlockdevDetectZeroesOptions_lookup, |
| 446 | qemu_opt_get(opts, "detect-zeroes"), |
Eric Blake | 7fb1cf1 | 2015-11-18 01:52:57 -0700 | [diff] [blame] | 447 | BLOCKDEV_DETECT_ZEROES_OPTIONS__MAX, |
Max Reitz | fbf8175 | 2015-10-19 17:53:31 +0200 | [diff] [blame] | 448 | BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, |
| 449 | &local_error); |
| 450 | if (local_error) { |
| 451 | error_propagate(errp, local_error); |
| 452 | return; |
| 453 | } |
| 454 | |
| 455 | if (bdrv_flags && |
| 456 | *detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP && |
| 457 | !(*bdrv_flags & BDRV_O_UNMAP)) |
| 458 | { |
| 459 | error_setg(errp, "setting detect-zeroes to unmap is not allowed " |
| 460 | "without setting discard operation to unmap"); |
| 461 | return; |
| 462 | } |
| 463 | } |
| 464 | } |
| 465 | |
Kevin Wolf | f298d07 | 2013-09-10 12:01:20 +0200 | [diff] [blame] | 466 | /* Takes the ownership of bs_opts */ |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 467 | static BlockBackend *blockdev_init(const char *file, QDict *bs_opts, |
| 468 | Error **errp) |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 469 | { |
| 470 | const char *buf; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 471 | int bdrv_flags = 0; |
| 472 | int on_read_error, on_write_error; |
Alberto Garcia | 362e929 | 2015-10-28 17:33:04 +0200 | [diff] [blame] | 473 | bool account_invalid, account_failed; |
Kevin Wolf | e4b24b4 | 2016-03-15 15:39:42 +0100 | [diff] [blame] | 474 | bool writethrough; |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 475 | BlockBackend *blk; |
Markus Armbruster | a0f1eab | 2014-09-12 21:26:21 +0200 | [diff] [blame] | 476 | BlockDriverState *bs; |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 477 | ThrottleConfig cfg; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 478 | int snapshot = 0; |
Stefan Hajnoczi | c546194 | 2013-02-13 16:53:42 +0100 | [diff] [blame] | 479 | Error *error = NULL; |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 480 | QemuOpts *opts; |
Alberto Garcia | 40119ef | 2015-11-16 11:28:38 +0200 | [diff] [blame] | 481 | QDict *interval_dict = NULL; |
| 482 | QList *interval_list = NULL; |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 483 | const char *id; |
Max Reitz | fbf8175 | 2015-10-19 17:53:31 +0200 | [diff] [blame] | 484 | BlockdevDetectZeroesOptions detect_zeroes = |
| 485 | BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF; |
| 486 | const char *throttling_group = NULL; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 487 | |
Kevin Wolf | f298d07 | 2013-09-10 12:01:20 +0200 | [diff] [blame] | 488 | /* Check common options by copying from bs_opts to opts, all other options |
| 489 | * stay in bs_opts for processing by bdrv_open(). */ |
| 490 | id = qdict_get_try_str(bs_opts, "id"); |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 491 | opts = qemu_opts_create(&qemu_common_drive_opts, id, 1, &error); |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 492 | if (error) { |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 493 | error_propagate(errp, error); |
Markus Armbruster | 6376f95 | 2014-05-28 11:17:01 +0200 | [diff] [blame] | 494 | goto err_no_opts; |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 495 | } |
| 496 | |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 497 | qemu_opts_absorb_qdict(opts, bs_opts, &error); |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 498 | if (error) { |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 499 | error_propagate(errp, error); |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 500 | goto early_err; |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 501 | } |
| 502 | |
| 503 | if (id) { |
| 504 | qdict_del(bs_opts, "id"); |
| 505 | } |
| 506 | |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 507 | /* extract parameters */ |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 508 | snapshot = qemu_opt_get_bool(opts, "snapshot", 0); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 509 | |
Alberto Garcia | 362e929 | 2015-10-28 17:33:04 +0200 | [diff] [blame] | 510 | account_invalid = qemu_opt_get_bool(opts, "stats-account-invalid", true); |
| 511 | account_failed = qemu_opt_get_bool(opts, "stats-account-failed", true); |
| 512 | |
Kevin Wolf | e4b24b4 | 2016-03-15 15:39:42 +0100 | [diff] [blame] | 513 | writethrough = !qemu_opt_get_bool(opts, BDRV_OPT_CACHE_WB, true); |
| 514 | |
Alberto Garcia | ff356ee | 2016-07-08 17:03:00 +0300 | [diff] [blame^] | 515 | id = qemu_opts_id(opts); |
| 516 | |
Alberto Garcia | 40119ef | 2015-11-16 11:28:38 +0200 | [diff] [blame] | 517 | qdict_extract_subqdict(bs_opts, &interval_dict, "stats-intervals."); |
| 518 | qdict_array_split(interval_dict, &interval_list); |
| 519 | |
| 520 | if (qdict_size(interval_dict) != 0) { |
| 521 | error_setg(errp, "Invalid option stats-intervals.%s", |
| 522 | qdict_first(interval_dict)->key); |
| 523 | goto early_err; |
| 524 | } |
Alberto Garcia | 2be5506 | 2015-10-28 17:33:07 +0200 | [diff] [blame] | 525 | |
Max Reitz | fbf8175 | 2015-10-19 17:53:31 +0200 | [diff] [blame] | 526 | extract_common_blockdev_options(opts, &bdrv_flags, &throttling_group, &cfg, |
| 527 | &detect_zeroes, &error); |
| 528 | if (error) { |
| 529 | error_propagate(errp, error); |
| 530 | goto early_err; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 531 | } |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 532 | |
| 533 | if ((buf = qemu_opt_get(opts, "format")) != NULL) { |
Peter Maydell | c8057f9 | 2012-08-02 13:45:54 +0100 | [diff] [blame] | 534 | if (is_help_option(buf)) { |
| 535 | error_printf("Supported formats:"); |
| 536 | bdrv_iterate_format(bdrv_format_print, NULL); |
| 537 | error_printf("\n"); |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 538 | goto early_err; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 539 | } |
Kevin Wolf | 74fe54f | 2013-07-09 11:09:02 +0200 | [diff] [blame] | 540 | |
Max Reitz | e4342ce | 2015-02-05 13:58:14 -0500 | [diff] [blame] | 541 | if (qdict_haskey(bs_opts, "driver")) { |
| 542 | error_setg(errp, "Cannot specify both 'driver' and 'format'"); |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 543 | goto early_err; |
Mike Qiu | 6db5f5d | 2013-08-08 10:45:16 -0400 | [diff] [blame] | 544 | } |
Max Reitz | e4342ce | 2015-02-05 13:58:14 -0500 | [diff] [blame] | 545 | qdict_put(bs_opts, "driver", qstring_from_str(buf)); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 546 | } |
| 547 | |
Paolo Bonzini | 92aa5c6 | 2012-09-28 17:22:55 +0200 | [diff] [blame] | 548 | on_write_error = BLOCKDEV_ON_ERROR_ENOSPC; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 549 | if ((buf = qemu_opt_get(opts, "werror")) != NULL) { |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 550 | on_write_error = parse_block_error_action(buf, 0, &error); |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 551 | if (error) { |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 552 | error_propagate(errp, error); |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 553 | goto early_err; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 554 | } |
| 555 | } |
| 556 | |
Paolo Bonzini | 92aa5c6 | 2012-09-28 17:22:55 +0200 | [diff] [blame] | 557 | on_read_error = BLOCKDEV_ON_ERROR_REPORT; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 558 | if ((buf = qemu_opt_get(opts, "rerror")) != NULL) { |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 559 | on_read_error = parse_block_error_action(buf, 1, &error); |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 560 | if (error) { |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 561 | error_propagate(errp, error); |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 562 | goto early_err; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 563 | } |
| 564 | } |
| 565 | |
Max Reitz | 5ec18f8 | 2015-10-19 17:53:30 +0200 | [diff] [blame] | 566 | if (snapshot) { |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 567 | bdrv_flags |= BDRV_O_SNAPSHOT; |
Max Reitz | 5ec18f8 | 2015-10-19 17:53:30 +0200 | [diff] [blame] | 568 | } |
| 569 | |
Kevin Wolf | 326642b | 2013-07-11 12:52:34 +0200 | [diff] [blame] | 570 | /* init */ |
Kevin Wolf | 39c4ae9 | 2015-11-13 14:45:42 +0100 | [diff] [blame] | 571 | if ((!file || !*file) && !qdict_size(bs_opts)) { |
Max Reitz | 5ec18f8 | 2015-10-19 17:53:30 +0200 | [diff] [blame] | 572 | BlockBackendRootState *blk_rs; |
| 573 | |
Max Reitz | 109525a | 2016-05-17 16:41:34 +0200 | [diff] [blame] | 574 | blk = blk_new(); |
Max Reitz | 5ec18f8 | 2015-10-19 17:53:30 +0200 | [diff] [blame] | 575 | blk_rs = blk_get_root_state(blk); |
| 576 | blk_rs->open_flags = bdrv_flags; |
Max Reitz | fbf8175 | 2015-10-19 17:53:31 +0200 | [diff] [blame] | 577 | blk_rs->read_only = !(bdrv_flags & BDRV_O_RDWR); |
Max Reitz | 5ec18f8 | 2015-10-19 17:53:30 +0200 | [diff] [blame] | 578 | blk_rs->detect_zeroes = detect_zeroes; |
| 579 | |
Max Reitz | e4342ce | 2015-02-05 13:58:14 -0500 | [diff] [blame] | 580 | QDECREF(bs_opts); |
| 581 | } else { |
| 582 | if (file && !*file) { |
| 583 | file = NULL; |
| 584 | } |
| 585 | |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 586 | /* bdrv_open() defaults to the values in bdrv_flags (for compatibility |
| 587 | * with other callers) rather than what we want as the real defaults. |
| 588 | * Apply the defaults here instead. */ |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 589 | qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_DIRECT, "off"); |
| 590 | qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_NO_FLUSH, "off"); |
Kevin Wolf | 72e775c | 2016-03-15 14:34:37 +0100 | [diff] [blame] | 591 | assert((bdrv_flags & BDRV_O_CACHE_MASK) == 0); |
Kevin Wolf | 91a097e | 2015-05-08 17:49:53 +0200 | [diff] [blame] | 592 | |
Kevin Wolf | 12d5ee3 | 2016-02-19 16:48:10 +0100 | [diff] [blame] | 593 | if (runstate_check(RUN_STATE_INMIGRATE)) { |
| 594 | bdrv_flags |= BDRV_O_INACTIVE; |
| 595 | } |
| 596 | |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 597 | blk = blk_new_open(file, NULL, bs_opts, bdrv_flags, errp); |
Max Reitz | e4342ce | 2015-02-05 13:58:14 -0500 | [diff] [blame] | 598 | if (!blk) { |
| 599 | goto err_no_bs_opts; |
| 600 | } |
| 601 | bs = blk_bs(blk); |
Max Reitz | e4342ce | 2015-02-05 13:58:14 -0500 | [diff] [blame] | 602 | |
Max Reitz | 5ec18f8 | 2015-10-19 17:53:30 +0200 | [diff] [blame] | 603 | bs->detect_zeroes = detect_zeroes; |
| 604 | |
Max Reitz | 5ec18f8 | 2015-10-19 17:53:30 +0200 | [diff] [blame] | 605 | if (bdrv_key_required(bs)) { |
| 606 | autostart = 0; |
| 607 | } |
Alberto Garcia | 362e929 | 2015-10-28 17:33:04 +0200 | [diff] [blame] | 608 | |
| 609 | block_acct_init(blk_get_stats(blk), account_invalid, account_failed); |
Alberto Garcia | 2be5506 | 2015-10-28 17:33:07 +0200 | [diff] [blame] | 610 | |
Alberto Garcia | 40119ef | 2015-11-16 11:28:38 +0200 | [diff] [blame] | 611 | if (!parse_stats_intervals(blk_get_stats(blk), interval_list, errp)) { |
| 612 | blk_unref(blk); |
| 613 | blk = NULL; |
| 614 | goto err_no_bs_opts; |
Alberto Garcia | 2be5506 | 2015-10-28 17:33:07 +0200 | [diff] [blame] | 615 | } |
Max Reitz | 5ec18f8 | 2015-10-19 17:53:30 +0200 | [diff] [blame] | 616 | } |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 617 | |
Kevin Wolf | 7ca7f0f | 2016-03-22 13:00:08 +0100 | [diff] [blame] | 618 | /* disk I/O throttling */ |
| 619 | if (throttle_enabled(&cfg)) { |
| 620 | if (!throttling_group) { |
Alberto Garcia | ff356ee | 2016-07-08 17:03:00 +0300 | [diff] [blame^] | 621 | throttling_group = id; |
Kevin Wolf | 7ca7f0f | 2016-03-22 13:00:08 +0100 | [diff] [blame] | 622 | } |
| 623 | blk_io_limits_enable(blk, throttling_group); |
| 624 | blk_set_io_limits(blk, &cfg); |
| 625 | } |
| 626 | |
Kevin Wolf | e4b24b4 | 2016-03-15 15:39:42 +0100 | [diff] [blame] | 627 | blk_set_enable_write_cache(blk, !writethrough); |
Max Reitz | 373340b | 2015-10-19 17:53:22 +0200 | [diff] [blame] | 628 | blk_set_on_error(blk, on_read_error, on_write_error); |
Markus Armbruster | abd7f68 | 2010-06-02 18:55:17 +0200 | [diff] [blame] | 629 | |
Alberto Garcia | ff356ee | 2016-07-08 17:03:00 +0300 | [diff] [blame^] | 630 | if (!monitor_add_blk(blk, id, errp)) { |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 631 | blk_unref(blk); |
| 632 | blk = NULL; |
| 633 | goto err_no_bs_opts; |
| 634 | } |
| 635 | |
Max Reitz | e4342ce | 2015-02-05 13:58:14 -0500 | [diff] [blame] | 636 | err_no_bs_opts: |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 637 | qemu_opts_del(opts); |
Alberto Garcia | 40119ef | 2015-11-16 11:28:38 +0200 | [diff] [blame] | 638 | QDECREF(interval_dict); |
| 639 | QDECREF(interval_list); |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 640 | return blk; |
Markus Armbruster | a9ae2bf | 2011-02-08 15:12:39 +0100 | [diff] [blame] | 641 | |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 642 | early_err: |
Stefan Hajnoczi | ec9c10d | 2013-10-30 14:54:30 +0100 | [diff] [blame] | 643 | qemu_opts_del(opts); |
Alberto Garcia | 40119ef | 2015-11-16 11:28:38 +0200 | [diff] [blame] | 644 | QDECREF(interval_dict); |
| 645 | QDECREF(interval_list); |
Markus Armbruster | 6376f95 | 2014-05-28 11:17:01 +0200 | [diff] [blame] | 646 | err_no_opts: |
| 647 | QDECREF(bs_opts); |
Markus Armbruster | a9ae2bf | 2011-02-08 15:12:39 +0100 | [diff] [blame] | 648 | return NULL; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 649 | } |
| 650 | |
Max Reitz | bd745e2 | 2015-10-19 17:53:32 +0200 | [diff] [blame] | 651 | static QemuOptsList qemu_root_bds_opts; |
| 652 | |
| 653 | /* Takes the ownership of bs_opts */ |
| 654 | static BlockDriverState *bds_tree_init(QDict *bs_opts, Error **errp) |
| 655 | { |
| 656 | BlockDriverState *bs; |
| 657 | QemuOpts *opts; |
| 658 | Error *local_error = NULL; |
| 659 | BlockdevDetectZeroesOptions detect_zeroes; |
Max Reitz | bd745e2 | 2015-10-19 17:53:32 +0200 | [diff] [blame] | 660 | int bdrv_flags = 0; |
| 661 | |
| 662 | opts = qemu_opts_create(&qemu_root_bds_opts, NULL, 1, errp); |
| 663 | if (!opts) { |
| 664 | goto fail; |
| 665 | } |
| 666 | |
| 667 | qemu_opts_absorb_qdict(opts, bs_opts, &local_error); |
| 668 | if (local_error) { |
| 669 | error_propagate(errp, local_error); |
| 670 | goto fail; |
| 671 | } |
| 672 | |
| 673 | extract_common_blockdev_options(opts, &bdrv_flags, NULL, NULL, |
| 674 | &detect_zeroes, &local_error); |
| 675 | if (local_error) { |
| 676 | error_propagate(errp, local_error); |
| 677 | goto fail; |
| 678 | } |
| 679 | |
Kevin Wolf | a81d616 | 2016-03-07 14:23:04 +0100 | [diff] [blame] | 680 | /* bdrv_open() defaults to the values in bdrv_flags (for compatibility |
| 681 | * with other callers) rather than what we want as the real defaults. |
| 682 | * Apply the defaults here instead. */ |
Kevin Wolf | a81d616 | 2016-03-07 14:23:04 +0100 | [diff] [blame] | 683 | qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_DIRECT, "off"); |
| 684 | qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_NO_FLUSH, "off"); |
| 685 | |
Kevin Wolf | 12d5ee3 | 2016-02-19 16:48:10 +0100 | [diff] [blame] | 686 | if (runstate_check(RUN_STATE_INMIGRATE)) { |
| 687 | bdrv_flags |= BDRV_O_INACTIVE; |
| 688 | } |
| 689 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 690 | bs = bdrv_open(NULL, NULL, bs_opts, bdrv_flags, errp); |
| 691 | if (!bs) { |
Max Reitz | bd745e2 | 2015-10-19 17:53:32 +0200 | [diff] [blame] | 692 | goto fail_no_bs_opts; |
| 693 | } |
| 694 | |
| 695 | bs->detect_zeroes = detect_zeroes; |
| 696 | |
| 697 | fail_no_bs_opts: |
| 698 | qemu_opts_del(opts); |
| 699 | return bs; |
| 700 | |
| 701 | fail: |
| 702 | qemu_opts_del(opts); |
| 703 | QDECREF(bs_opts); |
| 704 | return NULL; |
| 705 | } |
| 706 | |
Max Reitz | 9c4218e | 2016-01-29 16:36:12 +0100 | [diff] [blame] | 707 | void blockdev_close_all_bdrv_states(void) |
| 708 | { |
| 709 | BlockDriverState *bs, *next_bs; |
| 710 | |
| 711 | QTAILQ_FOREACH_SAFE(bs, &monitor_bdrv_states, monitor_list, next_bs) { |
| 712 | AioContext *ctx = bdrv_get_aio_context(bs); |
| 713 | |
| 714 | aio_context_acquire(ctx); |
| 715 | bdrv_unref(bs); |
| 716 | aio_context_release(ctx); |
| 717 | } |
| 718 | } |
| 719 | |
Max Reitz | 262b4e8 | 2016-03-16 19:54:41 +0100 | [diff] [blame] | 720 | /* Iterates over the list of monitor-owned BlockDriverStates */ |
| 721 | BlockDriverState *bdrv_next_monitor_owned(BlockDriverState *bs) |
| 722 | { |
| 723 | return bs ? QTAILQ_NEXT(bs, monitor_list) |
| 724 | : QTAILQ_FIRST(&monitor_bdrv_states); |
| 725 | } |
| 726 | |
Kevin Wolf | 5abbf0e | 2014-09-18 11:48:34 +0200 | [diff] [blame] | 727 | static void qemu_opt_rename(QemuOpts *opts, const char *from, const char *to, |
| 728 | Error **errp) |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 729 | { |
| 730 | const char *value; |
| 731 | |
| 732 | value = qemu_opt_get(opts, from); |
| 733 | if (value) { |
Kevin Wolf | 5abbf0e | 2014-09-18 11:48:34 +0200 | [diff] [blame] | 734 | if (qemu_opt_find(opts, to)) { |
| 735 | error_setg(errp, "'%s' and its alias '%s' can't be used at the " |
| 736 | "same time", to, from); |
| 737 | return; |
| 738 | } |
Jun Li | 20d6cd4 | 2014-09-24 13:45:27 +0800 | [diff] [blame] | 739 | } |
| 740 | |
| 741 | /* rename all items in opts */ |
| 742 | while ((value = qemu_opt_get(opts, from))) { |
Markus Armbruster | f43e47d | 2015-02-12 17:52:20 +0100 | [diff] [blame] | 743 | qemu_opt_set(opts, to, value, &error_abort); |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 744 | qemu_opt_unset(opts, from); |
| 745 | } |
| 746 | } |
| 747 | |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 748 | QemuOptsList qemu_legacy_drive_opts = { |
| 749 | .name = "drive", |
| 750 | .head = QTAILQ_HEAD_INITIALIZER(qemu_legacy_drive_opts.head), |
| 751 | .desc = { |
| 752 | { |
Kevin Wolf | 87a899c | 2013-09-10 15:48:13 +0200 | [diff] [blame] | 753 | .name = "bus", |
| 754 | .type = QEMU_OPT_NUMBER, |
| 755 | .help = "bus number", |
| 756 | },{ |
| 757 | .name = "unit", |
| 758 | .type = QEMU_OPT_NUMBER, |
| 759 | .help = "unit number (i.e. lun for scsi)", |
| 760 | },{ |
| 761 | .name = "index", |
| 762 | .type = QEMU_OPT_NUMBER, |
| 763 | .help = "index number", |
| 764 | },{ |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 765 | .name = "media", |
| 766 | .type = QEMU_OPT_STRING, |
| 767 | .help = "media type (disk, cdrom)", |
Kevin Wolf | 593d464 | 2013-08-28 17:24:51 +0200 | [diff] [blame] | 768 | },{ |
| 769 | .name = "if", |
| 770 | .type = QEMU_OPT_STRING, |
| 771 | .help = "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)", |
Kevin Wolf | b41a733 | 2013-09-09 16:49:49 +0200 | [diff] [blame] | 772 | },{ |
| 773 | .name = "cyls", |
| 774 | .type = QEMU_OPT_NUMBER, |
| 775 | .help = "number of cylinders (ide disk geometry)", |
| 776 | },{ |
| 777 | .name = "heads", |
| 778 | .type = QEMU_OPT_NUMBER, |
| 779 | .help = "number of heads (ide disk geometry)", |
| 780 | },{ |
| 781 | .name = "secs", |
| 782 | .type = QEMU_OPT_NUMBER, |
| 783 | .help = "number of sectors (ide disk geometry)", |
| 784 | },{ |
| 785 | .name = "trans", |
| 786 | .type = QEMU_OPT_STRING, |
| 787 | .help = "chs translation (auto, lba, none)", |
Kevin Wolf | 2692929 | 2013-09-09 17:01:03 +0200 | [diff] [blame] | 788 | },{ |
| 789 | .name = "boot", |
| 790 | .type = QEMU_OPT_BOOL, |
| 791 | .help = "(deprecated, ignored)", |
Kevin Wolf | 394c7d4 | 2013-09-13 14:09:17 +0200 | [diff] [blame] | 792 | },{ |
| 793 | .name = "addr", |
| 794 | .type = QEMU_OPT_STRING, |
| 795 | .help = "pci address (virtio only)", |
Max Reitz | d095b46 | 2013-12-20 19:28:14 +0100 | [diff] [blame] | 796 | },{ |
Kevin Wolf | bcf8315 | 2014-06-06 15:21:48 +0200 | [diff] [blame] | 797 | .name = "serial", |
| 798 | .type = QEMU_OPT_STRING, |
| 799 | .help = "disk serial number", |
| 800 | },{ |
Max Reitz | d095b46 | 2013-12-20 19:28:14 +0100 | [diff] [blame] | 801 | .name = "file", |
| 802 | .type = QEMU_OPT_STRING, |
| 803 | .help = "file name", |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 804 | }, |
Kevin Wolf | 0ebd24e | 2013-09-19 15:12:18 +0200 | [diff] [blame] | 805 | |
| 806 | /* Options that are passed on, but have special semantics with -drive */ |
| 807 | { |
| 808 | .name = "read-only", |
| 809 | .type = QEMU_OPT_BOOL, |
| 810 | .help = "open drive file as read-only", |
| 811 | },{ |
Kevin Wolf | ee13ed1 | 2014-02-09 09:52:32 +0100 | [diff] [blame] | 812 | .name = "rerror", |
| 813 | .type = QEMU_OPT_STRING, |
| 814 | .help = "read error action", |
| 815 | },{ |
| 816 | .name = "werror", |
| 817 | .type = QEMU_OPT_STRING, |
| 818 | .help = "write error action", |
| 819 | },{ |
Kevin Wolf | 0ebd24e | 2013-09-19 15:12:18 +0200 | [diff] [blame] | 820 | .name = "copy-on-read", |
| 821 | .type = QEMU_OPT_BOOL, |
| 822 | .help = "copy read data from backing file into image file", |
| 823 | }, |
| 824 | |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 825 | { /* end of list */ } |
| 826 | }, |
| 827 | }; |
| 828 | |
Markus Armbruster | 60e19e0 | 2014-06-06 14:50:58 +0200 | [diff] [blame] | 829 | DriveInfo *drive_new(QemuOpts *all_opts, BlockInterfaceType block_default_type) |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 830 | { |
Kevin Wolf | 29c4e2b | 2013-07-18 16:31:25 +0200 | [diff] [blame] | 831 | const char *value; |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 832 | BlockBackend *blk; |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 833 | DriveInfo *dinfo = NULL; |
Kevin Wolf | f298d07 | 2013-09-10 12:01:20 +0200 | [diff] [blame] | 834 | QDict *bs_opts; |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 835 | QemuOpts *legacy_opts; |
| 836 | DriveMediaType media = MEDIA_DISK; |
Kevin Wolf | 593d464 | 2013-08-28 17:24:51 +0200 | [diff] [blame] | 837 | BlockInterfaceType type; |
Kevin Wolf | b41a733 | 2013-09-09 16:49:49 +0200 | [diff] [blame] | 838 | int cyls, heads, secs, translation; |
Kevin Wolf | 87a899c | 2013-09-10 15:48:13 +0200 | [diff] [blame] | 839 | int max_devs, bus_id, unit_id, index; |
Kevin Wolf | 394c7d4 | 2013-09-13 14:09:17 +0200 | [diff] [blame] | 840 | const char *devaddr; |
Kevin Wolf | ee13ed1 | 2014-02-09 09:52:32 +0100 | [diff] [blame] | 841 | const char *werror, *rerror; |
Fam Zheng | a7fdbcf | 2013-10-15 17:45:50 +0800 | [diff] [blame] | 842 | bool read_only = false; |
| 843 | bool copy_on_read; |
Kevin Wolf | bcf8315 | 2014-06-06 15:21:48 +0200 | [diff] [blame] | 844 | const char *serial; |
Max Reitz | d095b46 | 2013-12-20 19:28:14 +0100 | [diff] [blame] | 845 | const char *filename; |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 846 | Error *local_err = NULL; |
Kevin Wolf | 247147f | 2014-09-24 16:37:14 +0200 | [diff] [blame] | 847 | int i; |
Kevin Wolf | 29c4e2b | 2013-07-18 16:31:25 +0200 | [diff] [blame] | 848 | |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 849 | /* Change legacy command line options into QMP ones */ |
Kevin Wolf | 247147f | 2014-09-24 16:37:14 +0200 | [diff] [blame] | 850 | static const struct { |
| 851 | const char *from; |
| 852 | const char *to; |
| 853 | } opt_renames[] = { |
| 854 | { "iops", "throttling.iops-total" }, |
| 855 | { "iops_rd", "throttling.iops-read" }, |
| 856 | { "iops_wr", "throttling.iops-write" }, |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 857 | |
Kevin Wolf | 247147f | 2014-09-24 16:37:14 +0200 | [diff] [blame] | 858 | { "bps", "throttling.bps-total" }, |
| 859 | { "bps_rd", "throttling.bps-read" }, |
| 860 | { "bps_wr", "throttling.bps-write" }, |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 861 | |
Kevin Wolf | 247147f | 2014-09-24 16:37:14 +0200 | [diff] [blame] | 862 | { "iops_max", "throttling.iops-total-max" }, |
| 863 | { "iops_rd_max", "throttling.iops-read-max" }, |
| 864 | { "iops_wr_max", "throttling.iops-write-max" }, |
Benoît Canet | 3e9fab6 | 2013-09-02 14:14:40 +0200 | [diff] [blame] | 865 | |
Kevin Wolf | 247147f | 2014-09-24 16:37:14 +0200 | [diff] [blame] | 866 | { "bps_max", "throttling.bps-total-max" }, |
| 867 | { "bps_rd_max", "throttling.bps-read-max" }, |
| 868 | { "bps_wr_max", "throttling.bps-write-max" }, |
Benoît Canet | 3e9fab6 | 2013-09-02 14:14:40 +0200 | [diff] [blame] | 869 | |
Kevin Wolf | 247147f | 2014-09-24 16:37:14 +0200 | [diff] [blame] | 870 | { "iops_size", "throttling.iops-size" }, |
Benoît Canet | 2024c1d | 2013-09-02 14:14:41 +0200 | [diff] [blame] | 871 | |
Alberto Garcia | 76f4afb | 2015-06-08 18:17:44 +0200 | [diff] [blame] | 872 | { "group", "throttling.group" }, |
| 873 | |
Kevin Wolf | 247147f | 2014-09-24 16:37:14 +0200 | [diff] [blame] | 874 | { "readonly", "read-only" }, |
| 875 | }; |
| 876 | |
| 877 | for (i = 0; i < ARRAY_SIZE(opt_renames); i++) { |
Kevin Wolf | 5abbf0e | 2014-09-18 11:48:34 +0200 | [diff] [blame] | 878 | qemu_opt_rename(all_opts, opt_renames[i].from, opt_renames[i].to, |
| 879 | &local_err); |
| 880 | if (local_err) { |
Markus Armbruster | 565f65d | 2015-02-12 13:55:05 +0100 | [diff] [blame] | 881 | error_report_err(local_err); |
Kevin Wolf | 5abbf0e | 2014-09-18 11:48:34 +0200 | [diff] [blame] | 882 | return NULL; |
| 883 | } |
Kevin Wolf | 247147f | 2014-09-24 16:37:14 +0200 | [diff] [blame] | 884 | } |
Kevin Wolf | 0f227a9 | 2013-07-19 20:07:29 +0200 | [diff] [blame] | 885 | |
Kevin Wolf | 29c4e2b | 2013-07-18 16:31:25 +0200 | [diff] [blame] | 886 | value = qemu_opt_get(all_opts, "cache"); |
| 887 | if (value) { |
| 888 | int flags = 0; |
Kevin Wolf | 04feb4a | 2016-03-18 15:35:51 +0100 | [diff] [blame] | 889 | bool writethrough; |
Kevin Wolf | 29c4e2b | 2013-07-18 16:31:25 +0200 | [diff] [blame] | 890 | |
Kevin Wolf | 04feb4a | 2016-03-18 15:35:51 +0100 | [diff] [blame] | 891 | if (bdrv_parse_cache_mode(value, &flags, &writethrough) != 0) { |
Kevin Wolf | 29c4e2b | 2013-07-18 16:31:25 +0200 | [diff] [blame] | 892 | error_report("invalid cache option"); |
| 893 | return NULL; |
| 894 | } |
| 895 | |
| 896 | /* Specific options take precedence */ |
Kevin Wolf | 54861b9 | 2015-04-07 16:55:00 +0200 | [diff] [blame] | 897 | if (!qemu_opt_get(all_opts, BDRV_OPT_CACHE_WB)) { |
| 898 | qemu_opt_set_bool(all_opts, BDRV_OPT_CACHE_WB, |
Kevin Wolf | 04feb4a | 2016-03-18 15:35:51 +0100 | [diff] [blame] | 899 | !writethrough, &error_abort); |
Kevin Wolf | 29c4e2b | 2013-07-18 16:31:25 +0200 | [diff] [blame] | 900 | } |
Kevin Wolf | 54861b9 | 2015-04-07 16:55:00 +0200 | [diff] [blame] | 901 | if (!qemu_opt_get(all_opts, BDRV_OPT_CACHE_DIRECT)) { |
| 902 | qemu_opt_set_bool(all_opts, BDRV_OPT_CACHE_DIRECT, |
Markus Armbruster | cccb796 | 2015-02-12 16:37:44 +0100 | [diff] [blame] | 903 | !!(flags & BDRV_O_NOCACHE), &error_abort); |
Kevin Wolf | 29c4e2b | 2013-07-18 16:31:25 +0200 | [diff] [blame] | 904 | } |
Kevin Wolf | 54861b9 | 2015-04-07 16:55:00 +0200 | [diff] [blame] | 905 | if (!qemu_opt_get(all_opts, BDRV_OPT_CACHE_NO_FLUSH)) { |
| 906 | qemu_opt_set_bool(all_opts, BDRV_OPT_CACHE_NO_FLUSH, |
Markus Armbruster | cccb796 | 2015-02-12 16:37:44 +0100 | [diff] [blame] | 907 | !!(flags & BDRV_O_NO_FLUSH), &error_abort); |
Kevin Wolf | 29c4e2b | 2013-07-18 16:31:25 +0200 | [diff] [blame] | 908 | } |
| 909 | qemu_opt_unset(all_opts, "cache"); |
| 910 | } |
| 911 | |
Kevin Wolf | f298d07 | 2013-09-10 12:01:20 +0200 | [diff] [blame] | 912 | /* Get a QDict for processing the options */ |
| 913 | bs_opts = qdict_new(); |
| 914 | qemu_opts_to_qdict(all_opts, bs_opts); |
| 915 | |
Peter Crosthwaite | 87ea75d | 2014-01-01 18:49:17 -0800 | [diff] [blame] | 916 | legacy_opts = qemu_opts_create(&qemu_legacy_drive_opts, NULL, 0, |
| 917 | &error_abort); |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 918 | qemu_opts_absorb_qdict(legacy_opts, bs_opts, &local_err); |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 919 | if (local_err) { |
Markus Armbruster | 565f65d | 2015-02-12 13:55:05 +0100 | [diff] [blame] | 920 | error_report_err(local_err); |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 921 | goto fail; |
| 922 | } |
| 923 | |
Kevin Wolf | 2692929 | 2013-09-09 17:01:03 +0200 | [diff] [blame] | 924 | /* Deprecated option boot=[on|off] */ |
| 925 | if (qemu_opt_get(legacy_opts, "boot") != NULL) { |
| 926 | fprintf(stderr, "qemu-kvm: boot=on|off is deprecated and will be " |
| 927 | "ignored. Future versions will reject this parameter. Please " |
| 928 | "update your scripts.\n"); |
| 929 | } |
| 930 | |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 931 | /* Media type */ |
| 932 | value = qemu_opt_get(legacy_opts, "media"); |
| 933 | if (value) { |
| 934 | if (!strcmp(value, "disk")) { |
| 935 | media = MEDIA_DISK; |
| 936 | } else if (!strcmp(value, "cdrom")) { |
| 937 | media = MEDIA_CDROM; |
Fam Zheng | a7fdbcf | 2013-10-15 17:45:50 +0800 | [diff] [blame] | 938 | read_only = true; |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 939 | } else { |
| 940 | error_report("'%s' invalid media", value); |
| 941 | goto fail; |
| 942 | } |
| 943 | } |
| 944 | |
Kevin Wolf | 0ebd24e | 2013-09-19 15:12:18 +0200 | [diff] [blame] | 945 | /* copy-on-read is disabled with a warning for read-only devices */ |
Fam Zheng | a7fdbcf | 2013-10-15 17:45:50 +0800 | [diff] [blame] | 946 | read_only |= qemu_opt_get_bool(legacy_opts, "read-only", false); |
Kevin Wolf | 0ebd24e | 2013-09-19 15:12:18 +0200 | [diff] [blame] | 947 | copy_on_read = qemu_opt_get_bool(legacy_opts, "copy-on-read", false); |
| 948 | |
| 949 | if (read_only && copy_on_read) { |
| 950 | error_report("warning: disabling copy-on-read on read-only drive"); |
| 951 | copy_on_read = false; |
| 952 | } |
| 953 | |
| 954 | qdict_put(bs_opts, "read-only", |
| 955 | qstring_from_str(read_only ? "on" : "off")); |
| 956 | qdict_put(bs_opts, "copy-on-read", |
| 957 | qstring_from_str(copy_on_read ? "on" :"off")); |
| 958 | |
Kevin Wolf | 593d464 | 2013-08-28 17:24:51 +0200 | [diff] [blame] | 959 | /* Controller type */ |
| 960 | value = qemu_opt_get(legacy_opts, "if"); |
| 961 | if (value) { |
| 962 | for (type = 0; |
| 963 | type < IF_COUNT && strcmp(value, if_name[type]); |
| 964 | type++) { |
| 965 | } |
| 966 | if (type == IF_COUNT) { |
| 967 | error_report("unsupported bus type '%s'", value); |
| 968 | goto fail; |
| 969 | } |
| 970 | } else { |
| 971 | type = block_default_type; |
| 972 | } |
| 973 | |
Kevin Wolf | b41a733 | 2013-09-09 16:49:49 +0200 | [diff] [blame] | 974 | /* Geometry */ |
| 975 | cyls = qemu_opt_get_number(legacy_opts, "cyls", 0); |
| 976 | heads = qemu_opt_get_number(legacy_opts, "heads", 0); |
| 977 | secs = qemu_opt_get_number(legacy_opts, "secs", 0); |
| 978 | |
| 979 | if (cyls || heads || secs) { |
| 980 | if (cyls < 1) { |
| 981 | error_report("invalid physical cyls number"); |
| 982 | goto fail; |
| 983 | } |
| 984 | if (heads < 1) { |
| 985 | error_report("invalid physical heads number"); |
| 986 | goto fail; |
| 987 | } |
| 988 | if (secs < 1) { |
| 989 | error_report("invalid physical secs number"); |
| 990 | goto fail; |
| 991 | } |
| 992 | } |
| 993 | |
| 994 | translation = BIOS_ATA_TRANSLATION_AUTO; |
| 995 | value = qemu_opt_get(legacy_opts, "trans"); |
| 996 | if (value != NULL) { |
| 997 | if (!cyls) { |
| 998 | error_report("'%s' trans must be used with cyls, heads and secs", |
| 999 | value); |
| 1000 | goto fail; |
| 1001 | } |
| 1002 | if (!strcmp(value, "none")) { |
| 1003 | translation = BIOS_ATA_TRANSLATION_NONE; |
| 1004 | } else if (!strcmp(value, "lba")) { |
| 1005 | translation = BIOS_ATA_TRANSLATION_LBA; |
Paolo Bonzini | f31c41f | 2014-02-08 11:01:54 +0100 | [diff] [blame] | 1006 | } else if (!strcmp(value, "large")) { |
| 1007 | translation = BIOS_ATA_TRANSLATION_LARGE; |
| 1008 | } else if (!strcmp(value, "rechs")) { |
| 1009 | translation = BIOS_ATA_TRANSLATION_RECHS; |
Kevin Wolf | b41a733 | 2013-09-09 16:49:49 +0200 | [diff] [blame] | 1010 | } else if (!strcmp(value, "auto")) { |
| 1011 | translation = BIOS_ATA_TRANSLATION_AUTO; |
| 1012 | } else { |
| 1013 | error_report("'%s' invalid translation type", value); |
| 1014 | goto fail; |
| 1015 | } |
| 1016 | } |
| 1017 | |
| 1018 | if (media == MEDIA_CDROM) { |
| 1019 | if (cyls || secs || heads) { |
| 1020 | error_report("CHS can't be set with media=cdrom"); |
| 1021 | goto fail; |
| 1022 | } |
| 1023 | } |
| 1024 | |
Kevin Wolf | 87a899c | 2013-09-10 15:48:13 +0200 | [diff] [blame] | 1025 | /* Device address specified by bus/unit or index. |
| 1026 | * If none was specified, try to find the first free one. */ |
| 1027 | bus_id = qemu_opt_get_number(legacy_opts, "bus", 0); |
| 1028 | unit_id = qemu_opt_get_number(legacy_opts, "unit", -1); |
| 1029 | index = qemu_opt_get_number(legacy_opts, "index", -1); |
| 1030 | |
| 1031 | max_devs = if_max_devs[type]; |
| 1032 | |
| 1033 | if (index != -1) { |
| 1034 | if (bus_id != 0 || unit_id != -1) { |
| 1035 | error_report("index cannot be used with bus and unit"); |
| 1036 | goto fail; |
| 1037 | } |
| 1038 | bus_id = drive_index_to_bus_id(type, index); |
| 1039 | unit_id = drive_index_to_unit_id(type, index); |
| 1040 | } |
| 1041 | |
| 1042 | if (unit_id == -1) { |
| 1043 | unit_id = 0; |
| 1044 | while (drive_get(type, bus_id, unit_id) != NULL) { |
| 1045 | unit_id++; |
| 1046 | if (max_devs && unit_id >= max_devs) { |
| 1047 | unit_id -= max_devs; |
| 1048 | bus_id++; |
| 1049 | } |
| 1050 | } |
| 1051 | } |
| 1052 | |
| 1053 | if (max_devs && unit_id >= max_devs) { |
| 1054 | error_report("unit %d too big (max is %d)", unit_id, max_devs - 1); |
| 1055 | goto fail; |
| 1056 | } |
| 1057 | |
| 1058 | if (drive_get(type, bus_id, unit_id) != NULL) { |
| 1059 | error_report("drive with bus=%d, unit=%d (index=%d) exists", |
| 1060 | bus_id, unit_id, index); |
| 1061 | goto fail; |
| 1062 | } |
| 1063 | |
Kevin Wolf | bcf8315 | 2014-06-06 15:21:48 +0200 | [diff] [blame] | 1064 | /* Serial number */ |
| 1065 | serial = qemu_opt_get(legacy_opts, "serial"); |
| 1066 | |
Kevin Wolf | 87a899c | 2013-09-10 15:48:13 +0200 | [diff] [blame] | 1067 | /* no id supplied -> create one */ |
| 1068 | if (qemu_opts_id(all_opts) == NULL) { |
| 1069 | char *new_id; |
| 1070 | const char *mediastr = ""; |
| 1071 | if (type == IF_IDE || type == IF_SCSI) { |
| 1072 | mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd"; |
| 1073 | } |
| 1074 | if (max_devs) { |
| 1075 | new_id = g_strdup_printf("%s%i%s%i", if_name[type], bus_id, |
| 1076 | mediastr, unit_id); |
| 1077 | } else { |
| 1078 | new_id = g_strdup_printf("%s%s%i", if_name[type], |
| 1079 | mediastr, unit_id); |
| 1080 | } |
| 1081 | qdict_put(bs_opts, "id", qstring_from_str(new_id)); |
| 1082 | g_free(new_id); |
| 1083 | } |
| 1084 | |
Kevin Wolf | 394c7d4 | 2013-09-13 14:09:17 +0200 | [diff] [blame] | 1085 | /* Add virtio block device */ |
| 1086 | devaddr = qemu_opt_get(legacy_opts, "addr"); |
| 1087 | if (devaddr && type != IF_VIRTIO) { |
| 1088 | error_report("addr is not supported by this bus type"); |
| 1089 | goto fail; |
| 1090 | } |
| 1091 | |
| 1092 | if (type == IF_VIRTIO) { |
| 1093 | QemuOpts *devopts; |
Peter Crosthwaite | 87ea75d | 2014-01-01 18:49:17 -0800 | [diff] [blame] | 1094 | devopts = qemu_opts_create(qemu_find_opts("device"), NULL, 0, |
| 1095 | &error_abort); |
Kevin Wolf | 394c7d4 | 2013-09-13 14:09:17 +0200 | [diff] [blame] | 1096 | if (arch_type == QEMU_ARCH_S390X) { |
Alexander Graf | 1f68f1d | 2015-06-16 23:06:33 +0200 | [diff] [blame] | 1097 | qemu_opt_set(devopts, "driver", "virtio-blk-ccw", &error_abort); |
Kevin Wolf | 394c7d4 | 2013-09-13 14:09:17 +0200 | [diff] [blame] | 1098 | } else { |
Markus Armbruster | f43e47d | 2015-02-12 17:52:20 +0100 | [diff] [blame] | 1099 | qemu_opt_set(devopts, "driver", "virtio-blk-pci", &error_abort); |
Kevin Wolf | 394c7d4 | 2013-09-13 14:09:17 +0200 | [diff] [blame] | 1100 | } |
Markus Armbruster | f43e47d | 2015-02-12 17:52:20 +0100 | [diff] [blame] | 1101 | qemu_opt_set(devopts, "drive", qdict_get_str(bs_opts, "id"), |
| 1102 | &error_abort); |
Kevin Wolf | 394c7d4 | 2013-09-13 14:09:17 +0200 | [diff] [blame] | 1103 | if (devaddr) { |
Markus Armbruster | f43e47d | 2015-02-12 17:52:20 +0100 | [diff] [blame] | 1104 | qemu_opt_set(devopts, "addr", devaddr, &error_abort); |
Kevin Wolf | 394c7d4 | 2013-09-13 14:09:17 +0200 | [diff] [blame] | 1105 | } |
| 1106 | } |
| 1107 | |
Max Reitz | d095b46 | 2013-12-20 19:28:14 +0100 | [diff] [blame] | 1108 | filename = qemu_opt_get(legacy_opts, "file"); |
| 1109 | |
Kevin Wolf | ee13ed1 | 2014-02-09 09:52:32 +0100 | [diff] [blame] | 1110 | /* Check werror/rerror compatibility with if=... */ |
| 1111 | werror = qemu_opt_get(legacy_opts, "werror"); |
| 1112 | if (werror != NULL) { |
| 1113 | if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO && |
| 1114 | type != IF_NONE) { |
| 1115 | error_report("werror is not supported by this bus type"); |
| 1116 | goto fail; |
| 1117 | } |
| 1118 | qdict_put(bs_opts, "werror", qstring_from_str(werror)); |
| 1119 | } |
| 1120 | |
| 1121 | rerror = qemu_opt_get(legacy_opts, "rerror"); |
| 1122 | if (rerror != NULL) { |
| 1123 | if (type != IF_IDE && type != IF_VIRTIO && type != IF_SCSI && |
| 1124 | type != IF_NONE) { |
| 1125 | error_report("rerror is not supported by this bus type"); |
| 1126 | goto fail; |
| 1127 | } |
| 1128 | qdict_put(bs_opts, "rerror", qstring_from_str(rerror)); |
| 1129 | } |
| 1130 | |
Kevin Wolf | 2d246f0 | 2013-09-18 15:14:47 +0200 | [diff] [blame] | 1131 | /* Actual block device init: Functionality shared with blockdev-add */ |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 1132 | blk = blockdev_init(filename, bs_opts, &local_err); |
Markus Armbruster | 3cb0e25 | 2014-05-28 11:17:02 +0200 | [diff] [blame] | 1133 | bs_opts = NULL; |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 1134 | if (!blk) { |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 1135 | if (local_err) { |
Markus Armbruster | 565f65d | 2015-02-12 13:55:05 +0100 | [diff] [blame] | 1136 | error_report_err(local_err); |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 1137 | } |
Kevin Wolf | 2d246f0 | 2013-09-18 15:14:47 +0200 | [diff] [blame] | 1138 | goto fail; |
Kevin Wolf | b681072 | 2013-09-20 11:33:11 +0200 | [diff] [blame] | 1139 | } else { |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 1140 | assert(!local_err); |
Kevin Wolf | 2d246f0 | 2013-09-18 15:14:47 +0200 | [diff] [blame] | 1141 | } |
| 1142 | |
Markus Armbruster | 26f8b3a | 2014-10-07 13:59:22 +0200 | [diff] [blame] | 1143 | /* Create legacy DriveInfo */ |
| 1144 | dinfo = g_malloc0(sizeof(*dinfo)); |
Kevin Wolf | f298d07 | 2013-09-10 12:01:20 +0200 | [diff] [blame] | 1145 | dinfo->opts = all_opts; |
Kevin Wolf | 2d246f0 | 2013-09-18 15:14:47 +0200 | [diff] [blame] | 1146 | |
Kevin Wolf | b41a733 | 2013-09-09 16:49:49 +0200 | [diff] [blame] | 1147 | dinfo->cyls = cyls; |
| 1148 | dinfo->heads = heads; |
| 1149 | dinfo->secs = secs; |
| 1150 | dinfo->trans = translation; |
| 1151 | |
Kevin Wolf | ee13ed1 | 2014-02-09 09:52:32 +0100 | [diff] [blame] | 1152 | dinfo->type = type; |
Kevin Wolf | 87a899c | 2013-09-10 15:48:13 +0200 | [diff] [blame] | 1153 | dinfo->bus = bus_id; |
| 1154 | dinfo->unit = unit_id; |
Kevin Wolf | 394c7d4 | 2013-09-13 14:09:17 +0200 | [diff] [blame] | 1155 | dinfo->devaddr = devaddr; |
Kevin Wolf | bcf8315 | 2014-06-06 15:21:48 +0200 | [diff] [blame] | 1156 | dinfo->serial = g_strdup(serial); |
| 1157 | |
Markus Armbruster | 26f8b3a | 2014-10-07 13:59:22 +0200 | [diff] [blame] | 1158 | blk_set_legacy_dinfo(blk, dinfo); |
| 1159 | |
Kevin Wolf | e34ef04 | 2013-09-19 14:24:10 +0200 | [diff] [blame] | 1160 | switch(type) { |
| 1161 | case IF_IDE: |
| 1162 | case IF_SCSI: |
| 1163 | case IF_XEN: |
| 1164 | case IF_NONE: |
| 1165 | dinfo->media_cd = media == MEDIA_CDROM; |
| 1166 | break; |
| 1167 | default: |
| 1168 | break; |
| 1169 | } |
| 1170 | |
Kevin Wolf | 2d246f0 | 2013-09-18 15:14:47 +0200 | [diff] [blame] | 1171 | fail: |
Kevin Wolf | 33cb7dc | 2013-08-28 17:00:13 +0200 | [diff] [blame] | 1172 | qemu_opts_del(legacy_opts); |
Markus Armbruster | 3cb0e25 | 2014-05-28 11:17:02 +0200 | [diff] [blame] | 1173 | QDECREF(bs_opts); |
Kevin Wolf | 2d246f0 | 2013-09-18 15:14:47 +0200 | [diff] [blame] | 1174 | return dinfo; |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 1175 | } |
| 1176 | |
Markus Armbruster | 3e5a50d | 2015-02-06 13:55:43 +0100 | [diff] [blame] | 1177 | void hmp_commit(Monitor *mon, const QDict *qdict) |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1178 | { |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1179 | const char *device = qdict_get_str(qdict, "device"); |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 1180 | BlockBackend *blk; |
Stefan Hajnoczi | e887749 | 2012-03-05 18:10:11 +0000 | [diff] [blame] | 1181 | int ret; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1182 | |
Markus Armbruster | 6ab4b5a | 2010-06-02 18:55:18 +0200 | [diff] [blame] | 1183 | if (!strcmp(device, "all")) { |
Max Reitz | da31d59 | 2016-03-16 19:54:32 +0100 | [diff] [blame] | 1184 | ret = blk_commit_all(); |
Markus Armbruster | 6ab4b5a | 2010-06-02 18:55:18 +0200 | [diff] [blame] | 1185 | } else { |
Stefan Hajnoczi | 84aa014 | 2015-11-04 20:27:23 +0300 | [diff] [blame] | 1186 | BlockDriverState *bs; |
| 1187 | AioContext *aio_context; |
| 1188 | |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 1189 | blk = blk_by_name(device); |
| 1190 | if (!blk) { |
Jeff Cody | 58513bd | 2013-01-18 12:45:35 -0500 | [diff] [blame] | 1191 | monitor_printf(mon, "Device '%s' not found\n", device); |
Markus Armbruster | ac59eb9 | 2010-06-02 18:55:19 +0200 | [diff] [blame] | 1192 | return; |
Markus Armbruster | 6ab4b5a | 2010-06-02 18:55:18 +0200 | [diff] [blame] | 1193 | } |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 1194 | if (!blk_is_available(blk)) { |
| 1195 | monitor_printf(mon, "Device '%s' has no medium\n", device); |
| 1196 | return; |
| 1197 | } |
Stefan Hajnoczi | 84aa014 | 2015-11-04 20:27:23 +0300 | [diff] [blame] | 1198 | |
| 1199 | bs = blk_bs(blk); |
| 1200 | aio_context = bdrv_get_aio_context(bs); |
| 1201 | aio_context_acquire(aio_context); |
| 1202 | |
| 1203 | ret = bdrv_commit(bs); |
| 1204 | |
| 1205 | aio_context_release(aio_context); |
Jeff Cody | 58513bd | 2013-01-18 12:45:35 -0500 | [diff] [blame] | 1206 | } |
| 1207 | if (ret < 0) { |
| 1208 | monitor_printf(mon, "'commit' error for '%s': %s\n", device, |
| 1209 | strerror(-ret)); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 1210 | } |
| 1211 | } |
| 1212 | |
Eric Blake | 10f7590 | 2016-03-03 09:16:50 -0700 | [diff] [blame] | 1213 | static void blockdev_do_action(TransactionAction *action, Error **errp) |
Paolo Bonzini | 6cc2a41 | 2012-03-06 18:55:59 +0100 | [diff] [blame] | 1214 | { |
Kevin Wolf | c8a83e8 | 2013-05-13 10:43:43 +0200 | [diff] [blame] | 1215 | TransactionActionList list; |
Paolo Bonzini | 6cc2a41 | 2012-03-06 18:55:59 +0100 | [diff] [blame] | 1216 | |
Eric Blake | 10f7590 | 2016-03-03 09:16:50 -0700 | [diff] [blame] | 1217 | list.value = action; |
Paolo Bonzini | 6cc2a41 | 2012-03-06 18:55:59 +0100 | [diff] [blame] | 1218 | list.next = NULL; |
John Snow | 94d16a6 | 2015-11-05 18:13:18 -0500 | [diff] [blame] | 1219 | qmp_transaction(&list, false, NULL, errp); |
Paolo Bonzini | 6cc2a41 | 2012-03-06 18:55:59 +0100 | [diff] [blame] | 1220 | } |
| 1221 | |
Benoît Canet | 0901f67 | 2014-01-23 21:31:38 +0100 | [diff] [blame] | 1222 | void qmp_blockdev_snapshot_sync(bool has_device, const char *device, |
| 1223 | bool has_node_name, const char *node_name, |
| 1224 | const char *snapshot_file, |
| 1225 | bool has_snapshot_node_name, |
| 1226 | const char *snapshot_node_name, |
Luiz Capitulino | 6106e24 | 2011-11-25 16:15:19 -0200 | [diff] [blame] | 1227 | bool has_format, const char *format, |
Benoît Canet | 0901f67 | 2014-01-23 21:31:38 +0100 | [diff] [blame] | 1228 | bool has_mode, NewImageMode mode, Error **errp) |
Jes Sorensen | f888256 | 2010-12-16 13:52:16 +0100 | [diff] [blame] | 1229 | { |
Alberto Garcia | a911e6a | 2015-10-26 14:27:14 +0200 | [diff] [blame] | 1230 | BlockdevSnapshotSync snapshot = { |
Benoît Canet | 0901f67 | 2014-01-23 21:31:38 +0100 | [diff] [blame] | 1231 | .has_device = has_device, |
Paolo Bonzini | 6cc2a41 | 2012-03-06 18:55:59 +0100 | [diff] [blame] | 1232 | .device = (char *) device, |
Benoît Canet | 0901f67 | 2014-01-23 21:31:38 +0100 | [diff] [blame] | 1233 | .has_node_name = has_node_name, |
| 1234 | .node_name = (char *) node_name, |
Paolo Bonzini | 6cc2a41 | 2012-03-06 18:55:59 +0100 | [diff] [blame] | 1235 | .snapshot_file = (char *) snapshot_file, |
Benoît Canet | 0901f67 | 2014-01-23 21:31:38 +0100 | [diff] [blame] | 1236 | .has_snapshot_node_name = has_snapshot_node_name, |
| 1237 | .snapshot_node_name = (char *) snapshot_node_name, |
Paolo Bonzini | 6cc2a41 | 2012-03-06 18:55:59 +0100 | [diff] [blame] | 1238 | .has_format = has_format, |
| 1239 | .format = (char *) format, |
| 1240 | .has_mode = has_mode, |
| 1241 | .mode = mode, |
| 1242 | }; |
Eric Blake | 10f7590 | 2016-03-03 09:16:50 -0700 | [diff] [blame] | 1243 | TransactionAction action = { |
| 1244 | .type = TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC, |
Eric Blake | 32bafa8 | 2016-03-17 16:48:37 -0600 | [diff] [blame] | 1245 | .u.blockdev_snapshot_sync.data = &snapshot, |
Eric Blake | 10f7590 | 2016-03-03 09:16:50 -0700 | [diff] [blame] | 1246 | }; |
| 1247 | blockdev_do_action(&action, errp); |
Jes Sorensen | f888256 | 2010-12-16 13:52:16 +0100 | [diff] [blame] | 1248 | } |
| 1249 | |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1250 | void qmp_blockdev_snapshot(const char *node, const char *overlay, |
| 1251 | Error **errp) |
| 1252 | { |
| 1253 | BlockdevSnapshot snapshot_data = { |
| 1254 | .node = (char *) node, |
| 1255 | .overlay = (char *) overlay |
| 1256 | }; |
Eric Blake | 10f7590 | 2016-03-03 09:16:50 -0700 | [diff] [blame] | 1257 | TransactionAction action = { |
| 1258 | .type = TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT, |
Eric Blake | 32bafa8 | 2016-03-17 16:48:37 -0600 | [diff] [blame] | 1259 | .u.blockdev_snapshot.data = &snapshot_data, |
Eric Blake | 10f7590 | 2016-03-03 09:16:50 -0700 | [diff] [blame] | 1260 | }; |
| 1261 | blockdev_do_action(&action, errp); |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1262 | } |
| 1263 | |
Wenchao Xia | f323bc9 | 2013-09-11 14:04:35 +0800 | [diff] [blame] | 1264 | void qmp_blockdev_snapshot_internal_sync(const char *device, |
| 1265 | const char *name, |
| 1266 | Error **errp) |
| 1267 | { |
| 1268 | BlockdevSnapshotInternal snapshot = { |
| 1269 | .device = (char *) device, |
| 1270 | .name = (char *) name |
| 1271 | }; |
Eric Blake | 10f7590 | 2016-03-03 09:16:50 -0700 | [diff] [blame] | 1272 | TransactionAction action = { |
| 1273 | .type = TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC, |
Eric Blake | 32bafa8 | 2016-03-17 16:48:37 -0600 | [diff] [blame] | 1274 | .u.blockdev_snapshot_internal_sync.data = &snapshot, |
Eric Blake | 10f7590 | 2016-03-03 09:16:50 -0700 | [diff] [blame] | 1275 | }; |
| 1276 | blockdev_do_action(&action, errp); |
Wenchao Xia | f323bc9 | 2013-09-11 14:04:35 +0800 | [diff] [blame] | 1277 | } |
| 1278 | |
Wenchao Xia | 44e3e05 | 2013-09-11 14:04:36 +0800 | [diff] [blame] | 1279 | SnapshotInfo *qmp_blockdev_snapshot_delete_internal_sync(const char *device, |
| 1280 | bool has_id, |
| 1281 | const char *id, |
| 1282 | bool has_name, |
| 1283 | const char *name, |
| 1284 | Error **errp) |
| 1285 | { |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 1286 | BlockDriverState *bs; |
| 1287 | BlockBackend *blk; |
Stefan Hajnoczi | 4ef3982 | 2014-11-19 14:19:42 +0000 | [diff] [blame] | 1288 | AioContext *aio_context; |
Wenchao Xia | 44e3e05 | 2013-09-11 14:04:36 +0800 | [diff] [blame] | 1289 | QEMUSnapshotInfo sn; |
| 1290 | Error *local_err = NULL; |
| 1291 | SnapshotInfo *info = NULL; |
| 1292 | int ret; |
| 1293 | |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 1294 | blk = blk_by_name(device); |
| 1295 | if (!blk) { |
Markus Armbruster | 75158eb | 2015-03-16 08:57:47 +0100 | [diff] [blame] | 1296 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
| 1297 | "Device '%s' not found", device); |
Wenchao Xia | 44e3e05 | 2013-09-11 14:04:36 +0800 | [diff] [blame] | 1298 | return NULL; |
| 1299 | } |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 1300 | |
| 1301 | aio_context = blk_get_aio_context(blk); |
| 1302 | aio_context_acquire(aio_context); |
Wenchao Xia | 44e3e05 | 2013-09-11 14:04:36 +0800 | [diff] [blame] | 1303 | |
| 1304 | if (!has_id) { |
| 1305 | id = NULL; |
| 1306 | } |
| 1307 | |
| 1308 | if (!has_name) { |
| 1309 | name = NULL; |
| 1310 | } |
| 1311 | |
| 1312 | if (!id && !name) { |
| 1313 | error_setg(errp, "Name or id must be provided"); |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 1314 | goto out_aio_context; |
Wenchao Xia | 44e3e05 | 2013-09-11 14:04:36 +0800 | [diff] [blame] | 1315 | } |
| 1316 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 1317 | if (!blk_is_available(blk)) { |
| 1318 | error_setg(errp, "Device '%s' has no medium", device); |
| 1319 | goto out_aio_context; |
| 1320 | } |
| 1321 | bs = blk_bs(blk); |
Stefan Hajnoczi | 4ef3982 | 2014-11-19 14:19:42 +0000 | [diff] [blame] | 1322 | |
Stefan Hajnoczi | 0b92885 | 2014-11-19 14:19:43 +0000 | [diff] [blame] | 1323 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT_DELETE, errp)) { |
| 1324 | goto out_aio_context; |
| 1325 | } |
| 1326 | |
Wenchao Xia | 44e3e05 | 2013-09-11 14:04:36 +0800 | [diff] [blame] | 1327 | 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] | 1328 | if (local_err) { |
Wenchao Xia | 44e3e05 | 2013-09-11 14:04:36 +0800 | [diff] [blame] | 1329 | error_propagate(errp, local_err); |
Stefan Hajnoczi | 4ef3982 | 2014-11-19 14:19:42 +0000 | [diff] [blame] | 1330 | goto out_aio_context; |
Wenchao Xia | 44e3e05 | 2013-09-11 14:04:36 +0800 | [diff] [blame] | 1331 | } |
| 1332 | if (!ret) { |
| 1333 | error_setg(errp, |
| 1334 | "Snapshot with id '%s' and name '%s' does not exist on " |
| 1335 | "device '%s'", |
| 1336 | STR_OR_NULL(id), STR_OR_NULL(name), device); |
Stefan Hajnoczi | 4ef3982 | 2014-11-19 14:19:42 +0000 | [diff] [blame] | 1337 | goto out_aio_context; |
Wenchao Xia | 44e3e05 | 2013-09-11 14:04:36 +0800 | [diff] [blame] | 1338 | } |
| 1339 | |
| 1340 | bdrv_snapshot_delete(bs, id, name, &local_err); |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 1341 | if (local_err) { |
Wenchao Xia | 44e3e05 | 2013-09-11 14:04:36 +0800 | [diff] [blame] | 1342 | error_propagate(errp, local_err); |
Stefan Hajnoczi | 4ef3982 | 2014-11-19 14:19:42 +0000 | [diff] [blame] | 1343 | goto out_aio_context; |
Wenchao Xia | 44e3e05 | 2013-09-11 14:04:36 +0800 | [diff] [blame] | 1344 | } |
| 1345 | |
Stefan Hajnoczi | 4ef3982 | 2014-11-19 14:19:42 +0000 | [diff] [blame] | 1346 | aio_context_release(aio_context); |
| 1347 | |
Markus Armbruster | 5839e53 | 2014-08-19 10:31:08 +0200 | [diff] [blame] | 1348 | info = g_new0(SnapshotInfo, 1); |
Wenchao Xia | 44e3e05 | 2013-09-11 14:04:36 +0800 | [diff] [blame] | 1349 | info->id = g_strdup(sn.id_str); |
| 1350 | info->name = g_strdup(sn.name); |
| 1351 | info->date_nsec = sn.date_nsec; |
| 1352 | info->date_sec = sn.date_sec; |
| 1353 | info->vm_state_size = sn.vm_state_size; |
| 1354 | info->vm_clock_nsec = sn.vm_clock_nsec % 1000000000; |
| 1355 | info->vm_clock_sec = sn.vm_clock_nsec / 1000000000; |
| 1356 | |
| 1357 | return info; |
Stefan Hajnoczi | 4ef3982 | 2014-11-19 14:19:42 +0000 | [diff] [blame] | 1358 | |
| 1359 | out_aio_context: |
| 1360 | aio_context_release(aio_context); |
| 1361 | return NULL; |
Wenchao Xia | 44e3e05 | 2013-09-11 14:04:36 +0800 | [diff] [blame] | 1362 | } |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 1363 | |
John Snow | 341ebc2 | 2015-04-17 19:49:52 -0400 | [diff] [blame] | 1364 | /** |
| 1365 | * block_dirty_bitmap_lookup: |
| 1366 | * Return a dirty bitmap (if present), after validating |
| 1367 | * the node reference and bitmap names. |
| 1368 | * |
| 1369 | * @node: The name of the BDS node to search for bitmaps |
| 1370 | * @name: The name of the bitmap to search for |
| 1371 | * @pbs: Output pointer for BDS lookup, if desired. Can be NULL. |
| 1372 | * @paio: Output pointer for aio_context acquisition, if desired. Can be NULL. |
| 1373 | * @errp: Output pointer for error information. Can be NULL. |
| 1374 | * |
| 1375 | * @return: A bitmap object on success, or NULL on failure. |
| 1376 | */ |
| 1377 | static BdrvDirtyBitmap *block_dirty_bitmap_lookup(const char *node, |
| 1378 | const char *name, |
| 1379 | BlockDriverState **pbs, |
| 1380 | AioContext **paio, |
| 1381 | Error **errp) |
| 1382 | { |
| 1383 | BlockDriverState *bs; |
| 1384 | BdrvDirtyBitmap *bitmap; |
| 1385 | AioContext *aio_context; |
| 1386 | |
| 1387 | if (!node) { |
| 1388 | error_setg(errp, "Node cannot be NULL"); |
| 1389 | return NULL; |
| 1390 | } |
| 1391 | if (!name) { |
| 1392 | error_setg(errp, "Bitmap name cannot be NULL"); |
| 1393 | return NULL; |
| 1394 | } |
| 1395 | bs = bdrv_lookup_bs(node, node, NULL); |
| 1396 | if (!bs) { |
| 1397 | error_setg(errp, "Node '%s' not found", node); |
| 1398 | return NULL; |
| 1399 | } |
| 1400 | |
| 1401 | aio_context = bdrv_get_aio_context(bs); |
| 1402 | aio_context_acquire(aio_context); |
| 1403 | |
| 1404 | bitmap = bdrv_find_dirty_bitmap(bs, name); |
| 1405 | if (!bitmap) { |
| 1406 | error_setg(errp, "Dirty bitmap '%s' not found", name); |
| 1407 | goto fail; |
| 1408 | } |
| 1409 | |
| 1410 | if (pbs) { |
| 1411 | *pbs = bs; |
| 1412 | } |
| 1413 | if (paio) { |
| 1414 | *paio = aio_context; |
| 1415 | } else { |
| 1416 | aio_context_release(aio_context); |
| 1417 | } |
| 1418 | |
| 1419 | return bitmap; |
| 1420 | |
| 1421 | fail: |
| 1422 | aio_context_release(aio_context); |
| 1423 | return NULL; |
| 1424 | } |
| 1425 | |
Stefan Hajnoczi | b756b9c | 2014-11-21 10:48:57 +0000 | [diff] [blame] | 1426 | /* New and old BlockDriverState structs for atomic group operations */ |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1427 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1428 | typedef struct BlkActionState BlkActionState; |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1429 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1430 | /** |
| 1431 | * BlkActionOps: |
| 1432 | * Table of operations that define an Action. |
| 1433 | * |
| 1434 | * @instance_size: Size of state struct, in bytes. |
| 1435 | * @prepare: Prepare the work, must NOT be NULL. |
| 1436 | * @commit: Commit the changes, can be NULL. |
| 1437 | * @abort: Abort the changes on fail, can be NULL. |
| 1438 | * @clean: Clean up resources after all transaction actions have called |
| 1439 | * commit() or abort(). Can be NULL. |
| 1440 | * |
| 1441 | * Only prepare() may fail. In a single transaction, only one of commit() or |
| 1442 | * abort() will be called. clean() will always be called if it is present. |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1443 | */ |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1444 | typedef struct BlkActionOps { |
| 1445 | size_t instance_size; |
| 1446 | void (*prepare)(BlkActionState *common, Error **errp); |
| 1447 | void (*commit)(BlkActionState *common); |
| 1448 | void (*abort)(BlkActionState *common); |
| 1449 | void (*clean)(BlkActionState *common); |
| 1450 | } BlkActionOps; |
| 1451 | |
| 1452 | /** |
| 1453 | * BlkActionState: |
| 1454 | * Describes one Action's state within a Transaction. |
| 1455 | * |
| 1456 | * @action: QAPI-defined enum identifying which Action to perform. |
| 1457 | * @ops: Table of ActionOps this Action can perform. |
John Snow | 94d16a6 | 2015-11-05 18:13:18 -0500 | [diff] [blame] | 1458 | * @block_job_txn: Transaction which this action belongs to. |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1459 | * @entry: List membership for all Actions in this Transaction. |
| 1460 | * |
| 1461 | * This structure must be arranged as first member in a subclassed type, |
| 1462 | * assuming that the compiler will also arrange it to the same offsets as the |
| 1463 | * base class. |
| 1464 | */ |
| 1465 | struct BlkActionState { |
Kevin Wolf | c8a83e8 | 2013-05-13 10:43:43 +0200 | [diff] [blame] | 1466 | TransactionAction *action; |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1467 | const BlkActionOps *ops; |
John Snow | 94d16a6 | 2015-11-05 18:13:18 -0500 | [diff] [blame] | 1468 | BlockJobTxn *block_job_txn; |
| 1469 | TransactionProperties *txn_props; |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1470 | QSIMPLEQ_ENTRY(BlkActionState) entry; |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1471 | }; |
| 1472 | |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1473 | /* internal snapshot private data */ |
| 1474 | typedef struct InternalSnapshotState { |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1475 | BlkActionState common; |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1476 | BlockDriverState *bs; |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 1477 | AioContext *aio_context; |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1478 | QEMUSnapshotInfo sn; |
Fam Zheng | 507306c | 2015-10-23 11:08:13 +0800 | [diff] [blame] | 1479 | bool created; |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1480 | } InternalSnapshotState; |
| 1481 | |
John Snow | 94d16a6 | 2015-11-05 18:13:18 -0500 | [diff] [blame] | 1482 | |
| 1483 | static int action_check_completion_mode(BlkActionState *s, Error **errp) |
| 1484 | { |
| 1485 | if (s->txn_props->completion_mode != ACTION_COMPLETION_MODE_INDIVIDUAL) { |
| 1486 | error_setg(errp, |
| 1487 | "Action '%s' does not support Transaction property " |
| 1488 | "completion-mode = %s", |
| 1489 | TransactionActionKind_lookup[s->action->type], |
| 1490 | ActionCompletionMode_lookup[s->txn_props->completion_mode]); |
| 1491 | return -1; |
| 1492 | } |
| 1493 | return 0; |
| 1494 | } |
| 1495 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1496 | static void internal_snapshot_prepare(BlkActionState *common, |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1497 | Error **errp) |
| 1498 | { |
Markus Armbruster | f70edf9 | 2014-04-25 16:50:34 +0200 | [diff] [blame] | 1499 | Error *local_err = NULL; |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1500 | const char *device; |
| 1501 | const char *name; |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 1502 | BlockBackend *blk; |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1503 | BlockDriverState *bs; |
| 1504 | QEMUSnapshotInfo old_sn, *sn; |
| 1505 | bool ret; |
| 1506 | qemu_timeval tv; |
| 1507 | BlockdevSnapshotInternal *internal; |
| 1508 | InternalSnapshotState *state; |
| 1509 | int ret1; |
| 1510 | |
Eric Blake | 6a8f966 | 2015-10-26 16:34:54 -0600 | [diff] [blame] | 1511 | g_assert(common->action->type == |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1512 | TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC); |
Eric Blake | 32bafa8 | 2016-03-17 16:48:37 -0600 | [diff] [blame] | 1513 | internal = common->action->u.blockdev_snapshot_internal_sync.data; |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1514 | state = DO_UPCAST(InternalSnapshotState, common, common); |
| 1515 | |
| 1516 | /* 1. parse input */ |
| 1517 | device = internal->device; |
| 1518 | name = internal->name; |
| 1519 | |
| 1520 | /* 2. check for validation */ |
John Snow | 94d16a6 | 2015-11-05 18:13:18 -0500 | [diff] [blame] | 1521 | if (action_check_completion_mode(common, errp) < 0) { |
| 1522 | return; |
| 1523 | } |
| 1524 | |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 1525 | blk = blk_by_name(device); |
| 1526 | if (!blk) { |
Markus Armbruster | 75158eb | 2015-03-16 08:57:47 +0100 | [diff] [blame] | 1527 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
| 1528 | "Device '%s' not found", device); |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1529 | return; |
| 1530 | } |
| 1531 | |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 1532 | /* AioContext is released in .clean() */ |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 1533 | state->aio_context = blk_get_aio_context(blk); |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 1534 | aio_context_acquire(state->aio_context); |
| 1535 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 1536 | if (!blk_is_available(blk)) { |
Markus Armbruster | c6bd8c7 | 2015-03-17 11:54:50 +0100 | [diff] [blame] | 1537 | error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1538 | return; |
| 1539 | } |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 1540 | bs = blk_bs(blk); |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1541 | |
Fam Zheng | 507306c | 2015-10-23 11:08:13 +0800 | [diff] [blame] | 1542 | state->bs = bs; |
| 1543 | bdrv_drained_begin(bs); |
| 1544 | |
Stefan Hajnoczi | 3dc7ca3 | 2014-11-21 10:49:00 +0000 | [diff] [blame] | 1545 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT, errp)) { |
| 1546 | return; |
| 1547 | } |
| 1548 | |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1549 | if (bdrv_is_read_only(bs)) { |
Alberto Garcia | 81e5f78 | 2015-04-08 12:29:19 +0300 | [diff] [blame] | 1550 | error_setg(errp, "Device '%s' is read only", device); |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1551 | return; |
| 1552 | } |
| 1553 | |
| 1554 | if (!bdrv_can_snapshot(bs)) { |
Alberto Garcia | 81e5f78 | 2015-04-08 12:29:19 +0300 | [diff] [blame] | 1555 | error_setg(errp, "Block format '%s' used by device '%s' " |
| 1556 | "does not support internal snapshots", |
| 1557 | bs->drv->format_name, device); |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1558 | return; |
| 1559 | } |
| 1560 | |
| 1561 | if (!strlen(name)) { |
| 1562 | error_setg(errp, "Name is empty"); |
| 1563 | return; |
| 1564 | } |
| 1565 | |
| 1566 | /* check whether a snapshot with name exist */ |
Markus Armbruster | f70edf9 | 2014-04-25 16:50:34 +0200 | [diff] [blame] | 1567 | ret = bdrv_snapshot_find_by_id_and_name(bs, NULL, name, &old_sn, |
| 1568 | &local_err); |
| 1569 | if (local_err) { |
| 1570 | error_propagate(errp, local_err); |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1571 | return; |
| 1572 | } else if (ret) { |
| 1573 | error_setg(errp, |
| 1574 | "Snapshot with name '%s' already exists on device '%s'", |
| 1575 | name, device); |
| 1576 | return; |
| 1577 | } |
| 1578 | |
| 1579 | /* 3. take the snapshot */ |
| 1580 | sn = &state->sn; |
| 1581 | pstrcpy(sn->name, sizeof(sn->name), name); |
| 1582 | qemu_gettimeofday(&tv); |
| 1583 | sn->date_sec = tv.tv_sec; |
| 1584 | sn->date_nsec = tv.tv_usec * 1000; |
| 1585 | sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL); |
| 1586 | |
| 1587 | ret1 = bdrv_snapshot_create(bs, sn); |
| 1588 | if (ret1 < 0) { |
| 1589 | error_setg_errno(errp, -ret1, |
| 1590 | "Failed to create snapshot '%s' on device '%s'", |
| 1591 | name, device); |
| 1592 | return; |
| 1593 | } |
| 1594 | |
| 1595 | /* 4. succeed, mark a snapshot is created */ |
Fam Zheng | 507306c | 2015-10-23 11:08:13 +0800 | [diff] [blame] | 1596 | state->created = true; |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1597 | } |
| 1598 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1599 | static void internal_snapshot_abort(BlkActionState *common) |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1600 | { |
| 1601 | InternalSnapshotState *state = |
| 1602 | DO_UPCAST(InternalSnapshotState, common, common); |
| 1603 | BlockDriverState *bs = state->bs; |
| 1604 | QEMUSnapshotInfo *sn = &state->sn; |
| 1605 | Error *local_error = NULL; |
| 1606 | |
Fam Zheng | 507306c | 2015-10-23 11:08:13 +0800 | [diff] [blame] | 1607 | if (!state->created) { |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1608 | return; |
| 1609 | } |
| 1610 | |
| 1611 | if (bdrv_snapshot_delete(bs, sn->id_str, sn->name, &local_error) < 0) { |
Markus Armbruster | c29b77f | 2015-12-18 16:35:14 +0100 | [diff] [blame] | 1612 | error_reportf_err(local_error, |
| 1613 | "Failed to delete snapshot with id '%s' and " |
| 1614 | "name '%s' on device '%s' in abort: ", |
| 1615 | sn->id_str, sn->name, |
| 1616 | bdrv_get_device_name(bs)); |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 1617 | } |
| 1618 | } |
| 1619 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1620 | static void internal_snapshot_clean(BlkActionState *common) |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 1621 | { |
| 1622 | InternalSnapshotState *state = DO_UPCAST(InternalSnapshotState, |
| 1623 | common, common); |
| 1624 | |
| 1625 | if (state->aio_context) { |
Fam Zheng | 507306c | 2015-10-23 11:08:13 +0800 | [diff] [blame] | 1626 | if (state->bs) { |
| 1627 | bdrv_drained_end(state->bs); |
| 1628 | } |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 1629 | aio_context_release(state->aio_context); |
| 1630 | } |
| 1631 | } |
| 1632 | |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1633 | /* external snapshot private data */ |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1634 | typedef struct ExternalSnapshotState { |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1635 | BlkActionState common; |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 1636 | BlockDriverState *old_bs; |
| 1637 | BlockDriverState *new_bs; |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 1638 | AioContext *aio_context; |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1639 | } ExternalSnapshotState; |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 1640 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1641 | static void external_snapshot_prepare(BlkActionState *common, |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1642 | Error **errp) |
| 1643 | { |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 1644 | int flags = 0; |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1645 | QDict *options = NULL; |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1646 | Error *local_err = NULL; |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1647 | /* Device and node name of the image to generate the snapshot from */ |
Wenchao Xia | e2a31e8 | 2013-05-08 18:25:13 +0800 | [diff] [blame] | 1648 | const char *device; |
Benoît Canet | 0901f67 | 2014-01-23 21:31:38 +0100 | [diff] [blame] | 1649 | const char *node_name; |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1650 | /* Reference to the new image (for 'blockdev-snapshot') */ |
| 1651 | const char *snapshot_ref; |
| 1652 | /* File name of the new image (for 'blockdev-snapshot-sync') */ |
Wenchao Xia | e2a31e8 | 2013-05-08 18:25:13 +0800 | [diff] [blame] | 1653 | const char *new_image_file; |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1654 | ExternalSnapshotState *state = |
| 1655 | DO_UPCAST(ExternalSnapshotState, common, common); |
Kevin Wolf | c8a83e8 | 2013-05-13 10:43:43 +0200 | [diff] [blame] | 1656 | TransactionAction *action = common->action; |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1657 | |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1658 | /* 'blockdev-snapshot' and 'blockdev-snapshot-sync' have similar |
| 1659 | * purpose but a different set of parameters */ |
| 1660 | switch (action->type) { |
| 1661 | case TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT: |
| 1662 | { |
Eric Blake | 32bafa8 | 2016-03-17 16:48:37 -0600 | [diff] [blame] | 1663 | BlockdevSnapshot *s = action->u.blockdev_snapshot.data; |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1664 | device = s->node; |
| 1665 | node_name = s->node; |
| 1666 | new_image_file = NULL; |
| 1667 | snapshot_ref = s->overlay; |
| 1668 | } |
| 1669 | break; |
| 1670 | case TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC: |
| 1671 | { |
Eric Blake | 32bafa8 | 2016-03-17 16:48:37 -0600 | [diff] [blame] | 1672 | BlockdevSnapshotSync *s = action->u.blockdev_snapshot_sync.data; |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1673 | device = s->has_device ? s->device : NULL; |
| 1674 | node_name = s->has_node_name ? s->node_name : NULL; |
| 1675 | new_image_file = s->snapshot_file; |
| 1676 | snapshot_ref = NULL; |
| 1677 | } |
| 1678 | break; |
| 1679 | default: |
| 1680 | g_assert_not_reached(); |
Wenchao Xia | e2a31e8 | 2013-05-08 18:25:13 +0800 | [diff] [blame] | 1681 | } |
| 1682 | |
| 1683 | /* start processing */ |
John Snow | 94d16a6 | 2015-11-05 18:13:18 -0500 | [diff] [blame] | 1684 | if (action_check_completion_mode(common, errp) < 0) { |
| 1685 | return; |
| 1686 | } |
| 1687 | |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1688 | state->old_bs = bdrv_lookup_bs(device, node_name, errp); |
| 1689 | if (!state->old_bs) { |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1690 | return; |
| 1691 | } |
| 1692 | |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 1693 | /* Acquire AioContext now so any threads operating on old_bs stop */ |
| 1694 | state->aio_context = bdrv_get_aio_context(state->old_bs); |
| 1695 | aio_context_acquire(state->aio_context); |
Fam Zheng | da763e8 | 2015-10-23 11:08:10 +0800 | [diff] [blame] | 1696 | bdrv_drained_begin(state->old_bs); |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 1697 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1698 | if (!bdrv_is_inserted(state->old_bs)) { |
Markus Armbruster | c6bd8c7 | 2015-03-17 11:54:50 +0100 | [diff] [blame] | 1699 | error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1700 | return; |
| 1701 | } |
| 1702 | |
Fam Zheng | 3718d8a | 2014-05-23 21:29:43 +0800 | [diff] [blame] | 1703 | if (bdrv_op_is_blocked(state->old_bs, |
| 1704 | BLOCK_OP_TYPE_EXTERNAL_SNAPSHOT, errp)) { |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1705 | return; |
| 1706 | } |
| 1707 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1708 | if (!bdrv_is_read_only(state->old_bs)) { |
| 1709 | if (bdrv_flush(state->old_bs)) { |
Markus Armbruster | c6bd8c7 | 2015-03-17 11:54:50 +0100 | [diff] [blame] | 1710 | error_setg(errp, QERR_IO_ERROR); |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1711 | return; |
| 1712 | } |
| 1713 | } |
| 1714 | |
Benoît Canet | 212a5a8 | 2014-01-23 21:31:36 +0100 | [diff] [blame] | 1715 | if (!bdrv_is_first_non_filter(state->old_bs)) { |
Markus Armbruster | c6bd8c7 | 2015-03-17 11:54:50 +0100 | [diff] [blame] | 1716 | error_setg(errp, QERR_FEATURE_DISABLED, "snapshot"); |
Benoît Canet | f6186f4 | 2013-10-02 14:33:48 +0200 | [diff] [blame] | 1717 | return; |
| 1718 | } |
| 1719 | |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1720 | if (action->type == TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC) { |
Eric Blake | 32bafa8 | 2016-03-17 16:48:37 -0600 | [diff] [blame] | 1721 | BlockdevSnapshotSync *s = action->u.blockdev_snapshot_sync.data; |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1722 | const char *format = s->has_format ? s->format : "qcow2"; |
| 1723 | enum NewImageMode mode; |
| 1724 | const char *snapshot_node_name = |
| 1725 | s->has_snapshot_node_name ? s->snapshot_node_name : NULL; |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1726 | |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1727 | if (node_name && !snapshot_node_name) { |
| 1728 | error_setg(errp, "New snapshot node name missing"); |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1729 | return; |
| 1730 | } |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1731 | |
| 1732 | if (snapshot_node_name && |
| 1733 | bdrv_lookup_bs(snapshot_node_name, snapshot_node_name, NULL)) { |
| 1734 | error_setg(errp, "New snapshot node name already in use"); |
| 1735 | return; |
| 1736 | } |
| 1737 | |
| 1738 | flags = state->old_bs->open_flags; |
Kevin Wolf | 4c84498 | 2016-02-29 13:12:26 +0100 | [diff] [blame] | 1739 | flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ); |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1740 | |
| 1741 | /* create new image w/backing file */ |
| 1742 | mode = s->has_mode ? s->mode : NEW_IMAGE_MODE_ABSOLUTE_PATHS; |
| 1743 | if (mode != NEW_IMAGE_MODE_EXISTING) { |
Kevin Wolf | f86b8b5 | 2016-03-02 12:16:44 +0100 | [diff] [blame] | 1744 | int64_t size = bdrv_getlength(state->old_bs); |
| 1745 | if (size < 0) { |
| 1746 | error_setg_errno(errp, -size, "bdrv_getlength failed"); |
| 1747 | return; |
| 1748 | } |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1749 | bdrv_img_create(new_image_file, format, |
| 1750 | state->old_bs->filename, |
| 1751 | state->old_bs->drv->format_name, |
Kevin Wolf | f86b8b5 | 2016-03-02 12:16:44 +0100 | [diff] [blame] | 1752 | NULL, size, flags, &local_err, false); |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1753 | if (local_err) { |
| 1754 | error_propagate(errp, local_err); |
| 1755 | return; |
| 1756 | } |
| 1757 | } |
| 1758 | |
| 1759 | options = qdict_new(); |
| 1760 | if (s->has_snapshot_node_name) { |
| 1761 | qdict_put(options, "node-name", |
| 1762 | qstring_from_str(snapshot_node_name)); |
| 1763 | } |
| 1764 | qdict_put(options, "driver", qstring_from_str(format)); |
| 1765 | |
| 1766 | flags |= BDRV_O_NO_BACKING; |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1767 | } |
| 1768 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 1769 | state->new_bs = bdrv_open(new_image_file, snapshot_ref, options, flags, |
| 1770 | errp); |
Max Reitz | f67503e | 2014-02-18 18:33:05 +0100 | [diff] [blame] | 1771 | /* We will manually add the backing_hd field to the bs later */ |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 1772 | if (!state->new_bs) { |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1773 | return; |
| 1774 | } |
| 1775 | |
Kevin Wolf | 1f0c461 | 2016-03-22 18:38:44 +0100 | [diff] [blame] | 1776 | if (bdrv_has_blk(state->new_bs)) { |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1777 | error_setg(errp, "The snapshot is already in use by %s", |
Kevin Wolf | 1f0c461 | 2016-03-22 18:38:44 +0100 | [diff] [blame] | 1778 | bdrv_get_parent_name(state->new_bs)); |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 1779 | return; |
| 1780 | } |
| 1781 | |
| 1782 | if (bdrv_op_is_blocked(state->new_bs, BLOCK_OP_TYPE_EXTERNAL_SNAPSHOT, |
| 1783 | errp)) { |
| 1784 | return; |
| 1785 | } |
| 1786 | |
| 1787 | if (state->new_bs->backing != NULL) { |
| 1788 | error_setg(errp, "The snapshot already has a backing image"); |
Alberto Garcia | 08b24cf | 2015-11-03 12:32:35 +0200 | [diff] [blame] | 1789 | return; |
| 1790 | } |
| 1791 | |
| 1792 | if (!state->new_bs->drv->supports_backing) { |
| 1793 | error_setg(errp, "The snapshot does not support backing images"); |
Wenchao Xia | 9b9877e | 2013-05-08 18:25:12 +0800 | [diff] [blame] | 1794 | } |
| 1795 | } |
| 1796 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1797 | static void external_snapshot_commit(BlkActionState *common) |
Wenchao Xia | 3b0047e | 2013-05-08 18:25:14 +0800 | [diff] [blame] | 1798 | { |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1799 | ExternalSnapshotState *state = |
| 1800 | DO_UPCAST(ExternalSnapshotState, common, common); |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 1801 | |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 1802 | bdrv_set_aio_context(state->new_bs, state->aio_context); |
| 1803 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1804 | /* This removes our old bs and adds the new bs */ |
| 1805 | bdrv_append(state->new_bs, state->old_bs); |
Wenchao Xia | 3b0047e | 2013-05-08 18:25:14 +0800 | [diff] [blame] | 1806 | /* We don't need (or want) to use the transactional |
| 1807 | * bdrv_reopen_multiple() across all the entries at once, because we |
| 1808 | * don't want to abort all of them if one of them fails the reopen */ |
Kevin Wolf | 4c84498 | 2016-02-29 13:12:26 +0100 | [diff] [blame] | 1809 | if (!state->old_bs->copy_on_read) { |
| 1810 | bdrv_reopen(state->old_bs, state->old_bs->open_flags & ~BDRV_O_RDWR, |
| 1811 | NULL); |
| 1812 | } |
Wenchao Xia | 3b0047e | 2013-05-08 18:25:14 +0800 | [diff] [blame] | 1813 | } |
| 1814 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1815 | static void external_snapshot_abort(BlkActionState *common) |
Wenchao Xia | 96b86bf | 2013-05-08 18:25:15 +0800 | [diff] [blame] | 1816 | { |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 1817 | ExternalSnapshotState *state = |
| 1818 | DO_UPCAST(ExternalSnapshotState, common, common); |
| 1819 | if (state->new_bs) { |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 1820 | bdrv_unref(state->new_bs); |
Wenchao Xia | 96b86bf | 2013-05-08 18:25:15 +0800 | [diff] [blame] | 1821 | } |
Fam Zheng | da763e8 | 2015-10-23 11:08:10 +0800 | [diff] [blame] | 1822 | } |
| 1823 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1824 | static void external_snapshot_clean(BlkActionState *common) |
Fam Zheng | da763e8 | 2015-10-23 11:08:10 +0800 | [diff] [blame] | 1825 | { |
| 1826 | ExternalSnapshotState *state = |
| 1827 | DO_UPCAST(ExternalSnapshotState, common, common); |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 1828 | if (state->aio_context) { |
Fam Zheng | da763e8 | 2015-10-23 11:08:10 +0800 | [diff] [blame] | 1829 | bdrv_drained_end(state->old_bs); |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 1830 | aio_context_release(state->aio_context); |
| 1831 | } |
Wenchao Xia | 96b86bf | 2013-05-08 18:25:15 +0800 | [diff] [blame] | 1832 | } |
| 1833 | |
Stefan Hajnoczi | 3037f36 | 2013-06-24 17:13:17 +0200 | [diff] [blame] | 1834 | typedef struct DriveBackupState { |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1835 | BlkActionState common; |
Stefan Hajnoczi | 3037f36 | 2013-06-24 17:13:17 +0200 | [diff] [blame] | 1836 | BlockDriverState *bs; |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 1837 | AioContext *aio_context; |
Stefan Hajnoczi | 3037f36 | 2013-06-24 17:13:17 +0200 | [diff] [blame] | 1838 | BlockJob *job; |
| 1839 | } DriveBackupState; |
| 1840 | |
Alberto Garcia | 70559d4 | 2016-07-05 17:28:58 +0300 | [diff] [blame] | 1841 | static void do_drive_backup(const char *job_id, const char *device, |
| 1842 | const char *target, bool has_format, |
| 1843 | const char *format, enum MirrorSyncMode sync, |
John Snow | 78f51fd | 2015-11-05 18:13:17 -0500 | [diff] [blame] | 1844 | bool has_mode, enum NewImageMode mode, |
| 1845 | bool has_speed, int64_t speed, |
| 1846 | bool has_bitmap, const char *bitmap, |
| 1847 | bool has_on_source_error, |
| 1848 | BlockdevOnError on_source_error, |
| 1849 | bool has_on_target_error, |
| 1850 | BlockdevOnError on_target_error, |
| 1851 | BlockJobTxn *txn, Error **errp); |
| 1852 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1853 | static void drive_backup_prepare(BlkActionState *common, Error **errp) |
Stefan Hajnoczi | 3037f36 | 2013-06-24 17:13:17 +0200 | [diff] [blame] | 1854 | { |
| 1855 | DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common); |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 1856 | BlockBackend *blk; |
Stefan Hajnoczi | 3037f36 | 2013-06-24 17:13:17 +0200 | [diff] [blame] | 1857 | DriveBackup *backup; |
| 1858 | Error *local_err = NULL; |
| 1859 | |
Eric Blake | 6a8f966 | 2015-10-26 16:34:54 -0600 | [diff] [blame] | 1860 | assert(common->action->type == TRANSACTION_ACTION_KIND_DRIVE_BACKUP); |
Eric Blake | 32bafa8 | 2016-03-17 16:48:37 -0600 | [diff] [blame] | 1861 | backup = common->action->u.drive_backup.data; |
Stefan Hajnoczi | 3037f36 | 2013-06-24 17:13:17 +0200 | [diff] [blame] | 1862 | |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 1863 | blk = blk_by_name(backup->device); |
| 1864 | if (!blk) { |
Markus Armbruster | 75158eb | 2015-03-16 08:57:47 +0100 | [diff] [blame] | 1865 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
| 1866 | "Device '%s' not found", backup->device); |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 1867 | return; |
| 1868 | } |
| 1869 | |
Fam Zheng | 1fdd4b7 | 2015-10-23 11:08:11 +0800 | [diff] [blame] | 1870 | if (!blk_is_available(blk)) { |
| 1871 | error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, backup->device); |
| 1872 | return; |
| 1873 | } |
| 1874 | |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 1875 | /* AioContext is released in .clean() */ |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 1876 | state->aio_context = blk_get_aio_context(blk); |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 1877 | aio_context_acquire(state->aio_context); |
Fam Zheng | 1fdd4b7 | 2015-10-23 11:08:11 +0800 | [diff] [blame] | 1878 | bdrv_drained_begin(blk_bs(blk)); |
| 1879 | state->bs = blk_bs(blk); |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 1880 | |
Alberto Garcia | 70559d4 | 2016-07-05 17:28:58 +0300 | [diff] [blame] | 1881 | do_drive_backup(backup->has_job_id ? backup->job_id : NULL, |
| 1882 | backup->device, backup->target, |
John Snow | 78f51fd | 2015-11-05 18:13:17 -0500 | [diff] [blame] | 1883 | backup->has_format, backup->format, |
| 1884 | backup->sync, |
| 1885 | backup->has_mode, backup->mode, |
| 1886 | backup->has_speed, backup->speed, |
| 1887 | backup->has_bitmap, backup->bitmap, |
| 1888 | backup->has_on_source_error, backup->on_source_error, |
| 1889 | backup->has_on_target_error, backup->on_target_error, |
John Snow | 94d16a6 | 2015-11-05 18:13:18 -0500 | [diff] [blame] | 1890 | common->block_job_txn, &local_err); |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 1891 | if (local_err) { |
Stefan Hajnoczi | 3037f36 | 2013-06-24 17:13:17 +0200 | [diff] [blame] | 1892 | error_propagate(errp, local_err); |
Stefan Hajnoczi | 3037f36 | 2013-06-24 17:13:17 +0200 | [diff] [blame] | 1893 | return; |
| 1894 | } |
| 1895 | |
Stefan Hajnoczi | 3037f36 | 2013-06-24 17:13:17 +0200 | [diff] [blame] | 1896 | state->job = state->bs->job; |
| 1897 | } |
| 1898 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1899 | static void drive_backup_abort(BlkActionState *common) |
Stefan Hajnoczi | 3037f36 | 2013-06-24 17:13:17 +0200 | [diff] [blame] | 1900 | { |
| 1901 | DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common); |
| 1902 | BlockDriverState *bs = state->bs; |
| 1903 | |
| 1904 | /* Only cancel if it's the job we started */ |
| 1905 | if (bs && bs->job && bs->job == state->job) { |
| 1906 | block_job_cancel_sync(bs->job); |
| 1907 | } |
| 1908 | } |
| 1909 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1910 | static void drive_backup_clean(BlkActionState *common) |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 1911 | { |
| 1912 | DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common); |
| 1913 | |
| 1914 | if (state->aio_context) { |
Fam Zheng | 1fdd4b7 | 2015-10-23 11:08:11 +0800 | [diff] [blame] | 1915 | bdrv_drained_end(state->bs); |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 1916 | aio_context_release(state->aio_context); |
| 1917 | } |
| 1918 | } |
| 1919 | |
Fam Zheng | bd8baec | 2014-12-18 18:37:06 +0800 | [diff] [blame] | 1920 | typedef struct BlockdevBackupState { |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1921 | BlkActionState common; |
Fam Zheng | bd8baec | 2014-12-18 18:37:06 +0800 | [diff] [blame] | 1922 | BlockDriverState *bs; |
| 1923 | BlockJob *job; |
| 1924 | AioContext *aio_context; |
| 1925 | } BlockdevBackupState; |
| 1926 | |
Alberto Garcia | 70559d4 | 2016-07-05 17:28:58 +0300 | [diff] [blame] | 1927 | static void do_blockdev_backup(const char *job_id, const char *device, |
| 1928 | const char *target, enum MirrorSyncMode sync, |
John Snow | 78f51fd | 2015-11-05 18:13:17 -0500 | [diff] [blame] | 1929 | bool has_speed, int64_t speed, |
| 1930 | bool has_on_source_error, |
| 1931 | BlockdevOnError on_source_error, |
| 1932 | bool has_on_target_error, |
| 1933 | BlockdevOnError on_target_error, |
| 1934 | BlockJobTxn *txn, Error **errp); |
| 1935 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1936 | static void blockdev_backup_prepare(BlkActionState *common, Error **errp) |
Fam Zheng | bd8baec | 2014-12-18 18:37:06 +0800 | [diff] [blame] | 1937 | { |
| 1938 | BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common); |
| 1939 | BlockdevBackup *backup; |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 1940 | BlockBackend *blk, *target; |
Fam Zheng | bd8baec | 2014-12-18 18:37:06 +0800 | [diff] [blame] | 1941 | Error *local_err = NULL; |
| 1942 | |
Eric Blake | 6a8f966 | 2015-10-26 16:34:54 -0600 | [diff] [blame] | 1943 | assert(common->action->type == TRANSACTION_ACTION_KIND_BLOCKDEV_BACKUP); |
Eric Blake | 32bafa8 | 2016-03-17 16:48:37 -0600 | [diff] [blame] | 1944 | backup = common->action->u.blockdev_backup.data; |
Fam Zheng | bd8baec | 2014-12-18 18:37:06 +0800 | [diff] [blame] | 1945 | |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 1946 | blk = blk_by_name(backup->device); |
| 1947 | if (!blk) { |
Markus Armbruster | 5b347c5 | 2015-03-17 08:36:14 +0100 | [diff] [blame] | 1948 | error_setg(errp, "Device '%s' not found", backup->device); |
Fam Zheng | bd8baec | 2014-12-18 18:37:06 +0800 | [diff] [blame] | 1949 | return; |
| 1950 | } |
| 1951 | |
Fam Zheng | ff52bf3 | 2015-10-23 11:08:12 +0800 | [diff] [blame] | 1952 | if (!blk_is_available(blk)) { |
| 1953 | error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, backup->device); |
| 1954 | return; |
| 1955 | } |
| 1956 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 1957 | target = blk_by_name(backup->target); |
| 1958 | if (!target) { |
Markus Armbruster | 5b347c5 | 2015-03-17 08:36:14 +0100 | [diff] [blame] | 1959 | error_setg(errp, "Device '%s' not found", backup->target); |
Fam Zheng | bd8baec | 2014-12-18 18:37:06 +0800 | [diff] [blame] | 1960 | return; |
| 1961 | } |
| 1962 | |
| 1963 | /* AioContext is released in .clean() */ |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 1964 | state->aio_context = blk_get_aio_context(blk); |
| 1965 | if (state->aio_context != blk_get_aio_context(target)) { |
Fam Zheng | bd8baec | 2014-12-18 18:37:06 +0800 | [diff] [blame] | 1966 | state->aio_context = NULL; |
| 1967 | error_setg(errp, "Backup between two IO threads is not implemented"); |
| 1968 | return; |
| 1969 | } |
| 1970 | aio_context_acquire(state->aio_context); |
Fam Zheng | ff52bf3 | 2015-10-23 11:08:12 +0800 | [diff] [blame] | 1971 | state->bs = blk_bs(blk); |
| 1972 | bdrv_drained_begin(state->bs); |
Fam Zheng | bd8baec | 2014-12-18 18:37:06 +0800 | [diff] [blame] | 1973 | |
Alberto Garcia | 70559d4 | 2016-07-05 17:28:58 +0300 | [diff] [blame] | 1974 | do_blockdev_backup(backup->has_job_id ? backup->job_id : NULL, |
| 1975 | backup->device, backup->target, backup->sync, |
John Snow | 78f51fd | 2015-11-05 18:13:17 -0500 | [diff] [blame] | 1976 | backup->has_speed, backup->speed, |
| 1977 | backup->has_on_source_error, backup->on_source_error, |
| 1978 | backup->has_on_target_error, backup->on_target_error, |
John Snow | 94d16a6 | 2015-11-05 18:13:18 -0500 | [diff] [blame] | 1979 | common->block_job_txn, &local_err); |
Fam Zheng | bd8baec | 2014-12-18 18:37:06 +0800 | [diff] [blame] | 1980 | if (local_err) { |
| 1981 | error_propagate(errp, local_err); |
| 1982 | return; |
| 1983 | } |
| 1984 | |
Fam Zheng | bd8baec | 2014-12-18 18:37:06 +0800 | [diff] [blame] | 1985 | state->job = state->bs->job; |
| 1986 | } |
| 1987 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1988 | static void blockdev_backup_abort(BlkActionState *common) |
Fam Zheng | bd8baec | 2014-12-18 18:37:06 +0800 | [diff] [blame] | 1989 | { |
| 1990 | BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common); |
| 1991 | BlockDriverState *bs = state->bs; |
| 1992 | |
| 1993 | /* Only cancel if it's the job we started */ |
| 1994 | if (bs && bs->job && bs->job == state->job) { |
| 1995 | block_job_cancel_sync(bs->job); |
| 1996 | } |
| 1997 | } |
| 1998 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 1999 | static void blockdev_backup_clean(BlkActionState *common) |
Fam Zheng | bd8baec | 2014-12-18 18:37:06 +0800 | [diff] [blame] | 2000 | { |
| 2001 | BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common); |
| 2002 | |
| 2003 | if (state->aio_context) { |
Fam Zheng | ff52bf3 | 2015-10-23 11:08:12 +0800 | [diff] [blame] | 2004 | bdrv_drained_end(state->bs); |
Fam Zheng | bd8baec | 2014-12-18 18:37:06 +0800 | [diff] [blame] | 2005 | aio_context_release(state->aio_context); |
| 2006 | } |
| 2007 | } |
| 2008 | |
Fam Zheng | df9a681 | 2015-11-09 18:16:54 +0800 | [diff] [blame] | 2009 | typedef struct BlockDirtyBitmapState { |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 2010 | BlkActionState common; |
Fam Zheng | df9a681 | 2015-11-09 18:16:54 +0800 | [diff] [blame] | 2011 | BdrvDirtyBitmap *bitmap; |
| 2012 | BlockDriverState *bs; |
| 2013 | AioContext *aio_context; |
| 2014 | HBitmap *backup; |
| 2015 | bool prepared; |
| 2016 | } BlockDirtyBitmapState; |
| 2017 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 2018 | static void block_dirty_bitmap_add_prepare(BlkActionState *common, |
Fam Zheng | df9a681 | 2015-11-09 18:16:54 +0800 | [diff] [blame] | 2019 | Error **errp) |
| 2020 | { |
| 2021 | Error *local_err = NULL; |
| 2022 | BlockDirtyBitmapAdd *action; |
| 2023 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, |
| 2024 | common, common); |
| 2025 | |
John Snow | 94d16a6 | 2015-11-05 18:13:18 -0500 | [diff] [blame] | 2026 | if (action_check_completion_mode(common, errp) < 0) { |
| 2027 | return; |
| 2028 | } |
| 2029 | |
Eric Blake | 32bafa8 | 2016-03-17 16:48:37 -0600 | [diff] [blame] | 2030 | action = common->action->u.block_dirty_bitmap_add.data; |
Fam Zheng | df9a681 | 2015-11-09 18:16:54 +0800 | [diff] [blame] | 2031 | /* AIO context taken and released within qmp_block_dirty_bitmap_add */ |
| 2032 | qmp_block_dirty_bitmap_add(action->node, action->name, |
| 2033 | action->has_granularity, action->granularity, |
| 2034 | &local_err); |
| 2035 | |
| 2036 | if (!local_err) { |
| 2037 | state->prepared = true; |
| 2038 | } else { |
| 2039 | error_propagate(errp, local_err); |
| 2040 | } |
| 2041 | } |
| 2042 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 2043 | static void block_dirty_bitmap_add_abort(BlkActionState *common) |
Fam Zheng | df9a681 | 2015-11-09 18:16:54 +0800 | [diff] [blame] | 2044 | { |
| 2045 | BlockDirtyBitmapAdd *action; |
| 2046 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, |
| 2047 | common, common); |
| 2048 | |
Eric Blake | 32bafa8 | 2016-03-17 16:48:37 -0600 | [diff] [blame] | 2049 | action = common->action->u.block_dirty_bitmap_add.data; |
Fam Zheng | df9a681 | 2015-11-09 18:16:54 +0800 | [diff] [blame] | 2050 | /* Should not be able to fail: IF the bitmap was added via .prepare(), |
| 2051 | * then the node reference and bitmap name must have been valid. |
| 2052 | */ |
| 2053 | if (state->prepared) { |
| 2054 | qmp_block_dirty_bitmap_remove(action->node, action->name, &error_abort); |
| 2055 | } |
| 2056 | } |
| 2057 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 2058 | static void block_dirty_bitmap_clear_prepare(BlkActionState *common, |
Fam Zheng | df9a681 | 2015-11-09 18:16:54 +0800 | [diff] [blame] | 2059 | Error **errp) |
| 2060 | { |
| 2061 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, |
| 2062 | common, common); |
| 2063 | BlockDirtyBitmap *action; |
| 2064 | |
John Snow | 94d16a6 | 2015-11-05 18:13:18 -0500 | [diff] [blame] | 2065 | if (action_check_completion_mode(common, errp) < 0) { |
| 2066 | return; |
| 2067 | } |
| 2068 | |
Eric Blake | 32bafa8 | 2016-03-17 16:48:37 -0600 | [diff] [blame] | 2069 | action = common->action->u.block_dirty_bitmap_clear.data; |
Fam Zheng | df9a681 | 2015-11-09 18:16:54 +0800 | [diff] [blame] | 2070 | state->bitmap = block_dirty_bitmap_lookup(action->node, |
| 2071 | action->name, |
| 2072 | &state->bs, |
| 2073 | &state->aio_context, |
| 2074 | errp); |
| 2075 | if (!state->bitmap) { |
| 2076 | return; |
| 2077 | } |
| 2078 | |
| 2079 | if (bdrv_dirty_bitmap_frozen(state->bitmap)) { |
| 2080 | error_setg(errp, "Cannot modify a frozen bitmap"); |
| 2081 | return; |
| 2082 | } else if (!bdrv_dirty_bitmap_enabled(state->bitmap)) { |
| 2083 | error_setg(errp, "Cannot clear a disabled bitmap"); |
| 2084 | return; |
| 2085 | } |
| 2086 | |
| 2087 | bdrv_clear_dirty_bitmap(state->bitmap, &state->backup); |
| 2088 | /* AioContext is released in .clean() */ |
| 2089 | } |
| 2090 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 2091 | static void block_dirty_bitmap_clear_abort(BlkActionState *common) |
Fam Zheng | df9a681 | 2015-11-09 18:16:54 +0800 | [diff] [blame] | 2092 | { |
| 2093 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, |
| 2094 | common, common); |
| 2095 | |
| 2096 | bdrv_undo_clear_dirty_bitmap(state->bitmap, state->backup); |
| 2097 | } |
| 2098 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 2099 | static void block_dirty_bitmap_clear_commit(BlkActionState *common) |
Fam Zheng | df9a681 | 2015-11-09 18:16:54 +0800 | [diff] [blame] | 2100 | { |
| 2101 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, |
| 2102 | common, common); |
| 2103 | |
| 2104 | hbitmap_free(state->backup); |
| 2105 | } |
| 2106 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 2107 | static void block_dirty_bitmap_clear_clean(BlkActionState *common) |
Fam Zheng | df9a681 | 2015-11-09 18:16:54 +0800 | [diff] [blame] | 2108 | { |
| 2109 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, |
| 2110 | common, common); |
| 2111 | |
| 2112 | if (state->aio_context) { |
| 2113 | aio_context_release(state->aio_context); |
| 2114 | } |
| 2115 | } |
| 2116 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 2117 | static void abort_prepare(BlkActionState *common, Error **errp) |
Stefan Hajnoczi | 78b18b7 | 2013-06-24 17:13:18 +0200 | [diff] [blame] | 2118 | { |
| 2119 | error_setg(errp, "Transaction aborted using Abort action"); |
| 2120 | } |
| 2121 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 2122 | static void abort_commit(BlkActionState *common) |
Stefan Hajnoczi | 78b18b7 | 2013-06-24 17:13:18 +0200 | [diff] [blame] | 2123 | { |
Stefan Weil | dfc6f86 | 2013-07-25 18:21:28 +0200 | [diff] [blame] | 2124 | g_assert_not_reached(); /* this action never succeeds */ |
Stefan Hajnoczi | 78b18b7 | 2013-06-24 17:13:18 +0200 | [diff] [blame] | 2125 | } |
| 2126 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 2127 | static const BlkActionOps actions[] = { |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 2128 | [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT] = { |
| 2129 | .instance_size = sizeof(ExternalSnapshotState), |
| 2130 | .prepare = external_snapshot_prepare, |
| 2131 | .commit = external_snapshot_commit, |
| 2132 | .abort = external_snapshot_abort, |
Alberto Garcia | 4ad6f3d | 2015-11-13 15:00:24 +0200 | [diff] [blame] | 2133 | .clean = external_snapshot_clean, |
Alberto Garcia | 43de7e2 | 2015-10-26 14:27:16 +0200 | [diff] [blame] | 2134 | }, |
Kevin Wolf | c8a83e8 | 2013-05-13 10:43:43 +0200 | [diff] [blame] | 2135 | [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC] = { |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 2136 | .instance_size = sizeof(ExternalSnapshotState), |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 2137 | .prepare = external_snapshot_prepare, |
| 2138 | .commit = external_snapshot_commit, |
| 2139 | .abort = external_snapshot_abort, |
Fam Zheng | da763e8 | 2015-10-23 11:08:10 +0800 | [diff] [blame] | 2140 | .clean = external_snapshot_clean, |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 2141 | }, |
Stefan Hajnoczi | 3037f36 | 2013-06-24 17:13:17 +0200 | [diff] [blame] | 2142 | [TRANSACTION_ACTION_KIND_DRIVE_BACKUP] = { |
| 2143 | .instance_size = sizeof(DriveBackupState), |
| 2144 | .prepare = drive_backup_prepare, |
| 2145 | .abort = drive_backup_abort, |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 2146 | .clean = drive_backup_clean, |
Stefan Hajnoczi | 3037f36 | 2013-06-24 17:13:17 +0200 | [diff] [blame] | 2147 | }, |
Fam Zheng | bd8baec | 2014-12-18 18:37:06 +0800 | [diff] [blame] | 2148 | [TRANSACTION_ACTION_KIND_BLOCKDEV_BACKUP] = { |
| 2149 | .instance_size = sizeof(BlockdevBackupState), |
| 2150 | .prepare = blockdev_backup_prepare, |
| 2151 | .abort = blockdev_backup_abort, |
| 2152 | .clean = blockdev_backup_clean, |
| 2153 | }, |
Stefan Hajnoczi | 78b18b7 | 2013-06-24 17:13:18 +0200 | [diff] [blame] | 2154 | [TRANSACTION_ACTION_KIND_ABORT] = { |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 2155 | .instance_size = sizeof(BlkActionState), |
Stefan Hajnoczi | 78b18b7 | 2013-06-24 17:13:18 +0200 | [diff] [blame] | 2156 | .prepare = abort_prepare, |
| 2157 | .commit = abort_commit, |
| 2158 | }, |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 2159 | [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC] = { |
| 2160 | .instance_size = sizeof(InternalSnapshotState), |
| 2161 | .prepare = internal_snapshot_prepare, |
| 2162 | .abort = internal_snapshot_abort, |
Stefan Hajnoczi | 5d6e96e | 2014-11-21 10:48:59 +0000 | [diff] [blame] | 2163 | .clean = internal_snapshot_clean, |
Wenchao Xia | bbe8601 | 2013-09-11 14:04:34 +0800 | [diff] [blame] | 2164 | }, |
Fam Zheng | df9a681 | 2015-11-09 18:16:54 +0800 | [diff] [blame] | 2165 | [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_ADD] = { |
| 2166 | .instance_size = sizeof(BlockDirtyBitmapState), |
| 2167 | .prepare = block_dirty_bitmap_add_prepare, |
| 2168 | .abort = block_dirty_bitmap_add_abort, |
| 2169 | }, |
| 2170 | [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_CLEAR] = { |
| 2171 | .instance_size = sizeof(BlockDirtyBitmapState), |
| 2172 | .prepare = block_dirty_bitmap_clear_prepare, |
| 2173 | .commit = block_dirty_bitmap_clear_commit, |
| 2174 | .abort = block_dirty_bitmap_clear_abort, |
| 2175 | .clean = block_dirty_bitmap_clear_clean, |
| 2176 | } |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 2177 | }; |
| 2178 | |
John Snow | 94d16a6 | 2015-11-05 18:13:18 -0500 | [diff] [blame] | 2179 | /** |
| 2180 | * Allocate a TransactionProperties structure if necessary, and fill |
| 2181 | * that structure with desired defaults if they are unset. |
| 2182 | */ |
| 2183 | static TransactionProperties *get_transaction_properties( |
| 2184 | TransactionProperties *props) |
| 2185 | { |
| 2186 | if (!props) { |
| 2187 | props = g_new0(TransactionProperties, 1); |
| 2188 | } |
| 2189 | |
| 2190 | if (!props->has_completion_mode) { |
| 2191 | props->has_completion_mode = true; |
| 2192 | props->completion_mode = ACTION_COMPLETION_MODE_INDIVIDUAL; |
| 2193 | } |
| 2194 | |
| 2195 | return props; |
| 2196 | } |
| 2197 | |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 2198 | /* |
Stefan Hajnoczi | b756b9c | 2014-11-21 10:48:57 +0000 | [diff] [blame] | 2199 | * 'Atomic' group operations. The operations are performed as a set, and if |
| 2200 | * any fail then we roll back all operations in the group. |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 2201 | */ |
John Snow | 94d16a6 | 2015-11-05 18:13:18 -0500 | [diff] [blame] | 2202 | void qmp_transaction(TransactionActionList *dev_list, |
| 2203 | bool has_props, |
| 2204 | struct TransactionProperties *props, |
| 2205 | Error **errp) |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 2206 | { |
Kevin Wolf | c8a83e8 | 2013-05-13 10:43:43 +0200 | [diff] [blame] | 2207 | TransactionActionList *dev_entry = dev_list; |
John Snow | 94d16a6 | 2015-11-05 18:13:18 -0500 | [diff] [blame] | 2208 | BlockJobTxn *block_job_txn = NULL; |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 2209 | BlkActionState *state, *next; |
Luiz Capitulino | 43e1704 | 2012-11-30 10:52:07 -0200 | [diff] [blame] | 2210 | Error *local_err = NULL; |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 2211 | |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 2212 | QSIMPLEQ_HEAD(snap_bdrv_states, BlkActionState) snap_bdrv_states; |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 2213 | QSIMPLEQ_INIT(&snap_bdrv_states); |
| 2214 | |
John Snow | 94d16a6 | 2015-11-05 18:13:18 -0500 | [diff] [blame] | 2215 | /* Does this transaction get canceled as a group on failure? |
| 2216 | * If not, we don't really need to make a BlockJobTxn. |
| 2217 | */ |
| 2218 | props = get_transaction_properties(props); |
| 2219 | if (props->completion_mode != ACTION_COMPLETION_MODE_INDIVIDUAL) { |
| 2220 | block_job_txn = block_job_txn_new(); |
| 2221 | } |
| 2222 | |
Stefan Hajnoczi | b756b9c | 2014-11-21 10:48:57 +0000 | [diff] [blame] | 2223 | /* drain all i/o before any operations */ |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 2224 | bdrv_drain_all(); |
| 2225 | |
Stefan Hajnoczi | b756b9c | 2014-11-21 10:48:57 +0000 | [diff] [blame] | 2226 | /* We don't do anything in this loop that commits us to the operations */ |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 2227 | while (NULL != dev_entry) { |
Kevin Wolf | c8a83e8 | 2013-05-13 10:43:43 +0200 | [diff] [blame] | 2228 | TransactionAction *dev_info = NULL; |
John Snow | 50f43f0 | 2015-11-05 18:13:09 -0500 | [diff] [blame] | 2229 | const BlkActionOps *ops; |
Paolo Bonzini | 52e7c24 | 2012-03-06 18:55:57 +0100 | [diff] [blame] | 2230 | |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 2231 | dev_info = dev_entry->value; |
| 2232 | dev_entry = dev_entry->next; |
| 2233 | |
Eric Blake | 6a8f966 | 2015-10-26 16:34:54 -0600 | [diff] [blame] | 2234 | assert(dev_info->type < ARRAY_SIZE(actions)); |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 2235 | |
Eric Blake | 6a8f966 | 2015-10-26 16:34:54 -0600 | [diff] [blame] | 2236 | ops = &actions[dev_info->type]; |
Max Reitz | aa3fe71 | 2013-09-12 14:57:27 +0200 | [diff] [blame] | 2237 | assert(ops->instance_size > 0); |
| 2238 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 2239 | state = g_malloc0(ops->instance_size); |
| 2240 | state->ops = ops; |
| 2241 | state->action = dev_info; |
John Snow | 94d16a6 | 2015-11-05 18:13:18 -0500 | [diff] [blame] | 2242 | state->block_job_txn = block_job_txn; |
| 2243 | state->txn_props = props; |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 2244 | QSIMPLEQ_INSERT_TAIL(&snap_bdrv_states, state, entry); |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 2245 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 2246 | state->ops->prepare(state, &local_err); |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 2247 | if (local_err) { |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 2248 | error_propagate(errp, local_err); |
| 2249 | goto delete_and_fail; |
Paolo Bonzini | 52e7c24 | 2012-03-06 18:55:57 +0100 | [diff] [blame] | 2250 | } |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 2251 | } |
| 2252 | |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 2253 | QSIMPLEQ_FOREACH(state, &snap_bdrv_states, entry) { |
Stefan Hajnoczi | f9ea81e | 2013-06-24 17:13:16 +0200 | [diff] [blame] | 2254 | if (state->ops->commit) { |
| 2255 | state->ops->commit(state); |
| 2256 | } |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 2257 | } |
| 2258 | |
| 2259 | /* success */ |
| 2260 | goto exit; |
| 2261 | |
| 2262 | delete_and_fail: |
Stefan Hajnoczi | b756b9c | 2014-11-21 10:48:57 +0000 | [diff] [blame] | 2263 | /* failure, and it is all-or-none; roll back all operations */ |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 2264 | QSIMPLEQ_FOREACH(state, &snap_bdrv_states, entry) { |
| 2265 | if (state->ops->abort) { |
| 2266 | state->ops->abort(state); |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 2267 | } |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 2268 | } |
| 2269 | exit: |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 2270 | QSIMPLEQ_FOREACH_SAFE(state, &snap_bdrv_states, entry, next) { |
| 2271 | if (state->ops->clean) { |
| 2272 | state->ops->clean(state); |
Wenchao Xia | ba0c86a | 2013-05-08 18:25:16 +0800 | [diff] [blame] | 2273 | } |
Stefan Hajnoczi | ba5d6ab | 2013-06-24 17:13:15 +0200 | [diff] [blame] | 2274 | g_free(state); |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 2275 | } |
John Snow | 94d16a6 | 2015-11-05 18:13:18 -0500 | [diff] [blame] | 2276 | if (!has_props) { |
| 2277 | qapi_free_TransactionProperties(props); |
| 2278 | } |
| 2279 | block_job_txn_unref(block_job_txn); |
Jeff Cody | 8802d1f | 2012-02-28 15:54:06 -0500 | [diff] [blame] | 2280 | } |
| 2281 | |
Luiz Capitulino | c245b6a | 2011-12-07 16:02:36 -0200 | [diff] [blame] | 2282 | 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] | 2283 | { |
Max Reitz | 38f54bd | 2015-10-26 21:39:12 +0100 | [diff] [blame] | 2284 | Error *local_err = NULL; |
John Snow | 3a3086b | 2016-05-18 17:53:40 -0400 | [diff] [blame] | 2285 | int rc; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 2286 | |
John Snow | 3a3086b | 2016-05-18 17:53:40 -0400 | [diff] [blame] | 2287 | if (!has_force) { |
| 2288 | force = false; |
| 2289 | } |
| 2290 | |
| 2291 | rc = do_open_tray(device, force, &local_err); |
Colin Lord | bf18bee | 2016-06-06 14:15:22 -0400 | [diff] [blame] | 2292 | if (rc && rc != -ENOSYS) { |
Max Reitz | 38f54bd | 2015-10-26 21:39:12 +0100 | [diff] [blame] | 2293 | error_propagate(errp, local_err); |
Luiz Capitulino | c245b6a | 2011-12-07 16:02:36 -0200 | [diff] [blame] | 2294 | return; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 2295 | } |
Colin Lord | bf18bee | 2016-06-06 14:15:22 -0400 | [diff] [blame] | 2296 | error_free(local_err); |
John Snow | 3a3086b | 2016-05-18 17:53:40 -0400 | [diff] [blame] | 2297 | |
Max Reitz | 6e0abc2 | 2015-12-11 16:23:05 +0100 | [diff] [blame] | 2298 | qmp_x_blockdev_remove_medium(device, errp); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 2299 | } |
| 2300 | |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 2301 | void qmp_block_passwd(bool has_device, const char *device, |
| 2302 | bool has_node_name, const char *node_name, |
| 2303 | const char *password, Error **errp) |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 2304 | { |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 2305 | Error *local_err = NULL; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 2306 | BlockDriverState *bs; |
Stefan Hajnoczi | e344209 | 2014-11-19 14:19:44 +0000 | [diff] [blame] | 2307 | AioContext *aio_context; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 2308 | |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 2309 | bs = bdrv_lookup_bs(has_device ? device : NULL, |
| 2310 | has_node_name ? node_name : NULL, |
| 2311 | &local_err); |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 2312 | if (local_err) { |
Benoît Canet | 12d3ba8 | 2014-01-23 21:31:35 +0100 | [diff] [blame] | 2313 | error_propagate(errp, local_err); |
Luiz Capitulino | a4dea8a | 2011-11-23 13:28:21 -0200 | [diff] [blame] | 2314 | return; |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 2315 | } |
| 2316 | |
Stefan Hajnoczi | e344209 | 2014-11-19 14:19:44 +0000 | [diff] [blame] | 2317 | aio_context = bdrv_get_aio_context(bs); |
| 2318 | aio_context_acquire(aio_context); |
| 2319 | |
Markus Armbruster | 4d2855a | 2015-01-29 10:37:00 +0100 | [diff] [blame] | 2320 | bdrv_add_key(bs, password, errp); |
Stefan Hajnoczi | e344209 | 2014-11-19 14:19:44 +0000 | [diff] [blame] | 2321 | |
Stefan Hajnoczi | e344209 | 2014-11-19 14:19:44 +0000 | [diff] [blame] | 2322 | aio_context_release(aio_context); |
Markus Armbruster | 666daa6 | 2010-06-02 18:48:27 +0200 | [diff] [blame] | 2323 | } |
| 2324 | |
Colin Lord | bf18bee | 2016-06-06 14:15:22 -0400 | [diff] [blame] | 2325 | /* |
| 2326 | * Attempt to open the tray of @device. |
| 2327 | * If @force, ignore its tray lock. |
| 2328 | * Else, if the tray is locked, don't open it, but ask the guest to open it. |
| 2329 | * On error, store an error through @errp and return -errno. |
| 2330 | * If @device does not exist, return -ENODEV. |
| 2331 | * If it has no removable media, return -ENOTSUP. |
| 2332 | * If it has no tray, return -ENOSYS. |
| 2333 | * If the guest was asked to open the tray, return -EINPROGRESS. |
| 2334 | * Else, return 0. |
John Snow | 3a3086b | 2016-05-18 17:53:40 -0400 | [diff] [blame] | 2335 | */ |
| 2336 | static int do_open_tray(const char *device, bool force, Error **errp) |
Max Reitz | 7d8a9f7 | 2015-10-26 21:39:08 +0100 | [diff] [blame] | 2337 | { |
| 2338 | BlockBackend *blk; |
| 2339 | bool locked; |
| 2340 | |
Max Reitz | 7d8a9f7 | 2015-10-26 21:39:08 +0100 | [diff] [blame] | 2341 | blk = blk_by_name(device); |
| 2342 | if (!blk) { |
| 2343 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
| 2344 | "Device '%s' not found", device); |
John Snow | 3a3086b | 2016-05-18 17:53:40 -0400 | [diff] [blame] | 2345 | return -ENODEV; |
Max Reitz | 7d8a9f7 | 2015-10-26 21:39:08 +0100 | [diff] [blame] | 2346 | } |
| 2347 | |
| 2348 | if (!blk_dev_has_removable_media(blk)) { |
| 2349 | error_setg(errp, "Device '%s' is not removable", device); |
John Snow | 3a3086b | 2016-05-18 17:53:40 -0400 | [diff] [blame] | 2350 | return -ENOTSUP; |
Max Reitz | 7d8a9f7 | 2015-10-26 21:39:08 +0100 | [diff] [blame] | 2351 | } |
| 2352 | |
Max Reitz | 12c7ec8 | 2016-01-29 20:49:11 +0100 | [diff] [blame] | 2353 | if (!blk_dev_has_tray(blk)) { |
Colin Lord | bf18bee | 2016-06-06 14:15:22 -0400 | [diff] [blame] | 2354 | error_setg(errp, "Device '%s' does not have a tray", device); |
| 2355 | return -ENOSYS; |
Max Reitz | 12c7ec8 | 2016-01-29 20:49:11 +0100 | [diff] [blame] | 2356 | } |
| 2357 | |
Max Reitz | 7d8a9f7 | 2015-10-26 21:39:08 +0100 | [diff] [blame] | 2358 | if (blk_dev_is_tray_open(blk)) { |
John Snow | 3a3086b | 2016-05-18 17:53:40 -0400 | [diff] [blame] | 2359 | return 0; |
Max Reitz | 7d8a9f7 | 2015-10-26 21:39:08 +0100 | [diff] [blame] | 2360 | } |
| 2361 | |
| 2362 | locked = blk_dev_is_medium_locked(blk); |
| 2363 | if (locked) { |
| 2364 | blk_dev_eject_request(blk, force); |
| 2365 | } |
| 2366 | |
| 2367 | if (!locked || force) { |
| 2368 | blk_dev_change_media_cb(blk, false); |
| 2369 | } |
John Snow | 3a3086b | 2016-05-18 17:53:40 -0400 | [diff] [blame] | 2370 | |
| 2371 | if (locked && !force) { |
Colin Lord | bf18bee | 2016-06-06 14:15:22 -0400 | [diff] [blame] | 2372 | error_setg(errp, "Device '%s' is locked and force was not specified, " |
| 2373 | "wait for tray to open and try again", device); |
| 2374 | return -EINPROGRESS; |
John Snow | 3a3086b | 2016-05-18 17:53:40 -0400 | [diff] [blame] | 2375 | } |
| 2376 | |
| 2377 | return 0; |
| 2378 | } |
| 2379 | |
| 2380 | void qmp_blockdev_open_tray(const char *device, bool has_force, bool force, |
| 2381 | Error **errp) |
| 2382 | { |
Colin Lord | bf18bee | 2016-06-06 14:15:22 -0400 | [diff] [blame] | 2383 | Error *local_err = NULL; |
| 2384 | int rc; |
| 2385 | |
John Snow | 3a3086b | 2016-05-18 17:53:40 -0400 | [diff] [blame] | 2386 | if (!has_force) { |
| 2387 | force = false; |
| 2388 | } |
Colin Lord | bf18bee | 2016-06-06 14:15:22 -0400 | [diff] [blame] | 2389 | rc = do_open_tray(device, force, &local_err); |
| 2390 | if (rc && rc != -ENOSYS && rc != -EINPROGRESS) { |
| 2391 | error_propagate(errp, local_err); |
| 2392 | return; |
| 2393 | } |
| 2394 | error_free(local_err); |
Max Reitz | 7d8a9f7 | 2015-10-26 21:39:08 +0100 | [diff] [blame] | 2395 | } |
| 2396 | |
Max Reitz | abaaf59 | 2015-10-26 21:39:09 +0100 | [diff] [blame] | 2397 | void qmp_blockdev_close_tray(const char *device, Error **errp) |
| 2398 | { |
| 2399 | BlockBackend *blk; |
| 2400 | |
| 2401 | blk = blk_by_name(device); |
| 2402 | if (!blk) { |
| 2403 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
| 2404 | "Device '%s' not found", device); |
| 2405 | return; |
| 2406 | } |
| 2407 | |
| 2408 | if (!blk_dev_has_removable_media(blk)) { |
| 2409 | error_setg(errp, "Device '%s' is not removable", device); |
| 2410 | return; |
| 2411 | } |
| 2412 | |
Max Reitz | 12c7ec8 | 2016-01-29 20:49:11 +0100 | [diff] [blame] | 2413 | if (!blk_dev_has_tray(blk)) { |
| 2414 | /* Ignore this command on tray-less devices */ |
| 2415 | return; |
| 2416 | } |
| 2417 | |
Max Reitz | abaaf59 | 2015-10-26 21:39:09 +0100 | [diff] [blame] | 2418 | if (!blk_dev_is_tray_open(blk)) { |
| 2419 | return; |
| 2420 | } |
| 2421 | |
| 2422 | blk_dev_change_media_cb(blk, true); |
| 2423 | } |
| 2424 | |
Max Reitz | 6e0abc2 | 2015-12-11 16:23:05 +0100 | [diff] [blame] | 2425 | void qmp_x_blockdev_remove_medium(const char *device, Error **errp) |
Max Reitz | 2814f67 | 2015-10-26 21:39:10 +0100 | [diff] [blame] | 2426 | { |
| 2427 | BlockBackend *blk; |
| 2428 | BlockDriverState *bs; |
| 2429 | AioContext *aio_context; |
| 2430 | bool has_device; |
| 2431 | |
| 2432 | blk = blk_by_name(device); |
| 2433 | if (!blk) { |
| 2434 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
| 2435 | "Device '%s' not found", device); |
| 2436 | return; |
| 2437 | } |
| 2438 | |
| 2439 | /* For BBs without a device, we can exchange the BDS tree at will */ |
| 2440 | has_device = blk_get_attached_dev(blk); |
| 2441 | |
| 2442 | if (has_device && !blk_dev_has_removable_media(blk)) { |
| 2443 | error_setg(errp, "Device '%s' is not removable", device); |
| 2444 | return; |
| 2445 | } |
| 2446 | |
Max Reitz | 12c7ec8 | 2016-01-29 20:49:11 +0100 | [diff] [blame] | 2447 | if (has_device && blk_dev_has_tray(blk) && !blk_dev_is_tray_open(blk)) { |
Max Reitz | 2814f67 | 2015-10-26 21:39:10 +0100 | [diff] [blame] | 2448 | error_setg(errp, "Tray of device '%s' is not open", device); |
| 2449 | return; |
| 2450 | } |
| 2451 | |
| 2452 | bs = blk_bs(blk); |
| 2453 | if (!bs) { |
| 2454 | return; |
| 2455 | } |
| 2456 | |
| 2457 | aio_context = bdrv_get_aio_context(bs); |
| 2458 | aio_context_acquire(aio_context); |
| 2459 | |
| 2460 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_EJECT, errp)) { |
| 2461 | goto out; |
| 2462 | } |
| 2463 | |
Max Reitz | 2814f67 | 2015-10-26 21:39:10 +0100 | [diff] [blame] | 2464 | blk_remove_bs(blk); |
| 2465 | |
Max Reitz | 12c7ec8 | 2016-01-29 20:49:11 +0100 | [diff] [blame] | 2466 | if (!blk_dev_has_tray(blk)) { |
| 2467 | /* For tray-less devices, blockdev-open-tray is a no-op (or may not be |
| 2468 | * called at all); therefore, the medium needs to be ejected here. |
| 2469 | * Do it after blk_remove_bs() so blk_is_inserted(blk) returns the @load |
| 2470 | * value passed here (i.e. false). */ |
| 2471 | blk_dev_change_media_cb(blk, false); |
| 2472 | } |
| 2473 | |
Max Reitz | 2814f67 | 2015-10-26 21:39:10 +0100 | [diff] [blame] | 2474 | out: |
| 2475 | aio_context_release(aio_context); |
| 2476 | } |
| 2477 | |
Max Reitz | d129988 | 2015-10-26 21:39:11 +0100 | [diff] [blame] | 2478 | static void qmp_blockdev_insert_anon_medium(const char *device, |
| 2479 | BlockDriverState *bs, Error **errp) |
| 2480 | { |
| 2481 | BlockBackend *blk; |
| 2482 | bool has_device; |
| 2483 | |
| 2484 | blk = blk_by_name(device); |
| 2485 | if (!blk) { |
| 2486 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
| 2487 | "Device '%s' not found", device); |
| 2488 | return; |
| 2489 | } |
| 2490 | |
| 2491 | /* For BBs without a device, we can exchange the BDS tree at will */ |
| 2492 | has_device = blk_get_attached_dev(blk); |
| 2493 | |
| 2494 | if (has_device && !blk_dev_has_removable_media(blk)) { |
| 2495 | error_setg(errp, "Device '%s' is not removable", device); |
| 2496 | return; |
| 2497 | } |
| 2498 | |
Max Reitz | 12c7ec8 | 2016-01-29 20:49:11 +0100 | [diff] [blame] | 2499 | if (has_device && blk_dev_has_tray(blk) && !blk_dev_is_tray_open(blk)) { |
Max Reitz | d129988 | 2015-10-26 21:39:11 +0100 | [diff] [blame] | 2500 | error_setg(errp, "Tray of device '%s' is not open", device); |
| 2501 | return; |
| 2502 | } |
| 2503 | |
| 2504 | if (blk_bs(blk)) { |
| 2505 | error_setg(errp, "There already is a medium in device '%s'", device); |
| 2506 | return; |
| 2507 | } |
| 2508 | |
| 2509 | blk_insert_bs(blk, bs); |
| 2510 | |
Max Reitz | 12c7ec8 | 2016-01-29 20:49:11 +0100 | [diff] [blame] | 2511 | if (!blk_dev_has_tray(blk)) { |
| 2512 | /* For tray-less devices, blockdev-close-tray is a no-op (or may not be |
| 2513 | * called at all); therefore, the medium needs to be pushed into the |
| 2514 | * slot here. |
| 2515 | * Do it after blk_insert_bs() so blk_is_inserted(blk) returns the @load |
| 2516 | * value passed here (i.e. true). */ |
| 2517 | blk_dev_change_media_cb(blk, true); |
| 2518 | } |
Max Reitz | d129988 | 2015-10-26 21:39:11 +0100 | [diff] [blame] | 2519 | } |
| 2520 | |
Max Reitz | 6e0abc2 | 2015-12-11 16:23:05 +0100 | [diff] [blame] | 2521 | void qmp_x_blockdev_insert_medium(const char *device, const char *node_name, |
| 2522 | Error **errp) |
Max Reitz | d129988 | 2015-10-26 21:39:11 +0100 | [diff] [blame] | 2523 | { |
| 2524 | BlockDriverState *bs; |
| 2525 | |
| 2526 | bs = bdrv_find_node(node_name); |
| 2527 | if (!bs) { |
| 2528 | error_setg(errp, "Node '%s' not found", node_name); |
| 2529 | return; |
| 2530 | } |
| 2531 | |
Kevin Wolf | 1f0c461 | 2016-03-22 18:38:44 +0100 | [diff] [blame] | 2532 | if (bdrv_has_blk(bs)) { |
Max Reitz | d129988 | 2015-10-26 21:39:11 +0100 | [diff] [blame] | 2533 | error_setg(errp, "Node '%s' is already in use by '%s'", node_name, |
Kevin Wolf | 1f0c461 | 2016-03-22 18:38:44 +0100 | [diff] [blame] | 2534 | bdrv_get_parent_name(bs)); |
Max Reitz | d129988 | 2015-10-26 21:39:11 +0100 | [diff] [blame] | 2535 | return; |
| 2536 | } |
| 2537 | |
| 2538 | qmp_blockdev_insert_anon_medium(device, bs, errp); |
| 2539 | } |
| 2540 | |
Max Reitz | 24fb413 | 2015-11-06 16:27:06 +0100 | [diff] [blame] | 2541 | void qmp_blockdev_change_medium(const char *device, const char *filename, |
| 2542 | bool has_format, const char *format, |
Max Reitz | 39ff43d | 2015-11-11 04:49:44 +0100 | [diff] [blame] | 2543 | bool has_read_only, |
| 2544 | BlockdevChangeReadOnlyMode read_only, |
Max Reitz | 24fb413 | 2015-11-06 16:27:06 +0100 | [diff] [blame] | 2545 | Error **errp) |
Max Reitz | de2c6c0 | 2015-10-26 21:39:13 +0100 | [diff] [blame] | 2546 | { |
| 2547 | BlockBackend *blk; |
| 2548 | BlockDriverState *medium_bs = NULL; |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 2549 | int bdrv_flags; |
Colin Lord | 38a53d5 | 2016-06-08 13:56:28 -0400 | [diff] [blame] | 2550 | int rc; |
Max Reitz | de2c6c0 | 2015-10-26 21:39:13 +0100 | [diff] [blame] | 2551 | QDict *options = NULL; |
| 2552 | Error *err = NULL; |
| 2553 | |
| 2554 | blk = blk_by_name(device); |
| 2555 | if (!blk) { |
| 2556 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
| 2557 | "Device '%s' not found", device); |
| 2558 | goto fail; |
| 2559 | } |
| 2560 | |
| 2561 | if (blk_bs(blk)) { |
| 2562 | blk_update_root_state(blk); |
| 2563 | } |
| 2564 | |
| 2565 | bdrv_flags = blk_get_open_flags_from_root_state(blk); |
Alyssa Milburn | 156abc2 | 2016-02-06 13:36:18 +0000 | [diff] [blame] | 2566 | bdrv_flags &= ~(BDRV_O_TEMPORARY | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | |
| 2567 | BDRV_O_PROTOCOL); |
Max Reitz | de2c6c0 | 2015-10-26 21:39:13 +0100 | [diff] [blame] | 2568 | |
Max Reitz | 39ff43d | 2015-11-11 04:49:44 +0100 | [diff] [blame] | 2569 | if (!has_read_only) { |
| 2570 | read_only = BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN; |
| 2571 | } |
| 2572 | |
| 2573 | switch (read_only) { |
| 2574 | case BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN: |
| 2575 | break; |
| 2576 | |
| 2577 | case BLOCKDEV_CHANGE_READ_ONLY_MODE_READ_ONLY: |
| 2578 | bdrv_flags &= ~BDRV_O_RDWR; |
| 2579 | break; |
| 2580 | |
| 2581 | case BLOCKDEV_CHANGE_READ_ONLY_MODE_READ_WRITE: |
| 2582 | bdrv_flags |= BDRV_O_RDWR; |
| 2583 | break; |
| 2584 | |
| 2585 | default: |
| 2586 | abort(); |
| 2587 | } |
| 2588 | |
Max Reitz | 24fb413 | 2015-11-06 16:27:06 +0100 | [diff] [blame] | 2589 | if (has_format) { |
Max Reitz | de2c6c0 | 2015-10-26 21:39:13 +0100 | [diff] [blame] | 2590 | options = qdict_new(); |
| 2591 | qdict_put(options, "driver", qstring_from_str(format)); |
| 2592 | } |
| 2593 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 2594 | medium_bs = bdrv_open(filename, NULL, options, bdrv_flags, errp); |
| 2595 | if (!medium_bs) { |
Max Reitz | de2c6c0 | 2015-10-26 21:39:13 +0100 | [diff] [blame] | 2596 | goto fail; |
| 2597 | } |
| 2598 | |
Max Reitz | de2c6c0 | 2015-10-26 21:39:13 +0100 | [diff] [blame] | 2599 | bdrv_add_key(medium_bs, NULL, &err); |
| 2600 | if (err) { |
| 2601 | error_propagate(errp, err); |
| 2602 | goto fail; |
| 2603 | } |
| 2604 | |
Colin Lord | 38a53d5 | 2016-06-08 13:56:28 -0400 | [diff] [blame] | 2605 | rc = do_open_tray(device, false, &err); |
| 2606 | if (rc && rc != -ENOSYS) { |
Max Reitz | de2c6c0 | 2015-10-26 21:39:13 +0100 | [diff] [blame] | 2607 | error_propagate(errp, err); |
| 2608 | goto fail; |
| 2609 | } |
Colin Lord | 38a53d5 | 2016-06-08 13:56:28 -0400 | [diff] [blame] | 2610 | error_free(err); |
| 2611 | err = NULL; |
Max Reitz | de2c6c0 | 2015-10-26 21:39:13 +0100 | [diff] [blame] | 2612 | |
Max Reitz | 6e0abc2 | 2015-12-11 16:23:05 +0100 | [diff] [blame] | 2613 | qmp_x_blockdev_remove_medium(device, &err); |
Max Reitz | de2c6c0 | 2015-10-26 21:39:13 +0100 | [diff] [blame] | 2614 | if (err) { |
| 2615 | error_propagate(errp, err); |
| 2616 | goto fail; |
| 2617 | } |
| 2618 | |
| 2619 | qmp_blockdev_insert_anon_medium(device, medium_bs, &err); |
| 2620 | if (err) { |
| 2621 | error_propagate(errp, err); |
| 2622 | goto fail; |
| 2623 | } |
| 2624 | |
Kevin Wolf | a561499 | 2016-03-21 10:49:51 +0100 | [diff] [blame] | 2625 | blk_apply_root_state(blk, medium_bs); |
| 2626 | |
Max Reitz | de2c6c0 | 2015-10-26 21:39:13 +0100 | [diff] [blame] | 2627 | qmp_blockdev_close_tray(device, errp); |
| 2628 | |
| 2629 | fail: |
| 2630 | /* If the medium has been inserted, the device has its own reference, so |
| 2631 | * ours must be relinquished; and if it has not been inserted successfully, |
| 2632 | * the reference must be relinquished anyway */ |
| 2633 | bdrv_unref(medium_bs); |
| 2634 | } |
| 2635 | |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 2636 | /* throttling disk I/O limits */ |
Luiz Capitulino | 80047da | 2011-12-14 16:49:14 -0200 | [diff] [blame] | 2637 | 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] | 2638 | int64_t bps_wr, |
| 2639 | int64_t iops, |
| 2640 | int64_t iops_rd, |
| 2641 | int64_t iops_wr, |
| 2642 | bool has_bps_max, |
| 2643 | int64_t bps_max, |
| 2644 | bool has_bps_rd_max, |
| 2645 | int64_t bps_rd_max, |
| 2646 | bool has_bps_wr_max, |
| 2647 | int64_t bps_wr_max, |
| 2648 | bool has_iops_max, |
| 2649 | int64_t iops_max, |
| 2650 | bool has_iops_rd_max, |
| 2651 | int64_t iops_rd_max, |
| 2652 | bool has_iops_wr_max, |
Benoît Canet | 2024c1d | 2013-09-02 14:14:41 +0200 | [diff] [blame] | 2653 | int64_t iops_wr_max, |
Alberto Garcia | dce1320 | 2016-02-18 12:27:03 +0200 | [diff] [blame] | 2654 | bool has_bps_max_length, |
| 2655 | int64_t bps_max_length, |
| 2656 | bool has_bps_rd_max_length, |
| 2657 | int64_t bps_rd_max_length, |
| 2658 | bool has_bps_wr_max_length, |
| 2659 | int64_t bps_wr_max_length, |
| 2660 | bool has_iops_max_length, |
| 2661 | int64_t iops_max_length, |
| 2662 | bool has_iops_rd_max_length, |
| 2663 | int64_t iops_rd_max_length, |
| 2664 | bool has_iops_wr_max_length, |
| 2665 | int64_t iops_wr_max_length, |
Benoît Canet | 2024c1d | 2013-09-02 14:14:41 +0200 | [diff] [blame] | 2666 | bool has_iops_size, |
Alberto Garcia | 76f4afb | 2015-06-08 18:17:44 +0200 | [diff] [blame] | 2667 | int64_t iops_size, |
| 2668 | bool has_group, |
| 2669 | const char *group, Error **errp) |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 2670 | { |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 2671 | ThrottleConfig cfg; |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 2672 | BlockDriverState *bs; |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 2673 | BlockBackend *blk; |
Stefan Hajnoczi | b15446f | 2014-05-14 16:22:47 +0200 | [diff] [blame] | 2674 | AioContext *aio_context; |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 2675 | |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 2676 | blk = blk_by_name(device); |
| 2677 | if (!blk) { |
Markus Armbruster | 75158eb | 2015-03-16 08:57:47 +0100 | [diff] [blame] | 2678 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
| 2679 | "Device '%s' not found", device); |
Luiz Capitulino | 80047da | 2011-12-14 16:49:14 -0200 | [diff] [blame] | 2680 | return; |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 2681 | } |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 2682 | |
| 2683 | aio_context = blk_get_aio_context(blk); |
| 2684 | aio_context_acquire(aio_context); |
| 2685 | |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 2686 | bs = blk_bs(blk); |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 2687 | if (!bs) { |
| 2688 | error_setg(errp, "Device '%s' has no medium", device); |
| 2689 | goto out; |
| 2690 | } |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 2691 | |
Alberto Garcia | 1588ab5 | 2016-02-18 12:27:00 +0200 | [diff] [blame] | 2692 | throttle_config_init(&cfg); |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 2693 | cfg.buckets[THROTTLE_BPS_TOTAL].avg = bps; |
| 2694 | cfg.buckets[THROTTLE_BPS_READ].avg = bps_rd; |
| 2695 | cfg.buckets[THROTTLE_BPS_WRITE].avg = bps_wr; |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 2696 | |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 2697 | cfg.buckets[THROTTLE_OPS_TOTAL].avg = iops; |
| 2698 | cfg.buckets[THROTTLE_OPS_READ].avg = iops_rd; |
| 2699 | cfg.buckets[THROTTLE_OPS_WRITE].avg = iops_wr; |
| 2700 | |
Benoît Canet | 3e9fab6 | 2013-09-02 14:14:40 +0200 | [diff] [blame] | 2701 | if (has_bps_max) { |
| 2702 | cfg.buckets[THROTTLE_BPS_TOTAL].max = bps_max; |
| 2703 | } |
| 2704 | if (has_bps_rd_max) { |
| 2705 | cfg.buckets[THROTTLE_BPS_READ].max = bps_rd_max; |
| 2706 | } |
| 2707 | if (has_bps_wr_max) { |
| 2708 | cfg.buckets[THROTTLE_BPS_WRITE].max = bps_wr_max; |
| 2709 | } |
| 2710 | if (has_iops_max) { |
| 2711 | cfg.buckets[THROTTLE_OPS_TOTAL].max = iops_max; |
| 2712 | } |
| 2713 | if (has_iops_rd_max) { |
| 2714 | cfg.buckets[THROTTLE_OPS_READ].max = iops_rd_max; |
| 2715 | } |
| 2716 | if (has_iops_wr_max) { |
| 2717 | cfg.buckets[THROTTLE_OPS_WRITE].max = iops_wr_max; |
| 2718 | } |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 2719 | |
Alberto Garcia | dce1320 | 2016-02-18 12:27:03 +0200 | [diff] [blame] | 2720 | if (has_bps_max_length) { |
| 2721 | cfg.buckets[THROTTLE_BPS_TOTAL].burst_length = bps_max_length; |
| 2722 | } |
| 2723 | if (has_bps_rd_max_length) { |
| 2724 | cfg.buckets[THROTTLE_BPS_READ].burst_length = bps_rd_max_length; |
| 2725 | } |
| 2726 | if (has_bps_wr_max_length) { |
| 2727 | cfg.buckets[THROTTLE_BPS_WRITE].burst_length = bps_wr_max_length; |
| 2728 | } |
| 2729 | if (has_iops_max_length) { |
| 2730 | cfg.buckets[THROTTLE_OPS_TOTAL].burst_length = iops_max_length; |
| 2731 | } |
| 2732 | if (has_iops_rd_max_length) { |
| 2733 | cfg.buckets[THROTTLE_OPS_READ].burst_length = iops_rd_max_length; |
| 2734 | } |
| 2735 | if (has_iops_wr_max_length) { |
| 2736 | cfg.buckets[THROTTLE_OPS_WRITE].burst_length = iops_wr_max_length; |
| 2737 | } |
| 2738 | |
Benoît Canet | 2024c1d | 2013-09-02 14:14:41 +0200 | [diff] [blame] | 2739 | if (has_iops_size) { |
| 2740 | cfg.op_size = iops_size; |
| 2741 | } |
Benoît Canet | cc0681c | 2013-09-02 14:14:39 +0200 | [diff] [blame] | 2742 | |
Alberto Garcia | d585108 | 2016-02-18 12:26:59 +0200 | [diff] [blame] | 2743 | if (!throttle_is_valid(&cfg, errp)) { |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 2744 | goto out; |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 2745 | } |
| 2746 | |
Alberto Garcia | 76f4afb | 2015-06-08 18:17:44 +0200 | [diff] [blame] | 2747 | if (throttle_enabled(&cfg)) { |
| 2748 | /* Enable I/O limits if they're not enabled yet, otherwise |
| 2749 | * just update the throttling group. */ |
Kevin Wolf | 9714807 | 2016-03-21 13:53:52 +0100 | [diff] [blame] | 2750 | if (!blk_get_public(blk)->throttle_state) { |
| 2751 | blk_io_limits_enable(blk, has_group ? group : device); |
Alberto Garcia | 76f4afb | 2015-06-08 18:17:44 +0200 | [diff] [blame] | 2752 | } else if (has_group) { |
Kevin Wolf | 9714807 | 2016-03-21 13:53:52 +0100 | [diff] [blame] | 2753 | blk_io_limits_update_group(blk, group); |
Alberto Garcia | 76f4afb | 2015-06-08 18:17:44 +0200 | [diff] [blame] | 2754 | } |
| 2755 | /* Set the new throttling configuration */ |
Kevin Wolf | 9714807 | 2016-03-21 13:53:52 +0100 | [diff] [blame] | 2756 | blk_set_io_limits(blk, &cfg); |
| 2757 | } else if (blk_get_public(blk)->throttle_state) { |
Alberto Garcia | 76f4afb | 2015-06-08 18:17:44 +0200 | [diff] [blame] | 2758 | /* If all throttling settings are set to 0, disable I/O limits */ |
Kevin Wolf | 9714807 | 2016-03-21 13:53:52 +0100 | [diff] [blame] | 2759 | blk_io_limits_disable(blk); |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 2760 | } |
Stefan Hajnoczi | b15446f | 2014-05-14 16:22:47 +0200 | [diff] [blame] | 2761 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 2762 | out: |
Stefan Hajnoczi | b15446f | 2014-05-14 16:22:47 +0200 | [diff] [blame] | 2763 | aio_context_release(aio_context); |
Zhi Yong Wu | 727f005 | 2011-11-08 13:00:31 +0800 | [diff] [blame] | 2764 | } |
| 2765 | |
John Snow | 341ebc2 | 2015-04-17 19:49:52 -0400 | [diff] [blame] | 2766 | void qmp_block_dirty_bitmap_add(const char *node, const char *name, |
| 2767 | bool has_granularity, uint32_t granularity, |
| 2768 | Error **errp) |
| 2769 | { |
| 2770 | AioContext *aio_context; |
| 2771 | BlockDriverState *bs; |
| 2772 | |
| 2773 | if (!name || name[0] == '\0') { |
| 2774 | error_setg(errp, "Bitmap name cannot be empty"); |
| 2775 | return; |
| 2776 | } |
| 2777 | |
| 2778 | bs = bdrv_lookup_bs(node, node, errp); |
| 2779 | if (!bs) { |
| 2780 | return; |
| 2781 | } |
| 2782 | |
| 2783 | aio_context = bdrv_get_aio_context(bs); |
| 2784 | aio_context_acquire(aio_context); |
| 2785 | |
| 2786 | if (has_granularity) { |
| 2787 | if (granularity < 512 || !is_power_of_2(granularity)) { |
| 2788 | error_setg(errp, "Granularity must be power of 2 " |
| 2789 | "and at least 512"); |
| 2790 | goto out; |
| 2791 | } |
| 2792 | } else { |
| 2793 | /* Default to cluster size, if available: */ |
| 2794 | granularity = bdrv_get_default_bitmap_granularity(bs); |
| 2795 | } |
| 2796 | |
| 2797 | bdrv_create_dirty_bitmap(bs, granularity, name, errp); |
| 2798 | |
| 2799 | out: |
| 2800 | aio_context_release(aio_context); |
| 2801 | } |
| 2802 | |
| 2803 | void qmp_block_dirty_bitmap_remove(const char *node, const char *name, |
| 2804 | Error **errp) |
| 2805 | { |
| 2806 | AioContext *aio_context; |
| 2807 | BlockDriverState *bs; |
| 2808 | BdrvDirtyBitmap *bitmap; |
| 2809 | |
| 2810 | bitmap = block_dirty_bitmap_lookup(node, name, &bs, &aio_context, errp); |
| 2811 | if (!bitmap || !bs) { |
| 2812 | return; |
| 2813 | } |
| 2814 | |
John Snow | 9bd2b08 | 2015-04-17 19:49:57 -0400 | [diff] [blame] | 2815 | if (bdrv_dirty_bitmap_frozen(bitmap)) { |
| 2816 | error_setg(errp, |
| 2817 | "Bitmap '%s' is currently frozen and cannot be removed", |
| 2818 | name); |
| 2819 | goto out; |
| 2820 | } |
John Snow | 20dca81 | 2015-04-17 19:50:02 -0400 | [diff] [blame] | 2821 | bdrv_dirty_bitmap_make_anon(bitmap); |
John Snow | 341ebc2 | 2015-04-17 19:49:52 -0400 | [diff] [blame] | 2822 | bdrv_release_dirty_bitmap(bs, bitmap); |
| 2823 | |
John Snow | 9bd2b08 | 2015-04-17 19:49:57 -0400 | [diff] [blame] | 2824 | out: |
John Snow | 341ebc2 | 2015-04-17 19:49:52 -0400 | [diff] [blame] | 2825 | aio_context_release(aio_context); |
| 2826 | } |
| 2827 | |
John Snow | e74e6b7 | 2015-04-17 19:49:59 -0400 | [diff] [blame] | 2828 | /** |
| 2829 | * Completely clear a bitmap, for the purposes of synchronizing a bitmap |
| 2830 | * immediately after a full backup operation. |
| 2831 | */ |
| 2832 | void qmp_block_dirty_bitmap_clear(const char *node, const char *name, |
| 2833 | Error **errp) |
| 2834 | { |
| 2835 | AioContext *aio_context; |
| 2836 | BdrvDirtyBitmap *bitmap; |
| 2837 | BlockDriverState *bs; |
| 2838 | |
| 2839 | bitmap = block_dirty_bitmap_lookup(node, name, &bs, &aio_context, errp); |
| 2840 | if (!bitmap || !bs) { |
| 2841 | return; |
| 2842 | } |
| 2843 | |
| 2844 | if (bdrv_dirty_bitmap_frozen(bitmap)) { |
| 2845 | error_setg(errp, |
| 2846 | "Bitmap '%s' is currently frozen and cannot be modified", |
| 2847 | name); |
| 2848 | goto out; |
| 2849 | } else if (!bdrv_dirty_bitmap_enabled(bitmap)) { |
| 2850 | error_setg(errp, |
| 2851 | "Bitmap '%s' is currently disabled and cannot be cleared", |
| 2852 | name); |
| 2853 | goto out; |
| 2854 | } |
| 2855 | |
Fam Zheng | df9a681 | 2015-11-09 18:16:54 +0800 | [diff] [blame] | 2856 | bdrv_clear_dirty_bitmap(bitmap, NULL); |
John Snow | e74e6b7 | 2015-04-17 19:49:59 -0400 | [diff] [blame] | 2857 | |
| 2858 | out: |
| 2859 | aio_context_release(aio_context); |
| 2860 | } |
| 2861 | |
Markus Armbruster | 072ebe6 | 2015-03-05 17:00:56 +0100 | [diff] [blame] | 2862 | void hmp_drive_del(Monitor *mon, const QDict *qdict) |
Ryan Harper | 9063f81 | 2010-11-12 11:07:13 -0600 | [diff] [blame] | 2863 | { |
| 2864 | const char *id = qdict_get_str(qdict, "id"); |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 2865 | BlockBackend *blk; |
Ryan Harper | 9063f81 | 2010-11-12 11:07:13 -0600 | [diff] [blame] | 2866 | BlockDriverState *bs; |
Stefan Hajnoczi | 8ad4202 | 2014-08-18 16:07:12 +0100 | [diff] [blame] | 2867 | AioContext *aio_context; |
Fam Zheng | 3718d8a | 2014-05-23 21:29:43 +0800 | [diff] [blame] | 2868 | Error *local_err = NULL; |
Ryan Harper | 9063f81 | 2010-11-12 11:07:13 -0600 | [diff] [blame] | 2869 | |
Kevin Wolf | 2073d41 | 2016-02-23 17:50:37 +0100 | [diff] [blame] | 2870 | bs = bdrv_find_node(id); |
| 2871 | if (bs) { |
| 2872 | qmp_x_blockdev_del(false, NULL, true, id, &local_err); |
| 2873 | if (local_err) { |
| 2874 | error_report_err(local_err); |
| 2875 | } |
| 2876 | return; |
| 2877 | } |
| 2878 | |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 2879 | blk = blk_by_name(id); |
| 2880 | if (!blk) { |
Markus Armbruster | b1422f2 | 2014-05-16 11:00:09 +0200 | [diff] [blame] | 2881 | error_report("Device '%s' not found", id); |
Markus Armbruster | 072ebe6 | 2015-03-05 17:00:56 +0100 | [diff] [blame] | 2882 | return; |
Ryan Harper | 9063f81 | 2010-11-12 11:07:13 -0600 | [diff] [blame] | 2883 | } |
Stefan Hajnoczi | 8ad4202 | 2014-08-18 16:07:12 +0100 | [diff] [blame] | 2884 | |
Markus Armbruster | 26f8b3a | 2014-10-07 13:59:22 +0200 | [diff] [blame] | 2885 | if (!blk_legacy_dinfo(blk)) { |
Markus Armbruster | 48f364d | 2014-09-11 16:45:39 +0200 | [diff] [blame] | 2886 | error_report("Deleting device added with blockdev-add" |
| 2887 | " is not supported"); |
Markus Armbruster | 072ebe6 | 2015-03-05 17:00:56 +0100 | [diff] [blame] | 2888 | return; |
Markus Armbruster | 48f364d | 2014-09-11 16:45:39 +0200 | [diff] [blame] | 2889 | } |
| 2890 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 2891 | aio_context = blk_get_aio_context(blk); |
Stefan Hajnoczi | 8ad4202 | 2014-08-18 16:07:12 +0100 | [diff] [blame] | 2892 | aio_context_acquire(aio_context); |
| 2893 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 2894 | bs = blk_bs(blk); |
| 2895 | if (bs) { |
| 2896 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_DRIVE_DEL, &local_err)) { |
| 2897 | error_report_err(local_err); |
| 2898 | aio_context_release(aio_context); |
| 2899 | return; |
| 2900 | } |
Ryan Harper | 9063f81 | 2010-11-12 11:07:13 -0600 | [diff] [blame] | 2901 | |
Max Reitz | 938abd4 | 2016-01-29 16:36:09 +0100 | [diff] [blame] | 2902 | blk_remove_bs(blk); |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 2903 | } |
Ryan Harper | 9063f81 | 2010-11-12 11:07:13 -0600 | [diff] [blame] | 2904 | |
Max Reitz | 7c73587 | 2016-03-16 19:54:39 +0100 | [diff] [blame] | 2905 | /* Make the BlockBackend and the attached BlockDriverState anonymous */ |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 2906 | monitor_remove_blk(blk); |
| 2907 | |
Max Reitz | 7c73587 | 2016-03-16 19:54:39 +0100 | [diff] [blame] | 2908 | /* If this BlockBackend has a device attached to it, its refcount will be |
| 2909 | * decremented when the device is removed; otherwise we have to do so here. |
Ryan Harper | d22b2f4 | 2011-03-29 20:51:47 -0500 | [diff] [blame] | 2910 | */ |
Markus Armbruster | a7f53e2 | 2014-10-07 13:59:25 +0200 | [diff] [blame] | 2911 | if (blk_get_attached_dev(blk)) { |
Stefan Hajnoczi | 293c51a | 2013-06-05 10:33:14 +0200 | [diff] [blame] | 2912 | /* Further I/O must not pause the guest */ |
Max Reitz | 373340b | 2015-10-19 17:53:22 +0200 | [diff] [blame] | 2913 | blk_set_on_error(blk, BLOCKDEV_ON_ERROR_REPORT, |
| 2914 | BLOCKDEV_ON_ERROR_REPORT); |
Ryan Harper | d22b2f4 | 2011-03-29 20:51:47 -0500 | [diff] [blame] | 2915 | } else { |
Markus Armbruster | b9fe8a7 | 2014-10-07 13:59:09 +0200 | [diff] [blame] | 2916 | blk_unref(blk); |
Ryan Harper | 9063f81 | 2010-11-12 11:07:13 -0600 | [diff] [blame] | 2917 | } |
| 2918 | |
Stefan Hajnoczi | 8ad4202 | 2014-08-18 16:07:12 +0100 | [diff] [blame] | 2919 | aio_context_release(aio_context); |
Ryan Harper | 9063f81 | 2010-11-12 11:07:13 -0600 | [diff] [blame] | 2920 | } |
Christoph Hellwig | 6d4a2b3 | 2011-01-24 13:32:33 +0100 | [diff] [blame] | 2921 | |
Benoît Canet | 3b1dbd1 | 2014-01-23 21:31:37 +0100 | [diff] [blame] | 2922 | void qmp_block_resize(bool has_device, const char *device, |
| 2923 | bool has_node_name, const char *node_name, |
| 2924 | int64_t size, Error **errp) |
Christoph Hellwig | 6d4a2b3 | 2011-01-24 13:32:33 +0100 | [diff] [blame] | 2925 | { |
Benoît Canet | 3b1dbd1 | 2014-01-23 21:31:37 +0100 | [diff] [blame] | 2926 | Error *local_err = NULL; |
Christoph Hellwig | 6d4a2b3 | 2011-01-24 13:32:33 +0100 | [diff] [blame] | 2927 | BlockDriverState *bs; |
Stefan Hajnoczi | 927e0e7 | 2014-08-18 14:52:28 +0100 | [diff] [blame] | 2928 | AioContext *aio_context; |
Kevin Wolf | 8732901 | 2013-05-02 15:32:55 +0200 | [diff] [blame] | 2929 | int ret; |
Christoph Hellwig | 6d4a2b3 | 2011-01-24 13:32:33 +0100 | [diff] [blame] | 2930 | |
Benoît Canet | 3b1dbd1 | 2014-01-23 21:31:37 +0100 | [diff] [blame] | 2931 | bs = bdrv_lookup_bs(has_device ? device : NULL, |
| 2932 | has_node_name ? node_name : NULL, |
| 2933 | &local_err); |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 2934 | if (local_err) { |
Benoît Canet | 3b1dbd1 | 2014-01-23 21:31:37 +0100 | [diff] [blame] | 2935 | error_propagate(errp, local_err); |
| 2936 | return; |
| 2937 | } |
| 2938 | |
Stefan Hajnoczi | 927e0e7 | 2014-08-18 14:52:28 +0100 | [diff] [blame] | 2939 | aio_context = bdrv_get_aio_context(bs); |
| 2940 | aio_context_acquire(aio_context); |
| 2941 | |
Benoît Canet | 3b1dbd1 | 2014-01-23 21:31:37 +0100 | [diff] [blame] | 2942 | if (!bdrv_is_first_non_filter(bs)) { |
Markus Armbruster | c6bd8c7 | 2015-03-17 11:54:50 +0100 | [diff] [blame] | 2943 | error_setg(errp, QERR_FEATURE_DISABLED, "resize"); |
Stefan Hajnoczi | 927e0e7 | 2014-08-18 14:52:28 +0100 | [diff] [blame] | 2944 | goto out; |
Christoph Hellwig | 6d4a2b3 | 2011-01-24 13:32:33 +0100 | [diff] [blame] | 2945 | } |
| 2946 | |
| 2947 | if (size < 0) { |
Markus Armbruster | c6bd8c7 | 2015-03-17 11:54:50 +0100 | [diff] [blame] | 2948 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "size", "a >0 size"); |
Stefan Hajnoczi | 927e0e7 | 2014-08-18 14:52:28 +0100 | [diff] [blame] | 2949 | goto out; |
Christoph Hellwig | 6d4a2b3 | 2011-01-24 13:32:33 +0100 | [diff] [blame] | 2950 | } |
| 2951 | |
Jeff Cody | 9c75e16 | 2014-06-25 16:55:30 -0400 | [diff] [blame] | 2952 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_RESIZE, NULL)) { |
Markus Armbruster | c6bd8c7 | 2015-03-17 11:54:50 +0100 | [diff] [blame] | 2953 | error_setg(errp, QERR_DEVICE_IN_USE, device); |
Stefan Hajnoczi | 927e0e7 | 2014-08-18 14:52:28 +0100 | [diff] [blame] | 2954 | goto out; |
Jeff Cody | 9c75e16 | 2014-06-25 16:55:30 -0400 | [diff] [blame] | 2955 | } |
| 2956 | |
Peter Lieven | 92b7a08 | 2013-03-11 11:04:24 +0100 | [diff] [blame] | 2957 | /* complete all in-flight operations before resizing the device */ |
| 2958 | bdrv_drain_all(); |
| 2959 | |
Kevin Wolf | 8732901 | 2013-05-02 15:32:55 +0200 | [diff] [blame] | 2960 | ret = bdrv_truncate(bs, size); |
| 2961 | switch (ret) { |
Stefan Hajnoczi | 939a1cc | 2012-01-04 22:23:34 +0000 | [diff] [blame] | 2962 | case 0: |
| 2963 | break; |
| 2964 | case -ENOMEDIUM: |
Markus Armbruster | c6bd8c7 | 2015-03-17 11:54:50 +0100 | [diff] [blame] | 2965 | error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); |
Stefan Hajnoczi | 939a1cc | 2012-01-04 22:23:34 +0000 | [diff] [blame] | 2966 | break; |
| 2967 | case -ENOTSUP: |
Markus Armbruster | c6bd8c7 | 2015-03-17 11:54:50 +0100 | [diff] [blame] | 2968 | error_setg(errp, QERR_UNSUPPORTED); |
Stefan Hajnoczi | 939a1cc | 2012-01-04 22:23:34 +0000 | [diff] [blame] | 2969 | break; |
| 2970 | case -EACCES: |
Alberto Garcia | 81e5f78 | 2015-04-08 12:29:19 +0300 | [diff] [blame] | 2971 | error_setg(errp, "Device '%s' is read only", device); |
Stefan Hajnoczi | 939a1cc | 2012-01-04 22:23:34 +0000 | [diff] [blame] | 2972 | break; |
| 2973 | case -EBUSY: |
Markus Armbruster | c6bd8c7 | 2015-03-17 11:54:50 +0100 | [diff] [blame] | 2974 | error_setg(errp, QERR_DEVICE_IN_USE, device); |
Stefan Hajnoczi | 939a1cc | 2012-01-04 22:23:34 +0000 | [diff] [blame] | 2975 | break; |
| 2976 | default: |
Kevin Wolf | 8732901 | 2013-05-02 15:32:55 +0200 | [diff] [blame] | 2977 | error_setg_errno(errp, -ret, "Could not resize"); |
Stefan Hajnoczi | 939a1cc | 2012-01-04 22:23:34 +0000 | [diff] [blame] | 2978 | break; |
Christoph Hellwig | 6d4a2b3 | 2011-01-24 13:32:33 +0100 | [diff] [blame] | 2979 | } |
Stefan Hajnoczi | 927e0e7 | 2014-08-18 14:52:28 +0100 | [diff] [blame] | 2980 | |
| 2981 | out: |
| 2982 | aio_context_release(aio_context); |
Christoph Hellwig | 6d4a2b3 | 2011-01-24 13:32:33 +0100 | [diff] [blame] | 2983 | } |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 2984 | |
Jeff Cody | 9abf2db | 2012-09-27 13:29:14 -0400 | [diff] [blame] | 2985 | static void block_job_cb(void *opaque, int ret) |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 2986 | { |
Stefan Hajnoczi | 723c5d9 | 2014-10-21 12:03:53 +0100 | [diff] [blame] | 2987 | /* Note that this function may be executed from another AioContext besides |
| 2988 | * the QEMU main loop. If you need to access anything that assumes the |
| 2989 | * QEMU global mutex, use a BH or introduce a mutex. |
| 2990 | */ |
| 2991 | |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 2992 | BlockDriverState *bs = opaque; |
Wenchao Xia | bcada37b | 2014-06-18 08:43:47 +0200 | [diff] [blame] | 2993 | const char *msg = NULL; |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 2994 | |
Jeff Cody | 9abf2db | 2012-09-27 13:29:14 -0400 | [diff] [blame] | 2995 | trace_block_job_cb(bs, bs->job, ret); |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 2996 | |
| 2997 | assert(bs->job); |
Wenchao Xia | bcada37b | 2014-06-18 08:43:47 +0200 | [diff] [blame] | 2998 | |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 2999 | if (ret < 0) { |
Wenchao Xia | bcada37b | 2014-06-18 08:43:47 +0200 | [diff] [blame] | 3000 | msg = strerror(-ret); |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 3001 | } |
| 3002 | |
Stefan Hajnoczi | 370521a | 2012-01-18 14:40:48 +0000 | [diff] [blame] | 3003 | if (block_job_is_cancelled(bs->job)) { |
Wenchao Xia | bcada37b | 2014-06-18 08:43:47 +0200 | [diff] [blame] | 3004 | block_job_event_cancelled(bs->job); |
Stefan Hajnoczi | 370521a | 2012-01-18 14:40:48 +0000 | [diff] [blame] | 3005 | } else { |
Wenchao Xia | bcada37b | 2014-06-18 08:43:47 +0200 | [diff] [blame] | 3006 | block_job_event_completed(bs->job, msg); |
Stefan Hajnoczi | 370521a | 2012-01-18 14:40:48 +0000 | [diff] [blame] | 3007 | } |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 3008 | } |
| 3009 | |
Alberto Garcia | 2323322 | 2016-07-05 17:28:59 +0300 | [diff] [blame] | 3010 | void qmp_block_stream(bool has_job_id, const char *job_id, const char *device, |
Jeff Cody | 13d8cc5 | 2014-06-25 15:40:11 -0400 | [diff] [blame] | 3011 | bool has_base, const char *base, |
| 3012 | bool has_backing_file, const char *backing_file, |
| 3013 | bool has_speed, int64_t speed, |
Paolo Bonzini | 1d80909 | 2012-09-28 17:22:59 +0200 | [diff] [blame] | 3014 | bool has_on_error, BlockdevOnError on_error, |
| 3015 | Error **errp) |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 3016 | { |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 3017 | BlockBackend *blk; |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 3018 | BlockDriverState *bs; |
Marcelo Tosatti | c8c3080 | 2012-01-18 14:40:53 +0000 | [diff] [blame] | 3019 | BlockDriverState *base_bs = NULL; |
Stefan Hajnoczi | f3e69be | 2014-10-21 12:03:57 +0100 | [diff] [blame] | 3020 | AioContext *aio_context; |
Stefan Hajnoczi | fd7f8c6 | 2012-04-25 16:51:00 +0100 | [diff] [blame] | 3021 | Error *local_err = NULL; |
Jeff Cody | 13d8cc5 | 2014-06-25 15:40:11 -0400 | [diff] [blame] | 3022 | const char *base_name = NULL; |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 3023 | |
Paolo Bonzini | 1d80909 | 2012-09-28 17:22:59 +0200 | [diff] [blame] | 3024 | if (!has_on_error) { |
| 3025 | on_error = BLOCKDEV_ON_ERROR_REPORT; |
| 3026 | } |
| 3027 | |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 3028 | blk = blk_by_name(device); |
| 3029 | if (!blk) { |
Markus Armbruster | 75158eb | 2015-03-16 08:57:47 +0100 | [diff] [blame] | 3030 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
| 3031 | "Device '%s' not found", device); |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 3032 | return; |
| 3033 | } |
| 3034 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 3035 | aio_context = blk_get_aio_context(blk); |
Stefan Hajnoczi | f3e69be | 2014-10-21 12:03:57 +0100 | [diff] [blame] | 3036 | aio_context_acquire(aio_context); |
| 3037 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 3038 | if (!blk_is_available(blk)) { |
| 3039 | error_setg(errp, "Device '%s' has no medium", device); |
| 3040 | goto out; |
| 3041 | } |
| 3042 | bs = blk_bs(blk); |
| 3043 | |
Fam Zheng | 628ff68 | 2014-05-23 21:29:44 +0800 | [diff] [blame] | 3044 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_STREAM, errp)) { |
Stefan Hajnoczi | f3e69be | 2014-10-21 12:03:57 +0100 | [diff] [blame] | 3045 | goto out; |
Fam Zheng | 628ff68 | 2014-05-23 21:29:44 +0800 | [diff] [blame] | 3046 | } |
| 3047 | |
Jeff Cody | 13d8cc5 | 2014-06-25 15:40:11 -0400 | [diff] [blame] | 3048 | if (has_base) { |
Marcelo Tosatti | c8c3080 | 2012-01-18 14:40:53 +0000 | [diff] [blame] | 3049 | base_bs = bdrv_find_backing_image(bs, base); |
| 3050 | if (base_bs == NULL) { |
Markus Armbruster | c6bd8c7 | 2015-03-17 11:54:50 +0100 | [diff] [blame] | 3051 | error_setg(errp, QERR_BASE_NOT_FOUND, base); |
Stefan Hajnoczi | f3e69be | 2014-10-21 12:03:57 +0100 | [diff] [blame] | 3052 | goto out; |
Marcelo Tosatti | c8c3080 | 2012-01-18 14:40:53 +0000 | [diff] [blame] | 3053 | } |
Stefan Hajnoczi | f3e69be | 2014-10-21 12:03:57 +0100 | [diff] [blame] | 3054 | assert(bdrv_get_aio_context(base_bs) == aio_context); |
Jeff Cody | 13d8cc5 | 2014-06-25 15:40:11 -0400 | [diff] [blame] | 3055 | base_name = base; |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 3056 | } |
| 3057 | |
Jeff Cody | 13d8cc5 | 2014-06-25 15:40:11 -0400 | [diff] [blame] | 3058 | /* if we are streaming the entire chain, the result will have no backing |
| 3059 | * file, and specifying one is therefore an error */ |
| 3060 | if (base_bs == NULL && has_backing_file) { |
| 3061 | error_setg(errp, "backing file specified, but streaming the " |
| 3062 | "entire chain"); |
Stefan Hajnoczi | f3e69be | 2014-10-21 12:03:57 +0100 | [diff] [blame] | 3063 | goto out; |
Jeff Cody | 13d8cc5 | 2014-06-25 15:40:11 -0400 | [diff] [blame] | 3064 | } |
| 3065 | |
| 3066 | /* backing_file string overrides base bs filename */ |
| 3067 | base_name = has_backing_file ? backing_file : base_name; |
| 3068 | |
Alberto Garcia | 2323322 | 2016-07-05 17:28:59 +0300 | [diff] [blame] | 3069 | stream_start(has_job_id ? job_id : NULL, bs, base_bs, base_name, |
| 3070 | has_speed ? speed : 0, on_error, block_job_cb, bs, &local_err); |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 3071 | if (local_err) { |
Stefan Hajnoczi | fd7f8c6 | 2012-04-25 16:51:00 +0100 | [diff] [blame] | 3072 | error_propagate(errp, local_err); |
Stefan Hajnoczi | f3e69be | 2014-10-21 12:03:57 +0100 | [diff] [blame] | 3073 | goto out; |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 3074 | } |
| 3075 | |
| 3076 | trace_qmp_block_stream(bs, bs->job); |
Stefan Hajnoczi | f3e69be | 2014-10-21 12:03:57 +0100 | [diff] [blame] | 3077 | |
| 3078 | out: |
| 3079 | aio_context_release(aio_context); |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 3080 | } |
Stefan Hajnoczi | 2d47c6e | 2012-01-18 14:40:47 +0000 | [diff] [blame] | 3081 | |
Alberto Garcia | fd62c60 | 2016-07-05 17:29:00 +0300 | [diff] [blame] | 3082 | void qmp_block_commit(bool has_job_id, const char *job_id, const char *device, |
Jeff Cody | 7676e2c | 2014-06-30 15:14:15 +0200 | [diff] [blame] | 3083 | bool has_base, const char *base, |
| 3084 | bool has_top, const char *top, |
Jeff Cody | 54e2690 | 2014-06-25 15:40:10 -0400 | [diff] [blame] | 3085 | bool has_backing_file, const char *backing_file, |
Jeff Cody | ed61fc1 | 2012-09-27 13:29:16 -0400 | [diff] [blame] | 3086 | bool has_speed, int64_t speed, |
| 3087 | Error **errp) |
| 3088 | { |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 3089 | BlockBackend *blk; |
Jeff Cody | ed61fc1 | 2012-09-27 13:29:16 -0400 | [diff] [blame] | 3090 | BlockDriverState *bs; |
| 3091 | BlockDriverState *base_bs, *top_bs; |
Stefan Hajnoczi | 9e85cd5 | 2014-10-21 12:03:59 +0100 | [diff] [blame] | 3092 | AioContext *aio_context; |
Jeff Cody | ed61fc1 | 2012-09-27 13:29:16 -0400 | [diff] [blame] | 3093 | Error *local_err = NULL; |
| 3094 | /* This will be part of the QMP command, if/when the |
| 3095 | * BlockdevOnError change for blkmirror makes it in |
| 3096 | */ |
Paolo Bonzini | 92aa5c6 | 2012-09-28 17:22:55 +0200 | [diff] [blame] | 3097 | BlockdevOnError on_error = BLOCKDEV_ON_ERROR_REPORT; |
Jeff Cody | ed61fc1 | 2012-09-27 13:29:16 -0400 | [diff] [blame] | 3098 | |
Max Reitz | 5450466 | 2014-04-10 19:36:25 +0200 | [diff] [blame] | 3099 | if (!has_speed) { |
| 3100 | speed = 0; |
| 3101 | } |
| 3102 | |
Jeff Cody | 7676e2c | 2014-06-30 15:14:15 +0200 | [diff] [blame] | 3103 | /* Important Note: |
| 3104 | * libvirt relies on the DeviceNotFound error class in order to probe for |
| 3105 | * live commit feature versions; for this to work, we must make sure to |
| 3106 | * perform the device lookup before any generic errors that may occur in a |
| 3107 | * scenario in which all optional arguments are omitted. */ |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 3108 | blk = blk_by_name(device); |
| 3109 | if (!blk) { |
Markus Armbruster | 75158eb | 2015-03-16 08:57:47 +0100 | [diff] [blame] | 3110 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
| 3111 | "Device '%s' not found", device); |
Jeff Cody | ed61fc1 | 2012-09-27 13:29:16 -0400 | [diff] [blame] | 3112 | return; |
| 3113 | } |
Jeff Cody | ed61fc1 | 2012-09-27 13:29:16 -0400 | [diff] [blame] | 3114 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 3115 | aio_context = blk_get_aio_context(blk); |
Stefan Hajnoczi | 9e85cd5 | 2014-10-21 12:03:59 +0100 | [diff] [blame] | 3116 | aio_context_acquire(aio_context); |
| 3117 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 3118 | if (!blk_is_available(blk)) { |
| 3119 | error_setg(errp, "Device '%s' has no medium", device); |
| 3120 | goto out; |
| 3121 | } |
| 3122 | bs = blk_bs(blk); |
| 3123 | |
Fam Zheng | bb00021 | 2014-09-11 13:14:00 +0800 | [diff] [blame] | 3124 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_COMMIT_SOURCE, errp)) { |
Stefan Hajnoczi | 9e85cd5 | 2014-10-21 12:03:59 +0100 | [diff] [blame] | 3125 | goto out; |
Fam Zheng | 628ff68 | 2014-05-23 21:29:44 +0800 | [diff] [blame] | 3126 | } |
| 3127 | |
Jeff Cody | ed61fc1 | 2012-09-27 13:29:16 -0400 | [diff] [blame] | 3128 | /* default top_bs is the active layer */ |
| 3129 | top_bs = bs; |
| 3130 | |
Jeff Cody | 7676e2c | 2014-06-30 15:14:15 +0200 | [diff] [blame] | 3131 | if (has_top && top) { |
Jeff Cody | ed61fc1 | 2012-09-27 13:29:16 -0400 | [diff] [blame] | 3132 | if (strcmp(bs->filename, top) != 0) { |
| 3133 | top_bs = bdrv_find_backing_image(bs, top); |
| 3134 | } |
| 3135 | } |
| 3136 | |
| 3137 | if (top_bs == NULL) { |
| 3138 | error_setg(errp, "Top image file %s not found", top ? top : "NULL"); |
Stefan Hajnoczi | 9e85cd5 | 2014-10-21 12:03:59 +0100 | [diff] [blame] | 3139 | goto out; |
Jeff Cody | ed61fc1 | 2012-09-27 13:29:16 -0400 | [diff] [blame] | 3140 | } |
| 3141 | |
Stefan Hajnoczi | 9e85cd5 | 2014-10-21 12:03:59 +0100 | [diff] [blame] | 3142 | assert(bdrv_get_aio_context(top_bs) == aio_context); |
| 3143 | |
Jeff Cody | d5208c4 | 2012-10-16 15:49:10 -0400 | [diff] [blame] | 3144 | if (has_base && base) { |
| 3145 | base_bs = bdrv_find_backing_image(top_bs, base); |
| 3146 | } else { |
| 3147 | base_bs = bdrv_find_base(top_bs); |
| 3148 | } |
| 3149 | |
| 3150 | if (base_bs == NULL) { |
Markus Armbruster | c6bd8c7 | 2015-03-17 11:54:50 +0100 | [diff] [blame] | 3151 | error_setg(errp, QERR_BASE_NOT_FOUND, base ? base : "NULL"); |
Stefan Hajnoczi | 9e85cd5 | 2014-10-21 12:03:59 +0100 | [diff] [blame] | 3152 | goto out; |
Jeff Cody | d5208c4 | 2012-10-16 15:49:10 -0400 | [diff] [blame] | 3153 | } |
| 3154 | |
Stefan Hajnoczi | 9e85cd5 | 2014-10-21 12:03:59 +0100 | [diff] [blame] | 3155 | assert(bdrv_get_aio_context(base_bs) == aio_context); |
| 3156 | |
Fam Zheng | bb00021 | 2014-09-11 13:14:00 +0800 | [diff] [blame] | 3157 | if (bdrv_op_is_blocked(base_bs, BLOCK_OP_TYPE_COMMIT_TARGET, errp)) { |
| 3158 | goto out; |
| 3159 | } |
| 3160 | |
Jeff Cody | 7676e2c | 2014-06-30 15:14:15 +0200 | [diff] [blame] | 3161 | /* Do not allow attempts to commit an image into itself */ |
| 3162 | if (top_bs == base_bs) { |
| 3163 | error_setg(errp, "cannot commit an image into itself"); |
Stefan Hajnoczi | 9e85cd5 | 2014-10-21 12:03:59 +0100 | [diff] [blame] | 3164 | goto out; |
Jeff Cody | 7676e2c | 2014-06-30 15:14:15 +0200 | [diff] [blame] | 3165 | } |
| 3166 | |
Fam Zheng | 20a63d2 | 2013-12-16 14:45:31 +0800 | [diff] [blame] | 3167 | if (top_bs == bs) { |
Jeff Cody | 54e2690 | 2014-06-25 15:40:10 -0400 | [diff] [blame] | 3168 | if (has_backing_file) { |
| 3169 | error_setg(errp, "'backing-file' specified," |
| 3170 | " but 'top' is the active layer"); |
Stefan Hajnoczi | 9e85cd5 | 2014-10-21 12:03:59 +0100 | [diff] [blame] | 3171 | goto out; |
Jeff Cody | 54e2690 | 2014-06-25 15:40:10 -0400 | [diff] [blame] | 3172 | } |
Alberto Garcia | fd62c60 | 2016-07-05 17:29:00 +0300 | [diff] [blame] | 3173 | commit_active_start(has_job_id ? job_id : NULL, bs, base_bs, speed, |
| 3174 | on_error, block_job_cb, bs, &local_err); |
Fam Zheng | 20a63d2 | 2013-12-16 14:45:31 +0800 | [diff] [blame] | 3175 | } else { |
Alberto Garcia | fd62c60 | 2016-07-05 17:29:00 +0300 | [diff] [blame] | 3176 | commit_start(has_job_id ? job_id : NULL, bs, base_bs, top_bs, speed, |
| 3177 | on_error, block_job_cb, bs, |
Jeff Cody | 54e2690 | 2014-06-25 15:40:10 -0400 | [diff] [blame] | 3178 | has_backing_file ? backing_file : NULL, &local_err); |
Fam Zheng | 20a63d2 | 2013-12-16 14:45:31 +0800 | [diff] [blame] | 3179 | } |
Jeff Cody | ed61fc1 | 2012-09-27 13:29:16 -0400 | [diff] [blame] | 3180 | if (local_err != NULL) { |
| 3181 | error_propagate(errp, local_err); |
Stefan Hajnoczi | 9e85cd5 | 2014-10-21 12:03:59 +0100 | [diff] [blame] | 3182 | goto out; |
Jeff Cody | ed61fc1 | 2012-09-27 13:29:16 -0400 | [diff] [blame] | 3183 | } |
Stefan Hajnoczi | 9e85cd5 | 2014-10-21 12:03:59 +0100 | [diff] [blame] | 3184 | |
| 3185 | out: |
| 3186 | aio_context_release(aio_context); |
Jeff Cody | ed61fc1 | 2012-09-27 13:29:16 -0400 | [diff] [blame] | 3187 | } |
| 3188 | |
Alberto Garcia | 70559d4 | 2016-07-05 17:28:58 +0300 | [diff] [blame] | 3189 | static void do_drive_backup(const char *job_id, const char *device, |
| 3190 | const char *target, bool has_format, |
| 3191 | const char *format, enum MirrorSyncMode sync, |
John Snow | 78f51fd | 2015-11-05 18:13:17 -0500 | [diff] [blame] | 3192 | bool has_mode, enum NewImageMode mode, |
| 3193 | bool has_speed, int64_t speed, |
| 3194 | bool has_bitmap, const char *bitmap, |
| 3195 | bool has_on_source_error, |
| 3196 | BlockdevOnError on_source_error, |
| 3197 | bool has_on_target_error, |
| 3198 | BlockdevOnError on_target_error, |
| 3199 | BlockJobTxn *txn, Error **errp) |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3200 | { |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 3201 | BlockBackend *blk; |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3202 | BlockDriverState *bs; |
| 3203 | BlockDriverState *target_bs; |
Ian Main | fc5d3f8 | 2013-07-26 11:39:04 -0700 | [diff] [blame] | 3204 | BlockDriverState *source = NULL; |
John Snow | d58d845 | 2015-04-17 19:49:58 -0400 | [diff] [blame] | 3205 | BdrvDirtyBitmap *bmap = NULL; |
Stefan Hajnoczi | 761731b | 2014-10-21 12:03:56 +0100 | [diff] [blame] | 3206 | AioContext *aio_context; |
Max Reitz | e664171 | 2015-08-26 19:47:48 +0200 | [diff] [blame] | 3207 | QDict *options = NULL; |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3208 | Error *local_err = NULL; |
| 3209 | int flags; |
| 3210 | int64_t size; |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3211 | |
| 3212 | if (!has_speed) { |
| 3213 | speed = 0; |
| 3214 | } |
| 3215 | if (!has_on_source_error) { |
| 3216 | on_source_error = BLOCKDEV_ON_ERROR_REPORT; |
| 3217 | } |
| 3218 | if (!has_on_target_error) { |
| 3219 | on_target_error = BLOCKDEV_ON_ERROR_REPORT; |
| 3220 | } |
| 3221 | if (!has_mode) { |
| 3222 | mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS; |
| 3223 | } |
| 3224 | |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 3225 | blk = blk_by_name(device); |
| 3226 | if (!blk) { |
Markus Armbruster | 75158eb | 2015-03-16 08:57:47 +0100 | [diff] [blame] | 3227 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
| 3228 | "Device '%s' not found", device); |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3229 | return; |
| 3230 | } |
| 3231 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 3232 | aio_context = blk_get_aio_context(blk); |
Stefan Hajnoczi | 761731b | 2014-10-21 12:03:56 +0100 | [diff] [blame] | 3233 | aio_context_acquire(aio_context); |
| 3234 | |
Fam Zheng | c29c1dd | 2014-12-18 18:37:05 +0800 | [diff] [blame] | 3235 | /* Although backup_run has this check too, we need to use bs->drv below, so |
| 3236 | * do an early check redundantly. */ |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 3237 | if (!blk_is_available(blk)) { |
Markus Armbruster | c6bd8c7 | 2015-03-17 11:54:50 +0100 | [diff] [blame] | 3238 | error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); |
Stefan Hajnoczi | 761731b | 2014-10-21 12:03:56 +0100 | [diff] [blame] | 3239 | goto out; |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3240 | } |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 3241 | bs = blk_bs(blk); |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3242 | |
| 3243 | if (!has_format) { |
| 3244 | format = mode == NEW_IMAGE_MODE_EXISTING ? NULL : bs->drv->format_name; |
| 3245 | } |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3246 | |
Fam Zheng | c29c1dd | 2014-12-18 18:37:05 +0800 | [diff] [blame] | 3247 | /* Early check to avoid creating target */ |
Fam Zheng | 3718d8a | 2014-05-23 21:29:43 +0800 | [diff] [blame] | 3248 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_BACKUP_SOURCE, errp)) { |
Stefan Hajnoczi | 761731b | 2014-10-21 12:03:56 +0100 | [diff] [blame] | 3249 | goto out; |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3250 | } |
| 3251 | |
Kevin Wolf | 61de4c6 | 2016-03-18 17:46:45 +0100 | [diff] [blame] | 3252 | flags = bs->open_flags | BDRV_O_RDWR; |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3253 | |
Ian Main | fc5d3f8 | 2013-07-26 11:39:04 -0700 | [diff] [blame] | 3254 | /* See if we have a backing HD we can use to create our new image |
| 3255 | * on top of. */ |
| 3256 | if (sync == MIRROR_SYNC_MODE_TOP) { |
Kevin Wolf | 760e006 | 2015-06-17 14:55:21 +0200 | [diff] [blame] | 3257 | source = backing_bs(bs); |
Ian Main | fc5d3f8 | 2013-07-26 11:39:04 -0700 | [diff] [blame] | 3258 | if (!source) { |
| 3259 | sync = MIRROR_SYNC_MODE_FULL; |
| 3260 | } |
| 3261 | } |
| 3262 | if (sync == MIRROR_SYNC_MODE_NONE) { |
| 3263 | source = bs; |
| 3264 | } |
| 3265 | |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3266 | size = bdrv_getlength(bs); |
| 3267 | if (size < 0) { |
| 3268 | error_setg_errno(errp, -size, "bdrv_getlength failed"); |
Stefan Hajnoczi | 761731b | 2014-10-21 12:03:56 +0100 | [diff] [blame] | 3269 | goto out; |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3270 | } |
| 3271 | |
| 3272 | if (mode != NEW_IMAGE_MODE_EXISTING) { |
Max Reitz | e664171 | 2015-08-26 19:47:48 +0200 | [diff] [blame] | 3273 | assert(format); |
Ian Main | fc5d3f8 | 2013-07-26 11:39:04 -0700 | [diff] [blame] | 3274 | if (source) { |
| 3275 | bdrv_img_create(target, format, source->filename, |
| 3276 | source->drv->format_name, NULL, |
| 3277 | size, flags, &local_err, false); |
| 3278 | } else { |
| 3279 | bdrv_img_create(target, format, NULL, NULL, NULL, |
| 3280 | size, flags, &local_err, false); |
| 3281 | } |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3282 | } |
| 3283 | |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 3284 | if (local_err) { |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3285 | error_propagate(errp, local_err); |
Stefan Hajnoczi | 761731b | 2014-10-21 12:03:56 +0100 | [diff] [blame] | 3286 | goto out; |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3287 | } |
| 3288 | |
Max Reitz | e664171 | 2015-08-26 19:47:48 +0200 | [diff] [blame] | 3289 | if (format) { |
| 3290 | options = qdict_new(); |
| 3291 | qdict_put(options, "driver", qstring_from_str(format)); |
| 3292 | } |
| 3293 | |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3294 | target_bs = bdrv_open(target, NULL, options, flags, errp); |
| 3295 | if (!target_bs) { |
Stefan Hajnoczi | 761731b | 2014-10-21 12:03:56 +0100 | [diff] [blame] | 3296 | goto out; |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3297 | } |
| 3298 | |
Stefan Hajnoczi | 761731b | 2014-10-21 12:03:56 +0100 | [diff] [blame] | 3299 | bdrv_set_aio_context(target_bs, aio_context); |
| 3300 | |
John Snow | d58d845 | 2015-04-17 19:49:58 -0400 | [diff] [blame] | 3301 | if (has_bitmap) { |
| 3302 | bmap = bdrv_find_dirty_bitmap(bs, bitmap); |
| 3303 | if (!bmap) { |
| 3304 | error_setg(errp, "Bitmap '%s' could not be found", bitmap); |
Max Reitz | 0702d3d | 2015-11-09 23:39:10 +0100 | [diff] [blame] | 3305 | bdrv_unref(target_bs); |
John Snow | d58d845 | 2015-04-17 19:49:58 -0400 | [diff] [blame] | 3306 | goto out; |
| 3307 | } |
| 3308 | } |
| 3309 | |
Alberto Garcia | 70559d4 | 2016-07-05 17:28:58 +0300 | [diff] [blame] | 3310 | backup_start(job_id, bs, target_bs, speed, sync, bmap, |
John Snow | d58d845 | 2015-04-17 19:49:58 -0400 | [diff] [blame] | 3311 | on_source_error, on_target_error, |
John Snow | 78f51fd | 2015-11-05 18:13:17 -0500 | [diff] [blame] | 3312 | block_job_cb, bs, txn, &local_err); |
Kevin Wolf | 5c438bc | 2016-04-14 13:09:53 +0200 | [diff] [blame] | 3313 | bdrv_unref(target_bs); |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3314 | if (local_err != NULL) { |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3315 | error_propagate(errp, local_err); |
Stefan Hajnoczi | 761731b | 2014-10-21 12:03:56 +0100 | [diff] [blame] | 3316 | goto out; |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3317 | } |
Stefan Hajnoczi | 761731b | 2014-10-21 12:03:56 +0100 | [diff] [blame] | 3318 | |
| 3319 | out: |
| 3320 | aio_context_release(aio_context); |
Stefan Hajnoczi | 99a9add | 2013-06-24 17:13:14 +0200 | [diff] [blame] | 3321 | } |
| 3322 | |
Alberto Garcia | 70559d4 | 2016-07-05 17:28:58 +0300 | [diff] [blame] | 3323 | void qmp_drive_backup(bool has_job_id, const char *job_id, |
| 3324 | const char *device, const char *target, |
John Snow | 78f51fd | 2015-11-05 18:13:17 -0500 | [diff] [blame] | 3325 | bool has_format, const char *format, |
| 3326 | enum MirrorSyncMode sync, |
| 3327 | bool has_mode, enum NewImageMode mode, |
| 3328 | bool has_speed, int64_t speed, |
| 3329 | bool has_bitmap, const char *bitmap, |
| 3330 | bool has_on_source_error, BlockdevOnError on_source_error, |
| 3331 | bool has_on_target_error, BlockdevOnError on_target_error, |
| 3332 | Error **errp) |
| 3333 | { |
Alberto Garcia | 70559d4 | 2016-07-05 17:28:58 +0300 | [diff] [blame] | 3334 | return do_drive_backup(has_job_id ? job_id : NULL, device, target, |
| 3335 | has_format, format, sync, |
John Snow | 78f51fd | 2015-11-05 18:13:17 -0500 | [diff] [blame] | 3336 | has_mode, mode, has_speed, speed, |
| 3337 | has_bitmap, bitmap, |
| 3338 | has_on_source_error, on_source_error, |
| 3339 | has_on_target_error, on_target_error, |
| 3340 | NULL, errp); |
| 3341 | } |
| 3342 | |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 3343 | BlockDeviceInfoList *qmp_query_named_block_nodes(Error **errp) |
| 3344 | { |
Alberto Garcia | d5a8ee6 | 2015-04-17 14:52:43 +0300 | [diff] [blame] | 3345 | return bdrv_named_nodes_list(errp); |
Benoît Canet | c13163f | 2014-01-23 21:31:34 +0100 | [diff] [blame] | 3346 | } |
| 3347 | |
Alberto Garcia | 70559d4 | 2016-07-05 17:28:58 +0300 | [diff] [blame] | 3348 | void do_blockdev_backup(const char *job_id, const char *device, |
| 3349 | const char *target, enum MirrorSyncMode sync, |
Fam Zheng | c29c1dd | 2014-12-18 18:37:05 +0800 | [diff] [blame] | 3350 | bool has_speed, int64_t speed, |
| 3351 | bool has_on_source_error, |
| 3352 | BlockdevOnError on_source_error, |
| 3353 | bool has_on_target_error, |
| 3354 | BlockdevOnError on_target_error, |
John Snow | 78f51fd | 2015-11-05 18:13:17 -0500 | [diff] [blame] | 3355 | BlockJobTxn *txn, Error **errp) |
Fam Zheng | c29c1dd | 2014-12-18 18:37:05 +0800 | [diff] [blame] | 3356 | { |
Fam Zheng | 0d97891 | 2016-05-23 10:19:35 +0800 | [diff] [blame] | 3357 | BlockBackend *blk; |
Fam Zheng | c29c1dd | 2014-12-18 18:37:05 +0800 | [diff] [blame] | 3358 | BlockDriverState *bs; |
| 3359 | BlockDriverState *target_bs; |
| 3360 | Error *local_err = NULL; |
| 3361 | AioContext *aio_context; |
| 3362 | |
| 3363 | if (!has_speed) { |
| 3364 | speed = 0; |
| 3365 | } |
| 3366 | if (!has_on_source_error) { |
| 3367 | on_source_error = BLOCKDEV_ON_ERROR_REPORT; |
| 3368 | } |
| 3369 | if (!has_on_target_error) { |
| 3370 | on_target_error = BLOCKDEV_ON_ERROR_REPORT; |
| 3371 | } |
| 3372 | |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 3373 | blk = blk_by_name(device); |
| 3374 | if (!blk) { |
Markus Armbruster | 5b347c5 | 2015-03-17 08:36:14 +0100 | [diff] [blame] | 3375 | error_setg(errp, "Device '%s' not found", device); |
Fam Zheng | c29c1dd | 2014-12-18 18:37:05 +0800 | [diff] [blame] | 3376 | return; |
| 3377 | } |
| 3378 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 3379 | aio_context = blk_get_aio_context(blk); |
Fam Zheng | c29c1dd | 2014-12-18 18:37:05 +0800 | [diff] [blame] | 3380 | aio_context_acquire(aio_context); |
| 3381 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 3382 | if (!blk_is_available(blk)) { |
| 3383 | error_setg(errp, "Device '%s' has no medium", device); |
| 3384 | goto out; |
| 3385 | } |
| 3386 | bs = blk_bs(blk); |
| 3387 | |
Fam Zheng | 0d97891 | 2016-05-23 10:19:35 +0800 | [diff] [blame] | 3388 | target_bs = bdrv_lookup_bs(target, target, errp); |
| 3389 | if (!target_bs) { |
Fam Zheng | c29c1dd | 2014-12-18 18:37:05 +0800 | [diff] [blame] | 3390 | goto out; |
| 3391 | } |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 3392 | |
Fam Zheng | efd7556 | 2016-05-23 10:19:36 +0800 | [diff] [blame] | 3393 | if (bdrv_get_aio_context(target_bs) != aio_context) { |
| 3394 | if (!bdrv_has_blk(target_bs)) { |
| 3395 | /* The target BDS is not attached, we can safely move it to another |
| 3396 | * AioContext. */ |
| 3397 | bdrv_set_aio_context(target_bs, aio_context); |
| 3398 | } else { |
| 3399 | error_setg(errp, "Target is attached to a different thread from " |
| 3400 | "source."); |
| 3401 | goto out; |
| 3402 | } |
| 3403 | } |
Alberto Garcia | 70559d4 | 2016-07-05 17:28:58 +0300 | [diff] [blame] | 3404 | backup_start(job_id, bs, target_bs, speed, sync, NULL, on_source_error, |
John Snow | 78f51fd | 2015-11-05 18:13:17 -0500 | [diff] [blame] | 3405 | on_target_error, block_job_cb, bs, txn, &local_err); |
Fam Zheng | c29c1dd | 2014-12-18 18:37:05 +0800 | [diff] [blame] | 3406 | if (local_err != NULL) { |
Fam Zheng | c29c1dd | 2014-12-18 18:37:05 +0800 | [diff] [blame] | 3407 | error_propagate(errp, local_err); |
| 3408 | } |
| 3409 | out: |
| 3410 | aio_context_release(aio_context); |
| 3411 | } |
| 3412 | |
Alberto Garcia | 70559d4 | 2016-07-05 17:28:58 +0300 | [diff] [blame] | 3413 | void qmp_blockdev_backup(bool has_job_id, const char *job_id, |
| 3414 | const char *device, const char *target, |
John Snow | 78f51fd | 2015-11-05 18:13:17 -0500 | [diff] [blame] | 3415 | enum MirrorSyncMode sync, |
| 3416 | bool has_speed, int64_t speed, |
| 3417 | bool has_on_source_error, |
| 3418 | BlockdevOnError on_source_error, |
| 3419 | bool has_on_target_error, |
| 3420 | BlockdevOnError on_target_error, |
| 3421 | Error **errp) |
| 3422 | { |
Alberto Garcia | 70559d4 | 2016-07-05 17:28:58 +0300 | [diff] [blame] | 3423 | do_blockdev_backup(has_job_id ? job_id : NULL, device, target, |
| 3424 | sync, has_speed, speed, |
John Snow | 78f51fd | 2015-11-05 18:13:17 -0500 | [diff] [blame] | 3425 | has_on_source_error, on_source_error, |
| 3426 | has_on_target_error, on_target_error, |
| 3427 | NULL, errp); |
| 3428 | } |
| 3429 | |
Fam Zheng | 4193cdd | 2015-12-24 12:45:03 +0800 | [diff] [blame] | 3430 | /* Parameter check and block job starting for drive mirroring. |
| 3431 | * Caller should hold @device and @target's aio context (must be the same). |
| 3432 | **/ |
Alberto Garcia | 71aa986 | 2016-07-05 17:28:57 +0300 | [diff] [blame] | 3433 | static void blockdev_mirror_common(const char *job_id, BlockDriverState *bs, |
Fam Zheng | 4193cdd | 2015-12-24 12:45:03 +0800 | [diff] [blame] | 3434 | BlockDriverState *target, |
| 3435 | bool has_replaces, const char *replaces, |
| 3436 | enum MirrorSyncMode sync, |
Max Reitz | 274fcce | 2016-06-10 20:57:47 +0200 | [diff] [blame] | 3437 | BlockMirrorBackingMode backing_mode, |
Fam Zheng | 4193cdd | 2015-12-24 12:45:03 +0800 | [diff] [blame] | 3438 | bool has_speed, int64_t speed, |
| 3439 | bool has_granularity, uint32_t granularity, |
| 3440 | bool has_buf_size, int64_t buf_size, |
| 3441 | bool has_on_source_error, |
| 3442 | BlockdevOnError on_source_error, |
| 3443 | bool has_on_target_error, |
| 3444 | BlockdevOnError on_target_error, |
| 3445 | bool has_unmap, bool unmap, |
| 3446 | Error **errp) |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 3447 | { |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 3448 | |
| 3449 | if (!has_speed) { |
| 3450 | speed = 0; |
| 3451 | } |
Paolo Bonzini | b952b55 | 2012-10-18 16:49:28 +0200 | [diff] [blame] | 3452 | if (!has_on_source_error) { |
| 3453 | on_source_error = BLOCKDEV_ON_ERROR_REPORT; |
| 3454 | } |
| 3455 | if (!has_on_target_error) { |
| 3456 | on_target_error = BLOCKDEV_ON_ERROR_REPORT; |
| 3457 | } |
Paolo Bonzini | eee13df | 2013-01-21 17:09:46 +0100 | [diff] [blame] | 3458 | if (!has_granularity) { |
| 3459 | granularity = 0; |
| 3460 | } |
Paolo Bonzini | 08e4ed6 | 2013-01-22 09:03:13 +0100 | [diff] [blame] | 3461 | if (!has_buf_size) { |
Wen Congyang | 48ac0a4 | 2015-05-15 15:51:36 +0800 | [diff] [blame] | 3462 | buf_size = 0; |
Paolo Bonzini | 08e4ed6 | 2013-01-22 09:03:13 +0100 | [diff] [blame] | 3463 | } |
Fam Zheng | 0fc9f8e | 2015-06-08 13:56:08 +0800 | [diff] [blame] | 3464 | if (!has_unmap) { |
| 3465 | unmap = true; |
| 3466 | } |
Paolo Bonzini | 08e4ed6 | 2013-01-22 09:03:13 +0100 | [diff] [blame] | 3467 | |
Paolo Bonzini | eee13df | 2013-01-21 17:09:46 +0100 | [diff] [blame] | 3468 | if (granularity != 0 && (granularity < 512 || granularity > 1048576 * 64)) { |
Markus Armbruster | c6bd8c7 | 2015-03-17 11:54:50 +0100 | [diff] [blame] | 3469 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "granularity", |
| 3470 | "a value in range [512B, 64MB]"); |
Paolo Bonzini | eee13df | 2013-01-21 17:09:46 +0100 | [diff] [blame] | 3471 | return; |
| 3472 | } |
| 3473 | if (granularity & (granularity - 1)) { |
Markus Armbruster | c6bd8c7 | 2015-03-17 11:54:50 +0100 | [diff] [blame] | 3474 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "granularity", |
| 3475 | "power of 2"); |
Paolo Bonzini | eee13df | 2013-01-21 17:09:46 +0100 | [diff] [blame] | 3476 | return; |
| 3477 | } |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 3478 | |
Fam Zheng | 4193cdd | 2015-12-24 12:45:03 +0800 | [diff] [blame] | 3479 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_MIRROR_SOURCE, errp)) { |
| 3480 | return; |
| 3481 | } |
Fam Zheng | e40e502 | 2015-12-24 12:45:04 +0800 | [diff] [blame] | 3482 | if (bdrv_op_is_blocked(target, BLOCK_OP_TYPE_MIRROR_TARGET, errp)) { |
| 3483 | return; |
| 3484 | } |
Fam Zheng | 4193cdd | 2015-12-24 12:45:03 +0800 | [diff] [blame] | 3485 | |
| 3486 | if (!bs->backing && sync == MIRROR_SYNC_MODE_TOP) { |
| 3487 | sync = MIRROR_SYNC_MODE_FULL; |
| 3488 | } |
| 3489 | |
| 3490 | /* pass the node name to replace to mirror start since it's loose coupling |
| 3491 | * and will allow to check whether the node still exist at mirror completion |
| 3492 | */ |
Alberto Garcia | 71aa986 | 2016-07-05 17:28:57 +0300 | [diff] [blame] | 3493 | mirror_start(job_id, bs, target, |
Fam Zheng | 4193cdd | 2015-12-24 12:45:03 +0800 | [diff] [blame] | 3494 | has_replaces ? replaces : NULL, |
Max Reitz | 274fcce | 2016-06-10 20:57:47 +0200 | [diff] [blame] | 3495 | speed, granularity, buf_size, sync, backing_mode, |
Fam Zheng | 4193cdd | 2015-12-24 12:45:03 +0800 | [diff] [blame] | 3496 | on_source_error, on_target_error, unmap, |
| 3497 | block_job_cb, bs, errp); |
| 3498 | } |
| 3499 | |
Alberto Garcia | 71aa986 | 2016-07-05 17:28:57 +0300 | [diff] [blame] | 3500 | void qmp_drive_mirror(bool has_job_id, const char *job_id, const char *device, |
| 3501 | const char *target, bool has_format, const char *format, |
Fam Zheng | 4193cdd | 2015-12-24 12:45:03 +0800 | [diff] [blame] | 3502 | bool has_node_name, const char *node_name, |
| 3503 | bool has_replaces, const char *replaces, |
| 3504 | enum MirrorSyncMode sync, |
| 3505 | bool has_mode, enum NewImageMode mode, |
| 3506 | bool has_speed, int64_t speed, |
| 3507 | bool has_granularity, uint32_t granularity, |
| 3508 | bool has_buf_size, int64_t buf_size, |
| 3509 | bool has_on_source_error, BlockdevOnError on_source_error, |
| 3510 | bool has_on_target_error, BlockdevOnError on_target_error, |
| 3511 | bool has_unmap, bool unmap, |
| 3512 | Error **errp) |
| 3513 | { |
| 3514 | BlockDriverState *bs; |
| 3515 | BlockBackend *blk; |
| 3516 | BlockDriverState *source, *target_bs; |
| 3517 | AioContext *aio_context; |
Max Reitz | 274fcce | 2016-06-10 20:57:47 +0200 | [diff] [blame] | 3518 | BlockMirrorBackingMode backing_mode; |
Fam Zheng | 4193cdd | 2015-12-24 12:45:03 +0800 | [diff] [blame] | 3519 | Error *local_err = NULL; |
| 3520 | QDict *options = NULL; |
| 3521 | int flags; |
| 3522 | int64_t size; |
Fam Zheng | 4193cdd | 2015-12-24 12:45:03 +0800 | [diff] [blame] | 3523 | |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 3524 | blk = blk_by_name(device); |
| 3525 | if (!blk) { |
Markus Armbruster | 75158eb | 2015-03-16 08:57:47 +0100 | [diff] [blame] | 3526 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
| 3527 | "Device '%s' not found", device); |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 3528 | return; |
| 3529 | } |
| 3530 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 3531 | aio_context = blk_get_aio_context(blk); |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 3532 | aio_context_acquire(aio_context); |
| 3533 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 3534 | if (!blk_is_available(blk)) { |
Markus Armbruster | c6bd8c7 | 2015-03-17 11:54:50 +0100 | [diff] [blame] | 3535 | error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 3536 | goto out; |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 3537 | } |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 3538 | bs = blk_bs(blk); |
Fam Zheng | 4193cdd | 2015-12-24 12:45:03 +0800 | [diff] [blame] | 3539 | if (!has_mode) { |
| 3540 | mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS; |
| 3541 | } |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 3542 | |
| 3543 | if (!has_format) { |
| 3544 | format = mode == NEW_IMAGE_MODE_EXISTING ? NULL : bs->drv->format_name; |
| 3545 | } |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 3546 | |
Kevin Wolf | 61de4c6 | 2016-03-18 17:46:45 +0100 | [diff] [blame] | 3547 | flags = bs->open_flags | BDRV_O_RDWR; |
Kevin Wolf | 760e006 | 2015-06-17 14:55:21 +0200 | [diff] [blame] | 3548 | source = backing_bs(bs); |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 3549 | if (!source && sync == MIRROR_SYNC_MODE_TOP) { |
| 3550 | sync = MIRROR_SYNC_MODE_FULL; |
| 3551 | } |
Max Reitz | 117e0c8 | 2013-11-25 20:28:55 +0100 | [diff] [blame] | 3552 | if (sync == MIRROR_SYNC_MODE_NONE) { |
| 3553 | source = bs; |
| 3554 | } |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 3555 | |
Stefan Hajnoczi | ac3c5d8 | 2013-06-24 17:13:13 +0200 | [diff] [blame] | 3556 | size = bdrv_getlength(bs); |
| 3557 | if (size < 0) { |
| 3558 | error_setg_errno(errp, -size, "bdrv_getlength failed"); |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 3559 | goto out; |
Stefan Hajnoczi | ac3c5d8 | 2013-06-24 17:13:13 +0200 | [diff] [blame] | 3560 | } |
| 3561 | |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 3562 | if (has_replaces) { |
| 3563 | BlockDriverState *to_replace_bs; |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 3564 | AioContext *replace_aio_context; |
| 3565 | int64_t replace_size; |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 3566 | |
| 3567 | if (!has_node_name) { |
| 3568 | error_setg(errp, "a node-name must be provided when replacing a" |
| 3569 | " named node of the graph"); |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 3570 | goto out; |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 3571 | } |
| 3572 | |
Wen Congyang | e12f378 | 2015-07-17 10:12:22 +0800 | [diff] [blame] | 3573 | to_replace_bs = check_to_replace_node(bs, replaces, &local_err); |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 3574 | |
| 3575 | if (!to_replace_bs) { |
| 3576 | error_propagate(errp, local_err); |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 3577 | goto out; |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 3578 | } |
| 3579 | |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 3580 | replace_aio_context = bdrv_get_aio_context(to_replace_bs); |
| 3581 | aio_context_acquire(replace_aio_context); |
| 3582 | replace_size = bdrv_getlength(to_replace_bs); |
| 3583 | aio_context_release(replace_aio_context); |
| 3584 | |
| 3585 | if (size != replace_size) { |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 3586 | error_setg(errp, "cannot replace image with a mirror image of " |
| 3587 | "different size"); |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 3588 | goto out; |
Benoît Canet | 09158f0 | 2014-06-27 18:25:25 +0200 | [diff] [blame] | 3589 | } |
| 3590 | } |
| 3591 | |
Max Reitz | 274fcce | 2016-06-10 20:57:47 +0200 | [diff] [blame] | 3592 | if (mode == NEW_IMAGE_MODE_ABSOLUTE_PATHS) { |
| 3593 | backing_mode = MIRROR_SOURCE_BACKING_CHAIN; |
| 3594 | } else { |
| 3595 | backing_mode = MIRROR_OPEN_BACKING_CHAIN; |
| 3596 | } |
| 3597 | |
Max Reitz | 1452686 | 2013-11-06 19:50:44 +0100 | [diff] [blame] | 3598 | if ((sync == MIRROR_SYNC_MODE_FULL || !source) |
| 3599 | && mode != NEW_IMAGE_MODE_EXISTING) |
| 3600 | { |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 3601 | /* create new image w/o backing file */ |
Max Reitz | e664171 | 2015-08-26 19:47:48 +0200 | [diff] [blame] | 3602 | assert(format); |
Luiz Capitulino | cf8f242 | 2012-11-30 10:52:08 -0200 | [diff] [blame] | 3603 | bdrv_img_create(target, format, |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 3604 | NULL, NULL, NULL, size, flags, &local_err, false); |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 3605 | } else { |
| 3606 | switch (mode) { |
| 3607 | case NEW_IMAGE_MODE_EXISTING: |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 3608 | break; |
| 3609 | case NEW_IMAGE_MODE_ABSOLUTE_PATHS: |
| 3610 | /* create new image with backing file */ |
Luiz Capitulino | cf8f242 | 2012-11-30 10:52:08 -0200 | [diff] [blame] | 3611 | bdrv_img_create(target, format, |
| 3612 | source->filename, |
| 3613 | source->drv->format_name, |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 3614 | NULL, size, flags, &local_err, false); |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 3615 | break; |
| 3616 | default: |
| 3617 | abort(); |
| 3618 | } |
| 3619 | } |
| 3620 | |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 3621 | if (local_err) { |
Luiz Capitulino | cf8f242 | 2012-11-30 10:52:08 -0200 | [diff] [blame] | 3622 | error_propagate(errp, local_err); |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 3623 | goto out; |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 3624 | } |
| 3625 | |
Max Reitz | e664171 | 2015-08-26 19:47:48 +0200 | [diff] [blame] | 3626 | options = qdict_new(); |
Benoît Canet | 4c828dc | 2014-06-16 12:00:55 +0200 | [diff] [blame] | 3627 | if (has_node_name) { |
Benoît Canet | 4c828dc | 2014-06-16 12:00:55 +0200 | [diff] [blame] | 3628 | qdict_put(options, "node-name", qstring_from_str(node_name)); |
| 3629 | } |
Max Reitz | e664171 | 2015-08-26 19:47:48 +0200 | [diff] [blame] | 3630 | if (format) { |
| 3631 | qdict_put(options, "driver", qstring_from_str(format)); |
| 3632 | } |
Benoît Canet | 4c828dc | 2014-06-16 12:00:55 +0200 | [diff] [blame] | 3633 | |
Paolo Bonzini | b812f67 | 2013-01-21 17:09:43 +0100 | [diff] [blame] | 3634 | /* Mirroring takes care of copy-on-write using the source's backing |
| 3635 | * file. |
| 3636 | */ |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 3637 | target_bs = bdrv_open(target, NULL, options, flags | BDRV_O_NO_BACKING, |
| 3638 | errp); |
| 3639 | if (!target_bs) { |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 3640 | goto out; |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 3641 | } |
| 3642 | |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 3643 | bdrv_set_aio_context(target_bs, aio_context); |
| 3644 | |
Alberto Garcia | 71aa986 | 2016-07-05 17:28:57 +0300 | [diff] [blame] | 3645 | blockdev_mirror_common(has_job_id ? job_id : NULL, bs, target_bs, |
Max Reitz | 274fcce | 2016-06-10 20:57:47 +0200 | [diff] [blame] | 3646 | has_replaces, replaces, sync, backing_mode, |
Fam Zheng | 4193cdd | 2015-12-24 12:45:03 +0800 | [diff] [blame] | 3647 | has_speed, speed, |
| 3648 | has_granularity, granularity, |
| 3649 | has_buf_size, buf_size, |
| 3650 | has_on_source_error, on_source_error, |
| 3651 | has_on_target_error, on_target_error, |
| 3652 | has_unmap, unmap, |
| 3653 | &local_err); |
Kevin Wolf | e253f4b | 2016-04-12 16:17:41 +0200 | [diff] [blame] | 3654 | bdrv_unref(target_bs); |
Eduardo Habkost | 621ff94 | 2016-06-13 18:57:56 -0300 | [diff] [blame] | 3655 | error_propagate(errp, local_err); |
Stefan Hajnoczi | 5a7e7a0 | 2014-10-21 12:03:58 +0100 | [diff] [blame] | 3656 | out: |
| 3657 | aio_context_release(aio_context); |
Paolo Bonzini | d9b902d | 2012-10-18 16:49:24 +0200 | [diff] [blame] | 3658 | } |
| 3659 | |
Alberto Garcia | 71aa986 | 2016-07-05 17:28:57 +0300 | [diff] [blame] | 3660 | void qmp_blockdev_mirror(bool has_job_id, const char *job_id, |
| 3661 | const char *device, const char *target, |
Fam Zheng | df92562 | 2015-12-24 12:45:05 +0800 | [diff] [blame] | 3662 | bool has_replaces, const char *replaces, |
| 3663 | MirrorSyncMode sync, |
| 3664 | bool has_speed, int64_t speed, |
| 3665 | bool has_granularity, uint32_t granularity, |
| 3666 | bool has_buf_size, int64_t buf_size, |
| 3667 | bool has_on_source_error, |
| 3668 | BlockdevOnError on_source_error, |
| 3669 | bool has_on_target_error, |
| 3670 | BlockdevOnError on_target_error, |
| 3671 | Error **errp) |
| 3672 | { |
| 3673 | BlockDriverState *bs; |
| 3674 | BlockBackend *blk; |
| 3675 | BlockDriverState *target_bs; |
| 3676 | AioContext *aio_context; |
Max Reitz | 274fcce | 2016-06-10 20:57:47 +0200 | [diff] [blame] | 3677 | BlockMirrorBackingMode backing_mode = MIRROR_LEAVE_BACKING_CHAIN; |
Fam Zheng | df92562 | 2015-12-24 12:45:05 +0800 | [diff] [blame] | 3678 | Error *local_err = NULL; |
| 3679 | |
| 3680 | blk = blk_by_name(device); |
| 3681 | if (!blk) { |
| 3682 | error_setg(errp, "Device '%s' not found", device); |
| 3683 | return; |
| 3684 | } |
| 3685 | bs = blk_bs(blk); |
| 3686 | |
| 3687 | if (!bs) { |
| 3688 | error_setg(errp, "Device '%s' has no media", device); |
| 3689 | return; |
| 3690 | } |
| 3691 | |
| 3692 | target_bs = bdrv_lookup_bs(target, target, errp); |
| 3693 | if (!target_bs) { |
| 3694 | return; |
| 3695 | } |
| 3696 | |
| 3697 | aio_context = bdrv_get_aio_context(bs); |
| 3698 | aio_context_acquire(aio_context); |
| 3699 | |
Fam Zheng | df92562 | 2015-12-24 12:45:05 +0800 | [diff] [blame] | 3700 | bdrv_set_aio_context(target_bs, aio_context); |
| 3701 | |
Alberto Garcia | 71aa986 | 2016-07-05 17:28:57 +0300 | [diff] [blame] | 3702 | blockdev_mirror_common(has_job_id ? job_id : NULL, bs, target_bs, |
Max Reitz | 274fcce | 2016-06-10 20:57:47 +0200 | [diff] [blame] | 3703 | has_replaces, replaces, sync, backing_mode, |
Fam Zheng | df92562 | 2015-12-24 12:45:05 +0800 | [diff] [blame] | 3704 | has_speed, speed, |
| 3705 | has_granularity, granularity, |
| 3706 | has_buf_size, buf_size, |
| 3707 | has_on_source_error, on_source_error, |
| 3708 | has_on_target_error, on_target_error, |
| 3709 | true, true, |
| 3710 | &local_err); |
Eduardo Habkost | 621ff94 | 2016-06-13 18:57:56 -0300 | [diff] [blame] | 3711 | error_propagate(errp, local_err); |
Fam Zheng | df92562 | 2015-12-24 12:45:05 +0800 | [diff] [blame] | 3712 | |
| 3713 | aio_context_release(aio_context); |
| 3714 | } |
| 3715 | |
Alberto Garcia | 3ddf3ef | 2016-07-05 17:28:55 +0300 | [diff] [blame] | 3716 | /* Get a block job using its ID and acquire its AioContext */ |
| 3717 | static BlockJob *find_block_job(const char *id, AioContext **aio_context, |
Markus Armbruster | 24d6bff | 2015-01-29 10:36:58 +0100 | [diff] [blame] | 3718 | Error **errp) |
Stefan Hajnoczi | 2d47c6e | 2012-01-18 14:40:47 +0000 | [diff] [blame] | 3719 | { |
Alberto Garcia | 3ddf3ef | 2016-07-05 17:28:55 +0300 | [diff] [blame] | 3720 | BlockJob *job; |
| 3721 | |
| 3722 | assert(id != NULL); |
Stefan Hajnoczi | 2d47c6e | 2012-01-18 14:40:47 +0000 | [diff] [blame] | 3723 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 3724 | *aio_context = NULL; |
| 3725 | |
Alberto Garcia | 3ddf3ef | 2016-07-05 17:28:55 +0300 | [diff] [blame] | 3726 | job = block_job_get(id); |
| 3727 | |
| 3728 | if (!job) { |
| 3729 | error_set(errp, ERROR_CLASS_DEVICE_NOT_ACTIVE, |
| 3730 | "Block job '%s' not found", id); |
| 3731 | return NULL; |
Stefan Hajnoczi | 2d47c6e | 2012-01-18 14:40:47 +0000 | [diff] [blame] | 3732 | } |
Stefan Hajnoczi | 3d948cd | 2014-10-21 12:03:50 +0100 | [diff] [blame] | 3733 | |
Alberto Garcia | 3ddf3ef | 2016-07-05 17:28:55 +0300 | [diff] [blame] | 3734 | *aio_context = blk_get_aio_context(job->blk); |
Stefan Hajnoczi | 3d948cd | 2014-10-21 12:03:50 +0100 | [diff] [blame] | 3735 | aio_context_acquire(*aio_context); |
| 3736 | |
Alberto Garcia | 3ddf3ef | 2016-07-05 17:28:55 +0300 | [diff] [blame] | 3737 | return job; |
Stefan Hajnoczi | 2d47c6e | 2012-01-18 14:40:47 +0000 | [diff] [blame] | 3738 | } |
| 3739 | |
Stefan Hajnoczi | 882ec7c | 2012-04-25 16:51:02 +0100 | [diff] [blame] | 3740 | 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] | 3741 | { |
Stefan Hajnoczi | 3d948cd | 2014-10-21 12:03:50 +0100 | [diff] [blame] | 3742 | AioContext *aio_context; |
Markus Armbruster | 24d6bff | 2015-01-29 10:36:58 +0100 | [diff] [blame] | 3743 | BlockJob *job = find_block_job(device, &aio_context, errp); |
Stefan Hajnoczi | 2d47c6e | 2012-01-18 14:40:47 +0000 | [diff] [blame] | 3744 | |
| 3745 | if (!job) { |
Stefan Hajnoczi | 2d47c6e | 2012-01-18 14:40:47 +0000 | [diff] [blame] | 3746 | return; |
| 3747 | } |
| 3748 | |
Stefan Hajnoczi | 882ec7c | 2012-04-25 16:51:02 +0100 | [diff] [blame] | 3749 | block_job_set_speed(job, speed, errp); |
Stefan Hajnoczi | 3d948cd | 2014-10-21 12:03:50 +0100 | [diff] [blame] | 3750 | aio_context_release(aio_context); |
Stefan Hajnoczi | 2d47c6e | 2012-01-18 14:40:47 +0000 | [diff] [blame] | 3751 | } |
Stefan Hajnoczi | 370521a | 2012-01-18 14:40:48 +0000 | [diff] [blame] | 3752 | |
Paolo Bonzini | 6e37fb8 | 2012-09-28 17:22:51 +0200 | [diff] [blame] | 3753 | void qmp_block_job_cancel(const char *device, |
| 3754 | bool has_force, bool force, Error **errp) |
| 3755 | { |
Stefan Hajnoczi | 3d948cd | 2014-10-21 12:03:50 +0100 | [diff] [blame] | 3756 | AioContext *aio_context; |
Markus Armbruster | 24d6bff | 2015-01-29 10:36:58 +0100 | [diff] [blame] | 3757 | BlockJob *job = find_block_job(device, &aio_context, errp); |
Paolo Bonzini | 6e37fb8 | 2012-09-28 17:22:51 +0200 | [diff] [blame] | 3758 | |
| 3759 | if (!job) { |
Paolo Bonzini | 6e37fb8 | 2012-09-28 17:22:51 +0200 | [diff] [blame] | 3760 | return; |
| 3761 | } |
Stefan Hajnoczi | 3d948cd | 2014-10-21 12:03:50 +0100 | [diff] [blame] | 3762 | |
| 3763 | if (!has_force) { |
| 3764 | force = false; |
| 3765 | } |
| 3766 | |
Fam Zheng | 751ebd7 | 2015-04-03 22:05:18 +0800 | [diff] [blame] | 3767 | if (job->user_paused && !force) { |
Cole Robinson | f231b88 | 2014-03-21 19:42:26 -0400 | [diff] [blame] | 3768 | error_setg(errp, "The block job for device '%s' is currently paused", |
| 3769 | device); |
Stefan Hajnoczi | 3d948cd | 2014-10-21 12:03:50 +0100 | [diff] [blame] | 3770 | goto out; |
Paolo Bonzini | 6e37fb8 | 2012-09-28 17:22:51 +0200 | [diff] [blame] | 3771 | } |
| 3772 | |
| 3773 | trace_qmp_block_job_cancel(job); |
| 3774 | block_job_cancel(job); |
Stefan Hajnoczi | 3d948cd | 2014-10-21 12:03:50 +0100 | [diff] [blame] | 3775 | out: |
| 3776 | aio_context_release(aio_context); |
Paolo Bonzini | 6e37fb8 | 2012-09-28 17:22:51 +0200 | [diff] [blame] | 3777 | } |
| 3778 | |
| 3779 | void qmp_block_job_pause(const char *device, Error **errp) |
Stefan Hajnoczi | 370521a | 2012-01-18 14:40:48 +0000 | [diff] [blame] | 3780 | { |
Stefan Hajnoczi | 3d948cd | 2014-10-21 12:03:50 +0100 | [diff] [blame] | 3781 | AioContext *aio_context; |
Markus Armbruster | 24d6bff | 2015-01-29 10:36:58 +0100 | [diff] [blame] | 3782 | BlockJob *job = find_block_job(device, &aio_context, errp); |
Stefan Hajnoczi | 370521a | 2012-01-18 14:40:48 +0000 | [diff] [blame] | 3783 | |
Fam Zheng | 751ebd7 | 2015-04-03 22:05:18 +0800 | [diff] [blame] | 3784 | if (!job || job->user_paused) { |
Stefan Hajnoczi | 370521a | 2012-01-18 14:40:48 +0000 | [diff] [blame] | 3785 | return; |
| 3786 | } |
Paolo Bonzini | 6e37fb8 | 2012-09-28 17:22:51 +0200 | [diff] [blame] | 3787 | |
Fam Zheng | 751ebd7 | 2015-04-03 22:05:18 +0800 | [diff] [blame] | 3788 | job->user_paused = true; |
Paolo Bonzini | 6e37fb8 | 2012-09-28 17:22:51 +0200 | [diff] [blame] | 3789 | trace_qmp_block_job_pause(job); |
| 3790 | block_job_pause(job); |
Stefan Hajnoczi | 3d948cd | 2014-10-21 12:03:50 +0100 | [diff] [blame] | 3791 | aio_context_release(aio_context); |
Paolo Bonzini | 6e37fb8 | 2012-09-28 17:22:51 +0200 | [diff] [blame] | 3792 | } |
| 3793 | |
| 3794 | void qmp_block_job_resume(const char *device, Error **errp) |
| 3795 | { |
Stefan Hajnoczi | 3d948cd | 2014-10-21 12:03:50 +0100 | [diff] [blame] | 3796 | AioContext *aio_context; |
Markus Armbruster | 24d6bff | 2015-01-29 10:36:58 +0100 | [diff] [blame] | 3797 | BlockJob *job = find_block_job(device, &aio_context, errp); |
Paolo Bonzini | 6e37fb8 | 2012-09-28 17:22:51 +0200 | [diff] [blame] | 3798 | |
Fam Zheng | 751ebd7 | 2015-04-03 22:05:18 +0800 | [diff] [blame] | 3799 | if (!job || !job->user_paused) { |
Paolo Bonzini | 8acc72a | 2012-09-28 17:22:50 +0200 | [diff] [blame] | 3800 | return; |
| 3801 | } |
Stefan Hajnoczi | 370521a | 2012-01-18 14:40:48 +0000 | [diff] [blame] | 3802 | |
Fam Zheng | 751ebd7 | 2015-04-03 22:05:18 +0800 | [diff] [blame] | 3803 | job->user_paused = false; |
Paolo Bonzini | 6e37fb8 | 2012-09-28 17:22:51 +0200 | [diff] [blame] | 3804 | trace_qmp_block_job_resume(job); |
Stefan Hajnoczi | 17bd51f | 2016-06-16 17:56:22 +0100 | [diff] [blame] | 3805 | block_job_iostatus_reset(job); |
Paolo Bonzini | 6e37fb8 | 2012-09-28 17:22:51 +0200 | [diff] [blame] | 3806 | block_job_resume(job); |
Stefan Hajnoczi | 3d948cd | 2014-10-21 12:03:50 +0100 | [diff] [blame] | 3807 | aio_context_release(aio_context); |
Stefan Hajnoczi | 370521a | 2012-01-18 14:40:48 +0000 | [diff] [blame] | 3808 | } |
Stefan Hajnoczi | fb5458c | 2012-01-18 14:40:49 +0000 | [diff] [blame] | 3809 | |
Paolo Bonzini | aeae883 | 2012-10-18 16:49:21 +0200 | [diff] [blame] | 3810 | void qmp_block_job_complete(const char *device, Error **errp) |
| 3811 | { |
Stefan Hajnoczi | 3d948cd | 2014-10-21 12:03:50 +0100 | [diff] [blame] | 3812 | AioContext *aio_context; |
Markus Armbruster | 24d6bff | 2015-01-29 10:36:58 +0100 | [diff] [blame] | 3813 | BlockJob *job = find_block_job(device, &aio_context, errp); |
Paolo Bonzini | aeae883 | 2012-10-18 16:49:21 +0200 | [diff] [blame] | 3814 | |
| 3815 | if (!job) { |
Paolo Bonzini | aeae883 | 2012-10-18 16:49:21 +0200 | [diff] [blame] | 3816 | return; |
| 3817 | } |
| 3818 | |
| 3819 | trace_qmp_block_job_complete(job); |
| 3820 | block_job_complete(job, errp); |
Stefan Hajnoczi | 3d948cd | 2014-10-21 12:03:50 +0100 | [diff] [blame] | 3821 | aio_context_release(aio_context); |
Paolo Bonzini | aeae883 | 2012-10-18 16:49:21 +0200 | [diff] [blame] | 3822 | } |
| 3823 | |
Jeff Cody | fa40e65 | 2014-07-01 09:52:16 +0200 | [diff] [blame] | 3824 | void qmp_change_backing_file(const char *device, |
| 3825 | const char *image_node_name, |
| 3826 | const char *backing_file, |
| 3827 | Error **errp) |
| 3828 | { |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 3829 | BlockBackend *blk; |
Jeff Cody | fa40e65 | 2014-07-01 09:52:16 +0200 | [diff] [blame] | 3830 | BlockDriverState *bs = NULL; |
Stefan Hajnoczi | 729962f | 2014-11-19 14:19:45 +0000 | [diff] [blame] | 3831 | AioContext *aio_context; |
Jeff Cody | fa40e65 | 2014-07-01 09:52:16 +0200 | [diff] [blame] | 3832 | BlockDriverState *image_bs = NULL; |
| 3833 | Error *local_err = NULL; |
| 3834 | bool ro; |
| 3835 | int open_flags; |
| 3836 | int ret; |
| 3837 | |
Fam Zheng | a0e8544 | 2015-03-02 19:36:48 +0800 | [diff] [blame] | 3838 | blk = blk_by_name(device); |
| 3839 | if (!blk) { |
Markus Armbruster | 75158eb | 2015-03-16 08:57:47 +0100 | [diff] [blame] | 3840 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, |
| 3841 | "Device '%s' not found", device); |
Jeff Cody | fa40e65 | 2014-07-01 09:52:16 +0200 | [diff] [blame] | 3842 | return; |
| 3843 | } |
| 3844 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 3845 | aio_context = blk_get_aio_context(blk); |
Stefan Hajnoczi | 729962f | 2014-11-19 14:19:45 +0000 | [diff] [blame] | 3846 | aio_context_acquire(aio_context); |
| 3847 | |
Max Reitz | 5433c24 | 2015-10-19 17:53:29 +0200 | [diff] [blame] | 3848 | if (!blk_is_available(blk)) { |
| 3849 | error_setg(errp, "Device '%s' has no medium", device); |
| 3850 | goto out; |
| 3851 | } |
| 3852 | bs = blk_bs(blk); |
| 3853 | |
Jeff Cody | fa40e65 | 2014-07-01 09:52:16 +0200 | [diff] [blame] | 3854 | image_bs = bdrv_lookup_bs(NULL, image_node_name, &local_err); |
| 3855 | if (local_err) { |
| 3856 | error_propagate(errp, local_err); |
Stefan Hajnoczi | 729962f | 2014-11-19 14:19:45 +0000 | [diff] [blame] | 3857 | goto out; |
Jeff Cody | fa40e65 | 2014-07-01 09:52:16 +0200 | [diff] [blame] | 3858 | } |
| 3859 | |
| 3860 | if (!image_bs) { |
| 3861 | error_setg(errp, "image file not found"); |
Stefan Hajnoczi | 729962f | 2014-11-19 14:19:45 +0000 | [diff] [blame] | 3862 | goto out; |
Jeff Cody | fa40e65 | 2014-07-01 09:52:16 +0200 | [diff] [blame] | 3863 | } |
| 3864 | |
| 3865 | if (bdrv_find_base(image_bs) == image_bs) { |
| 3866 | error_setg(errp, "not allowing backing file change on an image " |
| 3867 | "without a backing file"); |
Stefan Hajnoczi | 729962f | 2014-11-19 14:19:45 +0000 | [diff] [blame] | 3868 | goto out; |
Jeff Cody | fa40e65 | 2014-07-01 09:52:16 +0200 | [diff] [blame] | 3869 | } |
| 3870 | |
| 3871 | /* even though we are not necessarily operating on bs, we need it to |
| 3872 | * determine if block ops are currently prohibited on the chain */ |
| 3873 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_CHANGE, errp)) { |
Stefan Hajnoczi | 729962f | 2014-11-19 14:19:45 +0000 | [diff] [blame] | 3874 | goto out; |
Jeff Cody | fa40e65 | 2014-07-01 09:52:16 +0200 | [diff] [blame] | 3875 | } |
| 3876 | |
| 3877 | /* final sanity check */ |
| 3878 | if (!bdrv_chain_contains(bs, image_bs)) { |
| 3879 | error_setg(errp, "'%s' and image file are not in the same chain", |
| 3880 | device); |
Stefan Hajnoczi | 729962f | 2014-11-19 14:19:45 +0000 | [diff] [blame] | 3881 | goto out; |
Jeff Cody | fa40e65 | 2014-07-01 09:52:16 +0200 | [diff] [blame] | 3882 | } |
| 3883 | |
| 3884 | /* if not r/w, reopen to make r/w */ |
| 3885 | open_flags = image_bs->open_flags; |
| 3886 | ro = bdrv_is_read_only(image_bs); |
| 3887 | |
| 3888 | if (ro) { |
| 3889 | bdrv_reopen(image_bs, open_flags | BDRV_O_RDWR, &local_err); |
| 3890 | if (local_err) { |
| 3891 | error_propagate(errp, local_err); |
Stefan Hajnoczi | 729962f | 2014-11-19 14:19:45 +0000 | [diff] [blame] | 3892 | goto out; |
Jeff Cody | fa40e65 | 2014-07-01 09:52:16 +0200 | [diff] [blame] | 3893 | } |
| 3894 | } |
| 3895 | |
| 3896 | ret = bdrv_change_backing_file(image_bs, backing_file, |
| 3897 | image_bs->drv ? image_bs->drv->format_name : ""); |
| 3898 | |
| 3899 | if (ret < 0) { |
| 3900 | error_setg_errno(errp, -ret, "Could not change backing file to '%s'", |
| 3901 | backing_file); |
| 3902 | /* don't exit here, so we can try to restore open flags if |
| 3903 | * appropriate */ |
| 3904 | } |
| 3905 | |
| 3906 | if (ro) { |
| 3907 | bdrv_reopen(image_bs, open_flags, &local_err); |
Eduardo Habkost | 621ff94 | 2016-06-13 18:57:56 -0300 | [diff] [blame] | 3908 | error_propagate(errp, local_err); |
Jeff Cody | fa40e65 | 2014-07-01 09:52:16 +0200 | [diff] [blame] | 3909 | } |
Stefan Hajnoczi | 729962f | 2014-11-19 14:19:45 +0000 | [diff] [blame] | 3910 | |
| 3911 | out: |
| 3912 | aio_context_release(aio_context); |
Jeff Cody | fa40e65 | 2014-07-01 09:52:16 +0200 | [diff] [blame] | 3913 | } |
| 3914 | |
Kevin Wolf | abb21ac | 2016-02-23 17:33:24 +0100 | [diff] [blame] | 3915 | void hmp_drive_add_node(Monitor *mon, const char *optstr) |
| 3916 | { |
| 3917 | QemuOpts *opts; |
| 3918 | QDict *qdict; |
| 3919 | Error *local_err = NULL; |
| 3920 | |
| 3921 | opts = qemu_opts_parse_noisily(&qemu_drive_opts, optstr, false); |
| 3922 | if (!opts) { |
| 3923 | return; |
| 3924 | } |
| 3925 | |
| 3926 | qdict = qemu_opts_to_qdict(opts, NULL); |
| 3927 | |
| 3928 | if (!qdict_get_try_str(qdict, "node-name")) { |
Kevin Wolf | f8746fb | 2016-03-16 11:14:31 +0100 | [diff] [blame] | 3929 | QDECREF(qdict); |
Kevin Wolf | abb21ac | 2016-02-23 17:33:24 +0100 | [diff] [blame] | 3930 | error_report("'node-name' needs to be specified"); |
| 3931 | goto out; |
| 3932 | } |
| 3933 | |
| 3934 | BlockDriverState *bs = bds_tree_init(qdict, &local_err); |
| 3935 | if (!bs) { |
| 3936 | error_report_err(local_err); |
| 3937 | goto out; |
| 3938 | } |
| 3939 | |
| 3940 | QTAILQ_INSERT_TAIL(&monitor_bdrv_states, bs, monitor_list); |
| 3941 | |
| 3942 | out: |
| 3943 | qemu_opts_del(opts); |
| 3944 | } |
| 3945 | |
Kevin Wolf | d26c9a1 | 2013-09-23 15:26:03 +0200 | [diff] [blame] | 3946 | void qmp_blockdev_add(BlockdevOptions *options, Error **errp) |
| 3947 | { |
Max Reitz | be4b67b | 2015-10-19 17:53:09 +0200 | [diff] [blame] | 3948 | BlockDriverState *bs; |
| 3949 | BlockBackend *blk = NULL; |
Kevin Wolf | d26c9a1 | 2013-09-23 15:26:03 +0200 | [diff] [blame] | 3950 | QObject *obj; |
Eric Blake | 3b098d5 | 2016-06-09 10:48:43 -0600 | [diff] [blame] | 3951 | Visitor *v = qmp_output_visitor_new(&obj); |
Kevin Wolf | d26c9a1 | 2013-09-23 15:26:03 +0200 | [diff] [blame] | 3952 | QDict *qdict; |
Kevin Wolf | d26c9a1 | 2013-09-23 15:26:03 +0200 | [diff] [blame] | 3953 | Error *local_err = NULL; |
| 3954 | |
Markus Armbruster | 60e19e0 | 2014-06-06 14:50:58 +0200 | [diff] [blame] | 3955 | /* TODO Sort it out in raw-posix and drive_new(): Reject aio=native with |
Kevin Wolf | d26c9a1 | 2013-09-23 15:26:03 +0200 | [diff] [blame] | 3956 | * cache.direct=false instead of silently switching to aio=threads, except |
Markus Armbruster | 60e19e0 | 2014-06-06 14:50:58 +0200 | [diff] [blame] | 3957 | * when called from drive_new(). |
Kevin Wolf | d26c9a1 | 2013-09-23 15:26:03 +0200 | [diff] [blame] | 3958 | * |
| 3959 | * For now, simply forbidding the combination for all drivers will do. */ |
| 3960 | if (options->has_aio && options->aio == BLOCKDEV_AIO_OPTIONS_NATIVE) { |
Kevin Wolf | c6e0bd9 | 2014-03-06 15:47:32 +0100 | [diff] [blame] | 3961 | bool direct = options->has_cache && |
| 3962 | options->cache->has_direct && |
| 3963 | options->cache->direct; |
| 3964 | if (!direct) { |
Kevin Wolf | d26c9a1 | 2013-09-23 15:26:03 +0200 | [diff] [blame] | 3965 | error_setg(errp, "aio=native requires cache.direct=true"); |
| 3966 | goto fail; |
| 3967 | } |
| 3968 | } |
| 3969 | |
Eric Blake | 3b098d5 | 2016-06-09 10:48:43 -0600 | [diff] [blame] | 3970 | visit_type_BlockdevOptions(v, NULL, &options, &local_err); |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 3971 | if (local_err) { |
Kevin Wolf | d26c9a1 | 2013-09-23 15:26:03 +0200 | [diff] [blame] | 3972 | error_propagate(errp, local_err); |
| 3973 | goto fail; |
| 3974 | } |
| 3975 | |
Eric Blake | 3b098d5 | 2016-06-09 10:48:43 -0600 | [diff] [blame] | 3976 | visit_complete(v, &obj); |
Kevin Wolf | d26c9a1 | 2013-09-23 15:26:03 +0200 | [diff] [blame] | 3977 | qdict = qobject_to_qdict(obj); |
| 3978 | |
| 3979 | qdict_flatten(qdict); |
| 3980 | |
Max Reitz | be4b67b | 2015-10-19 17:53:09 +0200 | [diff] [blame] | 3981 | if (options->has_id) { |
| 3982 | blk = blockdev_init(NULL, qdict, &local_err); |
| 3983 | if (local_err) { |
| 3984 | error_propagate(errp, local_err); |
| 3985 | goto fail; |
| 3986 | } |
| 3987 | |
| 3988 | bs = blk_bs(blk); |
| 3989 | } else { |
Max Reitz | be4b67b | 2015-10-19 17:53:09 +0200 | [diff] [blame] | 3990 | if (!qdict_get_try_str(qdict, "node-name")) { |
| 3991 | error_setg(errp, "'id' and/or 'node-name' need to be specified for " |
| 3992 | "the root node"); |
| 3993 | goto fail; |
| 3994 | } |
| 3995 | |
Max Reitz | bd745e2 | 2015-10-19 17:53:32 +0200 | [diff] [blame] | 3996 | bs = bds_tree_init(qdict, errp); |
| 3997 | if (!bs) { |
Max Reitz | be4b67b | 2015-10-19 17:53:09 +0200 | [diff] [blame] | 3998 | goto fail; |
| 3999 | } |
Max Reitz | 9c4218e | 2016-01-29 16:36:12 +0100 | [diff] [blame] | 4000 | |
| 4001 | QTAILQ_INSERT_TAIL(&monitor_bdrv_states, bs, monitor_list); |
Kevin Wolf | d26c9a1 | 2013-09-23 15:26:03 +0200 | [diff] [blame] | 4002 | } |
| 4003 | |
Max Reitz | be4b67b | 2015-10-19 17:53:09 +0200 | [diff] [blame] | 4004 | if (bs && bdrv_key_required(bs)) { |
| 4005 | if (blk) { |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 4006 | monitor_remove_blk(blk); |
Max Reitz | be4b67b | 2015-10-19 17:53:09 +0200 | [diff] [blame] | 4007 | blk_unref(blk); |
| 4008 | } else { |
Max Reitz | 9c4218e | 2016-01-29 16:36:12 +0100 | [diff] [blame] | 4009 | QTAILQ_REMOVE(&monitor_bdrv_states, bs, monitor_list); |
Max Reitz | be4b67b | 2015-10-19 17:53:09 +0200 | [diff] [blame] | 4010 | bdrv_unref(bs); |
| 4011 | } |
Kevin Wolf | 8ae8e90 | 2014-03-06 15:43:42 +0100 | [diff] [blame] | 4012 | error_setg(errp, "blockdev-add doesn't support encrypted devices"); |
| 4013 | goto fail; |
| 4014 | } |
| 4015 | |
Kevin Wolf | d26c9a1 | 2013-09-23 15:26:03 +0200 | [diff] [blame] | 4016 | fail: |
Eric Blake | 3b098d5 | 2016-06-09 10:48:43 -0600 | [diff] [blame] | 4017 | visit_free(v); |
Kevin Wolf | d26c9a1 | 2013-09-23 15:26:03 +0200 | [diff] [blame] | 4018 | } |
| 4019 | |
Alberto Garcia | 81b936a | 2015-11-02 16:51:55 +0200 | [diff] [blame] | 4020 | void qmp_x_blockdev_del(bool has_id, const char *id, |
| 4021 | bool has_node_name, const char *node_name, Error **errp) |
| 4022 | { |
| 4023 | AioContext *aio_context; |
| 4024 | BlockBackend *blk; |
| 4025 | BlockDriverState *bs; |
| 4026 | |
| 4027 | if (has_id && has_node_name) { |
| 4028 | error_setg(errp, "Only one of id and node-name must be specified"); |
| 4029 | return; |
| 4030 | } else if (!has_id && !has_node_name) { |
| 4031 | error_setg(errp, "No block device specified"); |
| 4032 | return; |
| 4033 | } |
| 4034 | |
| 4035 | if (has_id) { |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 4036 | /* blk_by_name() never returns a BB that is not owned by the monitor */ |
Alberto Garcia | 81b936a | 2015-11-02 16:51:55 +0200 | [diff] [blame] | 4037 | blk = blk_by_name(id); |
| 4038 | if (!blk) { |
| 4039 | error_setg(errp, "Cannot find block backend %s", id); |
| 4040 | return; |
| 4041 | } |
Paolo Bonzini | 5cf87fd | 2016-03-31 15:07:43 +0200 | [diff] [blame] | 4042 | if (blk_legacy_dinfo(blk)) { |
| 4043 | error_setg(errp, "Deleting block backend added with drive-add" |
| 4044 | " is not supported"); |
| 4045 | return; |
| 4046 | } |
Alberto Garcia | 81b936a | 2015-11-02 16:51:55 +0200 | [diff] [blame] | 4047 | if (blk_get_refcnt(blk) > 1) { |
| 4048 | error_setg(errp, "Block backend %s is in use", id); |
| 4049 | return; |
| 4050 | } |
| 4051 | bs = blk_bs(blk); |
| 4052 | aio_context = blk_get_aio_context(blk); |
| 4053 | } else { |
Kevin Wolf | 1f0c461 | 2016-03-22 18:38:44 +0100 | [diff] [blame] | 4054 | blk = NULL; |
Alberto Garcia | 81b936a | 2015-11-02 16:51:55 +0200 | [diff] [blame] | 4055 | bs = bdrv_find_node(node_name); |
| 4056 | if (!bs) { |
| 4057 | error_setg(errp, "Cannot find node %s", node_name); |
| 4058 | return; |
| 4059 | } |
Kevin Wolf | 1f0c461 | 2016-03-22 18:38:44 +0100 | [diff] [blame] | 4060 | if (bdrv_has_blk(bs)) { |
Alberto Garcia | 81b936a | 2015-11-02 16:51:55 +0200 | [diff] [blame] | 4061 | error_setg(errp, "Node %s is in use by %s", |
Kevin Wolf | 1f0c461 | 2016-03-22 18:38:44 +0100 | [diff] [blame] | 4062 | node_name, bdrv_get_parent_name(bs)); |
Alberto Garcia | 81b936a | 2015-11-02 16:51:55 +0200 | [diff] [blame] | 4063 | return; |
| 4064 | } |
| 4065 | aio_context = bdrv_get_aio_context(bs); |
| 4066 | } |
| 4067 | |
| 4068 | aio_context_acquire(aio_context); |
| 4069 | |
| 4070 | if (bs) { |
| 4071 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_DRIVE_DEL, errp)) { |
| 4072 | goto out; |
| 4073 | } |
| 4074 | |
Max Reitz | 9c4218e | 2016-01-29 16:36:12 +0100 | [diff] [blame] | 4075 | if (!blk && !bs->monitor_list.tqe_prev) { |
| 4076 | error_setg(errp, "Node %s is not owned by the monitor", |
| 4077 | bs->node_name); |
| 4078 | goto out; |
| 4079 | } |
| 4080 | |
| 4081 | if (bs->refcnt > 1) { |
Alberto Garcia | 81b936a | 2015-11-02 16:51:55 +0200 | [diff] [blame] | 4082 | error_setg(errp, "Block device %s is in use", |
| 4083 | bdrv_get_device_or_node_name(bs)); |
| 4084 | goto out; |
| 4085 | } |
| 4086 | } |
| 4087 | |
| 4088 | if (blk) { |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 4089 | monitor_remove_blk(blk); |
Alberto Garcia | 81b936a | 2015-11-02 16:51:55 +0200 | [diff] [blame] | 4090 | blk_unref(blk); |
| 4091 | } else { |
Max Reitz | 9c4218e | 2016-01-29 16:36:12 +0100 | [diff] [blame] | 4092 | QTAILQ_REMOVE(&monitor_bdrv_states, bs, monitor_list); |
Alberto Garcia | 81b936a | 2015-11-02 16:51:55 +0200 | [diff] [blame] | 4093 | bdrv_unref(bs); |
| 4094 | } |
| 4095 | |
| 4096 | out: |
| 4097 | aio_context_release(aio_context); |
| 4098 | } |
| 4099 | |
Wen Congyang | 7f82159 | 2016-05-10 15:36:39 +0800 | [diff] [blame] | 4100 | static BdrvChild *bdrv_find_child(BlockDriverState *parent_bs, |
| 4101 | const char *child_name) |
| 4102 | { |
| 4103 | BdrvChild *child; |
| 4104 | |
| 4105 | QLIST_FOREACH(child, &parent_bs->children, next) { |
| 4106 | if (strcmp(child->name, child_name) == 0) { |
| 4107 | return child; |
| 4108 | } |
| 4109 | } |
| 4110 | |
| 4111 | return NULL; |
| 4112 | } |
| 4113 | |
| 4114 | void qmp_x_blockdev_change(const char *parent, bool has_child, |
| 4115 | const char *child, bool has_node, |
| 4116 | const char *node, Error **errp) |
| 4117 | { |
| 4118 | BlockDriverState *parent_bs, *new_bs = NULL; |
| 4119 | BdrvChild *p_child; |
| 4120 | |
| 4121 | parent_bs = bdrv_lookup_bs(parent, parent, errp); |
| 4122 | if (!parent_bs) { |
| 4123 | return; |
| 4124 | } |
| 4125 | |
| 4126 | if (has_child == has_node) { |
| 4127 | if (has_child) { |
| 4128 | error_setg(errp, "The parameters child and node are in conflict"); |
| 4129 | } else { |
| 4130 | error_setg(errp, "Either child or node must be specified"); |
| 4131 | } |
| 4132 | return; |
| 4133 | } |
| 4134 | |
| 4135 | if (has_child) { |
| 4136 | p_child = bdrv_find_child(parent_bs, child); |
| 4137 | if (!p_child) { |
| 4138 | error_setg(errp, "Node '%s' does not have child '%s'", |
| 4139 | parent, child); |
| 4140 | return; |
| 4141 | } |
| 4142 | bdrv_del_child(parent_bs, p_child, errp); |
| 4143 | } |
| 4144 | |
| 4145 | if (has_node) { |
| 4146 | new_bs = bdrv_find_node(node); |
| 4147 | if (!new_bs) { |
| 4148 | error_setg(errp, "Node '%s' not found", node); |
| 4149 | return; |
| 4150 | } |
| 4151 | bdrv_add_child(parent_bs, new_bs, errp); |
| 4152 | } |
| 4153 | } |
| 4154 | |
Stefan Hajnoczi | fb5458c | 2012-01-18 14:40:49 +0000 | [diff] [blame] | 4155 | BlockJobInfoList *qmp_query_block_jobs(Error **errp) |
| 4156 | { |
Markus Armbruster | fea68bb | 2014-10-07 13:59:10 +0200 | [diff] [blame] | 4157 | BlockJobInfoList *head = NULL, **p_next = &head; |
Alberto Garcia | f0f55de | 2016-05-27 12:53:37 +0200 | [diff] [blame] | 4158 | BlockJob *job; |
Markus Armbruster | fea68bb | 2014-10-07 13:59:10 +0200 | [diff] [blame] | 4159 | |
Alberto Garcia | f0f55de | 2016-05-27 12:53:37 +0200 | [diff] [blame] | 4160 | for (job = block_job_next(NULL); job; job = block_job_next(job)) { |
| 4161 | BlockJobInfoList *elem = g_new0(BlockJobInfoList, 1); |
| 4162 | AioContext *aio_context = blk_get_aio_context(job->blk); |
Stefan Hajnoczi | 69691e7 | 2014-10-21 12:03:51 +0100 | [diff] [blame] | 4163 | |
| 4164 | aio_context_acquire(aio_context); |
Alberto Garcia | f0f55de | 2016-05-27 12:53:37 +0200 | [diff] [blame] | 4165 | elem->value = block_job_query(job); |
Stefan Hajnoczi | 69691e7 | 2014-10-21 12:03:51 +0100 | [diff] [blame] | 4166 | aio_context_release(aio_context); |
Alberto Garcia | f0f55de | 2016-05-27 12:53:37 +0200 | [diff] [blame] | 4167 | |
| 4168 | *p_next = elem; |
| 4169 | p_next = &elem->next; |
Markus Armbruster | fea68bb | 2014-10-07 13:59:10 +0200 | [diff] [blame] | 4170 | } |
| 4171 | |
| 4172 | return head; |
Stefan Hajnoczi | fb5458c | 2012-01-18 14:40:49 +0000 | [diff] [blame] | 4173 | } |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 4174 | |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 4175 | QemuOptsList qemu_common_drive_opts = { |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 4176 | .name = "drive", |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 4177 | .head = QTAILQ_HEAD_INITIALIZER(qemu_common_drive_opts.head), |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 4178 | .desc = { |
| 4179 | { |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 4180 | .name = "snapshot", |
| 4181 | .type = QEMU_OPT_BOOL, |
| 4182 | .help = "enable/disable snapshot mode", |
| 4183 | },{ |
Paolo Bonzini | a9384af | 2013-02-08 14:06:12 +0100 | [diff] [blame] | 4184 | .name = "discard", |
| 4185 | .type = QEMU_OPT_STRING, |
| 4186 | .help = "discard operation (ignore/off, unmap/on)", |
| 4187 | },{ |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 4188 | .name = "aio", |
| 4189 | .type = QEMU_OPT_STRING, |
| 4190 | .help = "host AIO implementation (threads, native)", |
| 4191 | },{ |
Kevin Wolf | e4b24b4 | 2016-03-15 15:39:42 +0100 | [diff] [blame] | 4192 | .name = BDRV_OPT_CACHE_WB, |
| 4193 | .type = QEMU_OPT_BOOL, |
| 4194 | .help = "Enable writeback mode", |
| 4195 | },{ |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 4196 | .name = "format", |
| 4197 | .type = QEMU_OPT_STRING, |
| 4198 | .help = "disk format (raw, qcow2, ...)", |
| 4199 | },{ |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 4200 | .name = "rerror", |
| 4201 | .type = QEMU_OPT_STRING, |
| 4202 | .help = "read error action", |
| 4203 | },{ |
| 4204 | .name = "werror", |
| 4205 | .type = QEMU_OPT_STRING, |
| 4206 | .help = "write error action", |
| 4207 | },{ |
Kevin Wolf | 0f227a9 | 2013-07-19 20:07:29 +0200 | [diff] [blame] | 4208 | .name = "read-only", |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 4209 | .type = QEMU_OPT_BOOL, |
| 4210 | .help = "open drive file as read-only", |
| 4211 | },{ |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 4212 | .name = "throttling.iops-total", |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 4213 | .type = QEMU_OPT_NUMBER, |
| 4214 | .help = "limit total I/O operations per second", |
| 4215 | },{ |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 4216 | .name = "throttling.iops-read", |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 4217 | .type = QEMU_OPT_NUMBER, |
| 4218 | .help = "limit read operations per second", |
| 4219 | },{ |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 4220 | .name = "throttling.iops-write", |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 4221 | .type = QEMU_OPT_NUMBER, |
| 4222 | .help = "limit write operations per second", |
| 4223 | },{ |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 4224 | .name = "throttling.bps-total", |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 4225 | .type = QEMU_OPT_NUMBER, |
| 4226 | .help = "limit total bytes per second", |
| 4227 | },{ |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 4228 | .name = "throttling.bps-read", |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 4229 | .type = QEMU_OPT_NUMBER, |
| 4230 | .help = "limit read bytes per second", |
| 4231 | },{ |
Kevin Wolf | 5797522 | 2013-07-17 14:41:54 +0200 | [diff] [blame] | 4232 | .name = "throttling.bps-write", |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 4233 | .type = QEMU_OPT_NUMBER, |
| 4234 | .help = "limit write bytes per second", |
| 4235 | },{ |
Benoît Canet | 3e9fab6 | 2013-09-02 14:14:40 +0200 | [diff] [blame] | 4236 | .name = "throttling.iops-total-max", |
| 4237 | .type = QEMU_OPT_NUMBER, |
| 4238 | .help = "I/O operations burst", |
| 4239 | },{ |
| 4240 | .name = "throttling.iops-read-max", |
| 4241 | .type = QEMU_OPT_NUMBER, |
| 4242 | .help = "I/O operations read burst", |
| 4243 | },{ |
| 4244 | .name = "throttling.iops-write-max", |
| 4245 | .type = QEMU_OPT_NUMBER, |
| 4246 | .help = "I/O operations write burst", |
| 4247 | },{ |
| 4248 | .name = "throttling.bps-total-max", |
| 4249 | .type = QEMU_OPT_NUMBER, |
| 4250 | .help = "total bytes burst", |
| 4251 | },{ |
| 4252 | .name = "throttling.bps-read-max", |
| 4253 | .type = QEMU_OPT_NUMBER, |
| 4254 | .help = "total bytes read burst", |
| 4255 | },{ |
| 4256 | .name = "throttling.bps-write-max", |
| 4257 | .type = QEMU_OPT_NUMBER, |
| 4258 | .help = "total bytes write burst", |
| 4259 | },{ |
Alberto Garcia | 8a0fc18 | 2016-02-18 12:27:02 +0200 | [diff] [blame] | 4260 | .name = "throttling.iops-total-max-length", |
| 4261 | .type = QEMU_OPT_NUMBER, |
| 4262 | .help = "length of the iops-total-max burst period, in seconds", |
| 4263 | },{ |
| 4264 | .name = "throttling.iops-read-max-length", |
| 4265 | .type = QEMU_OPT_NUMBER, |
| 4266 | .help = "length of the iops-read-max burst period, in seconds", |
| 4267 | },{ |
| 4268 | .name = "throttling.iops-write-max-length", |
| 4269 | .type = QEMU_OPT_NUMBER, |
| 4270 | .help = "length of the iops-write-max burst period, in seconds", |
| 4271 | },{ |
| 4272 | .name = "throttling.bps-total-max-length", |
| 4273 | .type = QEMU_OPT_NUMBER, |
| 4274 | .help = "length of the bps-total-max burst period, in seconds", |
| 4275 | },{ |
| 4276 | .name = "throttling.bps-read-max-length", |
| 4277 | .type = QEMU_OPT_NUMBER, |
| 4278 | .help = "length of the bps-read-max burst period, in seconds", |
| 4279 | },{ |
| 4280 | .name = "throttling.bps-write-max-length", |
| 4281 | .type = QEMU_OPT_NUMBER, |
| 4282 | .help = "length of the bps-write-max burst period, in seconds", |
| 4283 | },{ |
Benoît Canet | 2024c1d | 2013-09-02 14:14:41 +0200 | [diff] [blame] | 4284 | .name = "throttling.iops-size", |
| 4285 | .type = QEMU_OPT_NUMBER, |
| 4286 | .help = "when limiting by iops max size of an I/O in bytes", |
| 4287 | },{ |
Alberto Garcia | 76f4afb | 2015-06-08 18:17:44 +0200 | [diff] [blame] | 4288 | .name = "throttling.group", |
| 4289 | .type = QEMU_OPT_STRING, |
| 4290 | .help = "name of the block throttling group", |
| 4291 | },{ |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 4292 | .name = "copy-on-read", |
| 4293 | .type = QEMU_OPT_BOOL, |
| 4294 | .help = "copy read data from backing file into image file", |
Peter Lieven | 465bee1 | 2014-05-18 00:58:19 +0200 | [diff] [blame] | 4295 | },{ |
| 4296 | .name = "detect-zeroes", |
| 4297 | .type = QEMU_OPT_STRING, |
| 4298 | .help = "try to optimize zero writes (off, on, unmap)", |
Alberto Garcia | 362e929 | 2015-10-28 17:33:04 +0200 | [diff] [blame] | 4299 | },{ |
| 4300 | .name = "stats-account-invalid", |
| 4301 | .type = QEMU_OPT_BOOL, |
| 4302 | .help = "whether to account for invalid I/O operations " |
| 4303 | "in the statistics", |
| 4304 | },{ |
| 4305 | .name = "stats-account-failed", |
| 4306 | .type = QEMU_OPT_BOOL, |
| 4307 | .help = "whether to account for failed I/O operations " |
| 4308 | "in the statistics", |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 4309 | }, |
| 4310 | { /* end of list */ } |
| 4311 | }, |
| 4312 | }; |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 4313 | |
Max Reitz | bd745e2 | 2015-10-19 17:53:32 +0200 | [diff] [blame] | 4314 | static QemuOptsList qemu_root_bds_opts = { |
| 4315 | .name = "root-bds", |
Kevin Wolf | 23f7fcb | 2016-03-15 14:43:14 +0100 | [diff] [blame] | 4316 | .head = QTAILQ_HEAD_INITIALIZER(qemu_root_bds_opts.head), |
Max Reitz | bd745e2 | 2015-10-19 17:53:32 +0200 | [diff] [blame] | 4317 | .desc = { |
| 4318 | { |
| 4319 | .name = "discard", |
| 4320 | .type = QEMU_OPT_STRING, |
| 4321 | .help = "discard operation (ignore/off, unmap/on)", |
| 4322 | },{ |
Max Reitz | bd745e2 | 2015-10-19 17:53:32 +0200 | [diff] [blame] | 4323 | .name = "aio", |
| 4324 | .type = QEMU_OPT_STRING, |
| 4325 | .help = "host AIO implementation (threads, native)", |
| 4326 | },{ |
| 4327 | .name = "read-only", |
| 4328 | .type = QEMU_OPT_BOOL, |
| 4329 | .help = "open drive file as read-only", |
| 4330 | },{ |
| 4331 | .name = "copy-on-read", |
| 4332 | .type = QEMU_OPT_BOOL, |
| 4333 | .help = "copy read data from backing file into image file", |
| 4334 | },{ |
| 4335 | .name = "detect-zeroes", |
| 4336 | .type = QEMU_OPT_STRING, |
| 4337 | .help = "try to optimize zero writes (off, on, unmap)", |
| 4338 | }, |
| 4339 | { /* end of list */ } |
| 4340 | }, |
| 4341 | }; |
| 4342 | |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 4343 | QemuOptsList qemu_drive_opts = { |
| 4344 | .name = "drive", |
| 4345 | .head = QTAILQ_HEAD_INITIALIZER(qemu_drive_opts.head), |
| 4346 | .desc = { |
Kevin Wolf | 492fdc6 | 2013-06-19 13:44:17 +0200 | [diff] [blame] | 4347 | /* |
| 4348 | * no elements => accept any params |
| 4349 | * validation will happen later |
| 4350 | */ |
Kevin Wolf | 0006383 | 2013-03-15 10:35:07 +0100 | [diff] [blame] | 4351 | { /* end of list */ } |
| 4352 | }, |
| 4353 | }; |