]>
Commit | Line | Data |
---|---|---|
666daa68 MA |
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. | |
3618a094 MA |
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. | |
666daa68 MA |
31 | */ |
32 | ||
26f54e9a | 33 | #include "sysemu/block-backend.h" |
9c17d615 | 34 | #include "sysemu/blockdev.h" |
0d09e41a | 35 | #include "hw/block/block.h" |
737e150e | 36 | #include "block/blockjob.h" |
83c9089e | 37 | #include "monitor/monitor.h" |
1de7afc9 PB |
38 | #include "qemu/option.h" |
39 | #include "qemu/config-file.h" | |
7b1b5d19 | 40 | #include "qapi/qmp/types.h" |
d26c9a15 KW |
41 | #include "qapi-visit.h" |
42 | #include "qapi/qmp-output-visitor.h" | |
9e7dac7c | 43 | #include "qapi/util.h" |
9c17d615 | 44 | #include "sysemu/sysemu.h" |
737e150e | 45 | #include "block/block_int.h" |
a4dea8a9 | 46 | #include "qmp-commands.h" |
12bd451f | 47 | #include "trace.h" |
9c17d615 | 48 | #include "sysemu/arch_init.h" |
666daa68 | 49 | |
1960966d MA |
50 | static const char *const if_name[IF_COUNT] = { |
51 | [IF_NONE] = "none", | |
52 | [IF_IDE] = "ide", | |
53 | [IF_SCSI] = "scsi", | |
54 | [IF_FLOPPY] = "floppy", | |
55 | [IF_PFLASH] = "pflash", | |
56 | [IF_MTD] = "mtd", | |
57 | [IF_SD] = "sd", | |
58 | [IF_VIRTIO] = "virtio", | |
59 | [IF_XEN] = "xen", | |
60 | }; | |
61 | ||
21dff8cf | 62 | static int if_max_devs[IF_COUNT] = { |
27d6bf40 MA |
63 | /* |
64 | * Do not change these numbers! They govern how drive option | |
65 | * index maps to unit and bus. That mapping is ABI. | |
66 | * | |
67 | * All controllers used to imlement if=T drives need to support | |
68 | * if_max_devs[T] units, for any T with if_max_devs[T] != 0. | |
69 | * Otherwise, some index values map to "impossible" bus, unit | |
70 | * values. | |
71 | * | |
72 | * For instance, if you change [IF_SCSI] to 255, -drive | |
73 | * if=scsi,index=12 no longer means bus=1,unit=5, but | |
74 | * bus=0,unit=12. With an lsi53c895a controller (7 units max), | |
75 | * the drive can't be set up. Regression. | |
76 | */ | |
77 | [IF_IDE] = 2, | |
78 | [IF_SCSI] = 7, | |
1960966d MA |
79 | }; |
80 | ||
21dff8cf JS |
81 | /** |
82 | * Boards may call this to offer board-by-board overrides | |
83 | * of the default, global values. | |
84 | */ | |
85 | void override_max_devs(BlockInterfaceType type, int max_devs) | |
86 | { | |
18e46a03 | 87 | BlockBackend *blk; |
21dff8cf JS |
88 | DriveInfo *dinfo; |
89 | ||
90 | if (max_devs <= 0) { | |
91 | return; | |
92 | } | |
93 | ||
18e46a03 MA |
94 | for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { |
95 | dinfo = blk_legacy_dinfo(blk); | |
21dff8cf JS |
96 | if (dinfo->type == type) { |
97 | fprintf(stderr, "Cannot override units-per-bus property of" | |
98 | " the %s interface, because a drive of that type has" | |
99 | " already been added.\n", if_name[type]); | |
100 | g_assert_not_reached(); | |
101 | } | |
102 | } | |
103 | ||
104 | if_max_devs[type] = max_devs; | |
105 | } | |
106 | ||
14bafc54 MA |
107 | /* |
108 | * We automatically delete the drive when a device using it gets | |
109 | * unplugged. Questionable feature, but we can't just drop it. | |
110 | * Device models call blockdev_mark_auto_del() to schedule the | |
111 | * automatic deletion, and generic qdev code calls blockdev_auto_del() | |
112 | * when deletion is actually safe. | |
113 | */ | |
4be74634 | 114 | void blockdev_mark_auto_del(BlockBackend *blk) |
14bafc54 | 115 | { |
18e46a03 | 116 | DriveInfo *dinfo = blk_legacy_dinfo(blk); |
4be74634 | 117 | BlockDriverState *bs = blk_bs(blk); |
91fddb0d | 118 | AioContext *aio_context; |
14bafc54 | 119 | |
26f8b3a8 | 120 | if (!dinfo) { |
2d246f01 KW |
121 | return; |
122 | } | |
123 | ||
91fddb0d SH |
124 | aio_context = bdrv_get_aio_context(bs); |
125 | aio_context_acquire(aio_context); | |
126 | ||
12bde0ee PB |
127 | if (bs->job) { |
128 | block_job_cancel(bs->job); | |
129 | } | |
91fddb0d SH |
130 | |
131 | aio_context_release(aio_context); | |
132 | ||
26f8b3a8 | 133 | dinfo->auto_del = 1; |
14bafc54 MA |
134 | } |
135 | ||
4be74634 | 136 | void blockdev_auto_del(BlockBackend *blk) |
14bafc54 | 137 | { |
18e46a03 | 138 | DriveInfo *dinfo = blk_legacy_dinfo(blk); |
14bafc54 | 139 | |
0fc0f1fa | 140 | if (dinfo && dinfo->auto_del) { |
b9fe8a7a | 141 | blk_unref(blk); |
14bafc54 MA |
142 | } |
143 | } | |
144 | ||
d8f94e1b JS |
145 | /** |
146 | * Returns the current mapping of how many units per bus | |
147 | * a particular interface can support. | |
148 | * | |
149 | * A positive integer indicates n units per bus. | |
150 | * 0 implies the mapping has not been established. | |
151 | * -1 indicates an invalid BlockInterfaceType was given. | |
152 | */ | |
153 | int drive_get_max_devs(BlockInterfaceType type) | |
154 | { | |
155 | if (type >= IF_IDE && type < IF_COUNT) { | |
156 | return if_max_devs[type]; | |
157 | } | |
158 | ||
159 | return -1; | |
160 | } | |
161 | ||
505a7fb1 MA |
162 | static int drive_index_to_bus_id(BlockInterfaceType type, int index) |
163 | { | |
164 | int max_devs = if_max_devs[type]; | |
165 | return max_devs ? index / max_devs : 0; | |
166 | } | |
167 | ||
168 | static int drive_index_to_unit_id(BlockInterfaceType type, int index) | |
169 | { | |
170 | int max_devs = if_max_devs[type]; | |
171 | return max_devs ? index % max_devs : index; | |
172 | } | |
173 | ||
2292ddae MA |
174 | QemuOpts *drive_def(const char *optstr) |
175 | { | |
176 | return qemu_opts_parse(qemu_find_opts("drive"), optstr, 0); | |
177 | } | |
178 | ||
179 | QemuOpts *drive_add(BlockInterfaceType type, int index, const char *file, | |
5645b0f4 | 180 | const char *optstr) |
666daa68 | 181 | { |
666daa68 | 182 | QemuOpts *opts; |
2292ddae | 183 | char buf[32]; |
666daa68 | 184 | |
2292ddae | 185 | opts = drive_def(optstr); |
666daa68 MA |
186 | if (!opts) { |
187 | return NULL; | |
188 | } | |
2292ddae MA |
189 | if (type != IF_DEFAULT) { |
190 | qemu_opt_set(opts, "if", if_name[type]); | |
191 | } | |
192 | if (index >= 0) { | |
193 | snprintf(buf, sizeof(buf), "%d", index); | |
194 | qemu_opt_set(opts, "index", buf); | |
195 | } | |
666daa68 MA |
196 | if (file) |
197 | qemu_opt_set(opts, "file", file); | |
198 | return opts; | |
199 | } | |
200 | ||
201 | DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit) | |
202 | { | |
18e46a03 | 203 | BlockBackend *blk; |
666daa68 MA |
204 | DriveInfo *dinfo; |
205 | ||
18e46a03 MA |
206 | for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { |
207 | dinfo = blk_legacy_dinfo(blk); | |
208 | if (dinfo && dinfo->type == type | |
209 | && dinfo->bus == bus && dinfo->unit == unit) { | |
666daa68 | 210 | return dinfo; |
18e46a03 | 211 | } |
666daa68 MA |
212 | } |
213 | ||
214 | return NULL; | |
215 | } | |
216 | ||
a66c9dc7 JS |
217 | bool drive_check_orphaned(void) |
218 | { | |
18e46a03 | 219 | BlockBackend *blk; |
a66c9dc7 JS |
220 | DriveInfo *dinfo; |
221 | bool rs = false; | |
222 | ||
18e46a03 MA |
223 | for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { |
224 | dinfo = blk_legacy_dinfo(blk); | |
a66c9dc7 JS |
225 | /* If dinfo->bdrv->dev is NULL, it has no device attached. */ |
226 | /* Unless this is a default drive, this may be an oversight. */ | |
a7f53e26 | 227 | if (!blk_get_attached_dev(blk) && !dinfo->is_default && |
a66c9dc7 JS |
228 | dinfo->type != IF_NONE) { |
229 | fprintf(stderr, "Warning: Orphaned drive without device: " | |
230 | "id=%s,file=%s,if=%s,bus=%d,unit=%d\n", | |
d3aeb1b7 | 231 | blk_name(blk), blk_bs(blk)->filename, if_name[dinfo->type], |
a66c9dc7 JS |
232 | dinfo->bus, dinfo->unit); |
233 | rs = true; | |
234 | } | |
235 | } | |
236 | ||
237 | return rs; | |
238 | } | |
239 | ||
f1bd51ac MA |
240 | DriveInfo *drive_get_by_index(BlockInterfaceType type, int index) |
241 | { | |
242 | return drive_get(type, | |
243 | drive_index_to_bus_id(type, index), | |
244 | drive_index_to_unit_id(type, index)); | |
245 | } | |
246 | ||
666daa68 MA |
247 | int drive_get_max_bus(BlockInterfaceType type) |
248 | { | |
249 | int max_bus; | |
18e46a03 | 250 | BlockBackend *blk; |
666daa68 MA |
251 | DriveInfo *dinfo; |
252 | ||
253 | max_bus = -1; | |
18e46a03 MA |
254 | for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { |
255 | dinfo = blk_legacy_dinfo(blk); | |
256 | if (dinfo && dinfo->type == type && dinfo->bus > max_bus) { | |
666daa68 | 257 | max_bus = dinfo->bus; |
18e46a03 | 258 | } |
666daa68 MA |
259 | } |
260 | return max_bus; | |
261 | } | |
262 | ||
13839974 MA |
263 | /* Get a block device. This should only be used for single-drive devices |
264 | (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the | |
265 | appropriate bus. */ | |
266 | DriveInfo *drive_get_next(BlockInterfaceType type) | |
267 | { | |
268 | static int next_block_unit[IF_COUNT]; | |
269 | ||
270 | return drive_get(type, 0, next_block_unit[type]++); | |
271 | } | |
272 | ||
666daa68 MA |
273 | static void bdrv_format_print(void *opaque, const char *name) |
274 | { | |
807105a7 | 275 | error_printf(" %s", name); |
666daa68 MA |
276 | } |
277 | ||
aa398a5c SH |
278 | typedef struct { |
279 | QEMUBH *bh; | |
fa510ebf FZ |
280 | BlockDriverState *bs; |
281 | } BDRVPutRefBH; | |
aa398a5c | 282 | |
fa510ebf | 283 | static void bdrv_put_ref_bh(void *opaque) |
aa398a5c | 284 | { |
fa510ebf | 285 | BDRVPutRefBH *s = opaque; |
aa398a5c | 286 | |
fa510ebf | 287 | bdrv_unref(s->bs); |
aa398a5c SH |
288 | qemu_bh_delete(s->bh); |
289 | g_free(s); | |
290 | } | |
291 | ||
292 | /* | |
fa510ebf | 293 | * Release a BDS reference in a BH |
aa398a5c | 294 | * |
fa510ebf FZ |
295 | * It is not safe to use bdrv_unref() from a callback function when the callers |
296 | * still need the BlockDriverState. In such cases we schedule a BH to release | |
297 | * the reference. | |
aa398a5c | 298 | */ |
fa510ebf | 299 | static void bdrv_put_ref_bh_schedule(BlockDriverState *bs) |
aa398a5c | 300 | { |
fa510ebf | 301 | BDRVPutRefBH *s; |
aa398a5c | 302 | |
fa510ebf FZ |
303 | s = g_new(BDRVPutRefBH, 1); |
304 | s->bh = qemu_bh_new(bdrv_put_ref_bh, s); | |
305 | s->bs = bs; | |
aa398a5c SH |
306 | qemu_bh_schedule(s->bh); |
307 | } | |
308 | ||
b681072d | 309 | static int parse_block_error_action(const char *buf, bool is_read, Error **errp) |
666daa68 MA |
310 | { |
311 | if (!strcmp(buf, "ignore")) { | |
92aa5c6d | 312 | return BLOCKDEV_ON_ERROR_IGNORE; |
666daa68 | 313 | } else if (!is_read && !strcmp(buf, "enospc")) { |
92aa5c6d | 314 | return BLOCKDEV_ON_ERROR_ENOSPC; |
666daa68 | 315 | } else if (!strcmp(buf, "stop")) { |
92aa5c6d | 316 | return BLOCKDEV_ON_ERROR_STOP; |
666daa68 | 317 | } else if (!strcmp(buf, "report")) { |
92aa5c6d | 318 | return BLOCKDEV_ON_ERROR_REPORT; |
666daa68 | 319 | } else { |
b681072d KW |
320 | error_setg(errp, "'%s' invalid %s error action", |
321 | buf, is_read ? "read" : "write"); | |
666daa68 MA |
322 | return -1; |
323 | } | |
324 | } | |
325 | ||
cc0681c4 | 326 | static bool check_throttle_config(ThrottleConfig *cfg, Error **errp) |
0563e191 | 327 | { |
cc0681c4 BC |
328 | if (throttle_conflicting(cfg)) { |
329 | error_setg(errp, "bps/iops/max total values and read/write values" | |
330 | " cannot be used at the same time"); | |
0563e191 ZYW |
331 | return false; |
332 | } | |
333 | ||
cc0681c4 BC |
334 | if (!throttle_is_valid(cfg)) { |
335 | error_setg(errp, "bps/iops/maxs values must be 0 or greater"); | |
7d81c141 SH |
336 | return false; |
337 | } | |
338 | ||
0563e191 ZYW |
339 | return true; |
340 | } | |
341 | ||
33cb7dc8 KW |
342 | typedef enum { MEDIA_DISK, MEDIA_CDROM } DriveMediaType; |
343 | ||
f298d071 | 344 | /* Takes the ownership of bs_opts */ |
18e46a03 MA |
345 | static BlockBackend *blockdev_init(const char *file, QDict *bs_opts, |
346 | Error **errp) | |
666daa68 MA |
347 | { |
348 | const char *buf; | |
666daa68 MA |
349 | int ro = 0; |
350 | int bdrv_flags = 0; | |
351 | int on_read_error, on_write_error; | |
26f54e9a | 352 | BlockBackend *blk; |
a0f1eab1 | 353 | BlockDriverState *bs; |
cc0681c4 | 354 | ThrottleConfig cfg; |
666daa68 | 355 | int snapshot = 0; |
fb0490f6 | 356 | bool copy_on_read; |
666daa68 | 357 | int ret; |
c546194f | 358 | Error *error = NULL; |
0006383e | 359 | QemuOpts *opts; |
0006383e | 360 | const char *id; |
74fe54f2 | 361 | bool has_driver_specific_opts; |
465bee1d | 362 | BlockdevDetectZeroesOptions detect_zeroes; |
6db5f5d6 | 363 | BlockDriver *drv = NULL; |
666daa68 | 364 | |
f298d071 KW |
365 | /* Check common options by copying from bs_opts to opts, all other options |
366 | * stay in bs_opts for processing by bdrv_open(). */ | |
367 | id = qdict_get_try_str(bs_opts, "id"); | |
0006383e | 368 | opts = qemu_opts_create(&qemu_common_drive_opts, id, 1, &error); |
84d18f06 | 369 | if (error) { |
b681072d | 370 | error_propagate(errp, error); |
6376f952 | 371 | goto err_no_opts; |
0006383e KW |
372 | } |
373 | ||
0006383e | 374 | qemu_opts_absorb_qdict(opts, bs_opts, &error); |
84d18f06 | 375 | if (error) { |
b681072d | 376 | error_propagate(errp, error); |
ec9c10d2 | 377 | goto early_err; |
0006383e KW |
378 | } |
379 | ||
380 | if (id) { | |
381 | qdict_del(bs_opts, "id"); | |
382 | } | |
383 | ||
74fe54f2 KW |
384 | has_driver_specific_opts = !!qdict_size(bs_opts); |
385 | ||
666daa68 | 386 | /* extract parameters */ |
666daa68 | 387 | snapshot = qemu_opt_get_bool(opts, "snapshot", 0); |
0f227a94 | 388 | ro = qemu_opt_get_bool(opts, "read-only", 0); |
fb0490f6 | 389 | copy_on_read = qemu_opt_get_bool(opts, "copy-on-read", false); |
666daa68 | 390 | |
a9384aff PB |
391 | if ((buf = qemu_opt_get(opts, "discard")) != NULL) { |
392 | if (bdrv_parse_discard_flags(buf, &bdrv_flags) != 0) { | |
b681072d | 393 | error_setg(errp, "invalid discard option"); |
ec9c10d2 | 394 | goto early_err; |
a9384aff PB |
395 | } |
396 | } | |
397 | ||
29c4e2b5 KW |
398 | if (qemu_opt_get_bool(opts, "cache.writeback", true)) { |
399 | bdrv_flags |= BDRV_O_CACHE_WB; | |
400 | } | |
401 | if (qemu_opt_get_bool(opts, "cache.direct", false)) { | |
402 | bdrv_flags |= BDRV_O_NOCACHE; | |
403 | } | |
1df6fa4b | 404 | if (qemu_opt_get_bool(opts, "cache.no-flush", false)) { |
29c4e2b5 | 405 | bdrv_flags |= BDRV_O_NO_FLUSH; |
666daa68 MA |
406 | } |
407 | ||
408 | #ifdef CONFIG_LINUX_AIO | |
409 | if ((buf = qemu_opt_get(opts, "aio")) != NULL) { | |
410 | if (!strcmp(buf, "native")) { | |
411 | bdrv_flags |= BDRV_O_NATIVE_AIO; | |
412 | } else if (!strcmp(buf, "threads")) { | |
413 | /* this is the default */ | |
414 | } else { | |
b681072d | 415 | error_setg(errp, "invalid aio option"); |
ec9c10d2 | 416 | goto early_err; |
666daa68 MA |
417 | } |
418 | } | |
419 | #endif | |
420 | ||
421 | if ((buf = qemu_opt_get(opts, "format")) != NULL) { | |
c8057f95 PM |
422 | if (is_help_option(buf)) { |
423 | error_printf("Supported formats:"); | |
424 | bdrv_iterate_format(bdrv_format_print, NULL); | |
425 | error_printf("\n"); | |
ec9c10d2 | 426 | goto early_err; |
666daa68 | 427 | } |
74fe54f2 | 428 | |
8f94a6e4 | 429 | drv = bdrv_find_format(buf); |
6db5f5d6 | 430 | if (!drv) { |
b681072d | 431 | error_setg(errp, "'%s' invalid format", buf); |
ec9c10d2 | 432 | goto early_err; |
6db5f5d6 | 433 | } |
666daa68 MA |
434 | } |
435 | ||
0563e191 | 436 | /* disk I/O throttling */ |
cc0681c4 BC |
437 | memset(&cfg, 0, sizeof(cfg)); |
438 | cfg.buckets[THROTTLE_BPS_TOTAL].avg = | |
57975222 | 439 | qemu_opt_get_number(opts, "throttling.bps-total", 0); |
cc0681c4 | 440 | cfg.buckets[THROTTLE_BPS_READ].avg = |
57975222 | 441 | qemu_opt_get_number(opts, "throttling.bps-read", 0); |
cc0681c4 | 442 | cfg.buckets[THROTTLE_BPS_WRITE].avg = |
57975222 | 443 | qemu_opt_get_number(opts, "throttling.bps-write", 0); |
cc0681c4 | 444 | cfg.buckets[THROTTLE_OPS_TOTAL].avg = |
57975222 | 445 | qemu_opt_get_number(opts, "throttling.iops-total", 0); |
cc0681c4 | 446 | cfg.buckets[THROTTLE_OPS_READ].avg = |
57975222 | 447 | qemu_opt_get_number(opts, "throttling.iops-read", 0); |
cc0681c4 | 448 | cfg.buckets[THROTTLE_OPS_WRITE].avg = |
57975222 | 449 | qemu_opt_get_number(opts, "throttling.iops-write", 0); |
0563e191 | 450 | |
3e9fab69 BC |
451 | cfg.buckets[THROTTLE_BPS_TOTAL].max = |
452 | qemu_opt_get_number(opts, "throttling.bps-total-max", 0); | |
453 | cfg.buckets[THROTTLE_BPS_READ].max = | |
454 | qemu_opt_get_number(opts, "throttling.bps-read-max", 0); | |
455 | cfg.buckets[THROTTLE_BPS_WRITE].max = | |
456 | qemu_opt_get_number(opts, "throttling.bps-write-max", 0); | |
457 | cfg.buckets[THROTTLE_OPS_TOTAL].max = | |
458 | qemu_opt_get_number(opts, "throttling.iops-total-max", 0); | |
459 | cfg.buckets[THROTTLE_OPS_READ].max = | |
460 | qemu_opt_get_number(opts, "throttling.iops-read-max", 0); | |
461 | cfg.buckets[THROTTLE_OPS_WRITE].max = | |
462 | qemu_opt_get_number(opts, "throttling.iops-write-max", 0); | |
cc0681c4 | 463 | |
2024c1df | 464 | cfg.op_size = qemu_opt_get_number(opts, "throttling.iops-size", 0); |
cc0681c4 BC |
465 | |
466 | if (!check_throttle_config(&cfg, &error)) { | |
b681072d | 467 | error_propagate(errp, error); |
ec9c10d2 | 468 | goto early_err; |
0563e191 ZYW |
469 | } |
470 | ||
92aa5c6d | 471 | on_write_error = BLOCKDEV_ON_ERROR_ENOSPC; |
666daa68 | 472 | if ((buf = qemu_opt_get(opts, "werror")) != NULL) { |
b681072d | 473 | on_write_error = parse_block_error_action(buf, 0, &error); |
84d18f06 | 474 | if (error) { |
b681072d | 475 | error_propagate(errp, error); |
ec9c10d2 | 476 | goto early_err; |
666daa68 MA |
477 | } |
478 | } | |
479 | ||
92aa5c6d | 480 | on_read_error = BLOCKDEV_ON_ERROR_REPORT; |
666daa68 | 481 | if ((buf = qemu_opt_get(opts, "rerror")) != NULL) { |
b681072d | 482 | on_read_error = parse_block_error_action(buf, 1, &error); |
84d18f06 | 483 | if (error) { |
b681072d | 484 | error_propagate(errp, error); |
ec9c10d2 | 485 | goto early_err; |
666daa68 MA |
486 | } |
487 | } | |
488 | ||
465bee1d | 489 | detect_zeroes = |
9e7dac7c PL |
490 | qapi_enum_parse(BlockdevDetectZeroesOptions_lookup, |
491 | qemu_opt_get(opts, "detect-zeroes"), | |
492 | BLOCKDEV_DETECT_ZEROES_OPTIONS_MAX, | |
493 | BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, | |
494 | &error); | |
465bee1d PL |
495 | if (error) { |
496 | error_propagate(errp, error); | |
497 | goto early_err; | |
498 | } | |
499 | ||
500 | if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP && | |
501 | !(bdrv_flags & BDRV_O_UNMAP)) { | |
502 | error_setg(errp, "setting detect-zeroes to unmap is not allowed " | |
503 | "without setting discard operation to unmap"); | |
504 | goto early_err; | |
505 | } | |
506 | ||
326642bc | 507 | /* init */ |
7e7d56d9 | 508 | blk = blk_new_with_bs(qemu_opts_id(opts), errp); |
26f54e9a MA |
509 | if (!blk) { |
510 | goto early_err; | |
511 | } | |
7e7d56d9 | 512 | bs = blk_bs(blk); |
a0f1eab1 MA |
513 | bs->open_flags = snapshot ? BDRV_O_SNAPSHOT : 0; |
514 | bs->read_only = ro; | |
515 | bs->detect_zeroes = detect_zeroes; | |
666daa68 | 516 | |
a0f1eab1 | 517 | bdrv_set_on_error(bs, on_read_error, on_write_error); |
abd7f68d | 518 | |
0563e191 | 519 | /* disk I/O throttling */ |
cc0681c4 | 520 | if (throttle_enabled(&cfg)) { |
a0f1eab1 MA |
521 | bdrv_io_limits_enable(bs); |
522 | bdrv_set_io_limits(bs, &cfg); | |
cc0681c4 | 523 | } |
0563e191 | 524 | |
dd5b0d71 | 525 | if (!file || !*file) { |
74fe54f2 | 526 | if (has_driver_specific_opts) { |
c2ad1b0c KW |
527 | file = NULL; |
528 | } else { | |
ec9c10d2 SH |
529 | QDECREF(bs_opts); |
530 | qemu_opts_del(opts); | |
18e46a03 | 531 | return blk; |
c2ad1b0c | 532 | } |
666daa68 MA |
533 | } |
534 | if (snapshot) { | |
535 | /* always use cache=unsafe with snapshot */ | |
536 | bdrv_flags &= ~BDRV_O_CACHE_MASK; | |
537 | bdrv_flags |= (BDRV_O_SNAPSHOT|BDRV_O_CACHE_WB|BDRV_O_NO_FLUSH); | |
538 | } | |
539 | ||
fb0490f6 SH |
540 | if (copy_on_read) { |
541 | bdrv_flags |= BDRV_O_COPY_ON_READ; | |
542 | } | |
543 | ||
ed9d4205 BC |
544 | if (runstate_check(RUN_STATE_INMIGRATE)) { |
545 | bdrv_flags |= BDRV_O_INCOMING; | |
546 | } | |
547 | ||
666daa68 MA |
548 | bdrv_flags |= ro ? 0 : BDRV_O_RDWR; |
549 | ||
74fe54f2 | 550 | QINCREF(bs_opts); |
a0f1eab1 | 551 | ret = bdrv_open(&bs, file, NULL, bs_opts, bdrv_flags, drv, &error); |
fa1d36df | 552 | assert(bs == blk_bs(blk)); |
0006383e | 553 | |
666daa68 | 554 | if (ret < 0) { |
b681072d | 555 | error_setg(errp, "could not open disk image %s: %s", |
d3aeb1b7 | 556 | file ?: blk_name(blk), error_get_pretty(error)); |
b681072d | 557 | error_free(error); |
a9ae2bff | 558 | goto err; |
666daa68 MA |
559 | } |
560 | ||
a0f1eab1 | 561 | if (bdrv_key_required(bs)) { |
666daa68 | 562 | autostart = 0; |
a0f1eab1 | 563 | } |
0006383e | 564 | |
74fe54f2 | 565 | QDECREF(bs_opts); |
0006383e KW |
566 | qemu_opts_del(opts); |
567 | ||
18e46a03 | 568 | return blk; |
a9ae2bff MA |
569 | |
570 | err: | |
26f54e9a | 571 | blk_unref(blk); |
ec9c10d2 | 572 | early_err: |
ec9c10d2 | 573 | qemu_opts_del(opts); |
6376f952 MA |
574 | err_no_opts: |
575 | QDECREF(bs_opts); | |
a9ae2bff | 576 | return NULL; |
666daa68 MA |
577 | } |
578 | ||
5abbf0ee KW |
579 | static void qemu_opt_rename(QemuOpts *opts, const char *from, const char *to, |
580 | Error **errp) | |
57975222 KW |
581 | { |
582 | const char *value; | |
583 | ||
584 | value = qemu_opt_get(opts, from); | |
585 | if (value) { | |
5abbf0ee KW |
586 | if (qemu_opt_find(opts, to)) { |
587 | error_setg(errp, "'%s' and its alias '%s' can't be used at the " | |
588 | "same time", to, from); | |
589 | return; | |
590 | } | |
20d6cd47 JL |
591 | } |
592 | ||
593 | /* rename all items in opts */ | |
594 | while ((value = qemu_opt_get(opts, from))) { | |
57975222 KW |
595 | qemu_opt_set(opts, to, value); |
596 | qemu_opt_unset(opts, from); | |
597 | } | |
598 | } | |
599 | ||
33cb7dc8 KW |
600 | QemuOptsList qemu_legacy_drive_opts = { |
601 | .name = "drive", | |
602 | .head = QTAILQ_HEAD_INITIALIZER(qemu_legacy_drive_opts.head), | |
603 | .desc = { | |
604 | { | |
87a899c5 KW |
605 | .name = "bus", |
606 | .type = QEMU_OPT_NUMBER, | |
607 | .help = "bus number", | |
608 | },{ | |
609 | .name = "unit", | |
610 | .type = QEMU_OPT_NUMBER, | |
611 | .help = "unit number (i.e. lun for scsi)", | |
612 | },{ | |
613 | .name = "index", | |
614 | .type = QEMU_OPT_NUMBER, | |
615 | .help = "index number", | |
616 | },{ | |
33cb7dc8 KW |
617 | .name = "media", |
618 | .type = QEMU_OPT_STRING, | |
619 | .help = "media type (disk, cdrom)", | |
593d464b KW |
620 | },{ |
621 | .name = "if", | |
622 | .type = QEMU_OPT_STRING, | |
623 | .help = "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)", | |
b41a7338 KW |
624 | },{ |
625 | .name = "cyls", | |
626 | .type = QEMU_OPT_NUMBER, | |
627 | .help = "number of cylinders (ide disk geometry)", | |
628 | },{ | |
629 | .name = "heads", | |
630 | .type = QEMU_OPT_NUMBER, | |
631 | .help = "number of heads (ide disk geometry)", | |
632 | },{ | |
633 | .name = "secs", | |
634 | .type = QEMU_OPT_NUMBER, | |
635 | .help = "number of sectors (ide disk geometry)", | |
636 | },{ | |
637 | .name = "trans", | |
638 | .type = QEMU_OPT_STRING, | |
639 | .help = "chs translation (auto, lba, none)", | |
26929298 KW |
640 | },{ |
641 | .name = "boot", | |
642 | .type = QEMU_OPT_BOOL, | |
643 | .help = "(deprecated, ignored)", | |
394c7d4d KW |
644 | },{ |
645 | .name = "addr", | |
646 | .type = QEMU_OPT_STRING, | |
647 | .help = "pci address (virtio only)", | |
bcf83158 KW |
648 | },{ |
649 | .name = "serial", | |
650 | .type = QEMU_OPT_STRING, | |
651 | .help = "disk serial number", | |
d095b465 HR |
652 | },{ |
653 | .name = "file", | |
654 | .type = QEMU_OPT_STRING, | |
655 | .help = "file name", | |
33cb7dc8 | 656 | }, |
0ebd24e0 KW |
657 | |
658 | /* Options that are passed on, but have special semantics with -drive */ | |
659 | { | |
660 | .name = "read-only", | |
661 | .type = QEMU_OPT_BOOL, | |
662 | .help = "open drive file as read-only", | |
ee13ed1c KW |
663 | },{ |
664 | .name = "rerror", | |
665 | .type = QEMU_OPT_STRING, | |
666 | .help = "read error action", | |
667 | },{ | |
668 | .name = "werror", | |
669 | .type = QEMU_OPT_STRING, | |
670 | .help = "write error action", | |
0ebd24e0 KW |
671 | },{ |
672 | .name = "copy-on-read", | |
673 | .type = QEMU_OPT_BOOL, | |
674 | .help = "copy read data from backing file into image file", | |
675 | }, | |
676 | ||
33cb7dc8 KW |
677 | { /* end of list */ } |
678 | }, | |
679 | }; | |
680 | ||
60e19e06 | 681 | DriveInfo *drive_new(QemuOpts *all_opts, BlockInterfaceType block_default_type) |
57975222 | 682 | { |
29c4e2b5 | 683 | const char *value; |
18e46a03 | 684 | BlockBackend *blk; |
33cb7dc8 | 685 | DriveInfo *dinfo = NULL; |
f298d071 | 686 | QDict *bs_opts; |
33cb7dc8 KW |
687 | QemuOpts *legacy_opts; |
688 | DriveMediaType media = MEDIA_DISK; | |
593d464b | 689 | BlockInterfaceType type; |
b41a7338 | 690 | int cyls, heads, secs, translation; |
87a899c5 | 691 | int max_devs, bus_id, unit_id, index; |
394c7d4d | 692 | const char *devaddr; |
ee13ed1c | 693 | const char *werror, *rerror; |
a7fdbcf0 FZ |
694 | bool read_only = false; |
695 | bool copy_on_read; | |
bcf83158 | 696 | const char *serial; |
d095b465 | 697 | const char *filename; |
33cb7dc8 | 698 | Error *local_err = NULL; |
247147fb | 699 | int i; |
29c4e2b5 | 700 | |
57975222 | 701 | /* Change legacy command line options into QMP ones */ |
247147fb KW |
702 | static const struct { |
703 | const char *from; | |
704 | const char *to; | |
705 | } opt_renames[] = { | |
706 | { "iops", "throttling.iops-total" }, | |
707 | { "iops_rd", "throttling.iops-read" }, | |
708 | { "iops_wr", "throttling.iops-write" }, | |
57975222 | 709 | |
247147fb KW |
710 | { "bps", "throttling.bps-total" }, |
711 | { "bps_rd", "throttling.bps-read" }, | |
712 | { "bps_wr", "throttling.bps-write" }, | |
57975222 | 713 | |
247147fb KW |
714 | { "iops_max", "throttling.iops-total-max" }, |
715 | { "iops_rd_max", "throttling.iops-read-max" }, | |
716 | { "iops_wr_max", "throttling.iops-write-max" }, | |
3e9fab69 | 717 | |
247147fb KW |
718 | { "bps_max", "throttling.bps-total-max" }, |
719 | { "bps_rd_max", "throttling.bps-read-max" }, | |
720 | { "bps_wr_max", "throttling.bps-write-max" }, | |
3e9fab69 | 721 | |
247147fb | 722 | { "iops_size", "throttling.iops-size" }, |
2024c1df | 723 | |
247147fb KW |
724 | { "readonly", "read-only" }, |
725 | }; | |
726 | ||
727 | for (i = 0; i < ARRAY_SIZE(opt_renames); i++) { | |
5abbf0ee KW |
728 | qemu_opt_rename(all_opts, opt_renames[i].from, opt_renames[i].to, |
729 | &local_err); | |
730 | if (local_err) { | |
731 | error_report("%s", error_get_pretty(local_err)); | |
732 | error_free(local_err); | |
733 | return NULL; | |
734 | } | |
247147fb | 735 | } |
0f227a94 | 736 | |
29c4e2b5 KW |
737 | value = qemu_opt_get(all_opts, "cache"); |
738 | if (value) { | |
739 | int flags = 0; | |
740 | ||
741 | if (bdrv_parse_cache_flags(value, &flags) != 0) { | |
742 | error_report("invalid cache option"); | |
743 | return NULL; | |
744 | } | |
745 | ||
746 | /* Specific options take precedence */ | |
747 | if (!qemu_opt_get(all_opts, "cache.writeback")) { | |
748 | qemu_opt_set_bool(all_opts, "cache.writeback", | |
749 | !!(flags & BDRV_O_CACHE_WB)); | |
750 | } | |
751 | if (!qemu_opt_get(all_opts, "cache.direct")) { | |
752 | qemu_opt_set_bool(all_opts, "cache.direct", | |
753 | !!(flags & BDRV_O_NOCACHE)); | |
754 | } | |
755 | if (!qemu_opt_get(all_opts, "cache.no-flush")) { | |
756 | qemu_opt_set_bool(all_opts, "cache.no-flush", | |
757 | !!(flags & BDRV_O_NO_FLUSH)); | |
758 | } | |
759 | qemu_opt_unset(all_opts, "cache"); | |
760 | } | |
761 | ||
f298d071 KW |
762 | /* Get a QDict for processing the options */ |
763 | bs_opts = qdict_new(); | |
764 | qemu_opts_to_qdict(all_opts, bs_opts); | |
765 | ||
87ea75d5 PC |
766 | legacy_opts = qemu_opts_create(&qemu_legacy_drive_opts, NULL, 0, |
767 | &error_abort); | |
33cb7dc8 | 768 | qemu_opts_absorb_qdict(legacy_opts, bs_opts, &local_err); |
84d18f06 | 769 | if (local_err) { |
e8817e7b | 770 | error_report("%s", error_get_pretty(local_err)); |
33cb7dc8 KW |
771 | error_free(local_err); |
772 | goto fail; | |
773 | } | |
774 | ||
26929298 KW |
775 | /* Deprecated option boot=[on|off] */ |
776 | if (qemu_opt_get(legacy_opts, "boot") != NULL) { | |
777 | fprintf(stderr, "qemu-kvm: boot=on|off is deprecated and will be " | |
778 | "ignored. Future versions will reject this parameter. Please " | |
779 | "update your scripts.\n"); | |
780 | } | |
781 | ||
33cb7dc8 KW |
782 | /* Media type */ |
783 | value = qemu_opt_get(legacy_opts, "media"); | |
784 | if (value) { | |
785 | if (!strcmp(value, "disk")) { | |
786 | media = MEDIA_DISK; | |
787 | } else if (!strcmp(value, "cdrom")) { | |
788 | media = MEDIA_CDROM; | |
a7fdbcf0 | 789 | read_only = true; |
33cb7dc8 KW |
790 | } else { |
791 | error_report("'%s' invalid media", value); | |
792 | goto fail; | |
793 | } | |
794 | } | |
795 | ||
0ebd24e0 | 796 | /* copy-on-read is disabled with a warning for read-only devices */ |
a7fdbcf0 | 797 | read_only |= qemu_opt_get_bool(legacy_opts, "read-only", false); |
0ebd24e0 KW |
798 | copy_on_read = qemu_opt_get_bool(legacy_opts, "copy-on-read", false); |
799 | ||
800 | if (read_only && copy_on_read) { | |
801 | error_report("warning: disabling copy-on-read on read-only drive"); | |
802 | copy_on_read = false; | |
803 | } | |
804 | ||
805 | qdict_put(bs_opts, "read-only", | |
806 | qstring_from_str(read_only ? "on" : "off")); | |
807 | qdict_put(bs_opts, "copy-on-read", | |
808 | qstring_from_str(copy_on_read ? "on" :"off")); | |
809 | ||
593d464b KW |
810 | /* Controller type */ |
811 | value = qemu_opt_get(legacy_opts, "if"); | |
812 | if (value) { | |
813 | for (type = 0; | |
814 | type < IF_COUNT && strcmp(value, if_name[type]); | |
815 | type++) { | |
816 | } | |
817 | if (type == IF_COUNT) { | |
818 | error_report("unsupported bus type '%s'", value); | |
819 | goto fail; | |
820 | } | |
821 | } else { | |
822 | type = block_default_type; | |
823 | } | |
824 | ||
b41a7338 KW |
825 | /* Geometry */ |
826 | cyls = qemu_opt_get_number(legacy_opts, "cyls", 0); | |
827 | heads = qemu_opt_get_number(legacy_opts, "heads", 0); | |
828 | secs = qemu_opt_get_number(legacy_opts, "secs", 0); | |
829 | ||
830 | if (cyls || heads || secs) { | |
831 | if (cyls < 1) { | |
832 | error_report("invalid physical cyls number"); | |
833 | goto fail; | |
834 | } | |
835 | if (heads < 1) { | |
836 | error_report("invalid physical heads number"); | |
837 | goto fail; | |
838 | } | |
839 | if (secs < 1) { | |
840 | error_report("invalid physical secs number"); | |
841 | goto fail; | |
842 | } | |
843 | } | |
844 | ||
845 | translation = BIOS_ATA_TRANSLATION_AUTO; | |
846 | value = qemu_opt_get(legacy_opts, "trans"); | |
847 | if (value != NULL) { | |
848 | if (!cyls) { | |
849 | error_report("'%s' trans must be used with cyls, heads and secs", | |
850 | value); | |
851 | goto fail; | |
852 | } | |
853 | if (!strcmp(value, "none")) { | |
854 | translation = BIOS_ATA_TRANSLATION_NONE; | |
855 | } else if (!strcmp(value, "lba")) { | |
856 | translation = BIOS_ATA_TRANSLATION_LBA; | |
f31c41ff PB |
857 | } else if (!strcmp(value, "large")) { |
858 | translation = BIOS_ATA_TRANSLATION_LARGE; | |
859 | } else if (!strcmp(value, "rechs")) { | |
860 | translation = BIOS_ATA_TRANSLATION_RECHS; | |
b41a7338 KW |
861 | } else if (!strcmp(value, "auto")) { |
862 | translation = BIOS_ATA_TRANSLATION_AUTO; | |
863 | } else { | |
864 | error_report("'%s' invalid translation type", value); | |
865 | goto fail; | |
866 | } | |
867 | } | |
868 | ||
869 | if (media == MEDIA_CDROM) { | |
870 | if (cyls || secs || heads) { | |
871 | error_report("CHS can't be set with media=cdrom"); | |
872 | goto fail; | |
873 | } | |
874 | } | |
875 | ||
87a899c5 KW |
876 | /* Device address specified by bus/unit or index. |
877 | * If none was specified, try to find the first free one. */ | |
878 | bus_id = qemu_opt_get_number(legacy_opts, "bus", 0); | |
879 | unit_id = qemu_opt_get_number(legacy_opts, "unit", -1); | |
880 | index = qemu_opt_get_number(legacy_opts, "index", -1); | |
881 | ||
882 | max_devs = if_max_devs[type]; | |
883 | ||
884 | if (index != -1) { | |
885 | if (bus_id != 0 || unit_id != -1) { | |
886 | error_report("index cannot be used with bus and unit"); | |
887 | goto fail; | |
888 | } | |
889 | bus_id = drive_index_to_bus_id(type, index); | |
890 | unit_id = drive_index_to_unit_id(type, index); | |
891 | } | |
892 | ||
893 | if (unit_id == -1) { | |
894 | unit_id = 0; | |
895 | while (drive_get(type, bus_id, unit_id) != NULL) { | |
896 | unit_id++; | |
897 | if (max_devs && unit_id >= max_devs) { | |
898 | unit_id -= max_devs; | |
899 | bus_id++; | |
900 | } | |
901 | } | |
902 | } | |
903 | ||
904 | if (max_devs && unit_id >= max_devs) { | |
905 | error_report("unit %d too big (max is %d)", unit_id, max_devs - 1); | |
906 | goto fail; | |
907 | } | |
908 | ||
909 | if (drive_get(type, bus_id, unit_id) != NULL) { | |
910 | error_report("drive with bus=%d, unit=%d (index=%d) exists", | |
911 | bus_id, unit_id, index); | |
912 | goto fail; | |
913 | } | |
914 | ||
bcf83158 KW |
915 | /* Serial number */ |
916 | serial = qemu_opt_get(legacy_opts, "serial"); | |
917 | ||
87a899c5 KW |
918 | /* no id supplied -> create one */ |
919 | if (qemu_opts_id(all_opts) == NULL) { | |
920 | char *new_id; | |
921 | const char *mediastr = ""; | |
922 | if (type == IF_IDE || type == IF_SCSI) { | |
923 | mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd"; | |
924 | } | |
925 | if (max_devs) { | |
926 | new_id = g_strdup_printf("%s%i%s%i", if_name[type], bus_id, | |
927 | mediastr, unit_id); | |
928 | } else { | |
929 | new_id = g_strdup_printf("%s%s%i", if_name[type], | |
930 | mediastr, unit_id); | |
931 | } | |
932 | qdict_put(bs_opts, "id", qstring_from_str(new_id)); | |
933 | g_free(new_id); | |
934 | } | |
935 | ||
394c7d4d KW |
936 | /* Add virtio block device */ |
937 | devaddr = qemu_opt_get(legacy_opts, "addr"); | |
938 | if (devaddr && type != IF_VIRTIO) { | |
939 | error_report("addr is not supported by this bus type"); | |
940 | goto fail; | |
941 | } | |
942 | ||
943 | if (type == IF_VIRTIO) { | |
944 | QemuOpts *devopts; | |
87ea75d5 PC |
945 | devopts = qemu_opts_create(qemu_find_opts("device"), NULL, 0, |
946 | &error_abort); | |
394c7d4d KW |
947 | if (arch_type == QEMU_ARCH_S390X) { |
948 | qemu_opt_set(devopts, "driver", "virtio-blk-s390"); | |
949 | } else { | |
950 | qemu_opt_set(devopts, "driver", "virtio-blk-pci"); | |
951 | } | |
952 | qemu_opt_set(devopts, "drive", qdict_get_str(bs_opts, "id")); | |
953 | if (devaddr) { | |
954 | qemu_opt_set(devopts, "addr", devaddr); | |
955 | } | |
956 | } | |
957 | ||
d095b465 HR |
958 | filename = qemu_opt_get(legacy_opts, "file"); |
959 | ||
ee13ed1c KW |
960 | /* Check werror/rerror compatibility with if=... */ |
961 | werror = qemu_opt_get(legacy_opts, "werror"); | |
962 | if (werror != NULL) { | |
963 | if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO && | |
964 | type != IF_NONE) { | |
965 | error_report("werror is not supported by this bus type"); | |
966 | goto fail; | |
967 | } | |
968 | qdict_put(bs_opts, "werror", qstring_from_str(werror)); | |
969 | } | |
970 | ||
971 | rerror = qemu_opt_get(legacy_opts, "rerror"); | |
972 | if (rerror != NULL) { | |
973 | if (type != IF_IDE && type != IF_VIRTIO && type != IF_SCSI && | |
974 | type != IF_NONE) { | |
975 | error_report("rerror is not supported by this bus type"); | |
976 | goto fail; | |
977 | } | |
978 | qdict_put(bs_opts, "rerror", qstring_from_str(rerror)); | |
979 | } | |
980 | ||
2d246f01 | 981 | /* Actual block device init: Functionality shared with blockdev-add */ |
18e46a03 | 982 | blk = blockdev_init(filename, bs_opts, &local_err); |
3cb0e25c | 983 | bs_opts = NULL; |
18e46a03 | 984 | if (!blk) { |
84d18f06 | 985 | if (local_err) { |
e8817e7b | 986 | error_report("%s", error_get_pretty(local_err)); |
b681072d KW |
987 | error_free(local_err); |
988 | } | |
2d246f01 | 989 | goto fail; |
b681072d | 990 | } else { |
84d18f06 | 991 | assert(!local_err); |
2d246f01 KW |
992 | } |
993 | ||
26f8b3a8 MA |
994 | /* Create legacy DriveInfo */ |
995 | dinfo = g_malloc0(sizeof(*dinfo)); | |
f298d071 | 996 | dinfo->opts = all_opts; |
2d246f01 | 997 | |
b41a7338 KW |
998 | dinfo->cyls = cyls; |
999 | dinfo->heads = heads; | |
1000 | dinfo->secs = secs; | |
1001 | dinfo->trans = translation; | |
1002 | ||
ee13ed1c | 1003 | dinfo->type = type; |
87a899c5 KW |
1004 | dinfo->bus = bus_id; |
1005 | dinfo->unit = unit_id; | |
394c7d4d | 1006 | dinfo->devaddr = devaddr; |
bcf83158 KW |
1007 | dinfo->serial = g_strdup(serial); |
1008 | ||
26f8b3a8 MA |
1009 | blk_set_legacy_dinfo(blk, dinfo); |
1010 | ||
e34ef046 KW |
1011 | switch(type) { |
1012 | case IF_IDE: | |
1013 | case IF_SCSI: | |
1014 | case IF_XEN: | |
1015 | case IF_NONE: | |
1016 | dinfo->media_cd = media == MEDIA_CDROM; | |
1017 | break; | |
1018 | default: | |
1019 | break; | |
1020 | } | |
1021 | ||
2d246f01 | 1022 | fail: |
33cb7dc8 | 1023 | qemu_opts_del(legacy_opts); |
3cb0e25c | 1024 | QDECREF(bs_opts); |
2d246f01 | 1025 | return dinfo; |
57975222 KW |
1026 | } |
1027 | ||
666daa68 MA |
1028 | void do_commit(Monitor *mon, const QDict *qdict) |
1029 | { | |
666daa68 | 1030 | const char *device = qdict_get_str(qdict, "device"); |
6ab4b5ab | 1031 | BlockDriverState *bs; |
e8877497 | 1032 | int ret; |
666daa68 | 1033 | |
6ab4b5ab | 1034 | if (!strcmp(device, "all")) { |
e8877497 | 1035 | ret = bdrv_commit_all(); |
6ab4b5ab MA |
1036 | } else { |
1037 | bs = bdrv_find(device); | |
ac59eb95 | 1038 | if (!bs) { |
58513bde | 1039 | monitor_printf(mon, "Device '%s' not found\n", device); |
ac59eb95 | 1040 | return; |
6ab4b5ab | 1041 | } |
2d3735d3 | 1042 | ret = bdrv_commit(bs); |
58513bde JC |
1043 | } |
1044 | if (ret < 0) { | |
1045 | monitor_printf(mon, "'commit' error for '%s': %s\n", device, | |
1046 | strerror(-ret)); | |
666daa68 MA |
1047 | } |
1048 | } | |
1049 | ||
6cc2a415 PB |
1050 | static void blockdev_do_action(int kind, void *data, Error **errp) |
1051 | { | |
c8a83e85 KW |
1052 | TransactionAction action; |
1053 | TransactionActionList list; | |
6cc2a415 PB |
1054 | |
1055 | action.kind = kind; | |
1056 | action.data = data; | |
1057 | list.value = &action; | |
1058 | list.next = NULL; | |
1059 | qmp_transaction(&list, errp); | |
1060 | } | |
1061 | ||
0901f67e BC |
1062 | void qmp_blockdev_snapshot_sync(bool has_device, const char *device, |
1063 | bool has_node_name, const char *node_name, | |
1064 | const char *snapshot_file, | |
1065 | bool has_snapshot_node_name, | |
1066 | const char *snapshot_node_name, | |
6106e249 | 1067 | bool has_format, const char *format, |
0901f67e | 1068 | bool has_mode, NewImageMode mode, Error **errp) |
f8882568 | 1069 | { |
6cc2a415 | 1070 | BlockdevSnapshot snapshot = { |
0901f67e | 1071 | .has_device = has_device, |
6cc2a415 | 1072 | .device = (char *) device, |
0901f67e BC |
1073 | .has_node_name = has_node_name, |
1074 | .node_name = (char *) node_name, | |
6cc2a415 | 1075 | .snapshot_file = (char *) snapshot_file, |
0901f67e BC |
1076 | .has_snapshot_node_name = has_snapshot_node_name, |
1077 | .snapshot_node_name = (char *) snapshot_node_name, | |
6cc2a415 PB |
1078 | .has_format = has_format, |
1079 | .format = (char *) format, | |
1080 | .has_mode = has_mode, | |
1081 | .mode = mode, | |
1082 | }; | |
c8a83e85 KW |
1083 | blockdev_do_action(TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC, |
1084 | &snapshot, errp); | |
f8882568 JS |
1085 | } |
1086 | ||
f323bc9e WX |
1087 | void qmp_blockdev_snapshot_internal_sync(const char *device, |
1088 | const char *name, | |
1089 | Error **errp) | |
1090 | { | |
1091 | BlockdevSnapshotInternal snapshot = { | |
1092 | .device = (char *) device, | |
1093 | .name = (char *) name | |
1094 | }; | |
1095 | ||
1096 | blockdev_do_action(TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC, | |
1097 | &snapshot, errp); | |
1098 | } | |
1099 | ||
44e3e053 WX |
1100 | SnapshotInfo *qmp_blockdev_snapshot_delete_internal_sync(const char *device, |
1101 | bool has_id, | |
1102 | const char *id, | |
1103 | bool has_name, | |
1104 | const char *name, | |
1105 | Error **errp) | |
1106 | { | |
1107 | BlockDriverState *bs = bdrv_find(device); | |
4ef3982a | 1108 | AioContext *aio_context; |
44e3e053 WX |
1109 | QEMUSnapshotInfo sn; |
1110 | Error *local_err = NULL; | |
1111 | SnapshotInfo *info = NULL; | |
1112 | int ret; | |
1113 | ||
1114 | if (!bs) { | |
1115 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); | |
1116 | return NULL; | |
1117 | } | |
1118 | ||
1119 | if (!has_id) { | |
1120 | id = NULL; | |
1121 | } | |
1122 | ||
1123 | if (!has_name) { | |
1124 | name = NULL; | |
1125 | } | |
1126 | ||
1127 | if (!id && !name) { | |
1128 | error_setg(errp, "Name or id must be provided"); | |
1129 | return NULL; | |
1130 | } | |
1131 | ||
4ef3982a SH |
1132 | aio_context = bdrv_get_aio_context(bs); |
1133 | aio_context_acquire(aio_context); | |
1134 | ||
0b928854 SH |
1135 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT_DELETE, errp)) { |
1136 | goto out_aio_context; | |
1137 | } | |
1138 | ||
44e3e053 | 1139 | ret = bdrv_snapshot_find_by_id_and_name(bs, id, name, &sn, &local_err); |
84d18f06 | 1140 | if (local_err) { |
44e3e053 | 1141 | error_propagate(errp, local_err); |
4ef3982a | 1142 | goto out_aio_context; |
44e3e053 WX |
1143 | } |
1144 | if (!ret) { | |
1145 | error_setg(errp, | |
1146 | "Snapshot with id '%s' and name '%s' does not exist on " | |
1147 | "device '%s'", | |
1148 | STR_OR_NULL(id), STR_OR_NULL(name), device); | |
4ef3982a | 1149 | goto out_aio_context; |
44e3e053 WX |
1150 | } |
1151 | ||
1152 | bdrv_snapshot_delete(bs, id, name, &local_err); | |
84d18f06 | 1153 | if (local_err) { |
44e3e053 | 1154 | error_propagate(errp, local_err); |
4ef3982a | 1155 | goto out_aio_context; |
44e3e053 WX |
1156 | } |
1157 | ||
4ef3982a SH |
1158 | aio_context_release(aio_context); |
1159 | ||
5839e53b | 1160 | info = g_new0(SnapshotInfo, 1); |
44e3e053 WX |
1161 | info->id = g_strdup(sn.id_str); |
1162 | info->name = g_strdup(sn.name); | |
1163 | info->date_nsec = sn.date_nsec; | |
1164 | info->date_sec = sn.date_sec; | |
1165 | info->vm_state_size = sn.vm_state_size; | |
1166 | info->vm_clock_nsec = sn.vm_clock_nsec % 1000000000; | |
1167 | info->vm_clock_sec = sn.vm_clock_nsec / 1000000000; | |
1168 | ||
1169 | return info; | |
4ef3982a SH |
1170 | |
1171 | out_aio_context: | |
1172 | aio_context_release(aio_context); | |
1173 | return NULL; | |
44e3e053 | 1174 | } |
8802d1fd | 1175 | |
b756b9ce | 1176 | /* New and old BlockDriverState structs for atomic group operations */ |
ba0c86a3 | 1177 | |
ba5d6ab6 | 1178 | typedef struct BlkTransactionState BlkTransactionState; |
ba0c86a3 WX |
1179 | |
1180 | /* Only prepare() may fail. In a single transaction, only one of commit() or | |
1181 | abort() will be called, clean() will always be called if it present. */ | |
1182 | typedef struct BdrvActionOps { | |
1183 | /* Size of state struct, in bytes. */ | |
1184 | size_t instance_size; | |
1185 | /* Prepare the work, must NOT be NULL. */ | |
ba5d6ab6 | 1186 | void (*prepare)(BlkTransactionState *common, Error **errp); |
f9ea81e8 | 1187 | /* Commit the changes, can be NULL. */ |
ba5d6ab6 | 1188 | void (*commit)(BlkTransactionState *common); |
ba0c86a3 | 1189 | /* Abort the changes on fail, can be NULL. */ |
ba5d6ab6 | 1190 | void (*abort)(BlkTransactionState *common); |
ba0c86a3 | 1191 | /* Clean up resource in the end, can be NULL. */ |
ba5d6ab6 | 1192 | void (*clean)(BlkTransactionState *common); |
ba0c86a3 WX |
1193 | } BdrvActionOps; |
1194 | ||
1195 | /* | |
1196 | * This structure must be arranged as first member in child type, assuming | |
1197 | * that compiler will also arrange it to the same address with parent instance. | |
1198 | * Later it will be used in free(). | |
1199 | */ | |
ba5d6ab6 | 1200 | struct BlkTransactionState { |
c8a83e85 | 1201 | TransactionAction *action; |
ba0c86a3 | 1202 | const BdrvActionOps *ops; |
ba5d6ab6 | 1203 | QSIMPLEQ_ENTRY(BlkTransactionState) entry; |
ba0c86a3 WX |
1204 | }; |
1205 | ||
bbe86010 WX |
1206 | /* internal snapshot private data */ |
1207 | typedef struct InternalSnapshotState { | |
1208 | BlkTransactionState common; | |
1209 | BlockDriverState *bs; | |
5d6e96ef | 1210 | AioContext *aio_context; |
bbe86010 WX |
1211 | QEMUSnapshotInfo sn; |
1212 | } InternalSnapshotState; | |
1213 | ||
1214 | static void internal_snapshot_prepare(BlkTransactionState *common, | |
1215 | Error **errp) | |
1216 | { | |
f70edf99 | 1217 | Error *local_err = NULL; |
bbe86010 WX |
1218 | const char *device; |
1219 | const char *name; | |
1220 | BlockDriverState *bs; | |
1221 | QEMUSnapshotInfo old_sn, *sn; | |
1222 | bool ret; | |
1223 | qemu_timeval tv; | |
1224 | BlockdevSnapshotInternal *internal; | |
1225 | InternalSnapshotState *state; | |
1226 | int ret1; | |
1227 | ||
1228 | g_assert(common->action->kind == | |
1229 | TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC); | |
1230 | internal = common->action->blockdev_snapshot_internal_sync; | |
1231 | state = DO_UPCAST(InternalSnapshotState, common, common); | |
1232 | ||
1233 | /* 1. parse input */ | |
1234 | device = internal->device; | |
1235 | name = internal->name; | |
1236 | ||
1237 | /* 2. check for validation */ | |
1238 | bs = bdrv_find(device); | |
1239 | if (!bs) { | |
1240 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); | |
1241 | return; | |
1242 | } | |
1243 | ||
5d6e96ef SH |
1244 | /* AioContext is released in .clean() */ |
1245 | state->aio_context = bdrv_get_aio_context(bs); | |
1246 | aio_context_acquire(state->aio_context); | |
1247 | ||
bbe86010 WX |
1248 | if (!bdrv_is_inserted(bs)) { |
1249 | error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); | |
1250 | return; | |
1251 | } | |
1252 | ||
3dc7ca3c SH |
1253 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT, errp)) { |
1254 | return; | |
1255 | } | |
1256 | ||
bbe86010 WX |
1257 | if (bdrv_is_read_only(bs)) { |
1258 | error_set(errp, QERR_DEVICE_IS_READ_ONLY, device); | |
1259 | return; | |
1260 | } | |
1261 | ||
1262 | if (!bdrv_can_snapshot(bs)) { | |
1263 | error_set(errp, QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED, | |
1264 | bs->drv->format_name, device, "internal snapshot"); | |
1265 | return; | |
1266 | } | |
1267 | ||
1268 | if (!strlen(name)) { | |
1269 | error_setg(errp, "Name is empty"); | |
1270 | return; | |
1271 | } | |
1272 | ||
1273 | /* check whether a snapshot with name exist */ | |
f70edf99 MA |
1274 | ret = bdrv_snapshot_find_by_id_and_name(bs, NULL, name, &old_sn, |
1275 | &local_err); | |
1276 | if (local_err) { | |
1277 | error_propagate(errp, local_err); | |
bbe86010 WX |
1278 | return; |
1279 | } else if (ret) { | |
1280 | error_setg(errp, | |
1281 | "Snapshot with name '%s' already exists on device '%s'", | |
1282 | name, device); | |
1283 | return; | |
1284 | } | |
1285 | ||
1286 | /* 3. take the snapshot */ | |
1287 | sn = &state->sn; | |
1288 | pstrcpy(sn->name, sizeof(sn->name), name); | |
1289 | qemu_gettimeofday(&tv); | |
1290 | sn->date_sec = tv.tv_sec; | |
1291 | sn->date_nsec = tv.tv_usec * 1000; | |
1292 | sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL); | |
1293 | ||
1294 | ret1 = bdrv_snapshot_create(bs, sn); | |
1295 | if (ret1 < 0) { | |
1296 | error_setg_errno(errp, -ret1, | |
1297 | "Failed to create snapshot '%s' on device '%s'", | |
1298 | name, device); | |
1299 | return; | |
1300 | } | |
1301 | ||
1302 | /* 4. succeed, mark a snapshot is created */ | |
1303 | state->bs = bs; | |
1304 | } | |
1305 | ||
1306 | static void internal_snapshot_abort(BlkTransactionState *common) | |
1307 | { | |
1308 | InternalSnapshotState *state = | |
1309 | DO_UPCAST(InternalSnapshotState, common, common); | |
1310 | BlockDriverState *bs = state->bs; | |
1311 | QEMUSnapshotInfo *sn = &state->sn; | |
1312 | Error *local_error = NULL; | |
1313 | ||
1314 | if (!bs) { | |
1315 | return; | |
1316 | } | |
1317 | ||
1318 | if (bdrv_snapshot_delete(bs, sn->id_str, sn->name, &local_error) < 0) { | |
1319 | error_report("Failed to delete snapshot with id '%s' and name '%s' on " | |
1320 | "device '%s' in abort: %s", | |
1321 | sn->id_str, | |
1322 | sn->name, | |
1323 | bdrv_get_device_name(bs), | |
1324 | error_get_pretty(local_error)); | |
1325 | error_free(local_error); | |
1326 | } | |
1327 | } | |
1328 | ||
5d6e96ef SH |
1329 | static void internal_snapshot_clean(BlkTransactionState *common) |
1330 | { | |
1331 | InternalSnapshotState *state = DO_UPCAST(InternalSnapshotState, | |
1332 | common, common); | |
1333 | ||
1334 | if (state->aio_context) { | |
1335 | aio_context_release(state->aio_context); | |
1336 | } | |
1337 | } | |
1338 | ||
ba0c86a3 | 1339 | /* external snapshot private data */ |
ba5d6ab6 SH |
1340 | typedef struct ExternalSnapshotState { |
1341 | BlkTransactionState common; | |
8802d1fd JC |
1342 | BlockDriverState *old_bs; |
1343 | BlockDriverState *new_bs; | |
5d6e96ef | 1344 | AioContext *aio_context; |
ba5d6ab6 | 1345 | } ExternalSnapshotState; |
8802d1fd | 1346 | |
ba5d6ab6 | 1347 | static void external_snapshot_prepare(BlkTransactionState *common, |
9b9877ee WX |
1348 | Error **errp) |
1349 | { | |
9b9877ee WX |
1350 | BlockDriver *drv; |
1351 | int flags, ret; | |
0901f67e | 1352 | QDict *options = NULL; |
9b9877ee | 1353 | Error *local_err = NULL; |
0901f67e | 1354 | bool has_device = false; |
e2a31e87 | 1355 | const char *device; |
0901f67e BC |
1356 | bool has_node_name = false; |
1357 | const char *node_name; | |
1358 | bool has_snapshot_node_name = false; | |
1359 | const char *snapshot_node_name; | |
e2a31e87 WX |
1360 | const char *new_image_file; |
1361 | const char *format = "qcow2"; | |
1362 | enum NewImageMode mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS; | |
ba5d6ab6 SH |
1363 | ExternalSnapshotState *state = |
1364 | DO_UPCAST(ExternalSnapshotState, common, common); | |
c8a83e85 | 1365 | TransactionAction *action = common->action; |
9b9877ee | 1366 | |
e2a31e87 | 1367 | /* get parameters */ |
c8a83e85 | 1368 | g_assert(action->kind == TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC); |
e2a31e87 | 1369 | |
0901f67e | 1370 | has_device = action->blockdev_snapshot_sync->has_device; |
e2a31e87 | 1371 | device = action->blockdev_snapshot_sync->device; |
0901f67e BC |
1372 | has_node_name = action->blockdev_snapshot_sync->has_node_name; |
1373 | node_name = action->blockdev_snapshot_sync->node_name; | |
1374 | has_snapshot_node_name = | |
1375 | action->blockdev_snapshot_sync->has_snapshot_node_name; | |
1376 | snapshot_node_name = action->blockdev_snapshot_sync->snapshot_node_name; | |
1377 | ||
e2a31e87 WX |
1378 | new_image_file = action->blockdev_snapshot_sync->snapshot_file; |
1379 | if (action->blockdev_snapshot_sync->has_format) { | |
1380 | format = action->blockdev_snapshot_sync->format; | |
1381 | } | |
1382 | if (action->blockdev_snapshot_sync->has_mode) { | |
1383 | mode = action->blockdev_snapshot_sync->mode; | |
1384 | } | |
1385 | ||
1386 | /* start processing */ | |
9b9877ee WX |
1387 | drv = bdrv_find_format(format); |
1388 | if (!drv) { | |
1389 | error_set(errp, QERR_INVALID_BLOCK_FORMAT, format); | |
1390 | return; | |
1391 | } | |
1392 | ||
0901f67e BC |
1393 | state->old_bs = bdrv_lookup_bs(has_device ? device : NULL, |
1394 | has_node_name ? node_name : NULL, | |
1395 | &local_err); | |
84d18f06 | 1396 | if (local_err) { |
0901f67e BC |
1397 | error_propagate(errp, local_err); |
1398 | return; | |
1399 | } | |
1400 | ||
1401 | if (has_node_name && !has_snapshot_node_name) { | |
1402 | error_setg(errp, "New snapshot node name missing"); | |
1403 | return; | |
1404 | } | |
1405 | ||
1406 | if (has_snapshot_node_name && bdrv_find_node(snapshot_node_name)) { | |
1407 | error_setg(errp, "New snapshot node name already existing"); | |
9b9877ee WX |
1408 | return; |
1409 | } | |
1410 | ||
5d6e96ef SH |
1411 | /* Acquire AioContext now so any threads operating on old_bs stop */ |
1412 | state->aio_context = bdrv_get_aio_context(state->old_bs); | |
1413 | aio_context_acquire(state->aio_context); | |
1414 | ||
ba5d6ab6 | 1415 | if (!bdrv_is_inserted(state->old_bs)) { |
9b9877ee WX |
1416 | error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); |
1417 | return; | |
1418 | } | |
1419 | ||
3718d8ab FZ |
1420 | if (bdrv_op_is_blocked(state->old_bs, |
1421 | BLOCK_OP_TYPE_EXTERNAL_SNAPSHOT, errp)) { | |
9b9877ee WX |
1422 | return; |
1423 | } | |
1424 | ||
ba5d6ab6 SH |
1425 | if (!bdrv_is_read_only(state->old_bs)) { |
1426 | if (bdrv_flush(state->old_bs)) { | |
9b9877ee WX |
1427 | error_set(errp, QERR_IO_ERROR); |
1428 | return; | |
1429 | } | |
1430 | } | |
1431 | ||
212a5a8f | 1432 | if (!bdrv_is_first_non_filter(state->old_bs)) { |
f6186f49 BC |
1433 | error_set(errp, QERR_FEATURE_DISABLED, "snapshot"); |
1434 | return; | |
1435 | } | |
1436 | ||
ba5d6ab6 | 1437 | flags = state->old_bs->open_flags; |
9b9877ee | 1438 | |
9b9877ee WX |
1439 | /* create new image w/backing file */ |
1440 | if (mode != NEW_IMAGE_MODE_EXISTING) { | |
1441 | bdrv_img_create(new_image_file, format, | |
ba5d6ab6 SH |
1442 | state->old_bs->filename, |
1443 | state->old_bs->drv->format_name, | |
9b9877ee | 1444 | NULL, -1, flags, &local_err, false); |
84d18f06 | 1445 | if (local_err) { |
9b9877ee WX |
1446 | error_propagate(errp, local_err); |
1447 | return; | |
1448 | } | |
1449 | } | |
1450 | ||
0901f67e BC |
1451 | if (has_snapshot_node_name) { |
1452 | options = qdict_new(); | |
1453 | qdict_put(options, "node-name", | |
1454 | qstring_from_str(snapshot_node_name)); | |
1455 | } | |
1456 | ||
9b9877ee WX |
1457 | /* TODO Inherit bs->options or only take explicit options with an |
1458 | * extended QMP command? */ | |
f67503e5 | 1459 | assert(state->new_bs == NULL); |
ddf5636d | 1460 | ret = bdrv_open(&state->new_bs, new_image_file, NULL, options, |
34b5d2c6 | 1461 | flags | BDRV_O_NO_BACKING, drv, &local_err); |
f67503e5 | 1462 | /* We will manually add the backing_hd field to the bs later */ |
9b9877ee | 1463 | if (ret != 0) { |
34b5d2c6 | 1464 | error_propagate(errp, local_err); |
9b9877ee WX |
1465 | } |
1466 | } | |
1467 | ||
ba5d6ab6 | 1468 | static void external_snapshot_commit(BlkTransactionState *common) |
3b0047e8 | 1469 | { |
ba5d6ab6 SH |
1470 | ExternalSnapshotState *state = |
1471 | DO_UPCAST(ExternalSnapshotState, common, common); | |
ba0c86a3 | 1472 | |
5d6e96ef SH |
1473 | bdrv_set_aio_context(state->new_bs, state->aio_context); |
1474 | ||
ba5d6ab6 SH |
1475 | /* This removes our old bs and adds the new bs */ |
1476 | bdrv_append(state->new_bs, state->old_bs); | |
3b0047e8 WX |
1477 | /* We don't need (or want) to use the transactional |
1478 | * bdrv_reopen_multiple() across all the entries at once, because we | |
1479 | * don't want to abort all of them if one of them fails the reopen */ | |
ba5d6ab6 | 1480 | bdrv_reopen(state->new_bs, state->new_bs->open_flags & ~BDRV_O_RDWR, |
3b0047e8 | 1481 | NULL); |
5d6e96ef SH |
1482 | |
1483 | aio_context_release(state->aio_context); | |
3b0047e8 WX |
1484 | } |
1485 | ||
ba5d6ab6 | 1486 | static void external_snapshot_abort(BlkTransactionState *common) |
96b86bf7 | 1487 | { |
ba5d6ab6 SH |
1488 | ExternalSnapshotState *state = |
1489 | DO_UPCAST(ExternalSnapshotState, common, common); | |
1490 | if (state->new_bs) { | |
4f6fd349 | 1491 | bdrv_unref(state->new_bs); |
96b86bf7 | 1492 | } |
5d6e96ef SH |
1493 | if (state->aio_context) { |
1494 | aio_context_release(state->aio_context); | |
1495 | } | |
96b86bf7 WX |
1496 | } |
1497 | ||
3037f364 SH |
1498 | typedef struct DriveBackupState { |
1499 | BlkTransactionState common; | |
1500 | BlockDriverState *bs; | |
5d6e96ef | 1501 | AioContext *aio_context; |
3037f364 SH |
1502 | BlockJob *job; |
1503 | } DriveBackupState; | |
1504 | ||
1505 | static void drive_backup_prepare(BlkTransactionState *common, Error **errp) | |
1506 | { | |
1507 | DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common); | |
5d6e96ef | 1508 | BlockDriverState *bs; |
3037f364 SH |
1509 | DriveBackup *backup; |
1510 | Error *local_err = NULL; | |
1511 | ||
1512 | assert(common->action->kind == TRANSACTION_ACTION_KIND_DRIVE_BACKUP); | |
1513 | backup = common->action->drive_backup; | |
1514 | ||
5d6e96ef SH |
1515 | bs = bdrv_find(backup->device); |
1516 | if (!bs) { | |
1517 | error_set(errp, QERR_DEVICE_NOT_FOUND, backup->device); | |
1518 | return; | |
1519 | } | |
1520 | ||
1521 | /* AioContext is released in .clean() */ | |
1522 | state->aio_context = bdrv_get_aio_context(bs); | |
1523 | aio_context_acquire(state->aio_context); | |
1524 | ||
3037f364 SH |
1525 | qmp_drive_backup(backup->device, backup->target, |
1526 | backup->has_format, backup->format, | |
b53169ea | 1527 | backup->sync, |
3037f364 SH |
1528 | backup->has_mode, backup->mode, |
1529 | backup->has_speed, backup->speed, | |
1530 | backup->has_on_source_error, backup->on_source_error, | |
1531 | backup->has_on_target_error, backup->on_target_error, | |
1532 | &local_err); | |
84d18f06 | 1533 | if (local_err) { |
3037f364 | 1534 | error_propagate(errp, local_err); |
3037f364 SH |
1535 | return; |
1536 | } | |
1537 | ||
5d6e96ef | 1538 | state->bs = bs; |
3037f364 SH |
1539 | state->job = state->bs->job; |
1540 | } | |
1541 | ||
1542 | static void drive_backup_abort(BlkTransactionState *common) | |
1543 | { | |
1544 | DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common); | |
1545 | BlockDriverState *bs = state->bs; | |
1546 | ||
1547 | /* Only cancel if it's the job we started */ | |
1548 | if (bs && bs->job && bs->job == state->job) { | |
1549 | block_job_cancel_sync(bs->job); | |
1550 | } | |
1551 | } | |
1552 | ||
5d6e96ef SH |
1553 | static void drive_backup_clean(BlkTransactionState *common) |
1554 | { | |
1555 | DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common); | |
1556 | ||
1557 | if (state->aio_context) { | |
1558 | aio_context_release(state->aio_context); | |
1559 | } | |
1560 | } | |
1561 | ||
78b18b78 SH |
1562 | static void abort_prepare(BlkTransactionState *common, Error **errp) |
1563 | { | |
1564 | error_setg(errp, "Transaction aborted using Abort action"); | |
1565 | } | |
1566 | ||
1567 | static void abort_commit(BlkTransactionState *common) | |
1568 | { | |
dfc6f865 | 1569 | g_assert_not_reached(); /* this action never succeeds */ |
78b18b78 SH |
1570 | } |
1571 | ||
ba0c86a3 | 1572 | static const BdrvActionOps actions[] = { |
c8a83e85 | 1573 | [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC] = { |
ba5d6ab6 | 1574 | .instance_size = sizeof(ExternalSnapshotState), |
ba0c86a3 WX |
1575 | .prepare = external_snapshot_prepare, |
1576 | .commit = external_snapshot_commit, | |
1577 | .abort = external_snapshot_abort, | |
1578 | }, | |
3037f364 SH |
1579 | [TRANSACTION_ACTION_KIND_DRIVE_BACKUP] = { |
1580 | .instance_size = sizeof(DriveBackupState), | |
1581 | .prepare = drive_backup_prepare, | |
1582 | .abort = drive_backup_abort, | |
5d6e96ef | 1583 | .clean = drive_backup_clean, |
3037f364 | 1584 | }, |
78b18b78 SH |
1585 | [TRANSACTION_ACTION_KIND_ABORT] = { |
1586 | .instance_size = sizeof(BlkTransactionState), | |
1587 | .prepare = abort_prepare, | |
1588 | .commit = abort_commit, | |
1589 | }, | |
bbe86010 WX |
1590 | [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC] = { |
1591 | .instance_size = sizeof(InternalSnapshotState), | |
1592 | .prepare = internal_snapshot_prepare, | |
1593 | .abort = internal_snapshot_abort, | |
5d6e96ef | 1594 | .clean = internal_snapshot_clean, |
bbe86010 | 1595 | }, |
ba0c86a3 WX |
1596 | }; |
1597 | ||
8802d1fd | 1598 | /* |
b756b9ce SH |
1599 | * 'Atomic' group operations. The operations are performed as a set, and if |
1600 | * any fail then we roll back all operations in the group. | |
8802d1fd | 1601 | */ |
c8a83e85 | 1602 | void qmp_transaction(TransactionActionList *dev_list, Error **errp) |
8802d1fd | 1603 | { |
c8a83e85 | 1604 | TransactionActionList *dev_entry = dev_list; |
ba5d6ab6 | 1605 | BlkTransactionState *state, *next; |
43e17041 | 1606 | Error *local_err = NULL; |
8802d1fd | 1607 | |
ba5d6ab6 | 1608 | QSIMPLEQ_HEAD(snap_bdrv_states, BlkTransactionState) snap_bdrv_states; |
8802d1fd JC |
1609 | QSIMPLEQ_INIT(&snap_bdrv_states); |
1610 | ||
b756b9ce | 1611 | /* drain all i/o before any operations */ |
8802d1fd JC |
1612 | bdrv_drain_all(); |
1613 | ||
b756b9ce | 1614 | /* We don't do anything in this loop that commits us to the operations */ |
8802d1fd | 1615 | while (NULL != dev_entry) { |
c8a83e85 | 1616 | TransactionAction *dev_info = NULL; |
ba0c86a3 | 1617 | const BdrvActionOps *ops; |
52e7c241 | 1618 | |
8802d1fd JC |
1619 | dev_info = dev_entry->value; |
1620 | dev_entry = dev_entry->next; | |
1621 | ||
ba0c86a3 WX |
1622 | assert(dev_info->kind < ARRAY_SIZE(actions)); |
1623 | ||
1624 | ops = &actions[dev_info->kind]; | |
aa3fe714 HR |
1625 | assert(ops->instance_size > 0); |
1626 | ||
ba5d6ab6 SH |
1627 | state = g_malloc0(ops->instance_size); |
1628 | state->ops = ops; | |
1629 | state->action = dev_info; | |
1630 | QSIMPLEQ_INSERT_TAIL(&snap_bdrv_states, state, entry); | |
8802d1fd | 1631 | |
ba5d6ab6 | 1632 | state->ops->prepare(state, &local_err); |
84d18f06 | 1633 | if (local_err) { |
ba0c86a3 WX |
1634 | error_propagate(errp, local_err); |
1635 | goto delete_and_fail; | |
8802d1fd | 1636 | } |
8802d1fd JC |
1637 | } |
1638 | ||
ba5d6ab6 | 1639 | QSIMPLEQ_FOREACH(state, &snap_bdrv_states, entry) { |
f9ea81e8 SH |
1640 | if (state->ops->commit) { |
1641 | state->ops->commit(state); | |
1642 | } | |
8802d1fd JC |
1643 | } |
1644 | ||
1645 | /* success */ | |
1646 | goto exit; | |
1647 | ||
1648 | delete_and_fail: | |
b756b9ce | 1649 | /* failure, and it is all-or-none; roll back all operations */ |
ba5d6ab6 SH |
1650 | QSIMPLEQ_FOREACH(state, &snap_bdrv_states, entry) { |
1651 | if (state->ops->abort) { | |
1652 | state->ops->abort(state); | |
ba0c86a3 | 1653 | } |
8802d1fd JC |
1654 | } |
1655 | exit: | |
ba5d6ab6 SH |
1656 | QSIMPLEQ_FOREACH_SAFE(state, &snap_bdrv_states, entry, next) { |
1657 | if (state->ops->clean) { | |
1658 | state->ops->clean(state); | |
ba0c86a3 | 1659 | } |
ba5d6ab6 | 1660 | g_free(state); |
8802d1fd | 1661 | } |
8802d1fd JC |
1662 | } |
1663 | ||
1664 | ||
6007cdd4 | 1665 | static void eject_device(BlockBackend *blk, int force, Error **errp) |
666daa68 | 1666 | { |
6007cdd4 | 1667 | BlockDriverState *bs = blk_bs(blk); |
e3442099 SH |
1668 | AioContext *aio_context; |
1669 | ||
1670 | aio_context = bdrv_get_aio_context(bs); | |
1671 | aio_context_acquire(aio_context); | |
6007cdd4 | 1672 | |
3718d8ab | 1673 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_EJECT, errp)) { |
e3442099 | 1674 | goto out; |
2d3735d3 | 1675 | } |
a7f53e26 | 1676 | if (!blk_dev_has_removable_media(blk)) { |
f231b88d CR |
1677 | error_setg(errp, "Device '%s' is not removable", |
1678 | bdrv_get_device_name(bs)); | |
e3442099 | 1679 | goto out; |
ea8f942f | 1680 | } |
92d48558 | 1681 | |
a7f53e26 MA |
1682 | if (blk_dev_is_medium_locked(blk) && !blk_dev_is_tray_open(blk)) { |
1683 | blk_dev_eject_request(blk, force); | |
025ccaa7 | 1684 | if (!force) { |
f231b88d CR |
1685 | error_setg(errp, "Device '%s' is locked", |
1686 | bdrv_get_device_name(bs)); | |
e3442099 | 1687 | goto out; |
025ccaa7 | 1688 | } |
666daa68 | 1689 | } |
92d48558 | 1690 | |
3b5276b5 | 1691 | bdrv_close(bs); |
e3442099 SH |
1692 | |
1693 | out: | |
1694 | aio_context_release(aio_context); | |
666daa68 MA |
1695 | } |
1696 | ||
c245b6a3 | 1697 | void qmp_eject(const char *device, bool has_force, bool force, Error **errp) |
666daa68 | 1698 | { |
6007cdd4 | 1699 | BlockBackend *blk; |
666daa68 | 1700 | |
6007cdd4 MA |
1701 | blk = blk_by_name(device); |
1702 | if (!blk) { | |
c245b6a3 LC |
1703 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
1704 | return; | |
92d48558 LC |
1705 | } |
1706 | ||
6007cdd4 | 1707 | eject_device(blk, force, errp); |
666daa68 MA |
1708 | } |
1709 | ||
12d3ba82 BC |
1710 | void qmp_block_passwd(bool has_device, const char *device, |
1711 | bool has_node_name, const char *node_name, | |
1712 | const char *password, Error **errp) | |
666daa68 | 1713 | { |
12d3ba82 | 1714 | Error *local_err = NULL; |
666daa68 | 1715 | BlockDriverState *bs; |
e3442099 | 1716 | AioContext *aio_context; |
666daa68 MA |
1717 | int err; |
1718 | ||
12d3ba82 BC |
1719 | bs = bdrv_lookup_bs(has_device ? device : NULL, |
1720 | has_node_name ? node_name : NULL, | |
1721 | &local_err); | |
84d18f06 | 1722 | if (local_err) { |
12d3ba82 | 1723 | error_propagate(errp, local_err); |
a4dea8a9 | 1724 | return; |
666daa68 MA |
1725 | } |
1726 | ||
e3442099 SH |
1727 | aio_context = bdrv_get_aio_context(bs); |
1728 | aio_context_acquire(aio_context); | |
1729 | ||
a4dea8a9 | 1730 | err = bdrv_set_key(bs, password); |
666daa68 | 1731 | if (err == -EINVAL) { |
a4dea8a9 | 1732 | error_set(errp, QERR_DEVICE_NOT_ENCRYPTED, bdrv_get_device_name(bs)); |
e3442099 | 1733 | goto out; |
666daa68 | 1734 | } else if (err < 0) { |
a4dea8a9 | 1735 | error_set(errp, QERR_INVALID_PASSWORD); |
e3442099 | 1736 | goto out; |
666daa68 | 1737 | } |
e3442099 SH |
1738 | |
1739 | out: | |
1740 | aio_context_release(aio_context); | |
666daa68 MA |
1741 | } |
1742 | ||
e3442099 | 1743 | /* Assumes AioContext is held */ |
333a96ec LC |
1744 | static void qmp_bdrv_open_encrypted(BlockDriverState *bs, const char *filename, |
1745 | int bdrv_flags, BlockDriver *drv, | |
1746 | const char *password, Error **errp) | |
1747 | { | |
34b5d2c6 | 1748 | Error *local_err = NULL; |
0eef407c LC |
1749 | int ret; |
1750 | ||
ddf5636d | 1751 | ret = bdrv_open(&bs, filename, NULL, NULL, bdrv_flags, drv, &local_err); |
0eef407c | 1752 | if (ret < 0) { |
34b5d2c6 | 1753 | error_propagate(errp, local_err); |
333a96ec LC |
1754 | return; |
1755 | } | |
1756 | ||
1757 | if (bdrv_key_required(bs)) { | |
1758 | if (password) { | |
1759 | if (bdrv_set_key(bs, password) < 0) { | |
1760 | error_set(errp, QERR_INVALID_PASSWORD); | |
1761 | } | |
1762 | } else { | |
1763 | error_set(errp, QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs), | |
1764 | bdrv_get_encrypted_filename(bs)); | |
1765 | } | |
1766 | } else if (password) { | |
1767 | error_set(errp, QERR_DEVICE_NOT_ENCRYPTED, bdrv_get_device_name(bs)); | |
1768 | } | |
1769 | } | |
1770 | ||
1771 | void qmp_change_blockdev(const char *device, const char *filename, | |
314f7ea7 | 1772 | const char *format, Error **errp) |
666daa68 | 1773 | { |
6007cdd4 | 1774 | BlockBackend *blk; |
666daa68 | 1775 | BlockDriverState *bs; |
e3442099 | 1776 | AioContext *aio_context; |
666daa68 MA |
1777 | BlockDriver *drv = NULL; |
1778 | int bdrv_flags; | |
92d48558 | 1779 | Error *err = NULL; |
666daa68 | 1780 | |
6007cdd4 MA |
1781 | blk = blk_by_name(device); |
1782 | if (!blk) { | |
333a96ec LC |
1783 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
1784 | return; | |
666daa68 | 1785 | } |
6007cdd4 | 1786 | bs = blk_bs(blk); |
333a96ec | 1787 | |
e3442099 SH |
1788 | aio_context = bdrv_get_aio_context(bs); |
1789 | aio_context_acquire(aio_context); | |
1790 | ||
333a96ec | 1791 | if (format) { |
b64ec4e4 | 1792 | drv = bdrv_find_whitelisted_format(format, bs->read_only); |
666daa68 | 1793 | if (!drv) { |
333a96ec | 1794 | error_set(errp, QERR_INVALID_BLOCK_FORMAT, format); |
e3442099 | 1795 | goto out; |
666daa68 MA |
1796 | } |
1797 | } | |
333a96ec | 1798 | |
6007cdd4 | 1799 | eject_device(blk, 0, &err); |
84d18f06 | 1800 | if (err) { |
333a96ec | 1801 | error_propagate(errp, err); |
e3442099 | 1802 | goto out; |
666daa68 | 1803 | } |
333a96ec | 1804 | |
528f7663 | 1805 | bdrv_flags = bdrv_is_read_only(bs) ? 0 : BDRV_O_RDWR; |
199630b6 | 1806 | bdrv_flags |= bdrv_is_snapshot(bs) ? BDRV_O_SNAPSHOT : 0; |
333a96ec LC |
1807 | |
1808 | qmp_bdrv_open_encrypted(bs, filename, bdrv_flags, drv, NULL, errp); | |
e3442099 SH |
1809 | |
1810 | out: | |
1811 | aio_context_release(aio_context); | |
666daa68 | 1812 | } |
9063f814 | 1813 | |
727f005e | 1814 | /* throttling disk I/O limits */ |
80047da5 | 1815 | void qmp_block_set_io_throttle(const char *device, int64_t bps, int64_t bps_rd, |
3e9fab69 BC |
1816 | int64_t bps_wr, |
1817 | int64_t iops, | |
1818 | int64_t iops_rd, | |
1819 | int64_t iops_wr, | |
1820 | bool has_bps_max, | |
1821 | int64_t bps_max, | |
1822 | bool has_bps_rd_max, | |
1823 | int64_t bps_rd_max, | |
1824 | bool has_bps_wr_max, | |
1825 | int64_t bps_wr_max, | |
1826 | bool has_iops_max, | |
1827 | int64_t iops_max, | |
1828 | bool has_iops_rd_max, | |
1829 | int64_t iops_rd_max, | |
1830 | bool has_iops_wr_max, | |
2024c1df BC |
1831 | int64_t iops_wr_max, |
1832 | bool has_iops_size, | |
1833 | int64_t iops_size, Error **errp) | |
727f005e | 1834 | { |
cc0681c4 | 1835 | ThrottleConfig cfg; |
727f005e | 1836 | BlockDriverState *bs; |
b15446fd | 1837 | AioContext *aio_context; |
727f005e | 1838 | |
80047da5 | 1839 | bs = bdrv_find(device); |
727f005e | 1840 | if (!bs) { |
80047da5 LC |
1841 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
1842 | return; | |
727f005e ZYW |
1843 | } |
1844 | ||
cc0681c4 BC |
1845 | memset(&cfg, 0, sizeof(cfg)); |
1846 | cfg.buckets[THROTTLE_BPS_TOTAL].avg = bps; | |
1847 | cfg.buckets[THROTTLE_BPS_READ].avg = bps_rd; | |
1848 | cfg.buckets[THROTTLE_BPS_WRITE].avg = bps_wr; | |
1849 | ||
1850 | cfg.buckets[THROTTLE_OPS_TOTAL].avg = iops; | |
1851 | cfg.buckets[THROTTLE_OPS_READ].avg = iops_rd; | |
1852 | cfg.buckets[THROTTLE_OPS_WRITE].avg = iops_wr; | |
1853 | ||
3e9fab69 BC |
1854 | if (has_bps_max) { |
1855 | cfg.buckets[THROTTLE_BPS_TOTAL].max = bps_max; | |
1856 | } | |
1857 | if (has_bps_rd_max) { | |
1858 | cfg.buckets[THROTTLE_BPS_READ].max = bps_rd_max; | |
1859 | } | |
1860 | if (has_bps_wr_max) { | |
1861 | cfg.buckets[THROTTLE_BPS_WRITE].max = bps_wr_max; | |
1862 | } | |
1863 | if (has_iops_max) { | |
1864 | cfg.buckets[THROTTLE_OPS_TOTAL].max = iops_max; | |
1865 | } | |
1866 | if (has_iops_rd_max) { | |
1867 | cfg.buckets[THROTTLE_OPS_READ].max = iops_rd_max; | |
1868 | } | |
1869 | if (has_iops_wr_max) { | |
1870 | cfg.buckets[THROTTLE_OPS_WRITE].max = iops_wr_max; | |
1871 | } | |
727f005e | 1872 | |
2024c1df BC |
1873 | if (has_iops_size) { |
1874 | cfg.op_size = iops_size; | |
1875 | } | |
cc0681c4 BC |
1876 | |
1877 | if (!check_throttle_config(&cfg, errp)) { | |
80047da5 | 1878 | return; |
727f005e ZYW |
1879 | } |
1880 | ||
b15446fd SH |
1881 | aio_context = bdrv_get_aio_context(bs); |
1882 | aio_context_acquire(aio_context); | |
1883 | ||
cc0681c4 | 1884 | if (!bs->io_limits_enabled && throttle_enabled(&cfg)) { |
727f005e | 1885 | bdrv_io_limits_enable(bs); |
cc0681c4 | 1886 | } else if (bs->io_limits_enabled && !throttle_enabled(&cfg)) { |
727f005e | 1887 | bdrv_io_limits_disable(bs); |
cc0681c4 BC |
1888 | } |
1889 | ||
1890 | if (bs->io_limits_enabled) { | |
1891 | bdrv_set_io_limits(bs, &cfg); | |
727f005e | 1892 | } |
b15446fd SH |
1893 | |
1894 | aio_context_release(aio_context); | |
727f005e ZYW |
1895 | } |
1896 | ||
9063f814 RH |
1897 | int do_drive_del(Monitor *mon, const QDict *qdict, QObject **ret_data) |
1898 | { | |
1899 | const char *id = qdict_get_str(qdict, "id"); | |
7e7d56d9 | 1900 | BlockBackend *blk; |
9063f814 | 1901 | BlockDriverState *bs; |
8ad4202b | 1902 | AioContext *aio_context; |
3718d8ab | 1903 | Error *local_err = NULL; |
9063f814 | 1904 | |
7e7d56d9 MA |
1905 | blk = blk_by_name(id); |
1906 | if (!blk) { | |
b1422f20 | 1907 | error_report("Device '%s' not found", id); |
9063f814 RH |
1908 | return -1; |
1909 | } | |
7e7d56d9 | 1910 | bs = blk_bs(blk); |
8ad4202b | 1911 | |
26f8b3a8 | 1912 | if (!blk_legacy_dinfo(blk)) { |
48f364dd MA |
1913 | error_report("Deleting device added with blockdev-add" |
1914 | " is not supported"); | |
1915 | return -1; | |
1916 | } | |
1917 | ||
8ad4202b SH |
1918 | aio_context = bdrv_get_aio_context(bs); |
1919 | aio_context_acquire(aio_context); | |
1920 | ||
3718d8ab FZ |
1921 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_DRIVE_DEL, &local_err)) { |
1922 | error_report("%s", error_get_pretty(local_err)); | |
1923 | error_free(local_err); | |
8ad4202b | 1924 | aio_context_release(aio_context); |
8591675f MT |
1925 | return -1; |
1926 | } | |
9063f814 RH |
1927 | |
1928 | /* quiesce block driver; prevent further io */ | |
922453bc | 1929 | bdrv_drain_all(); |
9063f814 RH |
1930 | bdrv_flush(bs); |
1931 | bdrv_close(bs); | |
1932 | ||
fa879d62 | 1933 | /* if we have a device attached to this BlockDriverState |
d22b2f41 RH |
1934 | * then we need to make the drive anonymous until the device |
1935 | * can be removed. If this is a drive with no device backing | |
1936 | * then we can just get rid of the block driver state right here. | |
1937 | */ | |
a7f53e26 | 1938 | if (blk_get_attached_dev(blk)) { |
7e7d56d9 | 1939 | blk_hide_on_behalf_of_do_drive_del(blk); |
293c51a6 SH |
1940 | /* Further I/O must not pause the guest */ |
1941 | bdrv_set_on_error(bs, BLOCKDEV_ON_ERROR_REPORT, | |
1942 | BLOCKDEV_ON_ERROR_REPORT); | |
d22b2f41 | 1943 | } else { |
b9fe8a7a | 1944 | blk_unref(blk); |
9063f814 RH |
1945 | } |
1946 | ||
8ad4202b | 1947 | aio_context_release(aio_context); |
9063f814 RH |
1948 | return 0; |
1949 | } | |
6d4a2b3a | 1950 | |
3b1dbd11 BC |
1951 | void qmp_block_resize(bool has_device, const char *device, |
1952 | bool has_node_name, const char *node_name, | |
1953 | int64_t size, Error **errp) | |
6d4a2b3a | 1954 | { |
3b1dbd11 | 1955 | Error *local_err = NULL; |
6d4a2b3a | 1956 | BlockDriverState *bs; |
927e0e76 | 1957 | AioContext *aio_context; |
8732901e | 1958 | int ret; |
6d4a2b3a | 1959 | |
3b1dbd11 BC |
1960 | bs = bdrv_lookup_bs(has_device ? device : NULL, |
1961 | has_node_name ? node_name : NULL, | |
1962 | &local_err); | |
84d18f06 | 1963 | if (local_err) { |
3b1dbd11 BC |
1964 | error_propagate(errp, local_err); |
1965 | return; | |
1966 | } | |
1967 | ||
927e0e76 SH |
1968 | aio_context = bdrv_get_aio_context(bs); |
1969 | aio_context_acquire(aio_context); | |
1970 | ||
3b1dbd11 BC |
1971 | if (!bdrv_is_first_non_filter(bs)) { |
1972 | error_set(errp, QERR_FEATURE_DISABLED, "resize"); | |
927e0e76 | 1973 | goto out; |
6d4a2b3a CH |
1974 | } |
1975 | ||
1976 | if (size < 0) { | |
939a1cc3 | 1977 | error_set(errp, QERR_INVALID_PARAMETER_VALUE, "size", "a >0 size"); |
927e0e76 | 1978 | goto out; |
6d4a2b3a CH |
1979 | } |
1980 | ||
9c75e168 JC |
1981 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_RESIZE, NULL)) { |
1982 | error_set(errp, QERR_DEVICE_IN_USE, device); | |
927e0e76 | 1983 | goto out; |
9c75e168 JC |
1984 | } |
1985 | ||
92b7a08d PL |
1986 | /* complete all in-flight operations before resizing the device */ |
1987 | bdrv_drain_all(); | |
1988 | ||
8732901e KW |
1989 | ret = bdrv_truncate(bs, size); |
1990 | switch (ret) { | |
939a1cc3 SH |
1991 | case 0: |
1992 | break; | |
1993 | case -ENOMEDIUM: | |
1994 | error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); | |
1995 | break; | |
1996 | case -ENOTSUP: | |
1997 | error_set(errp, QERR_UNSUPPORTED); | |
1998 | break; | |
1999 | case -EACCES: | |
2000 | error_set(errp, QERR_DEVICE_IS_READ_ONLY, device); | |
2001 | break; | |
2002 | case -EBUSY: | |
2003 | error_set(errp, QERR_DEVICE_IN_USE, device); | |
2004 | break; | |
2005 | default: | |
8732901e | 2006 | error_setg_errno(errp, -ret, "Could not resize"); |
939a1cc3 | 2007 | break; |
6d4a2b3a | 2008 | } |
927e0e76 SH |
2009 | |
2010 | out: | |
2011 | aio_context_release(aio_context); | |
6d4a2b3a | 2012 | } |
12bd451f | 2013 | |
9abf2dba | 2014 | static void block_job_cb(void *opaque, int ret) |
12bd451f | 2015 | { |
723c5d93 SH |
2016 | /* Note that this function may be executed from another AioContext besides |
2017 | * the QEMU main loop. If you need to access anything that assumes the | |
2018 | * QEMU global mutex, use a BH or introduce a mutex. | |
2019 | */ | |
2020 | ||
12bd451f | 2021 | BlockDriverState *bs = opaque; |
bcada37b | 2022 | const char *msg = NULL; |
12bd451f | 2023 | |
9abf2dba | 2024 | trace_block_job_cb(bs, bs->job, ret); |
12bd451f SH |
2025 | |
2026 | assert(bs->job); | |
bcada37b | 2027 | |
12bd451f | 2028 | if (ret < 0) { |
bcada37b | 2029 | msg = strerror(-ret); |
12bd451f SH |
2030 | } |
2031 | ||
370521a1 | 2032 | if (block_job_is_cancelled(bs->job)) { |
bcada37b | 2033 | block_job_event_cancelled(bs->job); |
370521a1 | 2034 | } else { |
bcada37b | 2035 | block_job_event_completed(bs->job, msg); |
370521a1 | 2036 | } |
aa398a5c | 2037 | |
fa510ebf | 2038 | bdrv_put_ref_bh_schedule(bs); |
12bd451f SH |
2039 | } |
2040 | ||
13d8cc51 JC |
2041 | void qmp_block_stream(const char *device, |
2042 | bool has_base, const char *base, | |
2043 | bool has_backing_file, const char *backing_file, | |
2044 | bool has_speed, int64_t speed, | |
1d809098 PB |
2045 | bool has_on_error, BlockdevOnError on_error, |
2046 | Error **errp) | |
12bd451f SH |
2047 | { |
2048 | BlockDriverState *bs; | |
c8c3080f | 2049 | BlockDriverState *base_bs = NULL; |
f3e69beb | 2050 | AioContext *aio_context; |
fd7f8c65 | 2051 | Error *local_err = NULL; |
13d8cc51 | 2052 | const char *base_name = NULL; |
12bd451f | 2053 | |
1d809098 PB |
2054 | if (!has_on_error) { |
2055 | on_error = BLOCKDEV_ON_ERROR_REPORT; | |
2056 | } | |
2057 | ||
12bd451f SH |
2058 | bs = bdrv_find(device); |
2059 | if (!bs) { | |
2060 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); | |
2061 | return; | |
2062 | } | |
2063 | ||
f3e69beb SH |
2064 | aio_context = bdrv_get_aio_context(bs); |
2065 | aio_context_acquire(aio_context); | |
2066 | ||
628ff683 | 2067 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_STREAM, errp)) { |
f3e69beb | 2068 | goto out; |
628ff683 FZ |
2069 | } |
2070 | ||
13d8cc51 | 2071 | if (has_base) { |
c8c3080f MT |
2072 | base_bs = bdrv_find_backing_image(bs, base); |
2073 | if (base_bs == NULL) { | |
2074 | error_set(errp, QERR_BASE_NOT_FOUND, base); | |
f3e69beb | 2075 | goto out; |
c8c3080f | 2076 | } |
f3e69beb | 2077 | assert(bdrv_get_aio_context(base_bs) == aio_context); |
13d8cc51 | 2078 | base_name = base; |
12bd451f SH |
2079 | } |
2080 | ||
13d8cc51 JC |
2081 | /* if we are streaming the entire chain, the result will have no backing |
2082 | * file, and specifying one is therefore an error */ | |
2083 | if (base_bs == NULL && has_backing_file) { | |
2084 | error_setg(errp, "backing file specified, but streaming the " | |
2085 | "entire chain"); | |
f3e69beb | 2086 | goto out; |
13d8cc51 JC |
2087 | } |
2088 | ||
2089 | /* backing_file string overrides base bs filename */ | |
2090 | base_name = has_backing_file ? backing_file : base_name; | |
2091 | ||
2092 | stream_start(bs, base_bs, base_name, has_speed ? speed : 0, | |
1d809098 | 2093 | on_error, block_job_cb, bs, &local_err); |
84d18f06 | 2094 | if (local_err) { |
fd7f8c65 | 2095 | error_propagate(errp, local_err); |
f3e69beb | 2096 | goto out; |
12bd451f SH |
2097 | } |
2098 | ||
2099 | trace_qmp_block_stream(bs, bs->job); | |
f3e69beb SH |
2100 | |
2101 | out: | |
2102 | aio_context_release(aio_context); | |
12bd451f | 2103 | } |
2d47c6e9 | 2104 | |
ed61fc10 | 2105 | void qmp_block_commit(const char *device, |
7676e2c5 JC |
2106 | bool has_base, const char *base, |
2107 | bool has_top, const char *top, | |
54e26900 | 2108 | bool has_backing_file, const char *backing_file, |
ed61fc10 JC |
2109 | bool has_speed, int64_t speed, |
2110 | Error **errp) | |
2111 | { | |
2112 | BlockDriverState *bs; | |
2113 | BlockDriverState *base_bs, *top_bs; | |
9e85cd5c | 2114 | AioContext *aio_context; |
ed61fc10 JC |
2115 | Error *local_err = NULL; |
2116 | /* This will be part of the QMP command, if/when the | |
2117 | * BlockdevOnError change for blkmirror makes it in | |
2118 | */ | |
92aa5c6d | 2119 | BlockdevOnError on_error = BLOCKDEV_ON_ERROR_REPORT; |
ed61fc10 | 2120 | |
54504663 HR |
2121 | if (!has_speed) { |
2122 | speed = 0; | |
2123 | } | |
2124 | ||
7676e2c5 JC |
2125 | /* Important Note: |
2126 | * libvirt relies on the DeviceNotFound error class in order to probe for | |
2127 | * live commit feature versions; for this to work, we must make sure to | |
2128 | * perform the device lookup before any generic errors that may occur in a | |
2129 | * scenario in which all optional arguments are omitted. */ | |
ed61fc10 JC |
2130 | bs = bdrv_find(device); |
2131 | if (!bs) { | |
2132 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); | |
2133 | return; | |
628ff683 FZ |
2134 | } |
2135 | ||
9e85cd5c SH |
2136 | aio_context = bdrv_get_aio_context(bs); |
2137 | aio_context_acquire(aio_context); | |
2138 | ||
2139 | /* drain all i/o before commits */ | |
2140 | bdrv_drain_all(); | |
2141 | ||
628ff683 | 2142 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_COMMIT, errp)) { |
9e85cd5c | 2143 | goto out; |
ed61fc10 | 2144 | } |
ed61fc10 JC |
2145 | |
2146 | /* default top_bs is the active layer */ | |
2147 | top_bs = bs; | |
2148 | ||
7676e2c5 | 2149 | if (has_top && top) { |
ed61fc10 JC |
2150 | if (strcmp(bs->filename, top) != 0) { |
2151 | top_bs = bdrv_find_backing_image(bs, top); | |
2152 | } | |
2153 | } | |
2154 | ||
2155 | if (top_bs == NULL) { | |
2156 | error_setg(errp, "Top image file %s not found", top ? top : "NULL"); | |
9e85cd5c | 2157 | goto out; |
ed61fc10 JC |
2158 | } |
2159 | ||
9e85cd5c SH |
2160 | assert(bdrv_get_aio_context(top_bs) == aio_context); |
2161 | ||
d5208c45 JC |
2162 | if (has_base && base) { |
2163 | base_bs = bdrv_find_backing_image(top_bs, base); | |
2164 | } else { | |
2165 | base_bs = bdrv_find_base(top_bs); | |
2166 | } | |
2167 | ||
2168 | if (base_bs == NULL) { | |
2169 | error_set(errp, QERR_BASE_NOT_FOUND, base ? base : "NULL"); | |
9e85cd5c | 2170 | goto out; |
d5208c45 JC |
2171 | } |
2172 | ||
9e85cd5c SH |
2173 | assert(bdrv_get_aio_context(base_bs) == aio_context); |
2174 | ||
7676e2c5 JC |
2175 | /* Do not allow attempts to commit an image into itself */ |
2176 | if (top_bs == base_bs) { | |
2177 | error_setg(errp, "cannot commit an image into itself"); | |
9e85cd5c | 2178 | goto out; |
7676e2c5 JC |
2179 | } |
2180 | ||
20a63d2c | 2181 | if (top_bs == bs) { |
54e26900 JC |
2182 | if (has_backing_file) { |
2183 | error_setg(errp, "'backing-file' specified," | |
2184 | " but 'top' is the active layer"); | |
9e85cd5c | 2185 | goto out; |
54e26900 | 2186 | } |
20a63d2c FZ |
2187 | commit_active_start(bs, base_bs, speed, on_error, block_job_cb, |
2188 | bs, &local_err); | |
2189 | } else { | |
2190 | commit_start(bs, base_bs, top_bs, speed, on_error, block_job_cb, bs, | |
54e26900 | 2191 | has_backing_file ? backing_file : NULL, &local_err); |
20a63d2c | 2192 | } |
ed61fc10 JC |
2193 | if (local_err != NULL) { |
2194 | error_propagate(errp, local_err); | |
9e85cd5c | 2195 | goto out; |
ed61fc10 | 2196 | } |
9e85cd5c SH |
2197 | |
2198 | out: | |
2199 | aio_context_release(aio_context); | |
ed61fc10 JC |
2200 | } |
2201 | ||
99a9addf SH |
2202 | void qmp_drive_backup(const char *device, const char *target, |
2203 | bool has_format, const char *format, | |
b53169ea | 2204 | enum MirrorSyncMode sync, |
99a9addf SH |
2205 | bool has_mode, enum NewImageMode mode, |
2206 | bool has_speed, int64_t speed, | |
2207 | bool has_on_source_error, BlockdevOnError on_source_error, | |
2208 | bool has_on_target_error, BlockdevOnError on_target_error, | |
2209 | Error **errp) | |
2210 | { | |
2211 | BlockDriverState *bs; | |
2212 | BlockDriverState *target_bs; | |
fc5d3f84 | 2213 | BlockDriverState *source = NULL; |
761731b1 | 2214 | AioContext *aio_context; |
99a9addf SH |
2215 | BlockDriver *drv = NULL; |
2216 | Error *local_err = NULL; | |
2217 | int flags; | |
2218 | int64_t size; | |
2219 | int ret; | |
2220 | ||
2221 | if (!has_speed) { | |
2222 | speed = 0; | |
2223 | } | |
2224 | if (!has_on_source_error) { | |
2225 | on_source_error = BLOCKDEV_ON_ERROR_REPORT; | |
2226 | } | |
2227 | if (!has_on_target_error) { | |
2228 | on_target_error = BLOCKDEV_ON_ERROR_REPORT; | |
2229 | } | |
2230 | if (!has_mode) { | |
2231 | mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS; | |
2232 | } | |
2233 | ||
2234 | bs = bdrv_find(device); | |
2235 | if (!bs) { | |
2236 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); | |
2237 | return; | |
2238 | } | |
2239 | ||
761731b1 SH |
2240 | aio_context = bdrv_get_aio_context(bs); |
2241 | aio_context_acquire(aio_context); | |
2242 | ||
99a9addf SH |
2243 | if (!bdrv_is_inserted(bs)) { |
2244 | error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); | |
761731b1 | 2245 | goto out; |
99a9addf SH |
2246 | } |
2247 | ||
2248 | if (!has_format) { | |
2249 | format = mode == NEW_IMAGE_MODE_EXISTING ? NULL : bs->drv->format_name; | |
2250 | } | |
2251 | if (format) { | |
2252 | drv = bdrv_find_format(format); | |
2253 | if (!drv) { | |
2254 | error_set(errp, QERR_INVALID_BLOCK_FORMAT, format); | |
761731b1 | 2255 | goto out; |
99a9addf SH |
2256 | } |
2257 | } | |
2258 | ||
3718d8ab | 2259 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_BACKUP_SOURCE, errp)) { |
761731b1 | 2260 | goto out; |
99a9addf SH |
2261 | } |
2262 | ||
2263 | flags = bs->open_flags | BDRV_O_RDWR; | |
2264 | ||
fc5d3f84 IM |
2265 | /* See if we have a backing HD we can use to create our new image |
2266 | * on top of. */ | |
2267 | if (sync == MIRROR_SYNC_MODE_TOP) { | |
2268 | source = bs->backing_hd; | |
2269 | if (!source) { | |
2270 | sync = MIRROR_SYNC_MODE_FULL; | |
2271 | } | |
2272 | } | |
2273 | if (sync == MIRROR_SYNC_MODE_NONE) { | |
2274 | source = bs; | |
2275 | } | |
2276 | ||
99a9addf SH |
2277 | size = bdrv_getlength(bs); |
2278 | if (size < 0) { | |
2279 | error_setg_errno(errp, -size, "bdrv_getlength failed"); | |
761731b1 | 2280 | goto out; |
99a9addf SH |
2281 | } |
2282 | ||
2283 | if (mode != NEW_IMAGE_MODE_EXISTING) { | |
2284 | assert(format && drv); | |
fc5d3f84 IM |
2285 | if (source) { |
2286 | bdrv_img_create(target, format, source->filename, | |
2287 | source->drv->format_name, NULL, | |
2288 | size, flags, &local_err, false); | |
2289 | } else { | |
2290 | bdrv_img_create(target, format, NULL, NULL, NULL, | |
2291 | size, flags, &local_err, false); | |
2292 | } | |
99a9addf SH |
2293 | } |
2294 | ||
84d18f06 | 2295 | if (local_err) { |
99a9addf | 2296 | error_propagate(errp, local_err); |
761731b1 | 2297 | goto out; |
99a9addf SH |
2298 | } |
2299 | ||
f67503e5 | 2300 | target_bs = NULL; |
ddf5636d | 2301 | ret = bdrv_open(&target_bs, target, NULL, NULL, flags, drv, &local_err); |
99a9addf | 2302 | if (ret < 0) { |
34b5d2c6 | 2303 | error_propagate(errp, local_err); |
761731b1 | 2304 | goto out; |
99a9addf SH |
2305 | } |
2306 | ||
761731b1 SH |
2307 | bdrv_set_aio_context(target_bs, aio_context); |
2308 | ||
fc5d3f84 | 2309 | backup_start(bs, target_bs, speed, sync, on_source_error, on_target_error, |
99a9addf SH |
2310 | block_job_cb, bs, &local_err); |
2311 | if (local_err != NULL) { | |
4f6fd349 | 2312 | bdrv_unref(target_bs); |
99a9addf | 2313 | error_propagate(errp, local_err); |
761731b1 | 2314 | goto out; |
99a9addf | 2315 | } |
761731b1 SH |
2316 | |
2317 | out: | |
2318 | aio_context_release(aio_context); | |
99a9addf SH |
2319 | } |
2320 | ||
c13163fb BC |
2321 | BlockDeviceInfoList *qmp_query_named_block_nodes(Error **errp) |
2322 | { | |
2323 | return bdrv_named_nodes_list(); | |
2324 | } | |
2325 | ||
08e4ed6c PB |
2326 | #define DEFAULT_MIRROR_BUF_SIZE (10 << 20) |
2327 | ||
d9b902db PB |
2328 | void qmp_drive_mirror(const char *device, const char *target, |
2329 | bool has_format, const char *format, | |
4c828dc6 | 2330 | bool has_node_name, const char *node_name, |
09158f00 | 2331 | bool has_replaces, const char *replaces, |
d9b902db PB |
2332 | enum MirrorSyncMode sync, |
2333 | bool has_mode, enum NewImageMode mode, | |
b952b558 | 2334 | bool has_speed, int64_t speed, |
eee13dfe | 2335 | bool has_granularity, uint32_t granularity, |
08e4ed6c | 2336 | bool has_buf_size, int64_t buf_size, |
b952b558 PB |
2337 | bool has_on_source_error, BlockdevOnError on_source_error, |
2338 | bool has_on_target_error, BlockdevOnError on_target_error, | |
2339 | Error **errp) | |
d9b902db | 2340 | { |
d9b902db PB |
2341 | BlockDriverState *bs; |
2342 | BlockDriverState *source, *target_bs; | |
5a7e7a0b | 2343 | AioContext *aio_context; |
d9b902db PB |
2344 | BlockDriver *drv = NULL; |
2345 | Error *local_err = NULL; | |
4c828dc6 | 2346 | QDict *options = NULL; |
d9b902db | 2347 | int flags; |
ac3c5d83 | 2348 | int64_t size; |
d9b902db PB |
2349 | int ret; |
2350 | ||
2351 | if (!has_speed) { | |
2352 | speed = 0; | |
2353 | } | |
b952b558 PB |
2354 | if (!has_on_source_error) { |
2355 | on_source_error = BLOCKDEV_ON_ERROR_REPORT; | |
2356 | } | |
2357 | if (!has_on_target_error) { | |
2358 | on_target_error = BLOCKDEV_ON_ERROR_REPORT; | |
2359 | } | |
d9b902db PB |
2360 | if (!has_mode) { |
2361 | mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS; | |
2362 | } | |
eee13dfe PB |
2363 | if (!has_granularity) { |
2364 | granularity = 0; | |
2365 | } | |
08e4ed6c PB |
2366 | if (!has_buf_size) { |
2367 | buf_size = DEFAULT_MIRROR_BUF_SIZE; | |
2368 | } | |
2369 | ||
eee13dfe | 2370 | if (granularity != 0 && (granularity < 512 || granularity > 1048576 * 64)) { |
3cbbe9fd SH |
2371 | error_set(errp, QERR_INVALID_PARAMETER_VALUE, "granularity", |
2372 | "a value in range [512B, 64MB]"); | |
eee13dfe PB |
2373 | return; |
2374 | } | |
2375 | if (granularity & (granularity - 1)) { | |
3cbbe9fd | 2376 | error_set(errp, QERR_INVALID_PARAMETER_VALUE, "granularity", "power of 2"); |
eee13dfe PB |
2377 | return; |
2378 | } | |
d9b902db PB |
2379 | |
2380 | bs = bdrv_find(device); | |
2381 | if (!bs) { | |
2382 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); | |
2383 | return; | |
2384 | } | |
2385 | ||
5a7e7a0b SH |
2386 | aio_context = bdrv_get_aio_context(bs); |
2387 | aio_context_acquire(aio_context); | |
2388 | ||
d9b902db PB |
2389 | if (!bdrv_is_inserted(bs)) { |
2390 | error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); | |
5a7e7a0b | 2391 | goto out; |
d9b902db PB |
2392 | } |
2393 | ||
2394 | if (!has_format) { | |
2395 | format = mode == NEW_IMAGE_MODE_EXISTING ? NULL : bs->drv->format_name; | |
2396 | } | |
2397 | if (format) { | |
2398 | drv = bdrv_find_format(format); | |
2399 | if (!drv) { | |
2400 | error_set(errp, QERR_INVALID_BLOCK_FORMAT, format); | |
5a7e7a0b | 2401 | goto out; |
d9b902db PB |
2402 | } |
2403 | } | |
2404 | ||
3718d8ab | 2405 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_MIRROR, errp)) { |
5a7e7a0b | 2406 | goto out; |
d9b902db PB |
2407 | } |
2408 | ||
2409 | flags = bs->open_flags | BDRV_O_RDWR; | |
2410 | source = bs->backing_hd; | |
2411 | if (!source && sync == MIRROR_SYNC_MODE_TOP) { | |
2412 | sync = MIRROR_SYNC_MODE_FULL; | |
2413 | } | |
117e0c82 HR |
2414 | if (sync == MIRROR_SYNC_MODE_NONE) { |
2415 | source = bs; | |
2416 | } | |
d9b902db | 2417 | |
ac3c5d83 SH |
2418 | size = bdrv_getlength(bs); |
2419 | if (size < 0) { | |
2420 | error_setg_errno(errp, -size, "bdrv_getlength failed"); | |
5a7e7a0b | 2421 | goto out; |
ac3c5d83 SH |
2422 | } |
2423 | ||
09158f00 BC |
2424 | if (has_replaces) { |
2425 | BlockDriverState *to_replace_bs; | |
5a7e7a0b SH |
2426 | AioContext *replace_aio_context; |
2427 | int64_t replace_size; | |
09158f00 BC |
2428 | |
2429 | if (!has_node_name) { | |
2430 | error_setg(errp, "a node-name must be provided when replacing a" | |
2431 | " named node of the graph"); | |
5a7e7a0b | 2432 | goto out; |
09158f00 BC |
2433 | } |
2434 | ||
2435 | to_replace_bs = check_to_replace_node(replaces, &local_err); | |
2436 | ||
2437 | if (!to_replace_bs) { | |
2438 | error_propagate(errp, local_err); | |
5a7e7a0b | 2439 | goto out; |
09158f00 BC |
2440 | } |
2441 | ||
5a7e7a0b SH |
2442 | replace_aio_context = bdrv_get_aio_context(to_replace_bs); |
2443 | aio_context_acquire(replace_aio_context); | |
2444 | replace_size = bdrv_getlength(to_replace_bs); | |
2445 | aio_context_release(replace_aio_context); | |
2446 | ||
2447 | if (size != replace_size) { | |
09158f00 BC |
2448 | error_setg(errp, "cannot replace image with a mirror image of " |
2449 | "different size"); | |
5a7e7a0b | 2450 | goto out; |
09158f00 BC |
2451 | } |
2452 | } | |
2453 | ||
14526864 HR |
2454 | if ((sync == MIRROR_SYNC_MODE_FULL || !source) |
2455 | && mode != NEW_IMAGE_MODE_EXISTING) | |
2456 | { | |
d9b902db PB |
2457 | /* create new image w/o backing file */ |
2458 | assert(format && drv); | |
cf8f2426 | 2459 | bdrv_img_create(target, format, |
f382d43a | 2460 | NULL, NULL, NULL, size, flags, &local_err, false); |
d9b902db PB |
2461 | } else { |
2462 | switch (mode) { | |
2463 | case NEW_IMAGE_MODE_EXISTING: | |
d9b902db PB |
2464 | break; |
2465 | case NEW_IMAGE_MODE_ABSOLUTE_PATHS: | |
2466 | /* create new image with backing file */ | |
cf8f2426 LC |
2467 | bdrv_img_create(target, format, |
2468 | source->filename, | |
2469 | source->drv->format_name, | |
f382d43a | 2470 | NULL, size, flags, &local_err, false); |
d9b902db PB |
2471 | break; |
2472 | default: | |
2473 | abort(); | |
2474 | } | |
2475 | } | |
2476 | ||
84d18f06 | 2477 | if (local_err) { |
cf8f2426 | 2478 | error_propagate(errp, local_err); |
5a7e7a0b | 2479 | goto out; |
d9b902db PB |
2480 | } |
2481 | ||
4c828dc6 BC |
2482 | if (has_node_name) { |
2483 | options = qdict_new(); | |
2484 | qdict_put(options, "node-name", qstring_from_str(node_name)); | |
2485 | } | |
2486 | ||
b812f671 PB |
2487 | /* Mirroring takes care of copy-on-write using the source's backing |
2488 | * file. | |
2489 | */ | |
f67503e5 | 2490 | target_bs = NULL; |
4c828dc6 BC |
2491 | ret = bdrv_open(&target_bs, target, NULL, options, |
2492 | flags | BDRV_O_NO_BACKING, drv, &local_err); | |
d9b902db | 2493 | if (ret < 0) { |
34b5d2c6 | 2494 | error_propagate(errp, local_err); |
5a7e7a0b | 2495 | goto out; |
d9b902db PB |
2496 | } |
2497 | ||
5a7e7a0b SH |
2498 | bdrv_set_aio_context(target_bs, aio_context); |
2499 | ||
09158f00 BC |
2500 | /* pass the node name to replace to mirror start since it's loose coupling |
2501 | * and will allow to check whether the node still exist at mirror completion | |
2502 | */ | |
2503 | mirror_start(bs, target_bs, | |
2504 | has_replaces ? replaces : NULL, | |
2505 | speed, granularity, buf_size, sync, | |
eee13dfe | 2506 | on_source_error, on_target_error, |
b952b558 | 2507 | block_job_cb, bs, &local_err); |
d9b902db | 2508 | if (local_err != NULL) { |
4f6fd349 | 2509 | bdrv_unref(target_bs); |
d9b902db | 2510 | error_propagate(errp, local_err); |
5a7e7a0b | 2511 | goto out; |
d9b902db | 2512 | } |
5a7e7a0b SH |
2513 | |
2514 | out: | |
2515 | aio_context_release(aio_context); | |
d9b902db PB |
2516 | } |
2517 | ||
3d948cdf SH |
2518 | /* Get the block job for a given device name and acquire its AioContext */ |
2519 | static BlockJob *find_block_job(const char *device, AioContext **aio_context) | |
2d47c6e9 SH |
2520 | { |
2521 | BlockDriverState *bs; | |
2522 | ||
2523 | bs = bdrv_find(device); | |
3d948cdf SH |
2524 | if (!bs) { |
2525 | goto notfound; | |
2526 | } | |
2527 | ||
2528 | *aio_context = bdrv_get_aio_context(bs); | |
2529 | aio_context_acquire(*aio_context); | |
2530 | ||
2531 | if (!bs->job) { | |
2532 | aio_context_release(*aio_context); | |
2533 | goto notfound; | |
2d47c6e9 | 2534 | } |
3d948cdf | 2535 | |
2d47c6e9 | 2536 | return bs->job; |
3d948cdf SH |
2537 | |
2538 | notfound: | |
2539 | *aio_context = NULL; | |
2540 | return NULL; | |
2d47c6e9 SH |
2541 | } |
2542 | ||
882ec7ce | 2543 | void qmp_block_job_set_speed(const char *device, int64_t speed, Error **errp) |
2d47c6e9 | 2544 | { |
3d948cdf SH |
2545 | AioContext *aio_context; |
2546 | BlockJob *job = find_block_job(device, &aio_context); | |
2d47c6e9 SH |
2547 | |
2548 | if (!job) { | |
7ef15070 | 2549 | error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device); |
2d47c6e9 SH |
2550 | return; |
2551 | } | |
2552 | ||
882ec7ce | 2553 | block_job_set_speed(job, speed, errp); |
3d948cdf | 2554 | aio_context_release(aio_context); |
2d47c6e9 | 2555 | } |
370521a1 | 2556 | |
6e37fb81 PB |
2557 | void qmp_block_job_cancel(const char *device, |
2558 | bool has_force, bool force, Error **errp) | |
370521a1 | 2559 | { |
3d948cdf SH |
2560 | AioContext *aio_context; |
2561 | BlockJob *job = find_block_job(device, &aio_context); | |
6e37fb81 | 2562 | |
370521a1 | 2563 | if (!job) { |
7ef15070 | 2564 | error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device); |
370521a1 SH |
2565 | return; |
2566 | } | |
3d948cdf SH |
2567 | |
2568 | if (!has_force) { | |
2569 | force = false; | |
2570 | } | |
2571 | ||
6e37fb81 | 2572 | if (job->paused && !force) { |
f231b88d CR |
2573 | error_setg(errp, "The block job for device '%s' is currently paused", |
2574 | device); | |
3d948cdf | 2575 | goto out; |
8acc72a4 | 2576 | } |
370521a1 SH |
2577 | |
2578 | trace_qmp_block_job_cancel(job); | |
2579 | block_job_cancel(job); | |
3d948cdf SH |
2580 | out: |
2581 | aio_context_release(aio_context); | |
370521a1 | 2582 | } |
fb5458cd | 2583 | |
6e37fb81 PB |
2584 | void qmp_block_job_pause(const char *device, Error **errp) |
2585 | { | |
3d948cdf SH |
2586 | AioContext *aio_context; |
2587 | BlockJob *job = find_block_job(device, &aio_context); | |
6e37fb81 PB |
2588 | |
2589 | if (!job) { | |
2590 | error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device); | |
2591 | return; | |
2592 | } | |
2593 | ||
2594 | trace_qmp_block_job_pause(job); | |
2595 | block_job_pause(job); | |
3d948cdf | 2596 | aio_context_release(aio_context); |
6e37fb81 PB |
2597 | } |
2598 | ||
2599 | void qmp_block_job_resume(const char *device, Error **errp) | |
2600 | { | |
3d948cdf SH |
2601 | AioContext *aio_context; |
2602 | BlockJob *job = find_block_job(device, &aio_context); | |
6e37fb81 PB |
2603 | |
2604 | if (!job) { | |
2605 | error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device); | |
2606 | return; | |
2607 | } | |
2608 | ||
2609 | trace_qmp_block_job_resume(job); | |
2610 | block_job_resume(job); | |
3d948cdf | 2611 | aio_context_release(aio_context); |
6e37fb81 PB |
2612 | } |
2613 | ||
aeae883b PB |
2614 | void qmp_block_job_complete(const char *device, Error **errp) |
2615 | { | |
3d948cdf SH |
2616 | AioContext *aio_context; |
2617 | BlockJob *job = find_block_job(device, &aio_context); | |
aeae883b PB |
2618 | |
2619 | if (!job) { | |
2620 | error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device); | |
2621 | return; | |
2622 | } | |
2623 | ||
2624 | trace_qmp_block_job_complete(job); | |
2625 | block_job_complete(job, errp); | |
3d948cdf | 2626 | aio_context_release(aio_context); |
aeae883b PB |
2627 | } |
2628 | ||
fa40e656 JC |
2629 | void qmp_change_backing_file(const char *device, |
2630 | const char *image_node_name, | |
2631 | const char *backing_file, | |
2632 | Error **errp) | |
2633 | { | |
2634 | BlockDriverState *bs = NULL; | |
729962f6 | 2635 | AioContext *aio_context; |
fa40e656 JC |
2636 | BlockDriverState *image_bs = NULL; |
2637 | Error *local_err = NULL; | |
2638 | bool ro; | |
2639 | int open_flags; | |
2640 | int ret; | |
2641 | ||
2642 | /* find the top layer BDS of the chain */ | |
2643 | bs = bdrv_find(device); | |
2644 | if (!bs) { | |
2645 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); | |
2646 | return; | |
2647 | } | |
2648 | ||
729962f6 SH |
2649 | aio_context = bdrv_get_aio_context(bs); |
2650 | aio_context_acquire(aio_context); | |
2651 | ||
fa40e656 JC |
2652 | image_bs = bdrv_lookup_bs(NULL, image_node_name, &local_err); |
2653 | if (local_err) { | |
2654 | error_propagate(errp, local_err); | |
729962f6 | 2655 | goto out; |
fa40e656 JC |
2656 | } |
2657 | ||
2658 | if (!image_bs) { | |
2659 | error_setg(errp, "image file not found"); | |
729962f6 | 2660 | goto out; |
fa40e656 JC |
2661 | } |
2662 | ||
2663 | if (bdrv_find_base(image_bs) == image_bs) { | |
2664 | error_setg(errp, "not allowing backing file change on an image " | |
2665 | "without a backing file"); | |
729962f6 | 2666 | goto out; |
fa40e656 JC |
2667 | } |
2668 | ||
2669 | /* even though we are not necessarily operating on bs, we need it to | |
2670 | * determine if block ops are currently prohibited on the chain */ | |
2671 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_CHANGE, errp)) { | |
729962f6 | 2672 | goto out; |
fa40e656 JC |
2673 | } |
2674 | ||
2675 | /* final sanity check */ | |
2676 | if (!bdrv_chain_contains(bs, image_bs)) { | |
2677 | error_setg(errp, "'%s' and image file are not in the same chain", | |
2678 | device); | |
729962f6 | 2679 | goto out; |
fa40e656 JC |
2680 | } |
2681 | ||
2682 | /* if not r/w, reopen to make r/w */ | |
2683 | open_flags = image_bs->open_flags; | |
2684 | ro = bdrv_is_read_only(image_bs); | |
2685 | ||
2686 | if (ro) { | |
2687 | bdrv_reopen(image_bs, open_flags | BDRV_O_RDWR, &local_err); | |
2688 | if (local_err) { | |
2689 | error_propagate(errp, local_err); | |
729962f6 | 2690 | goto out; |
fa40e656 JC |
2691 | } |
2692 | } | |
2693 | ||
2694 | ret = bdrv_change_backing_file(image_bs, backing_file, | |
2695 | image_bs->drv ? image_bs->drv->format_name : ""); | |
2696 | ||
2697 | if (ret < 0) { | |
2698 | error_setg_errno(errp, -ret, "Could not change backing file to '%s'", | |
2699 | backing_file); | |
2700 | /* don't exit here, so we can try to restore open flags if | |
2701 | * appropriate */ | |
2702 | } | |
2703 | ||
2704 | if (ro) { | |
2705 | bdrv_reopen(image_bs, open_flags, &local_err); | |
2706 | if (local_err) { | |
2707 | error_propagate(errp, local_err); /* will preserve prior errp */ | |
2708 | } | |
2709 | } | |
729962f6 SH |
2710 | |
2711 | out: | |
2712 | aio_context_release(aio_context); | |
fa40e656 JC |
2713 | } |
2714 | ||
d26c9a15 KW |
2715 | void qmp_blockdev_add(BlockdevOptions *options, Error **errp) |
2716 | { | |
2717 | QmpOutputVisitor *ov = qmp_output_visitor_new(); | |
18e46a03 | 2718 | BlockBackend *blk; |
d26c9a15 KW |
2719 | QObject *obj; |
2720 | QDict *qdict; | |
d26c9a15 KW |
2721 | Error *local_err = NULL; |
2722 | ||
2723 | /* Require an ID in the top level */ | |
2724 | if (!options->has_id) { | |
2725 | error_setg(errp, "Block device needs an ID"); | |
2726 | goto fail; | |
2727 | } | |
2728 | ||
60e19e06 | 2729 | /* TODO Sort it out in raw-posix and drive_new(): Reject aio=native with |
d26c9a15 | 2730 | * cache.direct=false instead of silently switching to aio=threads, except |
60e19e06 | 2731 | * when called from drive_new(). |
d26c9a15 KW |
2732 | * |
2733 | * For now, simply forbidding the combination for all drivers will do. */ | |
2734 | if (options->has_aio && options->aio == BLOCKDEV_AIO_OPTIONS_NATIVE) { | |
c6e0bd9b KW |
2735 | bool direct = options->has_cache && |
2736 | options->cache->has_direct && | |
2737 | options->cache->direct; | |
2738 | if (!direct) { | |
d26c9a15 KW |
2739 | error_setg(errp, "aio=native requires cache.direct=true"); |
2740 | goto fail; | |
2741 | } | |
2742 | } | |
2743 | ||
2744 | visit_type_BlockdevOptions(qmp_output_get_visitor(ov), | |
2745 | &options, NULL, &local_err); | |
84d18f06 | 2746 | if (local_err) { |
d26c9a15 KW |
2747 | error_propagate(errp, local_err); |
2748 | goto fail; | |
2749 | } | |
2750 | ||
2751 | obj = qmp_output_get_qobject(ov); | |
2752 | qdict = qobject_to_qdict(obj); | |
2753 | ||
2754 | qdict_flatten(qdict); | |
2755 | ||
18e46a03 | 2756 | blk = blockdev_init(NULL, qdict, &local_err); |
84d18f06 | 2757 | if (local_err) { |
b681072d | 2758 | error_propagate(errp, local_err); |
d26c9a15 KW |
2759 | goto fail; |
2760 | } | |
2761 | ||
18e46a03 | 2762 | if (bdrv_key_required(blk_bs(blk))) { |
18e46a03 | 2763 | blk_unref(blk); |
8ae8e904 KW |
2764 | error_setg(errp, "blockdev-add doesn't support encrypted devices"); |
2765 | goto fail; | |
2766 | } | |
2767 | ||
d26c9a15 KW |
2768 | fail: |
2769 | qmp_output_visitor_cleanup(ov); | |
2770 | } | |
2771 | ||
fea68bb6 | 2772 | BlockJobInfoList *qmp_query_block_jobs(Error **errp) |
fb5458cd | 2773 | { |
fea68bb6 MA |
2774 | BlockJobInfoList *head = NULL, **p_next = &head; |
2775 | BlockDriverState *bs; | |
fb5458cd | 2776 | |
fea68bb6 | 2777 | for (bs = bdrv_next(NULL); bs; bs = bdrv_next(bs)) { |
69691e72 SH |
2778 | AioContext *aio_context = bdrv_get_aio_context(bs); |
2779 | ||
2780 | aio_context_acquire(aio_context); | |
2781 | ||
fea68bb6 MA |
2782 | if (bs->job) { |
2783 | BlockJobInfoList *elem = g_new0(BlockJobInfoList, 1); | |
2784 | elem->value = block_job_query(bs->job); | |
2785 | *p_next = elem; | |
2786 | p_next = &elem->next; | |
2787 | } | |
69691e72 SH |
2788 | |
2789 | aio_context_release(aio_context); | |
fb5458cd | 2790 | } |
fb5458cd | 2791 | |
fea68bb6 | 2792 | return head; |
fb5458cd | 2793 | } |
4d454574 | 2794 | |
0006383e | 2795 | QemuOptsList qemu_common_drive_opts = { |
4d454574 | 2796 | .name = "drive", |
0006383e | 2797 | .head = QTAILQ_HEAD_INITIALIZER(qemu_common_drive_opts.head), |
4d454574 PB |
2798 | .desc = { |
2799 | { | |
4d454574 PB |
2800 | .name = "snapshot", |
2801 | .type = QEMU_OPT_BOOL, | |
2802 | .help = "enable/disable snapshot mode", | |
a9384aff PB |
2803 | },{ |
2804 | .name = "discard", | |
2805 | .type = QEMU_OPT_STRING, | |
2806 | .help = "discard operation (ignore/off, unmap/on)", | |
4d454574 | 2807 | },{ |
29c4e2b5 KW |
2808 | .name = "cache.writeback", |
2809 | .type = QEMU_OPT_BOOL, | |
2810 | .help = "enables writeback mode for any caches", | |
2811 | },{ | |
2812 | .name = "cache.direct", | |
2813 | .type = QEMU_OPT_BOOL, | |
2814 | .help = "enables use of O_DIRECT (bypass the host page cache)", | |
2815 | },{ | |
2816 | .name = "cache.no-flush", | |
2817 | .type = QEMU_OPT_BOOL, | |
2818 | .help = "ignore any flush requests for the device", | |
4d454574 PB |
2819 | },{ |
2820 | .name = "aio", | |
2821 | .type = QEMU_OPT_STRING, | |
2822 | .help = "host AIO implementation (threads, native)", | |
2823 | },{ | |
2824 | .name = "format", | |
2825 | .type = QEMU_OPT_STRING, | |
2826 | .help = "disk format (raw, qcow2, ...)", | |
4d454574 PB |
2827 | },{ |
2828 | .name = "rerror", | |
2829 | .type = QEMU_OPT_STRING, | |
2830 | .help = "read error action", | |
2831 | },{ | |
2832 | .name = "werror", | |
2833 | .type = QEMU_OPT_STRING, | |
2834 | .help = "write error action", | |
4d454574 | 2835 | },{ |
0f227a94 | 2836 | .name = "read-only", |
4d454574 PB |
2837 | .type = QEMU_OPT_BOOL, |
2838 | .help = "open drive file as read-only", | |
2839 | },{ | |
57975222 | 2840 | .name = "throttling.iops-total", |
4d454574 PB |
2841 | .type = QEMU_OPT_NUMBER, |
2842 | .help = "limit total I/O operations per second", | |
2843 | },{ | |
57975222 | 2844 | .name = "throttling.iops-read", |
4d454574 PB |
2845 | .type = QEMU_OPT_NUMBER, |
2846 | .help = "limit read operations per second", | |
2847 | },{ | |
57975222 | 2848 | .name = "throttling.iops-write", |
4d454574 PB |
2849 | .type = QEMU_OPT_NUMBER, |
2850 | .help = "limit write operations per second", | |
2851 | },{ | |
57975222 | 2852 | .name = "throttling.bps-total", |
4d454574 PB |
2853 | .type = QEMU_OPT_NUMBER, |
2854 | .help = "limit total bytes per second", | |
2855 | },{ | |
57975222 | 2856 | .name = "throttling.bps-read", |
4d454574 PB |
2857 | .type = QEMU_OPT_NUMBER, |
2858 | .help = "limit read bytes per second", | |
2859 | },{ | |
57975222 | 2860 | .name = "throttling.bps-write", |
4d454574 PB |
2861 | .type = QEMU_OPT_NUMBER, |
2862 | .help = "limit write bytes per second", | |
3e9fab69 BC |
2863 | },{ |
2864 | .name = "throttling.iops-total-max", | |
2865 | .type = QEMU_OPT_NUMBER, | |
2866 | .help = "I/O operations burst", | |
2867 | },{ | |
2868 | .name = "throttling.iops-read-max", | |
2869 | .type = QEMU_OPT_NUMBER, | |
2870 | .help = "I/O operations read burst", | |
2871 | },{ | |
2872 | .name = "throttling.iops-write-max", | |
2873 | .type = QEMU_OPT_NUMBER, | |
2874 | .help = "I/O operations write burst", | |
2875 | },{ | |
2876 | .name = "throttling.bps-total-max", | |
2877 | .type = QEMU_OPT_NUMBER, | |
2878 | .help = "total bytes burst", | |
2879 | },{ | |
2880 | .name = "throttling.bps-read-max", | |
2881 | .type = QEMU_OPT_NUMBER, | |
2882 | .help = "total bytes read burst", | |
2883 | },{ | |
2884 | .name = "throttling.bps-write-max", | |
2885 | .type = QEMU_OPT_NUMBER, | |
2886 | .help = "total bytes write burst", | |
2024c1df BC |
2887 | },{ |
2888 | .name = "throttling.iops-size", | |
2889 | .type = QEMU_OPT_NUMBER, | |
2890 | .help = "when limiting by iops max size of an I/O in bytes", | |
4d454574 PB |
2891 | },{ |
2892 | .name = "copy-on-read", | |
2893 | .type = QEMU_OPT_BOOL, | |
2894 | .help = "copy read data from backing file into image file", | |
465bee1d PL |
2895 | },{ |
2896 | .name = "detect-zeroes", | |
2897 | .type = QEMU_OPT_STRING, | |
2898 | .help = "try to optimize zero writes (off, on, unmap)", | |
4d454574 PB |
2899 | }, |
2900 | { /* end of list */ } | |
2901 | }, | |
2902 | }; | |
0006383e KW |
2903 | |
2904 | QemuOptsList qemu_drive_opts = { | |
2905 | .name = "drive", | |
2906 | .head = QTAILQ_HEAD_INITIALIZER(qemu_drive_opts.head), | |
2907 | .desc = { | |
492fdc6f KW |
2908 | /* |
2909 | * no elements => accept any params | |
2910 | * validation will happen later | |
2911 | */ | |
0006383e KW |
2912 | { /* end of list */ } |
2913 | }, | |
2914 | }; |