]>
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 | ||
d38ea87a | 33 | #include "qemu/osdep.h" |
26f54e9a | 34 | #include "sysemu/block-backend.h" |
9c17d615 | 35 | #include "sysemu/blockdev.h" |
0d09e41a | 36 | #include "hw/block/block.h" |
737e150e | 37 | #include "block/blockjob.h" |
609f45ea | 38 | #include "block/qdict.h" |
76f4afb4 | 39 | #include "block/throttle-groups.h" |
83c9089e | 40 | #include "monitor/monitor.h" |
d49b6836 | 41 | #include "qemu/error-report.h" |
1de7afc9 | 42 | #include "qemu/option.h" |
cdcd4361 | 43 | #include "qemu/qemu-print.h" |
1de7afc9 | 44 | #include "qemu/config-file.h" |
9af23989 MA |
45 | #include "qapi/qapi-commands-block.h" |
46 | #include "qapi/qapi-commands-transaction.h" | |
47 | #include "qapi/qapi-visit-block-core.h" | |
452fcdbc | 48 | #include "qapi/qmp/qdict.h" |
15280c36 | 49 | #include "qapi/qmp/qnum.h" |
6b673957 | 50 | #include "qapi/qmp/qstring.h" |
e688df6b | 51 | #include "qapi/error.h" |
cc7a8ea7 | 52 | #include "qapi/qmp/qerror.h" |
47e6b297 | 53 | #include "qapi/qmp/qlist.h" |
b3db211f | 54 | #include "qapi/qobject-output-visitor.h" |
9c17d615 | 55 | #include "sysemu/sysemu.h" |
ca00bbb1 | 56 | #include "sysemu/iothread.h" |
737e150e | 57 | #include "block/block_int.h" |
0ab8ed18 | 58 | #include "block/trace.h" |
9c17d615 | 59 | #include "sysemu/arch_init.h" |
c616f16e | 60 | #include "sysemu/qtest.h" |
54d31236 | 61 | #include "sysemu/runstate.h" |
f348b6d1 VB |
62 | #include "qemu/cutils.h" |
63 | #include "qemu/help_option.h" | |
db725815 | 64 | #include "qemu/main-loop.h" |
a2a7862c | 65 | #include "qemu/throttle-options.h" |
666daa68 | 66 | |
9c4218e9 HR |
67 | static QTAILQ_HEAD(, BlockDriverState) monitor_bdrv_states = |
68 | QTAILQ_HEAD_INITIALIZER(monitor_bdrv_states); | |
69 | ||
b33945cf KW |
70 | static int do_open_tray(const char *blk_name, const char *qdev_id, |
71 | bool force, Error **errp); | |
82fcf66e HR |
72 | static void blockdev_remove_medium(bool has_device, const char *device, |
73 | bool has_id, const char *id, Error **errp); | |
74 | static void blockdev_insert_medium(bool has_device, const char *device, | |
75 | bool has_id, const char *id, | |
76 | const char *node_name, Error **errp); | |
bf18bee5 | 77 | |
1960966d MA |
78 | static const char *const if_name[IF_COUNT] = { |
79 | [IF_NONE] = "none", | |
80 | [IF_IDE] = "ide", | |
81 | [IF_SCSI] = "scsi", | |
82 | [IF_FLOPPY] = "floppy", | |
83 | [IF_PFLASH] = "pflash", | |
84 | [IF_MTD] = "mtd", | |
85 | [IF_SD] = "sd", | |
86 | [IF_VIRTIO] = "virtio", | |
87 | [IF_XEN] = "xen", | |
88 | }; | |
89 | ||
21dff8cf | 90 | static int if_max_devs[IF_COUNT] = { |
27d6bf40 MA |
91 | /* |
92 | * Do not change these numbers! They govern how drive option | |
93 | * index maps to unit and bus. That mapping is ABI. | |
94 | * | |
547cb157 | 95 | * All controllers used to implement if=T drives need to support |
27d6bf40 MA |
96 | * if_max_devs[T] units, for any T with if_max_devs[T] != 0. |
97 | * Otherwise, some index values map to "impossible" bus, unit | |
98 | * values. | |
99 | * | |
100 | * For instance, if you change [IF_SCSI] to 255, -drive | |
101 | * if=scsi,index=12 no longer means bus=1,unit=5, but | |
102 | * bus=0,unit=12. With an lsi53c895a controller (7 units max), | |
103 | * the drive can't be set up. Regression. | |
104 | */ | |
105 | [IF_IDE] = 2, | |
106 | [IF_SCSI] = 7, | |
1960966d MA |
107 | }; |
108 | ||
21dff8cf JS |
109 | /** |
110 | * Boards may call this to offer board-by-board overrides | |
111 | * of the default, global values. | |
112 | */ | |
113 | void override_max_devs(BlockInterfaceType type, int max_devs) | |
114 | { | |
18e46a03 | 115 | BlockBackend *blk; |
21dff8cf JS |
116 | DriveInfo *dinfo; |
117 | ||
118 | if (max_devs <= 0) { | |
119 | return; | |
120 | } | |
121 | ||
18e46a03 MA |
122 | for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { |
123 | dinfo = blk_legacy_dinfo(blk); | |
21dff8cf JS |
124 | if (dinfo->type == type) { |
125 | fprintf(stderr, "Cannot override units-per-bus property of" | |
126 | " the %s interface, because a drive of that type has" | |
127 | " already been added.\n", if_name[type]); | |
128 | g_assert_not_reached(); | |
129 | } | |
130 | } | |
131 | ||
132 | if_max_devs[type] = max_devs; | |
133 | } | |
134 | ||
14bafc54 MA |
135 | /* |
136 | * We automatically delete the drive when a device using it gets | |
137 | * unplugged. Questionable feature, but we can't just drop it. | |
138 | * Device models call blockdev_mark_auto_del() to schedule the | |
139 | * automatic deletion, and generic qdev code calls blockdev_auto_del() | |
140 | * when deletion is actually safe. | |
141 | */ | |
4be74634 | 142 | void blockdev_mark_auto_del(BlockBackend *blk) |
14bafc54 | 143 | { |
18e46a03 | 144 | DriveInfo *dinfo = blk_legacy_dinfo(blk); |
8164102f | 145 | BlockJob *job; |
14bafc54 | 146 | |
26f8b3a8 | 147 | if (!dinfo) { |
2d246f01 KW |
148 | return; |
149 | } | |
150 | ||
8164102f VSO |
151 | for (job = block_job_next(NULL); job; job = block_job_next(job)) { |
152 | if (block_job_has_bdrv(job, blk_bs(blk))) { | |
153 | AioContext *aio_context = job->job.aio_context; | |
154 | aio_context_acquire(aio_context); | |
91fddb0d | 155 | |
8164102f | 156 | job_cancel(&job->job, false); |
91fddb0d | 157 | |
8164102f VSO |
158 | aio_context_release(aio_context); |
159 | } | |
5433c24f | 160 | } |
91fddb0d | 161 | |
26f8b3a8 | 162 | dinfo->auto_del = 1; |
14bafc54 MA |
163 | } |
164 | ||
4be74634 | 165 | void blockdev_auto_del(BlockBackend *blk) |
14bafc54 | 166 | { |
18e46a03 | 167 | DriveInfo *dinfo = blk_legacy_dinfo(blk); |
14bafc54 | 168 | |
0fc0f1fa | 169 | if (dinfo && dinfo->auto_del) { |
efaa7c4e | 170 | monitor_remove_blk(blk); |
b9fe8a7a | 171 | blk_unref(blk); |
14bafc54 MA |
172 | } |
173 | } | |
174 | ||
d8f94e1b JS |
175 | /** |
176 | * Returns the current mapping of how many units per bus | |
177 | * a particular interface can support. | |
178 | * | |
179 | * A positive integer indicates n units per bus. | |
180 | * 0 implies the mapping has not been established. | |
181 | * -1 indicates an invalid BlockInterfaceType was given. | |
182 | */ | |
183 | int drive_get_max_devs(BlockInterfaceType type) | |
184 | { | |
185 | if (type >= IF_IDE && type < IF_COUNT) { | |
186 | return if_max_devs[type]; | |
187 | } | |
188 | ||
189 | return -1; | |
190 | } | |
191 | ||
505a7fb1 MA |
192 | static int drive_index_to_bus_id(BlockInterfaceType type, int index) |
193 | { | |
194 | int max_devs = if_max_devs[type]; | |
195 | return max_devs ? index / max_devs : 0; | |
196 | } | |
197 | ||
198 | static int drive_index_to_unit_id(BlockInterfaceType type, int index) | |
199 | { | |
200 | int max_devs = if_max_devs[type]; | |
201 | return max_devs ? index % max_devs : index; | |
202 | } | |
203 | ||
2292ddae MA |
204 | QemuOpts *drive_def(const char *optstr) |
205 | { | |
70b94331 | 206 | return qemu_opts_parse_noisily(qemu_find_opts("drive"), optstr, false); |
2292ddae MA |
207 | } |
208 | ||
209 | QemuOpts *drive_add(BlockInterfaceType type, int index, const char *file, | |
5645b0f4 | 210 | const char *optstr) |
666daa68 | 211 | { |
666daa68 MA |
212 | QemuOpts *opts; |
213 | ||
2292ddae | 214 | opts = drive_def(optstr); |
666daa68 MA |
215 | if (!opts) { |
216 | return NULL; | |
217 | } | |
2292ddae | 218 | if (type != IF_DEFAULT) { |
f43e47db | 219 | qemu_opt_set(opts, "if", if_name[type], &error_abort); |
2292ddae MA |
220 | } |
221 | if (index >= 0) { | |
a8b18f8f | 222 | qemu_opt_set_number(opts, "index", index, &error_abort); |
2292ddae | 223 | } |
666daa68 | 224 | if (file) |
f43e47db | 225 | qemu_opt_set(opts, "file", file, &error_abort); |
666daa68 MA |
226 | return opts; |
227 | } | |
228 | ||
229 | DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit) | |
230 | { | |
18e46a03 | 231 | BlockBackend *blk; |
666daa68 MA |
232 | DriveInfo *dinfo; |
233 | ||
18e46a03 MA |
234 | for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { |
235 | dinfo = blk_legacy_dinfo(blk); | |
236 | if (dinfo && dinfo->type == type | |
237 | && dinfo->bus == bus && dinfo->unit == unit) { | |
666daa68 | 238 | return dinfo; |
18e46a03 | 239 | } |
666daa68 MA |
240 | } |
241 | ||
242 | return NULL; | |
243 | } | |
244 | ||
720b8dc0 | 245 | void drive_check_orphaned(void) |
a66c9dc7 | 246 | { |
18e46a03 | 247 | BlockBackend *blk; |
a66c9dc7 | 248 | DriveInfo *dinfo; |
664cc623 | 249 | Location loc; |
720b8dc0 | 250 | bool orphans = false; |
a66c9dc7 | 251 | |
18e46a03 MA |
252 | for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { |
253 | dinfo = blk_legacy_dinfo(blk); | |
a7f53e26 | 254 | if (!blk_get_attached_dev(blk) && !dinfo->is_default && |
a66c9dc7 | 255 | dinfo->type != IF_NONE) { |
664cc623 MA |
256 | loc_push_none(&loc); |
257 | qemu_opts_loc_restore(dinfo->opts); | |
720b8dc0 | 258 | error_report("machine type does not support" |
664cc623 MA |
259 | " if=%s,bus=%d,unit=%d", |
260 | if_name[dinfo->type], dinfo->bus, dinfo->unit); | |
261 | loc_pop(&loc); | |
720b8dc0 | 262 | orphans = true; |
a66c9dc7 JS |
263 | } |
264 | } | |
265 | ||
720b8dc0 MA |
266 | if (orphans) { |
267 | exit(1); | |
268 | } | |
a66c9dc7 JS |
269 | } |
270 | ||
f1bd51ac MA |
271 | DriveInfo *drive_get_by_index(BlockInterfaceType type, int index) |
272 | { | |
273 | return drive_get(type, | |
274 | drive_index_to_bus_id(type, index), | |
275 | drive_index_to_unit_id(type, index)); | |
276 | } | |
277 | ||
666daa68 MA |
278 | int drive_get_max_bus(BlockInterfaceType type) |
279 | { | |
280 | int max_bus; | |
18e46a03 | 281 | BlockBackend *blk; |
666daa68 MA |
282 | DriveInfo *dinfo; |
283 | ||
284 | max_bus = -1; | |
18e46a03 MA |
285 | for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { |
286 | dinfo = blk_legacy_dinfo(blk); | |
287 | if (dinfo && dinfo->type == type && dinfo->bus > max_bus) { | |
666daa68 | 288 | max_bus = dinfo->bus; |
18e46a03 | 289 | } |
666daa68 MA |
290 | } |
291 | return max_bus; | |
292 | } | |
293 | ||
13839974 MA |
294 | /* Get a block device. This should only be used for single-drive devices |
295 | (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the | |
296 | appropriate bus. */ | |
297 | DriveInfo *drive_get_next(BlockInterfaceType type) | |
298 | { | |
299 | static int next_block_unit[IF_COUNT]; | |
300 | ||
301 | return drive_get(type, 0, next_block_unit[type]++); | |
302 | } | |
303 | ||
666daa68 MA |
304 | static void bdrv_format_print(void *opaque, const char *name) |
305 | { | |
cdcd4361 | 306 | qemu_printf(" %s", name); |
666daa68 MA |
307 | } |
308 | ||
aa398a5c SH |
309 | typedef struct { |
310 | QEMUBH *bh; | |
fa510ebf FZ |
311 | BlockDriverState *bs; |
312 | } BDRVPutRefBH; | |
aa398a5c | 313 | |
b681072d | 314 | static int parse_block_error_action(const char *buf, bool is_read, Error **errp) |
666daa68 MA |
315 | { |
316 | if (!strcmp(buf, "ignore")) { | |
92aa5c6d | 317 | return BLOCKDEV_ON_ERROR_IGNORE; |
666daa68 | 318 | } else if (!is_read && !strcmp(buf, "enospc")) { |
92aa5c6d | 319 | return BLOCKDEV_ON_ERROR_ENOSPC; |
666daa68 | 320 | } else if (!strcmp(buf, "stop")) { |
92aa5c6d | 321 | return BLOCKDEV_ON_ERROR_STOP; |
666daa68 | 322 | } else if (!strcmp(buf, "report")) { |
92aa5c6d | 323 | return BLOCKDEV_ON_ERROR_REPORT; |
666daa68 | 324 | } else { |
b681072d KW |
325 | error_setg(errp, "'%s' invalid %s error action", |
326 | buf, is_read ? "read" : "write"); | |
666daa68 MA |
327 | return -1; |
328 | } | |
329 | } | |
330 | ||
40119eff AG |
331 | static bool parse_stats_intervals(BlockAcctStats *stats, QList *intervals, |
332 | Error **errp) | |
333 | { | |
334 | const QListEntry *entry; | |
335 | for (entry = qlist_first(intervals); entry; entry = qlist_next(entry)) { | |
336 | switch (qobject_type(entry->value)) { | |
337 | ||
338 | case QTYPE_QSTRING: { | |
339 | unsigned long long length; | |
7dc847eb HR |
340 | const char *str = qstring_get_str(qobject_to(QString, |
341 | entry->value)); | |
40119eff AG |
342 | if (parse_uint_full(str, &length, 10) == 0 && |
343 | length > 0 && length <= UINT_MAX) { | |
344 | block_acct_add_interval(stats, (unsigned) length); | |
345 | } else { | |
346 | error_setg(errp, "Invalid interval length: %s", str); | |
347 | return false; | |
348 | } | |
349 | break; | |
350 | } | |
351 | ||
01b2ffce | 352 | case QTYPE_QNUM: { |
7dc847eb | 353 | int64_t length = qnum_get_int(qobject_to(QNum, entry->value)); |
01b2ffce | 354 | |
40119eff AG |
355 | if (length > 0 && length <= UINT_MAX) { |
356 | block_acct_add_interval(stats, (unsigned) length); | |
357 | } else { | |
358 | error_setg(errp, "Invalid interval length: %" PRId64, length); | |
359 | return false; | |
360 | } | |
361 | break; | |
362 | } | |
363 | ||
364 | default: | |
365 | error_setg(errp, "The specification of stats-intervals is invalid"); | |
366 | return false; | |
367 | } | |
368 | } | |
369 | return true; | |
370 | } | |
371 | ||
33cb7dc8 KW |
372 | typedef enum { MEDIA_DISK, MEDIA_CDROM } DriveMediaType; |
373 | ||
fbf8175e HR |
374 | /* All parameters but @opts are optional and may be set to NULL. */ |
375 | static void extract_common_blockdev_options(QemuOpts *opts, int *bdrv_flags, | |
376 | const char **throttling_group, ThrottleConfig *throttle_cfg, | |
377 | BlockdevDetectZeroesOptions *detect_zeroes, Error **errp) | |
378 | { | |
fbf8175e HR |
379 | Error *local_error = NULL; |
380 | const char *aio; | |
381 | ||
382 | if (bdrv_flags) { | |
fbf8175e HR |
383 | if (qemu_opt_get_bool(opts, "copy-on-read", false)) { |
384 | *bdrv_flags |= BDRV_O_COPY_ON_READ; | |
385 | } | |
386 | ||
fbf8175e HR |
387 | if ((aio = qemu_opt_get(opts, "aio")) != NULL) { |
388 | if (!strcmp(aio, "native")) { | |
389 | *bdrv_flags |= BDRV_O_NATIVE_AIO; | |
390 | } else if (!strcmp(aio, "threads")) { | |
391 | /* this is the default */ | |
392 | } else { | |
393 | error_setg(errp, "invalid aio option"); | |
394 | return; | |
395 | } | |
396 | } | |
397 | } | |
398 | ||
399 | /* disk I/O throttling */ | |
400 | if (throttling_group) { | |
401 | *throttling_group = qemu_opt_get(opts, "throttling.group"); | |
402 | } | |
403 | ||
404 | if (throttle_cfg) { | |
1588ab5d | 405 | throttle_config_init(throttle_cfg); |
fbf8175e HR |
406 | throttle_cfg->buckets[THROTTLE_BPS_TOTAL].avg = |
407 | qemu_opt_get_number(opts, "throttling.bps-total", 0); | |
408 | throttle_cfg->buckets[THROTTLE_BPS_READ].avg = | |
409 | qemu_opt_get_number(opts, "throttling.bps-read", 0); | |
410 | throttle_cfg->buckets[THROTTLE_BPS_WRITE].avg = | |
411 | qemu_opt_get_number(opts, "throttling.bps-write", 0); | |
412 | throttle_cfg->buckets[THROTTLE_OPS_TOTAL].avg = | |
413 | qemu_opt_get_number(opts, "throttling.iops-total", 0); | |
414 | throttle_cfg->buckets[THROTTLE_OPS_READ].avg = | |
415 | qemu_opt_get_number(opts, "throttling.iops-read", 0); | |
416 | throttle_cfg->buckets[THROTTLE_OPS_WRITE].avg = | |
417 | qemu_opt_get_number(opts, "throttling.iops-write", 0); | |
418 | ||
419 | throttle_cfg->buckets[THROTTLE_BPS_TOTAL].max = | |
420 | qemu_opt_get_number(opts, "throttling.bps-total-max", 0); | |
421 | throttle_cfg->buckets[THROTTLE_BPS_READ].max = | |
422 | qemu_opt_get_number(opts, "throttling.bps-read-max", 0); | |
423 | throttle_cfg->buckets[THROTTLE_BPS_WRITE].max = | |
424 | qemu_opt_get_number(opts, "throttling.bps-write-max", 0); | |
425 | throttle_cfg->buckets[THROTTLE_OPS_TOTAL].max = | |
426 | qemu_opt_get_number(opts, "throttling.iops-total-max", 0); | |
427 | throttle_cfg->buckets[THROTTLE_OPS_READ].max = | |
428 | qemu_opt_get_number(opts, "throttling.iops-read-max", 0); | |
429 | throttle_cfg->buckets[THROTTLE_OPS_WRITE].max = | |
430 | qemu_opt_get_number(opts, "throttling.iops-write-max", 0); | |
431 | ||
8a0fc18d AG |
432 | throttle_cfg->buckets[THROTTLE_BPS_TOTAL].burst_length = |
433 | qemu_opt_get_number(opts, "throttling.bps-total-max-length", 1); | |
434 | throttle_cfg->buckets[THROTTLE_BPS_READ].burst_length = | |
435 | qemu_opt_get_number(opts, "throttling.bps-read-max-length", 1); | |
436 | throttle_cfg->buckets[THROTTLE_BPS_WRITE].burst_length = | |
437 | qemu_opt_get_number(opts, "throttling.bps-write-max-length", 1); | |
438 | throttle_cfg->buckets[THROTTLE_OPS_TOTAL].burst_length = | |
439 | qemu_opt_get_number(opts, "throttling.iops-total-max-length", 1); | |
440 | throttle_cfg->buckets[THROTTLE_OPS_READ].burst_length = | |
441 | qemu_opt_get_number(opts, "throttling.iops-read-max-length", 1); | |
442 | throttle_cfg->buckets[THROTTLE_OPS_WRITE].burst_length = | |
443 | qemu_opt_get_number(opts, "throttling.iops-write-max-length", 1); | |
444 | ||
fbf8175e HR |
445 | throttle_cfg->op_size = |
446 | qemu_opt_get_number(opts, "throttling.iops-size", 0); | |
447 | ||
d5851089 | 448 | if (!throttle_is_valid(throttle_cfg, errp)) { |
fbf8175e HR |
449 | return; |
450 | } | |
451 | } | |
452 | ||
453 | if (detect_zeroes) { | |
454 | *detect_zeroes = | |
f7abe0ec | 455 | qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, |
fbf8175e | 456 | qemu_opt_get(opts, "detect-zeroes"), |
fbf8175e HR |
457 | BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, |
458 | &local_error); | |
459 | if (local_error) { | |
460 | error_propagate(errp, local_error); | |
461 | return; | |
462 | } | |
fbf8175e HR |
463 | } |
464 | } | |
465 | ||
f298d071 | 466 | /* Takes the ownership of bs_opts */ |
18e46a03 MA |
467 | static BlockBackend *blockdev_init(const char *file, QDict *bs_opts, |
468 | Error **errp) | |
666daa68 MA |
469 | { |
470 | const char *buf; | |
666daa68 MA |
471 | int bdrv_flags = 0; |
472 | int on_read_error, on_write_error; | |
362e9299 | 473 | bool account_invalid, account_failed; |
f87a0e29 | 474 | bool writethrough, read_only; |
26f54e9a | 475 | BlockBackend *blk; |
a0f1eab1 | 476 | BlockDriverState *bs; |
cc0681c4 | 477 | ThrottleConfig cfg; |
666daa68 | 478 | int snapshot = 0; |
c546194f | 479 | Error *error = NULL; |
0006383e | 480 | QemuOpts *opts; |
40119eff AG |
481 | QDict *interval_dict = NULL; |
482 | QList *interval_list = NULL; | |
0006383e | 483 | const char *id; |
fbf8175e HR |
484 | BlockdevDetectZeroesOptions detect_zeroes = |
485 | BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF; | |
486 | const char *throttling_group = NULL; | |
666daa68 | 487 | |
f298d071 KW |
488 | /* Check common options by copying from bs_opts to opts, all other options |
489 | * stay in bs_opts for processing by bdrv_open(). */ | |
490 | id = qdict_get_try_str(bs_opts, "id"); | |
0006383e | 491 | opts = qemu_opts_create(&qemu_common_drive_opts, id, 1, &error); |
84d18f06 | 492 | if (error) { |
b681072d | 493 | error_propagate(errp, error); |
6376f952 | 494 | goto err_no_opts; |
0006383e KW |
495 | } |
496 | ||
0006383e | 497 | qemu_opts_absorb_qdict(opts, bs_opts, &error); |
84d18f06 | 498 | if (error) { |
b681072d | 499 | error_propagate(errp, error); |
ec9c10d2 | 500 | goto early_err; |
0006383e KW |
501 | } |
502 | ||
503 | if (id) { | |
504 | qdict_del(bs_opts, "id"); | |
505 | } | |
506 | ||
666daa68 | 507 | /* extract parameters */ |
666daa68 | 508 | snapshot = qemu_opt_get_bool(opts, "snapshot", 0); |
666daa68 | 509 | |
362e9299 AG |
510 | account_invalid = qemu_opt_get_bool(opts, "stats-account-invalid", true); |
511 | account_failed = qemu_opt_get_bool(opts, "stats-account-failed", true); | |
512 | ||
e4b24b49 KW |
513 | writethrough = !qemu_opt_get_bool(opts, BDRV_OPT_CACHE_WB, true); |
514 | ||
ff356ee4 AG |
515 | id = qemu_opts_id(opts); |
516 | ||
40119eff AG |
517 | qdict_extract_subqdict(bs_opts, &interval_dict, "stats-intervals."); |
518 | qdict_array_split(interval_dict, &interval_list); | |
519 | ||
520 | if (qdict_size(interval_dict) != 0) { | |
521 | error_setg(errp, "Invalid option stats-intervals.%s", | |
522 | qdict_first(interval_dict)->key); | |
523 | goto early_err; | |
524 | } | |
2be5506f | 525 | |
fbf8175e HR |
526 | extract_common_blockdev_options(opts, &bdrv_flags, &throttling_group, &cfg, |
527 | &detect_zeroes, &error); | |
528 | if (error) { | |
529 | error_propagate(errp, error); | |
530 | goto early_err; | |
666daa68 | 531 | } |
666daa68 MA |
532 | |
533 | if ((buf = qemu_opt_get(opts, "format")) != NULL) { | |
c8057f95 | 534 | if (is_help_option(buf)) { |
cdcd4361 | 535 | qemu_printf("Supported formats:"); |
9ac404c5 | 536 | bdrv_iterate_format(bdrv_format_print, NULL, false); |
cdcd4361 | 537 | qemu_printf("\nSupported formats (read-only):"); |
9ac404c5 | 538 | bdrv_iterate_format(bdrv_format_print, NULL, true); |
cdcd4361 | 539 | qemu_printf("\n"); |
ec9c10d2 | 540 | goto early_err; |
666daa68 | 541 | } |
74fe54f2 | 542 | |
e4342ce5 HR |
543 | if (qdict_haskey(bs_opts, "driver")) { |
544 | error_setg(errp, "Cannot specify both 'driver' and 'format'"); | |
ec9c10d2 | 545 | goto early_err; |
6db5f5d6 | 546 | } |
46f5ac20 | 547 | qdict_put_str(bs_opts, "driver", buf); |
666daa68 MA |
548 | } |
549 | ||
92aa5c6d | 550 | on_write_error = BLOCKDEV_ON_ERROR_ENOSPC; |
666daa68 | 551 | if ((buf = qemu_opt_get(opts, "werror")) != NULL) { |
b681072d | 552 | on_write_error = parse_block_error_action(buf, 0, &error); |
84d18f06 | 553 | if (error) { |
b681072d | 554 | error_propagate(errp, error); |
ec9c10d2 | 555 | goto early_err; |
666daa68 MA |
556 | } |
557 | } | |
558 | ||
92aa5c6d | 559 | on_read_error = BLOCKDEV_ON_ERROR_REPORT; |
666daa68 | 560 | if ((buf = qemu_opt_get(opts, "rerror")) != NULL) { |
b681072d | 561 | on_read_error = parse_block_error_action(buf, 1, &error); |
84d18f06 | 562 | if (error) { |
b681072d | 563 | error_propagate(errp, error); |
ec9c10d2 | 564 | goto early_err; |
666daa68 MA |
565 | } |
566 | } | |
567 | ||
5ec18f8c | 568 | if (snapshot) { |
91a097e7 | 569 | bdrv_flags |= BDRV_O_SNAPSHOT; |
5ec18f8c HR |
570 | } |
571 | ||
f87a0e29 AG |
572 | read_only = qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false); |
573 | ||
326642bc | 574 | /* init */ |
39c4ae94 | 575 | if ((!file || !*file) && !qdict_size(bs_opts)) { |
5ec18f8c HR |
576 | BlockBackendRootState *blk_rs; |
577 | ||
d861ab3a | 578 | blk = blk_new(qemu_get_aio_context(), 0, BLK_PERM_ALL); |
5ec18f8c HR |
579 | blk_rs = blk_get_root_state(blk); |
580 | blk_rs->open_flags = bdrv_flags; | |
f87a0e29 | 581 | blk_rs->read_only = read_only; |
5ec18f8c HR |
582 | blk_rs->detect_zeroes = detect_zeroes; |
583 | ||
cb3e7f08 | 584 | qobject_unref(bs_opts); |
e4342ce5 HR |
585 | } else { |
586 | if (file && !*file) { | |
c2ad1b0c | 587 | file = NULL; |
c2ad1b0c | 588 | } |
666daa68 | 589 | |
91a097e7 KW |
590 | /* bdrv_open() defaults to the values in bdrv_flags (for compatibility |
591 | * with other callers) rather than what we want as the real defaults. | |
592 | * Apply the defaults here instead. */ | |
91a097e7 KW |
593 | qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_DIRECT, "off"); |
594 | qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_NO_FLUSH, "off"); | |
f87a0e29 AG |
595 | qdict_set_default_str(bs_opts, BDRV_OPT_READ_ONLY, |
596 | read_only ? "on" : "off"); | |
9384a444 | 597 | qdict_set_default_str(bs_opts, BDRV_OPT_AUTO_READ_ONLY, "on"); |
72e775c7 | 598 | assert((bdrv_flags & BDRV_O_CACHE_MASK) == 0); |
91a097e7 | 599 | |
12d5ee3a KW |
600 | if (runstate_check(RUN_STATE_INMIGRATE)) { |
601 | bdrv_flags |= BDRV_O_INACTIVE; | |
602 | } | |
603 | ||
efaa7c4e | 604 | blk = blk_new_open(file, NULL, bs_opts, bdrv_flags, errp); |
e4342ce5 HR |
605 | if (!blk) { |
606 | goto err_no_bs_opts; | |
607 | } | |
608 | bs = blk_bs(blk); | |
ed9d4205 | 609 | |
5ec18f8c | 610 | bs->detect_zeroes = detect_zeroes; |
666daa68 | 611 | |
9caa6f3d | 612 | block_acct_setup(blk_get_stats(blk), account_invalid, account_failed); |
2be5506f | 613 | |
40119eff AG |
614 | if (!parse_stats_intervals(blk_get_stats(blk), interval_list, errp)) { |
615 | blk_unref(blk); | |
616 | blk = NULL; | |
617 | goto err_no_bs_opts; | |
2be5506f | 618 | } |
666daa68 MA |
619 | } |
620 | ||
7ca7f0f6 KW |
621 | /* disk I/O throttling */ |
622 | if (throttle_enabled(&cfg)) { | |
623 | if (!throttling_group) { | |
ff356ee4 | 624 | throttling_group = id; |
7ca7f0f6 KW |
625 | } |
626 | blk_io_limits_enable(blk, throttling_group); | |
627 | blk_set_io_limits(blk, &cfg); | |
628 | } | |
629 | ||
e4b24b49 | 630 | blk_set_enable_write_cache(blk, !writethrough); |
5ec18f8c | 631 | blk_set_on_error(blk, on_read_error, on_write_error); |
0006383e | 632 | |
ff356ee4 | 633 | if (!monitor_add_blk(blk, id, errp)) { |
efaa7c4e HR |
634 | blk_unref(blk); |
635 | blk = NULL; | |
636 | goto err_no_bs_opts; | |
637 | } | |
638 | ||
e4342ce5 | 639 | err_no_bs_opts: |
0006383e | 640 | qemu_opts_del(opts); |
cb3e7f08 MAL |
641 | qobject_unref(interval_dict); |
642 | qobject_unref(interval_list); | |
18e46a03 | 643 | return blk; |
a9ae2bff | 644 | |
ec9c10d2 | 645 | early_err: |
ec9c10d2 | 646 | qemu_opts_del(opts); |
cb3e7f08 MAL |
647 | qobject_unref(interval_dict); |
648 | qobject_unref(interval_list); | |
6376f952 | 649 | err_no_opts: |
cb3e7f08 | 650 | qobject_unref(bs_opts); |
a9ae2bff | 651 | return NULL; |
666daa68 MA |
652 | } |
653 | ||
bd745e23 HR |
654 | /* Takes the ownership of bs_opts */ |
655 | static BlockDriverState *bds_tree_init(QDict *bs_opts, Error **errp) | |
656 | { | |
bd745e23 HR |
657 | int bdrv_flags = 0; |
658 | ||
a81d6164 KW |
659 | /* bdrv_open() defaults to the values in bdrv_flags (for compatibility |
660 | * with other callers) rather than what we want as the real defaults. | |
661 | * Apply the defaults here instead. */ | |
a81d6164 KW |
662 | qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_DIRECT, "off"); |
663 | qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_NO_FLUSH, "off"); | |
f87a0e29 | 664 | qdict_set_default_str(bs_opts, BDRV_OPT_READ_ONLY, "off"); |
a81d6164 | 665 | |
12d5ee3a KW |
666 | if (runstate_check(RUN_STATE_INMIGRATE)) { |
667 | bdrv_flags |= BDRV_O_INACTIVE; | |
668 | } | |
669 | ||
74e1ae7c | 670 | return bdrv_open(NULL, NULL, bs_opts, bdrv_flags, errp); |
bd745e23 HR |
671 | } |
672 | ||
9c4218e9 HR |
673 | void blockdev_close_all_bdrv_states(void) |
674 | { | |
675 | BlockDriverState *bs, *next_bs; | |
676 | ||
677 | QTAILQ_FOREACH_SAFE(bs, &monitor_bdrv_states, monitor_list, next_bs) { | |
678 | AioContext *ctx = bdrv_get_aio_context(bs); | |
679 | ||
680 | aio_context_acquire(ctx); | |
681 | bdrv_unref(bs); | |
682 | aio_context_release(ctx); | |
683 | } | |
684 | } | |
685 | ||
262b4e8f HR |
686 | /* Iterates over the list of monitor-owned BlockDriverStates */ |
687 | BlockDriverState *bdrv_next_monitor_owned(BlockDriverState *bs) | |
688 | { | |
689 | return bs ? QTAILQ_NEXT(bs, monitor_list) | |
690 | : QTAILQ_FIRST(&monitor_bdrv_states); | |
691 | } | |
692 | ||
5abbf0ee KW |
693 | static void qemu_opt_rename(QemuOpts *opts, const char *from, const char *to, |
694 | Error **errp) | |
57975222 KW |
695 | { |
696 | const char *value; | |
697 | ||
698 | value = qemu_opt_get(opts, from); | |
699 | if (value) { | |
5abbf0ee KW |
700 | if (qemu_opt_find(opts, to)) { |
701 | error_setg(errp, "'%s' and its alias '%s' can't be used at the " | |
702 | "same time", to, from); | |
703 | return; | |
704 | } | |
20d6cd47 JL |
705 | } |
706 | ||
707 | /* rename all items in opts */ | |
708 | while ((value = qemu_opt_get(opts, from))) { | |
f43e47db | 709 | qemu_opt_set(opts, to, value, &error_abort); |
57975222 KW |
710 | qemu_opt_unset(opts, from); |
711 | } | |
712 | } | |
713 | ||
33cb7dc8 KW |
714 | QemuOptsList qemu_legacy_drive_opts = { |
715 | .name = "drive", | |
716 | .head = QTAILQ_HEAD_INITIALIZER(qemu_legacy_drive_opts.head), | |
717 | .desc = { | |
718 | { | |
87a899c5 KW |
719 | .name = "bus", |
720 | .type = QEMU_OPT_NUMBER, | |
721 | .help = "bus number", | |
722 | },{ | |
723 | .name = "unit", | |
724 | .type = QEMU_OPT_NUMBER, | |
725 | .help = "unit number (i.e. lun for scsi)", | |
726 | },{ | |
727 | .name = "index", | |
728 | .type = QEMU_OPT_NUMBER, | |
729 | .help = "index number", | |
730 | },{ | |
33cb7dc8 KW |
731 | .name = "media", |
732 | .type = QEMU_OPT_STRING, | |
733 | .help = "media type (disk, cdrom)", | |
593d464b KW |
734 | },{ |
735 | .name = "if", | |
736 | .type = QEMU_OPT_STRING, | |
737 | .help = "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)", | |
d095b465 HR |
738 | },{ |
739 | .name = "file", | |
740 | .type = QEMU_OPT_STRING, | |
741 | .help = "file name", | |
33cb7dc8 | 742 | }, |
0ebd24e0 KW |
743 | |
744 | /* Options that are passed on, but have special semantics with -drive */ | |
745 | { | |
4e200cf8 | 746 | .name = BDRV_OPT_READ_ONLY, |
0ebd24e0 KW |
747 | .type = QEMU_OPT_BOOL, |
748 | .help = "open drive file as read-only", | |
ee13ed1c KW |
749 | },{ |
750 | .name = "rerror", | |
751 | .type = QEMU_OPT_STRING, | |
752 | .help = "read error action", | |
753 | },{ | |
754 | .name = "werror", | |
755 | .type = QEMU_OPT_STRING, | |
756 | .help = "write error action", | |
0ebd24e0 KW |
757 | },{ |
758 | .name = "copy-on-read", | |
759 | .type = QEMU_OPT_BOOL, | |
760 | .help = "copy read data from backing file into image file", | |
761 | }, | |
762 | ||
33cb7dc8 KW |
763 | { /* end of list */ } |
764 | }, | |
765 | }; | |
766 | ||
c4f26c9f MA |
767 | DriveInfo *drive_new(QemuOpts *all_opts, BlockInterfaceType block_default_type, |
768 | Error **errp) | |
57975222 | 769 | { |
29c4e2b5 | 770 | const char *value; |
18e46a03 | 771 | BlockBackend *blk; |
33cb7dc8 | 772 | DriveInfo *dinfo = NULL; |
f298d071 | 773 | QDict *bs_opts; |
33cb7dc8 KW |
774 | QemuOpts *legacy_opts; |
775 | DriveMediaType media = MEDIA_DISK; | |
593d464b | 776 | BlockInterfaceType type; |
87a899c5 | 777 | int max_devs, bus_id, unit_id, index; |
ee13ed1c | 778 | const char *werror, *rerror; |
a7fdbcf0 FZ |
779 | bool read_only = false; |
780 | bool copy_on_read; | |
d095b465 | 781 | const char *filename; |
33cb7dc8 | 782 | Error *local_err = NULL; |
247147fb | 783 | int i; |
29c4e2b5 | 784 | |
57975222 | 785 | /* Change legacy command line options into QMP ones */ |
247147fb KW |
786 | static const struct { |
787 | const char *from; | |
788 | const char *to; | |
789 | } opt_renames[] = { | |
790 | { "iops", "throttling.iops-total" }, | |
791 | { "iops_rd", "throttling.iops-read" }, | |
792 | { "iops_wr", "throttling.iops-write" }, | |
57975222 | 793 | |
247147fb KW |
794 | { "bps", "throttling.bps-total" }, |
795 | { "bps_rd", "throttling.bps-read" }, | |
796 | { "bps_wr", "throttling.bps-write" }, | |
57975222 | 797 | |
247147fb KW |
798 | { "iops_max", "throttling.iops-total-max" }, |
799 | { "iops_rd_max", "throttling.iops-read-max" }, | |
800 | { "iops_wr_max", "throttling.iops-write-max" }, | |
3e9fab69 | 801 | |
247147fb KW |
802 | { "bps_max", "throttling.bps-total-max" }, |
803 | { "bps_rd_max", "throttling.bps-read-max" }, | |
804 | { "bps_wr_max", "throttling.bps-write-max" }, | |
3e9fab69 | 805 | |
247147fb | 806 | { "iops_size", "throttling.iops-size" }, |
2024c1df | 807 | |
76f4afb4 AG |
808 | { "group", "throttling.group" }, |
809 | ||
4e200cf8 | 810 | { "readonly", BDRV_OPT_READ_ONLY }, |
247147fb KW |
811 | }; |
812 | ||
813 | for (i = 0; i < ARRAY_SIZE(opt_renames); i++) { | |
5abbf0ee KW |
814 | qemu_opt_rename(all_opts, opt_renames[i].from, opt_renames[i].to, |
815 | &local_err); | |
816 | if (local_err) { | |
c4f26c9f | 817 | error_propagate(errp, local_err); |
5abbf0ee KW |
818 | return NULL; |
819 | } | |
247147fb | 820 | } |
0f227a94 | 821 | |
29c4e2b5 KW |
822 | value = qemu_opt_get(all_opts, "cache"); |
823 | if (value) { | |
824 | int flags = 0; | |
04feb4a5 | 825 | bool writethrough; |
29c4e2b5 | 826 | |
04feb4a5 | 827 | if (bdrv_parse_cache_mode(value, &flags, &writethrough) != 0) { |
c4f26c9f | 828 | error_setg(errp, "invalid cache option"); |
29c4e2b5 KW |
829 | return NULL; |
830 | } | |
831 | ||
832 | /* Specific options take precedence */ | |
54861b92 KW |
833 | if (!qemu_opt_get(all_opts, BDRV_OPT_CACHE_WB)) { |
834 | qemu_opt_set_bool(all_opts, BDRV_OPT_CACHE_WB, | |
04feb4a5 | 835 | !writethrough, &error_abort); |
29c4e2b5 | 836 | } |
54861b92 KW |
837 | if (!qemu_opt_get(all_opts, BDRV_OPT_CACHE_DIRECT)) { |
838 | qemu_opt_set_bool(all_opts, BDRV_OPT_CACHE_DIRECT, | |
cccb7967 | 839 | !!(flags & BDRV_O_NOCACHE), &error_abort); |
29c4e2b5 | 840 | } |
54861b92 KW |
841 | if (!qemu_opt_get(all_opts, BDRV_OPT_CACHE_NO_FLUSH)) { |
842 | qemu_opt_set_bool(all_opts, BDRV_OPT_CACHE_NO_FLUSH, | |
cccb7967 | 843 | !!(flags & BDRV_O_NO_FLUSH), &error_abort); |
29c4e2b5 KW |
844 | } |
845 | qemu_opt_unset(all_opts, "cache"); | |
846 | } | |
847 | ||
f298d071 KW |
848 | /* Get a QDict for processing the options */ |
849 | bs_opts = qdict_new(); | |
850 | qemu_opts_to_qdict(all_opts, bs_opts); | |
851 | ||
87ea75d5 PC |
852 | legacy_opts = qemu_opts_create(&qemu_legacy_drive_opts, NULL, 0, |
853 | &error_abort); | |
33cb7dc8 | 854 | qemu_opts_absorb_qdict(legacy_opts, bs_opts, &local_err); |
84d18f06 | 855 | if (local_err) { |
c4f26c9f | 856 | error_propagate(errp, local_err); |
33cb7dc8 KW |
857 | goto fail; |
858 | } | |
859 | ||
860 | /* Media type */ | |
861 | value = qemu_opt_get(legacy_opts, "media"); | |
862 | if (value) { | |
863 | if (!strcmp(value, "disk")) { | |
864 | media = MEDIA_DISK; | |
865 | } else if (!strcmp(value, "cdrom")) { | |
866 | media = MEDIA_CDROM; | |
a7fdbcf0 | 867 | read_only = true; |
33cb7dc8 | 868 | } else { |
c4f26c9f | 869 | error_setg(errp, "'%s' invalid media", value); |
33cb7dc8 KW |
870 | goto fail; |
871 | } | |
872 | } | |
873 | ||
0ebd24e0 | 874 | /* copy-on-read is disabled with a warning for read-only devices */ |
4e200cf8 | 875 | read_only |= qemu_opt_get_bool(legacy_opts, BDRV_OPT_READ_ONLY, false); |
0ebd24e0 KW |
876 | copy_on_read = qemu_opt_get_bool(legacy_opts, "copy-on-read", false); |
877 | ||
878 | if (read_only && copy_on_read) { | |
3dc6f869 | 879 | warn_report("disabling copy-on-read on read-only drive"); |
0ebd24e0 KW |
880 | copy_on_read = false; |
881 | } | |
882 | ||
46f5ac20 EB |
883 | qdict_put_str(bs_opts, BDRV_OPT_READ_ONLY, read_only ? "on" : "off"); |
884 | qdict_put_str(bs_opts, "copy-on-read", copy_on_read ? "on" : "off"); | |
0ebd24e0 | 885 | |
593d464b KW |
886 | /* Controller type */ |
887 | value = qemu_opt_get(legacy_opts, "if"); | |
888 | if (value) { | |
889 | for (type = 0; | |
890 | type < IF_COUNT && strcmp(value, if_name[type]); | |
891 | type++) { | |
892 | } | |
893 | if (type == IF_COUNT) { | |
c4f26c9f | 894 | error_setg(errp, "unsupported bus type '%s'", value); |
593d464b KW |
895 | goto fail; |
896 | } | |
897 | } else { | |
898 | type = block_default_type; | |
899 | } | |
900 | ||
87a899c5 KW |
901 | /* Device address specified by bus/unit or index. |
902 | * If none was specified, try to find the first free one. */ | |
903 | bus_id = qemu_opt_get_number(legacy_opts, "bus", 0); | |
904 | unit_id = qemu_opt_get_number(legacy_opts, "unit", -1); | |
905 | index = qemu_opt_get_number(legacy_opts, "index", -1); | |
906 | ||
907 | max_devs = if_max_devs[type]; | |
908 | ||
909 | if (index != -1) { | |
910 | if (bus_id != 0 || unit_id != -1) { | |
c4f26c9f | 911 | error_setg(errp, "index cannot be used with bus and unit"); |
87a899c5 KW |
912 | goto fail; |
913 | } | |
914 | bus_id = drive_index_to_bus_id(type, index); | |
915 | unit_id = drive_index_to_unit_id(type, index); | |
916 | } | |
917 | ||
918 | if (unit_id == -1) { | |
919 | unit_id = 0; | |
920 | while (drive_get(type, bus_id, unit_id) != NULL) { | |
921 | unit_id++; | |
922 | if (max_devs && unit_id >= max_devs) { | |
923 | unit_id -= max_devs; | |
924 | bus_id++; | |
925 | } | |
926 | } | |
927 | } | |
928 | ||
929 | if (max_devs && unit_id >= max_devs) { | |
c4f26c9f | 930 | error_setg(errp, "unit %d too big (max is %d)", unit_id, max_devs - 1); |
87a899c5 KW |
931 | goto fail; |
932 | } | |
933 | ||
934 | if (drive_get(type, bus_id, unit_id) != NULL) { | |
c4f26c9f MA |
935 | error_setg(errp, "drive with bus=%d, unit=%d (index=%d) exists", |
936 | bus_id, unit_id, index); | |
87a899c5 KW |
937 | goto fail; |
938 | } | |
939 | ||
940 | /* no id supplied -> create one */ | |
941 | if (qemu_opts_id(all_opts) == NULL) { | |
942 | char *new_id; | |
943 | const char *mediastr = ""; | |
944 | if (type == IF_IDE || type == IF_SCSI) { | |
945 | mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd"; | |
946 | } | |
947 | if (max_devs) { | |
948 | new_id = g_strdup_printf("%s%i%s%i", if_name[type], bus_id, | |
949 | mediastr, unit_id); | |
950 | } else { | |
951 | new_id = g_strdup_printf("%s%s%i", if_name[type], | |
952 | mediastr, unit_id); | |
953 | } | |
46f5ac20 | 954 | qdict_put_str(bs_opts, "id", new_id); |
87a899c5 KW |
955 | g_free(new_id); |
956 | } | |
957 | ||
394c7d4d | 958 | /* Add virtio block device */ |
394c7d4d KW |
959 | if (type == IF_VIRTIO) { |
960 | QemuOpts *devopts; | |
87ea75d5 PC |
961 | devopts = qemu_opts_create(qemu_find_opts("device"), NULL, 0, |
962 | &error_abort); | |
394c7d4d | 963 | if (arch_type == QEMU_ARCH_S390X) { |
1f68f1d3 | 964 | qemu_opt_set(devopts, "driver", "virtio-blk-ccw", &error_abort); |
394c7d4d | 965 | } else { |
f43e47db | 966 | qemu_opt_set(devopts, "driver", "virtio-blk-pci", &error_abort); |
394c7d4d | 967 | } |
f43e47db MA |
968 | qemu_opt_set(devopts, "drive", qdict_get_str(bs_opts, "id"), |
969 | &error_abort); | |
394c7d4d KW |
970 | } |
971 | ||
d095b465 HR |
972 | filename = qemu_opt_get(legacy_opts, "file"); |
973 | ||
ee13ed1c KW |
974 | /* Check werror/rerror compatibility with if=... */ |
975 | werror = qemu_opt_get(legacy_opts, "werror"); | |
976 | if (werror != NULL) { | |
977 | if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO && | |
978 | type != IF_NONE) { | |
c4f26c9f | 979 | error_setg(errp, "werror is not supported by this bus type"); |
ee13ed1c KW |
980 | goto fail; |
981 | } | |
46f5ac20 | 982 | qdict_put_str(bs_opts, "werror", werror); |
ee13ed1c KW |
983 | } |
984 | ||
985 | rerror = qemu_opt_get(legacy_opts, "rerror"); | |
986 | if (rerror != NULL) { | |
987 | if (type != IF_IDE && type != IF_VIRTIO && type != IF_SCSI && | |
988 | type != IF_NONE) { | |
c4f26c9f | 989 | error_setg(errp, "rerror is not supported by this bus type"); |
ee13ed1c KW |
990 | goto fail; |
991 | } | |
46f5ac20 | 992 | qdict_put_str(bs_opts, "rerror", rerror); |
ee13ed1c KW |
993 | } |
994 | ||
2d246f01 | 995 | /* Actual block device init: Functionality shared with blockdev-add */ |
18e46a03 | 996 | blk = blockdev_init(filename, bs_opts, &local_err); |
3cb0e25c | 997 | bs_opts = NULL; |
18e46a03 | 998 | if (!blk) { |
b2322003 | 999 | error_propagate(errp, local_err); |
2d246f01 | 1000 | goto fail; |
b681072d | 1001 | } else { |
84d18f06 | 1002 | assert(!local_err); |
2d246f01 KW |
1003 | } |
1004 | ||
26f8b3a8 MA |
1005 | /* Create legacy DriveInfo */ |
1006 | dinfo = g_malloc0(sizeof(*dinfo)); | |
f298d071 | 1007 | dinfo->opts = all_opts; |
2d246f01 | 1008 | |
ee13ed1c | 1009 | dinfo->type = type; |
87a899c5 KW |
1010 | dinfo->bus = bus_id; |
1011 | dinfo->unit = unit_id; | |
bcf83158 | 1012 | |
26f8b3a8 MA |
1013 | blk_set_legacy_dinfo(blk, dinfo); |
1014 | ||
e34ef046 KW |
1015 | switch(type) { |
1016 | case IF_IDE: | |
1017 | case IF_SCSI: | |
1018 | case IF_XEN: | |
1019 | case IF_NONE: | |
1020 | dinfo->media_cd = media == MEDIA_CDROM; | |
1021 | break; | |
1022 | default: | |
1023 | break; | |
1024 | } | |
1025 | ||
2d246f01 | 1026 | fail: |
33cb7dc8 | 1027 | qemu_opts_del(legacy_opts); |
cb3e7f08 | 1028 | qobject_unref(bs_opts); |
2d246f01 | 1029 | return dinfo; |
57975222 KW |
1030 | } |
1031 | ||
b6c1bae5 KW |
1032 | static BlockDriverState *qmp_get_root_bs(const char *name, Error **errp) |
1033 | { | |
1034 | BlockDriverState *bs; | |
1035 | ||
1036 | bs = bdrv_lookup_bs(name, name, errp); | |
1037 | if (bs == NULL) { | |
1038 | return NULL; | |
1039 | } | |
1040 | ||
1041 | if (!bdrv_is_root_node(bs)) { | |
1042 | error_setg(errp, "Need a root block node"); | |
1043 | return NULL; | |
1044 | } | |
1045 | ||
1046 | if (!bdrv_is_inserted(bs)) { | |
1047 | error_setg(errp, "Device has no medium"); | |
1048 | return NULL; | |
1049 | } | |
1050 | ||
1051 | return bs; | |
1052 | } | |
1053 | ||
b33945cf KW |
1054 | static BlockBackend *qmp_get_blk(const char *blk_name, const char *qdev_id, |
1055 | Error **errp) | |
1056 | { | |
1057 | BlockBackend *blk; | |
1058 | ||
1059 | if (!blk_name == !qdev_id) { | |
1060 | error_setg(errp, "Need exactly one of 'device' and 'id'"); | |
1061 | return NULL; | |
1062 | } | |
1063 | ||
1064 | if (qdev_id) { | |
1065 | blk = blk_by_qdev_id(qdev_id, errp); | |
1066 | } else { | |
1067 | blk = blk_by_name(blk_name); | |
1068 | if (blk == NULL) { | |
1069 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, | |
1070 | "Device '%s' not found", blk_name); | |
1071 | } | |
1072 | } | |
1073 | ||
1074 | return blk; | |
1075 | } | |
1076 | ||
3e5a50d6 | 1077 | void hmp_commit(Monitor *mon, const QDict *qdict) |
666daa68 | 1078 | { |
666daa68 | 1079 | const char *device = qdict_get_str(qdict, "device"); |
a0e8544c | 1080 | BlockBackend *blk; |
e8877497 | 1081 | int ret; |
666daa68 | 1082 | |
6ab4b5ab | 1083 | if (!strcmp(device, "all")) { |
da31d594 | 1084 | ret = blk_commit_all(); |
6ab4b5ab | 1085 | } else { |
84aa0140 SH |
1086 | BlockDriverState *bs; |
1087 | AioContext *aio_context; | |
1088 | ||
a0e8544c FZ |
1089 | blk = blk_by_name(device); |
1090 | if (!blk) { | |
58513bde | 1091 | monitor_printf(mon, "Device '%s' not found\n", device); |
ac59eb95 | 1092 | return; |
6ab4b5ab | 1093 | } |
5433c24f HR |
1094 | if (!blk_is_available(blk)) { |
1095 | monitor_printf(mon, "Device '%s' has no medium\n", device); | |
1096 | return; | |
1097 | } | |
84aa0140 SH |
1098 | |
1099 | bs = blk_bs(blk); | |
1100 | aio_context = bdrv_get_aio_context(bs); | |
1101 | aio_context_acquire(aio_context); | |
1102 | ||
1103 | ret = bdrv_commit(bs); | |
1104 | ||
1105 | aio_context_release(aio_context); | |
58513bde JC |
1106 | } |
1107 | if (ret < 0) { | |
1108 | monitor_printf(mon, "'commit' error for '%s': %s\n", device, | |
1109 | strerror(-ret)); | |
666daa68 MA |
1110 | } |
1111 | } | |
1112 | ||
10f75907 | 1113 | static void blockdev_do_action(TransactionAction *action, Error **errp) |
6cc2a415 | 1114 | { |
c8a83e85 | 1115 | TransactionActionList list; |
6cc2a415 | 1116 | |
10f75907 | 1117 | list.value = action; |
6cc2a415 | 1118 | list.next = NULL; |
94d16a64 | 1119 | qmp_transaction(&list, false, NULL, errp); |
6cc2a415 PB |
1120 | } |
1121 | ||
0901f67e BC |
1122 | void qmp_blockdev_snapshot_sync(bool has_device, const char *device, |
1123 | bool has_node_name, const char *node_name, | |
1124 | const char *snapshot_file, | |
1125 | bool has_snapshot_node_name, | |
1126 | const char *snapshot_node_name, | |
6106e249 | 1127 | bool has_format, const char *format, |
0901f67e | 1128 | bool has_mode, NewImageMode mode, Error **errp) |
f8882568 | 1129 | { |
a911e6ae | 1130 | BlockdevSnapshotSync snapshot = { |
0901f67e | 1131 | .has_device = has_device, |
6cc2a415 | 1132 | .device = (char *) device, |
0901f67e BC |
1133 | .has_node_name = has_node_name, |
1134 | .node_name = (char *) node_name, | |
6cc2a415 | 1135 | .snapshot_file = (char *) snapshot_file, |
0901f67e BC |
1136 | .has_snapshot_node_name = has_snapshot_node_name, |
1137 | .snapshot_node_name = (char *) snapshot_node_name, | |
6cc2a415 PB |
1138 | .has_format = has_format, |
1139 | .format = (char *) format, | |
1140 | .has_mode = has_mode, | |
1141 | .mode = mode, | |
1142 | }; | |
10f75907 EB |
1143 | TransactionAction action = { |
1144 | .type = TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC, | |
32bafa8f | 1145 | .u.blockdev_snapshot_sync.data = &snapshot, |
10f75907 EB |
1146 | }; |
1147 | blockdev_do_action(&action, errp); | |
f8882568 JS |
1148 | } |
1149 | ||
43de7e2d AG |
1150 | void qmp_blockdev_snapshot(const char *node, const char *overlay, |
1151 | Error **errp) | |
1152 | { | |
1153 | BlockdevSnapshot snapshot_data = { | |
1154 | .node = (char *) node, | |
1155 | .overlay = (char *) overlay | |
1156 | }; | |
10f75907 EB |
1157 | TransactionAction action = { |
1158 | .type = TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT, | |
32bafa8f | 1159 | .u.blockdev_snapshot.data = &snapshot_data, |
10f75907 EB |
1160 | }; |
1161 | blockdev_do_action(&action, errp); | |
43de7e2d AG |
1162 | } |
1163 | ||
f323bc9e WX |
1164 | void qmp_blockdev_snapshot_internal_sync(const char *device, |
1165 | const char *name, | |
1166 | Error **errp) | |
1167 | { | |
1168 | BlockdevSnapshotInternal snapshot = { | |
1169 | .device = (char *) device, | |
1170 | .name = (char *) name | |
1171 | }; | |
10f75907 EB |
1172 | TransactionAction action = { |
1173 | .type = TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC, | |
32bafa8f | 1174 | .u.blockdev_snapshot_internal_sync.data = &snapshot, |
10f75907 EB |
1175 | }; |
1176 | blockdev_do_action(&action, errp); | |
f323bc9e WX |
1177 | } |
1178 | ||
44e3e053 WX |
1179 | SnapshotInfo *qmp_blockdev_snapshot_delete_internal_sync(const char *device, |
1180 | bool has_id, | |
1181 | const char *id, | |
1182 | bool has_name, | |
1183 | const char *name, | |
1184 | Error **errp) | |
1185 | { | |
a0e8544c | 1186 | BlockDriverState *bs; |
4ef3982a | 1187 | AioContext *aio_context; |
44e3e053 WX |
1188 | QEMUSnapshotInfo sn; |
1189 | Error *local_err = NULL; | |
1190 | SnapshotInfo *info = NULL; | |
1191 | int ret; | |
1192 | ||
2dfb4c03 KW |
1193 | bs = qmp_get_root_bs(device, errp); |
1194 | if (!bs) { | |
44e3e053 WX |
1195 | return NULL; |
1196 | } | |
2dfb4c03 | 1197 | aio_context = bdrv_get_aio_context(bs); |
5433c24f | 1198 | aio_context_acquire(aio_context); |
44e3e053 WX |
1199 | |
1200 | if (!has_id) { | |
1201 | id = NULL; | |
1202 | } | |
1203 | ||
1204 | if (!has_name) { | |
1205 | name = NULL; | |
1206 | } | |
1207 | ||
1208 | if (!id && !name) { | |
1209 | error_setg(errp, "Name or id must be provided"); | |
5433c24f | 1210 | goto out_aio_context; |
44e3e053 WX |
1211 | } |
1212 | ||
0b928854 SH |
1213 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT_DELETE, errp)) { |
1214 | goto out_aio_context; | |
1215 | } | |
1216 | ||
44e3e053 | 1217 | ret = bdrv_snapshot_find_by_id_and_name(bs, id, name, &sn, &local_err); |
84d18f06 | 1218 | if (local_err) { |
44e3e053 | 1219 | error_propagate(errp, local_err); |
4ef3982a | 1220 | goto out_aio_context; |
44e3e053 WX |
1221 | } |
1222 | if (!ret) { | |
1223 | error_setg(errp, | |
1224 | "Snapshot with id '%s' and name '%s' does not exist on " | |
1225 | "device '%s'", | |
1226 | STR_OR_NULL(id), STR_OR_NULL(name), device); | |
4ef3982a | 1227 | goto out_aio_context; |
44e3e053 WX |
1228 | } |
1229 | ||
1230 | bdrv_snapshot_delete(bs, id, name, &local_err); | |
84d18f06 | 1231 | if (local_err) { |
44e3e053 | 1232 | error_propagate(errp, local_err); |
4ef3982a | 1233 | goto out_aio_context; |
44e3e053 WX |
1234 | } |
1235 | ||
4ef3982a SH |
1236 | aio_context_release(aio_context); |
1237 | ||
5839e53b | 1238 | info = g_new0(SnapshotInfo, 1); |
44e3e053 WX |
1239 | info->id = g_strdup(sn.id_str); |
1240 | info->name = g_strdup(sn.name); | |
1241 | info->date_nsec = sn.date_nsec; | |
1242 | info->date_sec = sn.date_sec; | |
1243 | info->vm_state_size = sn.vm_state_size; | |
1244 | info->vm_clock_nsec = sn.vm_clock_nsec % 1000000000; | |
1245 | info->vm_clock_sec = sn.vm_clock_nsec / 1000000000; | |
1246 | ||
1247 | return info; | |
4ef3982a SH |
1248 | |
1249 | out_aio_context: | |
1250 | aio_context_release(aio_context); | |
1251 | return NULL; | |
44e3e053 | 1252 | } |
8802d1fd | 1253 | |
341ebc2f JS |
1254 | /** |
1255 | * block_dirty_bitmap_lookup: | |
1256 | * Return a dirty bitmap (if present), after validating | |
1257 | * the node reference and bitmap names. | |
1258 | * | |
1259 | * @node: The name of the BDS node to search for bitmaps | |
1260 | * @name: The name of the bitmap to search for | |
1261 | * @pbs: Output pointer for BDS lookup, if desired. Can be NULL. | |
341ebc2f JS |
1262 | * @errp: Output pointer for error information. Can be NULL. |
1263 | * | |
1264 | * @return: A bitmap object on success, or NULL on failure. | |
1265 | */ | |
1266 | static BdrvDirtyBitmap *block_dirty_bitmap_lookup(const char *node, | |
1267 | const char *name, | |
1268 | BlockDriverState **pbs, | |
341ebc2f JS |
1269 | Error **errp) |
1270 | { | |
1271 | BlockDriverState *bs; | |
1272 | BdrvDirtyBitmap *bitmap; | |
341ebc2f JS |
1273 | |
1274 | if (!node) { | |
1275 | error_setg(errp, "Node cannot be NULL"); | |
1276 | return NULL; | |
1277 | } | |
1278 | if (!name) { | |
1279 | error_setg(errp, "Bitmap name cannot be NULL"); | |
1280 | return NULL; | |
1281 | } | |
1282 | bs = bdrv_lookup_bs(node, node, NULL); | |
1283 | if (!bs) { | |
1284 | error_setg(errp, "Node '%s' not found", node); | |
1285 | return NULL; | |
1286 | } | |
1287 | ||
341ebc2f JS |
1288 | bitmap = bdrv_find_dirty_bitmap(bs, name); |
1289 | if (!bitmap) { | |
1290 | error_setg(errp, "Dirty bitmap '%s' not found", name); | |
2119882c | 1291 | return NULL; |
341ebc2f JS |
1292 | } |
1293 | ||
1294 | if (pbs) { | |
1295 | *pbs = bs; | |
1296 | } | |
341ebc2f JS |
1297 | |
1298 | return bitmap; | |
341ebc2f JS |
1299 | } |
1300 | ||
b756b9ce | 1301 | /* New and old BlockDriverState structs for atomic group operations */ |
ba0c86a3 | 1302 | |
50f43f0f | 1303 | typedef struct BlkActionState BlkActionState; |
ba0c86a3 | 1304 | |
50f43f0f JS |
1305 | /** |
1306 | * BlkActionOps: | |
1307 | * Table of operations that define an Action. | |
1308 | * | |
1309 | * @instance_size: Size of state struct, in bytes. | |
1310 | * @prepare: Prepare the work, must NOT be NULL. | |
1311 | * @commit: Commit the changes, can be NULL. | |
1312 | * @abort: Abort the changes on fail, can be NULL. | |
1313 | * @clean: Clean up resources after all transaction actions have called | |
1314 | * commit() or abort(). Can be NULL. | |
1315 | * | |
1316 | * Only prepare() may fail. In a single transaction, only one of commit() or | |
1317 | * abort() will be called. clean() will always be called if it is present. | |
1318 | */ | |
1319 | typedef struct BlkActionOps { | |
ba0c86a3 | 1320 | size_t instance_size; |
50f43f0f JS |
1321 | void (*prepare)(BlkActionState *common, Error **errp); |
1322 | void (*commit)(BlkActionState *common); | |
1323 | void (*abort)(BlkActionState *common); | |
1324 | void (*clean)(BlkActionState *common); | |
1325 | } BlkActionOps; | |
ba0c86a3 | 1326 | |
50f43f0f JS |
1327 | /** |
1328 | * BlkActionState: | |
1329 | * Describes one Action's state within a Transaction. | |
1330 | * | |
1331 | * @action: QAPI-defined enum identifying which Action to perform. | |
1332 | * @ops: Table of ActionOps this Action can perform. | |
94d16a64 | 1333 | * @block_job_txn: Transaction which this action belongs to. |
50f43f0f JS |
1334 | * @entry: List membership for all Actions in this Transaction. |
1335 | * | |
1336 | * This structure must be arranged as first member in a subclassed type, | |
1337 | * assuming that the compiler will also arrange it to the same offsets as the | |
1338 | * base class. | |
ba0c86a3 | 1339 | */ |
50f43f0f | 1340 | struct BlkActionState { |
c8a83e85 | 1341 | TransactionAction *action; |
50f43f0f | 1342 | const BlkActionOps *ops; |
62c9e416 | 1343 | JobTxn *block_job_txn; |
94d16a64 | 1344 | TransactionProperties *txn_props; |
f4de0f8c | 1345 | QTAILQ_ENTRY(BlkActionState) entry; |
ba0c86a3 WX |
1346 | }; |
1347 | ||
bbe86010 WX |
1348 | /* internal snapshot private data */ |
1349 | typedef struct InternalSnapshotState { | |
50f43f0f | 1350 | BlkActionState common; |
bbe86010 WX |
1351 | BlockDriverState *bs; |
1352 | QEMUSnapshotInfo sn; | |
507306cc | 1353 | bool created; |
bbe86010 WX |
1354 | } InternalSnapshotState; |
1355 | ||
94d16a64 JS |
1356 | |
1357 | static int action_check_completion_mode(BlkActionState *s, Error **errp) | |
1358 | { | |
1359 | if (s->txn_props->completion_mode != ACTION_COMPLETION_MODE_INDIVIDUAL) { | |
1360 | error_setg(errp, | |
1361 | "Action '%s' does not support Transaction property " | |
1362 | "completion-mode = %s", | |
977c736f MA |
1363 | TransactionActionKind_str(s->action->type), |
1364 | ActionCompletionMode_str(s->txn_props->completion_mode)); | |
94d16a64 JS |
1365 | return -1; |
1366 | } | |
1367 | return 0; | |
1368 | } | |
1369 | ||
50f43f0f | 1370 | static void internal_snapshot_prepare(BlkActionState *common, |
bbe86010 WX |
1371 | Error **errp) |
1372 | { | |
f70edf99 | 1373 | Error *local_err = NULL; |
bbe86010 WX |
1374 | const char *device; |
1375 | const char *name; | |
1376 | BlockDriverState *bs; | |
1377 | QEMUSnapshotInfo old_sn, *sn; | |
1378 | bool ret; | |
1379 | qemu_timeval tv; | |
1380 | BlockdevSnapshotInternal *internal; | |
1381 | InternalSnapshotState *state; | |
a36e458c | 1382 | AioContext *aio_context; |
bbe86010 WX |
1383 | int ret1; |
1384 | ||
6a8f9661 | 1385 | g_assert(common->action->type == |
bbe86010 | 1386 | TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC); |
32bafa8f | 1387 | internal = common->action->u.blockdev_snapshot_internal_sync.data; |
bbe86010 WX |
1388 | state = DO_UPCAST(InternalSnapshotState, common, common); |
1389 | ||
1390 | /* 1. parse input */ | |
1391 | device = internal->device; | |
1392 | name = internal->name; | |
1393 | ||
1394 | /* 2. check for validation */ | |
94d16a64 JS |
1395 | if (action_check_completion_mode(common, errp) < 0) { |
1396 | return; | |
1397 | } | |
1398 | ||
75dfd402 KW |
1399 | bs = qmp_get_root_bs(device, errp); |
1400 | if (!bs) { | |
bbe86010 WX |
1401 | return; |
1402 | } | |
1403 | ||
a36e458c SH |
1404 | aio_context = bdrv_get_aio_context(bs); |
1405 | aio_context_acquire(aio_context); | |
5d6e96ef | 1406 | |
507306cc | 1407 | state->bs = bs; |
a36e458c SH |
1408 | |
1409 | /* Paired with .clean() */ | |
507306cc FZ |
1410 | bdrv_drained_begin(bs); |
1411 | ||
3dc7ca3c | 1412 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT, errp)) { |
a36e458c | 1413 | goto out; |
3dc7ca3c SH |
1414 | } |
1415 | ||
bbe86010 | 1416 | if (bdrv_is_read_only(bs)) { |
81e5f78a | 1417 | error_setg(errp, "Device '%s' is read only", device); |
a36e458c | 1418 | goto out; |
bbe86010 WX |
1419 | } |
1420 | ||
1421 | if (!bdrv_can_snapshot(bs)) { | |
81e5f78a AG |
1422 | error_setg(errp, "Block format '%s' used by device '%s' " |
1423 | "does not support internal snapshots", | |
1424 | bs->drv->format_name, device); | |
a36e458c | 1425 | goto out; |
bbe86010 WX |
1426 | } |
1427 | ||
1428 | if (!strlen(name)) { | |
1429 | error_setg(errp, "Name is empty"); | |
a36e458c | 1430 | goto out; |
bbe86010 WX |
1431 | } |
1432 | ||
1433 | /* check whether a snapshot with name exist */ | |
f70edf99 MA |
1434 | ret = bdrv_snapshot_find_by_id_and_name(bs, NULL, name, &old_sn, |
1435 | &local_err); | |
1436 | if (local_err) { | |
1437 | error_propagate(errp, local_err); | |
a36e458c | 1438 | goto out; |
bbe86010 WX |
1439 | } else if (ret) { |
1440 | error_setg(errp, | |
1441 | "Snapshot with name '%s' already exists on device '%s'", | |
1442 | name, device); | |
a36e458c | 1443 | goto out; |
bbe86010 WX |
1444 | } |
1445 | ||
1446 | /* 3. take the snapshot */ | |
1447 | sn = &state->sn; | |
1448 | pstrcpy(sn->name, sizeof(sn->name), name); | |
1449 | qemu_gettimeofday(&tv); | |
1450 | sn->date_sec = tv.tv_sec; | |
1451 | sn->date_nsec = tv.tv_usec * 1000; | |
1452 | sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL); | |
1453 | ||
1454 | ret1 = bdrv_snapshot_create(bs, sn); | |
1455 | if (ret1 < 0) { | |
1456 | error_setg_errno(errp, -ret1, | |
1457 | "Failed to create snapshot '%s' on device '%s'", | |
1458 | name, device); | |
a36e458c | 1459 | goto out; |
bbe86010 WX |
1460 | } |
1461 | ||
1462 | /* 4. succeed, mark a snapshot is created */ | |
507306cc | 1463 | state->created = true; |
a36e458c SH |
1464 | |
1465 | out: | |
1466 | aio_context_release(aio_context); | |
bbe86010 WX |
1467 | } |
1468 | ||
50f43f0f | 1469 | static void internal_snapshot_abort(BlkActionState *common) |
bbe86010 WX |
1470 | { |
1471 | InternalSnapshotState *state = | |
1472 | DO_UPCAST(InternalSnapshotState, common, common); | |
1473 | BlockDriverState *bs = state->bs; | |
1474 | QEMUSnapshotInfo *sn = &state->sn; | |
a36e458c | 1475 | AioContext *aio_context; |
bbe86010 WX |
1476 | Error *local_error = NULL; |
1477 | ||
507306cc | 1478 | if (!state->created) { |
bbe86010 WX |
1479 | return; |
1480 | } | |
1481 | ||
a36e458c SH |
1482 | aio_context = bdrv_get_aio_context(state->bs); |
1483 | aio_context_acquire(aio_context); | |
1484 | ||
bbe86010 | 1485 | if (bdrv_snapshot_delete(bs, sn->id_str, sn->name, &local_error) < 0) { |
c29b77f9 MA |
1486 | error_reportf_err(local_error, |
1487 | "Failed to delete snapshot with id '%s' and " | |
1488 | "name '%s' on device '%s' in abort: ", | |
1489 | sn->id_str, sn->name, | |
1490 | bdrv_get_device_name(bs)); | |
bbe86010 | 1491 | } |
a36e458c SH |
1492 | |
1493 | aio_context_release(aio_context); | |
bbe86010 WX |
1494 | } |
1495 | ||
50f43f0f | 1496 | static void internal_snapshot_clean(BlkActionState *common) |
5d6e96ef SH |
1497 | { |
1498 | InternalSnapshotState *state = DO_UPCAST(InternalSnapshotState, | |
1499 | common, common); | |
a36e458c | 1500 | AioContext *aio_context; |
5d6e96ef | 1501 | |
a36e458c SH |
1502 | if (!state->bs) { |
1503 | return; | |
5d6e96ef | 1504 | } |
a36e458c SH |
1505 | |
1506 | aio_context = bdrv_get_aio_context(state->bs); | |
1507 | aio_context_acquire(aio_context); | |
1508 | ||
1509 | bdrv_drained_end(state->bs); | |
1510 | ||
1511 | aio_context_release(aio_context); | |
5d6e96ef SH |
1512 | } |
1513 | ||
ba0c86a3 | 1514 | /* external snapshot private data */ |
ba5d6ab6 | 1515 | typedef struct ExternalSnapshotState { |
50f43f0f | 1516 | BlkActionState common; |
8802d1fd JC |
1517 | BlockDriverState *old_bs; |
1518 | BlockDriverState *new_bs; | |
067acf28 | 1519 | bool overlay_appended; |
ba5d6ab6 | 1520 | } ExternalSnapshotState; |
8802d1fd | 1521 | |
50f43f0f | 1522 | static void external_snapshot_prepare(BlkActionState *common, |
9b9877ee WX |
1523 | Error **errp) |
1524 | { | |
5b363937 | 1525 | int flags = 0; |
43de7e2d | 1526 | QDict *options = NULL; |
9b9877ee | 1527 | Error *local_err = NULL; |
43de7e2d | 1528 | /* Device and node name of the image to generate the snapshot from */ |
e2a31e87 | 1529 | const char *device; |
0901f67e | 1530 | const char *node_name; |
43de7e2d AG |
1531 | /* Reference to the new image (for 'blockdev-snapshot') */ |
1532 | const char *snapshot_ref; | |
1533 | /* File name of the new image (for 'blockdev-snapshot-sync') */ | |
e2a31e87 | 1534 | const char *new_image_file; |
ba5d6ab6 SH |
1535 | ExternalSnapshotState *state = |
1536 | DO_UPCAST(ExternalSnapshotState, common, common); | |
c8a83e85 | 1537 | TransactionAction *action = common->action; |
2d24b60b | 1538 | AioContext *aio_context; |
8ed7d42f | 1539 | int ret; |
9b9877ee | 1540 | |
43de7e2d AG |
1541 | /* 'blockdev-snapshot' and 'blockdev-snapshot-sync' have similar |
1542 | * purpose but a different set of parameters */ | |
1543 | switch (action->type) { | |
1544 | case TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT: | |
1545 | { | |
32bafa8f | 1546 | BlockdevSnapshot *s = action->u.blockdev_snapshot.data; |
43de7e2d AG |
1547 | device = s->node; |
1548 | node_name = s->node; | |
1549 | new_image_file = NULL; | |
1550 | snapshot_ref = s->overlay; | |
1551 | } | |
1552 | break; | |
1553 | case TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC: | |
1554 | { | |
32bafa8f | 1555 | BlockdevSnapshotSync *s = action->u.blockdev_snapshot_sync.data; |
43de7e2d AG |
1556 | device = s->has_device ? s->device : NULL; |
1557 | node_name = s->has_node_name ? s->node_name : NULL; | |
1558 | new_image_file = s->snapshot_file; | |
1559 | snapshot_ref = NULL; | |
1560 | } | |
1561 | break; | |
1562 | default: | |
1563 | g_assert_not_reached(); | |
e2a31e87 WX |
1564 | } |
1565 | ||
1566 | /* start processing */ | |
94d16a64 JS |
1567 | if (action_check_completion_mode(common, errp) < 0) { |
1568 | return; | |
1569 | } | |
1570 | ||
43de7e2d AG |
1571 | state->old_bs = bdrv_lookup_bs(device, node_name, errp); |
1572 | if (!state->old_bs) { | |
9b9877ee WX |
1573 | return; |
1574 | } | |
1575 | ||
2d24b60b SH |
1576 | aio_context = bdrv_get_aio_context(state->old_bs); |
1577 | aio_context_acquire(aio_context); | |
1578 | ||
1579 | /* Paired with .clean() */ | |
da763e83 | 1580 | bdrv_drained_begin(state->old_bs); |
5d6e96ef | 1581 | |
ba5d6ab6 | 1582 | if (!bdrv_is_inserted(state->old_bs)) { |
c6bd8c70 | 1583 | error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); |
2d24b60b | 1584 | goto out; |
9b9877ee WX |
1585 | } |
1586 | ||
3718d8ab FZ |
1587 | if (bdrv_op_is_blocked(state->old_bs, |
1588 | BLOCK_OP_TYPE_EXTERNAL_SNAPSHOT, errp)) { | |
2d24b60b | 1589 | goto out; |
9b9877ee WX |
1590 | } |
1591 | ||
ba5d6ab6 SH |
1592 | if (!bdrv_is_read_only(state->old_bs)) { |
1593 | if (bdrv_flush(state->old_bs)) { | |
c6bd8c70 | 1594 | error_setg(errp, QERR_IO_ERROR); |
2d24b60b | 1595 | goto out; |
9b9877ee WX |
1596 | } |
1597 | } | |
1598 | ||
212a5a8f | 1599 | if (!bdrv_is_first_non_filter(state->old_bs)) { |
c6bd8c70 | 1600 | error_setg(errp, QERR_FEATURE_DISABLED, "snapshot"); |
2d24b60b | 1601 | goto out; |
f6186f49 BC |
1602 | } |
1603 | ||
43de7e2d | 1604 | if (action->type == TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC) { |
32bafa8f | 1605 | BlockdevSnapshotSync *s = action->u.blockdev_snapshot_sync.data; |
43de7e2d AG |
1606 | const char *format = s->has_format ? s->format : "qcow2"; |
1607 | enum NewImageMode mode; | |
1608 | const char *snapshot_node_name = | |
1609 | s->has_snapshot_node_name ? s->snapshot_node_name : NULL; | |
9b9877ee | 1610 | |
43de7e2d | 1611 | if (node_name && !snapshot_node_name) { |
a2bb6f8c | 1612 | error_setg(errp, "New overlay node name missing"); |
2d24b60b | 1613 | goto out; |
9b9877ee | 1614 | } |
9b9877ee | 1615 | |
43de7e2d AG |
1616 | if (snapshot_node_name && |
1617 | bdrv_lookup_bs(snapshot_node_name, snapshot_node_name, NULL)) { | |
a2bb6f8c | 1618 | error_setg(errp, "New overlay node name already in use"); |
2d24b60b | 1619 | goto out; |
43de7e2d AG |
1620 | } |
1621 | ||
1622 | flags = state->old_bs->open_flags; | |
2a32c6e8 JS |
1623 | flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_COPY_ON_READ); |
1624 | flags |= BDRV_O_NO_BACKING; | |
43de7e2d AG |
1625 | |
1626 | /* create new image w/backing file */ | |
1627 | mode = s->has_mode ? s->mode : NEW_IMAGE_MODE_ABSOLUTE_PATHS; | |
1628 | if (mode != NEW_IMAGE_MODE_EXISTING) { | |
f86b8b58 KW |
1629 | int64_t size = bdrv_getlength(state->old_bs); |
1630 | if (size < 0) { | |
1631 | error_setg_errno(errp, -size, "bdrv_getlength failed"); | |
2d24b60b | 1632 | goto out; |
f86b8b58 | 1633 | } |
f30c66ba | 1634 | bdrv_refresh_filename(state->old_bs); |
43de7e2d AG |
1635 | bdrv_img_create(new_image_file, format, |
1636 | state->old_bs->filename, | |
1637 | state->old_bs->drv->format_name, | |
9217283d | 1638 | NULL, size, flags, false, &local_err); |
43de7e2d AG |
1639 | if (local_err) { |
1640 | error_propagate(errp, local_err); | |
2d24b60b | 1641 | goto out; |
43de7e2d AG |
1642 | } |
1643 | } | |
1644 | ||
1645 | options = qdict_new(); | |
d52e1a0e | 1646 | if (snapshot_node_name) { |
46f5ac20 | 1647 | qdict_put_str(options, "node-name", snapshot_node_name); |
43de7e2d | 1648 | } |
46f5ac20 | 1649 | qdict_put_str(options, "driver", format); |
0901f67e BC |
1650 | } |
1651 | ||
5b363937 HR |
1652 | state->new_bs = bdrv_open(new_image_file, snapshot_ref, options, flags, |
1653 | errp); | |
f67503e5 | 1654 | /* We will manually add the backing_hd field to the bs later */ |
5b363937 | 1655 | if (!state->new_bs) { |
2d24b60b | 1656 | goto out; |
43de7e2d AG |
1657 | } |
1658 | ||
1f0c461b | 1659 | if (bdrv_has_blk(state->new_bs)) { |
a2bb6f8c | 1660 | error_setg(errp, "The overlay is already in use"); |
2d24b60b | 1661 | goto out; |
43de7e2d AG |
1662 | } |
1663 | ||
1664 | if (bdrv_op_is_blocked(state->new_bs, BLOCK_OP_TYPE_EXTERNAL_SNAPSHOT, | |
1665 | errp)) { | |
2d24b60b | 1666 | goto out; |
43de7e2d AG |
1667 | } |
1668 | ||
1669 | if (state->new_bs->backing != NULL) { | |
a2bb6f8c | 1670 | error_setg(errp, "The overlay already has a backing image"); |
2d24b60b | 1671 | goto out; |
08b24cfe AG |
1672 | } |
1673 | ||
1674 | if (!state->new_bs->drv->supports_backing) { | |
a2bb6f8c | 1675 | error_setg(errp, "The overlay does not support backing images"); |
2d24b60b | 1676 | goto out; |
b2c2832c KW |
1677 | } |
1678 | ||
8ed7d42f KW |
1679 | ret = bdrv_try_set_aio_context(state->new_bs, aio_context, errp); |
1680 | if (ret < 0) { | |
1681 | goto out; | |
1682 | } | |
c26a5ab7 | 1683 | |
b2c2832c KW |
1684 | /* This removes our old bs and adds the new bs. This is an operation that |
1685 | * can fail, so we need to do it in .prepare; undoing it for abort is | |
1686 | * always possible. */ | |
1687 | bdrv_ref(state->new_bs); | |
1688 | bdrv_append(state->new_bs, state->old_bs, &local_err); | |
1689 | if (local_err) { | |
1690 | error_propagate(errp, local_err); | |
2d24b60b | 1691 | goto out; |
9b9877ee | 1692 | } |
067acf28 | 1693 | state->overlay_appended = true; |
2d24b60b SH |
1694 | |
1695 | out: | |
1696 | aio_context_release(aio_context); | |
9b9877ee WX |
1697 | } |
1698 | ||
50f43f0f | 1699 | static void external_snapshot_commit(BlkActionState *common) |
3b0047e8 | 1700 | { |
ba5d6ab6 SH |
1701 | ExternalSnapshotState *state = |
1702 | DO_UPCAST(ExternalSnapshotState, common, common); | |
2d24b60b SH |
1703 | AioContext *aio_context; |
1704 | ||
1705 | aio_context = bdrv_get_aio_context(state->old_bs); | |
1706 | aio_context_acquire(aio_context); | |
ba0c86a3 | 1707 | |
3b0047e8 WX |
1708 | /* We don't need (or want) to use the transactional |
1709 | * bdrv_reopen_multiple() across all the entries at once, because we | |
1710 | * don't want to abort all of them if one of them fails the reopen */ | |
d3faa13e | 1711 | if (!atomic_read(&state->old_bs->copy_on_read)) { |
1b57774f | 1712 | bdrv_reopen_set_read_only(state->old_bs, true, NULL); |
4c844983 | 1713 | } |
2d24b60b SH |
1714 | |
1715 | aio_context_release(aio_context); | |
3b0047e8 WX |
1716 | } |
1717 | ||
50f43f0f | 1718 | static void external_snapshot_abort(BlkActionState *common) |
96b86bf7 | 1719 | { |
ba5d6ab6 SH |
1720 | ExternalSnapshotState *state = |
1721 | DO_UPCAST(ExternalSnapshotState, common, common); | |
1722 | if (state->new_bs) { | |
067acf28 | 1723 | if (state->overlay_appended) { |
2d24b60b SH |
1724 | AioContext *aio_context; |
1725 | ||
1726 | aio_context = bdrv_get_aio_context(state->old_bs); | |
1727 | aio_context_acquire(aio_context); | |
1728 | ||
719fc28c JC |
1729 | bdrv_ref(state->old_bs); /* we can't let bdrv_set_backind_hd() |
1730 | close state->old_bs; we need it */ | |
1731 | bdrv_set_backing_hd(state->new_bs, NULL, &error_abort); | |
5fe31c25 | 1732 | bdrv_replace_node(state->new_bs, state->old_bs, &error_abort); |
719fc28c | 1733 | bdrv_unref(state->old_bs); /* bdrv_replace_node() ref'ed old_bs */ |
2d24b60b SH |
1734 | |
1735 | aio_context_release(aio_context); | |
b2c2832c | 1736 | } |
96b86bf7 | 1737 | } |
da763e83 FZ |
1738 | } |
1739 | ||
50f43f0f | 1740 | static void external_snapshot_clean(BlkActionState *common) |
da763e83 FZ |
1741 | { |
1742 | ExternalSnapshotState *state = | |
1743 | DO_UPCAST(ExternalSnapshotState, common, common); | |
2d24b60b SH |
1744 | AioContext *aio_context; |
1745 | ||
1746 | if (!state->old_bs) { | |
1747 | return; | |
5d6e96ef | 1748 | } |
2d24b60b SH |
1749 | |
1750 | aio_context = bdrv_get_aio_context(state->old_bs); | |
1751 | aio_context_acquire(aio_context); | |
1752 | ||
1753 | bdrv_drained_end(state->old_bs); | |
1754 | bdrv_unref(state->new_bs); | |
1755 | ||
1756 | aio_context_release(aio_context); | |
96b86bf7 WX |
1757 | } |
1758 | ||
3037f364 | 1759 | typedef struct DriveBackupState { |
50f43f0f | 1760 | BlkActionState common; |
3037f364 SH |
1761 | BlockDriverState *bs; |
1762 | BlockJob *job; | |
1763 | } DriveBackupState; | |
1764 | ||
62c9e416 | 1765 | static BlockJob *do_drive_backup(DriveBackup *backup, JobTxn *txn, |
81206a89 | 1766 | Error **errp); |
78f51fde | 1767 | |
50f43f0f | 1768 | static void drive_backup_prepare(BlkActionState *common, Error **errp) |
3037f364 SH |
1769 | { |
1770 | DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common); | |
b7e4fa22 | 1771 | BlockDriverState *bs; |
3037f364 | 1772 | DriveBackup *backup; |
66d56054 | 1773 | AioContext *aio_context; |
3037f364 SH |
1774 | Error *local_err = NULL; |
1775 | ||
6a8f9661 | 1776 | assert(common->action->type == TRANSACTION_ACTION_KIND_DRIVE_BACKUP); |
32bafa8f | 1777 | backup = common->action->u.drive_backup.data; |
3037f364 | 1778 | |
85c9d133 | 1779 | bs = bdrv_lookup_bs(backup->device, backup->device, errp); |
b7e4fa22 | 1780 | if (!bs) { |
1fdd4b7b FZ |
1781 | return; |
1782 | } | |
1783 | ||
66d56054 SH |
1784 | aio_context = bdrv_get_aio_context(bs); |
1785 | aio_context_acquire(aio_context); | |
1786 | ||
1787 | /* Paired with .clean() */ | |
b7e4fa22 | 1788 | bdrv_drained_begin(bs); |
66d56054 | 1789 | |
b7e4fa22 | 1790 | state->bs = bs; |
5d6e96ef | 1791 | |
111049a4 | 1792 | state->job = do_drive_backup(backup, common->block_job_txn, &local_err); |
84d18f06 | 1793 | if (local_err) { |
3037f364 | 1794 | error_propagate(errp, local_err); |
66d56054 | 1795 | goto out; |
3037f364 | 1796 | } |
66d56054 SH |
1797 | |
1798 | out: | |
1799 | aio_context_release(aio_context); | |
111049a4 | 1800 | } |
3037f364 | 1801 | |
111049a4 JS |
1802 | static void drive_backup_commit(BlkActionState *common) |
1803 | { | |
1804 | DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common); | |
66d56054 SH |
1805 | AioContext *aio_context; |
1806 | ||
1807 | aio_context = bdrv_get_aio_context(state->bs); | |
1808 | aio_context_acquire(aio_context); | |
1809 | ||
111049a4 | 1810 | assert(state->job); |
da01ff7f | 1811 | job_start(&state->job->job); |
66d56054 SH |
1812 | |
1813 | aio_context_release(aio_context); | |
3037f364 SH |
1814 | } |
1815 | ||
50f43f0f | 1816 | static void drive_backup_abort(BlkActionState *common) |
3037f364 SH |
1817 | { |
1818 | DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common); | |
3037f364 | 1819 | |
111049a4 | 1820 | if (state->job) { |
66d56054 SH |
1821 | AioContext *aio_context; |
1822 | ||
1823 | aio_context = bdrv_get_aio_context(state->bs); | |
1824 | aio_context_acquire(aio_context); | |
1825 | ||
3d70ff53 | 1826 | job_cancel_sync(&state->job->job); |
66d56054 SH |
1827 | |
1828 | aio_context_release(aio_context); | |
3037f364 SH |
1829 | } |
1830 | } | |
1831 | ||
50f43f0f | 1832 | static void drive_backup_clean(BlkActionState *common) |
5d6e96ef SH |
1833 | { |
1834 | DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common); | |
66d56054 | 1835 | AioContext *aio_context; |
5d6e96ef | 1836 | |
66d56054 SH |
1837 | if (!state->bs) { |
1838 | return; | |
5d6e96ef | 1839 | } |
66d56054 SH |
1840 | |
1841 | aio_context = bdrv_get_aio_context(state->bs); | |
1842 | aio_context_acquire(aio_context); | |
1843 | ||
1844 | bdrv_drained_end(state->bs); | |
1845 | ||
1846 | aio_context_release(aio_context); | |
5d6e96ef SH |
1847 | } |
1848 | ||
bd8baecd | 1849 | typedef struct BlockdevBackupState { |
50f43f0f | 1850 | BlkActionState common; |
bd8baecd FZ |
1851 | BlockDriverState *bs; |
1852 | BlockJob *job; | |
bd8baecd FZ |
1853 | } BlockdevBackupState; |
1854 | ||
62c9e416 | 1855 | static BlockJob *do_blockdev_backup(BlockdevBackup *backup, JobTxn *txn, |
111049a4 | 1856 | Error **errp); |
78f51fde | 1857 | |
50f43f0f | 1858 | static void blockdev_backup_prepare(BlkActionState *common, Error **errp) |
bd8baecd FZ |
1859 | { |
1860 | BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common); | |
1861 | BlockdevBackup *backup; | |
cef34eeb | 1862 | BlockDriverState *bs, *target; |
edd5adee | 1863 | AioContext *aio_context; |
bd8baecd FZ |
1864 | Error *local_err = NULL; |
1865 | ||
6a8f9661 | 1866 | assert(common->action->type == TRANSACTION_ACTION_KIND_BLOCKDEV_BACKUP); |
32bafa8f | 1867 | backup = common->action->u.blockdev_backup.data; |
bd8baecd | 1868 | |
930fe17f | 1869 | bs = bdrv_lookup_bs(backup->device, backup->device, errp); |
cef34eeb | 1870 | if (!bs) { |
ff52bf36 FZ |
1871 | return; |
1872 | } | |
1873 | ||
39d990ac | 1874 | target = bdrv_lookup_bs(backup->target, backup->target, errp); |
5433c24f | 1875 | if (!target) { |
bd8baecd FZ |
1876 | return; |
1877 | } | |
1878 | ||
edd5adee | 1879 | aio_context = bdrv_get_aio_context(bs); |
edd5adee | 1880 | aio_context_acquire(aio_context); |
cef34eeb | 1881 | state->bs = bs; |
edd5adee SH |
1882 | |
1883 | /* Paired with .clean() */ | |
ff52bf36 | 1884 | bdrv_drained_begin(state->bs); |
bd8baecd | 1885 | |
111049a4 | 1886 | state->job = do_blockdev_backup(backup, common->block_job_txn, &local_err); |
bd8baecd FZ |
1887 | if (local_err) { |
1888 | error_propagate(errp, local_err); | |
edd5adee | 1889 | goto out; |
bd8baecd | 1890 | } |
edd5adee SH |
1891 | |
1892 | out: | |
1893 | aio_context_release(aio_context); | |
111049a4 | 1894 | } |
bd8baecd | 1895 | |
111049a4 JS |
1896 | static void blockdev_backup_commit(BlkActionState *common) |
1897 | { | |
1898 | BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common); | |
edd5adee SH |
1899 | AioContext *aio_context; |
1900 | ||
1901 | aio_context = bdrv_get_aio_context(state->bs); | |
1902 | aio_context_acquire(aio_context); | |
1903 | ||
111049a4 | 1904 | assert(state->job); |
da01ff7f | 1905 | job_start(&state->job->job); |
edd5adee SH |
1906 | |
1907 | aio_context_release(aio_context); | |
bd8baecd FZ |
1908 | } |
1909 | ||
50f43f0f | 1910 | static void blockdev_backup_abort(BlkActionState *common) |
bd8baecd FZ |
1911 | { |
1912 | BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common); | |
bd8baecd | 1913 | |
111049a4 | 1914 | if (state->job) { |
edd5adee SH |
1915 | AioContext *aio_context; |
1916 | ||
1917 | aio_context = bdrv_get_aio_context(state->bs); | |
1918 | aio_context_acquire(aio_context); | |
1919 | ||
3d70ff53 | 1920 | job_cancel_sync(&state->job->job); |
edd5adee SH |
1921 | |
1922 | aio_context_release(aio_context); | |
bd8baecd FZ |
1923 | } |
1924 | } | |
1925 | ||
50f43f0f | 1926 | static void blockdev_backup_clean(BlkActionState *common) |
bd8baecd FZ |
1927 | { |
1928 | BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common); | |
edd5adee | 1929 | AioContext *aio_context; |
bd8baecd | 1930 | |
edd5adee SH |
1931 | if (!state->bs) { |
1932 | return; | |
bd8baecd | 1933 | } |
edd5adee SH |
1934 | |
1935 | aio_context = bdrv_get_aio_context(state->bs); | |
1936 | aio_context_acquire(aio_context); | |
1937 | ||
1938 | bdrv_drained_end(state->bs); | |
1939 | ||
1940 | aio_context_release(aio_context); | |
bd8baecd FZ |
1941 | } |
1942 | ||
df9a681d | 1943 | typedef struct BlockDirtyBitmapState { |
50f43f0f | 1944 | BlkActionState common; |
df9a681d FZ |
1945 | BdrvDirtyBitmap *bitmap; |
1946 | BlockDriverState *bs; | |
df9a681d FZ |
1947 | HBitmap *backup; |
1948 | bool prepared; | |
c6490447 | 1949 | bool was_enabled; |
df9a681d FZ |
1950 | } BlockDirtyBitmapState; |
1951 | ||
50f43f0f | 1952 | static void block_dirty_bitmap_add_prepare(BlkActionState *common, |
df9a681d FZ |
1953 | Error **errp) |
1954 | { | |
1955 | Error *local_err = NULL; | |
1956 | BlockDirtyBitmapAdd *action; | |
1957 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, | |
1958 | common, common); | |
1959 | ||
94d16a64 JS |
1960 | if (action_check_completion_mode(common, errp) < 0) { |
1961 | return; | |
1962 | } | |
1963 | ||
32bafa8f | 1964 | action = common->action->u.block_dirty_bitmap_add.data; |
df9a681d FZ |
1965 | /* AIO context taken and released within qmp_block_dirty_bitmap_add */ |
1966 | qmp_block_dirty_bitmap_add(action->node, action->name, | |
1967 | action->has_granularity, action->granularity, | |
fd5ae4cc | 1968 | action->has_persistent, action->persistent, |
eb738bb5 | 1969 | action->has_autoload, action->autoload, |
0e2b7f09 | 1970 | action->has_disabled, action->disabled, |
df9a681d FZ |
1971 | &local_err); |
1972 | ||
1973 | if (!local_err) { | |
1974 | state->prepared = true; | |
1975 | } else { | |
1976 | error_propagate(errp, local_err); | |
1977 | } | |
1978 | } | |
1979 | ||
50f43f0f | 1980 | static void block_dirty_bitmap_add_abort(BlkActionState *common) |
df9a681d FZ |
1981 | { |
1982 | BlockDirtyBitmapAdd *action; | |
1983 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, | |
1984 | common, common); | |
1985 | ||
32bafa8f | 1986 | action = common->action->u.block_dirty_bitmap_add.data; |
df9a681d FZ |
1987 | /* Should not be able to fail: IF the bitmap was added via .prepare(), |
1988 | * then the node reference and bitmap name must have been valid. | |
1989 | */ | |
1990 | if (state->prepared) { | |
1991 | qmp_block_dirty_bitmap_remove(action->node, action->name, &error_abort); | |
1992 | } | |
1993 | } | |
1994 | ||
50f43f0f | 1995 | static void block_dirty_bitmap_clear_prepare(BlkActionState *common, |
df9a681d FZ |
1996 | Error **errp) |
1997 | { | |
1998 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, | |
1999 | common, common); | |
2000 | BlockDirtyBitmap *action; | |
2001 | ||
94d16a64 JS |
2002 | if (action_check_completion_mode(common, errp) < 0) { |
2003 | return; | |
2004 | } | |
2005 | ||
32bafa8f | 2006 | action = common->action->u.block_dirty_bitmap_clear.data; |
df9a681d FZ |
2007 | state->bitmap = block_dirty_bitmap_lookup(action->node, |
2008 | action->name, | |
2009 | &state->bs, | |
df9a681d FZ |
2010 | errp); |
2011 | if (!state->bitmap) { | |
2012 | return; | |
2013 | } | |
2014 | ||
3ae96d66 | 2015 | if (bdrv_dirty_bitmap_check(state->bitmap, BDRV_BITMAP_DEFAULT, errp)) { |
d6883bc9 | 2016 | return; |
df9a681d FZ |
2017 | } |
2018 | ||
2019 | bdrv_clear_dirty_bitmap(state->bitmap, &state->backup); | |
df9a681d FZ |
2020 | } |
2021 | ||
5c4cf8b2 | 2022 | static void block_dirty_bitmap_restore(BlkActionState *common) |
df9a681d FZ |
2023 | { |
2024 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, | |
2025 | common, common); | |
2026 | ||
184dd9c4 | 2027 | if (state->backup) { |
56bd6624 | 2028 | bdrv_restore_dirty_bitmap(state->bitmap, state->backup); |
184dd9c4 | 2029 | } |
df9a681d FZ |
2030 | } |
2031 | ||
5c4cf8b2 | 2032 | static void block_dirty_bitmap_free_backup(BlkActionState *common) |
df9a681d FZ |
2033 | { |
2034 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, | |
2035 | common, common); | |
2036 | ||
2037 | hbitmap_free(state->backup); | |
2038 | } | |
2039 | ||
c6490447 VSO |
2040 | static void block_dirty_bitmap_enable_prepare(BlkActionState *common, |
2041 | Error **errp) | |
2042 | { | |
2043 | BlockDirtyBitmap *action; | |
2044 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, | |
2045 | common, common); | |
2046 | ||
2047 | if (action_check_completion_mode(common, errp) < 0) { | |
2048 | return; | |
2049 | } | |
2050 | ||
0e2b7f09 | 2051 | action = common->action->u.block_dirty_bitmap_enable.data; |
c6490447 VSO |
2052 | state->bitmap = block_dirty_bitmap_lookup(action->node, |
2053 | action->name, | |
2054 | NULL, | |
2055 | errp); | |
2056 | if (!state->bitmap) { | |
2057 | return; | |
2058 | } | |
2059 | ||
3ae96d66 | 2060 | if (bdrv_dirty_bitmap_check(state->bitmap, BDRV_BITMAP_ALLOW_RO, errp)) { |
b053bb55 JS |
2061 | return; |
2062 | } | |
2063 | ||
c6490447 VSO |
2064 | state->was_enabled = bdrv_dirty_bitmap_enabled(state->bitmap); |
2065 | bdrv_enable_dirty_bitmap(state->bitmap); | |
2066 | } | |
2067 | ||
2068 | static void block_dirty_bitmap_enable_abort(BlkActionState *common) | |
2069 | { | |
2070 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, | |
2071 | common, common); | |
2072 | ||
2073 | if (!state->was_enabled) { | |
2074 | bdrv_disable_dirty_bitmap(state->bitmap); | |
2075 | } | |
2076 | } | |
2077 | ||
2078 | static void block_dirty_bitmap_disable_prepare(BlkActionState *common, | |
2079 | Error **errp) | |
2080 | { | |
2081 | BlockDirtyBitmap *action; | |
2082 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, | |
2083 | common, common); | |
2084 | ||
2085 | if (action_check_completion_mode(common, errp) < 0) { | |
2086 | return; | |
2087 | } | |
2088 | ||
0e2b7f09 | 2089 | action = common->action->u.block_dirty_bitmap_disable.data; |
c6490447 VSO |
2090 | state->bitmap = block_dirty_bitmap_lookup(action->node, |
2091 | action->name, | |
2092 | NULL, | |
2093 | errp); | |
2094 | if (!state->bitmap) { | |
2095 | return; | |
2096 | } | |
2097 | ||
3ae96d66 | 2098 | if (bdrv_dirty_bitmap_check(state->bitmap, BDRV_BITMAP_ALLOW_RO, errp)) { |
b053bb55 JS |
2099 | return; |
2100 | } | |
2101 | ||
c6490447 VSO |
2102 | state->was_enabled = bdrv_dirty_bitmap_enabled(state->bitmap); |
2103 | bdrv_disable_dirty_bitmap(state->bitmap); | |
2104 | } | |
2105 | ||
2106 | static void block_dirty_bitmap_disable_abort(BlkActionState *common) | |
2107 | { | |
2108 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, | |
2109 | common, common); | |
2110 | ||
2111 | if (state->was_enabled) { | |
2112 | bdrv_enable_dirty_bitmap(state->bitmap); | |
2113 | } | |
2114 | } | |
2115 | ||
eff0829b VSO |
2116 | static BdrvDirtyBitmap *do_block_dirty_bitmap_merge( |
2117 | const char *node, const char *target, | |
2118 | BlockDirtyBitmapMergeSourceList *bitmaps, | |
2119 | HBitmap **backup, Error **errp); | |
360d4e4e | 2120 | |
6fd2e407 VSO |
2121 | static void block_dirty_bitmap_merge_prepare(BlkActionState *common, |
2122 | Error **errp) | |
2123 | { | |
2124 | BlockDirtyBitmapMerge *action; | |
2125 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, | |
2126 | common, common); | |
6fd2e407 VSO |
2127 | |
2128 | if (action_check_completion_mode(common, errp) < 0) { | |
2129 | return; | |
2130 | } | |
2131 | ||
0e2b7f09 | 2132 | action = common->action->u.block_dirty_bitmap_merge.data; |
6fd2e407 | 2133 | |
360d4e4e JS |
2134 | state->bitmap = do_block_dirty_bitmap_merge(action->node, action->target, |
2135 | action->bitmaps, &state->backup, | |
2136 | errp); | |
6fd2e407 VSO |
2137 | } |
2138 | ||
c4e4b0fa JS |
2139 | static BdrvDirtyBitmap *do_block_dirty_bitmap_remove( |
2140 | const char *node, const char *name, bool release, | |
2141 | BlockDriverState **bitmap_bs, Error **errp); | |
2142 | ||
2143 | static void block_dirty_bitmap_remove_prepare(BlkActionState *common, | |
2144 | Error **errp) | |
2145 | { | |
2146 | BlockDirtyBitmap *action; | |
2147 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, | |
2148 | common, common); | |
2149 | ||
2150 | if (action_check_completion_mode(common, errp) < 0) { | |
2151 | return; | |
2152 | } | |
2153 | ||
2154 | action = common->action->u.block_dirty_bitmap_remove.data; | |
2155 | ||
2156 | state->bitmap = do_block_dirty_bitmap_remove(action->node, action->name, | |
2157 | false, &state->bs, errp); | |
2158 | if (state->bitmap) { | |
2159 | bdrv_dirty_bitmap_skip_store(state->bitmap, true); | |
2160 | bdrv_dirty_bitmap_set_busy(state->bitmap, true); | |
2161 | } | |
2162 | } | |
2163 | ||
2164 | static void block_dirty_bitmap_remove_abort(BlkActionState *common) | |
2165 | { | |
2166 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, | |
2167 | common, common); | |
2168 | ||
2169 | if (state->bitmap) { | |
2170 | bdrv_dirty_bitmap_skip_store(state->bitmap, false); | |
2171 | bdrv_dirty_bitmap_set_busy(state->bitmap, false); | |
2172 | } | |
2173 | } | |
2174 | ||
2175 | static void block_dirty_bitmap_remove_commit(BlkActionState *common) | |
2176 | { | |
2177 | BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState, | |
2178 | common, common); | |
2179 | ||
2180 | bdrv_dirty_bitmap_set_busy(state->bitmap, false); | |
2181 | bdrv_release_dirty_bitmap(state->bs, state->bitmap); | |
2182 | } | |
2183 | ||
50f43f0f | 2184 | static void abort_prepare(BlkActionState *common, Error **errp) |
78b18b78 SH |
2185 | { |
2186 | error_setg(errp, "Transaction aborted using Abort action"); | |
2187 | } | |
2188 | ||
50f43f0f | 2189 | static void abort_commit(BlkActionState *common) |
78b18b78 | 2190 | { |
dfc6f865 | 2191 | g_assert_not_reached(); /* this action never succeeds */ |
78b18b78 SH |
2192 | } |
2193 | ||
50f43f0f | 2194 | static const BlkActionOps actions[] = { |
43de7e2d AG |
2195 | [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT] = { |
2196 | .instance_size = sizeof(ExternalSnapshotState), | |
2197 | .prepare = external_snapshot_prepare, | |
2198 | .commit = external_snapshot_commit, | |
2199 | .abort = external_snapshot_abort, | |
4ad6f3db | 2200 | .clean = external_snapshot_clean, |
43de7e2d | 2201 | }, |
c8a83e85 | 2202 | [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC] = { |
ba5d6ab6 | 2203 | .instance_size = sizeof(ExternalSnapshotState), |
ba0c86a3 WX |
2204 | .prepare = external_snapshot_prepare, |
2205 | .commit = external_snapshot_commit, | |
2206 | .abort = external_snapshot_abort, | |
da763e83 | 2207 | .clean = external_snapshot_clean, |
ba0c86a3 | 2208 | }, |
3037f364 SH |
2209 | [TRANSACTION_ACTION_KIND_DRIVE_BACKUP] = { |
2210 | .instance_size = sizeof(DriveBackupState), | |
2211 | .prepare = drive_backup_prepare, | |
111049a4 | 2212 | .commit = drive_backup_commit, |
3037f364 | 2213 | .abort = drive_backup_abort, |
5d6e96ef | 2214 | .clean = drive_backup_clean, |
3037f364 | 2215 | }, |
bd8baecd FZ |
2216 | [TRANSACTION_ACTION_KIND_BLOCKDEV_BACKUP] = { |
2217 | .instance_size = sizeof(BlockdevBackupState), | |
2218 | .prepare = blockdev_backup_prepare, | |
111049a4 | 2219 | .commit = blockdev_backup_commit, |
bd8baecd FZ |
2220 | .abort = blockdev_backup_abort, |
2221 | .clean = blockdev_backup_clean, | |
2222 | }, | |
78b18b78 | 2223 | [TRANSACTION_ACTION_KIND_ABORT] = { |
50f43f0f | 2224 | .instance_size = sizeof(BlkActionState), |
78b18b78 SH |
2225 | .prepare = abort_prepare, |
2226 | .commit = abort_commit, | |
2227 | }, | |
bbe86010 WX |
2228 | [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC] = { |
2229 | .instance_size = sizeof(InternalSnapshotState), | |
2230 | .prepare = internal_snapshot_prepare, | |
2231 | .abort = internal_snapshot_abort, | |
5d6e96ef | 2232 | .clean = internal_snapshot_clean, |
bbe86010 | 2233 | }, |
df9a681d FZ |
2234 | [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_ADD] = { |
2235 | .instance_size = sizeof(BlockDirtyBitmapState), | |
2236 | .prepare = block_dirty_bitmap_add_prepare, | |
2237 | .abort = block_dirty_bitmap_add_abort, | |
2238 | }, | |
2239 | [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_CLEAR] = { | |
2240 | .instance_size = sizeof(BlockDirtyBitmapState), | |
2241 | .prepare = block_dirty_bitmap_clear_prepare, | |
5c4cf8b2 VSO |
2242 | .commit = block_dirty_bitmap_free_backup, |
2243 | .abort = block_dirty_bitmap_restore, | |
c6490447 | 2244 | }, |
0e2b7f09 | 2245 | [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_ENABLE] = { |
c6490447 VSO |
2246 | .instance_size = sizeof(BlockDirtyBitmapState), |
2247 | .prepare = block_dirty_bitmap_enable_prepare, | |
2248 | .abort = block_dirty_bitmap_enable_abort, | |
2249 | }, | |
0e2b7f09 | 2250 | [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_DISABLE] = { |
c6490447 VSO |
2251 | .instance_size = sizeof(BlockDirtyBitmapState), |
2252 | .prepare = block_dirty_bitmap_disable_prepare, | |
2253 | .abort = block_dirty_bitmap_disable_abort, | |
66da04dd | 2254 | }, |
0e2b7f09 | 2255 | [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_MERGE] = { |
6fd2e407 VSO |
2256 | .instance_size = sizeof(BlockDirtyBitmapState), |
2257 | .prepare = block_dirty_bitmap_merge_prepare, | |
2258 | .commit = block_dirty_bitmap_free_backup, | |
2259 | .abort = block_dirty_bitmap_restore, | |
2260 | }, | |
c4e4b0fa JS |
2261 | [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_REMOVE] = { |
2262 | .instance_size = sizeof(BlockDirtyBitmapState), | |
2263 | .prepare = block_dirty_bitmap_remove_prepare, | |
2264 | .commit = block_dirty_bitmap_remove_commit, | |
2265 | .abort = block_dirty_bitmap_remove_abort, | |
2266 | }, | |
66da04dd JS |
2267 | /* Where are transactions for MIRROR, COMMIT and STREAM? |
2268 | * Although these blockjobs use transaction callbacks like the backup job, | |
2269 | * these jobs do not necessarily adhere to transaction semantics. | |
2270 | * These jobs may not fully undo all of their actions on abort, nor do they | |
2271 | * necessarily work in transactions with more than one job in them. | |
2272 | */ | |
ba0c86a3 WX |
2273 | }; |
2274 | ||
94d16a64 JS |
2275 | /** |
2276 | * Allocate a TransactionProperties structure if necessary, and fill | |
2277 | * that structure with desired defaults if they are unset. | |
2278 | */ | |
2279 | static TransactionProperties *get_transaction_properties( | |
2280 | TransactionProperties *props) | |
2281 | { | |
2282 | if (!props) { | |
2283 | props = g_new0(TransactionProperties, 1); | |
2284 | } | |
2285 | ||
2286 | if (!props->has_completion_mode) { | |
2287 | props->has_completion_mode = true; | |
2288 | props->completion_mode = ACTION_COMPLETION_MODE_INDIVIDUAL; | |
2289 | } | |
2290 | ||
2291 | return props; | |
2292 | } | |
2293 | ||
8802d1fd | 2294 | /* |
b756b9ce SH |
2295 | * 'Atomic' group operations. The operations are performed as a set, and if |
2296 | * any fail then we roll back all operations in the group. | |
8802d1fd | 2297 | */ |
94d16a64 JS |
2298 | void qmp_transaction(TransactionActionList *dev_list, |
2299 | bool has_props, | |
2300 | struct TransactionProperties *props, | |
2301 | Error **errp) | |
8802d1fd | 2302 | { |
c8a83e85 | 2303 | TransactionActionList *dev_entry = dev_list; |
62c9e416 | 2304 | JobTxn *block_job_txn = NULL; |
50f43f0f | 2305 | BlkActionState *state, *next; |
43e17041 | 2306 | Error *local_err = NULL; |
8802d1fd | 2307 | |
f4de0f8c JS |
2308 | QTAILQ_HEAD(, BlkActionState) snap_bdrv_states; |
2309 | QTAILQ_INIT(&snap_bdrv_states); | |
8802d1fd | 2310 | |
94d16a64 | 2311 | /* Does this transaction get canceled as a group on failure? |
62c9e416 | 2312 | * If not, we don't really need to make a JobTxn. |
94d16a64 JS |
2313 | */ |
2314 | props = get_transaction_properties(props); | |
2315 | if (props->completion_mode != ACTION_COMPLETION_MODE_INDIVIDUAL) { | |
7eaa8fb5 | 2316 | block_job_txn = job_txn_new(); |
94d16a64 JS |
2317 | } |
2318 | ||
b756b9ce | 2319 | /* drain all i/o before any operations */ |
8802d1fd JC |
2320 | bdrv_drain_all(); |
2321 | ||
b756b9ce | 2322 | /* We don't do anything in this loop that commits us to the operations */ |
8802d1fd | 2323 | while (NULL != dev_entry) { |
c8a83e85 | 2324 | TransactionAction *dev_info = NULL; |
50f43f0f | 2325 | const BlkActionOps *ops; |
52e7c241 | 2326 | |
8802d1fd JC |
2327 | dev_info = dev_entry->value; |
2328 | dev_entry = dev_entry->next; | |
2329 | ||
6a8f9661 | 2330 | assert(dev_info->type < ARRAY_SIZE(actions)); |
ba0c86a3 | 2331 | |
6a8f9661 | 2332 | ops = &actions[dev_info->type]; |
aa3fe714 HR |
2333 | assert(ops->instance_size > 0); |
2334 | ||
ba5d6ab6 SH |
2335 | state = g_malloc0(ops->instance_size); |
2336 | state->ops = ops; | |
2337 | state->action = dev_info; | |
94d16a64 JS |
2338 | state->block_job_txn = block_job_txn; |
2339 | state->txn_props = props; | |
f4de0f8c | 2340 | QTAILQ_INSERT_TAIL(&snap_bdrv_states, state, entry); |
8802d1fd | 2341 | |
ba5d6ab6 | 2342 | state->ops->prepare(state, &local_err); |
84d18f06 | 2343 | if (local_err) { |
ba0c86a3 WX |
2344 | error_propagate(errp, local_err); |
2345 | goto delete_and_fail; | |
8802d1fd | 2346 | } |
8802d1fd JC |
2347 | } |
2348 | ||
f4de0f8c | 2349 | QTAILQ_FOREACH(state, &snap_bdrv_states, entry) { |
f9ea81e8 SH |
2350 | if (state->ops->commit) { |
2351 | state->ops->commit(state); | |
2352 | } | |
8802d1fd JC |
2353 | } |
2354 | ||
2355 | /* success */ | |
2356 | goto exit; | |
2357 | ||
2358 | delete_and_fail: | |
b756b9ce | 2359 | /* failure, and it is all-or-none; roll back all operations */ |
f4de0f8c | 2360 | QTAILQ_FOREACH_REVERSE(state, &snap_bdrv_states, entry) { |
ba5d6ab6 SH |
2361 | if (state->ops->abort) { |
2362 | state->ops->abort(state); | |
ba0c86a3 | 2363 | } |
8802d1fd JC |
2364 | } |
2365 | exit: | |
f4de0f8c | 2366 | QTAILQ_FOREACH_SAFE(state, &snap_bdrv_states, entry, next) { |
ba5d6ab6 SH |
2367 | if (state->ops->clean) { |
2368 | state->ops->clean(state); | |
ba0c86a3 | 2369 | } |
ba5d6ab6 | 2370 | g_free(state); |
8802d1fd | 2371 | } |
94d16a64 JS |
2372 | if (!has_props) { |
2373 | qapi_free_TransactionProperties(props); | |
2374 | } | |
7eaa8fb5 | 2375 | job_txn_unref(block_job_txn); |
8802d1fd JC |
2376 | } |
2377 | ||
fbe2d816 KW |
2378 | void qmp_eject(bool has_device, const char *device, |
2379 | bool has_id, const char *id, | |
2380 | bool has_force, bool force, Error **errp) | |
666daa68 | 2381 | { |
38f54bd1 | 2382 | Error *local_err = NULL; |
3a3086b7 JS |
2383 | int rc; |
2384 | ||
2385 | if (!has_force) { | |
2386 | force = false; | |
2387 | } | |
666daa68 | 2388 | |
fbe2d816 KW |
2389 | rc = do_open_tray(has_device ? device : NULL, |
2390 | has_id ? id : NULL, | |
2391 | force, &local_err); | |
bf18bee5 | 2392 | if (rc && rc != -ENOSYS) { |
38f54bd1 | 2393 | error_propagate(errp, local_err); |
c245b6a3 | 2394 | return; |
92d48558 | 2395 | } |
bf18bee5 | 2396 | error_free(local_err); |
3a3086b7 | 2397 | |
82fcf66e | 2398 | blockdev_remove_medium(has_device, device, has_id, id, errp); |
666daa68 MA |
2399 | } |
2400 | ||
12d3ba82 BC |
2401 | void qmp_block_passwd(bool has_device, const char *device, |
2402 | bool has_node_name, const char *node_name, | |
2403 | const char *password, Error **errp) | |
666daa68 | 2404 | { |
c01c214b DB |
2405 | error_setg(errp, |
2406 | "Setting block passwords directly is no longer supported"); | |
666daa68 MA |
2407 | } |
2408 | ||
bf18bee5 CL |
2409 | /* |
2410 | * Attempt to open the tray of @device. | |
2411 | * If @force, ignore its tray lock. | |
2412 | * Else, if the tray is locked, don't open it, but ask the guest to open it. | |
2413 | * On error, store an error through @errp and return -errno. | |
2414 | * If @device does not exist, return -ENODEV. | |
2415 | * If it has no removable media, return -ENOTSUP. | |
2416 | * If it has no tray, return -ENOSYS. | |
2417 | * If the guest was asked to open the tray, return -EINPROGRESS. | |
2418 | * Else, return 0. | |
3a3086b7 | 2419 | */ |
b33945cf KW |
2420 | static int do_open_tray(const char *blk_name, const char *qdev_id, |
2421 | bool force, Error **errp) | |
7d8a9f71 HR |
2422 | { |
2423 | BlockBackend *blk; | |
b33945cf | 2424 | const char *device = qdev_id ?: blk_name; |
7d8a9f71 HR |
2425 | bool locked; |
2426 | ||
b33945cf | 2427 | blk = qmp_get_blk(blk_name, qdev_id, errp); |
7d8a9f71 | 2428 | if (!blk) { |
3a3086b7 | 2429 | return -ENODEV; |
7d8a9f71 HR |
2430 | } |
2431 | ||
2432 | if (!blk_dev_has_removable_media(blk)) { | |
2433 | error_setg(errp, "Device '%s' is not removable", device); | |
3a3086b7 | 2434 | return -ENOTSUP; |
7d8a9f71 HR |
2435 | } |
2436 | ||
12c7ec87 | 2437 | if (!blk_dev_has_tray(blk)) { |
bf18bee5 CL |
2438 | error_setg(errp, "Device '%s' does not have a tray", device); |
2439 | return -ENOSYS; | |
12c7ec87 HR |
2440 | } |
2441 | ||
7d8a9f71 | 2442 | if (blk_dev_is_tray_open(blk)) { |
3a3086b7 | 2443 | return 0; |
7d8a9f71 HR |
2444 | } |
2445 | ||
2446 | locked = blk_dev_is_medium_locked(blk); | |
2447 | if (locked) { | |
2448 | blk_dev_eject_request(blk, force); | |
2449 | } | |
2450 | ||
2451 | if (!locked || force) { | |
39829a01 | 2452 | blk_dev_change_media_cb(blk, false, &error_abort); |
7d8a9f71 | 2453 | } |
3a3086b7 JS |
2454 | |
2455 | if (locked && !force) { | |
bf18bee5 CL |
2456 | error_setg(errp, "Device '%s' is locked and force was not specified, " |
2457 | "wait for tray to open and try again", device); | |
2458 | return -EINPROGRESS; | |
3a3086b7 JS |
2459 | } |
2460 | ||
2461 | return 0; | |
2462 | } | |
2463 | ||
b33945cf KW |
2464 | void qmp_blockdev_open_tray(bool has_device, const char *device, |
2465 | bool has_id, const char *id, | |
2466 | bool has_force, bool force, | |
3a3086b7 JS |
2467 | Error **errp) |
2468 | { | |
bf18bee5 CL |
2469 | Error *local_err = NULL; |
2470 | int rc; | |
2471 | ||
3a3086b7 JS |
2472 | if (!has_force) { |
2473 | force = false; | |
2474 | } | |
b33945cf KW |
2475 | rc = do_open_tray(has_device ? device : NULL, |
2476 | has_id ? id : NULL, | |
2477 | force, &local_err); | |
bf18bee5 CL |
2478 | if (rc && rc != -ENOSYS && rc != -EINPROGRESS) { |
2479 | error_propagate(errp, local_err); | |
2480 | return; | |
2481 | } | |
2482 | error_free(local_err); | |
7d8a9f71 HR |
2483 | } |
2484 | ||
b33945cf KW |
2485 | void qmp_blockdev_close_tray(bool has_device, const char *device, |
2486 | bool has_id, const char *id, | |
2487 | Error **errp) | |
abaaf59d HR |
2488 | { |
2489 | BlockBackend *blk; | |
39829a01 | 2490 | Error *local_err = NULL; |
abaaf59d | 2491 | |
b33945cf KW |
2492 | device = has_device ? device : NULL; |
2493 | id = has_id ? id : NULL; | |
2494 | ||
2495 | blk = qmp_get_blk(device, id, errp); | |
abaaf59d | 2496 | if (!blk) { |
abaaf59d HR |
2497 | return; |
2498 | } | |
2499 | ||
2500 | if (!blk_dev_has_removable_media(blk)) { | |
b33945cf | 2501 | error_setg(errp, "Device '%s' is not removable", device ?: id); |
abaaf59d HR |
2502 | return; |
2503 | } | |
2504 | ||
12c7ec87 HR |
2505 | if (!blk_dev_has_tray(blk)) { |
2506 | /* Ignore this command on tray-less devices */ | |
2507 | return; | |
2508 | } | |
2509 | ||
abaaf59d HR |
2510 | if (!blk_dev_is_tray_open(blk)) { |
2511 | return; | |
2512 | } | |
2513 | ||
39829a01 KW |
2514 | blk_dev_change_media_cb(blk, true, &local_err); |
2515 | if (local_err) { | |
2516 | error_propagate(errp, local_err); | |
2517 | return; | |
2518 | } | |
abaaf59d HR |
2519 | } |
2520 | ||
82fcf66e HR |
2521 | static void blockdev_remove_medium(bool has_device, const char *device, |
2522 | bool has_id, const char *id, Error **errp) | |
2814f672 HR |
2523 | { |
2524 | BlockBackend *blk; | |
2525 | BlockDriverState *bs; | |
2526 | AioContext *aio_context; | |
00949bab | 2527 | bool has_attached_device; |
2814f672 | 2528 | |
00949bab KW |
2529 | device = has_device ? device : NULL; |
2530 | id = has_id ? id : NULL; | |
2531 | ||
2532 | blk = qmp_get_blk(device, id, errp); | |
2814f672 | 2533 | if (!blk) { |
2814f672 HR |
2534 | return; |
2535 | } | |
2536 | ||
2537 | /* For BBs without a device, we can exchange the BDS tree at will */ | |
00949bab | 2538 | has_attached_device = blk_get_attached_dev(blk); |
2814f672 | 2539 | |
00949bab KW |
2540 | if (has_attached_device && !blk_dev_has_removable_media(blk)) { |
2541 | error_setg(errp, "Device '%s' is not removable", device ?: id); | |
2814f672 HR |
2542 | return; |
2543 | } | |
2544 | ||
00949bab KW |
2545 | if (has_attached_device && blk_dev_has_tray(blk) && |
2546 | !blk_dev_is_tray_open(blk)) | |
2547 | { | |
2548 | error_setg(errp, "Tray of device '%s' is not open", device ?: id); | |
2814f672 HR |
2549 | return; |
2550 | } | |
2551 | ||
2552 | bs = blk_bs(blk); | |
2553 | if (!bs) { | |
2554 | return; | |
2555 | } | |
2556 | ||
2557 | aio_context = bdrv_get_aio_context(bs); | |
2558 | aio_context_acquire(aio_context); | |
2559 | ||
2560 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_EJECT, errp)) { | |
2561 | goto out; | |
2562 | } | |
2563 | ||
2814f672 HR |
2564 | blk_remove_bs(blk); |
2565 | ||
12c7ec87 HR |
2566 | if (!blk_dev_has_tray(blk)) { |
2567 | /* For tray-less devices, blockdev-open-tray is a no-op (or may not be | |
2568 | * called at all); therefore, the medium needs to be ejected here. | |
2569 | * Do it after blk_remove_bs() so blk_is_inserted(blk) returns the @load | |
2570 | * value passed here (i.e. false). */ | |
39829a01 | 2571 | blk_dev_change_media_cb(blk, false, &error_abort); |
12c7ec87 HR |
2572 | } |
2573 | ||
2814f672 HR |
2574 | out: |
2575 | aio_context_release(aio_context); | |
2576 | } | |
2577 | ||
34ce1111 | 2578 | void qmp_blockdev_remove_medium(const char *id, Error **errp) |
82fcf66e HR |
2579 | { |
2580 | blockdev_remove_medium(false, NULL, true, id, errp); | |
2581 | } | |
2582 | ||
716df217 | 2583 | static void qmp_blockdev_insert_anon_medium(BlockBackend *blk, |
d1299882 HR |
2584 | BlockDriverState *bs, Error **errp) |
2585 | { | |
39829a01 | 2586 | Error *local_err = NULL; |
d1299882 | 2587 | bool has_device; |
d7086422 | 2588 | int ret; |
d1299882 | 2589 | |
d1299882 HR |
2590 | /* For BBs without a device, we can exchange the BDS tree at will */ |
2591 | has_device = blk_get_attached_dev(blk); | |
2592 | ||
2593 | if (has_device && !blk_dev_has_removable_media(blk)) { | |
716df217 | 2594 | error_setg(errp, "Device is not removable"); |
d1299882 HR |
2595 | return; |
2596 | } | |
2597 | ||
12c7ec87 | 2598 | if (has_device && blk_dev_has_tray(blk) && !blk_dev_is_tray_open(blk)) { |
716df217 | 2599 | error_setg(errp, "Tray of the device is not open"); |
d1299882 HR |
2600 | return; |
2601 | } | |
2602 | ||
2603 | if (blk_bs(blk)) { | |
716df217 | 2604 | error_setg(errp, "There already is a medium in the device"); |
d1299882 HR |
2605 | return; |
2606 | } | |
2607 | ||
d7086422 KW |
2608 | ret = blk_insert_bs(blk, bs, errp); |
2609 | if (ret < 0) { | |
2610 | return; | |
2611 | } | |
d1299882 | 2612 | |
12c7ec87 HR |
2613 | if (!blk_dev_has_tray(blk)) { |
2614 | /* For tray-less devices, blockdev-close-tray is a no-op (or may not be | |
2615 | * called at all); therefore, the medium needs to be pushed into the | |
2616 | * slot here. | |
2617 | * Do it after blk_insert_bs() so blk_is_inserted(blk) returns the @load | |
2618 | * value passed here (i.e. true). */ | |
39829a01 KW |
2619 | blk_dev_change_media_cb(blk, true, &local_err); |
2620 | if (local_err) { | |
2621 | error_propagate(errp, local_err); | |
2622 | blk_remove_bs(blk); | |
2623 | return; | |
2624 | } | |
12c7ec87 | 2625 | } |
d1299882 HR |
2626 | } |
2627 | ||
82fcf66e HR |
2628 | static void blockdev_insert_medium(bool has_device, const char *device, |
2629 | bool has_id, const char *id, | |
2630 | const char *node_name, Error **errp) | |
d1299882 | 2631 | { |
716df217 | 2632 | BlockBackend *blk; |
d1299882 HR |
2633 | BlockDriverState *bs; |
2634 | ||
716df217 KW |
2635 | blk = qmp_get_blk(has_device ? device : NULL, |
2636 | has_id ? id : NULL, | |
2637 | errp); | |
2638 | if (!blk) { | |
2639 | return; | |
2640 | } | |
2641 | ||
d1299882 HR |
2642 | bs = bdrv_find_node(node_name); |
2643 | if (!bs) { | |
2644 | error_setg(errp, "Node '%s' not found", node_name); | |
2645 | return; | |
2646 | } | |
2647 | ||
1f0c461b | 2648 | if (bdrv_has_blk(bs)) { |
e467da7b | 2649 | error_setg(errp, "Node '%s' is already in use", node_name); |
d1299882 HR |
2650 | return; |
2651 | } | |
2652 | ||
716df217 | 2653 | qmp_blockdev_insert_anon_medium(blk, bs, errp); |
d1299882 HR |
2654 | } |
2655 | ||
34ce1111 HR |
2656 | void qmp_blockdev_insert_medium(const char *id, const char *node_name, |
2657 | Error **errp) | |
82fcf66e HR |
2658 | { |
2659 | blockdev_insert_medium(false, NULL, true, id, node_name, errp); | |
2660 | } | |
2661 | ||
70e2cb3b KW |
2662 | void qmp_blockdev_change_medium(bool has_device, const char *device, |
2663 | bool has_id, const char *id, | |
2664 | const char *filename, | |
24fb4133 | 2665 | bool has_format, const char *format, |
39ff43d9 HR |
2666 | bool has_read_only, |
2667 | BlockdevChangeReadOnlyMode read_only, | |
24fb4133 | 2668 | Error **errp) |
de2c6c05 HR |
2669 | { |
2670 | BlockBackend *blk; | |
2671 | BlockDriverState *medium_bs = NULL; | |
5b363937 | 2672 | int bdrv_flags; |
b85114f8 | 2673 | bool detect_zeroes; |
38a53d50 | 2674 | int rc; |
de2c6c05 HR |
2675 | QDict *options = NULL; |
2676 | Error *err = NULL; | |
2677 | ||
70e2cb3b KW |
2678 | blk = qmp_get_blk(has_device ? device : NULL, |
2679 | has_id ? id : NULL, | |
2680 | errp); | |
de2c6c05 | 2681 | if (!blk) { |
de2c6c05 HR |
2682 | goto fail; |
2683 | } | |
2684 | ||
2685 | if (blk_bs(blk)) { | |
2686 | blk_update_root_state(blk); | |
2687 | } | |
2688 | ||
2689 | bdrv_flags = blk_get_open_flags_from_root_state(blk); | |
156abc2f | 2690 | bdrv_flags &= ~(BDRV_O_TEMPORARY | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | |
e35bdc12 | 2691 | BDRV_O_PROTOCOL | BDRV_O_AUTO_RDONLY); |
de2c6c05 | 2692 | |
39ff43d9 HR |
2693 | if (!has_read_only) { |
2694 | read_only = BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN; | |
2695 | } | |
2696 | ||
2697 | switch (read_only) { | |
2698 | case BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN: | |
2699 | break; | |
2700 | ||
2701 | case BLOCKDEV_CHANGE_READ_ONLY_MODE_READ_ONLY: | |
2702 | bdrv_flags &= ~BDRV_O_RDWR; | |
2703 | break; | |
2704 | ||
2705 | case BLOCKDEV_CHANGE_READ_ONLY_MODE_READ_WRITE: | |
2706 | bdrv_flags |= BDRV_O_RDWR; | |
2707 | break; | |
2708 | ||
2709 | default: | |
2710 | abort(); | |
2711 | } | |
2712 | ||
b85114f8 KW |
2713 | options = qdict_new(); |
2714 | detect_zeroes = blk_get_detect_zeroes_from_root_state(blk); | |
46f5ac20 | 2715 | qdict_put_str(options, "detect-zeroes", detect_zeroes ? "on" : "off"); |
b85114f8 | 2716 | |
24fb4133 | 2717 | if (has_format) { |
46f5ac20 | 2718 | qdict_put_str(options, "driver", format); |
de2c6c05 HR |
2719 | } |
2720 | ||
5b363937 HR |
2721 | medium_bs = bdrv_open(filename, NULL, options, bdrv_flags, errp); |
2722 | if (!medium_bs) { | |
de2c6c05 HR |
2723 | goto fail; |
2724 | } | |
2725 | ||
70e2cb3b KW |
2726 | rc = do_open_tray(has_device ? device : NULL, |
2727 | has_id ? id : NULL, | |
2728 | false, &err); | |
38a53d50 | 2729 | if (rc && rc != -ENOSYS) { |
de2c6c05 HR |
2730 | error_propagate(errp, err); |
2731 | goto fail; | |
2732 | } | |
38a53d50 CL |
2733 | error_free(err); |
2734 | err = NULL; | |
de2c6c05 | 2735 | |
82fcf66e | 2736 | blockdev_remove_medium(has_device, device, has_id, id, &err); |
de2c6c05 HR |
2737 | if (err) { |
2738 | error_propagate(errp, err); | |
2739 | goto fail; | |
2740 | } | |
2741 | ||
716df217 | 2742 | qmp_blockdev_insert_anon_medium(blk, medium_bs, &err); |
de2c6c05 HR |
2743 | if (err) { |
2744 | error_propagate(errp, err); | |
2745 | goto fail; | |
2746 | } | |
2747 | ||
70e2cb3b | 2748 | qmp_blockdev_close_tray(has_device, device, has_id, id, errp); |
de2c6c05 HR |
2749 | |
2750 | fail: | |
2751 | /* If the medium has been inserted, the device has its own reference, so | |
2752 | * ours must be relinquished; and if it has not been inserted successfully, | |
2753 | * the reference must be relinquished anyway */ | |
2754 | bdrv_unref(medium_bs); | |
2755 | } | |
2756 | ||
727f005e | 2757 | /* throttling disk I/O limits */ |
4dc9397b | 2758 | void qmp_block_set_io_throttle(BlockIOThrottle *arg, Error **errp) |
727f005e | 2759 | { |
cc0681c4 | 2760 | ThrottleConfig cfg; |
727f005e | 2761 | BlockDriverState *bs; |
a0e8544c | 2762 | BlockBackend *blk; |
b15446fd | 2763 | AioContext *aio_context; |
727f005e | 2764 | |
7a9877a0 KW |
2765 | blk = qmp_get_blk(arg->has_device ? arg->device : NULL, |
2766 | arg->has_id ? arg->id : NULL, | |
2767 | errp); | |
a0e8544c | 2768 | if (!blk) { |
80047da5 | 2769 | return; |
727f005e | 2770 | } |
5433c24f HR |
2771 | |
2772 | aio_context = blk_get_aio_context(blk); | |
2773 | aio_context_acquire(aio_context); | |
2774 | ||
a0e8544c | 2775 | bs = blk_bs(blk); |
5433c24f | 2776 | if (!bs) { |
7a9877a0 | 2777 | error_setg(errp, "Device has no medium"); |
5433c24f HR |
2778 | goto out; |
2779 | } | |
727f005e | 2780 | |
1588ab5d | 2781 | throttle_config_init(&cfg); |
4dc9397b EB |
2782 | cfg.buckets[THROTTLE_BPS_TOTAL].avg = arg->bps; |
2783 | cfg.buckets[THROTTLE_BPS_READ].avg = arg->bps_rd; | |
2784 | cfg.buckets[THROTTLE_BPS_WRITE].avg = arg->bps_wr; | |
cc0681c4 | 2785 | |
4dc9397b EB |
2786 | cfg.buckets[THROTTLE_OPS_TOTAL].avg = arg->iops; |
2787 | cfg.buckets[THROTTLE_OPS_READ].avg = arg->iops_rd; | |
2788 | cfg.buckets[THROTTLE_OPS_WRITE].avg = arg->iops_wr; | |
cc0681c4 | 2789 | |
4dc9397b EB |
2790 | if (arg->has_bps_max) { |
2791 | cfg.buckets[THROTTLE_BPS_TOTAL].max = arg->bps_max; | |
3e9fab69 | 2792 | } |
4dc9397b EB |
2793 | if (arg->has_bps_rd_max) { |
2794 | cfg.buckets[THROTTLE_BPS_READ].max = arg->bps_rd_max; | |
3e9fab69 | 2795 | } |
4dc9397b EB |
2796 | if (arg->has_bps_wr_max) { |
2797 | cfg.buckets[THROTTLE_BPS_WRITE].max = arg->bps_wr_max; | |
3e9fab69 | 2798 | } |
4dc9397b EB |
2799 | if (arg->has_iops_max) { |
2800 | cfg.buckets[THROTTLE_OPS_TOTAL].max = arg->iops_max; | |
3e9fab69 | 2801 | } |
4dc9397b EB |
2802 | if (arg->has_iops_rd_max) { |
2803 | cfg.buckets[THROTTLE_OPS_READ].max = arg->iops_rd_max; | |
3e9fab69 | 2804 | } |
4dc9397b EB |
2805 | if (arg->has_iops_wr_max) { |
2806 | cfg.buckets[THROTTLE_OPS_WRITE].max = arg->iops_wr_max; | |
3e9fab69 | 2807 | } |
727f005e | 2808 | |
4dc9397b EB |
2809 | if (arg->has_bps_max_length) { |
2810 | cfg.buckets[THROTTLE_BPS_TOTAL].burst_length = arg->bps_max_length; | |
dce13204 | 2811 | } |
4dc9397b EB |
2812 | if (arg->has_bps_rd_max_length) { |
2813 | cfg.buckets[THROTTLE_BPS_READ].burst_length = arg->bps_rd_max_length; | |
dce13204 | 2814 | } |
4dc9397b EB |
2815 | if (arg->has_bps_wr_max_length) { |
2816 | cfg.buckets[THROTTLE_BPS_WRITE].burst_length = arg->bps_wr_max_length; | |
dce13204 | 2817 | } |
4dc9397b EB |
2818 | if (arg->has_iops_max_length) { |
2819 | cfg.buckets[THROTTLE_OPS_TOTAL].burst_length = arg->iops_max_length; | |
dce13204 | 2820 | } |
4dc9397b EB |
2821 | if (arg->has_iops_rd_max_length) { |
2822 | cfg.buckets[THROTTLE_OPS_READ].burst_length = arg->iops_rd_max_length; | |
dce13204 | 2823 | } |
4dc9397b EB |
2824 | if (arg->has_iops_wr_max_length) { |
2825 | cfg.buckets[THROTTLE_OPS_WRITE].burst_length = arg->iops_wr_max_length; | |
dce13204 AG |
2826 | } |
2827 | ||
4dc9397b EB |
2828 | if (arg->has_iops_size) { |
2829 | cfg.op_size = arg->iops_size; | |
2024c1df | 2830 | } |
cc0681c4 | 2831 | |
d5851089 | 2832 | if (!throttle_is_valid(&cfg, errp)) { |
5433c24f | 2833 | goto out; |
727f005e ZYW |
2834 | } |
2835 | ||
76f4afb4 AG |
2836 | if (throttle_enabled(&cfg)) { |
2837 | /* Enable I/O limits if they're not enabled yet, otherwise | |
2838 | * just update the throttling group. */ | |
022cdc9f | 2839 | if (!blk_get_public(blk)->throttle_group_member.throttle_state) { |
4dc9397b | 2840 | blk_io_limits_enable(blk, |
7a9877a0 KW |
2841 | arg->has_group ? arg->group : |
2842 | arg->has_device ? arg->device : | |
2843 | arg->id); | |
4dc9397b EB |
2844 | } else if (arg->has_group) { |
2845 | blk_io_limits_update_group(blk, arg->group); | |
76f4afb4 AG |
2846 | } |
2847 | /* Set the new throttling configuration */ | |
97148076 | 2848 | blk_set_io_limits(blk, &cfg); |
022cdc9f | 2849 | } else if (blk_get_public(blk)->throttle_group_member.throttle_state) { |
76f4afb4 | 2850 | /* If all throttling settings are set to 0, disable I/O limits */ |
97148076 | 2851 | blk_io_limits_disable(blk); |
727f005e | 2852 | } |
b15446fd | 2853 | |
5433c24f | 2854 | out: |
b15446fd | 2855 | aio_context_release(aio_context); |
727f005e ZYW |
2856 | } |
2857 | ||
341ebc2f JS |
2858 | void qmp_block_dirty_bitmap_add(const char *node, const char *name, |
2859 | bool has_granularity, uint32_t granularity, | |
fd5ae4cc | 2860 | bool has_persistent, bool persistent, |
eb738bb5 | 2861 | bool has_autoload, bool autoload, |
a6e2ca5f | 2862 | bool has_disabled, bool disabled, |
341ebc2f JS |
2863 | Error **errp) |
2864 | { | |
341ebc2f | 2865 | BlockDriverState *bs; |
fd5ae4cc | 2866 | BdrvDirtyBitmap *bitmap; |
341ebc2f JS |
2867 | |
2868 | if (!name || name[0] == '\0') { | |
2869 | error_setg(errp, "Bitmap name cannot be empty"); | |
2870 | return; | |
2871 | } | |
2872 | ||
2873 | bs = bdrv_lookup_bs(node, node, errp); | |
2874 | if (!bs) { | |
2875 | return; | |
2876 | } | |
2877 | ||
341ebc2f JS |
2878 | if (has_granularity) { |
2879 | if (granularity < 512 || !is_power_of_2(granularity)) { | |
2880 | error_setg(errp, "Granularity must be power of 2 " | |
2881 | "and at least 512"); | |
2119882c | 2882 | return; |
341ebc2f JS |
2883 | } |
2884 | } else { | |
2885 | /* Default to cluster size, if available: */ | |
2886 | granularity = bdrv_get_default_bitmap_granularity(bs); | |
2887 | } | |
2888 | ||
fd5ae4cc VSO |
2889 | if (!has_persistent) { |
2890 | persistent = false; | |
2891 | } | |
eb738bb5 | 2892 | |
3e99da5e VSO |
2893 | if (has_autoload) { |
2894 | warn_report("Autoload option is deprecated and its value is ignored"); | |
eb738bb5 | 2895 | } |
fd5ae4cc | 2896 | |
a6e2ca5f VSO |
2897 | if (!has_disabled) { |
2898 | disabled = false; | |
2899 | } | |
2900 | ||
0a6c86d0 | 2901 | if (persistent) { |
2899f41e VSO |
2902 | AioContext *aio_context = bdrv_get_aio_context(bs); |
2903 | bool ok; | |
2904 | ||
0a6c86d0 | 2905 | aio_context_acquire(aio_context); |
2899f41e VSO |
2906 | ok = bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp); |
2907 | aio_context_release(aio_context); | |
2908 | if (!ok) { | |
2909 | return; | |
0a6c86d0 | 2910 | } |
fd5ae4cc VSO |
2911 | } |
2912 | ||
2913 | bitmap = bdrv_create_dirty_bitmap(bs, granularity, name, errp); | |
eb738bb5 | 2914 | if (bitmap == NULL) { |
2899f41e | 2915 | return; |
fd5ae4cc | 2916 | } |
eb738bb5 | 2917 | |
a6e2ca5f VSO |
2918 | if (disabled) { |
2919 | bdrv_disable_dirty_bitmap(bitmap); | |
2920 | } | |
2921 | ||
796a3798 | 2922 | bdrv_dirty_bitmap_set_persistence(bitmap, persistent); |
341ebc2f JS |
2923 | } |
2924 | ||
c4e4b0fa JS |
2925 | static BdrvDirtyBitmap *do_block_dirty_bitmap_remove( |
2926 | const char *node, const char *name, bool release, | |
2927 | BlockDriverState **bitmap_bs, Error **errp) | |
341ebc2f | 2928 | { |
341ebc2f JS |
2929 | BlockDriverState *bs; |
2930 | BdrvDirtyBitmap *bitmap; | |
2931 | ||
2119882c | 2932 | bitmap = block_dirty_bitmap_lookup(node, name, &bs, errp); |
341ebc2f | 2933 | if (!bitmap || !bs) { |
c4e4b0fa | 2934 | return NULL; |
341ebc2f JS |
2935 | } |
2936 | ||
c3edf13c JS |
2937 | if (bdrv_dirty_bitmap_check(bitmap, BDRV_BITMAP_BUSY | BDRV_BITMAP_RO, |
2938 | errp)) { | |
c4e4b0fa | 2939 | return NULL; |
9bd2b08f | 2940 | } |
5c36c1af | 2941 | |
796a3798 | 2942 | if (bdrv_dirty_bitmap_get_persistence(bitmap)) { |
2899f41e VSO |
2943 | AioContext *aio_context = bdrv_get_aio_context(bs); |
2944 | Error *local_err = NULL; | |
2945 | ||
0a6c86d0 | 2946 | aio_context_acquire(aio_context); |
5c36c1af | 2947 | bdrv_remove_persistent_dirty_bitmap(bs, name, &local_err); |
2899f41e | 2948 | aio_context_release(aio_context); |
c4e4b0fa | 2949 | |
5c36c1af VSO |
2950 | if (local_err != NULL) { |
2951 | error_propagate(errp, local_err); | |
c4e4b0fa | 2952 | return NULL; |
5c36c1af VSO |
2953 | } |
2954 | } | |
2955 | ||
c4e4b0fa JS |
2956 | if (release) { |
2957 | bdrv_release_dirty_bitmap(bs, bitmap); | |
2958 | } | |
2959 | ||
2960 | if (bitmap_bs) { | |
2961 | *bitmap_bs = bs; | |
2962 | } | |
2963 | ||
2964 | return release ? NULL : bitmap; | |
2965 | } | |
2966 | ||
2967 | void qmp_block_dirty_bitmap_remove(const char *node, const char *name, | |
2968 | Error **errp) | |
2969 | { | |
2970 | do_block_dirty_bitmap_remove(node, name, true, NULL, errp); | |
341ebc2f JS |
2971 | } |
2972 | ||
e74e6b78 JS |
2973 | /** |
2974 | * Completely clear a bitmap, for the purposes of synchronizing a bitmap | |
2975 | * immediately after a full backup operation. | |
2976 | */ | |
2977 | void qmp_block_dirty_bitmap_clear(const char *node, const char *name, | |
2978 | Error **errp) | |
2979 | { | |
e74e6b78 JS |
2980 | BdrvDirtyBitmap *bitmap; |
2981 | BlockDriverState *bs; | |
2982 | ||
2119882c | 2983 | bitmap = block_dirty_bitmap_lookup(node, name, &bs, errp); |
e74e6b78 JS |
2984 | if (!bitmap || !bs) { |
2985 | return; | |
2986 | } | |
2987 | ||
3ae96d66 | 2988 | if (bdrv_dirty_bitmap_check(bitmap, BDRV_BITMAP_DEFAULT, errp)) { |
d6883bc9 | 2989 | return; |
e74e6b78 JS |
2990 | } |
2991 | ||
df9a681d | 2992 | bdrv_clear_dirty_bitmap(bitmap, NULL); |
e74e6b78 JS |
2993 | } |
2994 | ||
0e2b7f09 | 2995 | void qmp_block_dirty_bitmap_enable(const char *node, const char *name, |
5c5d2e50 VSO |
2996 | Error **errp) |
2997 | { | |
2998 | BlockDriverState *bs; | |
2999 | BdrvDirtyBitmap *bitmap; | |
3000 | ||
3001 | bitmap = block_dirty_bitmap_lookup(node, name, &bs, errp); | |
3002 | if (!bitmap) { | |
3003 | return; | |
3004 | } | |
3005 | ||
3ae96d66 | 3006 | if (bdrv_dirty_bitmap_check(bitmap, BDRV_BITMAP_ALLOW_RO, errp)) { |
5c5d2e50 VSO |
3007 | return; |
3008 | } | |
3009 | ||
3010 | bdrv_enable_dirty_bitmap(bitmap); | |
3011 | } | |
3012 | ||
0e2b7f09 | 3013 | void qmp_block_dirty_bitmap_disable(const char *node, const char *name, |
5c5d2e50 VSO |
3014 | Error **errp) |
3015 | { | |
3016 | BlockDriverState *bs; | |
3017 | BdrvDirtyBitmap *bitmap; | |
3018 | ||
3019 | bitmap = block_dirty_bitmap_lookup(node, name, &bs, errp); | |
3020 | if (!bitmap) { | |
3021 | return; | |
3022 | } | |
3023 | ||
3ae96d66 | 3024 | if (bdrv_dirty_bitmap_check(bitmap, BDRV_BITMAP_ALLOW_RO, errp)) { |
5c5d2e50 VSO |
3025 | return; |
3026 | } | |
3027 | ||
3028 | bdrv_disable_dirty_bitmap(bitmap); | |
3029 | } | |
3030 | ||
eff0829b VSO |
3031 | static BdrvDirtyBitmap *do_block_dirty_bitmap_merge( |
3032 | const char *node, const char *target, | |
3033 | BlockDirtyBitmapMergeSourceList *bitmaps, | |
3034 | HBitmap **backup, Error **errp) | |
b598e531 VSO |
3035 | { |
3036 | BlockDriverState *bs; | |
360d4e4e | 3037 | BdrvDirtyBitmap *dst, *src, *anon; |
eff0829b | 3038 | BlockDirtyBitmapMergeSourceList *lst; |
360d4e4e | 3039 | Error *local_err = NULL; |
b598e531 | 3040 | |
360d4e4e | 3041 | dst = block_dirty_bitmap_lookup(node, target, &bs, errp); |
b598e531 | 3042 | if (!dst) { |
360d4e4e | 3043 | return NULL; |
b598e531 VSO |
3044 | } |
3045 | ||
360d4e4e JS |
3046 | anon = bdrv_create_dirty_bitmap(bs, bdrv_dirty_bitmap_granularity(dst), |
3047 | NULL, errp); | |
3048 | if (!anon) { | |
3049 | return NULL; | |
3050 | } | |
3051 | ||
3052 | for (lst = bitmaps; lst; lst = lst->next) { | |
eff0829b VSO |
3053 | switch (lst->value->type) { |
3054 | const char *name, *node; | |
3055 | case QTYPE_QSTRING: | |
3056 | name = lst->value->u.local; | |
3057 | src = bdrv_find_dirty_bitmap(bs, name); | |
3058 | if (!src) { | |
3059 | error_setg(errp, "Dirty bitmap '%s' not found", name); | |
3060 | dst = NULL; | |
3061 | goto out; | |
3062 | } | |
3063 | break; | |
3064 | case QTYPE_QDICT: | |
3065 | node = lst->value->u.external.node; | |
3066 | name = lst->value->u.external.name; | |
3067 | src = block_dirty_bitmap_lookup(node, name, NULL, errp); | |
3068 | if (!src) { | |
3069 | dst = NULL; | |
3070 | goto out; | |
3071 | } | |
3072 | break; | |
3073 | default: | |
3074 | abort(); | |
360d4e4e JS |
3075 | } |
3076 | ||
3077 | bdrv_merge_dirty_bitmap(anon, src, NULL, &local_err); | |
3078 | if (local_err) { | |
3079 | error_propagate(errp, local_err); | |
3080 | dst = NULL; | |
3081 | goto out; | |
3082 | } | |
b598e531 VSO |
3083 | } |
3084 | ||
360d4e4e JS |
3085 | /* Merge into dst; dst is unchanged on failure. */ |
3086 | bdrv_merge_dirty_bitmap(dst, anon, backup, errp); | |
3087 | ||
3088 | out: | |
3089 | bdrv_release_dirty_bitmap(bs, anon); | |
3090 | return dst; | |
3091 | } | |
3092 | ||
0e2b7f09 | 3093 | void qmp_block_dirty_bitmap_merge(const char *node, const char *target, |
eff0829b VSO |
3094 | BlockDirtyBitmapMergeSourceList *bitmaps, |
3095 | Error **errp) | |
360d4e4e JS |
3096 | { |
3097 | do_block_dirty_bitmap_merge(node, target, bitmaps, NULL, errp); | |
b598e531 VSO |
3098 | } |
3099 | ||
a3b52535 VSO |
3100 | BlockDirtyBitmapSha256 *qmp_x_debug_block_dirty_bitmap_sha256(const char *node, |
3101 | const char *name, | |
3102 | Error **errp) | |
3103 | { | |
3104 | BdrvDirtyBitmap *bitmap; | |
3105 | BlockDriverState *bs; | |
3106 | BlockDirtyBitmapSha256 *ret = NULL; | |
3107 | char *sha256; | |
3108 | ||
3109 | bitmap = block_dirty_bitmap_lookup(node, name, &bs, errp); | |
3110 | if (!bitmap || !bs) { | |
3111 | return NULL; | |
3112 | } | |
3113 | ||
3114 | sha256 = bdrv_dirty_bitmap_sha256(bitmap, errp); | |
3115 | if (sha256 == NULL) { | |
3116 | return NULL; | |
3117 | } | |
3118 | ||
3119 | ret = g_new(BlockDirtyBitmapSha256, 1); | |
3120 | ret->sha256 = sha256; | |
3121 | ||
3122 | return ret; | |
3123 | } | |
3124 | ||
072ebe6b | 3125 | void hmp_drive_del(Monitor *mon, const QDict *qdict) |
9063f814 RH |
3126 | { |
3127 | const char *id = qdict_get_str(qdict, "id"); | |
7e7d56d9 | 3128 | BlockBackend *blk; |
9063f814 | 3129 | BlockDriverState *bs; |
8ad4202b | 3130 | AioContext *aio_context; |
3718d8ab | 3131 | Error *local_err = NULL; |
9063f814 | 3132 | |
2073d410 KW |
3133 | bs = bdrv_find_node(id); |
3134 | if (bs) { | |
79b7a77e | 3135 | qmp_blockdev_del(id, &local_err); |
2073d410 KW |
3136 | if (local_err) { |
3137 | error_report_err(local_err); | |
3138 | } | |
3139 | return; | |
3140 | } | |
3141 | ||
7e7d56d9 MA |
3142 | blk = blk_by_name(id); |
3143 | if (!blk) { | |
b1422f20 | 3144 | error_report("Device '%s' not found", id); |
072ebe6b | 3145 | return; |
9063f814 | 3146 | } |
8ad4202b | 3147 | |
26f8b3a8 | 3148 | if (!blk_legacy_dinfo(blk)) { |
48f364dd MA |
3149 | error_report("Deleting device added with blockdev-add" |
3150 | " is not supported"); | |
072ebe6b | 3151 | return; |
48f364dd MA |
3152 | } |
3153 | ||
5433c24f | 3154 | aio_context = blk_get_aio_context(blk); |
8ad4202b SH |
3155 | aio_context_acquire(aio_context); |
3156 | ||
5433c24f HR |
3157 | bs = blk_bs(blk); |
3158 | if (bs) { | |
3159 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_DRIVE_DEL, &local_err)) { | |
3160 | error_report_err(local_err); | |
3161 | aio_context_release(aio_context); | |
3162 | return; | |
3163 | } | |
9063f814 | 3164 | |
938abd43 | 3165 | blk_remove_bs(blk); |
5433c24f | 3166 | } |
9063f814 | 3167 | |
7c735873 | 3168 | /* Make the BlockBackend and the attached BlockDriverState anonymous */ |
efaa7c4e HR |
3169 | monitor_remove_blk(blk); |
3170 | ||
7c735873 HR |
3171 | /* If this BlockBackend has a device attached to it, its refcount will be |
3172 | * decremented when the device is removed; otherwise we have to do so here. | |
d22b2f41 | 3173 | */ |
a7f53e26 | 3174 | if (blk_get_attached_dev(blk)) { |
293c51a6 | 3175 | /* Further I/O must not pause the guest */ |
373340b2 HR |
3176 | blk_set_on_error(blk, BLOCKDEV_ON_ERROR_REPORT, |
3177 | BLOCKDEV_ON_ERROR_REPORT); | |
d22b2f41 | 3178 | } else { |
b9fe8a7a | 3179 | blk_unref(blk); |
9063f814 RH |
3180 | } |
3181 | ||
8ad4202b | 3182 | aio_context_release(aio_context); |
9063f814 | 3183 | } |
6d4a2b3a | 3184 | |
3b1dbd11 BC |
3185 | void qmp_block_resize(bool has_device, const char *device, |
3186 | bool has_node_name, const char *node_name, | |
3187 | int64_t size, Error **errp) | |
6d4a2b3a | 3188 | { |
3b1dbd11 | 3189 | Error *local_err = NULL; |
7dad9ee6 | 3190 | BlockBackend *blk = NULL; |
6d4a2b3a | 3191 | BlockDriverState *bs; |
927e0e76 | 3192 | AioContext *aio_context; |
8732901e | 3193 | int ret; |
6d4a2b3a | 3194 | |
3b1dbd11 BC |
3195 | bs = bdrv_lookup_bs(has_device ? device : NULL, |
3196 | has_node_name ? node_name : NULL, | |
3197 | &local_err); | |
84d18f06 | 3198 | if (local_err) { |
3b1dbd11 BC |
3199 | error_propagate(errp, local_err); |
3200 | return; | |
3201 | } | |
3202 | ||
927e0e76 SH |
3203 | aio_context = bdrv_get_aio_context(bs); |
3204 | aio_context_acquire(aio_context); | |
3205 | ||
3b1dbd11 | 3206 | if (!bdrv_is_first_non_filter(bs)) { |
c6bd8c70 | 3207 | error_setg(errp, QERR_FEATURE_DISABLED, "resize"); |
927e0e76 | 3208 | goto out; |
6d4a2b3a CH |
3209 | } |
3210 | ||
3211 | if (size < 0) { | |
c6bd8c70 | 3212 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "size", "a >0 size"); |
927e0e76 | 3213 | goto out; |
6d4a2b3a CH |
3214 | } |
3215 | ||
9c75e168 | 3216 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_RESIZE, NULL)) { |
c6bd8c70 | 3217 | error_setg(errp, QERR_DEVICE_IN_USE, device); |
927e0e76 | 3218 | goto out; |
9c75e168 JC |
3219 | } |
3220 | ||
d861ab3a | 3221 | blk = blk_new(bdrv_get_aio_context(bs), BLK_PERM_RESIZE, BLK_PERM_ALL); |
d7086422 KW |
3222 | ret = blk_insert_bs(blk, bs, errp); |
3223 | if (ret < 0) { | |
3224 | goto out; | |
3225 | } | |
7dad9ee6 | 3226 | |
698bdfa0 | 3227 | bdrv_drained_begin(bs); |
3a691c50 | 3228 | ret = blk_truncate(blk, size, PREALLOC_MODE_OFF, errp); |
698bdfa0 | 3229 | bdrv_drained_end(bs); |
927e0e76 SH |
3230 | |
3231 | out: | |
7dad9ee6 | 3232 | blk_unref(blk); |
927e0e76 | 3233 | aio_context_release(aio_context); |
6d4a2b3a | 3234 | } |
12bd451f | 3235 | |
2323322e | 3236 | void qmp_block_stream(bool has_job_id, const char *job_id, const char *device, |
13d8cc51 | 3237 | bool has_base, const char *base, |
312fe09c | 3238 | bool has_base_node, const char *base_node, |
13d8cc51 JC |
3239 | bool has_backing_file, const char *backing_file, |
3240 | bool has_speed, int64_t speed, | |
1d809098 | 3241 | bool has_on_error, BlockdevOnError on_error, |
241ca1ab JS |
3242 | bool has_auto_finalize, bool auto_finalize, |
3243 | bool has_auto_dismiss, bool auto_dismiss, | |
1d809098 | 3244 | Error **errp) |
12bd451f | 3245 | { |
554b6147 | 3246 | BlockDriverState *bs, *iter; |
c8c3080f | 3247 | BlockDriverState *base_bs = NULL; |
f3e69beb | 3248 | AioContext *aio_context; |
fd7f8c65 | 3249 | Error *local_err = NULL; |
13d8cc51 | 3250 | const char *base_name = NULL; |
cf6320df | 3251 | int job_flags = JOB_DEFAULT; |
12bd451f | 3252 | |
1d809098 PB |
3253 | if (!has_on_error) { |
3254 | on_error = BLOCKDEV_ON_ERROR_REPORT; | |
3255 | } | |
3256 | ||
554b6147 | 3257 | bs = bdrv_lookup_bs(device, device, errp); |
b6c1bae5 | 3258 | if (!bs) { |
12bd451f SH |
3259 | return; |
3260 | } | |
3261 | ||
b6c1bae5 | 3262 | aio_context = bdrv_get_aio_context(bs); |
f3e69beb SH |
3263 | aio_context_acquire(aio_context); |
3264 | ||
312fe09c AG |
3265 | if (has_base && has_base_node) { |
3266 | error_setg(errp, "'base' and 'base-node' cannot be specified " | |
3267 | "at the same time"); | |
3268 | goto out; | |
3269 | } | |
3270 | ||
13d8cc51 | 3271 | if (has_base) { |
c8c3080f MT |
3272 | base_bs = bdrv_find_backing_image(bs, base); |
3273 | if (base_bs == NULL) { | |
c6bd8c70 | 3274 | error_setg(errp, QERR_BASE_NOT_FOUND, base); |
f3e69beb | 3275 | goto out; |
c8c3080f | 3276 | } |
f3e69beb | 3277 | assert(bdrv_get_aio_context(base_bs) == aio_context); |
13d8cc51 | 3278 | base_name = base; |
12bd451f SH |
3279 | } |
3280 | ||
312fe09c AG |
3281 | if (has_base_node) { |
3282 | base_bs = bdrv_lookup_bs(NULL, base_node, errp); | |
3283 | if (!base_bs) { | |
3284 | goto out; | |
3285 | } | |
3286 | if (bs == base_bs || !bdrv_chain_contains(bs, base_bs)) { | |
3287 | error_setg(errp, "Node '%s' is not a backing image of '%s'", | |
3288 | base_node, device); | |
3289 | goto out; | |
3290 | } | |
3291 | assert(bdrv_get_aio_context(base_bs) == aio_context); | |
f30c66ba | 3292 | bdrv_refresh_filename(base_bs); |
312fe09c AG |
3293 | base_name = base_bs->filename; |
3294 | } | |
3295 | ||
554b6147 AG |
3296 | /* Check for op blockers in the whole chain between bs and base */ |
3297 | for (iter = bs; iter && iter != base_bs; iter = backing_bs(iter)) { | |
3298 | if (bdrv_op_is_blocked(iter, BLOCK_OP_TYPE_STREAM, errp)) { | |
3299 | goto out; | |
3300 | } | |
3301 | } | |
3302 | ||
13d8cc51 JC |
3303 | /* if we are streaming the entire chain, the result will have no backing |
3304 | * file, and specifying one is therefore an error */ | |
3305 | if (base_bs == NULL && has_backing_file) { | |
3306 | error_setg(errp, "backing file specified, but streaming the " | |
3307 | "entire chain"); | |
f3e69beb | 3308 | goto out; |
13d8cc51 JC |
3309 | } |
3310 | ||
3311 | /* backing_file string overrides base bs filename */ | |
3312 | base_name = has_backing_file ? backing_file : base_name; | |
3313 | ||
241ca1ab JS |
3314 | if (has_auto_finalize && !auto_finalize) { |
3315 | job_flags |= JOB_MANUAL_FINALIZE; | |
3316 | } | |
3317 | if (has_auto_dismiss && !auto_dismiss) { | |
3318 | job_flags |= JOB_MANUAL_DISMISS; | |
3319 | } | |
3320 | ||
2323322e | 3321 | stream_start(has_job_id ? job_id : NULL, bs, base_bs, base_name, |
cf6320df | 3322 | job_flags, has_speed ? speed : 0, on_error, &local_err); |
84d18f06 | 3323 | if (local_err) { |
fd7f8c65 | 3324 | error_propagate(errp, local_err); |
f3e69beb | 3325 | goto out; |
12bd451f SH |
3326 | } |
3327 | ||
b23c580c | 3328 | trace_qmp_block_stream(bs); |
f3e69beb SH |
3329 | |
3330 | out: | |
3331 | aio_context_release(aio_context); | |
12bd451f | 3332 | } |
2d47c6e9 | 3333 | |
fd62c609 | 3334 | void qmp_block_commit(bool has_job_id, const char *job_id, const char *device, |
3c605f40 | 3335 | bool has_base_node, const char *base_node, |
7676e2c5 | 3336 | bool has_base, const char *base, |
3c605f40 | 3337 | bool has_top_node, const char *top_node, |
7676e2c5 | 3338 | bool has_top, const char *top, |
54e26900 | 3339 | bool has_backing_file, const char *backing_file, |
ed61fc10 | 3340 | bool has_speed, int64_t speed, |
0db832f4 | 3341 | bool has_filter_node_name, const char *filter_node_name, |
96fbf534 JS |
3342 | bool has_auto_finalize, bool auto_finalize, |
3343 | bool has_auto_dismiss, bool auto_dismiss, | |
ed61fc10 JC |
3344 | Error **errp) |
3345 | { | |
3346 | BlockDriverState *bs; | |
058223a6 | 3347 | BlockDriverState *iter; |
ed61fc10 | 3348 | BlockDriverState *base_bs, *top_bs; |
9e85cd5c | 3349 | AioContext *aio_context; |
ed61fc10 JC |
3350 | Error *local_err = NULL; |
3351 | /* This will be part of the QMP command, if/when the | |
3352 | * BlockdevOnError change for blkmirror makes it in | |
3353 | */ | |
92aa5c6d | 3354 | BlockdevOnError on_error = BLOCKDEV_ON_ERROR_REPORT; |
5360782d | 3355 | int job_flags = JOB_DEFAULT; |
ed61fc10 | 3356 | |
54504663 HR |
3357 | if (!has_speed) { |
3358 | speed = 0; | |
3359 | } | |
0db832f4 KW |
3360 | if (!has_filter_node_name) { |
3361 | filter_node_name = NULL; | |
3362 | } | |
96fbf534 JS |
3363 | if (has_auto_finalize && !auto_finalize) { |
3364 | job_flags |= JOB_MANUAL_FINALIZE; | |
3365 | } | |
3366 | if (has_auto_dismiss && !auto_dismiss) { | |
3367 | job_flags |= JOB_MANUAL_DISMISS; | |
3368 | } | |
54504663 | 3369 | |
7676e2c5 JC |
3370 | /* Important Note: |
3371 | * libvirt relies on the DeviceNotFound error class in order to probe for | |
3372 | * live commit feature versions; for this to work, we must make sure to | |
3373 | * perform the device lookup before any generic errors that may occur in a | |
3374 | * scenario in which all optional arguments are omitted. */ | |
1d13b167 KW |
3375 | bs = qmp_get_root_bs(device, &local_err); |
3376 | if (!bs) { | |
3377 | bs = bdrv_lookup_bs(device, device, NULL); | |
3378 | if (!bs) { | |
3379 | error_free(local_err); | |
3380 | error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND, | |
3381 | "Device '%s' not found", device); | |
3382 | } else { | |
3383 | error_propagate(errp, local_err); | |
3384 | } | |
ed61fc10 | 3385 | return; |
628ff683 FZ |
3386 | } |
3387 | ||
1d13b167 | 3388 | aio_context = bdrv_get_aio_context(bs); |
9e85cd5c SH |
3389 | aio_context_acquire(aio_context); |
3390 | ||
bb00021d | 3391 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_COMMIT_SOURCE, errp)) { |
9e85cd5c | 3392 | goto out; |
ed61fc10 | 3393 | } |
ed61fc10 JC |
3394 | |
3395 | /* default top_bs is the active layer */ | |
3396 | top_bs = bs; | |
3397 | ||
3c605f40 KW |
3398 | if (has_top_node && has_top) { |
3399 | error_setg(errp, "'top-node' and 'top' are mutually exclusive"); | |
3400 | goto out; | |
3401 | } else if (has_top_node) { | |
3402 | top_bs = bdrv_lookup_bs(NULL, top_node, errp); | |
3403 | if (top_bs == NULL) { | |
3404 | goto out; | |
3405 | } | |
3406 | if (!bdrv_chain_contains(bs, top_bs)) { | |
3407 | error_setg(errp, "'%s' is not in this backing file chain", | |
3408 | top_node); | |
3409 | goto out; | |
3410 | } | |
3411 | } else if (has_top && top) { | |
f30c66ba HR |
3412 | /* This strcmp() is just a shortcut, there is no need to |
3413 | * refresh @bs's filename. If it mismatches, | |
3414 | * bdrv_find_backing_image() will do the refresh and may still | |
3415 | * return @bs. */ | |
ed61fc10 JC |
3416 | if (strcmp(bs->filename, top) != 0) { |
3417 | top_bs = bdrv_find_backing_image(bs, top); | |
3418 | } | |
3419 | } | |
3420 | ||
3421 | if (top_bs == NULL) { | |
3422 | error_setg(errp, "Top image file %s not found", top ? top : "NULL"); | |
9e85cd5c | 3423 | goto out; |
ed61fc10 JC |
3424 | } |
3425 | ||
9e85cd5c SH |
3426 | assert(bdrv_get_aio_context(top_bs) == aio_context); |
3427 | ||
3c605f40 KW |
3428 | if (has_base_node && has_base) { |
3429 | error_setg(errp, "'base-node' and 'base' are mutually exclusive"); | |
3430 | goto out; | |
3431 | } else if (has_base_node) { | |
3432 | base_bs = bdrv_lookup_bs(NULL, base_node, errp); | |
3433 | if (base_bs == NULL) { | |
3434 | goto out; | |
3435 | } | |
3436 | if (!bdrv_chain_contains(top_bs, base_bs)) { | |
3437 | error_setg(errp, "'%s' is not in this backing file chain", | |
3438 | base_node); | |
3439 | goto out; | |
3440 | } | |
3441 | } else if (has_base && base) { | |
d5208c45 JC |
3442 | base_bs = bdrv_find_backing_image(top_bs, base); |
3443 | } else { | |
3444 | base_bs = bdrv_find_base(top_bs); | |
3445 | } | |
3446 | ||
3447 | if (base_bs == NULL) { | |
c6bd8c70 | 3448 | error_setg(errp, QERR_BASE_NOT_FOUND, base ? base : "NULL"); |
9e85cd5c | 3449 | goto out; |
d5208c45 JC |
3450 | } |
3451 | ||
9e85cd5c SH |
3452 | assert(bdrv_get_aio_context(base_bs) == aio_context); |
3453 | ||
058223a6 AG |
3454 | for (iter = top_bs; iter != backing_bs(base_bs); iter = backing_bs(iter)) { |
3455 | if (bdrv_op_is_blocked(iter, BLOCK_OP_TYPE_COMMIT_TARGET, errp)) { | |
3456 | goto out; | |
3457 | } | |
bb00021d FZ |
3458 | } |
3459 | ||
7676e2c5 JC |
3460 | /* Do not allow attempts to commit an image into itself */ |
3461 | if (top_bs == base_bs) { | |
3462 | error_setg(errp, "cannot commit an image into itself"); | |
9e85cd5c | 3463 | goto out; |
7676e2c5 JC |
3464 | } |
3465 | ||
20a63d2c | 3466 | if (top_bs == bs) { |
54e26900 JC |
3467 | if (has_backing_file) { |
3468 | error_setg(errp, "'backing-file' specified," | |
3469 | " but 'top' is the active layer"); | |
9e85cd5c | 3470 | goto out; |
54e26900 | 3471 | } |
47970dfb | 3472 | commit_active_start(has_job_id ? job_id : NULL, bs, base_bs, |
5360782d | 3473 | job_flags, speed, on_error, |
78bbd910 | 3474 | filter_node_name, NULL, NULL, false, &local_err); |
20a63d2c | 3475 | } else { |
058223a6 AG |
3476 | BlockDriverState *overlay_bs = bdrv_find_overlay(bs, top_bs); |
3477 | if (bdrv_op_is_blocked(overlay_bs, BLOCK_OP_TYPE_COMMIT_TARGET, errp)) { | |
3478 | goto out; | |
3479 | } | |
5360782d JS |
3480 | commit_start(has_job_id ? job_id : NULL, bs, base_bs, top_bs, job_flags, |
3481 | speed, on_error, has_backing_file ? backing_file : NULL, | |
0db832f4 | 3482 | filter_node_name, &local_err); |
20a63d2c | 3483 | } |
ed61fc10 JC |
3484 | if (local_err != NULL) { |
3485 | error_propagate(errp, local_err); | |
9e85cd5c | 3486 | goto out; |
ed61fc10 | 3487 | } |
9e85cd5c SH |
3488 | |
3489 | out: | |
3490 | aio_context_release(aio_context); | |
ed61fc10 JC |
3491 | } |
3492 | ||
7b0b870b JS |
3493 | /* Common QMP interface for drive-backup and blockdev-backup */ |
3494 | static BlockJob *do_backup_common(BackupCommon *backup, | |
3495 | BlockDriverState *bs, | |
3496 | BlockDriverState *target_bs, | |
3497 | AioContext *aio_context, | |
3498 | JobTxn *txn, Error **errp) | |
99a9addf | 3499 | { |
111049a4 | 3500 | BlockJob *job = NULL; |
d58d8453 | 3501 | BdrvDirtyBitmap *bmap = NULL; |
7b0b870b | 3502 | int job_flags = JOB_DEFAULT; |
8ed7d42f | 3503 | int ret; |
99a9addf | 3504 | |
81206a89 PB |
3505 | if (!backup->has_speed) { |
3506 | backup->speed = 0; | |
99a9addf | 3507 | } |
81206a89 PB |
3508 | if (!backup->has_on_source_error) { |
3509 | backup->on_source_error = BLOCKDEV_ON_ERROR_REPORT; | |
99a9addf | 3510 | } |
81206a89 PB |
3511 | if (!backup->has_on_target_error) { |
3512 | backup->on_target_error = BLOCKDEV_ON_ERROR_REPORT; | |
99a9addf | 3513 | } |
81206a89 PB |
3514 | if (!backup->has_job_id) { |
3515 | backup->job_id = NULL; | |
99a9addf | 3516 | } |
b40dacdc JS |
3517 | if (!backup->has_auto_finalize) { |
3518 | backup->auto_finalize = true; | |
3519 | } | |
3520 | if (!backup->has_auto_dismiss) { | |
3521 | backup->auto_dismiss = true; | |
3522 | } | |
13b9414b PB |
3523 | if (!backup->has_compress) { |
3524 | backup->compress = false; | |
3525 | } | |
99a9addf | 3526 | |
7b0b870b JS |
3527 | ret = bdrv_try_set_aio_context(target_bs, aio_context, errp); |
3528 | if (ret < 0) { | |
3529 | return NULL; | |
3530 | } | |
3531 | ||
a6c9365a JS |
3532 | if ((backup->sync == MIRROR_SYNC_MODE_BITMAP) || |
3533 | (backup->sync == MIRROR_SYNC_MODE_INCREMENTAL)) { | |
3534 | /* done before desugaring 'incremental' to print the right message */ | |
3535 | if (!backup->has_bitmap) { | |
3536 | error_setg(errp, "must provide a valid bitmap name for " | |
3537 | "'%s' sync mode", MirrorSyncMode_str(backup->sync)); | |
3538 | return NULL; | |
3539 | } | |
3540 | } | |
3541 | ||
c8b56501 JS |
3542 | if (backup->sync == MIRROR_SYNC_MODE_INCREMENTAL) { |
3543 | if (backup->has_bitmap_mode && | |
3544 | backup->bitmap_mode != BITMAP_SYNC_MODE_ON_SUCCESS) { | |
3545 | error_setg(errp, "Bitmap sync mode must be '%s' " | |
3546 | "when using sync mode '%s'", | |
3547 | BitmapSyncMode_str(BITMAP_SYNC_MODE_ON_SUCCESS), | |
3548 | MirrorSyncMode_str(backup->sync)); | |
3549 | return NULL; | |
3550 | } | |
3551 | backup->has_bitmap_mode = true; | |
3552 | backup->sync = MIRROR_SYNC_MODE_BITMAP; | |
3553 | backup->bitmap_mode = BITMAP_SYNC_MODE_ON_SUCCESS; | |
3554 | } | |
3555 | ||
7b0b870b JS |
3556 | if (backup->has_bitmap) { |
3557 | bmap = bdrv_find_dirty_bitmap(bs, backup->bitmap); | |
3558 | if (!bmap) { | |
3559 | error_setg(errp, "Bitmap '%s' could not be found", backup->bitmap); | |
3560 | return NULL; | |
3561 | } | |
c8b56501 JS |
3562 | if (!backup->has_bitmap_mode) { |
3563 | error_setg(errp, "Bitmap sync mode must be given " | |
3564 | "when providing a bitmap"); | |
3565 | return NULL; | |
3566 | } | |
b30ffbef | 3567 | if (bdrv_dirty_bitmap_check(bmap, BDRV_BITMAP_ALLOW_RO, errp)) { |
7b0b870b JS |
3568 | return NULL; |
3569 | } | |
1a2b8b40 JS |
3570 | |
3571 | /* This does not produce a useful bitmap artifact: */ | |
3572 | if (backup->sync == MIRROR_SYNC_MODE_NONE) { | |
3573 | error_setg(errp, "sync mode '%s' does not produce meaningful bitmap" | |
3574 | " outputs", MirrorSyncMode_str(backup->sync)); | |
3575 | return NULL; | |
3576 | } | |
3577 | ||
3578 | /* If the bitmap isn't used for input or output, this is useless: */ | |
3579 | if (backup->bitmap_mode == BITMAP_SYNC_MODE_NEVER && | |
3580 | backup->sync != MIRROR_SYNC_MODE_BITMAP) { | |
3581 | error_setg(errp, "Bitmap sync mode '%s' has no meaningful effect" | |
3582 | " when combined with sync mode '%s'", | |
3583 | BitmapSyncMode_str(backup->bitmap_mode), | |
3584 | MirrorSyncMode_str(backup->sync)); | |
3585 | return NULL; | |
3586 | } | |
3587 | } | |
3588 | ||
3589 | if (!backup->has_bitmap && backup->has_bitmap_mode) { | |
3590 | error_setg(errp, "Cannot specify bitmap sync mode without a bitmap"); | |
3591 | return NULL; | |
7b0b870b JS |
3592 | } |
3593 | ||
3594 | if (!backup->auto_finalize) { | |
3595 | job_flags |= JOB_MANUAL_FINALIZE; | |
3596 | } | |
3597 | if (!backup->auto_dismiss) { | |
3598 | job_flags |= JOB_MANUAL_DISMISS; | |
3599 | } | |
3600 | ||
3601 | job = backup_job_create(backup->job_id, bs, target_bs, backup->speed, | |
c8b56501 JS |
3602 | backup->sync, bmap, backup->bitmap_mode, |
3603 | backup->compress, | |
3604 | backup->on_source_error, | |
3605 | backup->on_target_error, | |
7b0b870b JS |
3606 | job_flags, NULL, NULL, txn, errp); |
3607 | return job; | |
3608 | } | |
3609 | ||
3610 | static BlockJob *do_drive_backup(DriveBackup *backup, JobTxn *txn, | |
3611 | Error **errp) | |
3612 | { | |
3613 | BlockDriverState *bs; | |
3614 | BlockDriverState *target_bs; | |
3615 | BlockDriverState *source = NULL; | |
3616 | BlockJob *job = NULL; | |
3617 | AioContext *aio_context; | |
319bd5ed | 3618 | QDict *options; |
7b0b870b JS |
3619 | Error *local_err = NULL; |
3620 | int flags; | |
3621 | int64_t size; | |
3622 | bool set_backing_hd = false; | |
3623 | ||
3624 | if (!backup->has_mode) { | |
3625 | backup->mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS; | |
3626 | } | |
3627 | ||
a2d665c1 | 3628 | bs = bdrv_lookup_bs(backup->device, backup->device, errp); |
b7e4fa22 | 3629 | if (!bs) { |
111049a4 | 3630 | return NULL; |
99a9addf SH |
3631 | } |
3632 | ||
a2d665c1 JS |
3633 | if (!bs->drv) { |
3634 | error_setg(errp, "Device has no medium"); | |
3635 | return NULL; | |
3636 | } | |
3637 | ||
b7e4fa22 | 3638 | aio_context = bdrv_get_aio_context(bs); |
761731b1 SH |
3639 | aio_context_acquire(aio_context); |
3640 | ||
81206a89 PB |
3641 | if (!backup->has_format) { |
3642 | backup->format = backup->mode == NEW_IMAGE_MODE_EXISTING ? | |
3643 | NULL : (char*) bs->drv->format_name; | |
99a9addf | 3644 | } |
99a9addf | 3645 | |
c29c1dd3 | 3646 | /* Early check to avoid creating target */ |
3718d8ab | 3647 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_BACKUP_SOURCE, errp)) { |
761731b1 | 3648 | goto out; |
99a9addf SH |
3649 | } |
3650 | ||
61de4c68 | 3651 | flags = bs->open_flags | BDRV_O_RDWR; |
99a9addf | 3652 | |
fc5d3f84 IM |
3653 | /* See if we have a backing HD we can use to create our new image |
3654 | * on top of. */ | |
81206a89 | 3655 | if (backup->sync == MIRROR_SYNC_MODE_TOP) { |
760e0063 | 3656 | source = backing_bs(bs); |
fc5d3f84 | 3657 | if (!source) { |
81206a89 | 3658 | backup->sync = MIRROR_SYNC_MODE_FULL; |
fc5d3f84 IM |
3659 | } |
3660 | } | |
81206a89 | 3661 | if (backup->sync == MIRROR_SYNC_MODE_NONE) { |
fc5d3f84 | 3662 | source = bs; |
fc0932fd FZ |
3663 | flags |= BDRV_O_NO_BACKING; |
3664 | set_backing_hd = true; | |
fc5d3f84 IM |
3665 | } |
3666 | ||
99a9addf SH |
3667 | size = bdrv_getlength(bs); |
3668 | if (size < 0) { | |
3669 | error_setg_errno(errp, -size, "bdrv_getlength failed"); | |
761731b1 | 3670 | goto out; |
99a9addf SH |
3671 | } |
3672 | ||
81206a89 PB |
3673 | if (backup->mode != NEW_IMAGE_MODE_EXISTING) { |
3674 | assert(backup->format); | |
fc5d3f84 | 3675 | if (source) { |
f30c66ba | 3676 | bdrv_refresh_filename(source); |
81206a89 | 3677 | bdrv_img_create(backup->target, backup->format, source->filename, |
fc5d3f84 | 3678 | source->drv->format_name, NULL, |
9217283d | 3679 | size, flags, false, &local_err); |
fc5d3f84 | 3680 | } else { |
81206a89 | 3681 | bdrv_img_create(backup->target, backup->format, NULL, NULL, NULL, |
9217283d | 3682 | size, flags, false, &local_err); |
fc5d3f84 | 3683 | } |
99a9addf SH |
3684 | } |
3685 | ||
84d18f06 | 3686 | if (local_err) { |
99a9addf | 3687 | error_propagate(errp, local_err); |
761731b1 | 3688 | goto out; |
99a9addf SH |
3689 | } |
3690 | ||
319bd5ed VSO |
3691 | options = qdict_new(); |
3692 | qdict_put_str(options, "discard", "unmap"); | |
3693 | qdict_put_str(options, "detect-zeroes", "unmap"); | |
81206a89 | 3694 | if (backup->format) { |
46f5ac20 | 3695 | qdict_put_str(options, "driver", backup->format); |
e6641719 HR |
3696 | } |
3697 | ||
81206a89 | 3698 | target_bs = bdrv_open(backup->target, NULL, options, flags, errp); |
5b363937 | 3699 | if (!target_bs) { |
761731b1 | 3700 | goto out; |
99a9addf SH |
3701 | } |
3702 | ||
fc0932fd FZ |
3703 | if (set_backing_hd) { |
3704 | bdrv_set_backing_hd(target_bs, source, &local_err); | |
3705 | if (local_err) { | |
4da26f13 | 3706 | goto unref; |
fc0932fd FZ |
3707 | } |
3708 | } | |
3709 | ||
7b0b870b JS |
3710 | job = do_backup_common(qapi_DriveBackup_base(backup), |
3711 | bs, target_bs, aio_context, txn, errp); | |
761731b1 | 3712 | |
4da26f13 JS |
3713 | unref: |
3714 | bdrv_unref(target_bs); | |
761731b1 SH |
3715 | out: |
3716 | aio_context_release(aio_context); | |
111049a4 | 3717 | return job; |
99a9addf SH |
3718 | } |
3719 | ||
81206a89 | 3720 | void qmp_drive_backup(DriveBackup *arg, Error **errp) |
78f51fde | 3721 | { |
111049a4 JS |
3722 | |
3723 | BlockJob *job; | |
3724 | job = do_drive_backup(arg, NULL, errp); | |
3725 | if (job) { | |
da01ff7f | 3726 | job_start(&job->job); |
111049a4 | 3727 | } |
78f51fde JS |
3728 | } |
3729 | ||
c13163fb BC |
3730 | BlockDeviceInfoList *qmp_query_named_block_nodes(Error **errp) |
3731 | { | |
d5a8ee60 | 3732 | return bdrv_named_nodes_list(errp); |
c13163fb BC |
3733 | } |
3734 | ||
5d3b4e99 VSO |
3735 | XDbgBlockGraph *qmp_x_debug_query_block_graph(Error **errp) |
3736 | { | |
3737 | return bdrv_get_xdbg_block_graph(errp); | |
3738 | } | |
3739 | ||
62c9e416 | 3740 | BlockJob *do_blockdev_backup(BlockdevBackup *backup, JobTxn *txn, |
111049a4 | 3741 | Error **errp) |
c29c1dd3 FZ |
3742 | { |
3743 | BlockDriverState *bs; | |
3744 | BlockDriverState *target_bs; | |
c29c1dd3 | 3745 | AioContext *aio_context; |
92030566 | 3746 | BlockJob *job; |
c29c1dd3 | 3747 | |
930fe17f | 3748 | bs = bdrv_lookup_bs(backup->device, backup->device, errp); |
cef34eeb | 3749 | if (!bs) { |
111049a4 | 3750 | return NULL; |
c29c1dd3 FZ |
3751 | } |
3752 | ||
dc7a4a9e | 3753 | target_bs = bdrv_lookup_bs(backup->target, backup->target, errp); |
0d978913 | 3754 | if (!target_bs) { |
92030566 | 3755 | return NULL; |
5433c24f | 3756 | } |
c29c1dd3 | 3757 | |
92030566 JS |
3758 | aio_context = bdrv_get_aio_context(bs); |
3759 | aio_context_acquire(aio_context); | |
945c1ee0 | 3760 | |
92030566 JS |
3761 | job = do_backup_common(qapi_BlockdevBackup_base(backup), |
3762 | bs, target_bs, aio_context, txn, errp); | |
945c1ee0 | 3763 | |
c29c1dd3 | 3764 | aio_context_release(aio_context); |
111049a4 | 3765 | return job; |
c29c1dd3 FZ |
3766 | } |
3767 | ||
dc7a4a9e PB |
3768 | void qmp_blockdev_backup(BlockdevBackup *arg, Error **errp) |
3769 | { | |
111049a4 JS |
3770 | BlockJob *job; |
3771 | job = do_blockdev_backup(arg, NULL, errp); | |
3772 | if (job) { | |
da01ff7f | 3773 | job_start(&job->job); |
111049a4 | 3774 | } |
78f51fde JS |
3775 | } |
3776 | ||
4193cdd7 FZ |
3777 | /* Parameter check and block job starting for drive mirroring. |
3778 | * Caller should hold @device and @target's aio context (must be the same). | |
3779 | **/ | |
71aa9867 | 3780 | static void blockdev_mirror_common(const char *job_id, BlockDriverState *bs, |
4193cdd7 FZ |
3781 | BlockDriverState *target, |
3782 | bool has_replaces, const char *replaces, | |
3783 | enum MirrorSyncMode sync, | |
274fccee | 3784 | BlockMirrorBackingMode backing_mode, |
4193cdd7 FZ |
3785 | bool has_speed, int64_t speed, |
3786 | bool has_granularity, uint32_t granularity, | |
3787 | bool has_buf_size, int64_t buf_size, | |
3788 | bool has_on_source_error, | |
3789 | BlockdevOnError on_source_error, | |
3790 | bool has_on_target_error, | |
3791 | BlockdevOnError on_target_error, | |
3792 | bool has_unmap, bool unmap, | |
6cdbceb1 KW |
3793 | bool has_filter_node_name, |
3794 | const char *filter_node_name, | |
481debaa | 3795 | bool has_copy_mode, MirrorCopyMode copy_mode, |
a6b58ade JS |
3796 | bool has_auto_finalize, bool auto_finalize, |
3797 | bool has_auto_dismiss, bool auto_dismiss, | |
4193cdd7 | 3798 | Error **errp) |
d9b902db | 3799 | { |
a1999b33 | 3800 | int job_flags = JOB_DEFAULT; |
d9b902db PB |
3801 | |
3802 | if (!has_speed) { | |
3803 | speed = 0; | |
3804 | } | |
b952b558 PB |
3805 | if (!has_on_source_error) { |
3806 | on_source_error = BLOCKDEV_ON_ERROR_REPORT; | |
3807 | } | |
3808 | if (!has_on_target_error) { | |
3809 | on_target_error = BLOCKDEV_ON_ERROR_REPORT; | |
3810 | } | |
eee13dfe PB |
3811 | if (!has_granularity) { |
3812 | granularity = 0; | |
3813 | } | |
08e4ed6c | 3814 | if (!has_buf_size) { |
48ac0a4d | 3815 | buf_size = 0; |
08e4ed6c | 3816 | } |
0fc9f8ea FZ |
3817 | if (!has_unmap) { |
3818 | unmap = true; | |
3819 | } | |
6cdbceb1 KW |
3820 | if (!has_filter_node_name) { |
3821 | filter_node_name = NULL; | |
3822 | } | |
481debaa HR |
3823 | if (!has_copy_mode) { |
3824 | copy_mode = MIRROR_COPY_MODE_BACKGROUND; | |
3825 | } | |
a6b58ade JS |
3826 | if (has_auto_finalize && !auto_finalize) { |
3827 | job_flags |= JOB_MANUAL_FINALIZE; | |
3828 | } | |
3829 | if (has_auto_dismiss && !auto_dismiss) { | |
3830 | job_flags |= JOB_MANUAL_DISMISS; | |
3831 | } | |
08e4ed6c | 3832 | |
eee13dfe | 3833 | if (granularity != 0 && (granularity < 512 || granularity > 1048576 * 64)) { |
c6bd8c70 MA |
3834 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "granularity", |
3835 | "a value in range [512B, 64MB]"); | |
eee13dfe PB |
3836 | return; |
3837 | } | |
3838 | if (granularity & (granularity - 1)) { | |
c6bd8c70 MA |
3839 | error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "granularity", |
3840 | "power of 2"); | |
eee13dfe PB |
3841 | return; |
3842 | } | |
d9b902db | 3843 | |
4193cdd7 FZ |
3844 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_MIRROR_SOURCE, errp)) { |
3845 | return; | |
3846 | } | |
e40e5027 FZ |
3847 | if (bdrv_op_is_blocked(target, BLOCK_OP_TYPE_MIRROR_TARGET, errp)) { |
3848 | return; | |
3849 | } | |
4193cdd7 FZ |
3850 | |
3851 | if (!bs->backing && sync == MIRROR_SYNC_MODE_TOP) { | |
3852 | sync = MIRROR_SYNC_MODE_FULL; | |
3853 | } | |
3854 | ||
74ce9e46 HR |
3855 | if (has_replaces) { |
3856 | BlockDriverState *to_replace_bs; | |
3857 | AioContext *replace_aio_context; | |
3858 | int64_t bs_size, replace_size; | |
3859 | ||
3860 | bs_size = bdrv_getlength(bs); | |
3861 | if (bs_size < 0) { | |
3862 | error_setg_errno(errp, -bs_size, "Failed to query device's size"); | |
3863 | return; | |
3864 | } | |
3865 | ||
3866 | to_replace_bs = check_to_replace_node(bs, replaces, errp); | |
3867 | if (!to_replace_bs) { | |
3868 | return; | |
3869 | } | |
3870 | ||
3871 | replace_aio_context = bdrv_get_aio_context(to_replace_bs); | |
3872 | aio_context_acquire(replace_aio_context); | |
3873 | replace_size = bdrv_getlength(to_replace_bs); | |
3874 | aio_context_release(replace_aio_context); | |
3875 | ||
3876 | if (replace_size < 0) { | |
3877 | error_setg_errno(errp, -replace_size, | |
3878 | "Failed to query the replacement node's size"); | |
3879 | return; | |
3880 | } | |
3881 | if (bs_size != replace_size) { | |
3882 | error_setg(errp, "cannot replace image with a mirror image of " | |
3883 | "different size"); | |
3884 | return; | |
3885 | } | |
3886 | } | |
3887 | ||
4193cdd7 FZ |
3888 | /* pass the node name to replace to mirror start since it's loose coupling |
3889 | * and will allow to check whether the node still exist at mirror completion | |
3890 | */ | |
71aa9867 | 3891 | mirror_start(job_id, bs, target, |
a1999b33 | 3892 | has_replaces ? replaces : NULL, job_flags, |
274fccee | 3893 | speed, granularity, buf_size, sync, backing_mode, |
6cdbceb1 | 3894 | on_source_error, on_target_error, unmap, filter_node_name, |
481debaa | 3895 | copy_mode, errp); |
4193cdd7 FZ |
3896 | } |
3897 | ||
faecd40a | 3898 | void qmp_drive_mirror(DriveMirror *arg, Error **errp) |
4193cdd7 FZ |
3899 | { |
3900 | BlockDriverState *bs; | |
4193cdd7 FZ |
3901 | BlockDriverState *source, *target_bs; |
3902 | AioContext *aio_context; | |
274fccee | 3903 | BlockMirrorBackingMode backing_mode; |
4193cdd7 FZ |
3904 | Error *local_err = NULL; |
3905 | QDict *options = NULL; | |
3906 | int flags; | |
3907 | int64_t size; | |
faecd40a | 3908 | const char *format = arg->format; |
8ed7d42f | 3909 | int ret; |
4193cdd7 | 3910 | |
0524e93a KW |
3911 | bs = qmp_get_root_bs(arg->device, errp); |
3912 | if (!bs) { | |
d9b902db PB |
3913 | return; |
3914 | } | |
3915 | ||
cb2af917 PB |
3916 | /* Early check to avoid creating target */ |
3917 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_MIRROR_SOURCE, errp)) { | |
3918 | return; | |
3919 | } | |
3920 | ||
0524e93a | 3921 | aio_context = bdrv_get_aio_context(bs); |
5a7e7a0b SH |
3922 | aio_context_acquire(aio_context); |
3923 | ||
faecd40a EB |
3924 | if (!arg->has_mode) { |
3925 | arg->mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS; | |
4193cdd7 | 3926 | } |
d9b902db | 3927 | |
faecd40a EB |
3928 | if (!arg->has_format) { |
3929 | format = (arg->mode == NEW_IMAGE_MODE_EXISTING | |
3930 | ? NULL : bs->drv->format_name); | |
d9b902db | 3931 | } |
d9b902db | 3932 | |
61de4c68 | 3933 | flags = bs->open_flags | BDRV_O_RDWR; |
760e0063 | 3934 | source = backing_bs(bs); |
faecd40a EB |
3935 | if (!source && arg->sync == MIRROR_SYNC_MODE_TOP) { |
3936 | arg->sync = MIRROR_SYNC_MODE_FULL; | |
d9b902db | 3937 | } |
faecd40a | 3938 | if (arg->sync == MIRROR_SYNC_MODE_NONE) { |
117e0c82 HR |
3939 | source = bs; |
3940 | } | |
d9b902db | 3941 | |
ac3c5d83 SH |
3942 | size = bdrv_getlength(bs); |
3943 | if (size < 0) { | |
3944 | error_setg_errno(errp, -size, "bdrv_getlength failed"); | |
5a7e7a0b | 3945 | goto out; |
ac3c5d83 SH |
3946 | } |
3947 | ||
faecd40a | 3948 | if (arg->has_replaces) { |
faecd40a | 3949 | if (!arg->has_node_name) { |
09158f00 BC |
3950 | error_setg(errp, "a node-name must be provided when replacing a" |
3951 | " named node of the graph"); | |
5a7e7a0b | 3952 | goto out; |
09158f00 | 3953 | } |
09158f00 BC |
3954 | } |
3955 | ||
faecd40a | 3956 | if (arg->mode == NEW_IMAGE_MODE_ABSOLUTE_PATHS) { |
274fccee HR |
3957 | backing_mode = MIRROR_SOURCE_BACKING_CHAIN; |
3958 | } else { | |
3959 | backing_mode = MIRROR_OPEN_BACKING_CHAIN; | |
3960 | } | |
3961 | ||
2a32c6e8 JS |
3962 | /* Don't open backing image in create() */ |
3963 | flags |= BDRV_O_NO_BACKING; | |
3964 | ||
faecd40a EB |
3965 | if ((arg->sync == MIRROR_SYNC_MODE_FULL || !source) |
3966 | && arg->mode != NEW_IMAGE_MODE_EXISTING) | |
14526864 | 3967 | { |
d9b902db | 3968 | /* create new image w/o backing file */ |
e6641719 | 3969 | assert(format); |
faecd40a | 3970 | bdrv_img_create(arg->target, format, |
9217283d | 3971 | NULL, NULL, NULL, size, flags, false, &local_err); |
d9b902db | 3972 | } else { |
faecd40a | 3973 | switch (arg->mode) { |
d9b902db | 3974 | case NEW_IMAGE_MODE_EXISTING: |
d9b902db PB |
3975 | break; |
3976 | case NEW_IMAGE_MODE_ABSOLUTE_PATHS: | |
3977 | /* create new image with backing file */ | |
f30c66ba | 3978 | bdrv_refresh_filename(source); |
faecd40a | 3979 | bdrv_img_create(arg->target, format, |
cf8f2426 LC |
3980 | source->filename, |
3981 | source->drv->format_name, | |
9217283d | 3982 | NULL, size, flags, false, &local_err); |
d9b902db PB |
3983 | break; |
3984 | default: | |
3985 | abort(); | |
3986 | } | |
3987 | } | |
3988 | ||
84d18f06 | 3989 | if (local_err) { |
cf8f2426 | 3990 | error_propagate(errp, local_err); |
5a7e7a0b | 3991 | goto out; |
d9b902db PB |
3992 | } |
3993 | ||
e6641719 | 3994 | options = qdict_new(); |
faecd40a | 3995 | if (arg->has_node_name) { |
46f5ac20 | 3996 | qdict_put_str(options, "node-name", arg->node_name); |
4c828dc6 | 3997 | } |
e6641719 | 3998 | if (format) { |
46f5ac20 | 3999 | qdict_put_str(options, "driver", format); |
e6641719 | 4000 | } |
4c828dc6 | 4001 | |
b812f671 PB |
4002 | /* Mirroring takes care of copy-on-write using the source's backing |
4003 | * file. | |
4004 | */ | |
2a32c6e8 | 4005 | target_bs = bdrv_open(arg->target, NULL, options, flags, errp); |
5b363937 | 4006 | if (!target_bs) { |
5a7e7a0b | 4007 | goto out; |
d9b902db PB |
4008 | } |
4009 | ||
8ed7d42f KW |
4010 | ret = bdrv_try_set_aio_context(target_bs, aio_context, errp); |
4011 | if (ret < 0) { | |
4012 | bdrv_unref(target_bs); | |
4013 | goto out; | |
4014 | } | |
5a7e7a0b | 4015 | |
faecd40a EB |
4016 | blockdev_mirror_common(arg->has_job_id ? arg->job_id : NULL, bs, target_bs, |
4017 | arg->has_replaces, arg->replaces, arg->sync, | |
4018 | backing_mode, arg->has_speed, arg->speed, | |
4019 | arg->has_granularity, arg->granularity, | |
4020 | arg->has_buf_size, arg->buf_size, | |
4021 | arg->has_on_source_error, arg->on_source_error, | |
4022 | arg->has_on_target_error, arg->on_target_error, | |
4023 | arg->has_unmap, arg->unmap, | |
6cdbceb1 | 4024 | false, NULL, |
481debaa | 4025 | arg->has_copy_mode, arg->copy_mode, |
a6b58ade JS |
4026 | arg->has_auto_finalize, arg->auto_finalize, |
4027 | arg->has_auto_dismiss, arg->auto_dismiss, | |
4193cdd7 | 4028 | &local_err); |
e253f4b8 | 4029 | bdrv_unref(target_bs); |
621ff94d | 4030 | error_propagate(errp, local_err); |
5a7e7a0b SH |
4031 | out: |
4032 | aio_context_release(aio_context); | |
d9b902db PB |
4033 | } |
4034 | ||
71aa9867 AG |
4035 | void qmp_blockdev_mirror(bool has_job_id, const char *job_id, |
4036 | const char *device, const char *target, | |
df92562e FZ |
4037 | bool has_replaces, const char *replaces, |
4038 | MirrorSyncMode sync, | |
4039 | bool has_speed, int64_t speed, | |
4040 | bool has_granularity, uint32_t granularity, | |
4041 | bool has_buf_size, int64_t buf_size, | |
4042 | bool has_on_source_error, | |
4043 | BlockdevOnError on_source_error, | |
4044 | bool has_on_target_error, | |
4045 | BlockdevOnError on_target_error, | |
6cdbceb1 KW |
4046 | bool has_filter_node_name, |
4047 | const char *filter_node_name, | |
481debaa | 4048 | bool has_copy_mode, MirrorCopyMode copy_mode, |
a6b58ade JS |
4049 | bool has_auto_finalize, bool auto_finalize, |
4050 | bool has_auto_dismiss, bool auto_dismiss, | |
df92562e FZ |
4051 | Error **errp) |
4052 | { | |
4053 | BlockDriverState *bs; | |
df92562e FZ |
4054 | BlockDriverState *target_bs; |
4055 | AioContext *aio_context; | |
274fccee | 4056 | BlockMirrorBackingMode backing_mode = MIRROR_LEAVE_BACKING_CHAIN; |
df92562e | 4057 | Error *local_err = NULL; |
8ed7d42f | 4058 | int ret; |
df92562e | 4059 | |
07eec652 | 4060 | bs = qmp_get_root_bs(device, errp); |
df92562e | 4061 | if (!bs) { |
df92562e FZ |
4062 | return; |
4063 | } | |
4064 | ||
4065 | target_bs = bdrv_lookup_bs(target, target, errp); | |
4066 | if (!target_bs) { | |
4067 | return; | |
4068 | } | |
4069 | ||
4070 | aio_context = bdrv_get_aio_context(bs); | |
4071 | aio_context_acquire(aio_context); | |
4072 | ||
8ed7d42f KW |
4073 | ret = bdrv_try_set_aio_context(target_bs, aio_context, errp); |
4074 | if (ret < 0) { | |
4075 | goto out; | |
4076 | } | |
df92562e | 4077 | |
71aa9867 | 4078 | blockdev_mirror_common(has_job_id ? job_id : NULL, bs, target_bs, |
274fccee | 4079 | has_replaces, replaces, sync, backing_mode, |
df92562e FZ |
4080 | has_speed, speed, |
4081 | has_granularity, granularity, | |
4082 | has_buf_size, buf_size, | |
4083 | has_on_source_error, on_source_error, | |
4084 | has_on_target_error, on_target_error, | |
4085 | true, true, | |
6cdbceb1 | 4086 | has_filter_node_name, filter_node_name, |
481debaa | 4087 | has_copy_mode, copy_mode, |
a6b58ade JS |
4088 | has_auto_finalize, auto_finalize, |
4089 | has_auto_dismiss, auto_dismiss, | |
df92562e | 4090 | &local_err); |
621ff94d | 4091 | error_propagate(errp, local_err); |
8ed7d42f | 4092 | out: |
df92562e FZ |
4093 | aio_context_release(aio_context); |
4094 | } | |
4095 | ||
3ddf3efe AG |
4096 | /* Get a block job using its ID and acquire its AioContext */ |
4097 | static BlockJob *find_block_job(const char *id, AioContext **aio_context, | |
24d6bffe | 4098 | Error **errp) |
2d47c6e9 | 4099 | { |
3ddf3efe | 4100 | BlockJob *job; |
2d47c6e9 | 4101 | |
3ddf3efe | 4102 | assert(id != NULL); |
5433c24f | 4103 | |
3ddf3efe | 4104 | *aio_context = NULL; |
3d948cdf | 4105 | |
3ddf3efe | 4106 | job = block_job_get(id); |
5433c24f | 4107 | |
3ddf3efe AG |
4108 | if (!job) { |
4109 | error_set(errp, ERROR_CLASS_DEVICE_NOT_ACTIVE, | |
4110 | "Block job '%s' not found", id); | |
4111 | return NULL; | |
2d47c6e9 | 4112 | } |
3d948cdf | 4113 | |
3ddf3efe AG |
4114 | *aio_context = blk_get_aio_context(job->blk); |
4115 | aio_context_acquire(*aio_context); | |
3d948cdf | 4116 | |
3ddf3efe | 4117 | return job; |
2d47c6e9 SH |
4118 | } |
4119 | ||
882ec7ce | 4120 | void qmp_block_job_set_speed(const char *device, int64_t speed, Error **errp) |
2d47c6e9 | 4121 | { |
3d948cdf | 4122 | AioContext *aio_context; |
24d6bffe | 4123 | BlockJob *job = find_block_job(device, &aio_context, errp); |
2d47c6e9 SH |
4124 | |
4125 | if (!job) { | |
2d47c6e9 SH |
4126 | return; |
4127 | } | |
4128 | ||
882ec7ce | 4129 | block_job_set_speed(job, speed, errp); |
3d948cdf | 4130 | aio_context_release(aio_context); |
2d47c6e9 | 4131 | } |
370521a1 | 4132 | |
6e37fb81 PB |
4133 | void qmp_block_job_cancel(const char *device, |
4134 | bool has_force, bool force, Error **errp) | |
370521a1 | 4135 | { |
3d948cdf | 4136 | AioContext *aio_context; |
24d6bffe | 4137 | BlockJob *job = find_block_job(device, &aio_context, errp); |
6e37fb81 | 4138 | |
370521a1 | 4139 | if (!job) { |
370521a1 SH |
4140 | return; |
4141 | } | |
3d948cdf SH |
4142 | |
4143 | if (!has_force) { | |
4144 | force = false; | |
4145 | } | |
4146 | ||
b15de828 | 4147 | if (job_user_paused(&job->job) && !force) { |
f231b88d CR |
4148 | error_setg(errp, "The block job for device '%s' is currently paused", |
4149 | device); | |
3d948cdf | 4150 | goto out; |
8acc72a4 | 4151 | } |
370521a1 SH |
4152 | |
4153 | trace_qmp_block_job_cancel(job); | |
3d70ff53 | 4154 | job_user_cancel(&job->job, force, errp); |
3d948cdf SH |
4155 | out: |
4156 | aio_context_release(aio_context); | |
370521a1 | 4157 | } |
fb5458cd | 4158 | |
6e37fb81 PB |
4159 | void qmp_block_job_pause(const char *device, Error **errp) |
4160 | { | |
3d948cdf | 4161 | AioContext *aio_context; |
24d6bffe | 4162 | BlockJob *job = find_block_job(device, &aio_context, errp); |
6e37fb81 | 4163 | |
0ec4dfb8 | 4164 | if (!job) { |
6e37fb81 PB |
4165 | return; |
4166 | } | |
4167 | ||
4168 | trace_qmp_block_job_pause(job); | |
b15de828 | 4169 | job_user_pause(&job->job, errp); |
3d948cdf | 4170 | aio_context_release(aio_context); |
6e37fb81 PB |
4171 | } |
4172 | ||
4173 | void qmp_block_job_resume(const char *device, Error **errp) | |
4174 | { | |
3d948cdf | 4175 | AioContext *aio_context; |
24d6bffe | 4176 | BlockJob *job = find_block_job(device, &aio_context, errp); |
6e37fb81 | 4177 | |
0ec4dfb8 | 4178 | if (!job) { |
6e37fb81 PB |
4179 | return; |
4180 | } | |
4181 | ||
4182 | trace_qmp_block_job_resume(job); | |
b15de828 | 4183 | job_user_resume(&job->job, errp); |
3d948cdf | 4184 | aio_context_release(aio_context); |
6e37fb81 PB |
4185 | } |
4186 | ||
aeae883b PB |
4187 | void qmp_block_job_complete(const char *device, Error **errp) |
4188 | { | |
3d948cdf | 4189 | AioContext *aio_context; |
24d6bffe | 4190 | BlockJob *job = find_block_job(device, &aio_context, errp); |
aeae883b PB |
4191 | |
4192 | if (!job) { | |
aeae883b PB |
4193 | return; |
4194 | } | |
4195 | ||
4196 | trace_qmp_block_job_complete(job); | |
3453d972 | 4197 | job_complete(&job->job, errp); |
3d948cdf | 4198 | aio_context_release(aio_context); |
aeae883b PB |
4199 | } |
4200 | ||
11b61fbc JS |
4201 | void qmp_block_job_finalize(const char *id, Error **errp) |
4202 | { | |
4203 | AioContext *aio_context; | |
4204 | BlockJob *job = find_block_job(id, &aio_context, errp); | |
4205 | ||
4206 | if (!job) { | |
4207 | return; | |
4208 | } | |
4209 | ||
4210 | trace_qmp_block_job_finalize(job); | |
7eaa8fb5 | 4211 | job_finalize(&job->job, errp); |
11b61fbc JS |
4212 | aio_context_release(aio_context); |
4213 | } | |
4214 | ||
75f71059 JS |
4215 | void qmp_block_job_dismiss(const char *id, Error **errp) |
4216 | { | |
4217 | AioContext *aio_context; | |
5f9a6a08 KW |
4218 | BlockJob *bjob = find_block_job(id, &aio_context, errp); |
4219 | Job *job; | |
75f71059 | 4220 | |
5f9a6a08 | 4221 | if (!bjob) { |
75f71059 JS |
4222 | return; |
4223 | } | |
4224 | ||
5f9a6a08 KW |
4225 | trace_qmp_block_job_dismiss(bjob); |
4226 | job = &bjob->job; | |
4227 | job_dismiss(&job, errp); | |
75f71059 JS |
4228 | aio_context_release(aio_context); |
4229 | } | |
4230 | ||
fa40e656 JC |
4231 | void qmp_change_backing_file(const char *device, |
4232 | const char *image_node_name, | |
4233 | const char *backing_file, | |
4234 | Error **errp) | |
4235 | { | |
4236 | BlockDriverState *bs = NULL; | |
729962f6 | 4237 | AioContext *aio_context; |
fa40e656 JC |
4238 | BlockDriverState *image_bs = NULL; |
4239 | Error *local_err = NULL; | |
4240 | bool ro; | |
fa40e656 JC |
4241 | int ret; |
4242 | ||
7b5dca3f KW |
4243 | bs = qmp_get_root_bs(device, errp); |
4244 | if (!bs) { | |
fa40e656 JC |
4245 | return; |
4246 | } | |
4247 | ||
7b5dca3f | 4248 | aio_context = bdrv_get_aio_context(bs); |
729962f6 SH |
4249 | aio_context_acquire(aio_context); |
4250 | ||
fa40e656 JC |
4251 | image_bs = bdrv_lookup_bs(NULL, image_node_name, &local_err); |
4252 | if (local_err) { | |
4253 | error_propagate(errp, local_err); | |
729962f6 | 4254 | goto out; |
fa40e656 JC |
4255 | } |
4256 | ||
4257 | if (!image_bs) { | |
4258 | error_setg(errp, "image file not found"); | |
729962f6 | 4259 | goto out; |
fa40e656 JC |
4260 | } |
4261 | ||
4262 | if (bdrv_find_base(image_bs) == image_bs) { | |
4263 | error_setg(errp, "not allowing backing file change on an image " | |
4264 | "without a backing file"); | |
729962f6 | 4265 | goto out; |
fa40e656 JC |
4266 | } |
4267 | ||
4268 | /* even though we are not necessarily operating on bs, we need it to | |
4269 | * determine if block ops are currently prohibited on the chain */ | |
4270 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_CHANGE, errp)) { | |
729962f6 | 4271 | goto out; |
fa40e656 JC |
4272 | } |
4273 | ||
4274 | /* final sanity check */ | |
4275 | if (!bdrv_chain_contains(bs, image_bs)) { | |
4276 | error_setg(errp, "'%s' and image file are not in the same chain", | |
4277 | device); | |
729962f6 | 4278 | goto out; |
fa40e656 JC |
4279 | } |
4280 | ||
4281 | /* if not r/w, reopen to make r/w */ | |
fa40e656 JC |
4282 | ro = bdrv_is_read_only(image_bs); |
4283 | ||
4284 | if (ro) { | |
051a60f6 | 4285 | if (bdrv_reopen_set_read_only(image_bs, false, errp) != 0) { |
729962f6 | 4286 | goto out; |
fa40e656 JC |
4287 | } |
4288 | } | |
4289 | ||
4290 | ret = bdrv_change_backing_file(image_bs, backing_file, | |
4291 | image_bs->drv ? image_bs->drv->format_name : ""); | |
4292 | ||
4293 | if (ret < 0) { | |
4294 | error_setg_errno(errp, -ret, "Could not change backing file to '%s'", | |
4295 | backing_file); | |
4296 | /* don't exit here, so we can try to restore open flags if | |
4297 | * appropriate */ | |
4298 | } | |
4299 | ||
4300 | if (ro) { | |
051a60f6 | 4301 | bdrv_reopen_set_read_only(image_bs, true, &local_err); |
621ff94d | 4302 | error_propagate(errp, local_err); |
fa40e656 | 4303 | } |
729962f6 SH |
4304 | |
4305 | out: | |
4306 | aio_context_release(aio_context); | |
fa40e656 JC |
4307 | } |
4308 | ||
abb21ac3 KW |
4309 | void hmp_drive_add_node(Monitor *mon, const char *optstr) |
4310 | { | |
4311 | QemuOpts *opts; | |
4312 | QDict *qdict; | |
4313 | Error *local_err = NULL; | |
4314 | ||
4315 | opts = qemu_opts_parse_noisily(&qemu_drive_opts, optstr, false); | |
4316 | if (!opts) { | |
4317 | return; | |
4318 | } | |
4319 | ||
4320 | qdict = qemu_opts_to_qdict(opts, NULL); | |
4321 | ||
4322 | if (!qdict_get_try_str(qdict, "node-name")) { | |
cb3e7f08 | 4323 | qobject_unref(qdict); |
abb21ac3 KW |
4324 | error_report("'node-name' needs to be specified"); |
4325 | goto out; | |
4326 | } | |
4327 | ||
4328 | BlockDriverState *bs = bds_tree_init(qdict, &local_err); | |
4329 | if (!bs) { | |
4330 | error_report_err(local_err); | |
4331 | goto out; | |
4332 | } | |
4333 | ||
4334 | QTAILQ_INSERT_TAIL(&monitor_bdrv_states, bs, monitor_list); | |
4335 | ||
4336 | out: | |
4337 | qemu_opts_del(opts); | |
4338 | } | |
4339 | ||
d26c9a15 KW |
4340 | void qmp_blockdev_add(BlockdevOptions *options, Error **errp) |
4341 | { | |
be4b67bc | 4342 | BlockDriverState *bs; |
d26c9a15 | 4343 | QObject *obj; |
7d5e199a | 4344 | Visitor *v = qobject_output_visitor_new(&obj); |
d26c9a15 | 4345 | QDict *qdict; |
d26c9a15 KW |
4346 | Error *local_err = NULL; |
4347 | ||
3b098d56 | 4348 | visit_type_BlockdevOptions(v, NULL, &options, &local_err); |
84d18f06 | 4349 | if (local_err) { |
d26c9a15 KW |
4350 | error_propagate(errp, local_err); |
4351 | goto fail; | |
4352 | } | |
4353 | ||
3b098d56 | 4354 | visit_complete(v, &obj); |
7dc847eb | 4355 | qdict = qobject_to(QDict, obj); |
d26c9a15 KW |
4356 | |
4357 | qdict_flatten(qdict); | |
4358 | ||
9ec8873e KW |
4359 | if (!qdict_get_try_str(qdict, "node-name")) { |
4360 | error_setg(errp, "'node-name' must be specified for the root node"); | |
4361 | goto fail; | |
4362 | } | |
9c4218e9 | 4363 | |
9ec8873e KW |
4364 | bs = bds_tree_init(qdict, errp); |
4365 | if (!bs) { | |
4366 | goto fail; | |
d26c9a15 KW |
4367 | } |
4368 | ||
9ec8873e KW |
4369 | QTAILQ_INSERT_TAIL(&monitor_bdrv_states, bs, monitor_list); |
4370 | ||
d26c9a15 | 4371 | fail: |
3b098d56 | 4372 | visit_free(v); |
d26c9a15 KW |
4373 | } |
4374 | ||
1479c730 AG |
4375 | void qmp_x_blockdev_reopen(BlockdevOptions *options, Error **errp) |
4376 | { | |
4377 | BlockDriverState *bs; | |
4378 | AioContext *ctx; | |
4379 | QObject *obj; | |
4380 | Visitor *v = qobject_output_visitor_new(&obj); | |
4381 | Error *local_err = NULL; | |
4382 | BlockReopenQueue *queue; | |
4383 | QDict *qdict; | |
4384 | ||
4385 | /* Check for the selected node name */ | |
4386 | if (!options->has_node_name) { | |
4387 | error_setg(errp, "Node name not specified"); | |
4388 | goto fail; | |
4389 | } | |
4390 | ||
4391 | bs = bdrv_find_node(options->node_name); | |
4392 | if (!bs) { | |
4393 | error_setg(errp, "Cannot find node named '%s'", options->node_name); | |
4394 | goto fail; | |
4395 | } | |
4396 | ||
4397 | /* Put all options in a QDict and flatten it */ | |
4398 | visit_type_BlockdevOptions(v, NULL, &options, &local_err); | |
4399 | if (local_err) { | |
4400 | error_propagate(errp, local_err); | |
4401 | goto fail; | |
4402 | } | |
4403 | ||
4404 | visit_complete(v, &obj); | |
4405 | qdict = qobject_to(QDict, obj); | |
4406 | ||
4407 | qdict_flatten(qdict); | |
4408 | ||
4409 | /* Perform the reopen operation */ | |
4410 | ctx = bdrv_get_aio_context(bs); | |
4411 | aio_context_acquire(ctx); | |
4412 | bdrv_subtree_drained_begin(bs); | |
4413 | queue = bdrv_reopen_queue(NULL, bs, qdict, false); | |
4414 | bdrv_reopen_multiple(queue, errp); | |
4415 | bdrv_subtree_drained_end(bs); | |
4416 | aio_context_release(ctx); | |
4417 | ||
4418 | fail: | |
4419 | visit_free(v); | |
4420 | } | |
4421 | ||
79b7a77e | 4422 | void qmp_blockdev_del(const char *node_name, Error **errp) |
81b936ae AG |
4423 | { |
4424 | AioContext *aio_context; | |
81b936ae AG |
4425 | BlockDriverState *bs; |
4426 | ||
9ec8873e KW |
4427 | bs = bdrv_find_node(node_name); |
4428 | if (!bs) { | |
4429 | error_setg(errp, "Cannot find node %s", node_name); | |
81b936ae AG |
4430 | return; |
4431 | } | |
9ec8873e KW |
4432 | if (bdrv_has_blk(bs)) { |
4433 | error_setg(errp, "Node %s is in use", node_name); | |
4434 | return; | |
81b936ae | 4435 | } |
9ec8873e | 4436 | aio_context = bdrv_get_aio_context(bs); |
81b936ae AG |
4437 | aio_context_acquire(aio_context); |
4438 | ||
9ec8873e KW |
4439 | if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_DRIVE_DEL, errp)) { |
4440 | goto out; | |
4441 | } | |
9c4218e9 | 4442 | |
70537ed5 | 4443 | if (!QTAILQ_IN_USE(bs, monitor_list)) { |
9ec8873e KW |
4444 | error_setg(errp, "Node %s is not owned by the monitor", |
4445 | bs->node_name); | |
4446 | goto out; | |
81b936ae AG |
4447 | } |
4448 | ||
9ec8873e KW |
4449 | if (bs->refcnt > 1) { |
4450 | error_setg(errp, "Block device %s is in use", | |
4451 | bdrv_get_device_or_node_name(bs)); | |
4452 | goto out; | |
81b936ae AG |
4453 | } |
4454 | ||
9ec8873e KW |
4455 | QTAILQ_REMOVE(&monitor_bdrv_states, bs, monitor_list); |
4456 | bdrv_unref(bs); | |
4457 | ||
81b936ae AG |
4458 | out: |
4459 | aio_context_release(aio_context); | |
4460 | } | |
4461 | ||
7f821597 WC |
4462 | static BdrvChild *bdrv_find_child(BlockDriverState *parent_bs, |
4463 | const char *child_name) | |
4464 | { | |
4465 | BdrvChild *child; | |
4466 | ||
4467 | QLIST_FOREACH(child, &parent_bs->children, next) { | |
4468 | if (strcmp(child->name, child_name) == 0) { | |
4469 | return child; | |
4470 | } | |
4471 | } | |
4472 | ||
4473 | return NULL; | |
4474 | } | |
4475 | ||
4476 | void qmp_x_blockdev_change(const char *parent, bool has_child, | |
4477 | const char *child, bool has_node, | |
4478 | const char *node, Error **errp) | |
4479 | { | |
4480 | BlockDriverState *parent_bs, *new_bs = NULL; | |
4481 | BdrvChild *p_child; | |
4482 | ||
4483 | parent_bs = bdrv_lookup_bs(parent, parent, errp); | |
4484 | if (!parent_bs) { | |
4485 | return; | |
4486 | } | |
4487 | ||
4488 | if (has_child == has_node) { | |
4489 | if (has_child) { | |
4490 | error_setg(errp, "The parameters child and node are in conflict"); | |
4491 | } else { | |
4492 | error_setg(errp, "Either child or node must be specified"); | |
4493 | } | |
4494 | return; | |
4495 | } | |
4496 | ||
4497 | if (has_child) { | |
4498 | p_child = bdrv_find_child(parent_bs, child); | |
4499 | if (!p_child) { | |
4500 | error_setg(errp, "Node '%s' does not have child '%s'", | |
4501 | parent, child); | |
4502 | return; | |
4503 | } | |
4504 | bdrv_del_child(parent_bs, p_child, errp); | |
4505 | } | |
4506 | ||
4507 | if (has_node) { | |
4508 | new_bs = bdrv_find_node(node); | |
4509 | if (!new_bs) { | |
4510 | error_setg(errp, "Node '%s' not found", node); | |
4511 | return; | |
4512 | } | |
4513 | bdrv_add_child(parent_bs, new_bs, errp); | |
4514 | } | |
4515 | } | |
4516 | ||
fea68bb6 | 4517 | BlockJobInfoList *qmp_query_block_jobs(Error **errp) |
fb5458cd | 4518 | { |
fea68bb6 | 4519 | BlockJobInfoList *head = NULL, **p_next = &head; |
f0f55ded | 4520 | BlockJob *job; |
fb5458cd | 4521 | |
f0f55ded | 4522 | for (job = block_job_next(NULL); job; job = block_job_next(job)) { |
559b935f JS |
4523 | BlockJobInfoList *elem; |
4524 | AioContext *aio_context; | |
69691e72 | 4525 | |
559b935f JS |
4526 | if (block_job_is_internal(job)) { |
4527 | continue; | |
4528 | } | |
4529 | elem = g_new0(BlockJobInfoList, 1); | |
4530 | aio_context = blk_get_aio_context(job->blk); | |
69691e72 | 4531 | aio_context_acquire(aio_context); |
559b935f | 4532 | elem->value = block_job_query(job, errp); |
69691e72 | 4533 | aio_context_release(aio_context); |
559b935f JS |
4534 | if (!elem->value) { |
4535 | g_free(elem); | |
4536 | qapi_free_BlockJobInfoList(head); | |
4537 | return NULL; | |
4538 | } | |
f0f55ded AG |
4539 | *p_next = elem; |
4540 | p_next = &elem->next; | |
fb5458cd | 4541 | } |
fb5458cd | 4542 | |
fea68bb6 | 4543 | return head; |
fb5458cd | 4544 | } |
4d454574 | 4545 | |
ca00bbb1 | 4546 | void qmp_x_blockdev_set_iothread(const char *node_name, StrOrNull *iothread, |
882e9b89 | 4547 | bool has_force, bool force, Error **errp) |
ca00bbb1 SH |
4548 | { |
4549 | AioContext *old_context; | |
4550 | AioContext *new_context; | |
4551 | BlockDriverState *bs; | |
4552 | ||
4553 | bs = bdrv_find_node(node_name); | |
4554 | if (!bs) { | |
4555 | error_setg(errp, "Cannot find node %s", node_name); | |
4556 | return; | |
4557 | } | |
4558 | ||
882e9b89 SH |
4559 | /* Protects against accidents. */ |
4560 | if (!(has_force && force) && bdrv_has_blk(bs)) { | |
4561 | error_setg(errp, "Node %s is associated with a BlockBackend and could " | |
4562 | "be in use (use force=true to override this check)", | |
4563 | node_name); | |
ca00bbb1 SH |
4564 | return; |
4565 | } | |
4566 | ||
4567 | if (iothread->type == QTYPE_QSTRING) { | |
4568 | IOThread *obj = iothread_by_id(iothread->u.s); | |
4569 | if (!obj) { | |
4570 | error_setg(errp, "Cannot find iothread %s", iothread->u.s); | |
4571 | return; | |
4572 | } | |
4573 | ||
4574 | new_context = iothread_get_aio_context(obj); | |
4575 | } else { | |
4576 | new_context = qemu_get_aio_context(); | |
4577 | } | |
4578 | ||
4579 | old_context = bdrv_get_aio_context(bs); | |
4580 | aio_context_acquire(old_context); | |
4581 | ||
8ed7d42f | 4582 | bdrv_try_set_aio_context(bs, new_context, errp); |
ca00bbb1 SH |
4583 | |
4584 | aio_context_release(old_context); | |
4585 | } | |
4586 | ||
cb8aac37 | 4587 | void qmp_block_latency_histogram_set( |
af0a2265 | 4588 | const char *id, |
7e5c776d VSO |
4589 | bool has_boundaries, uint64List *boundaries, |
4590 | bool has_boundaries_read, uint64List *boundaries_read, | |
4591 | bool has_boundaries_write, uint64List *boundaries_write, | |
4592 | bool has_boundaries_flush, uint64List *boundaries_flush, | |
4593 | Error **errp) | |
4594 | { | |
af0a2265 | 4595 | BlockBackend *blk = qmp_get_blk(NULL, id, errp); |
7e5c776d | 4596 | BlockAcctStats *stats; |
63d5341f | 4597 | int ret; |
7e5c776d VSO |
4598 | |
4599 | if (!blk) { | |
7e5c776d VSO |
4600 | return; |
4601 | } | |
af0a2265 | 4602 | |
7e5c776d VSO |
4603 | stats = blk_get_stats(blk); |
4604 | ||
4605 | if (!has_boundaries && !has_boundaries_read && !has_boundaries_write && | |
4606 | !has_boundaries_flush) | |
4607 | { | |
4608 | block_latency_histograms_clear(stats); | |
4609 | return; | |
4610 | } | |
4611 | ||
4612 | if (has_boundaries || has_boundaries_read) { | |
63d5341f | 4613 | ret = block_latency_histogram_set( |
7e5c776d VSO |
4614 | stats, BLOCK_ACCT_READ, |
4615 | has_boundaries_read ? boundaries_read : boundaries); | |
63d5341f | 4616 | if (ret) { |
af0a2265 | 4617 | error_setg(errp, "Device '%s' set read boundaries fail", id); |
63d5341f ZP |
4618 | return; |
4619 | } | |
7e5c776d VSO |
4620 | } |
4621 | ||
4622 | if (has_boundaries || has_boundaries_write) { | |
63d5341f | 4623 | ret = block_latency_histogram_set( |
7e5c776d VSO |
4624 | stats, BLOCK_ACCT_WRITE, |
4625 | has_boundaries_write ? boundaries_write : boundaries); | |
63d5341f | 4626 | if (ret) { |
af0a2265 | 4627 | error_setg(errp, "Device '%s' set write boundaries fail", id); |
63d5341f ZP |
4628 | return; |
4629 | } | |
7e5c776d VSO |
4630 | } |
4631 | ||
4632 | if (has_boundaries || has_boundaries_flush) { | |
63d5341f | 4633 | ret = block_latency_histogram_set( |
7e5c776d VSO |
4634 | stats, BLOCK_ACCT_FLUSH, |
4635 | has_boundaries_flush ? boundaries_flush : boundaries); | |
63d5341f | 4636 | if (ret) { |
af0a2265 | 4637 | error_setg(errp, "Device '%s' set flush boundaries fail", id); |
63d5341f ZP |
4638 | return; |
4639 | } | |
7e5c776d VSO |
4640 | } |
4641 | } | |
4642 | ||
0006383e | 4643 | QemuOptsList qemu_common_drive_opts = { |
4d454574 | 4644 | .name = "drive", |
0006383e | 4645 | .head = QTAILQ_HEAD_INITIALIZER(qemu_common_drive_opts.head), |
4d454574 PB |
4646 | .desc = { |
4647 | { | |
4d454574 PB |
4648 | .name = "snapshot", |
4649 | .type = QEMU_OPT_BOOL, | |
4650 | .help = "enable/disable snapshot mode", | |
4d454574 PB |
4651 | },{ |
4652 | .name = "aio", | |
4653 | .type = QEMU_OPT_STRING, | |
4654 | .help = "host AIO implementation (threads, native)", | |
e4b24b49 KW |
4655 | },{ |
4656 | .name = BDRV_OPT_CACHE_WB, | |
4657 | .type = QEMU_OPT_BOOL, | |
4658 | .help = "Enable writeback mode", | |
4d454574 PB |
4659 | },{ |
4660 | .name = "format", | |
4661 | .type = QEMU_OPT_STRING, | |
4662 | .help = "disk format (raw, qcow2, ...)", | |
4d454574 PB |
4663 | },{ |
4664 | .name = "rerror", | |
4665 | .type = QEMU_OPT_STRING, | |
4666 | .help = "read error action", | |
4667 | },{ | |
4668 | .name = "werror", | |
4669 | .type = QEMU_OPT_STRING, | |
4670 | .help = "write error action", | |
4d454574 | 4671 | },{ |
4e200cf8 | 4672 | .name = BDRV_OPT_READ_ONLY, |
4d454574 PB |
4673 | .type = QEMU_OPT_BOOL, |
4674 | .help = "open drive file as read-only", | |
a2a7862c PJ |
4675 | }, |
4676 | ||
4677 | THROTTLE_OPTS, | |
4678 | ||
4679 | { | |
76f4afb4 AG |
4680 | .name = "throttling.group", |
4681 | .type = QEMU_OPT_STRING, | |
4682 | .help = "name of the block throttling group", | |
4d454574 PB |
4683 | },{ |
4684 | .name = "copy-on-read", | |
4685 | .type = QEMU_OPT_BOOL, | |
4686 | .help = "copy read data from backing file into image file", | |
465bee1d PL |
4687 | },{ |
4688 | .name = "detect-zeroes", | |
4689 | .type = QEMU_OPT_STRING, | |
4690 | .help = "try to optimize zero writes (off, on, unmap)", | |
362e9299 AG |
4691 | },{ |
4692 | .name = "stats-account-invalid", | |
4693 | .type = QEMU_OPT_BOOL, | |
4694 | .help = "whether to account for invalid I/O operations " | |
4695 | "in the statistics", | |
4696 | },{ | |
4697 | .name = "stats-account-failed", | |
4698 | .type = QEMU_OPT_BOOL, | |
4699 | .help = "whether to account for failed I/O operations " | |
4700 | "in the statistics", | |
4d454574 PB |
4701 | }, |
4702 | { /* end of list */ } | |
4703 | }, | |
4704 | }; | |
0006383e KW |
4705 | |
4706 | QemuOptsList qemu_drive_opts = { | |
4707 | .name = "drive", | |
4708 | .head = QTAILQ_HEAD_INITIALIZER(qemu_drive_opts.head), | |
4709 | .desc = { | |
492fdc6f KW |
4710 | /* |
4711 | * no elements => accept any params | |
4712 | * validation will happen later | |
4713 | */ | |
0006383e KW |
4714 | { /* end of list */ } |
4715 | }, | |
4716 | }; |