]> git.proxmox.com Git - mirror_qemu.git/blame - blockdev.c
util/async: Only call icount_notify_exit() if icount is enabled
[mirror_qemu.git] / blockdev.c
CommitLineData
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"
e2c1c34f 38#include "block/dirty-bitmap.h"
609f45ea 39#include "block/qdict.h"
76f4afb4 40#include "block/throttle-groups.h"
83c9089e 41#include "monitor/monitor.h"
d49b6836 42#include "qemu/error-report.h"
1de7afc9 43#include "qemu/option.h"
cdcd4361 44#include "qemu/qemu-print.h"
1de7afc9 45#include "qemu/config-file.h"
9af23989
MA
46#include "qapi/qapi-commands-block.h"
47#include "qapi/qapi-commands-transaction.h"
48#include "qapi/qapi-visit-block-core.h"
452fcdbc 49#include "qapi/qmp/qdict.h"
15280c36 50#include "qapi/qmp/qnum.h"
6b673957 51#include "qapi/qmp/qstring.h"
e688df6b 52#include "qapi/error.h"
cc7a8ea7 53#include "qapi/qmp/qerror.h"
47e6b297 54#include "qapi/qmp/qlist.h"
b3db211f 55#include "qapi/qobject-output-visitor.h"
9c17d615 56#include "sysemu/sysemu.h"
ca00bbb1 57#include "sysemu/iothread.h"
737e150e 58#include "block/block_int.h"
0ab8ed18 59#include "block/trace.h"
54d31236 60#include "sysemu/runstate.h"
b39847a5 61#include "sysemu/replay.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
ebc2752b 67/* Protected by BQL */
89802d5a 68QTAILQ_HEAD(, BlockDriverState) monitor_bdrv_states =
9c4218e9
HR
69 QTAILQ_HEAD_INITIALIZER(monitor_bdrv_states);
70
89802d5a
ML
71void bdrv_set_monitor_owned(BlockDriverState *bs)
72{
b4ad82aa 73 GLOBAL_STATE_CODE();
89802d5a
ML
74 QTAILQ_INSERT_TAIL(&monitor_bdrv_states, bs, monitor_list);
75}
76
1960966d
MA
77static const char *const if_name[IF_COUNT] = {
78 [IF_NONE] = "none",
79 [IF_IDE] = "ide",
80 [IF_SCSI] = "scsi",
81 [IF_FLOPPY] = "floppy",
82 [IF_PFLASH] = "pflash",
83 [IF_MTD] = "mtd",
84 [IF_SD] = "sd",
85 [IF_VIRTIO] = "virtio",
86 [IF_XEN] = "xen",
87};
88
21dff8cf 89static int if_max_devs[IF_COUNT] = {
27d6bf40
MA
90 /*
91 * Do not change these numbers! They govern how drive option
92 * index maps to unit and bus. That mapping is ABI.
93 *
547cb157 94 * All controllers used to implement if=T drives need to support
27d6bf40
MA
95 * if_max_devs[T] units, for any T with if_max_devs[T] != 0.
96 * Otherwise, some index values map to "impossible" bus, unit
97 * values.
98 *
99 * For instance, if you change [IF_SCSI] to 255, -drive
100 * if=scsi,index=12 no longer means bus=1,unit=5, but
101 * bus=0,unit=12. With an lsi53c895a controller (7 units max),
102 * the drive can't be set up. Regression.
103 */
104 [IF_IDE] = 2,
105 [IF_SCSI] = 7,
1960966d
MA
106};
107
21dff8cf
JS
108/**
109 * Boards may call this to offer board-by-board overrides
110 * of the default, global values.
111 */
112void override_max_devs(BlockInterfaceType type, int max_devs)
113{
18e46a03 114 BlockBackend *blk;
21dff8cf
JS
115 DriveInfo *dinfo;
116
c5be7445
EGE
117 GLOBAL_STATE_CODE();
118
21dff8cf
JS
119 if (max_devs <= 0) {
120 return;
121 }
122
18e46a03
MA
123 for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
124 dinfo = blk_legacy_dinfo(blk);
21dff8cf
JS
125 if (dinfo->type == type) {
126 fprintf(stderr, "Cannot override units-per-bus property of"
127 " the %s interface, because a drive of that type has"
128 " already been added.\n", if_name[type]);
129 g_assert_not_reached();
130 }
131 }
132
133 if_max_devs[type] = max_devs;
134}
135
14bafc54
MA
136/*
137 * We automatically delete the drive when a device using it gets
138 * unplugged. Questionable feature, but we can't just drop it.
139 * Device models call blockdev_mark_auto_del() to schedule the
140 * automatic deletion, and generic qdev code calls blockdev_auto_del()
141 * when deletion is actually safe.
142 */
4be74634 143void blockdev_mark_auto_del(BlockBackend *blk)
14bafc54 144{
18e46a03 145 DriveInfo *dinfo = blk_legacy_dinfo(blk);
8164102f 146 BlockJob *job;
14bafc54 147
c5be7445
EGE
148 GLOBAL_STATE_CODE();
149
26f8b3a8 150 if (!dinfo) {
2d246f01
KW
151 return;
152 }
153
880eeec6
EGE
154 JOB_LOCK_GUARD();
155
e2626874
KW
156 do {
157 job = block_job_next_locked(NULL);
158 while (job && (job->job.cancelled ||
159 job->job.deferred_to_main_loop ||
160 !block_job_has_bdrv(job, blk_bs(blk))))
161 {
162 job = block_job_next_locked(job);
163 }
164 if (job) {
165 /*
166 * This drops the job lock temporarily and polls, so we need to
167 * restart processing the list from the start after this.
168 */
880eeec6 169 job_cancel_locked(&job->job, false);
8164102f 170 }
e2626874 171 } while (job);
91fddb0d 172
26f8b3a8 173 dinfo->auto_del = 1;
14bafc54
MA
174}
175
4be74634 176void blockdev_auto_del(BlockBackend *blk)
14bafc54 177{
18e46a03 178 DriveInfo *dinfo = blk_legacy_dinfo(blk);
c5be7445 179 GLOBAL_STATE_CODE();
14bafc54 180
0fc0f1fa 181 if (dinfo && dinfo->auto_del) {
efaa7c4e 182 monitor_remove_blk(blk);
b9fe8a7a 183 blk_unref(blk);
14bafc54
MA
184 }
185}
186
505a7fb1
MA
187static int drive_index_to_bus_id(BlockInterfaceType type, int index)
188{
189 int max_devs = if_max_devs[type];
190 return max_devs ? index / max_devs : 0;
191}
192
193static int drive_index_to_unit_id(BlockInterfaceType type, int index)
194{
195 int max_devs = if_max_devs[type];
196 return max_devs ? index % max_devs : index;
197}
198
2292ddae 199QemuOpts *drive_add(BlockInterfaceType type, int index, const char *file,
5645b0f4 200 const char *optstr)
666daa68 201{
666daa68
MA
202 QemuOpts *opts;
203
c5be7445
EGE
204 GLOBAL_STATE_CODE();
205
cc67f28e 206 opts = qemu_opts_parse_noisily(qemu_find_opts("drive"), optstr, false);
666daa68
MA
207 if (!opts) {
208 return NULL;
209 }
2292ddae 210 if (type != IF_DEFAULT) {
f43e47db 211 qemu_opt_set(opts, "if", if_name[type], &error_abort);
2292ddae
MA
212 }
213 if (index >= 0) {
a8b18f8f 214 qemu_opt_set_number(opts, "index", index, &error_abort);
2292ddae 215 }
666daa68 216 if (file)
f43e47db 217 qemu_opt_set(opts, "file", file, &error_abort);
666daa68
MA
218 return opts;
219}
220
221DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit)
222{
18e46a03 223 BlockBackend *blk;
666daa68
MA
224 DriveInfo *dinfo;
225
c5be7445
EGE
226 GLOBAL_STATE_CODE();
227
18e46a03
MA
228 for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
229 dinfo = blk_legacy_dinfo(blk);
230 if (dinfo && dinfo->type == type
231 && dinfo->bus == bus && dinfo->unit == unit) {
666daa68 232 return dinfo;
18e46a03 233 }
666daa68
MA
234 }
235
236 return NULL;
237}
238
fe9f70a1
MA
239/*
240 * Check board claimed all -drive that are meant to be claimed.
241 * Fatal error if any remain unclaimed.
242 */
720b8dc0 243void drive_check_orphaned(void)
a66c9dc7 244{
18e46a03 245 BlockBackend *blk;
a66c9dc7 246 DriveInfo *dinfo;
664cc623 247 Location loc;
720b8dc0 248 bool orphans = false;
a66c9dc7 249
c5be7445
EGE
250 GLOBAL_STATE_CODE();
251
18e46a03
MA
252 for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
253 dinfo = blk_legacy_dinfo(blk);
fe9f70a1
MA
254 /*
255 * Ignore default drives, because we create certain default
256 * drives unconditionally, then leave them unclaimed. Not the
257 * users fault.
d3256f88
DW
258 * Ignore IF_VIRTIO or IF_XEN, because it gets desugared into
259 * -device, so we can leave failing to -device.
fe9f70a1
MA
260 * Ignore IF_NONE, because leaving unclaimed IF_NONE remains
261 * available for device_add is a feature.
262 */
263 if (dinfo->is_default || dinfo->type == IF_VIRTIO
d3256f88 264 || dinfo->type == IF_XEN || dinfo->type == IF_NONE) {
a1b40bda
MA
265 continue;
266 }
267 if (!blk_get_attached_dev(blk)) {
664cc623
MA
268 loc_push_none(&loc);
269 qemu_opts_loc_restore(dinfo->opts);
720b8dc0 270 error_report("machine type does not support"
664cc623
MA
271 " if=%s,bus=%d,unit=%d",
272 if_name[dinfo->type], dinfo->bus, dinfo->unit);
273 loc_pop(&loc);
720b8dc0 274 orphans = true;
a66c9dc7
JS
275 }
276 }
277
720b8dc0
MA
278 if (orphans) {
279 exit(1);
280 }
a66c9dc7
JS
281}
282
f1bd51ac
MA
283DriveInfo *drive_get_by_index(BlockInterfaceType type, int index)
284{
c5be7445 285 GLOBAL_STATE_CODE();
f1bd51ac
MA
286 return drive_get(type,
287 drive_index_to_bus_id(type, index),
288 drive_index_to_unit_id(type, index));
289}
290
666daa68
MA
291int drive_get_max_bus(BlockInterfaceType type)
292{
293 int max_bus;
18e46a03 294 BlockBackend *blk;
666daa68
MA
295 DriveInfo *dinfo;
296
c5be7445
EGE
297 GLOBAL_STATE_CODE();
298
666daa68 299 max_bus = -1;
18e46a03
MA
300 for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
301 dinfo = blk_legacy_dinfo(blk);
302 if (dinfo && dinfo->type == type && dinfo->bus > max_bus) {
666daa68 303 max_bus = dinfo->bus;
18e46a03 304 }
666daa68
MA
305 }
306 return max_bus;
307}
308
666daa68
MA
309static void bdrv_format_print(void *opaque, const char *name)
310{
cdcd4361 311 qemu_printf(" %s", name);
666daa68
MA
312}
313
aa398a5c
SH
314typedef struct {
315 QEMUBH *bh;
fa510ebf
FZ
316 BlockDriverState *bs;
317} BDRVPutRefBH;
aa398a5c 318
b681072d 319static int parse_block_error_action(const char *buf, bool is_read, Error **errp)
666daa68
MA
320{
321 if (!strcmp(buf, "ignore")) {
92aa5c6d 322 return BLOCKDEV_ON_ERROR_IGNORE;
666daa68 323 } else if (!is_read && !strcmp(buf, "enospc")) {
92aa5c6d 324 return BLOCKDEV_ON_ERROR_ENOSPC;
666daa68 325 } else if (!strcmp(buf, "stop")) {
92aa5c6d 326 return BLOCKDEV_ON_ERROR_STOP;
666daa68 327 } else if (!strcmp(buf, "report")) {
92aa5c6d 328 return BLOCKDEV_ON_ERROR_REPORT;
666daa68 329 } else {
b681072d
KW
330 error_setg(errp, "'%s' invalid %s error action",
331 buf, is_read ? "read" : "write");
666daa68
MA
332 return -1;
333 }
334}
335
40119eff
AG
336static bool parse_stats_intervals(BlockAcctStats *stats, QList *intervals,
337 Error **errp)
338{
339 const QListEntry *entry;
340 for (entry = qlist_first(intervals); entry; entry = qlist_next(entry)) {
341 switch (qobject_type(entry->value)) {
342
343 case QTYPE_QSTRING: {
bd1386cc 344 uint64_t length;
7dc847eb
HR
345 const char *str = qstring_get_str(qobject_to(QString,
346 entry->value));
bd1386cc 347 if (parse_uint_full(str, 10, &length) == 0 &&
40119eff
AG
348 length > 0 && length <= UINT_MAX) {
349 block_acct_add_interval(stats, (unsigned) length);
350 } else {
351 error_setg(errp, "Invalid interval length: %s", str);
352 return false;
353 }
354 break;
355 }
356
01b2ffce 357 case QTYPE_QNUM: {
7dc847eb 358 int64_t length = qnum_get_int(qobject_to(QNum, entry->value));
01b2ffce 359
40119eff
AG
360 if (length > 0 && length <= UINT_MAX) {
361 block_acct_add_interval(stats, (unsigned) length);
362 } else {
363 error_setg(errp, "Invalid interval length: %" PRId64, length);
364 return false;
365 }
366 break;
367 }
368
369 default:
370 error_setg(errp, "The specification of stats-intervals is invalid");
371 return false;
372 }
373 }
374 return true;
375}
376
33cb7dc8
KW
377typedef enum { MEDIA_DISK, MEDIA_CDROM } DriveMediaType;
378
fbf8175e
HR
379/* All parameters but @opts are optional and may be set to NULL. */
380static void extract_common_blockdev_options(QemuOpts *opts, int *bdrv_flags,
381 const char **throttling_group, ThrottleConfig *throttle_cfg,
382 BlockdevDetectZeroesOptions *detect_zeroes, Error **errp)
383{
fbf8175e
HR
384 Error *local_error = NULL;
385 const char *aio;
386
387 if (bdrv_flags) {
fbf8175e
HR
388 if (qemu_opt_get_bool(opts, "copy-on-read", false)) {
389 *bdrv_flags |= BDRV_O_COPY_ON_READ;
390 }
391
fbf8175e 392 if ((aio = qemu_opt_get(opts, "aio")) != NULL) {
f80f2673
AM
393 if (bdrv_parse_aio(aio, bdrv_flags) < 0) {
394 error_setg(errp, "invalid aio option");
395 return;
fbf8175e
HR
396 }
397 }
398 }
399
400 /* disk I/O throttling */
401 if (throttling_group) {
402 *throttling_group = qemu_opt_get(opts, "throttling.group");
403 }
404
405 if (throttle_cfg) {
1588ab5d 406 throttle_config_init(throttle_cfg);
fbf8175e
HR
407 throttle_cfg->buckets[THROTTLE_BPS_TOTAL].avg =
408 qemu_opt_get_number(opts, "throttling.bps-total", 0);
409 throttle_cfg->buckets[THROTTLE_BPS_READ].avg =
410 qemu_opt_get_number(opts, "throttling.bps-read", 0);
411 throttle_cfg->buckets[THROTTLE_BPS_WRITE].avg =
412 qemu_opt_get_number(opts, "throttling.bps-write", 0);
413 throttle_cfg->buckets[THROTTLE_OPS_TOTAL].avg =
414 qemu_opt_get_number(opts, "throttling.iops-total", 0);
415 throttle_cfg->buckets[THROTTLE_OPS_READ].avg =
416 qemu_opt_get_number(opts, "throttling.iops-read", 0);
417 throttle_cfg->buckets[THROTTLE_OPS_WRITE].avg =
418 qemu_opt_get_number(opts, "throttling.iops-write", 0);
419
420 throttle_cfg->buckets[THROTTLE_BPS_TOTAL].max =
421 qemu_opt_get_number(opts, "throttling.bps-total-max", 0);
422 throttle_cfg->buckets[THROTTLE_BPS_READ].max =
423 qemu_opt_get_number(opts, "throttling.bps-read-max", 0);
424 throttle_cfg->buckets[THROTTLE_BPS_WRITE].max =
425 qemu_opt_get_number(opts, "throttling.bps-write-max", 0);
426 throttle_cfg->buckets[THROTTLE_OPS_TOTAL].max =
427 qemu_opt_get_number(opts, "throttling.iops-total-max", 0);
428 throttle_cfg->buckets[THROTTLE_OPS_READ].max =
429 qemu_opt_get_number(opts, "throttling.iops-read-max", 0);
430 throttle_cfg->buckets[THROTTLE_OPS_WRITE].max =
431 qemu_opt_get_number(opts, "throttling.iops-write-max", 0);
432
8a0fc18d
AG
433 throttle_cfg->buckets[THROTTLE_BPS_TOTAL].burst_length =
434 qemu_opt_get_number(opts, "throttling.bps-total-max-length", 1);
435 throttle_cfg->buckets[THROTTLE_BPS_READ].burst_length =
436 qemu_opt_get_number(opts, "throttling.bps-read-max-length", 1);
437 throttle_cfg->buckets[THROTTLE_BPS_WRITE].burst_length =
438 qemu_opt_get_number(opts, "throttling.bps-write-max-length", 1);
439 throttle_cfg->buckets[THROTTLE_OPS_TOTAL].burst_length =
440 qemu_opt_get_number(opts, "throttling.iops-total-max-length", 1);
441 throttle_cfg->buckets[THROTTLE_OPS_READ].burst_length =
442 qemu_opt_get_number(opts, "throttling.iops-read-max-length", 1);
443 throttle_cfg->buckets[THROTTLE_OPS_WRITE].burst_length =
444 qemu_opt_get_number(opts, "throttling.iops-write-max-length", 1);
445
fbf8175e
HR
446 throttle_cfg->op_size =
447 qemu_opt_get_number(opts, "throttling.iops-size", 0);
448
d5851089 449 if (!throttle_is_valid(throttle_cfg, errp)) {
fbf8175e
HR
450 return;
451 }
452 }
453
454 if (detect_zeroes) {
455 *detect_zeroes =
f7abe0ec 456 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
fbf8175e 457 qemu_opt_get(opts, "detect-zeroes"),
fbf8175e
HR
458 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
459 &local_error);
460 if (local_error) {
461 error_propagate(errp, local_error);
462 return;
463 }
fbf8175e
HR
464 }
465}
466
b2aaf354
DL
467static OnOffAuto account_get_opt(QemuOpts *opts, const char *name)
468{
469 if (!qemu_opt_find(opts, name)) {
470 return ON_OFF_AUTO_AUTO;
471 }
472 if (qemu_opt_get_bool(opts, name, true)) {
473 return ON_OFF_AUTO_ON;
474 }
475 return ON_OFF_AUTO_OFF;
476}
477
f298d071 478/* Takes the ownership of bs_opts */
18e46a03
MA
479static BlockBackend *blockdev_init(const char *file, QDict *bs_opts,
480 Error **errp)
666daa68
MA
481{
482 const char *buf;
666daa68
MA
483 int bdrv_flags = 0;
484 int on_read_error, on_write_error;
b2aaf354 485 OnOffAuto account_invalid, account_failed;
f87a0e29 486 bool writethrough, read_only;
26f54e9a 487 BlockBackend *blk;
a0f1eab1 488 BlockDriverState *bs;
cc0681c4 489 ThrottleConfig cfg;
666daa68 490 int snapshot = 0;
c546194f 491 Error *error = NULL;
0006383e 492 QemuOpts *opts;
40119eff
AG
493 QDict *interval_dict = NULL;
494 QList *interval_list = NULL;
0006383e 495 const char *id;
fbf8175e
HR
496 BlockdevDetectZeroesOptions detect_zeroes =
497 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
498 const char *throttling_group = NULL;
666daa68 499
f298d071
KW
500 /* Check common options by copying from bs_opts to opts, all other options
501 * stay in bs_opts for processing by bdrv_open(). */
502 id = qdict_get_try_str(bs_opts, "id");
c6ecec43
MA
503 opts = qemu_opts_create(&qemu_common_drive_opts, id, 1, errp);
504 if (!opts) {
6376f952 505 goto err_no_opts;
0006383e
KW
506 }
507
668f62ec 508 if (!qemu_opts_absorb_qdict(opts, bs_opts, errp)) {
ec9c10d2 509 goto early_err;
0006383e
KW
510 }
511
512 if (id) {
513 qdict_del(bs_opts, "id");
514 }
515
666daa68 516 /* extract parameters */
666daa68 517 snapshot = qemu_opt_get_bool(opts, "snapshot", 0);
666daa68 518
b2aaf354
DL
519 account_invalid = account_get_opt(opts, "stats-account-invalid");
520 account_failed = account_get_opt(opts, "stats-account-failed");
362e9299 521
e4b24b49
KW
522 writethrough = !qemu_opt_get_bool(opts, BDRV_OPT_CACHE_WB, true);
523
ff356ee4
AG
524 id = qemu_opts_id(opts);
525
40119eff
AG
526 qdict_extract_subqdict(bs_opts, &interval_dict, "stats-intervals.");
527 qdict_array_split(interval_dict, &interval_list);
528
529 if (qdict_size(interval_dict) != 0) {
530 error_setg(errp, "Invalid option stats-intervals.%s",
531 qdict_first(interval_dict)->key);
532 goto early_err;
533 }
2be5506f 534
fbf8175e
HR
535 extract_common_blockdev_options(opts, &bdrv_flags, &throttling_group, &cfg,
536 &detect_zeroes, &error);
537 if (error) {
538 error_propagate(errp, error);
539 goto early_err;
666daa68 540 }
666daa68
MA
541
542 if ((buf = qemu_opt_get(opts, "format")) != NULL) {
c8057f95 543 if (is_help_option(buf)) {
cdcd4361 544 qemu_printf("Supported formats:");
9ac404c5 545 bdrv_iterate_format(bdrv_format_print, NULL, false);
cdcd4361 546 qemu_printf("\nSupported formats (read-only):");
9ac404c5 547 bdrv_iterate_format(bdrv_format_print, NULL, true);
cdcd4361 548 qemu_printf("\n");
ec9c10d2 549 goto early_err;
666daa68 550 }
74fe54f2 551
e4342ce5
HR
552 if (qdict_haskey(bs_opts, "driver")) {
553 error_setg(errp, "Cannot specify both 'driver' and 'format'");
ec9c10d2 554 goto early_err;
6db5f5d6 555 }
46f5ac20 556 qdict_put_str(bs_opts, "driver", buf);
666daa68
MA
557 }
558
92aa5c6d 559 on_write_error = BLOCKDEV_ON_ERROR_ENOSPC;
666daa68 560 if ((buf = qemu_opt_get(opts, "werror")) != NULL) {
b681072d 561 on_write_error = parse_block_error_action(buf, 0, &error);
84d18f06 562 if (error) {
b681072d 563 error_propagate(errp, error);
ec9c10d2 564 goto early_err;
666daa68
MA
565 }
566 }
567
92aa5c6d 568 on_read_error = BLOCKDEV_ON_ERROR_REPORT;
666daa68 569 if ((buf = qemu_opt_get(opts, "rerror")) != NULL) {
b681072d 570 on_read_error = parse_block_error_action(buf, 1, &error);
84d18f06 571 if (error) {
b681072d 572 error_propagate(errp, error);
ec9c10d2 573 goto early_err;
666daa68
MA
574 }
575 }
576
5ec18f8c 577 if (snapshot) {
91a097e7 578 bdrv_flags |= BDRV_O_SNAPSHOT;
5ec18f8c
HR
579 }
580
f87a0e29
AG
581 read_only = qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false);
582
326642bc 583 /* init */
39c4ae94 584 if ((!file || !*file) && !qdict_size(bs_opts)) {
5ec18f8c
HR
585 BlockBackendRootState *blk_rs;
586
d861ab3a 587 blk = blk_new(qemu_get_aio_context(), 0, BLK_PERM_ALL);
5ec18f8c 588 blk_rs = blk_get_root_state(blk);
260242a8 589 blk_rs->open_flags = bdrv_flags | (read_only ? 0 : BDRV_O_RDWR);
5ec18f8c
HR
590 blk_rs->detect_zeroes = detect_zeroes;
591
cb3e7f08 592 qobject_unref(bs_opts);
e4342ce5
HR
593 } else {
594 if (file && !*file) {
c2ad1b0c 595 file = NULL;
c2ad1b0c 596 }
666daa68 597
91a097e7
KW
598 /* bdrv_open() defaults to the values in bdrv_flags (for compatibility
599 * with other callers) rather than what we want as the real defaults.
600 * Apply the defaults here instead. */
91a097e7
KW
601 qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_DIRECT, "off");
602 qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_NO_FLUSH, "off");
f87a0e29
AG
603 qdict_set_default_str(bs_opts, BDRV_OPT_READ_ONLY,
604 read_only ? "on" : "off");
9384a444 605 qdict_set_default_str(bs_opts, BDRV_OPT_AUTO_READ_ONLY, "on");
72e775c7 606 assert((bdrv_flags & BDRV_O_CACHE_MASK) == 0);
91a097e7 607
12d5ee3a
KW
608 if (runstate_check(RUN_STATE_INMIGRATE)) {
609 bdrv_flags |= BDRV_O_INACTIVE;
610 }
611
efaa7c4e 612 blk = blk_new_open(file, NULL, bs_opts, bdrv_flags, errp);
e4342ce5
HR
613 if (!blk) {
614 goto err_no_bs_opts;
615 }
616 bs = blk_bs(blk);
ed9d4205 617
5ec18f8c 618 bs->detect_zeroes = detect_zeroes;
666daa68 619
9caa6f3d 620 block_acct_setup(blk_get_stats(blk), account_invalid, account_failed);
2be5506f 621
40119eff
AG
622 if (!parse_stats_intervals(blk_get_stats(blk), interval_list, errp)) {
623 blk_unref(blk);
624 blk = NULL;
625 goto err_no_bs_opts;
2be5506f 626 }
666daa68
MA
627 }
628
7ca7f0f6
KW
629 /* disk I/O throttling */
630 if (throttle_enabled(&cfg)) {
631 if (!throttling_group) {
ff356ee4 632 throttling_group = id;
7ca7f0f6
KW
633 }
634 blk_io_limits_enable(blk, throttling_group);
635 blk_set_io_limits(blk, &cfg);
636 }
637
e4b24b49 638 blk_set_enable_write_cache(blk, !writethrough);
5ec18f8c 639 blk_set_on_error(blk, on_read_error, on_write_error);
0006383e 640
ff356ee4 641 if (!monitor_add_blk(blk, id, errp)) {
efaa7c4e
HR
642 blk_unref(blk);
643 blk = NULL;
644 goto err_no_bs_opts;
645 }
646
e4342ce5 647err_no_bs_opts:
0006383e 648 qemu_opts_del(opts);
cb3e7f08
MAL
649 qobject_unref(interval_dict);
650 qobject_unref(interval_list);
18e46a03 651 return blk;
a9ae2bff 652
ec9c10d2 653early_err:
ec9c10d2 654 qemu_opts_del(opts);
cb3e7f08
MAL
655 qobject_unref(interval_dict);
656 qobject_unref(interval_list);
6376f952 657err_no_opts:
cb3e7f08 658 qobject_unref(bs_opts);
a9ae2bff 659 return NULL;
666daa68
MA
660}
661
bd745e23 662/* Takes the ownership of bs_opts */
89802d5a 663BlockDriverState *bds_tree_init(QDict *bs_opts, Error **errp)
bd745e23 664{
bd745e23
HR
665 int bdrv_flags = 0;
666
b4ad82aa 667 GLOBAL_STATE_CODE();
a81d6164
KW
668 /* bdrv_open() defaults to the values in bdrv_flags (for compatibility
669 * with other callers) rather than what we want as the real defaults.
670 * Apply the defaults here instead. */
a81d6164
KW
671 qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_DIRECT, "off");
672 qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_NO_FLUSH, "off");
f87a0e29 673 qdict_set_default_str(bs_opts, BDRV_OPT_READ_ONLY, "off");
a81d6164 674
12d5ee3a
KW
675 if (runstate_check(RUN_STATE_INMIGRATE)) {
676 bdrv_flags |= BDRV_O_INACTIVE;
677 }
678
b49f4755 679 return bdrv_open(NULL, NULL, bs_opts, bdrv_flags, errp);
bd745e23
HR
680}
681
9c4218e9
HR
682void blockdev_close_all_bdrv_states(void)
683{
684 BlockDriverState *bs, *next_bs;
685
b4ad82aa 686 GLOBAL_STATE_CODE();
9c4218e9 687 QTAILQ_FOREACH_SAFE(bs, &monitor_bdrv_states, monitor_list, next_bs) {
9c4218e9 688 bdrv_unref(bs);
9c4218e9
HR
689 }
690}
691
262b4e8f
HR
692/* Iterates over the list of monitor-owned BlockDriverStates */
693BlockDriverState *bdrv_next_monitor_owned(BlockDriverState *bs)
694{
f791bf7f 695 GLOBAL_STATE_CODE();
262b4e8f
HR
696 return bs ? QTAILQ_NEXT(bs, monitor_list)
697 : QTAILQ_FIRST(&monitor_bdrv_states);
698}
699
c75d7f71 700static bool qemu_opt_rename(QemuOpts *opts, const char *from, const char *to,
5abbf0ee 701 Error **errp)
57975222
KW
702{
703 const char *value;
704
705 value = qemu_opt_get(opts, from);
706 if (value) {
5abbf0ee
KW
707 if (qemu_opt_find(opts, to)) {
708 error_setg(errp, "'%s' and its alias '%s' can't be used at the "
709 "same time", to, from);
c75d7f71 710 return false;
5abbf0ee 711 }
20d6cd47
JL
712 }
713
714 /* rename all items in opts */
715 while ((value = qemu_opt_get(opts, from))) {
f43e47db 716 qemu_opt_set(opts, to, value, &error_abort);
57975222
KW
717 qemu_opt_unset(opts, from);
718 }
c75d7f71 719 return true;
57975222
KW
720}
721
33cb7dc8
KW
722QemuOptsList qemu_legacy_drive_opts = {
723 .name = "drive",
724 .head = QTAILQ_HEAD_INITIALIZER(qemu_legacy_drive_opts.head),
725 .desc = {
726 {
87a899c5
KW
727 .name = "bus",
728 .type = QEMU_OPT_NUMBER,
729 .help = "bus number",
730 },{
731 .name = "unit",
732 .type = QEMU_OPT_NUMBER,
733 .help = "unit number (i.e. lun for scsi)",
734 },{
735 .name = "index",
736 .type = QEMU_OPT_NUMBER,
737 .help = "index number",
738 },{
33cb7dc8
KW
739 .name = "media",
740 .type = QEMU_OPT_STRING,
741 .help = "media type (disk, cdrom)",
593d464b
KW
742 },{
743 .name = "if",
744 .type = QEMU_OPT_STRING,
745 .help = "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
d095b465
HR
746 },{
747 .name = "file",
748 .type = QEMU_OPT_STRING,
749 .help = "file name",
33cb7dc8 750 },
0ebd24e0
KW
751
752 /* Options that are passed on, but have special semantics with -drive */
753 {
4e200cf8 754 .name = BDRV_OPT_READ_ONLY,
0ebd24e0
KW
755 .type = QEMU_OPT_BOOL,
756 .help = "open drive file as read-only",
ee13ed1c
KW
757 },{
758 .name = "rerror",
759 .type = QEMU_OPT_STRING,
760 .help = "read error action",
761 },{
762 .name = "werror",
763 .type = QEMU_OPT_STRING,
764 .help = "write error action",
0ebd24e0
KW
765 },{
766 .name = "copy-on-read",
767 .type = QEMU_OPT_BOOL,
768 .help = "copy read data from backing file into image file",
769 },
770
33cb7dc8
KW
771 { /* end of list */ }
772 },
773};
774
c4f26c9f
MA
775DriveInfo *drive_new(QemuOpts *all_opts, BlockInterfaceType block_default_type,
776 Error **errp)
57975222 777{
29c4e2b5 778 const char *value;
18e46a03 779 BlockBackend *blk;
33cb7dc8 780 DriveInfo *dinfo = NULL;
f298d071 781 QDict *bs_opts;
33cb7dc8
KW
782 QemuOpts *legacy_opts;
783 DriveMediaType media = MEDIA_DISK;
593d464b 784 BlockInterfaceType type;
87a899c5 785 int max_devs, bus_id, unit_id, index;
ee13ed1c 786 const char *werror, *rerror;
a7fdbcf0
FZ
787 bool read_only = false;
788 bool copy_on_read;
d095b465 789 const char *filename;
247147fb 790 int i;
29c4e2b5 791
c5be7445
EGE
792 GLOBAL_STATE_CODE();
793
57975222 794 /* Change legacy command line options into QMP ones */
247147fb
KW
795 static const struct {
796 const char *from;
797 const char *to;
798 } opt_renames[] = {
799 { "iops", "throttling.iops-total" },
800 { "iops_rd", "throttling.iops-read" },
801 { "iops_wr", "throttling.iops-write" },
57975222 802
247147fb
KW
803 { "bps", "throttling.bps-total" },
804 { "bps_rd", "throttling.bps-read" },
805 { "bps_wr", "throttling.bps-write" },
57975222 806
247147fb
KW
807 { "iops_max", "throttling.iops-total-max" },
808 { "iops_rd_max", "throttling.iops-read-max" },
809 { "iops_wr_max", "throttling.iops-write-max" },
3e9fab69 810
247147fb
KW
811 { "bps_max", "throttling.bps-total-max" },
812 { "bps_rd_max", "throttling.bps-read-max" },
813 { "bps_wr_max", "throttling.bps-write-max" },
3e9fab69 814
247147fb 815 { "iops_size", "throttling.iops-size" },
2024c1df 816
76f4afb4
AG
817 { "group", "throttling.group" },
818
4e200cf8 819 { "readonly", BDRV_OPT_READ_ONLY },
247147fb
KW
820 };
821
822 for (i = 0; i < ARRAY_SIZE(opt_renames); i++) {
235e59cf 823 if (!qemu_opt_rename(all_opts, opt_renames[i].from,
668f62ec 824 opt_renames[i].to, errp)) {
5abbf0ee
KW
825 return NULL;
826 }
247147fb 827 }
0f227a94 828
29c4e2b5
KW
829 value = qemu_opt_get(all_opts, "cache");
830 if (value) {
831 int flags = 0;
04feb4a5 832 bool writethrough;
29c4e2b5 833
04feb4a5 834 if (bdrv_parse_cache_mode(value, &flags, &writethrough) != 0) {
c4f26c9f 835 error_setg(errp, "invalid cache option");
29c4e2b5
KW
836 return NULL;
837 }
838
839 /* Specific options take precedence */
54861b92
KW
840 if (!qemu_opt_get(all_opts, BDRV_OPT_CACHE_WB)) {
841 qemu_opt_set_bool(all_opts, BDRV_OPT_CACHE_WB,
04feb4a5 842 !writethrough, &error_abort);
29c4e2b5 843 }
54861b92
KW
844 if (!qemu_opt_get(all_opts, BDRV_OPT_CACHE_DIRECT)) {
845 qemu_opt_set_bool(all_opts, BDRV_OPT_CACHE_DIRECT,
cccb7967 846 !!(flags & BDRV_O_NOCACHE), &error_abort);
29c4e2b5 847 }
54861b92
KW
848 if (!qemu_opt_get(all_opts, BDRV_OPT_CACHE_NO_FLUSH)) {
849 qemu_opt_set_bool(all_opts, BDRV_OPT_CACHE_NO_FLUSH,
cccb7967 850 !!(flags & BDRV_O_NO_FLUSH), &error_abort);
29c4e2b5
KW
851 }
852 qemu_opt_unset(all_opts, "cache");
853 }
854
f298d071
KW
855 /* Get a QDict for processing the options */
856 bs_opts = qdict_new();
857 qemu_opts_to_qdict(all_opts, bs_opts);
858
87ea75d5
PC
859 legacy_opts = qemu_opts_create(&qemu_legacy_drive_opts, NULL, 0,
860 &error_abort);
af175e85 861 if (!qemu_opts_absorb_qdict(legacy_opts, bs_opts, errp)) {
33cb7dc8
KW
862 goto fail;
863 }
864
865 /* Media type */
866 value = qemu_opt_get(legacy_opts, "media");
867 if (value) {
868 if (!strcmp(value, "disk")) {
869 media = MEDIA_DISK;
870 } else if (!strcmp(value, "cdrom")) {
871 media = MEDIA_CDROM;
a7fdbcf0 872 read_only = true;
33cb7dc8 873 } else {
c4f26c9f 874 error_setg(errp, "'%s' invalid media", value);
33cb7dc8
KW
875 goto fail;
876 }
877 }
878
0ebd24e0 879 /* copy-on-read is disabled with a warning for read-only devices */
4e200cf8 880 read_only |= qemu_opt_get_bool(legacy_opts, BDRV_OPT_READ_ONLY, false);
0ebd24e0
KW
881 copy_on_read = qemu_opt_get_bool(legacy_opts, "copy-on-read", false);
882
883 if (read_only && copy_on_read) {
3dc6f869 884 warn_report("disabling copy-on-read on read-only drive");
0ebd24e0
KW
885 copy_on_read = false;
886 }
887
46f5ac20
EB
888 qdict_put_str(bs_opts, BDRV_OPT_READ_ONLY, read_only ? "on" : "off");
889 qdict_put_str(bs_opts, "copy-on-read", copy_on_read ? "on" : "off");
0ebd24e0 890
593d464b
KW
891 /* Controller type */
892 value = qemu_opt_get(legacy_opts, "if");
893 if (value) {
894 for (type = 0;
895 type < IF_COUNT && strcmp(value, if_name[type]);
896 type++) {
897 }
898 if (type == IF_COUNT) {
c4f26c9f 899 error_setg(errp, "unsupported bus type '%s'", value);
593d464b
KW
900 goto fail;
901 }
902 } else {
903 type = block_default_type;
904 }
905
87a899c5
KW
906 /* Device address specified by bus/unit or index.
907 * If none was specified, try to find the first free one. */
908 bus_id = qemu_opt_get_number(legacy_opts, "bus", 0);
909 unit_id = qemu_opt_get_number(legacy_opts, "unit", -1);
910 index = qemu_opt_get_number(legacy_opts, "index", -1);
911
912 max_devs = if_max_devs[type];
913
914 if (index != -1) {
915 if (bus_id != 0 || unit_id != -1) {
c4f26c9f 916 error_setg(errp, "index cannot be used with bus and unit");
87a899c5
KW
917 goto fail;
918 }
919 bus_id = drive_index_to_bus_id(type, index);
920 unit_id = drive_index_to_unit_id(type, index);
921 }
922
923 if (unit_id == -1) {
924 unit_id = 0;
925 while (drive_get(type, bus_id, unit_id) != NULL) {
926 unit_id++;
927 if (max_devs && unit_id >= max_devs) {
928 unit_id -= max_devs;
929 bus_id++;
930 }
931 }
932 }
933
934 if (max_devs && unit_id >= max_devs) {
c4f26c9f 935 error_setg(errp, "unit %d too big (max is %d)", unit_id, max_devs - 1);
87a899c5
KW
936 goto fail;
937 }
938
939 if (drive_get(type, bus_id, unit_id) != NULL) {
c4f26c9f
MA
940 error_setg(errp, "drive with bus=%d, unit=%d (index=%d) exists",
941 bus_id, unit_id, index);
87a899c5
KW
942 goto fail;
943 }
944
945 /* no id supplied -> create one */
946 if (qemu_opts_id(all_opts) == NULL) {
947 char *new_id;
948 const char *mediastr = "";
949 if (type == IF_IDE || type == IF_SCSI) {
950 mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd";
951 }
952 if (max_devs) {
953 new_id = g_strdup_printf("%s%i%s%i", if_name[type], bus_id,
954 mediastr, unit_id);
955 } else {
956 new_id = g_strdup_printf("%s%s%i", if_name[type],
957 mediastr, unit_id);
958 }
46f5ac20 959 qdict_put_str(bs_opts, "id", new_id);
87a899c5
KW
960 g_free(new_id);
961 }
962
394c7d4d 963 /* Add virtio block device */
394c7d4d
KW
964 if (type == IF_VIRTIO) {
965 QemuOpts *devopts;
87ea75d5
PC
966 devopts = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
967 &error_abort);
9db1d3a2 968 qemu_opt_set(devopts, "driver", "virtio-blk", &error_abort);
f43e47db
MA
969 qemu_opt_set(devopts, "drive", qdict_get_str(bs_opts, "id"),
970 &error_abort);
d3256f88
DW
971 } else if (type == IF_XEN) {
972 QemuOpts *devopts;
973 devopts = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
974 &error_abort);
975 qemu_opt_set(devopts, "driver",
976 (media == MEDIA_CDROM) ? "xen-cdrom" : "xen-disk",
977 &error_abort);
978 qemu_opt_set(devopts, "drive", qdict_get_str(bs_opts, "id"),
979 &error_abort);
394c7d4d
KW
980 }
981
d095b465
HR
982 filename = qemu_opt_get(legacy_opts, "file");
983
ee13ed1c
KW
984 /* Check werror/rerror compatibility with if=... */
985 werror = qemu_opt_get(legacy_opts, "werror");
986 if (werror != NULL) {
987 if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO &&
988 type != IF_NONE) {
c4f26c9f 989 error_setg(errp, "werror is not supported by this bus type");
ee13ed1c
KW
990 goto fail;
991 }
46f5ac20 992 qdict_put_str(bs_opts, "werror", werror);
ee13ed1c
KW
993 }
994
995 rerror = qemu_opt_get(legacy_opts, "rerror");
996 if (rerror != NULL) {
997 if (type != IF_IDE && type != IF_VIRTIO && type != IF_SCSI &&
998 type != IF_NONE) {
c4f26c9f 999 error_setg(errp, "rerror is not supported by this bus type");
ee13ed1c
KW
1000 goto fail;
1001 }
46f5ac20 1002 qdict_put_str(bs_opts, "rerror", rerror);
ee13ed1c
KW
1003 }
1004
2d246f01 1005 /* Actual block device init: Functionality shared with blockdev-add */
992861fb 1006 blk = blockdev_init(filename, bs_opts, errp);
3cb0e25c 1007 bs_opts = NULL;
18e46a03 1008 if (!blk) {
2d246f01
KW
1009 goto fail;
1010 }
1011
26f8b3a8
MA
1012 /* Create legacy DriveInfo */
1013 dinfo = g_malloc0(sizeof(*dinfo));
f298d071 1014 dinfo->opts = all_opts;
2d246f01 1015
ee13ed1c 1016 dinfo->type = type;
87a899c5
KW
1017 dinfo->bus = bus_id;
1018 dinfo->unit = unit_id;
bcf83158 1019
26f8b3a8
MA
1020 blk_set_legacy_dinfo(blk, dinfo);
1021
e34ef046
KW
1022 switch(type) {
1023 case IF_IDE:
1024 case IF_SCSI:
1025 case IF_XEN:
1026 case IF_NONE:
1027 dinfo->media_cd = media == MEDIA_CDROM;
1028 break;
1029 default:
1030 break;
1031 }
1032
2d246f01 1033fail:
33cb7dc8 1034 qemu_opts_del(legacy_opts);
cb3e7f08 1035 qobject_unref(bs_opts);
2d246f01 1036 return dinfo;
57975222
KW
1037}
1038
b6c1bae5
KW
1039static BlockDriverState *qmp_get_root_bs(const char *name, Error **errp)
1040{
1041 BlockDriverState *bs;
1042
2b3912f1
KW
1043 GRAPH_RDLOCK_GUARD_MAINLOOP();
1044
b6c1bae5
KW
1045 bs = bdrv_lookup_bs(name, name, errp);
1046 if (bs == NULL) {
1047 return NULL;
1048 }
1049
1050 if (!bdrv_is_root_node(bs)) {
1051 error_setg(errp, "Need a root block node");
1052 return NULL;
1053 }
1054
1055 if (!bdrv_is_inserted(bs)) {
1056 error_setg(errp, "Device has no medium");
1e97be91 1057 bs = NULL;
b6c1bae5
KW
1058 }
1059
1060 return bs;
1061}
1062
10f75907 1063static void blockdev_do_action(TransactionAction *action, Error **errp)
6cc2a415 1064{
c8a83e85 1065 TransactionActionList list;
6cc2a415 1066
10f75907 1067 list.value = action;
6cc2a415 1068 list.next = NULL;
238e9202 1069 qmp_transaction(&list, NULL, errp);
6cc2a415
PB
1070}
1071
54fde4ff 1072void qmp_blockdev_snapshot_sync(const char *device, const char *node_name,
0901f67e 1073 const char *snapshot_file,
0901f67e 1074 const char *snapshot_node_name,
54fde4ff 1075 const char *format,
0901f67e 1076 bool has_mode, NewImageMode mode, Error **errp)
f8882568 1077{
a911e6ae 1078 BlockdevSnapshotSync snapshot = {
6cc2a415 1079 .device = (char *) device,
0901f67e 1080 .node_name = (char *) node_name,
6cc2a415 1081 .snapshot_file = (char *) snapshot_file,
0901f67e 1082 .snapshot_node_name = (char *) snapshot_node_name,
6cc2a415
PB
1083 .format = (char *) format,
1084 .has_mode = has_mode,
1085 .mode = mode,
1086 };
10f75907
EB
1087 TransactionAction action = {
1088 .type = TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC,
32bafa8f 1089 .u.blockdev_snapshot_sync.data = &snapshot,
10f75907
EB
1090 };
1091 blockdev_do_action(&action, errp);
f8882568
JS
1092}
1093
43de7e2d
AG
1094void qmp_blockdev_snapshot(const char *node, const char *overlay,
1095 Error **errp)
1096{
1097 BlockdevSnapshot snapshot_data = {
1098 .node = (char *) node,
1099 .overlay = (char *) overlay
1100 };
10f75907
EB
1101 TransactionAction action = {
1102 .type = TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT,
32bafa8f 1103 .u.blockdev_snapshot.data = &snapshot_data,
10f75907
EB
1104 };
1105 blockdev_do_action(&action, errp);
43de7e2d
AG
1106}
1107
f323bc9e
WX
1108void qmp_blockdev_snapshot_internal_sync(const char *device,
1109 const char *name,
1110 Error **errp)
1111{
1112 BlockdevSnapshotInternal snapshot = {
1113 .device = (char *) device,
1114 .name = (char *) name
1115 };
10f75907
EB
1116 TransactionAction action = {
1117 .type = TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC,
32bafa8f 1118 .u.blockdev_snapshot_internal_sync.data = &snapshot,
10f75907
EB
1119 };
1120 blockdev_do_action(&action, errp);
f323bc9e
WX
1121}
1122
44e3e053 1123SnapshotInfo *qmp_blockdev_snapshot_delete_internal_sync(const char *device,
44e3e053 1124 const char *id,
44e3e053
WX
1125 const char *name,
1126 Error **errp)
1127{
a0e8544c 1128 BlockDriverState *bs;
44e3e053
WX
1129 QEMUSnapshotInfo sn;
1130 Error *local_err = NULL;
1131 SnapshotInfo *info = NULL;
1132 int ret;
1133
a32e7818
KW
1134 GLOBAL_STATE_CODE();
1135 GRAPH_RDLOCK_GUARD_MAINLOOP();
1136
2dfb4c03
KW
1137 bs = qmp_get_root_bs(device, errp);
1138 if (!bs) {
44e3e053
WX
1139 return NULL;
1140 }
1141
44e3e053
WX
1142 if (!id && !name) {
1143 error_setg(errp, "Name or id must be provided");
b49f4755 1144 return NULL;
44e3e053
WX
1145 }
1146
0b928854 1147 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT_DELETE, errp)) {
b49f4755 1148 return NULL;
0b928854
SH
1149 }
1150
44e3e053 1151 ret = bdrv_snapshot_find_by_id_and_name(bs, id, name, &sn, &local_err);
84d18f06 1152 if (local_err) {
44e3e053 1153 error_propagate(errp, local_err);
b49f4755 1154 return NULL;
44e3e053
WX
1155 }
1156 if (!ret) {
1157 error_setg(errp,
1158 "Snapshot with id '%s' and name '%s' does not exist on "
1159 "device '%s'",
1160 STR_OR_NULL(id), STR_OR_NULL(name), device);
b49f4755 1161 return NULL;
44e3e053
WX
1162 }
1163
1164 bdrv_snapshot_delete(bs, id, name, &local_err);
84d18f06 1165 if (local_err) {
44e3e053 1166 error_propagate(errp, local_err);
b49f4755 1167 return NULL;
44e3e053
WX
1168 }
1169
5839e53b 1170 info = g_new0(SnapshotInfo, 1);
44e3e053
WX
1171 info->id = g_strdup(sn.id_str);
1172 info->name = g_strdup(sn.name);
1173 info->date_nsec = sn.date_nsec;
1174 info->date_sec = sn.date_sec;
1175 info->vm_state_size = sn.vm_state_size;
1176 info->vm_clock_nsec = sn.vm_clock_nsec % 1000000000;
1177 info->vm_clock_sec = sn.vm_clock_nsec / 1000000000;
b39847a5
PD
1178 if (sn.icount != -1ULL) {
1179 info->icount = sn.icount;
1180 info->has_icount = true;
1181 }
44e3e053
WX
1182
1183 return info;
1184}
8802d1fd 1185
bbe86010
WX
1186/* internal snapshot private data */
1187typedef struct InternalSnapshotState {
bbe86010
WX
1188 BlockDriverState *bs;
1189 QEMUSnapshotInfo sn;
507306cc 1190 bool created;
bbe86010
WX
1191} InternalSnapshotState;
1192
8187f63c
VSO
1193static void internal_snapshot_abort(void *opaque);
1194static void internal_snapshot_clean(void *opaque);
1195TransactionActionDrv internal_snapshot_drv = {
1196 .abort = internal_snapshot_abort,
1197 .clean = internal_snapshot_clean,
1198};
94d16a64 1199
d53c89ae 1200static void internal_snapshot_action(BlockdevSnapshotInternal *internal,
8187f63c 1201 Transaction *tran, Error **errp)
bbe86010 1202{
f70edf99 1203 Error *local_err = NULL;
bbe86010
WX
1204 const char *device;
1205 const char *name;
1206 BlockDriverState *bs;
1207 QEMUSnapshotInfo old_sn, *sn;
1208 bool ret;
f793dde0 1209 int64_t rt;
d53c89ae 1210 InternalSnapshotState *state = g_new0(InternalSnapshotState, 1);
bbe86010
WX
1211 int ret1;
1212
a32e7818
KW
1213 GLOBAL_STATE_CODE();
1214 GRAPH_RDLOCK_GUARD_MAINLOOP();
1215
8187f63c
VSO
1216 tran_add(tran, &internal_snapshot_drv, state);
1217
bbe86010
WX
1218 device = internal->device;
1219 name = internal->name;
1220
75dfd402
KW
1221 bs = qmp_get_root_bs(device, errp);
1222 if (!bs) {
bbe86010
WX
1223 return;
1224 }
1225
507306cc 1226 state->bs = bs;
a36e458c
SH
1227
1228 /* Paired with .clean() */
507306cc
FZ
1229 bdrv_drained_begin(bs);
1230
3dc7ca3c 1231 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT, errp)) {
b49f4755 1232 return;
3dc7ca3c
SH
1233 }
1234
bbe86010 1235 if (bdrv_is_read_only(bs)) {
81e5f78a 1236 error_setg(errp, "Device '%s' is read only", device);
b49f4755 1237 return;
bbe86010
WX
1238 }
1239
1240 if (!bdrv_can_snapshot(bs)) {
81e5f78a
AG
1241 error_setg(errp, "Block format '%s' used by device '%s' "
1242 "does not support internal snapshots",
1243 bs->drv->format_name, device);
b49f4755 1244 return;
bbe86010
WX
1245 }
1246
1247 if (!strlen(name)) {
1248 error_setg(errp, "Name is empty");
b49f4755 1249 return;
bbe86010
WX
1250 }
1251
1252 /* check whether a snapshot with name exist */
f70edf99
MA
1253 ret = bdrv_snapshot_find_by_id_and_name(bs, NULL, name, &old_sn,
1254 &local_err);
1255 if (local_err) {
1256 error_propagate(errp, local_err);
b49f4755 1257 return;
bbe86010
WX
1258 } else if (ret) {
1259 error_setg(errp,
1260 "Snapshot with name '%s' already exists on device '%s'",
1261 name, device);
b49f4755 1262 return;
bbe86010
WX
1263 }
1264
1265 /* 3. take the snapshot */
1266 sn = &state->sn;
1267 pstrcpy(sn->name, sizeof(sn->name), name);
f793dde0
MAL
1268 rt = g_get_real_time();
1269 sn->date_sec = rt / G_USEC_PER_SEC;
1270 sn->date_nsec = (rt % G_USEC_PER_SEC) * 1000;
bbe86010 1271 sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
b39847a5
PD
1272 if (replay_mode != REPLAY_MODE_NONE) {
1273 sn->icount = replay_get_current_icount();
1274 } else {
1275 sn->icount = -1ULL;
1276 }
bbe86010
WX
1277
1278 ret1 = bdrv_snapshot_create(bs, sn);
1279 if (ret1 < 0) {
1280 error_setg_errno(errp, -ret1,
1281 "Failed to create snapshot '%s' on device '%s'",
1282 name, device);
b49f4755 1283 return;
bbe86010
WX
1284 }
1285
1286 /* 4. succeed, mark a snapshot is created */
507306cc 1287 state->created = true;
bbe86010
WX
1288}
1289
8187f63c 1290static void internal_snapshot_abort(void *opaque)
bbe86010 1291{
8187f63c 1292 InternalSnapshotState *state = opaque;
bbe86010
WX
1293 BlockDriverState *bs = state->bs;
1294 QEMUSnapshotInfo *sn = &state->sn;
1295 Error *local_error = NULL;
1296
a32e7818
KW
1297 GLOBAL_STATE_CODE();
1298 GRAPH_RDLOCK_GUARD_MAINLOOP();
1299
507306cc 1300 if (!state->created) {
bbe86010
WX
1301 return;
1302 }
1303
1304 if (bdrv_snapshot_delete(bs, sn->id_str, sn->name, &local_error) < 0) {
c29b77f9
MA
1305 error_reportf_err(local_error,
1306 "Failed to delete snapshot with id '%s' and "
1307 "name '%s' on device '%s' in abort: ",
1308 sn->id_str, sn->name,
1309 bdrv_get_device_name(bs));
bbe86010
WX
1310 }
1311}
1312
8187f63c 1313static void internal_snapshot_clean(void *opaque)
5d6e96ef 1314{
8187f63c 1315 g_autofree InternalSnapshotState *state = opaque;
5d6e96ef 1316
a36e458c
SH
1317 if (!state->bs) {
1318 return;
5d6e96ef 1319 }
a36e458c 1320
a36e458c 1321 bdrv_drained_end(state->bs);
5d6e96ef
SH
1322}
1323
ba0c86a3 1324/* external snapshot private data */
ba5d6ab6 1325typedef struct ExternalSnapshotState {
8802d1fd
JC
1326 BlockDriverState *old_bs;
1327 BlockDriverState *new_bs;
067acf28 1328 bool overlay_appended;
ba5d6ab6 1329} ExternalSnapshotState;
8802d1fd 1330
8187f63c
VSO
1331static void external_snapshot_commit(void *opaque);
1332static void external_snapshot_abort(void *opaque);
1333static void external_snapshot_clean(void *opaque);
1334TransactionActionDrv external_snapshot_drv = {
1335 .commit = external_snapshot_commit,
1336 .abort = external_snapshot_abort,
1337 .clean = external_snapshot_clean,
1338};
1339
d53c89ae
VSO
1340static void external_snapshot_action(TransactionAction *action,
1341 Transaction *tran, Error **errp)
9b9877ee 1342{
934aee14 1343 int ret;
5b363937 1344 int flags = 0;
43de7e2d 1345 QDict *options = NULL;
9b9877ee 1346 Error *local_err = NULL;
43de7e2d 1347 /* Device and node name of the image to generate the snapshot from */
e2a31e87 1348 const char *device;
0901f67e 1349 const char *node_name;
43de7e2d
AG
1350 /* Reference to the new image (for 'blockdev-snapshot') */
1351 const char *snapshot_ref;
1352 /* File name of the new image (for 'blockdev-snapshot-sync') */
e2a31e87 1353 const char *new_image_file;
d53c89ae 1354 ExternalSnapshotState *state = g_new0(ExternalSnapshotState, 1);
d29d3d1f 1355 uint64_t perm, shared;
9b9877ee 1356
bce73bc2
KW
1357 /* TODO We'll eventually have to take a writer lock in this function */
1358 GRAPH_RDLOCK_GUARD_MAINLOOP();
1359
8187f63c
VSO
1360 tran_add(tran, &external_snapshot_drv, state);
1361
43de7e2d
AG
1362 /* 'blockdev-snapshot' and 'blockdev-snapshot-sync' have similar
1363 * purpose but a different set of parameters */
1364 switch (action->type) {
1365 case TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT:
1366 {
32bafa8f 1367 BlockdevSnapshot *s = action->u.blockdev_snapshot.data;
43de7e2d
AG
1368 device = s->node;
1369 node_name = s->node;
1370 new_image_file = NULL;
1371 snapshot_ref = s->overlay;
1372 }
1373 break;
1374 case TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC:
1375 {
32bafa8f 1376 BlockdevSnapshotSync *s = action->u.blockdev_snapshot_sync.data;
54fde4ff
MA
1377 device = s->device;
1378 node_name = s->node_name;
43de7e2d
AG
1379 new_image_file = s->snapshot_file;
1380 snapshot_ref = NULL;
1381 }
1382 break;
1383 default:
1384 g_assert_not_reached();
e2a31e87
WX
1385 }
1386
1387 /* start processing */
94d16a64 1388
43de7e2d
AG
1389 state->old_bs = bdrv_lookup_bs(device, node_name, errp);
1390 if (!state->old_bs) {
9b9877ee
WX
1391 return;
1392 }
1393
2d24b60b 1394 /* Paired with .clean() */
da763e83 1395 bdrv_drained_begin(state->old_bs);
5d6e96ef 1396
ba5d6ab6 1397 if (!bdrv_is_inserted(state->old_bs)) {
c6bd8c70 1398 error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, device);
b49f4755 1399 return;
9b9877ee
WX
1400 }
1401
3718d8ab
FZ
1402 if (bdrv_op_is_blocked(state->old_bs,
1403 BLOCK_OP_TYPE_EXTERNAL_SNAPSHOT, errp)) {
b49f4755 1404 return;
9b9877ee
WX
1405 }
1406
ba5d6ab6
SH
1407 if (!bdrv_is_read_only(state->old_bs)) {
1408 if (bdrv_flush(state->old_bs)) {
c6bd8c70 1409 error_setg(errp, QERR_IO_ERROR);
b49f4755 1410 return;
9b9877ee
WX
1411 }
1412 }
1413
43de7e2d 1414 if (action->type == TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC) {
32bafa8f 1415 BlockdevSnapshotSync *s = action->u.blockdev_snapshot_sync.data;
54fde4ff 1416 const char *format = s->format ?: "qcow2";
43de7e2d 1417 enum NewImageMode mode;
54fde4ff 1418 const char *snapshot_node_name = s->snapshot_node_name;
9b9877ee 1419
43de7e2d 1420 if (node_name && !snapshot_node_name) {
ef2e38a1 1421 error_setg(errp, "New overlay node-name missing");
b49f4755 1422 return;
9b9877ee 1423 }
9b9877ee 1424
43de7e2d
AG
1425 if (snapshot_node_name &&
1426 bdrv_lookup_bs(snapshot_node_name, snapshot_node_name, NULL)) {
ef2e38a1 1427 error_setg(errp, "New overlay node-name already in use");
b49f4755 1428 return;
43de7e2d
AG
1429 }
1430
1431 flags = state->old_bs->open_flags;
2a32c6e8
JS
1432 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_COPY_ON_READ);
1433 flags |= BDRV_O_NO_BACKING;
43de7e2d
AG
1434
1435 /* create new image w/backing file */
1436 mode = s->has_mode ? s->mode : NEW_IMAGE_MODE_ABSOLUTE_PATHS;
1437 if (mode != NEW_IMAGE_MODE_EXISTING) {
f86b8b58
KW
1438 int64_t size = bdrv_getlength(state->old_bs);
1439 if (size < 0) {
1440 error_setg_errno(errp, -size, "bdrv_getlength failed");
b49f4755 1441 return;
f86b8b58 1442 }
f30c66ba 1443 bdrv_refresh_filename(state->old_bs);
e1355055 1444
43de7e2d
AG
1445 bdrv_img_create(new_image_file, format,
1446 state->old_bs->filename,
1447 state->old_bs->drv->format_name,
9217283d 1448 NULL, size, flags, false, &local_err);
e1355055 1449
43de7e2d
AG
1450 if (local_err) {
1451 error_propagate(errp, local_err);
b49f4755 1452 return;
43de7e2d
AG
1453 }
1454 }
1455
1456 options = qdict_new();
d52e1a0e 1457 if (snapshot_node_name) {
46f5ac20 1458 qdict_put_str(options, "node-name", snapshot_node_name);
43de7e2d 1459 }
46f5ac20 1460 qdict_put_str(options, "driver", format);
0901f67e
BC
1461 }
1462
5b363937
HR
1463 state->new_bs = bdrv_open(new_image_file, snapshot_ref, options, flags,
1464 errp);
c6e0a6de 1465
f67503e5 1466 /* We will manually add the backing_hd field to the bs later */
5b363937 1467 if (!state->new_bs) {
c6e0a6de 1468 return;
43de7e2d
AG
1469 }
1470
d29d3d1f
KW
1471 /*
1472 * Allow attaching a backing file to an overlay that's already in use only
1473 * if the parents don't assume that they are already seeing a valid image.
1474 * (Specifically, allow it as a mirror target, which is write-only access.)
1475 */
1476 bdrv_get_cumulative_perm(state->new_bs, &perm, &shared);
1477 if (perm & BLK_PERM_CONSISTENT_READ) {
a2bb6f8c 1478 error_setg(errp, "The overlay is already in use");
b49f4755 1479 return;
43de7e2d
AG
1480 }
1481
7cc734a9
HR
1482 if (state->new_bs->drv->is_filter) {
1483 error_setg(errp, "Filters cannot be used as overlays");
b49f4755 1484 return;
7cc734a9
HR
1485 }
1486
1487 if (bdrv_cow_child(state->new_bs)) {
a2bb6f8c 1488 error_setg(errp, "The overlay already has a backing image");
b49f4755 1489 return;
08b24cfe
AG
1490 }
1491
1492 if (!state->new_bs->drv->supports_backing) {
a2bb6f8c 1493 error_setg(errp, "The overlay does not support backing images");
b49f4755 1494 return;
b2c2832c
KW
1495 }
1496
934aee14
VSO
1497 ret = bdrv_append(state->new_bs, state->old_bs, errp);
1498 if (ret < 0) {
b49f4755 1499 return;
9b9877ee 1500 }
067acf28 1501 state->overlay_appended = true;
9b9877ee
WX
1502}
1503
8187f63c 1504static void external_snapshot_commit(void *opaque)
3b0047e8 1505{
8187f63c 1506 ExternalSnapshotState *state = opaque;
ba0c86a3 1507
3b0047e8
WX
1508 /* We don't need (or want) to use the transactional
1509 * bdrv_reopen_multiple() across all the entries at once, because we
1510 * don't want to abort all of them if one of them fails the reopen */
d73415a3 1511 if (!qatomic_read(&state->old_bs->copy_on_read)) {
1b57774f 1512 bdrv_reopen_set_read_only(state->old_bs, true, NULL);
4c844983 1513 }
3b0047e8
WX
1514}
1515
8187f63c 1516static void external_snapshot_abort(void *opaque)
96b86bf7 1517{
8187f63c 1518 ExternalSnapshotState *state = opaque;
ba5d6ab6 1519 if (state->new_bs) {
067acf28 1520 if (state->overlay_appended) {
2d24b60b 1521 AioContext *aio_context;
377410f6
SL
1522 AioContext *tmp_context;
1523 int ret;
2d24b60b
SH
1524
1525 aio_context = bdrv_get_aio_context(state->old_bs);
2d24b60b 1526
719fc28c
JC
1527 bdrv_ref(state->old_bs); /* we can't let bdrv_set_backind_hd()
1528 close state->old_bs; we need it */
1529 bdrv_set_backing_hd(state->new_bs, NULL, &error_abort);
377410f6
SL
1530
1531 /*
1532 * The call to bdrv_set_backing_hd() above returns state->old_bs to
1533 * the main AioContext. As we're still going to be using it, return
1534 * it to the AioContext it was before.
1535 */
1536 tmp_context = bdrv_get_aio_context(state->old_bs);
1537 if (aio_context != tmp_context) {
142e6907
EGE
1538 ret = bdrv_try_change_aio_context(state->old_bs,
1539 aio_context, NULL, NULL);
377410f6 1540 assert(ret == 0);
377410f6
SL
1541 }
1542
ccd6a379 1543 bdrv_drained_begin(state->new_bs);
6bc30f19 1544 bdrv_graph_wrlock();
5fe31c25 1545 bdrv_replace_node(state->new_bs, state->old_bs, &error_abort);
6bc30f19 1546 bdrv_graph_wrunlock();
ccd6a379
KW
1547 bdrv_drained_end(state->new_bs);
1548
719fc28c 1549 bdrv_unref(state->old_bs); /* bdrv_replace_node() ref'ed old_bs */
b2c2832c 1550 }
96b86bf7 1551 }
da763e83
FZ
1552}
1553
8187f63c 1554static void external_snapshot_clean(void *opaque)
da763e83 1555{
8187f63c 1556 g_autofree ExternalSnapshotState *state = opaque;
2d24b60b
SH
1557
1558 if (!state->old_bs) {
1559 return;
5d6e96ef 1560 }
2d24b60b 1561
2d24b60b
SH
1562 bdrv_drained_end(state->old_bs);
1563 bdrv_unref(state->new_bs);
96b86bf7
WX
1564}
1565
3037f364 1566typedef struct DriveBackupState {
3037f364
SH
1567 BlockDriverState *bs;
1568 BlockJob *job;
1569} DriveBackupState;
1570
2288ccfa
SL
1571static BlockJob *do_backup_common(BackupCommon *backup,
1572 BlockDriverState *bs,
1573 BlockDriverState *target_bs,
1574 AioContext *aio_context,
1575 JobTxn *txn, Error **errp);
78f51fde 1576
8187f63c
VSO
1577static void drive_backup_commit(void *opaque);
1578static void drive_backup_abort(void *opaque);
1579static void drive_backup_clean(void *opaque);
1580TransactionActionDrv drive_backup_drv = {
1581 .commit = drive_backup_commit,
1582 .abort = drive_backup_abort,
1583 .clean = drive_backup_clean,
1584};
1585
d53c89ae
VSO
1586static void drive_backup_action(DriveBackup *backup,
1587 JobTxn *block_job_txn,
1588 Transaction *tran, Error **errp)
3037f364 1589{
d53c89ae 1590 DriveBackupState *state = g_new0(DriveBackupState, 1);
2288ccfa
SL
1591 BlockDriverState *bs;
1592 BlockDriverState *target_bs;
1593 BlockDriverState *source = NULL;
66d56054 1594 AioContext *aio_context;
04658a5b 1595 const char *format;
2288ccfa 1596 QDict *options;
3037f364 1597 Error *local_err = NULL;
2288ccfa
SL
1598 int flags;
1599 int64_t size;
1600 bool set_backing_hd = false;
3ea67e08 1601 int ret;
3037f364 1602
b7cfc7d5
KW
1603 GLOBAL_STATE_CODE();
1604
8187f63c
VSO
1605 tran_add(tran, &drive_backup_drv, state);
1606
2288ccfa
SL
1607 if (!backup->has_mode) {
1608 backup->mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS;
1609 }
1610
85c9d133 1611 bs = bdrv_lookup_bs(backup->device, backup->device, errp);
b7e4fa22 1612 if (!bs) {
1fdd4b7b
FZ
1613 return;
1614 }
1615
2288ccfa
SL
1616 if (!bs->drv) {
1617 error_setg(errp, "Device has no medium");
1618 return;
1619 }
1620
66d56054 1621 aio_context = bdrv_get_aio_context(bs);
66d56054 1622
2842ff2d 1623 state->bs = bs;
66d56054 1624 /* Paired with .clean() */
b7e4fa22 1625 bdrv_drained_begin(bs);
66d56054 1626
04658a5b
MA
1627 format = backup->format;
1628 if (!format && backup->mode != NEW_IMAGE_MODE_EXISTING) {
1629 format = bs->drv->format_name;
2288ccfa
SL
1630 }
1631
1632 /* Early check to avoid creating target */
277f2007 1633 bdrv_graph_rdlock_main_loop();
2288ccfa 1634 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_BACKUP_SOURCE, errp)) {
277f2007 1635 bdrv_graph_rdunlock_main_loop();
b49f4755 1636 return;
2288ccfa
SL
1637 }
1638
1639 flags = bs->open_flags | BDRV_O_RDWR;
1640
1641 /*
1642 * See if we have a backing HD we can use to create our new image
1643 * on top of.
1644 */
1645 if (backup->sync == MIRROR_SYNC_MODE_TOP) {
2b088c60
HR
1646 /*
1647 * Backup will not replace the source by the target, so none
1648 * of the filters skipped here will be removed (in contrast to
1649 * mirror). Therefore, we can skip all of them when looking
1650 * for the first COW relationship.
1651 */
1652 source = bdrv_cow_bs(bdrv_skip_filters(bs));
2288ccfa
SL
1653 if (!source) {
1654 backup->sync = MIRROR_SYNC_MODE_FULL;
1655 }
1656 }
1657 if (backup->sync == MIRROR_SYNC_MODE_NONE) {
1658 source = bs;
1659 flags |= BDRV_O_NO_BACKING;
1660 set_backing_hd = true;
1661 }
ad74751f 1662 bdrv_graph_rdunlock_main_loop();
2288ccfa
SL
1663
1664 size = bdrv_getlength(bs);
1665 if (size < 0) {
1666 error_setg_errno(errp, -size, "bdrv_getlength failed");
b49f4755 1667 return;
2288ccfa
SL
1668 }
1669
1670 if (backup->mode != NEW_IMAGE_MODE_EXISTING) {
04658a5b 1671 assert(format);
2288ccfa 1672 if (source) {
2b088c60 1673 /* Implicit filters should not appear in the filename */
430da832 1674 BlockDriverState *explicit_backing;
2b088c60 1675
b7cfc7d5 1676 bdrv_graph_rdlock_main_loop();
430da832 1677 explicit_backing = bdrv_skip_implicit_filters(source);
2b088c60 1678 bdrv_refresh_filename(explicit_backing);
b7cfc7d5
KW
1679 bdrv_graph_rdunlock_main_loop();
1680
04658a5b 1681 bdrv_img_create(backup->target, format,
2b088c60
HR
1682 explicit_backing->filename,
1683 explicit_backing->drv->format_name, NULL,
2288ccfa
SL
1684 size, flags, false, &local_err);
1685 } else {
04658a5b 1686 bdrv_img_create(backup->target, format, NULL, NULL, NULL,
2288ccfa
SL
1687 size, flags, false, &local_err);
1688 }
1689 }
5d6e96ef 1690
84d18f06 1691 if (local_err) {
3037f364 1692 error_propagate(errp, local_err);
b49f4755 1693 return;
3037f364 1694 }
66d56054 1695
2288ccfa
SL
1696 options = qdict_new();
1697 qdict_put_str(options, "discard", "unmap");
1698 qdict_put_str(options, "detect-zeroes", "unmap");
04658a5b
MA
1699 if (format) {
1700 qdict_put_str(options, "driver", format);
2288ccfa
SL
1701 }
1702
1703 target_bs = bdrv_open(backup->target, NULL, options, flags, errp);
1704 if (!target_bs) {
c6e0a6de 1705 return;
2288ccfa
SL
1706 }
1707
142e6907 1708 ret = bdrv_try_change_aio_context(target_bs, aio_context, NULL, errp);
3ea67e08
SL
1709 if (ret < 0) {
1710 bdrv_unref(target_bs);
3ea67e08
SL
1711 return;
1712 }
1713
2288ccfa 1714 if (set_backing_hd) {
5a11a1ca 1715 if (bdrv_set_backing_hd(target_bs, source, errp) < 0) {
2288ccfa
SL
1716 goto unref;
1717 }
1718 }
1719
2288ccfa
SL
1720 state->job = do_backup_common(qapi_DriveBackup_base(backup),
1721 bs, target_bs, aio_context,
d53c89ae 1722 block_job_txn, errp);
2288ccfa
SL
1723
1724unref:
1725 bdrv_unref(target_bs);
111049a4 1726}
3037f364 1727
8187f63c 1728static void drive_backup_commit(void *opaque)
111049a4 1729{
8187f63c 1730 DriveBackupState *state = opaque;
66d56054 1731
111049a4 1732 assert(state->job);
da01ff7f 1733 job_start(&state->job->job);
3037f364
SH
1734}
1735
8187f63c 1736static void drive_backup_abort(void *opaque)
3037f364 1737{
8187f63c 1738 DriveBackupState *state = opaque;
3037f364 1739
111049a4 1740 if (state->job) {
4cfb3f05 1741 job_cancel_sync(&state->job->job, true);
3037f364
SH
1742 }
1743}
1744
8187f63c 1745static void drive_backup_clean(void *opaque)
5d6e96ef 1746{
8187f63c 1747 g_autofree DriveBackupState *state = opaque;
5d6e96ef 1748
66d56054
SH
1749 if (!state->bs) {
1750 return;
5d6e96ef 1751 }
66d56054 1752
66d56054 1753 bdrv_drained_end(state->bs);
5d6e96ef
SH
1754}
1755
bd8baecd 1756typedef struct BlockdevBackupState {
bd8baecd
FZ
1757 BlockDriverState *bs;
1758 BlockJob *job;
bd8baecd
FZ
1759} BlockdevBackupState;
1760
8187f63c
VSO
1761static void blockdev_backup_commit(void *opaque);
1762static void blockdev_backup_abort(void *opaque);
1763static void blockdev_backup_clean(void *opaque);
1764TransactionActionDrv blockdev_backup_drv = {
1765 .commit = blockdev_backup_commit,
1766 .abort = blockdev_backup_abort,
1767 .clean = blockdev_backup_clean,
1768};
1769
d53c89ae
VSO
1770static void blockdev_backup_action(BlockdevBackup *backup,
1771 JobTxn *block_job_txn,
1772 Transaction *tran, Error **errp)
bd8baecd 1773{
d53c89ae 1774 BlockdevBackupState *state = g_new0(BlockdevBackupState, 1);
5b7bfe51
SL
1775 BlockDriverState *bs;
1776 BlockDriverState *target_bs;
edd5adee 1777 AioContext *aio_context;
3ea67e08 1778 int ret;
bd8baecd 1779
8187f63c
VSO
1780 tran_add(tran, &blockdev_backup_drv, state);
1781
930fe17f 1782 bs = bdrv_lookup_bs(backup->device, backup->device, errp);
cef34eeb 1783 if (!bs) {
ff52bf36
FZ
1784 return;
1785 }
1786
5b7bfe51
SL
1787 target_bs = bdrv_lookup_bs(backup->target, backup->target, errp);
1788 if (!target_bs) {
bd8baecd
FZ
1789 return;
1790 }
1791
142e6907 1792 /* Honor bdrv_try_change_aio_context() context acquisition requirements. */
edd5adee 1793 aio_context = bdrv_get_aio_context(bs);
3ea67e08 1794
142e6907 1795 ret = bdrv_try_change_aio_context(target_bs, aio_context, NULL, errp);
3ea67e08 1796 if (ret < 0) {
3ea67e08
SL
1797 return;
1798 }
1799
cef34eeb 1800 state->bs = bs;
edd5adee
SH
1801
1802 /* Paired with .clean() */
ff52bf36 1803 bdrv_drained_begin(state->bs);
bd8baecd 1804
5b7bfe51
SL
1805 state->job = do_backup_common(qapi_BlockdevBackup_base(backup),
1806 bs, target_bs, aio_context,
d53c89ae 1807 block_job_txn, errp);
111049a4 1808}
bd8baecd 1809
8187f63c 1810static void blockdev_backup_commit(void *opaque)
111049a4 1811{
8187f63c 1812 BlockdevBackupState *state = opaque;
edd5adee 1813
111049a4 1814 assert(state->job);
da01ff7f 1815 job_start(&state->job->job);
bd8baecd
FZ
1816}
1817
8187f63c 1818static void blockdev_backup_abort(void *opaque)
bd8baecd 1819{
8187f63c 1820 BlockdevBackupState *state = opaque;
bd8baecd 1821
111049a4 1822 if (state->job) {
4cfb3f05 1823 job_cancel_sync(&state->job->job, true);
bd8baecd
FZ
1824 }
1825}
1826
8187f63c 1827static void blockdev_backup_clean(void *opaque)
bd8baecd 1828{
8187f63c 1829 g_autofree BlockdevBackupState *state = opaque;
bd8baecd 1830
edd5adee
SH
1831 if (!state->bs) {
1832 return;
bd8baecd 1833 }
edd5adee 1834
edd5adee 1835 bdrv_drained_end(state->bs);
bd8baecd
FZ
1836}
1837
df9a681d 1838typedef struct BlockDirtyBitmapState {
df9a681d
FZ
1839 BdrvDirtyBitmap *bitmap;
1840 BlockDriverState *bs;
df9a681d 1841 HBitmap *backup;
c6490447 1842 bool was_enabled;
df9a681d
FZ
1843} BlockDirtyBitmapState;
1844
8187f63c
VSO
1845static void block_dirty_bitmap_add_abort(void *opaque);
1846TransactionActionDrv block_dirty_bitmap_add_drv = {
1847 .abort = block_dirty_bitmap_add_abort,
1848 .clean = g_free,
1849};
1850
d53c89ae 1851static void block_dirty_bitmap_add_action(BlockDirtyBitmapAdd *action,
8187f63c 1852 Transaction *tran, Error **errp)
df9a681d
FZ
1853{
1854 Error *local_err = NULL;
d53c89ae 1855 BlockDirtyBitmapState *state = g_new0(BlockDirtyBitmapState, 1);
df9a681d 1856
8187f63c
VSO
1857 tran_add(tran, &block_dirty_bitmap_add_drv, state);
1858
df9a681d
FZ
1859 /* AIO context taken and released within qmp_block_dirty_bitmap_add */
1860 qmp_block_dirty_bitmap_add(action->node, action->name,
1861 action->has_granularity, action->granularity,
fd5ae4cc 1862 action->has_persistent, action->persistent,
0e2b7f09 1863 action->has_disabled, action->disabled,
df9a681d
FZ
1864 &local_err);
1865
1866 if (!local_err) {
c85feafa
VSO
1867 state->bitmap = block_dirty_bitmap_lookup(action->node, action->name,
1868 NULL, &error_abort);
df9a681d
FZ
1869 } else {
1870 error_propagate(errp, local_err);
1871 }
1872}
1873
8187f63c 1874static void block_dirty_bitmap_add_abort(void *opaque)
df9a681d 1875{
8187f63c 1876 BlockDirtyBitmapState *state = opaque;
df9a681d 1877
c85feafa
VSO
1878 if (state->bitmap) {
1879 bdrv_release_dirty_bitmap(state->bitmap);
df9a681d
FZ
1880 }
1881}
1882
8187f63c
VSO
1883static void block_dirty_bitmap_restore(void *opaque);
1884static void block_dirty_bitmap_free_backup(void *opaque);
1885TransactionActionDrv block_dirty_bitmap_clear_drv = {
1886 .abort = block_dirty_bitmap_restore,
1887 .commit = block_dirty_bitmap_free_backup,
1888 .clean = g_free,
1889};
1890
d53c89ae 1891static void block_dirty_bitmap_clear_action(BlockDirtyBitmap *action,
8187f63c 1892 Transaction *tran, Error **errp)
df9a681d 1893{
d53c89ae 1894 BlockDirtyBitmapState *state = g_new0(BlockDirtyBitmapState, 1);
df9a681d 1895
8187f63c
VSO
1896 tran_add(tran, &block_dirty_bitmap_clear_drv, state);
1897
df9a681d
FZ
1898 state->bitmap = block_dirty_bitmap_lookup(action->node,
1899 action->name,
1900 &state->bs,
df9a681d
FZ
1901 errp);
1902 if (!state->bitmap) {
1903 return;
1904 }
1905
3ae96d66 1906 if (bdrv_dirty_bitmap_check(state->bitmap, BDRV_BITMAP_DEFAULT, errp)) {
d6883bc9 1907 return;
df9a681d
FZ
1908 }
1909
1910 bdrv_clear_dirty_bitmap(state->bitmap, &state->backup);
df9a681d
FZ
1911}
1912
8187f63c 1913static void block_dirty_bitmap_restore(void *opaque)
df9a681d 1914{
8187f63c 1915 BlockDirtyBitmapState *state = opaque;
df9a681d 1916
184dd9c4 1917 if (state->backup) {
56bd6624 1918 bdrv_restore_dirty_bitmap(state->bitmap, state->backup);
184dd9c4 1919 }
df9a681d
FZ
1920}
1921
8187f63c 1922static void block_dirty_bitmap_free_backup(void *opaque)
df9a681d 1923{
8187f63c 1924 BlockDirtyBitmapState *state = opaque;
df9a681d
FZ
1925
1926 hbitmap_free(state->backup);
1927}
1928
8187f63c
VSO
1929static void block_dirty_bitmap_enable_abort(void *opaque);
1930TransactionActionDrv block_dirty_bitmap_enable_drv = {
1931 .abort = block_dirty_bitmap_enable_abort,
1932 .clean = g_free,
1933};
1934
d53c89ae 1935static void block_dirty_bitmap_enable_action(BlockDirtyBitmap *action,
8187f63c 1936 Transaction *tran, Error **errp)
c6490447 1937{
d53c89ae 1938 BlockDirtyBitmapState *state = g_new0(BlockDirtyBitmapState, 1);
c6490447 1939
8187f63c
VSO
1940 tran_add(tran, &block_dirty_bitmap_enable_drv, state);
1941
c6490447
VSO
1942 state->bitmap = block_dirty_bitmap_lookup(action->node,
1943 action->name,
1944 NULL,
1945 errp);
1946 if (!state->bitmap) {
1947 return;
1948 }
1949
3ae96d66 1950 if (bdrv_dirty_bitmap_check(state->bitmap, BDRV_BITMAP_ALLOW_RO, errp)) {
b053bb55
JS
1951 return;
1952 }
1953
c6490447
VSO
1954 state->was_enabled = bdrv_dirty_bitmap_enabled(state->bitmap);
1955 bdrv_enable_dirty_bitmap(state->bitmap);
1956}
1957
8187f63c 1958static void block_dirty_bitmap_enable_abort(void *opaque)
c6490447 1959{
8187f63c 1960 BlockDirtyBitmapState *state = opaque;
c6490447
VSO
1961
1962 if (!state->was_enabled) {
1963 bdrv_disable_dirty_bitmap(state->bitmap);
1964 }
1965}
1966
8187f63c
VSO
1967static void block_dirty_bitmap_disable_abort(void *opaque);
1968TransactionActionDrv block_dirty_bitmap_disable_drv = {
1969 .abort = block_dirty_bitmap_disable_abort,
1970 .clean = g_free,
1971};
1972
d53c89ae 1973static void block_dirty_bitmap_disable_action(BlockDirtyBitmap *action,
8187f63c 1974 Transaction *tran, Error **errp)
c6490447 1975{
d53c89ae 1976 BlockDirtyBitmapState *state = g_new0(BlockDirtyBitmapState, 1);
c6490447 1977
8187f63c
VSO
1978 tran_add(tran, &block_dirty_bitmap_disable_drv, state);
1979
c6490447
VSO
1980 state->bitmap = block_dirty_bitmap_lookup(action->node,
1981 action->name,
1982 NULL,
1983 errp);
1984 if (!state->bitmap) {
1985 return;
1986 }
1987
3ae96d66 1988 if (bdrv_dirty_bitmap_check(state->bitmap, BDRV_BITMAP_ALLOW_RO, errp)) {
b053bb55
JS
1989 return;
1990 }
1991
c6490447
VSO
1992 state->was_enabled = bdrv_dirty_bitmap_enabled(state->bitmap);
1993 bdrv_disable_dirty_bitmap(state->bitmap);
1994}
1995
8187f63c 1996static void block_dirty_bitmap_disable_abort(void *opaque)
c6490447 1997{
8187f63c 1998 BlockDirtyBitmapState *state = opaque;
c6490447
VSO
1999
2000 if (state->was_enabled) {
2001 bdrv_enable_dirty_bitmap(state->bitmap);
2002 }
2003}
2004
8187f63c
VSO
2005TransactionActionDrv block_dirty_bitmap_merge_drv = {
2006 .commit = block_dirty_bitmap_free_backup,
2007 .abort = block_dirty_bitmap_restore,
2008 .clean = g_free,
2009};
2010
d53c89ae 2011static void block_dirty_bitmap_merge_action(BlockDirtyBitmapMerge *action,
8187f63c 2012 Transaction *tran, Error **errp)
6fd2e407 2013{
d53c89ae 2014 BlockDirtyBitmapState *state = g_new0(BlockDirtyBitmapState, 1);
6fd2e407 2015
8187f63c
VSO
2016 tran_add(tran, &block_dirty_bitmap_merge_drv, state);
2017
c6996cf9
EB
2018 state->bitmap = block_dirty_bitmap_merge(action->node, action->target,
2019 action->bitmaps, &state->backup,
2020 errp);
6fd2e407
VSO
2021}
2022
8187f63c
VSO
2023static void block_dirty_bitmap_remove_commit(void *opaque);
2024static void block_dirty_bitmap_remove_abort(void *opaque);
2025TransactionActionDrv block_dirty_bitmap_remove_drv = {
2026 .commit = block_dirty_bitmap_remove_commit,
2027 .abort = block_dirty_bitmap_remove_abort,
2028 .clean = g_free,
2029};
2030
d53c89ae 2031static void block_dirty_bitmap_remove_action(BlockDirtyBitmap *action,
8187f63c 2032 Transaction *tran, Error **errp)
c4e4b0fa 2033{
d53c89ae 2034 BlockDirtyBitmapState *state = g_new0(BlockDirtyBitmapState, 1);
c4e4b0fa 2035
8187f63c
VSO
2036 tran_add(tran, &block_dirty_bitmap_remove_drv, state);
2037
c4e4b0fa 2038
c6996cf9
EB
2039 state->bitmap = block_dirty_bitmap_remove(action->node, action->name,
2040 false, &state->bs, errp);
c4e4b0fa
JS
2041 if (state->bitmap) {
2042 bdrv_dirty_bitmap_skip_store(state->bitmap, true);
2043 bdrv_dirty_bitmap_set_busy(state->bitmap, true);
2044 }
2045}
2046
8187f63c 2047static void block_dirty_bitmap_remove_abort(void *opaque)
c4e4b0fa 2048{
8187f63c 2049 BlockDirtyBitmapState *state = opaque;
c4e4b0fa
JS
2050
2051 if (state->bitmap) {
2052 bdrv_dirty_bitmap_skip_store(state->bitmap, false);
2053 bdrv_dirty_bitmap_set_busy(state->bitmap, false);
2054 }
2055}
2056
8187f63c 2057static void block_dirty_bitmap_remove_commit(void *opaque)
c4e4b0fa 2058{
8187f63c 2059 BlockDirtyBitmapState *state = opaque;
c4e4b0fa
JS
2060
2061 bdrv_dirty_bitmap_set_busy(state->bitmap, false);
5deb6cbd 2062 bdrv_release_dirty_bitmap(state->bitmap);
c4e4b0fa
JS
2063}
2064
8187f63c
VSO
2065static void abort_commit(void *opaque);
2066TransactionActionDrv abort_drv = {
2067 .commit = abort_commit,
8187f63c
VSO
2068};
2069
d53c89ae 2070static void abort_action(Transaction *tran, Error **errp)
78b18b78 2071{
d53c89ae 2072 tran_add(tran, &abort_drv, NULL);
78b18b78
SH
2073 error_setg(errp, "Transaction aborted using Abort action");
2074}
2075
8187f63c 2076static void abort_commit(void *opaque)
78b18b78 2077{
dfc6f865 2078 g_assert_not_reached(); /* this action never succeeds */
78b18b78
SH
2079}
2080
d53c89ae
VSO
2081static void transaction_action(TransactionAction *act, JobTxn *block_job_txn,
2082 Transaction *tran, Error **errp)
2083{
2084 switch (act->type) {
2085 case TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT:
2086 case TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC:
2087 external_snapshot_action(act, tran, errp);
2088 return;
2089 case TRANSACTION_ACTION_KIND_DRIVE_BACKUP:
2090 drive_backup_action(act->u.drive_backup.data,
2091 block_job_txn, tran, errp);
2092 return;
2093 case TRANSACTION_ACTION_KIND_BLOCKDEV_BACKUP:
2094 blockdev_backup_action(act->u.blockdev_backup.data,
2095 block_job_txn, tran, errp);
2096 return;
2097 case TRANSACTION_ACTION_KIND_ABORT:
2098 abort_action(tran, errp);
2099 return;
2100 case TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC:
2101 internal_snapshot_action(act->u.blockdev_snapshot_internal_sync.data,
2102 tran, errp);
2103 return;
2104 case TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_ADD:
2105 block_dirty_bitmap_add_action(act->u.block_dirty_bitmap_add.data,
2106 tran, errp);
2107 return;
2108 case TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_CLEAR:
2109 block_dirty_bitmap_clear_action(act->u.block_dirty_bitmap_clear.data,
2110 tran, errp);
2111 return;
2112 case TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_ENABLE:
2113 block_dirty_bitmap_enable_action(act->u.block_dirty_bitmap_enable.data,
2114 tran, errp);
2115 return;
2116 case TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_DISABLE:
2117 block_dirty_bitmap_disable_action(
2118 act->u.block_dirty_bitmap_disable.data, tran, errp);
2119 return;
2120 case TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_MERGE:
2121 block_dirty_bitmap_merge_action(act->u.block_dirty_bitmap_merge.data,
2122 tran, errp);
2123 return;
2124 case TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_REMOVE:
2125 block_dirty_bitmap_remove_action(act->u.block_dirty_bitmap_remove.data,
2126 tran, errp);
2127 return;
2128 /*
2129 * Where are transactions for MIRROR, COMMIT and STREAM?
66da04dd
JS
2130 * Although these blockjobs use transaction callbacks like the backup job,
2131 * these jobs do not necessarily adhere to transaction semantics.
2132 * These jobs may not fully undo all of their actions on abort, nor do they
2133 * necessarily work in transactions with more than one job in them.
2134 */
d53c89ae
VSO
2135 case TRANSACTION_ACTION_KIND__MAX:
2136 default:
2137 g_assert_not_reached();
2138 };
2139}
2140
ba0c86a3 2141
8802d1fd 2142/*
b756b9ce
SH
2143 * 'Atomic' group operations. The operations are performed as a set, and if
2144 * any fail then we roll back all operations in the group.
ebc2752b
EGE
2145 *
2146 * Always run under BQL.
8802d1fd 2147 */
24039696
VSO
2148void qmp_transaction(TransactionActionList *actions,
2149 struct TransactionProperties *properties,
94d16a64 2150 Error **errp)
8802d1fd 2151{
30c96b55 2152 TransactionActionList *act;
62c9e416 2153 JobTxn *block_job_txn = NULL;
43e17041 2154 Error *local_err = NULL;
c85f34cf
VSO
2155 Transaction *tran;
2156 ActionCompletionMode comp_mode =
2157 properties ? properties->completion_mode :
2158 ACTION_COMPLETION_MODE_INDIVIDUAL;
8802d1fd 2159
b4ad82aa
EGE
2160 GLOBAL_STATE_CODE();
2161
94d16a64 2162 /* Does this transaction get canceled as a group on failure?
62c9e416 2163 * If not, we don't really need to make a JobTxn.
94d16a64 2164 */
c85f34cf
VSO
2165 if (comp_mode != ACTION_COMPLETION_MODE_INDIVIDUAL) {
2166 for (act = actions; act; act = act->next) {
2167 TransactionActionKind type = act->value->type;
2168
2169 if (type != TRANSACTION_ACTION_KIND_BLOCKDEV_BACKUP &&
2170 type != TRANSACTION_ACTION_KIND_DRIVE_BACKUP)
2171 {
2172 error_setg(errp,
2173 "Action '%s' does not support transaction property "
2174 "completion-mode = %s",
2175 TransactionActionKind_str(type),
2176 ActionCompletionMode_str(comp_mode));
2177 return;
2178 }
2179 }
2180
7eaa8fb5 2181 block_job_txn = job_txn_new();
94d16a64
JS
2182 }
2183
b756b9ce 2184 /* drain all i/o before any operations */
8802d1fd
JC
2185 bdrv_drain_all();
2186
c85f34cf
VSO
2187 tran = tran_new();
2188
b756b9ce 2189 /* We don't do anything in this loop that commits us to the operations */
30c96b55 2190 for (act = actions; act; act = act->next) {
d53c89ae 2191 transaction_action(act->value, block_job_txn, tran, &local_err);
84d18f06 2192 if (local_err) {
ba0c86a3
WX
2193 error_propagate(errp, local_err);
2194 goto delete_and_fail;
8802d1fd 2195 }
8802d1fd
JC
2196 }
2197
8187f63c 2198 tran_commit(tran);
8802d1fd
JC
2199
2200 /* success */
2201 goto exit;
2202
2203delete_and_fail:
b756b9ce 2204 /* failure, and it is all-or-none; roll back all operations */
8187f63c 2205 tran_abort(tran);
8802d1fd 2206exit:
7eaa8fb5 2207 job_txn_unref(block_job_txn);
8802d1fd
JC
2208}
2209
a3b52535
VSO
2210BlockDirtyBitmapSha256 *qmp_x_debug_block_dirty_bitmap_sha256(const char *node,
2211 const char *name,
2212 Error **errp)
2213{
2214 BdrvDirtyBitmap *bitmap;
2215 BlockDriverState *bs;
2216 BlockDirtyBitmapSha256 *ret = NULL;
2217 char *sha256;
2218
2219 bitmap = block_dirty_bitmap_lookup(node, name, &bs, errp);
2220 if (!bitmap || !bs) {
2221 return NULL;
2222 }
2223
2224 sha256 = bdrv_dirty_bitmap_sha256(bitmap, errp);
2225 if (sha256 == NULL) {
2226 return NULL;
2227 }
2228
2229 ret = g_new(BlockDirtyBitmapSha256, 1);
2230 ret->sha256 = sha256;
2231
2232 return ret;
2233}
2234
54fde4ff 2235void coroutine_fn qmp_block_resize(const char *device, const char *node_name,
eb94b81a 2236 int64_t size, Error **errp)
6d4a2b3a 2237{
3b1dbd11 2238 Error *local_err = NULL;
d9dbf25f 2239 BlockBackend *blk;
6d4a2b3a 2240 BlockDriverState *bs;
eb94b81a 2241 AioContext *old_ctx;
6d4a2b3a 2242
54fde4ff 2243 bs = bdrv_lookup_bs(device, node_name, &local_err);
84d18f06 2244 if (local_err) {
3b1dbd11
BC
2245 error_propagate(errp, local_err);
2246 return;
2247 }
2248
6d4a2b3a 2249 if (size < 0) {
c6bd8c70 2250 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "size", "a >0 size");
d9dbf25f 2251 return;
6d4a2b3a
CH
2252 }
2253
277f2007 2254 bdrv_graph_co_rdlock();
9c75e168 2255 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_RESIZE, NULL)) {
c6bd8c70 2256 error_setg(errp, QERR_DEVICE_IN_USE, device);
277f2007 2257 bdrv_graph_co_rdunlock();
d9dbf25f 2258 return;
9c75e168 2259 }
277f2007 2260 bdrv_graph_co_rdunlock();
9c75e168 2261
0c7d204f 2262 blk = blk_co_new_with_bs(bs, BLK_PERM_RESIZE, BLK_PERM_ALL, errp);
a3aeeab5 2263 if (!blk) {
d9dbf25f 2264 return;
d7086422 2265 }
7dad9ee6 2266
698bdfa0 2267 bdrv_drained_begin(bs);
8089eab2 2268
eb94b81a 2269 old_ctx = bdrv_co_enter(bs);
247cf5c0 2270 blk_co_truncate(blk, size, false, PREALLOC_MODE_OFF, 0, errp);
eb94b81a 2271 bdrv_co_leave(bs, old_ctx);
927e0e76 2272
8089eab2 2273 bdrv_drained_end(bs);
755ae381 2274 blk_co_unref(blk);
6d4a2b3a 2275}
12bd451f 2276
54fde4ff
MA
2277void qmp_block_stream(const char *job_id, const char *device,
2278 const char *base,
2279 const char *base_node,
2280 const char *backing_file,
2281 const char *bottom,
13d8cc51 2282 bool has_speed, int64_t speed,
1d809098 2283 bool has_on_error, BlockdevOnError on_error,
54fde4ff 2284 const char *filter_node_name,
241ca1ab
JS
2285 bool has_auto_finalize, bool auto_finalize,
2286 bool has_auto_dismiss, bool auto_dismiss,
1d809098 2287 Error **errp)
12bd451f 2288{
7f4a396d 2289 BlockDriverState *bs, *iter, *iter_end;
c8c3080f 2290 BlockDriverState *base_bs = NULL;
7f4a396d 2291 BlockDriverState *bottom_bs = NULL;
f3e69beb 2292 AioContext *aio_context;
fd7f8c65 2293 Error *local_err = NULL;
cf6320df 2294 int job_flags = JOB_DEFAULT;
12bd451f 2295
b7cfc7d5
KW
2296 GLOBAL_STATE_CODE();
2297
54fde4ff 2298 if (base && base_node) {
7f4a396d
VSO
2299 error_setg(errp, "'base' and 'base-node' cannot be specified "
2300 "at the same time");
2301 return;
2302 }
2303
54fde4ff 2304 if (base && bottom) {
7f4a396d
VSO
2305 error_setg(errp, "'base' and 'bottom' cannot be specified "
2306 "at the same time");
2307 return;
2308 }
2309
54fde4ff 2310 if (bottom && base_node) {
7f4a396d
VSO
2311 error_setg(errp, "'bottom' and 'base-node' cannot be specified "
2312 "at the same time");
2313 return;
2314 }
2315
1d809098
PB
2316 if (!has_on_error) {
2317 on_error = BLOCKDEV_ON_ERROR_REPORT;
2318 }
2319
554b6147 2320 bs = bdrv_lookup_bs(device, device, errp);
b6c1bae5 2321 if (!bs) {
12bd451f
SH
2322 return;
2323 }
2324
b6c1bae5 2325 aio_context = bdrv_get_aio_context(bs);
f3e69beb 2326
79bb7627 2327 bdrv_graph_rdlock_main_loop();
54fde4ff 2328 if (base) {
c8c3080f
MT
2329 base_bs = bdrv_find_backing_image(bs, base);
2330 if (base_bs == NULL) {
b0d7be2a 2331 error_setg(errp, "Can't find '%s' in the backing chain", base);
79bb7627 2332 goto out_rdlock;
c8c3080f 2333 }
f3e69beb 2334 assert(bdrv_get_aio_context(base_bs) == aio_context);
12bd451f
SH
2335 }
2336
54fde4ff 2337 if (base_node) {
312fe09c
AG
2338 base_bs = bdrv_lookup_bs(NULL, base_node, errp);
2339 if (!base_bs) {
79bb7627 2340 goto out_rdlock;
312fe09c
AG
2341 }
2342 if (bs == base_bs || !bdrv_chain_contains(bs, base_bs)) {
2343 error_setg(errp, "Node '%s' is not a backing image of '%s'",
2344 base_node, device);
79bb7627 2345 goto out_rdlock;
312fe09c
AG
2346 }
2347 assert(bdrv_get_aio_context(base_bs) == aio_context);
b7cfc7d5 2348
f30c66ba 2349 bdrv_refresh_filename(base_bs);
312fe09c
AG
2350 }
2351
54fde4ff 2352 if (bottom) {
7f4a396d
VSO
2353 bottom_bs = bdrv_lookup_bs(NULL, bottom, errp);
2354 if (!bottom_bs) {
79bb7627 2355 goto out_rdlock;
7f4a396d
VSO
2356 }
2357 if (!bottom_bs->drv) {
2358 error_setg(errp, "Node '%s' is not open", bottom);
79bb7627 2359 goto out_rdlock;
7f4a396d
VSO
2360 }
2361 if (bottom_bs->drv->is_filter) {
2362 error_setg(errp, "Node '%s' is a filter, use a non-filter node "
2363 "as 'bottom'", bottom);
79bb7627 2364 goto out_rdlock;
7f4a396d
VSO
2365 }
2366 if (!bdrv_chain_contains(bs, bottom_bs)) {
2367 error_setg(errp, "Node '%s' is not in a chain starting from '%s'",
2368 bottom, device);
79bb7627 2369 goto out_rdlock;
7f4a396d
VSO
2370 }
2371 assert(bdrv_get_aio_context(bottom_bs) == aio_context);
2372 }
2373
2374 /*
2375 * Check for op blockers in the whole chain between bs and base (or bottom)
2376 */
372b69f5 2377 iter_end = bottom ? bdrv_filter_or_cow_bs(bottom_bs) : base_bs;
7f4a396d 2378 for (iter = bs; iter && iter != iter_end;
67acfd21
HR
2379 iter = bdrv_filter_or_cow_bs(iter))
2380 {
554b6147 2381 if (bdrv_op_is_blocked(iter, BLOCK_OP_TYPE_STREAM, errp)) {
79bb7627 2382 goto out_rdlock;
554b6147
AG
2383 }
2384 }
277f2007 2385 bdrv_graph_rdunlock_main_loop();
554b6147 2386
13d8cc51
JC
2387 /* if we are streaming the entire chain, the result will have no backing
2388 * file, and specifying one is therefore an error */
54fde4ff 2389 if (!base_bs && backing_file) {
13d8cc51
JC
2390 error_setg(errp, "backing file specified, but streaming the "
2391 "entire chain");
b49f4755 2392 return;
13d8cc51
JC
2393 }
2394
241ca1ab
JS
2395 if (has_auto_finalize && !auto_finalize) {
2396 job_flags |= JOB_MANUAL_FINALIZE;
2397 }
2398 if (has_auto_dismiss && !auto_dismiss) {
2399 job_flags |= JOB_MANUAL_DISMISS;
2400 }
2401
54fde4ff 2402 stream_start(job_id, bs, base_bs, backing_file,
7f4a396d 2403 bottom_bs, job_flags, has_speed ? speed : 0, on_error,
880747a8 2404 filter_node_name, &local_err);
84d18f06 2405 if (local_err) {
fd7f8c65 2406 error_propagate(errp, local_err);
b49f4755 2407 return;
12bd451f
SH
2408 }
2409
b23c580c 2410 trace_qmp_block_stream(bs);
79bb7627
KW
2411 return;
2412
2413out_rdlock:
2414 bdrv_graph_rdunlock_main_loop();
12bd451f 2415}
2d47c6e9 2416
54fde4ff
MA
2417void qmp_block_commit(const char *job_id, const char *device,
2418 const char *base_node,
2419 const char *base,
2420 const char *top_node,
2421 const char *top,
2422 const char *backing_file,
ed61fc10 2423 bool has_speed, int64_t speed,
8faad1c7 2424 bool has_on_error, BlockdevOnError on_error,
54fde4ff 2425 const char *filter_node_name,
96fbf534
JS
2426 bool has_auto_finalize, bool auto_finalize,
2427 bool has_auto_dismiss, bool auto_dismiss,
ed61fc10
JC
2428 Error **errp)
2429{
2430 BlockDriverState *bs;
058223a6 2431 BlockDriverState *iter;
ed61fc10 2432 BlockDriverState *base_bs, *top_bs;
9e85cd5c 2433 AioContext *aio_context;
ed61fc10 2434 Error *local_err = NULL;
5360782d 2435 int job_flags = JOB_DEFAULT;
05ea385a 2436 uint64_t top_perm, top_shared;
ed61fc10 2437
bce73bc2
KW
2438 /* TODO We'll eventually have to take a writer lock in this function */
2439 GRAPH_RDLOCK_GUARD_MAINLOOP();
2440
54504663
HR
2441 if (!has_speed) {
2442 speed = 0;
2443 }
8faad1c7
KW
2444 if (!has_on_error) {
2445 on_error = BLOCKDEV_ON_ERROR_REPORT;
2446 }
96fbf534
JS
2447 if (has_auto_finalize && !auto_finalize) {
2448 job_flags |= JOB_MANUAL_FINALIZE;
2449 }
2450 if (has_auto_dismiss && !auto_dismiss) {
2451 job_flags |= JOB_MANUAL_DISMISS;
2452 }
54504663 2453
7676e2c5
JC
2454 /* Important Note:
2455 * libvirt relies on the DeviceNotFound error class in order to probe for
2456 * live commit feature versions; for this to work, we must make sure to
2457 * perform the device lookup before any generic errors that may occur in a
2458 * scenario in which all optional arguments are omitted. */
1d13b167
KW
2459 bs = qmp_get_root_bs(device, &local_err);
2460 if (!bs) {
2461 bs = bdrv_lookup_bs(device, device, NULL);
2462 if (!bs) {
2463 error_free(local_err);
2464 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
2465 "Device '%s' not found", device);
2466 } else {
2467 error_propagate(errp, local_err);
2468 }
ed61fc10 2469 return;
628ff683
FZ
2470 }
2471
1d13b167 2472 aio_context = bdrv_get_aio_context(bs);
9e85cd5c 2473
bb00021d 2474 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_COMMIT_SOURCE, errp)) {
b49f4755 2475 return;
ed61fc10 2476 }
ed61fc10
JC
2477
2478 /* default top_bs is the active layer */
2479 top_bs = bs;
2480
54fde4ff 2481 if (top_node && top) {
3c605f40 2482 error_setg(errp, "'top-node' and 'top' are mutually exclusive");
b49f4755 2483 return;
54fde4ff 2484 } else if (top_node) {
3c605f40
KW
2485 top_bs = bdrv_lookup_bs(NULL, top_node, errp);
2486 if (top_bs == NULL) {
b49f4755 2487 return;
3c605f40
KW
2488 }
2489 if (!bdrv_chain_contains(bs, top_bs)) {
2490 error_setg(errp, "'%s' is not in this backing file chain",
2491 top_node);
b49f4755 2492 return;
3c605f40 2493 }
54fde4ff 2494 } else if (top) {
f30c66ba
HR
2495 /* This strcmp() is just a shortcut, there is no need to
2496 * refresh @bs's filename. If it mismatches,
2497 * bdrv_find_backing_image() will do the refresh and may still
2498 * return @bs. */
ed61fc10
JC
2499 if (strcmp(bs->filename, top) != 0) {
2500 top_bs = bdrv_find_backing_image(bs, top);
2501 }
2502 }
2503
2504 if (top_bs == NULL) {
2505 error_setg(errp, "Top image file %s not found", top ? top : "NULL");
b49f4755 2506 return;
ed61fc10
JC
2507 }
2508
9e85cd5c
SH
2509 assert(bdrv_get_aio_context(top_bs) == aio_context);
2510
54fde4ff 2511 if (base_node && base) {
3c605f40 2512 error_setg(errp, "'base-node' and 'base' are mutually exclusive");
b49f4755 2513 return;
54fde4ff 2514 } else if (base_node) {
3c605f40
KW
2515 base_bs = bdrv_lookup_bs(NULL, base_node, errp);
2516 if (base_bs == NULL) {
b49f4755 2517 return;
3c605f40
KW
2518 }
2519 if (!bdrv_chain_contains(top_bs, base_bs)) {
2520 error_setg(errp, "'%s' is not in this backing file chain",
2521 base_node);
b49f4755 2522 return;
3c605f40 2523 }
54fde4ff 2524 } else if (base) {
d5208c45 2525 base_bs = bdrv_find_backing_image(top_bs, base);
b0d7be2a
MA
2526 if (base_bs == NULL) {
2527 error_setg(errp, "Can't find '%s' in the backing chain", base);
b49f4755 2528 return;
b0d7be2a 2529 }
d5208c45
JC
2530 } else {
2531 base_bs = bdrv_find_base(top_bs);
b0d7be2a
MA
2532 if (base_bs == NULL) {
2533 error_setg(errp, "There is no backimg image");
b49f4755 2534 return;
b0d7be2a 2535 }
d5208c45
JC
2536 }
2537
9e85cd5c
SH
2538 assert(bdrv_get_aio_context(base_bs) == aio_context);
2539
9a71b9de
HR
2540 for (iter = top_bs; iter != bdrv_filter_or_cow_bs(base_bs);
2541 iter = bdrv_filter_or_cow_bs(iter))
2542 {
058223a6 2543 if (bdrv_op_is_blocked(iter, BLOCK_OP_TYPE_COMMIT_TARGET, errp)) {
b49f4755 2544 return;
058223a6 2545 }
bb00021d
FZ
2546 }
2547
7676e2c5
JC
2548 /* Do not allow attempts to commit an image into itself */
2549 if (top_bs == base_bs) {
2550 error_setg(errp, "cannot commit an image into itself");
b49f4755 2551 return;
7676e2c5
JC
2552 }
2553
05ea385a
HR
2554 /*
2555 * Active commit is required if and only if someone has taken a
2556 * WRITE permission on the top node. Historically, we have always
2557 * used active commit for top nodes, so continue that practice
2558 * lest we possibly break clients that rely on this behavior, e.g.
2559 * to later attach this node to a writing parent.
2560 * (Active commit is never really wrong.)
2561 */
2562 bdrv_get_cumulative_perm(top_bs, &top_perm, &top_shared);
2563 if (top_perm & BLK_PERM_WRITE ||
2564 bdrv_skip_filters(top_bs) == bdrv_skip_filters(bs))
2565 {
54fde4ff 2566 if (backing_file) {
05ea385a
HR
2567 if (bdrv_skip_filters(top_bs) == bdrv_skip_filters(bs)) {
2568 error_setg(errp, "'backing-file' specified,"
2569 " but 'top' is the active layer");
2570 } else {
2571 error_setg(errp, "'backing-file' specified, but 'top' has a "
2572 "writer on it");
2573 }
b49f4755 2574 return;
54e26900 2575 }
54fde4ff 2576 if (!job_id) {
05ea385a
HR
2577 /*
2578 * Emulate here what block_job_create() does, because it
2579 * is possible that @bs != @top_bs (the block job should
2580 * be named after @bs, even if @top_bs is the actual
2581 * source)
2582 */
2583 job_id = bdrv_get_device_name(bs);
2584 }
2585 commit_active_start(job_id, top_bs, base_bs, job_flags, speed, on_error,
78bbd910 2586 filter_node_name, NULL, NULL, false, &local_err);
20a63d2c 2587 } else {
058223a6
AG
2588 BlockDriverState *overlay_bs = bdrv_find_overlay(bs, top_bs);
2589 if (bdrv_op_is_blocked(overlay_bs, BLOCK_OP_TYPE_COMMIT_TARGET, errp)) {
b49f4755 2590 return;
058223a6 2591 }
54fde4ff
MA
2592 commit_start(job_id, bs, base_bs, top_bs, job_flags,
2593 speed, on_error, backing_file,
0db832f4 2594 filter_node_name, &local_err);
20a63d2c 2595 }
ed61fc10
JC
2596 if (local_err != NULL) {
2597 error_propagate(errp, local_err);
b49f4755 2598 return;
ed61fc10 2599 }
ed61fc10
JC
2600}
2601
7b0b870b
JS
2602/* Common QMP interface for drive-backup and blockdev-backup */
2603static BlockJob *do_backup_common(BackupCommon *backup,
2604 BlockDriverState *bs,
2605 BlockDriverState *target_bs,
2606 AioContext *aio_context,
2607 JobTxn *txn, Error **errp)
99a9addf 2608{
111049a4 2609 BlockJob *job = NULL;
d58d8453 2610 BdrvDirtyBitmap *bmap = NULL;
6a30f663 2611 BackupPerf perf = { .max_workers = 64 };
7b0b870b 2612 int job_flags = JOB_DEFAULT;
99a9addf 2613
81206a89
PB
2614 if (!backup->has_speed) {
2615 backup->speed = 0;
99a9addf 2616 }
81206a89
PB
2617 if (!backup->has_on_source_error) {
2618 backup->on_source_error = BLOCKDEV_ON_ERROR_REPORT;
99a9addf 2619 }
81206a89
PB
2620 if (!backup->has_on_target_error) {
2621 backup->on_target_error = BLOCKDEV_ON_ERROR_REPORT;
99a9addf 2622 }
b40dacdc
JS
2623 if (!backup->has_auto_finalize) {
2624 backup->auto_finalize = true;
2625 }
2626 if (!backup->has_auto_dismiss) {
2627 backup->auto_dismiss = true;
2628 }
13b9414b
PB
2629 if (!backup->has_compress) {
2630 backup->compress = false;
2631 }
99a9addf 2632
86c6a3b6
VSO
2633 if (backup->x_perf) {
2634 if (backup->x_perf->has_use_copy_range) {
2635 perf.use_copy_range = backup->x_perf->use_copy_range;
2636 }
2c59fd83
VSO
2637 if (backup->x_perf->has_max_workers) {
2638 perf.max_workers = backup->x_perf->max_workers;
2639 }
2640 if (backup->x_perf->has_max_chunk) {
2641 perf.max_chunk = backup->x_perf->max_chunk;
2642 }
86c6a3b6
VSO
2643 }
2644
a6c9365a
JS
2645 if ((backup->sync == MIRROR_SYNC_MODE_BITMAP) ||
2646 (backup->sync == MIRROR_SYNC_MODE_INCREMENTAL)) {
2647 /* done before desugaring 'incremental' to print the right message */
54fde4ff 2648 if (!backup->bitmap) {
a6c9365a
JS
2649 error_setg(errp, "must provide a valid bitmap name for "
2650 "'%s' sync mode", MirrorSyncMode_str(backup->sync));
2651 return NULL;
2652 }
2653 }
2654
c8b56501
JS
2655 if (backup->sync == MIRROR_SYNC_MODE_INCREMENTAL) {
2656 if (backup->has_bitmap_mode &&
2657 backup->bitmap_mode != BITMAP_SYNC_MODE_ON_SUCCESS) {
2658 error_setg(errp, "Bitmap sync mode must be '%s' "
2659 "when using sync mode '%s'",
2660 BitmapSyncMode_str(BITMAP_SYNC_MODE_ON_SUCCESS),
2661 MirrorSyncMode_str(backup->sync));
2662 return NULL;
2663 }
2664 backup->has_bitmap_mode = true;
2665 backup->sync = MIRROR_SYNC_MODE_BITMAP;
2666 backup->bitmap_mode = BITMAP_SYNC_MODE_ON_SUCCESS;
2667 }
2668
54fde4ff 2669 if (backup->bitmap) {
7b0b870b
JS
2670 bmap = bdrv_find_dirty_bitmap(bs, backup->bitmap);
2671 if (!bmap) {
2672 error_setg(errp, "Bitmap '%s' could not be found", backup->bitmap);
2673 return NULL;
2674 }
c8b56501
JS
2675 if (!backup->has_bitmap_mode) {
2676 error_setg(errp, "Bitmap sync mode must be given "
2677 "when providing a bitmap");
2678 return NULL;
2679 }
b30ffbef 2680 if (bdrv_dirty_bitmap_check(bmap, BDRV_BITMAP_ALLOW_RO, errp)) {
7b0b870b
JS
2681 return NULL;
2682 }
1a2b8b40
JS
2683
2684 /* This does not produce a useful bitmap artifact: */
2685 if (backup->sync == MIRROR_SYNC_MODE_NONE) {
2686 error_setg(errp, "sync mode '%s' does not produce meaningful bitmap"
2687 " outputs", MirrorSyncMode_str(backup->sync));
2688 return NULL;
2689 }
2690
2691 /* If the bitmap isn't used for input or output, this is useless: */
2692 if (backup->bitmap_mode == BITMAP_SYNC_MODE_NEVER &&
2693 backup->sync != MIRROR_SYNC_MODE_BITMAP) {
2694 error_setg(errp, "Bitmap sync mode '%s' has no meaningful effect"
2695 " when combined with sync mode '%s'",
2696 BitmapSyncMode_str(backup->bitmap_mode),
2697 MirrorSyncMode_str(backup->sync));
2698 return NULL;
2699 }
2700 }
2701
54fde4ff 2702 if (!backup->bitmap && backup->has_bitmap_mode) {
1a2b8b40
JS
2703 error_setg(errp, "Cannot specify bitmap sync mode without a bitmap");
2704 return NULL;
7b0b870b
JS
2705 }
2706
2707 if (!backup->auto_finalize) {
2708 job_flags |= JOB_MANUAL_FINALIZE;
2709 }
2710 if (!backup->auto_dismiss) {
2711 job_flags |= JOB_MANUAL_DISMISS;
2712 }
2713
2714 job = backup_job_create(backup->job_id, bs, target_bs, backup->speed,
c8b56501
JS
2715 backup->sync, bmap, backup->bitmap_mode,
2716 backup->compress,
00e30f05 2717 backup->filter_node_name,
86c6a3b6 2718 &perf,
c8b56501
JS
2719 backup->on_source_error,
2720 backup->on_target_error,
7b0b870b
JS
2721 job_flags, NULL, NULL, txn, errp);
2722 return job;
2723}
2724
2288ccfa 2725void qmp_drive_backup(DriveBackup *backup, Error **errp)
78f51fde 2726{
2288ccfa
SL
2727 TransactionAction action = {
2728 .type = TRANSACTION_ACTION_KIND_DRIVE_BACKUP,
2729 .u.drive_backup.data = backup,
2730 };
2731 blockdev_do_action(&action, errp);
78f51fde
JS
2732}
2733
facda544
PK
2734BlockDeviceInfoList *qmp_query_named_block_nodes(bool has_flat,
2735 bool flat,
2736 Error **errp)
c13163fb 2737{
facda544
PK
2738 bool return_flat = has_flat && flat;
2739
2740 return bdrv_named_nodes_list(return_flat, errp);
c13163fb
BC
2741}
2742
5d3b4e99
VSO
2743XDbgBlockGraph *qmp_x_debug_query_block_graph(Error **errp)
2744{
15f3f1fe
KW
2745 GRAPH_RDLOCK_GUARD_MAINLOOP();
2746
5d3b4e99
VSO
2747 return bdrv_get_xdbg_block_graph(errp);
2748}
2749
5b7bfe51 2750void qmp_blockdev_backup(BlockdevBackup *backup, Error **errp)
c29c1dd3 2751{
5b7bfe51
SL
2752 TransactionAction action = {
2753 .type = TRANSACTION_ACTION_KIND_BLOCKDEV_BACKUP,
2754 .u.blockdev_backup.data = backup,
2755 };
2756 blockdev_do_action(&action, errp);
78f51fde
JS
2757}
2758
4193cdd7
FZ
2759/* Parameter check and block job starting for drive mirroring.
2760 * Caller should hold @device and @target's aio context (must be the same).
2761 **/
71aa9867 2762static void blockdev_mirror_common(const char *job_id, BlockDriverState *bs,
4193cdd7 2763 BlockDriverState *target,
54fde4ff 2764 const char *replaces,
4193cdd7 2765 enum MirrorSyncMode sync,
274fccee 2766 BlockMirrorBackingMode backing_mode,
cdf3bc93 2767 bool zero_target,
4193cdd7
FZ
2768 bool has_speed, int64_t speed,
2769 bool has_granularity, uint32_t granularity,
2770 bool has_buf_size, int64_t buf_size,
2771 bool has_on_source_error,
2772 BlockdevOnError on_source_error,
2773 bool has_on_target_error,
2774 BlockdevOnError on_target_error,
2775 bool has_unmap, bool unmap,
6cdbceb1 2776 const char *filter_node_name,
481debaa 2777 bool has_copy_mode, MirrorCopyMode copy_mode,
a6b58ade
JS
2778 bool has_auto_finalize, bool auto_finalize,
2779 bool has_auto_dismiss, bool auto_dismiss,
4193cdd7 2780 Error **errp)
d9b902db 2781{
3f072a7f 2782 BlockDriverState *unfiltered_bs;
a1999b33 2783 int job_flags = JOB_DEFAULT;
d9b902db 2784
533c6e4e
KW
2785 GLOBAL_STATE_CODE();
2786 GRAPH_RDLOCK_GUARD_MAINLOOP();
2787
d9b902db
PB
2788 if (!has_speed) {
2789 speed = 0;
2790 }
b952b558
PB
2791 if (!has_on_source_error) {
2792 on_source_error = BLOCKDEV_ON_ERROR_REPORT;
2793 }
2794 if (!has_on_target_error) {
2795 on_target_error = BLOCKDEV_ON_ERROR_REPORT;
2796 }
eee13dfe
PB
2797 if (!has_granularity) {
2798 granularity = 0;
2799 }
08e4ed6c 2800 if (!has_buf_size) {
48ac0a4d 2801 buf_size = 0;
08e4ed6c 2802 }
0fc9f8ea
FZ
2803 if (!has_unmap) {
2804 unmap = true;
2805 }
481debaa
HR
2806 if (!has_copy_mode) {
2807 copy_mode = MIRROR_COPY_MODE_BACKGROUND;
2808 }
a6b58ade
JS
2809 if (has_auto_finalize && !auto_finalize) {
2810 job_flags |= JOB_MANUAL_FINALIZE;
2811 }
2812 if (has_auto_dismiss && !auto_dismiss) {
2813 job_flags |= JOB_MANUAL_DISMISS;
2814 }
08e4ed6c 2815
eee13dfe 2816 if (granularity != 0 && (granularity < 512 || granularity > 1048576 * 64)) {
c6bd8c70
MA
2817 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "granularity",
2818 "a value in range [512B, 64MB]");
eee13dfe
PB
2819 return;
2820 }
2821 if (granularity & (granularity - 1)) {
c6bd8c70 2822 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "granularity",
6cc0667d 2823 "a power of 2");
eee13dfe
PB
2824 return;
2825 }
d9b902db 2826
4193cdd7
FZ
2827 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_MIRROR_SOURCE, errp)) {
2828 return;
2829 }
e40e5027
FZ
2830 if (bdrv_op_is_blocked(target, BLOCK_OP_TYPE_MIRROR_TARGET, errp)) {
2831 return;
2832 }
4193cdd7 2833
3f072a7f 2834 if (!bdrv_backing_chain_next(bs) && sync == MIRROR_SYNC_MODE_TOP) {
4193cdd7
FZ
2835 sync = MIRROR_SYNC_MODE_FULL;
2836 }
2837
54fde4ff 2838 if (!replaces) {
3f072a7f
HR
2839 /* We want to mirror from @bs, but keep implicit filters on top */
2840 unfiltered_bs = bdrv_skip_implicit_filters(bs);
2841 if (unfiltered_bs != bs) {
2842 replaces = unfiltered_bs->node_name;
3f072a7f
HR
2843 }
2844 }
2845
54fde4ff 2846 if (replaces) {
74ce9e46 2847 BlockDriverState *to_replace_bs;
74ce9e46
HR
2848 int64_t bs_size, replace_size;
2849
2850 bs_size = bdrv_getlength(bs);
2851 if (bs_size < 0) {
2852 error_setg_errno(errp, -bs_size, "Failed to query device's size");
2853 return;
2854 }
2855
2856 to_replace_bs = check_to_replace_node(bs, replaces, errp);
2857 if (!to_replace_bs) {
2858 return;
2859 }
2860
74ce9e46 2861 replace_size = bdrv_getlength(to_replace_bs);
74ce9e46
HR
2862
2863 if (replace_size < 0) {
2864 error_setg_errno(errp, -replace_size,
2865 "Failed to query the replacement node's size");
2866 return;
2867 }
2868 if (bs_size != replace_size) {
2869 error_setg(errp, "cannot replace image with a mirror image of "
2870 "different size");
2871 return;
2872 }
2873 }
2874
4193cdd7
FZ
2875 /* pass the node name to replace to mirror start since it's loose coupling
2876 * and will allow to check whether the node still exist at mirror completion
2877 */
71aa9867 2878 mirror_start(job_id, bs, target,
54fde4ff 2879 replaces, job_flags,
cdf3bc93 2880 speed, granularity, buf_size, sync, backing_mode, zero_target,
6cdbceb1 2881 on_source_error, on_target_error, unmap, filter_node_name,
481debaa 2882 copy_mode, errp);
4193cdd7
FZ
2883}
2884
faecd40a 2885void qmp_drive_mirror(DriveMirror *arg, Error **errp)
4193cdd7
FZ
2886{
2887 BlockDriverState *bs;
3f072a7f 2888 BlockDriverState *target_backing_bs, *target_bs;
4193cdd7 2889 AioContext *aio_context;
274fccee 2890 BlockMirrorBackingMode backing_mode;
4193cdd7
FZ
2891 Error *local_err = NULL;
2892 QDict *options = NULL;
2893 int flags;
2894 int64_t size;
faecd40a 2895 const char *format = arg->format;
cdf3bc93 2896 bool zero_target;
8ed7d42f 2897 int ret;
4193cdd7 2898
0524e93a
KW
2899 bs = qmp_get_root_bs(arg->device, errp);
2900 if (!bs) {
d9b902db
PB
2901 return;
2902 }
2903
cb2af917 2904 /* Early check to avoid creating target */
277f2007 2905 bdrv_graph_rdlock_main_loop();
cb2af917 2906 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_MIRROR_SOURCE, errp)) {
277f2007 2907 bdrv_graph_rdunlock_main_loop();
cb2af917
PB
2908 return;
2909 }
2910
0524e93a 2911 aio_context = bdrv_get_aio_context(bs);
5a7e7a0b 2912
faecd40a
EB
2913 if (!arg->has_mode) {
2914 arg->mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS;
4193cdd7 2915 }
d9b902db 2916
54fde4ff 2917 if (!arg->format) {
faecd40a
EB
2918 format = (arg->mode == NEW_IMAGE_MODE_EXISTING
2919 ? NULL : bs->drv->format_name);
d9b902db 2920 }
d9b902db 2921
61de4c68 2922 flags = bs->open_flags | BDRV_O_RDWR;
3f072a7f
HR
2923 target_backing_bs = bdrv_cow_bs(bdrv_skip_filters(bs));
2924 if (!target_backing_bs && arg->sync == MIRROR_SYNC_MODE_TOP) {
faecd40a 2925 arg->sync = MIRROR_SYNC_MODE_FULL;
d9b902db 2926 }
faecd40a 2927 if (arg->sync == MIRROR_SYNC_MODE_NONE) {
3f072a7f 2928 target_backing_bs = bs;
117e0c82 2929 }
ad74751f 2930 bdrv_graph_rdunlock_main_loop();
d9b902db 2931
ac3c5d83
SH
2932 size = bdrv_getlength(bs);
2933 if (size < 0) {
2934 error_setg_errno(errp, -size, "bdrv_getlength failed");
b49f4755 2935 return;
ac3c5d83
SH
2936 }
2937
54fde4ff
MA
2938 if (arg->replaces) {
2939 if (!arg->node_name) {
09158f00
BC
2940 error_setg(errp, "a node-name must be provided when replacing a"
2941 " named node of the graph");
b49f4755 2942 return;
09158f00 2943 }
09158f00
BC
2944 }
2945
faecd40a 2946 if (arg->mode == NEW_IMAGE_MODE_ABSOLUTE_PATHS) {
274fccee
HR
2947 backing_mode = MIRROR_SOURCE_BACKING_CHAIN;
2948 } else {
2949 backing_mode = MIRROR_OPEN_BACKING_CHAIN;
2950 }
2951
2a32c6e8
JS
2952 /* Don't open backing image in create() */
2953 flags |= BDRV_O_NO_BACKING;
2954
3f072a7f 2955 if ((arg->sync == MIRROR_SYNC_MODE_FULL || !target_backing_bs)
faecd40a 2956 && arg->mode != NEW_IMAGE_MODE_EXISTING)
14526864 2957 {
d9b902db 2958 /* create new image w/o backing file */
e6641719 2959 assert(format);
faecd40a 2960 bdrv_img_create(arg->target, format,
9217283d 2961 NULL, NULL, NULL, size, flags, false, &local_err);
d9b902db 2962 } else {
430da832 2963 BlockDriverState *explicit_backing;
3f072a7f 2964
faecd40a 2965 switch (arg->mode) {
d9b902db 2966 case NEW_IMAGE_MODE_EXISTING:
d9b902db
PB
2967 break;
2968 case NEW_IMAGE_MODE_ABSOLUTE_PATHS:
430da832
KW
2969 /*
2970 * Create new image with backing file.
2971 * Implicit filters should not appear in the filename.
2972 */
b7cfc7d5 2973 bdrv_graph_rdlock_main_loop();
430da832 2974 explicit_backing = bdrv_skip_implicit_filters(target_backing_bs);
3f072a7f 2975 bdrv_refresh_filename(explicit_backing);
b7cfc7d5
KW
2976 bdrv_graph_rdunlock_main_loop();
2977
faecd40a 2978 bdrv_img_create(arg->target, format,
3f072a7f
HR
2979 explicit_backing->filename,
2980 explicit_backing->drv->format_name,
9217283d 2981 NULL, size, flags, false, &local_err);
d9b902db
PB
2982 break;
2983 default:
2984 abort();
2985 }
2986 }
2987
84d18f06 2988 if (local_err) {
cf8f2426 2989 error_propagate(errp, local_err);
b49f4755 2990 return;
d9b902db
PB
2991 }
2992
e6641719 2993 options = qdict_new();
54fde4ff 2994 if (arg->node_name) {
46f5ac20 2995 qdict_put_str(options, "node-name", arg->node_name);
4c828dc6 2996 }
e6641719 2997 if (format) {
46f5ac20 2998 qdict_put_str(options, "driver", format);
e6641719 2999 }
4c828dc6 3000
b812f671
PB
3001 /* Mirroring takes care of copy-on-write using the source's backing
3002 * file.
3003 */
2a32c6e8 3004 target_bs = bdrv_open(arg->target, NULL, options, flags, errp);
5b363937 3005 if (!target_bs) {
c6e0a6de 3006 return;
d9b902db
PB
3007 }
3008
06717986 3009 bdrv_graph_rdlock_main_loop();
cdf3bc93
HR
3010 zero_target = (arg->sync == MIRROR_SYNC_MODE_FULL &&
3011 (arg->mode == NEW_IMAGE_MODE_EXISTING ||
3012 !bdrv_has_zero_init(target_bs)));
06717986 3013 bdrv_graph_rdunlock_main_loop();
cdf3bc93 3014
3ea67e08 3015
142e6907 3016 ret = bdrv_try_change_aio_context(target_bs, aio_context, NULL, errp);
8ed7d42f
KW
3017 if (ret < 0) {
3018 bdrv_unref(target_bs);
3ea67e08 3019 return;
8ed7d42f 3020 }
5a7e7a0b 3021
54fde4ff
MA
3022 blockdev_mirror_common(arg->job_id, bs, target_bs,
3023 arg->replaces, arg->sync,
cdf3bc93
HR
3024 backing_mode, zero_target,
3025 arg->has_speed, arg->speed,
faecd40a
EB
3026 arg->has_granularity, arg->granularity,
3027 arg->has_buf_size, arg->buf_size,
3028 arg->has_on_source_error, arg->on_source_error,
3029 arg->has_on_target_error, arg->on_target_error,
3030 arg->has_unmap, arg->unmap,
54fde4ff 3031 NULL,
481debaa 3032 arg->has_copy_mode, arg->copy_mode,
a6b58ade
JS
3033 arg->has_auto_finalize, arg->auto_finalize,
3034 arg->has_auto_dismiss, arg->auto_dismiss,
992861fb 3035 errp);
e253f4b8 3036 bdrv_unref(target_bs);
d9b902db
PB
3037}
3038
54fde4ff 3039void qmp_blockdev_mirror(const char *job_id,
71aa9867 3040 const char *device, const char *target,
54fde4ff 3041 const char *replaces,
df92562e
FZ
3042 MirrorSyncMode sync,
3043 bool has_speed, int64_t speed,
3044 bool has_granularity, uint32_t granularity,
3045 bool has_buf_size, int64_t buf_size,
3046 bool has_on_source_error,
3047 BlockdevOnError on_source_error,
3048 bool has_on_target_error,
3049 BlockdevOnError on_target_error,
6cdbceb1 3050 const char *filter_node_name,
481debaa 3051 bool has_copy_mode, MirrorCopyMode copy_mode,
a6b58ade
JS
3052 bool has_auto_finalize, bool auto_finalize,
3053 bool has_auto_dismiss, bool auto_dismiss,
df92562e
FZ
3054 Error **errp)
3055{
3056 BlockDriverState *bs;
df92562e
FZ
3057 BlockDriverState *target_bs;
3058 AioContext *aio_context;
274fccee 3059 BlockMirrorBackingMode backing_mode = MIRROR_LEAVE_BACKING_CHAIN;
cdf3bc93 3060 bool zero_target;
8ed7d42f 3061 int ret;
df92562e 3062
07eec652 3063 bs = qmp_get_root_bs(device, errp);
df92562e 3064 if (!bs) {
df92562e
FZ
3065 return;
3066 }
3067
3068 target_bs = bdrv_lookup_bs(target, target, errp);
3069 if (!target_bs) {
3070 return;
3071 }
3072
cdf3bc93
HR
3073 zero_target = (sync == MIRROR_SYNC_MODE_FULL);
3074
df92562e 3075 aio_context = bdrv_get_aio_context(bs);
df92562e 3076
142e6907 3077 ret = bdrv_try_change_aio_context(target_bs, aio_context, NULL, errp);
8ed7d42f 3078 if (ret < 0) {
b49f4755 3079 return;
8ed7d42f 3080 }
df92562e 3081
54fde4ff
MA
3082 blockdev_mirror_common(job_id, bs, target_bs,
3083 replaces, sync, backing_mode,
cdf3bc93 3084 zero_target, has_speed, speed,
df92562e
FZ
3085 has_granularity, granularity,
3086 has_buf_size, buf_size,
3087 has_on_source_error, on_source_error,
3088 has_on_target_error, on_target_error,
54fde4ff 3089 true, true, filter_node_name,
481debaa 3090 has_copy_mode, copy_mode,
a6b58ade
JS
3091 has_auto_finalize, auto_finalize,
3092 has_auto_dismiss, auto_dismiss,
992861fb 3093 errp);
df92562e
FZ
3094}
3095
96241124 3096/*
6f592e5a 3097 * Get a block job using its ID. Called with job_mutex held.
96241124 3098 */
6f592e5a 3099static BlockJob *find_block_job_locked(const char *id, Error **errp)
2d47c6e9 3100{
3ddf3efe 3101 BlockJob *job;
2d47c6e9 3102
3ddf3efe 3103 assert(id != NULL);
5433c24f 3104
96241124 3105 job = block_job_get_locked(id);
5433c24f 3106
3ddf3efe
AG
3107 if (!job) {
3108 error_set(errp, ERROR_CLASS_DEVICE_NOT_ACTIVE,
3109 "Block job '%s' not found", id);
3110 return NULL;
2d47c6e9 3111 }
3d948cdf 3112
3ddf3efe 3113 return job;
2d47c6e9
SH
3114}
3115
882ec7ce 3116void qmp_block_job_set_speed(const char *device, int64_t speed, Error **errp)
2d47c6e9 3117{
96241124
EGE
3118 BlockJob *job;
3119
3120 JOB_LOCK_GUARD();
6f592e5a 3121 job = find_block_job_locked(device, errp);
2d47c6e9
SH
3122
3123 if (!job) {
2d47c6e9
SH
3124 return;
3125 }
3126
96241124 3127 block_job_set_speed_locked(job, speed, errp);
2d47c6e9 3128}
370521a1 3129
6e37fb81
PB
3130void qmp_block_job_cancel(const char *device,
3131 bool has_force, bool force, Error **errp)
370521a1 3132{
96241124
EGE
3133 BlockJob *job;
3134
3135 JOB_LOCK_GUARD();
6f592e5a 3136 job = find_block_job_locked(device, errp);
6e37fb81 3137
370521a1 3138 if (!job) {
370521a1
SH
3139 return;
3140 }
3d948cdf
SH
3141
3142 if (!has_force) {
3143 force = false;
3144 }
3145
96241124 3146 if (job_user_paused_locked(&job->job) && !force) {
f231b88d
CR
3147 error_setg(errp, "The block job for device '%s' is currently paused",
3148 device);
6f592e5a 3149 return;
8acc72a4 3150 }
370521a1
SH
3151
3152 trace_qmp_block_job_cancel(job);
96241124 3153 job_user_cancel_locked(&job->job, force, errp);
370521a1 3154}
fb5458cd 3155
6e37fb81
PB
3156void qmp_block_job_pause(const char *device, Error **errp)
3157{
96241124
EGE
3158 BlockJob *job;
3159
3160 JOB_LOCK_GUARD();
6f592e5a 3161 job = find_block_job_locked(device, errp);
6e37fb81 3162
0ec4dfb8 3163 if (!job) {
6e37fb81
PB
3164 return;
3165 }
3166
3167 trace_qmp_block_job_pause(job);
96241124 3168 job_user_pause_locked(&job->job, errp);
6e37fb81
PB
3169}
3170
3171void qmp_block_job_resume(const char *device, Error **errp)
3172{
96241124
EGE
3173 BlockJob *job;
3174
3175 JOB_LOCK_GUARD();
6f592e5a 3176 job = find_block_job_locked(device, errp);
6e37fb81 3177
0ec4dfb8 3178 if (!job) {
6e37fb81
PB
3179 return;
3180 }
3181
3182 trace_qmp_block_job_resume(job);
96241124 3183 job_user_resume_locked(&job->job, errp);
6e37fb81
PB
3184}
3185
aeae883b
PB
3186void qmp_block_job_complete(const char *device, Error **errp)
3187{
96241124
EGE
3188 BlockJob *job;
3189
3190 JOB_LOCK_GUARD();
6f592e5a 3191 job = find_block_job_locked(device, errp);
aeae883b
PB
3192
3193 if (!job) {
aeae883b
PB
3194 return;
3195 }
3196
3197 trace_qmp_block_job_complete(job);
96241124 3198 job_complete_locked(&job->job, errp);
aeae883b
PB
3199}
3200
11b61fbc
JS
3201void qmp_block_job_finalize(const char *id, Error **errp)
3202{
96241124
EGE
3203 BlockJob *job;
3204
3205 JOB_LOCK_GUARD();
6f592e5a 3206 job = find_block_job_locked(id, errp);
11b61fbc
JS
3207
3208 if (!job) {
3209 return;
3210 }
3211
3212 trace_qmp_block_job_finalize(job);
96241124
EGE
3213 job_ref_locked(&job->job);
3214 job_finalize_locked(&job->job, errp);
b660a84b 3215
96241124 3216 job_unref_locked(&job->job);
11b61fbc
JS
3217}
3218
75f71059
JS
3219void qmp_block_job_dismiss(const char *id, Error **errp)
3220{
96241124 3221 BlockJob *bjob;
5f9a6a08 3222 Job *job;
75f71059 3223
96241124 3224 JOB_LOCK_GUARD();
6f592e5a 3225 bjob = find_block_job_locked(id, errp);
96241124 3226
5f9a6a08 3227 if (!bjob) {
75f71059
JS
3228 return;
3229 }
3230
5f9a6a08
KW
3231 trace_qmp_block_job_dismiss(bjob);
3232 job = &bjob->job;
96241124 3233 job_dismiss_locked(&job, errp);
75f71059
JS
3234}
3235
61a3a5a7
FE
3236void qmp_block_job_change(BlockJobChangeOptions *opts, Error **errp)
3237{
3238 BlockJob *job;
3239
3240 JOB_LOCK_GUARD();
3241 job = find_block_job_locked(opts->id, errp);
3242
3243 if (!job) {
3244 return;
3245 }
3246
3247 block_job_change_locked(job, opts, errp);
3248}
3249
fa40e656
JC
3250void qmp_change_backing_file(const char *device,
3251 const char *image_node_name,
3252 const char *backing_file,
3253 Error **errp)
3254{
3255 BlockDriverState *bs = NULL;
3256 BlockDriverState *image_bs = NULL;
3257 Error *local_err = NULL;
3258 bool ro;
fa40e656
JC
3259 int ret;
3260
7b5dca3f
KW
3261 bs = qmp_get_root_bs(device, errp);
3262 if (!bs) {
fa40e656
JC
3263 return;
3264 }
3265
79bb7627
KW
3266 bdrv_graph_rdlock_main_loop();
3267
fa40e656
JC
3268 image_bs = bdrv_lookup_bs(NULL, image_node_name, &local_err);
3269 if (local_err) {
3270 error_propagate(errp, local_err);
79bb7627 3271 goto out_rdlock;
fa40e656
JC
3272 }
3273
3274 if (!image_bs) {
3275 error_setg(errp, "image file not found");
79bb7627 3276 goto out_rdlock;
fa40e656
JC
3277 }
3278
3279 if (bdrv_find_base(image_bs) == image_bs) {
3280 error_setg(errp, "not allowing backing file change on an image "
3281 "without a backing file");
79bb7627 3282 goto out_rdlock;
fa40e656
JC
3283 }
3284
3285 /* even though we are not necessarily operating on bs, we need it to
3286 * determine if block ops are currently prohibited on the chain */
3287 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_CHANGE, errp)) {
79bb7627 3288 goto out_rdlock;
fa40e656
JC
3289 }
3290
3291 /* final sanity check */
3292 if (!bdrv_chain_contains(bs, image_bs)) {
3293 error_setg(errp, "'%s' and image file are not in the same chain",
3294 device);
79bb7627 3295 goto out_rdlock;
fa40e656 3296 }
79bb7627 3297 bdrv_graph_rdunlock_main_loop();
fa40e656
JC
3298
3299 /* if not r/w, reopen to make r/w */
fa40e656
JC
3300 ro = bdrv_is_read_only(image_bs);
3301
3302 if (ro) {
051a60f6 3303 if (bdrv_reopen_set_read_only(image_bs, false, errp) != 0) {
b49f4755 3304 return;
fa40e656
JC
3305 }
3306 }
3307
3308 ret = bdrv_change_backing_file(image_bs, backing_file,
e54ee1b3
EB
3309 image_bs->drv ? image_bs->drv->format_name : "",
3310 false);
fa40e656
JC
3311
3312 if (ret < 0) {
3313 error_setg_errno(errp, -ret, "Could not change backing file to '%s'",
3314 backing_file);
3315 /* don't exit here, so we can try to restore open flags if
3316 * appropriate */
3317 }
3318
3319 if (ro) {
992861fb 3320 bdrv_reopen_set_read_only(image_bs, true, errp);
fa40e656 3321 }
79bb7627
KW
3322 return;
3323
3324out_rdlock:
3325 bdrv_graph_rdunlock_main_loop();
fa40e656
JC
3326}
3327
d26c9a15
KW
3328void qmp_blockdev_add(BlockdevOptions *options, Error **errp)
3329{
be4b67bc 3330 BlockDriverState *bs;
d26c9a15 3331 QObject *obj;
7d5e199a 3332 Visitor *v = qobject_output_visitor_new(&obj);
d26c9a15 3333 QDict *qdict;
d26c9a15 3334
1f584248 3335 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
3b098d56 3336 visit_complete(v, &obj);
7dc847eb 3337 qdict = qobject_to(QDict, obj);
d26c9a15
KW
3338
3339 qdict_flatten(qdict);
3340
9ec8873e
KW
3341 if (!qdict_get_try_str(qdict, "node-name")) {
3342 error_setg(errp, "'node-name' must be specified for the root node");
3343 goto fail;
3344 }
9c4218e9 3345
9ec8873e
KW
3346 bs = bds_tree_init(qdict, errp);
3347 if (!bs) {
3348 goto fail;
d26c9a15
KW
3349 }
3350
89802d5a 3351 bdrv_set_monitor_owned(bs);
9ec8873e 3352
d26c9a15 3353fail:
3b098d56 3354 visit_free(v);
d26c9a15
KW
3355}
3356
e60edf69 3357void qmp_blockdev_reopen(BlockdevOptionsList *reopen_list, Error **errp)
3908b7a8
AG
3358{
3359 BlockReopenQueue *queue = NULL;
3908b7a8
AG
3360
3361 /* Add each one of the BDS that we want to reopen to the queue */
3362 for (; reopen_list != NULL; reopen_list = reopen_list->next) {
3363 BlockdevOptions *options = reopen_list->value;
3364 BlockDriverState *bs;
3908b7a8
AG
3365 QObject *obj;
3366 Visitor *v;
3367 QDict *qdict;
3368
3369 /* Check for the selected node name */
54fde4ff 3370 if (!options->node_name) {
3908b7a8
AG
3371 error_setg(errp, "node-name not specified");
3372 goto fail;
3373 }
1479c730 3374
3908b7a8
AG
3375 bs = bdrv_find_node(options->node_name);
3376 if (!bs) {
3377 error_setg(errp, "Failed to find node with node-name='%s'",
3378 options->node_name);
3379 goto fail;
3380 }
1479c730 3381
3908b7a8
AG
3382 /* Put all options in a QDict and flatten it */
3383 v = qobject_output_visitor_new(&obj);
3384 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
3385 visit_complete(v, &obj);
3386 visit_free(v);
1479c730 3387
3908b7a8 3388 qdict = qobject_to(QDict, obj);
1479c730 3389
3908b7a8 3390 qdict_flatten(qdict);
1479c730 3391
3908b7a8 3392 queue = bdrv_reopen_queue(queue, bs, qdict, false);
3908b7a8
AG
3393 }
3394
3395 /* Perform the reopen operation */
3396 bdrv_reopen_multiple(queue, errp);
3397 queue = NULL;
1479c730
AG
3398
3399fail:
3908b7a8 3400 bdrv_reopen_queue_free(queue);
1479c730
AG
3401}
3402
79b7a77e 3403void qmp_blockdev_del(const char *node_name, Error **errp)
81b936ae 3404{
81b936ae
AG
3405 BlockDriverState *bs;
3406
b4ad82aa 3407 GLOBAL_STATE_CODE();
2b3912f1 3408 GRAPH_RDLOCK_GUARD_MAINLOOP();
b4ad82aa 3409
9ec8873e
KW
3410 bs = bdrv_find_node(node_name);
3411 if (!bs) {
ef2e38a1 3412 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
81b936ae
AG
3413 return;
3414 }
9ec8873e
KW
3415 if (bdrv_has_blk(bs)) {
3416 error_setg(errp, "Node %s is in use", node_name);
3417 return;
81b936ae 3418 }
81b936ae 3419
9ec8873e 3420 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_DRIVE_DEL, errp)) {
b49f4755 3421 return;
9ec8873e 3422 }
9c4218e9 3423
70537ed5 3424 if (!QTAILQ_IN_USE(bs, monitor_list)) {
9ec8873e
KW
3425 error_setg(errp, "Node %s is not owned by the monitor",
3426 bs->node_name);
b49f4755 3427 return;
81b936ae
AG
3428 }
3429
9ec8873e
KW
3430 if (bs->refcnt > 1) {
3431 error_setg(errp, "Block device %s is in use",
3432 bdrv_get_device_or_node_name(bs));
b49f4755 3433 return;
81b936ae
AG
3434 }
3435
9ec8873e
KW
3436 QTAILQ_REMOVE(&monitor_bdrv_states, bs, monitor_list);
3437 bdrv_unref(bs);
81b936ae
AG
3438}
3439
9def6082
KW
3440static BdrvChild * GRAPH_RDLOCK
3441bdrv_find_child(BlockDriverState *parent_bs, const char *child_name)
7f821597
WC
3442{
3443 BdrvChild *child;
3444
3445 QLIST_FOREACH(child, &parent_bs->children, next) {
3446 if (strcmp(child->name, child_name) == 0) {
3447 return child;
3448 }
3449 }
3450
3451 return NULL;
3452}
3453
54fde4ff 3454void qmp_x_blockdev_change(const char *parent, const char *child,
7f821597
WC
3455 const char *node, Error **errp)
3456{
3457 BlockDriverState *parent_bs, *new_bs = NULL;
3458 BdrvChild *p_child;
3459
6bc30f19 3460 bdrv_graph_wrlock();
9def6082 3461
7f821597
WC
3462 parent_bs = bdrv_lookup_bs(parent, parent, errp);
3463 if (!parent_bs) {
9def6082 3464 goto out;
7f821597
WC
3465 }
3466
54fde4ff
MA
3467 if (!child == !node) {
3468 if (child) {
7f821597
WC
3469 error_setg(errp, "The parameters child and node are in conflict");
3470 } else {
3471 error_setg(errp, "Either child or node must be specified");
3472 }
9def6082 3473 goto out;
7f821597
WC
3474 }
3475
54fde4ff 3476 if (child) {
7f821597
WC
3477 p_child = bdrv_find_child(parent_bs, child);
3478 if (!p_child) {
3479 error_setg(errp, "Node '%s' does not have child '%s'",
3480 parent, child);
9def6082 3481 goto out;
7f821597
WC
3482 }
3483 bdrv_del_child(parent_bs, p_child, errp);
3484 }
3485
54fde4ff 3486 if (node) {
7f821597
WC
3487 new_bs = bdrv_find_node(node);
3488 if (!new_bs) {
3489 error_setg(errp, "Node '%s' not found", node);
9def6082 3490 goto out;
7f821597
WC
3491 }
3492 bdrv_add_child(parent_bs, new_bs, errp);
3493 }
9def6082
KW
3494
3495out:
6bc30f19 3496 bdrv_graph_wrunlock();
7f821597
WC
3497}
3498
fea68bb6 3499BlockJobInfoList *qmp_query_block_jobs(Error **errp)
fb5458cd 3500{
c3033fd3 3501 BlockJobInfoList *head = NULL, **tail = &head;
f0f55ded 3502 BlockJob *job;
fb5458cd 3503
880eeec6
EGE
3504 JOB_LOCK_GUARD();
3505
3506 for (job = block_job_next_locked(NULL); job;
3507 job = block_job_next_locked(job)) {
c3033fd3 3508 BlockJobInfo *value;
69691e72 3509
559b935f
JS
3510 if (block_job_is_internal(job)) {
3511 continue;
3512 }
880eeec6 3513 value = block_job_query_locked(job, errp);
c3033fd3 3514 if (!value) {
559b935f
JS
3515 qapi_free_BlockJobInfoList(head);
3516 return NULL;
3517 }
c3033fd3 3518 QAPI_LIST_APPEND(tail, value);
fb5458cd 3519 }
fb5458cd 3520
fea68bb6 3521 return head;
fb5458cd 3522}
4d454574 3523
ca00bbb1 3524void qmp_x_blockdev_set_iothread(const char *node_name, StrOrNull *iothread,
882e9b89 3525 bool has_force, bool force, Error **errp)
ca00bbb1 3526{
ca00bbb1
SH
3527 AioContext *new_context;
3528 BlockDriverState *bs;
3529
2b3912f1
KW
3530 GRAPH_RDLOCK_GUARD_MAINLOOP();
3531
ca00bbb1
SH
3532 bs = bdrv_find_node(node_name);
3533 if (!bs) {
ef2e38a1 3534 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
ca00bbb1
SH
3535 return;
3536 }
3537
882e9b89
SH
3538 /* Protects against accidents. */
3539 if (!(has_force && force) && bdrv_has_blk(bs)) {
3540 error_setg(errp, "Node %s is associated with a BlockBackend and could "
3541 "be in use (use force=true to override this check)",
3542 node_name);
ca00bbb1
SH
3543 return;
3544 }
3545
3546 if (iothread->type == QTYPE_QSTRING) {
3547 IOThread *obj = iothread_by_id(iothread->u.s);
3548 if (!obj) {
3549 error_setg(errp, "Cannot find iothread %s", iothread->u.s);
3550 return;
3551 }
3552
3553 new_context = iothread_get_aio_context(obj);
3554 } else {
3555 new_context = qemu_get_aio_context();
3556 }
3557
142e6907 3558 bdrv_try_change_aio_context(bs, new_context, NULL, errp);
ca00bbb1
SH
3559}
3560
0006383e 3561QemuOptsList qemu_common_drive_opts = {
4d454574 3562 .name = "drive",
0006383e 3563 .head = QTAILQ_HEAD_INITIALIZER(qemu_common_drive_opts.head),
4d454574
PB
3564 .desc = {
3565 {
4d454574
PB
3566 .name = "snapshot",
3567 .type = QEMU_OPT_BOOL,
3568 .help = "enable/disable snapshot mode",
4d454574
PB
3569 },{
3570 .name = "aio",
3571 .type = QEMU_OPT_STRING,
f80f2673 3572 .help = "host AIO implementation (threads, native, io_uring)",
e4b24b49
KW
3573 },{
3574 .name = BDRV_OPT_CACHE_WB,
3575 .type = QEMU_OPT_BOOL,
3576 .help = "Enable writeback mode",
4d454574
PB
3577 },{
3578 .name = "format",
3579 .type = QEMU_OPT_STRING,
3580 .help = "disk format (raw, qcow2, ...)",
4d454574
PB
3581 },{
3582 .name = "rerror",
3583 .type = QEMU_OPT_STRING,
3584 .help = "read error action",
3585 },{
3586 .name = "werror",
3587 .type = QEMU_OPT_STRING,
3588 .help = "write error action",
4d454574 3589 },{
4e200cf8 3590 .name = BDRV_OPT_READ_ONLY,
4d454574
PB
3591 .type = QEMU_OPT_BOOL,
3592 .help = "open drive file as read-only",
a2a7862c
PJ
3593 },
3594
3595 THROTTLE_OPTS,
3596
3597 {
76f4afb4
AG
3598 .name = "throttling.group",
3599 .type = QEMU_OPT_STRING,
3600 .help = "name of the block throttling group",
4d454574
PB
3601 },{
3602 .name = "copy-on-read",
3603 .type = QEMU_OPT_BOOL,
3604 .help = "copy read data from backing file into image file",
465bee1d
PL
3605 },{
3606 .name = "detect-zeroes",
3607 .type = QEMU_OPT_STRING,
3608 .help = "try to optimize zero writes (off, on, unmap)",
362e9299
AG
3609 },{
3610 .name = "stats-account-invalid",
3611 .type = QEMU_OPT_BOOL,
3612 .help = "whether to account for invalid I/O operations "
3613 "in the statistics",
3614 },{
3615 .name = "stats-account-failed",
3616 .type = QEMU_OPT_BOOL,
3617 .help = "whether to account for failed I/O operations "
3618 "in the statistics",
4d454574
PB
3619 },
3620 { /* end of list */ }
3621 },
3622};
0006383e
KW
3623
3624QemuOptsList qemu_drive_opts = {
3625 .name = "drive",
3626 .head = QTAILQ_HEAD_INITIALIZER(qemu_drive_opts.head),
3627 .desc = {
492fdc6f
KW
3628 /*
3629 * no elements => accept any params
3630 * validation will happen later
3631 */
0006383e
KW
3632 { /* end of list */ }
3633 },
3634};