job: detect change of aiocontext within job coroutine
[qemu.git] / blockdev.c
blob46090bb0aa987e508424b1e38d427d71e54692f4
1 /*
2 * QEMU host block devices
4 * Copyright (c) 2003-2008 Fabrice Bellard
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.
9 * This file incorporates work covered by the following copyright and
10 * permission notice:
12 * Copyright (c) 2003-2008 Fabrice Bellard
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:
21 * The above copyright notice and this permission notice shall be included in
22 * all copies or substantial portions of the Software.
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.
33 #include "qemu/osdep.h"
34 #include "sysemu/block-backend.h"
35 #include "sysemu/blockdev.h"
36 #include "hw/block/block.h"
37 #include "block/blockjob.h"
38 #include "block/qdict.h"
39 #include "block/throttle-groups.h"
40 #include "monitor/monitor.h"
41 #include "qemu/error-report.h"
42 #include "qemu/option.h"
43 #include "qemu/qemu-print.h"
44 #include "qemu/config-file.h"
45 #include "qapi/qapi-commands-block.h"
46 #include "qapi/qapi-commands-transaction.h"
47 #include "qapi/qapi-visit-block-core.h"
48 #include "qapi/qmp/qdict.h"
49 #include "qapi/qmp/qnum.h"
50 #include "qapi/qmp/qstring.h"
51 #include "qapi/error.h"
52 #include "qapi/qmp/qerror.h"
53 #include "qapi/qmp/qlist.h"
54 #include "qapi/qobject-output-visitor.h"
55 #include "sysemu/sysemu.h"
56 #include "sysemu/iothread.h"
57 #include "block/block_int.h"
58 #include "block/trace.h"
59 #include "sysemu/runstate.h"
60 #include "sysemu/replay.h"
61 #include "qemu/cutils.h"
62 #include "qemu/help_option.h"
63 #include "qemu/main-loop.h"
64 #include "qemu/throttle-options.h"
66 /* Protected by BQL */
67 QTAILQ_HEAD(, BlockDriverState) monitor_bdrv_states =
68 QTAILQ_HEAD_INITIALIZER(monitor_bdrv_states);
70 void bdrv_set_monitor_owned(BlockDriverState *bs)
72 GLOBAL_STATE_CODE();
73 QTAILQ_INSERT_TAIL(&monitor_bdrv_states, bs, monitor_list);
76 static const char *const if_name[IF_COUNT] = {
77 [IF_NONE] = "none",
78 [IF_IDE] = "ide",
79 [IF_SCSI] = "scsi",
80 [IF_FLOPPY] = "floppy",
81 [IF_PFLASH] = "pflash",
82 [IF_MTD] = "mtd",
83 [IF_SD] = "sd",
84 [IF_VIRTIO] = "virtio",
85 [IF_XEN] = "xen",
88 static int if_max_devs[IF_COUNT] = {
90 * Do not change these numbers! They govern how drive option
91 * index maps to unit and bus. That mapping is ABI.
93 * All controllers used to implement if=T drives need to support
94 * if_max_devs[T] units, for any T with if_max_devs[T] != 0.
95 * Otherwise, some index values map to "impossible" bus, unit
96 * values.
98 * For instance, if you change [IF_SCSI] to 255, -drive
99 * if=scsi,index=12 no longer means bus=1,unit=5, but
100 * bus=0,unit=12. With an lsi53c895a controller (7 units max),
101 * the drive can't be set up. Regression.
103 [IF_IDE] = 2,
104 [IF_SCSI] = 7,
108 * Boards may call this to offer board-by-board overrides
109 * of the default, global values.
111 void override_max_devs(BlockInterfaceType type, int max_devs)
113 BlockBackend *blk;
114 DriveInfo *dinfo;
116 GLOBAL_STATE_CODE();
118 if (max_devs <= 0) {
119 return;
122 for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
123 dinfo = blk_legacy_dinfo(blk);
124 if (dinfo->type == type) {
125 fprintf(stderr, "Cannot override units-per-bus property of"
126 " the %s interface, because a drive of that type has"
127 " already been added.\n", if_name[type]);
128 g_assert_not_reached();
132 if_max_devs[type] = max_devs;
136 * We automatically delete the drive when a device using it gets
137 * unplugged. Questionable feature, but we can't just drop it.
138 * Device models call blockdev_mark_auto_del() to schedule the
139 * automatic deletion, and generic qdev code calls blockdev_auto_del()
140 * when deletion is actually safe.
142 void blockdev_mark_auto_del(BlockBackend *blk)
144 DriveInfo *dinfo = blk_legacy_dinfo(blk);
145 BlockJob *job;
147 GLOBAL_STATE_CODE();
149 if (!dinfo) {
150 return;
153 JOB_LOCK_GUARD();
155 for (job = block_job_next_locked(NULL); job;
156 job = block_job_next_locked(job)) {
157 if (block_job_has_bdrv(job, blk_bs(blk))) {
158 AioContext *aio_context = job->job.aio_context;
159 aio_context_acquire(aio_context);
161 job_cancel_locked(&job->job, false);
163 aio_context_release(aio_context);
167 dinfo->auto_del = 1;
170 void blockdev_auto_del(BlockBackend *blk)
172 DriveInfo *dinfo = blk_legacy_dinfo(blk);
173 GLOBAL_STATE_CODE();
175 if (dinfo && dinfo->auto_del) {
176 monitor_remove_blk(blk);
177 blk_unref(blk);
181 static int drive_index_to_bus_id(BlockInterfaceType type, int index)
183 int max_devs = if_max_devs[type];
184 return max_devs ? index / max_devs : 0;
187 static int drive_index_to_unit_id(BlockInterfaceType type, int index)
189 int max_devs = if_max_devs[type];
190 return max_devs ? index % max_devs : index;
193 QemuOpts *drive_add(BlockInterfaceType type, int index, const char *file,
194 const char *optstr)
196 QemuOpts *opts;
198 GLOBAL_STATE_CODE();
200 opts = qemu_opts_parse_noisily(qemu_find_opts("drive"), optstr, false);
201 if (!opts) {
202 return NULL;
204 if (type != IF_DEFAULT) {
205 qemu_opt_set(opts, "if", if_name[type], &error_abort);
207 if (index >= 0) {
208 qemu_opt_set_number(opts, "index", index, &error_abort);
210 if (file)
211 qemu_opt_set(opts, "file", file, &error_abort);
212 return opts;
215 DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit)
217 BlockBackend *blk;
218 DriveInfo *dinfo;
220 GLOBAL_STATE_CODE();
222 for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
223 dinfo = blk_legacy_dinfo(blk);
224 if (dinfo && dinfo->type == type
225 && dinfo->bus == bus && dinfo->unit == unit) {
226 return dinfo;
230 return NULL;
234 * Check board claimed all -drive that are meant to be claimed.
235 * Fatal error if any remain unclaimed.
237 void drive_check_orphaned(void)
239 BlockBackend *blk;
240 DriveInfo *dinfo;
241 Location loc;
242 bool orphans = false;
244 GLOBAL_STATE_CODE();
246 for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
247 dinfo = blk_legacy_dinfo(blk);
249 * Ignore default drives, because we create certain default
250 * drives unconditionally, then leave them unclaimed. Not the
251 * users fault.
252 * Ignore IF_VIRTIO, because it gets desugared into -device,
253 * so we can leave failing to -device.
254 * Ignore IF_NONE, because leaving unclaimed IF_NONE remains
255 * available for device_add is a feature.
257 if (dinfo->is_default || dinfo->type == IF_VIRTIO
258 || dinfo->type == IF_NONE) {
259 continue;
261 if (!blk_get_attached_dev(blk)) {
262 loc_push_none(&loc);
263 qemu_opts_loc_restore(dinfo->opts);
264 error_report("machine type does not support"
265 " if=%s,bus=%d,unit=%d",
266 if_name[dinfo->type], dinfo->bus, dinfo->unit);
267 loc_pop(&loc);
268 orphans = true;
272 if (orphans) {
273 exit(1);
277 DriveInfo *drive_get_by_index(BlockInterfaceType type, int index)
279 GLOBAL_STATE_CODE();
280 return drive_get(type,
281 drive_index_to_bus_id(type, index),
282 drive_index_to_unit_id(type, index));
285 int drive_get_max_bus(BlockInterfaceType type)
287 int max_bus;
288 BlockBackend *blk;
289 DriveInfo *dinfo;
291 GLOBAL_STATE_CODE();
293 max_bus = -1;
294 for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
295 dinfo = blk_legacy_dinfo(blk);
296 if (dinfo && dinfo->type == type && dinfo->bus > max_bus) {
297 max_bus = dinfo->bus;
300 return max_bus;
303 static void bdrv_format_print(void *opaque, const char *name)
305 qemu_printf(" %s", name);
308 typedef struct {
309 QEMUBH *bh;
310 BlockDriverState *bs;
311 } BDRVPutRefBH;
313 static int parse_block_error_action(const char *buf, bool is_read, Error **errp)
315 if (!strcmp(buf, "ignore")) {
316 return BLOCKDEV_ON_ERROR_IGNORE;
317 } else if (!is_read && !strcmp(buf, "enospc")) {
318 return BLOCKDEV_ON_ERROR_ENOSPC;
319 } else if (!strcmp(buf, "stop")) {
320 return BLOCKDEV_ON_ERROR_STOP;
321 } else if (!strcmp(buf, "report")) {
322 return BLOCKDEV_ON_ERROR_REPORT;
323 } else {
324 error_setg(errp, "'%s' invalid %s error action",
325 buf, is_read ? "read" : "write");
326 return -1;
330 static bool parse_stats_intervals(BlockAcctStats *stats, QList *intervals,
331 Error **errp)
333 const QListEntry *entry;
334 for (entry = qlist_first(intervals); entry; entry = qlist_next(entry)) {
335 switch (qobject_type(entry->value)) {
337 case QTYPE_QSTRING: {
338 unsigned long long length;
339 const char *str = qstring_get_str(qobject_to(QString,
340 entry->value));
341 if (parse_uint_full(str, &length, 10) == 0 &&
342 length > 0 && length <= UINT_MAX) {
343 block_acct_add_interval(stats, (unsigned) length);
344 } else {
345 error_setg(errp, "Invalid interval length: %s", str);
346 return false;
348 break;
351 case QTYPE_QNUM: {
352 int64_t length = qnum_get_int(qobject_to(QNum, entry->value));
354 if (length > 0 && length <= UINT_MAX) {
355 block_acct_add_interval(stats, (unsigned) length);
356 } else {
357 error_setg(errp, "Invalid interval length: %" PRId64, length);
358 return false;
360 break;
363 default:
364 error_setg(errp, "The specification of stats-intervals is invalid");
365 return false;
368 return true;
371 typedef enum { MEDIA_DISK, MEDIA_CDROM } DriveMediaType;
373 /* All parameters but @opts are optional and may be set to NULL. */
374 static void extract_common_blockdev_options(QemuOpts *opts, int *bdrv_flags,
375 const char **throttling_group, ThrottleConfig *throttle_cfg,
376 BlockdevDetectZeroesOptions *detect_zeroes, Error **errp)
378 Error *local_error = NULL;
379 const char *aio;
381 if (bdrv_flags) {
382 if (qemu_opt_get_bool(opts, "copy-on-read", false)) {
383 *bdrv_flags |= BDRV_O_COPY_ON_READ;
386 if ((aio = qemu_opt_get(opts, "aio")) != NULL) {
387 if (bdrv_parse_aio(aio, bdrv_flags) < 0) {
388 error_setg(errp, "invalid aio option");
389 return;
394 /* disk I/O throttling */
395 if (throttling_group) {
396 *throttling_group = qemu_opt_get(opts, "throttling.group");
399 if (throttle_cfg) {
400 throttle_config_init(throttle_cfg);
401 throttle_cfg->buckets[THROTTLE_BPS_TOTAL].avg =
402 qemu_opt_get_number(opts, "throttling.bps-total", 0);
403 throttle_cfg->buckets[THROTTLE_BPS_READ].avg =
404 qemu_opt_get_number(opts, "throttling.bps-read", 0);
405 throttle_cfg->buckets[THROTTLE_BPS_WRITE].avg =
406 qemu_opt_get_number(opts, "throttling.bps-write", 0);
407 throttle_cfg->buckets[THROTTLE_OPS_TOTAL].avg =
408 qemu_opt_get_number(opts, "throttling.iops-total", 0);
409 throttle_cfg->buckets[THROTTLE_OPS_READ].avg =
410 qemu_opt_get_number(opts, "throttling.iops-read", 0);
411 throttle_cfg->buckets[THROTTLE_OPS_WRITE].avg =
412 qemu_opt_get_number(opts, "throttling.iops-write", 0);
414 throttle_cfg->buckets[THROTTLE_BPS_TOTAL].max =
415 qemu_opt_get_number(opts, "throttling.bps-total-max", 0);
416 throttle_cfg->buckets[THROTTLE_BPS_READ].max =
417 qemu_opt_get_number(opts, "throttling.bps-read-max", 0);
418 throttle_cfg->buckets[THROTTLE_BPS_WRITE].max =
419 qemu_opt_get_number(opts, "throttling.bps-write-max", 0);
420 throttle_cfg->buckets[THROTTLE_OPS_TOTAL].max =
421 qemu_opt_get_number(opts, "throttling.iops-total-max", 0);
422 throttle_cfg->buckets[THROTTLE_OPS_READ].max =
423 qemu_opt_get_number(opts, "throttling.iops-read-max", 0);
424 throttle_cfg->buckets[THROTTLE_OPS_WRITE].max =
425 qemu_opt_get_number(opts, "throttling.iops-write-max", 0);
427 throttle_cfg->buckets[THROTTLE_BPS_TOTAL].burst_length =
428 qemu_opt_get_number(opts, "throttling.bps-total-max-length", 1);
429 throttle_cfg->buckets[THROTTLE_BPS_READ].burst_length =
430 qemu_opt_get_number(opts, "throttling.bps-read-max-length", 1);
431 throttle_cfg->buckets[THROTTLE_BPS_WRITE].burst_length =
432 qemu_opt_get_number(opts, "throttling.bps-write-max-length", 1);
433 throttle_cfg->buckets[THROTTLE_OPS_TOTAL].burst_length =
434 qemu_opt_get_number(opts, "throttling.iops-total-max-length", 1);
435 throttle_cfg->buckets[THROTTLE_OPS_READ].burst_length =
436 qemu_opt_get_number(opts, "throttling.iops-read-max-length", 1);
437 throttle_cfg->buckets[THROTTLE_OPS_WRITE].burst_length =
438 qemu_opt_get_number(opts, "throttling.iops-write-max-length", 1);
440 throttle_cfg->op_size =
441 qemu_opt_get_number(opts, "throttling.iops-size", 0);
443 if (!throttle_is_valid(throttle_cfg, errp)) {
444 return;
448 if (detect_zeroes) {
449 *detect_zeroes =
450 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
451 qemu_opt_get(opts, "detect-zeroes"),
452 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
453 &local_error);
454 if (local_error) {
455 error_propagate(errp, local_error);
456 return;
461 static OnOffAuto account_get_opt(QemuOpts *opts, const char *name)
463 if (!qemu_opt_find(opts, name)) {
464 return ON_OFF_AUTO_AUTO;
466 if (qemu_opt_get_bool(opts, name, true)) {
467 return ON_OFF_AUTO_ON;
469 return ON_OFF_AUTO_OFF;
472 /* Takes the ownership of bs_opts */
473 static BlockBackend *blockdev_init(const char *file, QDict *bs_opts,
474 Error **errp)
476 const char *buf;
477 int bdrv_flags = 0;
478 int on_read_error, on_write_error;
479 OnOffAuto account_invalid, account_failed;
480 bool writethrough, read_only;
481 BlockBackend *blk;
482 BlockDriverState *bs;
483 ThrottleConfig cfg;
484 int snapshot = 0;
485 Error *error = NULL;
486 QemuOpts *opts;
487 QDict *interval_dict = NULL;
488 QList *interval_list = NULL;
489 const char *id;
490 BlockdevDetectZeroesOptions detect_zeroes =
491 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
492 const char *throttling_group = NULL;
494 /* Check common options by copying from bs_opts to opts, all other options
495 * stay in bs_opts for processing by bdrv_open(). */
496 id = qdict_get_try_str(bs_opts, "id");
497 opts = qemu_opts_create(&qemu_common_drive_opts, id, 1, errp);
498 if (!opts) {
499 goto err_no_opts;
502 if (!qemu_opts_absorb_qdict(opts, bs_opts, errp)) {
503 goto early_err;
506 if (id) {
507 qdict_del(bs_opts, "id");
510 /* extract parameters */
511 snapshot = qemu_opt_get_bool(opts, "snapshot", 0);
513 account_invalid = account_get_opt(opts, "stats-account-invalid");
514 account_failed = account_get_opt(opts, "stats-account-failed");
516 writethrough = !qemu_opt_get_bool(opts, BDRV_OPT_CACHE_WB, true);
518 id = qemu_opts_id(opts);
520 qdict_extract_subqdict(bs_opts, &interval_dict, "stats-intervals.");
521 qdict_array_split(interval_dict, &interval_list);
523 if (qdict_size(interval_dict) != 0) {
524 error_setg(errp, "Invalid option stats-intervals.%s",
525 qdict_first(interval_dict)->key);
526 goto early_err;
529 extract_common_blockdev_options(opts, &bdrv_flags, &throttling_group, &cfg,
530 &detect_zeroes, &error);
531 if (error) {
532 error_propagate(errp, error);
533 goto early_err;
536 if ((buf = qemu_opt_get(opts, "format")) != NULL) {
537 if (is_help_option(buf)) {
538 qemu_printf("Supported formats:");
539 bdrv_iterate_format(bdrv_format_print, NULL, false);
540 qemu_printf("\nSupported formats (read-only):");
541 bdrv_iterate_format(bdrv_format_print, NULL, true);
542 qemu_printf("\n");
543 goto early_err;
546 if (qdict_haskey(bs_opts, "driver")) {
547 error_setg(errp, "Cannot specify both 'driver' and 'format'");
548 goto early_err;
550 qdict_put_str(bs_opts, "driver", buf);
553 on_write_error = BLOCKDEV_ON_ERROR_ENOSPC;
554 if ((buf = qemu_opt_get(opts, "werror")) != NULL) {
555 on_write_error = parse_block_error_action(buf, 0, &error);
556 if (error) {
557 error_propagate(errp, error);
558 goto early_err;
562 on_read_error = BLOCKDEV_ON_ERROR_REPORT;
563 if ((buf = qemu_opt_get(opts, "rerror")) != NULL) {
564 on_read_error = parse_block_error_action(buf, 1, &error);
565 if (error) {
566 error_propagate(errp, error);
567 goto early_err;
571 if (snapshot) {
572 bdrv_flags |= BDRV_O_SNAPSHOT;
575 read_only = qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false);
577 /* init */
578 if ((!file || !*file) && !qdict_size(bs_opts)) {
579 BlockBackendRootState *blk_rs;
581 blk = blk_new(qemu_get_aio_context(), 0, BLK_PERM_ALL);
582 blk_rs = blk_get_root_state(blk);
583 blk_rs->open_flags = bdrv_flags | (read_only ? 0 : BDRV_O_RDWR);
584 blk_rs->detect_zeroes = detect_zeroes;
586 qobject_unref(bs_opts);
587 } else {
588 if (file && !*file) {
589 file = NULL;
592 /* bdrv_open() defaults to the values in bdrv_flags (for compatibility
593 * with other callers) rather than what we want as the real defaults.
594 * Apply the defaults here instead. */
595 qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_DIRECT, "off");
596 qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_NO_FLUSH, "off");
597 qdict_set_default_str(bs_opts, BDRV_OPT_READ_ONLY,
598 read_only ? "on" : "off");
599 qdict_set_default_str(bs_opts, BDRV_OPT_AUTO_READ_ONLY, "on");
600 assert((bdrv_flags & BDRV_O_CACHE_MASK) == 0);
602 if (runstate_check(RUN_STATE_INMIGRATE)) {
603 bdrv_flags |= BDRV_O_INACTIVE;
606 blk = blk_new_open(file, NULL, bs_opts, bdrv_flags, errp);
607 if (!blk) {
608 goto err_no_bs_opts;
610 bs = blk_bs(blk);
612 bs->detect_zeroes = detect_zeroes;
614 block_acct_setup(blk_get_stats(blk), account_invalid, account_failed);
616 if (!parse_stats_intervals(blk_get_stats(blk), interval_list, errp)) {
617 blk_unref(blk);
618 blk = NULL;
619 goto err_no_bs_opts;
623 /* disk I/O throttling */
624 if (throttle_enabled(&cfg)) {
625 if (!throttling_group) {
626 throttling_group = id;
628 blk_io_limits_enable(blk, throttling_group);
629 blk_set_io_limits(blk, &cfg);
632 blk_set_enable_write_cache(blk, !writethrough);
633 blk_set_on_error(blk, on_read_error, on_write_error);
635 if (!monitor_add_blk(blk, id, errp)) {
636 blk_unref(blk);
637 blk = NULL;
638 goto err_no_bs_opts;
641 err_no_bs_opts:
642 qemu_opts_del(opts);
643 qobject_unref(interval_dict);
644 qobject_unref(interval_list);
645 return blk;
647 early_err:
648 qemu_opts_del(opts);
649 qobject_unref(interval_dict);
650 qobject_unref(interval_list);
651 err_no_opts:
652 qobject_unref(bs_opts);
653 return NULL;
656 /* Takes the ownership of bs_opts */
657 BlockDriverState *bds_tree_init(QDict *bs_opts, Error **errp)
659 int bdrv_flags = 0;
661 GLOBAL_STATE_CODE();
662 /* bdrv_open() defaults to the values in bdrv_flags (for compatibility
663 * with other callers) rather than what we want as the real defaults.
664 * Apply the defaults here instead. */
665 qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_DIRECT, "off");
666 qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_NO_FLUSH, "off");
667 qdict_set_default_str(bs_opts, BDRV_OPT_READ_ONLY, "off");
669 if (runstate_check(RUN_STATE_INMIGRATE)) {
670 bdrv_flags |= BDRV_O_INACTIVE;
673 return bdrv_open(NULL, NULL, bs_opts, bdrv_flags, errp);
676 void blockdev_close_all_bdrv_states(void)
678 BlockDriverState *bs, *next_bs;
680 GLOBAL_STATE_CODE();
681 QTAILQ_FOREACH_SAFE(bs, &monitor_bdrv_states, monitor_list, next_bs) {
682 AioContext *ctx = bdrv_get_aio_context(bs);
684 aio_context_acquire(ctx);
685 bdrv_unref(bs);
686 aio_context_release(ctx);
690 /* Iterates over the list of monitor-owned BlockDriverStates */
691 BlockDriverState *bdrv_next_monitor_owned(BlockDriverState *bs)
693 GLOBAL_STATE_CODE();
694 return bs ? QTAILQ_NEXT(bs, monitor_list)
695 : QTAILQ_FIRST(&monitor_bdrv_states);
698 static bool qemu_opt_rename(QemuOpts *opts, const char *from, const char *to,
699 Error **errp)
701 const char *value;
703 value = qemu_opt_get(opts, from);
704 if (value) {
705 if (qemu_opt_find(opts, to)) {
706 error_setg(errp, "'%s' and its alias '%s' can't be used at the "
707 "same time", to, from);
708 return false;
712 /* rename all items in opts */
713 while ((value = qemu_opt_get(opts, from))) {
714 qemu_opt_set(opts, to, value, &error_abort);
715 qemu_opt_unset(opts, from);
717 return true;
720 QemuOptsList qemu_legacy_drive_opts = {
721 .name = "drive",
722 .head = QTAILQ_HEAD_INITIALIZER(qemu_legacy_drive_opts.head),
723 .desc = {
725 .name = "bus",
726 .type = QEMU_OPT_NUMBER,
727 .help = "bus number",
729 .name = "unit",
730 .type = QEMU_OPT_NUMBER,
731 .help = "unit number (i.e. lun for scsi)",
733 .name = "index",
734 .type = QEMU_OPT_NUMBER,
735 .help = "index number",
737 .name = "media",
738 .type = QEMU_OPT_STRING,
739 .help = "media type (disk, cdrom)",
741 .name = "if",
742 .type = QEMU_OPT_STRING,
743 .help = "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
745 .name = "file",
746 .type = QEMU_OPT_STRING,
747 .help = "file name",
750 /* Options that are passed on, but have special semantics with -drive */
752 .name = BDRV_OPT_READ_ONLY,
753 .type = QEMU_OPT_BOOL,
754 .help = "open drive file as read-only",
756 .name = "rerror",
757 .type = QEMU_OPT_STRING,
758 .help = "read error action",
760 .name = "werror",
761 .type = QEMU_OPT_STRING,
762 .help = "write error action",
764 .name = "copy-on-read",
765 .type = QEMU_OPT_BOOL,
766 .help = "copy read data from backing file into image file",
769 { /* end of list */ }
773 DriveInfo *drive_new(QemuOpts *all_opts, BlockInterfaceType block_default_type,
774 Error **errp)
776 const char *value;
777 BlockBackend *blk;
778 DriveInfo *dinfo = NULL;
779 QDict *bs_opts;
780 QemuOpts *legacy_opts;
781 DriveMediaType media = MEDIA_DISK;
782 BlockInterfaceType type;
783 int max_devs, bus_id, unit_id, index;
784 const char *werror, *rerror;
785 bool read_only = false;
786 bool copy_on_read;
787 const char *filename;
788 int i;
790 GLOBAL_STATE_CODE();
792 /* Change legacy command line options into QMP ones */
793 static const struct {
794 const char *from;
795 const char *to;
796 } opt_renames[] = {
797 { "iops", "throttling.iops-total" },
798 { "iops_rd", "throttling.iops-read" },
799 { "iops_wr", "throttling.iops-write" },
801 { "bps", "throttling.bps-total" },
802 { "bps_rd", "throttling.bps-read" },
803 { "bps_wr", "throttling.bps-write" },
805 { "iops_max", "throttling.iops-total-max" },
806 { "iops_rd_max", "throttling.iops-read-max" },
807 { "iops_wr_max", "throttling.iops-write-max" },
809 { "bps_max", "throttling.bps-total-max" },
810 { "bps_rd_max", "throttling.bps-read-max" },
811 { "bps_wr_max", "throttling.bps-write-max" },
813 { "iops_size", "throttling.iops-size" },
815 { "group", "throttling.group" },
817 { "readonly", BDRV_OPT_READ_ONLY },
820 for (i = 0; i < ARRAY_SIZE(opt_renames); i++) {
821 if (!qemu_opt_rename(all_opts, opt_renames[i].from,
822 opt_renames[i].to, errp)) {
823 return NULL;
827 value = qemu_opt_get(all_opts, "cache");
828 if (value) {
829 int flags = 0;
830 bool writethrough;
832 if (bdrv_parse_cache_mode(value, &flags, &writethrough) != 0) {
833 error_setg(errp, "invalid cache option");
834 return NULL;
837 /* Specific options take precedence */
838 if (!qemu_opt_get(all_opts, BDRV_OPT_CACHE_WB)) {
839 qemu_opt_set_bool(all_opts, BDRV_OPT_CACHE_WB,
840 !writethrough, &error_abort);
842 if (!qemu_opt_get(all_opts, BDRV_OPT_CACHE_DIRECT)) {
843 qemu_opt_set_bool(all_opts, BDRV_OPT_CACHE_DIRECT,
844 !!(flags & BDRV_O_NOCACHE), &error_abort);
846 if (!qemu_opt_get(all_opts, BDRV_OPT_CACHE_NO_FLUSH)) {
847 qemu_opt_set_bool(all_opts, BDRV_OPT_CACHE_NO_FLUSH,
848 !!(flags & BDRV_O_NO_FLUSH), &error_abort);
850 qemu_opt_unset(all_opts, "cache");
853 /* Get a QDict for processing the options */
854 bs_opts = qdict_new();
855 qemu_opts_to_qdict(all_opts, bs_opts);
857 legacy_opts = qemu_opts_create(&qemu_legacy_drive_opts, NULL, 0,
858 &error_abort);
859 if (!qemu_opts_absorb_qdict(legacy_opts, bs_opts, errp)) {
860 goto fail;
863 /* Media type */
864 value = qemu_opt_get(legacy_opts, "media");
865 if (value) {
866 if (!strcmp(value, "disk")) {
867 media = MEDIA_DISK;
868 } else if (!strcmp(value, "cdrom")) {
869 media = MEDIA_CDROM;
870 read_only = true;
871 } else {
872 error_setg(errp, "'%s' invalid media", value);
873 goto fail;
877 /* copy-on-read is disabled with a warning for read-only devices */
878 read_only |= qemu_opt_get_bool(legacy_opts, BDRV_OPT_READ_ONLY, false);
879 copy_on_read = qemu_opt_get_bool(legacy_opts, "copy-on-read", false);
881 if (read_only && copy_on_read) {
882 warn_report("disabling copy-on-read on read-only drive");
883 copy_on_read = false;
886 qdict_put_str(bs_opts, BDRV_OPT_READ_ONLY, read_only ? "on" : "off");
887 qdict_put_str(bs_opts, "copy-on-read", copy_on_read ? "on" : "off");
889 /* Controller type */
890 value = qemu_opt_get(legacy_opts, "if");
891 if (value) {
892 for (type = 0;
893 type < IF_COUNT && strcmp(value, if_name[type]);
894 type++) {
896 if (type == IF_COUNT) {
897 error_setg(errp, "unsupported bus type '%s'", value);
898 goto fail;
900 } else {
901 type = block_default_type;
904 /* Device address specified by bus/unit or index.
905 * If none was specified, try to find the first free one. */
906 bus_id = qemu_opt_get_number(legacy_opts, "bus", 0);
907 unit_id = qemu_opt_get_number(legacy_opts, "unit", -1);
908 index = qemu_opt_get_number(legacy_opts, "index", -1);
910 max_devs = if_max_devs[type];
912 if (index != -1) {
913 if (bus_id != 0 || unit_id != -1) {
914 error_setg(errp, "index cannot be used with bus and unit");
915 goto fail;
917 bus_id = drive_index_to_bus_id(type, index);
918 unit_id = drive_index_to_unit_id(type, index);
921 if (unit_id == -1) {
922 unit_id = 0;
923 while (drive_get(type, bus_id, unit_id) != NULL) {
924 unit_id++;
925 if (max_devs && unit_id >= max_devs) {
926 unit_id -= max_devs;
927 bus_id++;
932 if (max_devs && unit_id >= max_devs) {
933 error_setg(errp, "unit %d too big (max is %d)", unit_id, max_devs - 1);
934 goto fail;
937 if (drive_get(type, bus_id, unit_id) != NULL) {
938 error_setg(errp, "drive with bus=%d, unit=%d (index=%d) exists",
939 bus_id, unit_id, index);
940 goto fail;
943 /* no id supplied -> create one */
944 if (qemu_opts_id(all_opts) == NULL) {
945 char *new_id;
946 const char *mediastr = "";
947 if (type == IF_IDE || type == IF_SCSI) {
948 mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd";
950 if (max_devs) {
951 new_id = g_strdup_printf("%s%i%s%i", if_name[type], bus_id,
952 mediastr, unit_id);
953 } else {
954 new_id = g_strdup_printf("%s%s%i", if_name[type],
955 mediastr, unit_id);
957 qdict_put_str(bs_opts, "id", new_id);
958 g_free(new_id);
961 /* Add virtio block device */
962 if (type == IF_VIRTIO) {
963 QemuOpts *devopts;
964 devopts = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
965 &error_abort);
966 qemu_opt_set(devopts, "driver", "virtio-blk", &error_abort);
967 qemu_opt_set(devopts, "drive", qdict_get_str(bs_opts, "id"),
968 &error_abort);
971 filename = qemu_opt_get(legacy_opts, "file");
973 /* Check werror/rerror compatibility with if=... */
974 werror = qemu_opt_get(legacy_opts, "werror");
975 if (werror != NULL) {
976 if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO &&
977 type != IF_NONE) {
978 error_setg(errp, "werror is not supported by this bus type");
979 goto fail;
981 qdict_put_str(bs_opts, "werror", werror);
984 rerror = qemu_opt_get(legacy_opts, "rerror");
985 if (rerror != NULL) {
986 if (type != IF_IDE && type != IF_VIRTIO && type != IF_SCSI &&
987 type != IF_NONE) {
988 error_setg(errp, "rerror is not supported by this bus type");
989 goto fail;
991 qdict_put_str(bs_opts, "rerror", rerror);
994 /* Actual block device init: Functionality shared with blockdev-add */
995 blk = blockdev_init(filename, bs_opts, errp);
996 bs_opts = NULL;
997 if (!blk) {
998 goto fail;
1001 /* Create legacy DriveInfo */
1002 dinfo = g_malloc0(sizeof(*dinfo));
1003 dinfo->opts = all_opts;
1005 dinfo->type = type;
1006 dinfo->bus = bus_id;
1007 dinfo->unit = unit_id;
1009 blk_set_legacy_dinfo(blk, dinfo);
1011 switch(type) {
1012 case IF_IDE:
1013 case IF_SCSI:
1014 case IF_XEN:
1015 case IF_NONE:
1016 dinfo->media_cd = media == MEDIA_CDROM;
1017 break;
1018 default:
1019 break;
1022 fail:
1023 qemu_opts_del(legacy_opts);
1024 qobject_unref(bs_opts);
1025 return dinfo;
1028 static BlockDriverState *qmp_get_root_bs(const char *name, Error **errp)
1030 BlockDriverState *bs;
1032 bs = bdrv_lookup_bs(name, name, errp);
1033 if (bs == NULL) {
1034 return NULL;
1037 if (!bdrv_is_root_node(bs)) {
1038 error_setg(errp, "Need a root block node");
1039 return NULL;
1042 if (!bdrv_is_inserted(bs)) {
1043 error_setg(errp, "Device has no medium");
1044 return NULL;
1047 return bs;
1050 static void blockdev_do_action(TransactionAction *action, Error **errp)
1052 TransactionActionList list;
1054 list.value = action;
1055 list.next = NULL;
1056 qmp_transaction(&list, false, NULL, errp);
1059 void qmp_blockdev_snapshot_sync(bool has_device, const char *device,
1060 bool has_node_name, const char *node_name,
1061 const char *snapshot_file,
1062 bool has_snapshot_node_name,
1063 const char *snapshot_node_name,
1064 bool has_format, const char *format,
1065 bool has_mode, NewImageMode mode, Error **errp)
1067 BlockdevSnapshotSync snapshot = {
1068 .has_device = has_device,
1069 .device = (char *) device,
1070 .has_node_name = has_node_name,
1071 .node_name = (char *) node_name,
1072 .snapshot_file = (char *) snapshot_file,
1073 .has_snapshot_node_name = has_snapshot_node_name,
1074 .snapshot_node_name = (char *) snapshot_node_name,
1075 .has_format = has_format,
1076 .format = (char *) format,
1077 .has_mode = has_mode,
1078 .mode = mode,
1080 TransactionAction action = {
1081 .type = TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC,
1082 .u.blockdev_snapshot_sync.data = &snapshot,
1084 blockdev_do_action(&action, errp);
1087 void qmp_blockdev_snapshot(const char *node, const char *overlay,
1088 Error **errp)
1090 BlockdevSnapshot snapshot_data = {
1091 .node = (char *) node,
1092 .overlay = (char *) overlay
1094 TransactionAction action = {
1095 .type = TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT,
1096 .u.blockdev_snapshot.data = &snapshot_data,
1098 blockdev_do_action(&action, errp);
1101 void qmp_blockdev_snapshot_internal_sync(const char *device,
1102 const char *name,
1103 Error **errp)
1105 BlockdevSnapshotInternal snapshot = {
1106 .device = (char *) device,
1107 .name = (char *) name
1109 TransactionAction action = {
1110 .type = TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC,
1111 .u.blockdev_snapshot_internal_sync.data = &snapshot,
1113 blockdev_do_action(&action, errp);
1116 SnapshotInfo *qmp_blockdev_snapshot_delete_internal_sync(const char *device,
1117 bool has_id,
1118 const char *id,
1119 bool has_name,
1120 const char *name,
1121 Error **errp)
1123 BlockDriverState *bs;
1124 AioContext *aio_context;
1125 QEMUSnapshotInfo sn;
1126 Error *local_err = NULL;
1127 SnapshotInfo *info = NULL;
1128 int ret;
1130 bs = qmp_get_root_bs(device, errp);
1131 if (!bs) {
1132 return NULL;
1134 aio_context = bdrv_get_aio_context(bs);
1135 aio_context_acquire(aio_context);
1137 if (!has_id) {
1138 id = NULL;
1141 if (!has_name) {
1142 name = NULL;
1145 if (!id && !name) {
1146 error_setg(errp, "Name or id must be provided");
1147 goto out_aio_context;
1150 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT_DELETE, errp)) {
1151 goto out_aio_context;
1154 ret = bdrv_snapshot_find_by_id_and_name(bs, id, name, &sn, &local_err);
1155 if (local_err) {
1156 error_propagate(errp, local_err);
1157 goto out_aio_context;
1159 if (!ret) {
1160 error_setg(errp,
1161 "Snapshot with id '%s' and name '%s' does not exist on "
1162 "device '%s'",
1163 STR_OR_NULL(id), STR_OR_NULL(name), device);
1164 goto out_aio_context;
1167 bdrv_snapshot_delete(bs, id, name, &local_err);
1168 if (local_err) {
1169 error_propagate(errp, local_err);
1170 goto out_aio_context;
1173 aio_context_release(aio_context);
1175 info = g_new0(SnapshotInfo, 1);
1176 info->id = g_strdup(sn.id_str);
1177 info->name = g_strdup(sn.name);
1178 info->date_nsec = sn.date_nsec;
1179 info->date_sec = sn.date_sec;
1180 info->vm_state_size = sn.vm_state_size;
1181 info->vm_clock_nsec = sn.vm_clock_nsec % 1000000000;
1182 info->vm_clock_sec = sn.vm_clock_nsec / 1000000000;
1183 if (sn.icount != -1ULL) {
1184 info->icount = sn.icount;
1185 info->has_icount = true;
1188 return info;
1190 out_aio_context:
1191 aio_context_release(aio_context);
1192 return NULL;
1195 /* New and old BlockDriverState structs for atomic group operations */
1197 typedef struct BlkActionState BlkActionState;
1200 * BlkActionOps:
1201 * Table of operations that define an Action.
1203 * @instance_size: Size of state struct, in bytes.
1204 * @prepare: Prepare the work, must NOT be NULL.
1205 * @commit: Commit the changes, can be NULL.
1206 * @abort: Abort the changes on fail, can be NULL.
1207 * @clean: Clean up resources after all transaction actions have called
1208 * commit() or abort(). Can be NULL.
1210 * Only prepare() may fail. In a single transaction, only one of commit() or
1211 * abort() will be called. clean() will always be called if it is present.
1213 * Always run under BQL.
1215 typedef struct BlkActionOps {
1216 size_t instance_size;
1217 void (*prepare)(BlkActionState *common, Error **errp);
1218 void (*commit)(BlkActionState *common);
1219 void (*abort)(BlkActionState *common);
1220 void (*clean)(BlkActionState *common);
1221 } BlkActionOps;
1224 * BlkActionState:
1225 * Describes one Action's state within a Transaction.
1227 * @action: QAPI-defined enum identifying which Action to perform.
1228 * @ops: Table of ActionOps this Action can perform.
1229 * @block_job_txn: Transaction which this action belongs to.
1230 * @entry: List membership for all Actions in this Transaction.
1232 * This structure must be arranged as first member in a subclassed type,
1233 * assuming that the compiler will also arrange it to the same offsets as the
1234 * base class.
1236 struct BlkActionState {
1237 TransactionAction *action;
1238 const BlkActionOps *ops;
1239 JobTxn *block_job_txn;
1240 TransactionProperties *txn_props;
1241 QTAILQ_ENTRY(BlkActionState) entry;
1244 /* internal snapshot private data */
1245 typedef struct InternalSnapshotState {
1246 BlkActionState common;
1247 BlockDriverState *bs;
1248 QEMUSnapshotInfo sn;
1249 bool created;
1250 } InternalSnapshotState;
1253 static int action_check_completion_mode(BlkActionState *s, Error **errp)
1255 if (s->txn_props->completion_mode != ACTION_COMPLETION_MODE_INDIVIDUAL) {
1256 error_setg(errp,
1257 "Action '%s' does not support Transaction property "
1258 "completion-mode = %s",
1259 TransactionActionKind_str(s->action->type),
1260 ActionCompletionMode_str(s->txn_props->completion_mode));
1261 return -1;
1263 return 0;
1266 static void internal_snapshot_prepare(BlkActionState *common,
1267 Error **errp)
1269 Error *local_err = NULL;
1270 const char *device;
1271 const char *name;
1272 BlockDriverState *bs;
1273 QEMUSnapshotInfo old_sn, *sn;
1274 bool ret;
1275 int64_t rt;
1276 BlockdevSnapshotInternal *internal;
1277 InternalSnapshotState *state;
1278 AioContext *aio_context;
1279 int ret1;
1281 g_assert(common->action->type ==
1282 TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC);
1283 internal = common->action->u.blockdev_snapshot_internal_sync.data;
1284 state = DO_UPCAST(InternalSnapshotState, common, common);
1286 /* 1. parse input */
1287 device = internal->device;
1288 name = internal->name;
1290 /* 2. check for validation */
1291 if (action_check_completion_mode(common, errp) < 0) {
1292 return;
1295 bs = qmp_get_root_bs(device, errp);
1296 if (!bs) {
1297 return;
1300 aio_context = bdrv_get_aio_context(bs);
1301 aio_context_acquire(aio_context);
1303 state->bs = bs;
1305 /* Paired with .clean() */
1306 bdrv_drained_begin(bs);
1308 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT, errp)) {
1309 goto out;
1312 if (bdrv_is_read_only(bs)) {
1313 error_setg(errp, "Device '%s' is read only", device);
1314 goto out;
1317 if (!bdrv_can_snapshot(bs)) {
1318 error_setg(errp, "Block format '%s' used by device '%s' "
1319 "does not support internal snapshots",
1320 bs->drv->format_name, device);
1321 goto out;
1324 if (!strlen(name)) {
1325 error_setg(errp, "Name is empty");
1326 goto out;
1329 /* check whether a snapshot with name exist */
1330 ret = bdrv_snapshot_find_by_id_and_name(bs, NULL, name, &old_sn,
1331 &local_err);
1332 if (local_err) {
1333 error_propagate(errp, local_err);
1334 goto out;
1335 } else if (ret) {
1336 error_setg(errp,
1337 "Snapshot with name '%s' already exists on device '%s'",
1338 name, device);
1339 goto out;
1342 /* 3. take the snapshot */
1343 sn = &state->sn;
1344 pstrcpy(sn->name, sizeof(sn->name), name);
1345 rt = g_get_real_time();
1346 sn->date_sec = rt / G_USEC_PER_SEC;
1347 sn->date_nsec = (rt % G_USEC_PER_SEC) * 1000;
1348 sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
1349 if (replay_mode != REPLAY_MODE_NONE) {
1350 sn->icount = replay_get_current_icount();
1351 } else {
1352 sn->icount = -1ULL;
1355 ret1 = bdrv_snapshot_create(bs, sn);
1356 if (ret1 < 0) {
1357 error_setg_errno(errp, -ret1,
1358 "Failed to create snapshot '%s' on device '%s'",
1359 name, device);
1360 goto out;
1363 /* 4. succeed, mark a snapshot is created */
1364 state->created = true;
1366 out:
1367 aio_context_release(aio_context);
1370 static void internal_snapshot_abort(BlkActionState *common)
1372 InternalSnapshotState *state =
1373 DO_UPCAST(InternalSnapshotState, common, common);
1374 BlockDriverState *bs = state->bs;
1375 QEMUSnapshotInfo *sn = &state->sn;
1376 AioContext *aio_context;
1377 Error *local_error = NULL;
1379 if (!state->created) {
1380 return;
1383 aio_context = bdrv_get_aio_context(state->bs);
1384 aio_context_acquire(aio_context);
1386 if (bdrv_snapshot_delete(bs, sn->id_str, sn->name, &local_error) < 0) {
1387 error_reportf_err(local_error,
1388 "Failed to delete snapshot with id '%s' and "
1389 "name '%s' on device '%s' in abort: ",
1390 sn->id_str, sn->name,
1391 bdrv_get_device_name(bs));
1394 aio_context_release(aio_context);
1397 static void internal_snapshot_clean(BlkActionState *common)
1399 InternalSnapshotState *state = DO_UPCAST(InternalSnapshotState,
1400 common, common);
1401 AioContext *aio_context;
1403 if (!state->bs) {
1404 return;
1407 aio_context = bdrv_get_aio_context(state->bs);
1408 aio_context_acquire(aio_context);
1410 bdrv_drained_end(state->bs);
1412 aio_context_release(aio_context);
1415 /* external snapshot private data */
1416 typedef struct ExternalSnapshotState {
1417 BlkActionState common;
1418 BlockDriverState *old_bs;
1419 BlockDriverState *new_bs;
1420 bool overlay_appended;
1421 } ExternalSnapshotState;
1423 static void external_snapshot_prepare(BlkActionState *common,
1424 Error **errp)
1426 int ret;
1427 int flags = 0;
1428 QDict *options = NULL;
1429 Error *local_err = NULL;
1430 /* Device and node name of the image to generate the snapshot from */
1431 const char *device;
1432 const char *node_name;
1433 /* Reference to the new image (for 'blockdev-snapshot') */
1434 const char *snapshot_ref;
1435 /* File name of the new image (for 'blockdev-snapshot-sync') */
1436 const char *new_image_file;
1437 ExternalSnapshotState *state =
1438 DO_UPCAST(ExternalSnapshotState, common, common);
1439 TransactionAction *action = common->action;
1440 AioContext *aio_context;
1441 uint64_t perm, shared;
1443 /* 'blockdev-snapshot' and 'blockdev-snapshot-sync' have similar
1444 * purpose but a different set of parameters */
1445 switch (action->type) {
1446 case TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT:
1448 BlockdevSnapshot *s = action->u.blockdev_snapshot.data;
1449 device = s->node;
1450 node_name = s->node;
1451 new_image_file = NULL;
1452 snapshot_ref = s->overlay;
1454 break;
1455 case TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC:
1457 BlockdevSnapshotSync *s = action->u.blockdev_snapshot_sync.data;
1458 device = s->has_device ? s->device : NULL;
1459 node_name = s->has_node_name ? s->node_name : NULL;
1460 new_image_file = s->snapshot_file;
1461 snapshot_ref = NULL;
1463 break;
1464 default:
1465 g_assert_not_reached();
1468 /* start processing */
1469 if (action_check_completion_mode(common, errp) < 0) {
1470 return;
1473 state->old_bs = bdrv_lookup_bs(device, node_name, errp);
1474 if (!state->old_bs) {
1475 return;
1478 aio_context = bdrv_get_aio_context(state->old_bs);
1479 aio_context_acquire(aio_context);
1481 /* Paired with .clean() */
1482 bdrv_drained_begin(state->old_bs);
1484 if (!bdrv_is_inserted(state->old_bs)) {
1485 error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, device);
1486 goto out;
1489 if (bdrv_op_is_blocked(state->old_bs,
1490 BLOCK_OP_TYPE_EXTERNAL_SNAPSHOT, errp)) {
1491 goto out;
1494 if (!bdrv_is_read_only(state->old_bs)) {
1495 if (bdrv_flush(state->old_bs)) {
1496 error_setg(errp, QERR_IO_ERROR);
1497 goto out;
1501 if (action->type == TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC) {
1502 BlockdevSnapshotSync *s = action->u.blockdev_snapshot_sync.data;
1503 const char *format = s->has_format ? s->format : "qcow2";
1504 enum NewImageMode mode;
1505 const char *snapshot_node_name =
1506 s->has_snapshot_node_name ? s->snapshot_node_name : NULL;
1508 if (node_name && !snapshot_node_name) {
1509 error_setg(errp, "New overlay node-name missing");
1510 goto out;
1513 if (snapshot_node_name &&
1514 bdrv_lookup_bs(snapshot_node_name, snapshot_node_name, NULL)) {
1515 error_setg(errp, "New overlay node-name already in use");
1516 goto out;
1519 flags = state->old_bs->open_flags;
1520 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_COPY_ON_READ);
1521 flags |= BDRV_O_NO_BACKING;
1523 /* create new image w/backing file */
1524 mode = s->has_mode ? s->mode : NEW_IMAGE_MODE_ABSOLUTE_PATHS;
1525 if (mode != NEW_IMAGE_MODE_EXISTING) {
1526 int64_t size = bdrv_getlength(state->old_bs);
1527 if (size < 0) {
1528 error_setg_errno(errp, -size, "bdrv_getlength failed");
1529 goto out;
1531 bdrv_refresh_filename(state->old_bs);
1532 bdrv_img_create(new_image_file, format,
1533 state->old_bs->filename,
1534 state->old_bs->drv->format_name,
1535 NULL, size, flags, false, &local_err);
1536 if (local_err) {
1537 error_propagate(errp, local_err);
1538 goto out;
1542 options = qdict_new();
1543 if (snapshot_node_name) {
1544 qdict_put_str(options, "node-name", snapshot_node_name);
1546 qdict_put_str(options, "driver", format);
1549 state->new_bs = bdrv_open(new_image_file, snapshot_ref, options, flags,
1550 errp);
1551 /* We will manually add the backing_hd field to the bs later */
1552 if (!state->new_bs) {
1553 goto out;
1557 * Allow attaching a backing file to an overlay that's already in use only
1558 * if the parents don't assume that they are already seeing a valid image.
1559 * (Specifically, allow it as a mirror target, which is write-only access.)
1561 bdrv_get_cumulative_perm(state->new_bs, &perm, &shared);
1562 if (perm & BLK_PERM_CONSISTENT_READ) {
1563 error_setg(errp, "The overlay is already in use");
1564 goto out;
1567 if (state->new_bs->drv->is_filter) {
1568 error_setg(errp, "Filters cannot be used as overlays");
1569 goto out;
1572 if (bdrv_cow_child(state->new_bs)) {
1573 error_setg(errp, "The overlay already has a backing image");
1574 goto out;
1577 if (!state->new_bs->drv->supports_backing) {
1578 error_setg(errp, "The overlay does not support backing images");
1579 goto out;
1582 ret = bdrv_append(state->new_bs, state->old_bs, errp);
1583 if (ret < 0) {
1584 goto out;
1586 state->overlay_appended = true;
1588 out:
1589 aio_context_release(aio_context);
1592 static void external_snapshot_commit(BlkActionState *common)
1594 ExternalSnapshotState *state =
1595 DO_UPCAST(ExternalSnapshotState, common, common);
1596 AioContext *aio_context;
1598 aio_context = bdrv_get_aio_context(state->old_bs);
1599 aio_context_acquire(aio_context);
1601 /* We don't need (or want) to use the transactional
1602 * bdrv_reopen_multiple() across all the entries at once, because we
1603 * don't want to abort all of them if one of them fails the reopen */
1604 if (!qatomic_read(&state->old_bs->copy_on_read)) {
1605 bdrv_reopen_set_read_only(state->old_bs, true, NULL);
1608 aio_context_release(aio_context);
1611 static void external_snapshot_abort(BlkActionState *common)
1613 ExternalSnapshotState *state =
1614 DO_UPCAST(ExternalSnapshotState, common, common);
1615 if (state->new_bs) {
1616 if (state->overlay_appended) {
1617 AioContext *aio_context;
1618 AioContext *tmp_context;
1619 int ret;
1621 aio_context = bdrv_get_aio_context(state->old_bs);
1622 aio_context_acquire(aio_context);
1624 bdrv_ref(state->old_bs); /* we can't let bdrv_set_backind_hd()
1625 close state->old_bs; we need it */
1626 bdrv_set_backing_hd(state->new_bs, NULL, &error_abort);
1629 * The call to bdrv_set_backing_hd() above returns state->old_bs to
1630 * the main AioContext. As we're still going to be using it, return
1631 * it to the AioContext it was before.
1633 tmp_context = bdrv_get_aio_context(state->old_bs);
1634 if (aio_context != tmp_context) {
1635 aio_context_release(aio_context);
1636 aio_context_acquire(tmp_context);
1638 ret = bdrv_try_set_aio_context(state->old_bs,
1639 aio_context, NULL);
1640 assert(ret == 0);
1642 aio_context_release(tmp_context);
1643 aio_context_acquire(aio_context);
1646 bdrv_replace_node(state->new_bs, state->old_bs, &error_abort);
1647 bdrv_unref(state->old_bs); /* bdrv_replace_node() ref'ed old_bs */
1649 aio_context_release(aio_context);
1654 static void external_snapshot_clean(BlkActionState *common)
1656 ExternalSnapshotState *state =
1657 DO_UPCAST(ExternalSnapshotState, common, common);
1658 AioContext *aio_context;
1660 if (!state->old_bs) {
1661 return;
1664 aio_context = bdrv_get_aio_context(state->old_bs);
1665 aio_context_acquire(aio_context);
1667 bdrv_drained_end(state->old_bs);
1668 bdrv_unref(state->new_bs);
1670 aio_context_release(aio_context);
1673 typedef struct DriveBackupState {
1674 BlkActionState common;
1675 BlockDriverState *bs;
1676 BlockJob *job;
1677 } DriveBackupState;
1679 static BlockJob *do_backup_common(BackupCommon *backup,
1680 BlockDriverState *bs,
1681 BlockDriverState *target_bs,
1682 AioContext *aio_context,
1683 JobTxn *txn, Error **errp);
1685 static void drive_backup_prepare(BlkActionState *common, Error **errp)
1687 DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common);
1688 DriveBackup *backup;
1689 BlockDriverState *bs;
1690 BlockDriverState *target_bs;
1691 BlockDriverState *source = NULL;
1692 AioContext *aio_context;
1693 AioContext *old_context;
1694 QDict *options;
1695 Error *local_err = NULL;
1696 int flags;
1697 int64_t size;
1698 bool set_backing_hd = false;
1699 int ret;
1701 assert(common->action->type == TRANSACTION_ACTION_KIND_DRIVE_BACKUP);
1702 backup = common->action->u.drive_backup.data;
1704 if (!backup->has_mode) {
1705 backup->mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS;
1708 bs = bdrv_lookup_bs(backup->device, backup->device, errp);
1709 if (!bs) {
1710 return;
1713 if (!bs->drv) {
1714 error_setg(errp, "Device has no medium");
1715 return;
1718 aio_context = bdrv_get_aio_context(bs);
1719 aio_context_acquire(aio_context);
1721 state->bs = bs;
1722 /* Paired with .clean() */
1723 bdrv_drained_begin(bs);
1725 if (!backup->has_format) {
1726 backup->format = backup->mode == NEW_IMAGE_MODE_EXISTING ?
1727 NULL : (char *) bs->drv->format_name;
1730 /* Early check to avoid creating target */
1731 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_BACKUP_SOURCE, errp)) {
1732 goto out;
1735 flags = bs->open_flags | BDRV_O_RDWR;
1738 * See if we have a backing HD we can use to create our new image
1739 * on top of.
1741 if (backup->sync == MIRROR_SYNC_MODE_TOP) {
1743 * Backup will not replace the source by the target, so none
1744 * of the filters skipped here will be removed (in contrast to
1745 * mirror). Therefore, we can skip all of them when looking
1746 * for the first COW relationship.
1748 source = bdrv_cow_bs(bdrv_skip_filters(bs));
1749 if (!source) {
1750 backup->sync = MIRROR_SYNC_MODE_FULL;
1753 if (backup->sync == MIRROR_SYNC_MODE_NONE) {
1754 source = bs;
1755 flags |= BDRV_O_NO_BACKING;
1756 set_backing_hd = true;
1759 size = bdrv_getlength(bs);
1760 if (size < 0) {
1761 error_setg_errno(errp, -size, "bdrv_getlength failed");
1762 goto out;
1765 if (backup->mode != NEW_IMAGE_MODE_EXISTING) {
1766 assert(backup->format);
1767 if (source) {
1768 /* Implicit filters should not appear in the filename */
1769 BlockDriverState *explicit_backing =
1770 bdrv_skip_implicit_filters(source);
1772 bdrv_refresh_filename(explicit_backing);
1773 bdrv_img_create(backup->target, backup->format,
1774 explicit_backing->filename,
1775 explicit_backing->drv->format_name, NULL,
1776 size, flags, false, &local_err);
1777 } else {
1778 bdrv_img_create(backup->target, backup->format, NULL, NULL, NULL,
1779 size, flags, false, &local_err);
1783 if (local_err) {
1784 error_propagate(errp, local_err);
1785 goto out;
1788 options = qdict_new();
1789 qdict_put_str(options, "discard", "unmap");
1790 qdict_put_str(options, "detect-zeroes", "unmap");
1791 if (backup->format) {
1792 qdict_put_str(options, "driver", backup->format);
1795 target_bs = bdrv_open(backup->target, NULL, options, flags, errp);
1796 if (!target_bs) {
1797 goto out;
1800 /* Honor bdrv_try_set_aio_context() context acquisition requirements. */
1801 old_context = bdrv_get_aio_context(target_bs);
1802 aio_context_release(aio_context);
1803 aio_context_acquire(old_context);
1805 ret = bdrv_try_set_aio_context(target_bs, aio_context, errp);
1806 if (ret < 0) {
1807 bdrv_unref(target_bs);
1808 aio_context_release(old_context);
1809 return;
1812 aio_context_release(old_context);
1813 aio_context_acquire(aio_context);
1815 if (set_backing_hd) {
1816 if (bdrv_set_backing_hd(target_bs, source, errp) < 0) {
1817 goto unref;
1821 state->job = do_backup_common(qapi_DriveBackup_base(backup),
1822 bs, target_bs, aio_context,
1823 common->block_job_txn, errp);
1825 unref:
1826 bdrv_unref(target_bs);
1827 out:
1828 aio_context_release(aio_context);
1831 static void drive_backup_commit(BlkActionState *common)
1833 DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common);
1834 AioContext *aio_context;
1836 aio_context = bdrv_get_aio_context(state->bs);
1837 aio_context_acquire(aio_context);
1839 assert(state->job);
1840 job_start(&state->job->job);
1842 aio_context_release(aio_context);
1845 static void drive_backup_abort(BlkActionState *common)
1847 DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common);
1849 if (state->job) {
1850 AioContext *aio_context;
1852 aio_context = bdrv_get_aio_context(state->bs);
1853 aio_context_acquire(aio_context);
1855 job_cancel_sync(&state->job->job, true);
1857 aio_context_release(aio_context);
1861 static void drive_backup_clean(BlkActionState *common)
1863 DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common);
1864 AioContext *aio_context;
1866 if (!state->bs) {
1867 return;
1870 aio_context = bdrv_get_aio_context(state->bs);
1871 aio_context_acquire(aio_context);
1873 bdrv_drained_end(state->bs);
1875 aio_context_release(aio_context);
1878 typedef struct BlockdevBackupState {
1879 BlkActionState common;
1880 BlockDriverState *bs;
1881 BlockJob *job;
1882 } BlockdevBackupState;
1884 static void blockdev_backup_prepare(BlkActionState *common, Error **errp)
1886 BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common);
1887 BlockdevBackup *backup;
1888 BlockDriverState *bs;
1889 BlockDriverState *target_bs;
1890 AioContext *aio_context;
1891 AioContext *old_context;
1892 int ret;
1894 assert(common->action->type == TRANSACTION_ACTION_KIND_BLOCKDEV_BACKUP);
1895 backup = common->action->u.blockdev_backup.data;
1897 bs = bdrv_lookup_bs(backup->device, backup->device, errp);
1898 if (!bs) {
1899 return;
1902 target_bs = bdrv_lookup_bs(backup->target, backup->target, errp);
1903 if (!target_bs) {
1904 return;
1907 /* Honor bdrv_try_set_aio_context() context acquisition requirements. */
1908 aio_context = bdrv_get_aio_context(bs);
1909 old_context = bdrv_get_aio_context(target_bs);
1910 aio_context_acquire(old_context);
1912 ret = bdrv_try_set_aio_context(target_bs, aio_context, errp);
1913 if (ret < 0) {
1914 aio_context_release(old_context);
1915 return;
1918 aio_context_release(old_context);
1919 aio_context_acquire(aio_context);
1920 state->bs = bs;
1922 /* Paired with .clean() */
1923 bdrv_drained_begin(state->bs);
1925 state->job = do_backup_common(qapi_BlockdevBackup_base(backup),
1926 bs, target_bs, aio_context,
1927 common->block_job_txn, errp);
1929 aio_context_release(aio_context);
1932 static void blockdev_backup_commit(BlkActionState *common)
1934 BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common);
1935 AioContext *aio_context;
1937 aio_context = bdrv_get_aio_context(state->bs);
1938 aio_context_acquire(aio_context);
1940 assert(state->job);
1941 job_start(&state->job->job);
1943 aio_context_release(aio_context);
1946 static void blockdev_backup_abort(BlkActionState *common)
1948 BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common);
1950 if (state->job) {
1951 AioContext *aio_context;
1953 aio_context = bdrv_get_aio_context(state->bs);
1954 aio_context_acquire(aio_context);
1956 job_cancel_sync(&state->job->job, true);
1958 aio_context_release(aio_context);
1962 static void blockdev_backup_clean(BlkActionState *common)
1964 BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common);
1965 AioContext *aio_context;
1967 if (!state->bs) {
1968 return;
1971 aio_context = bdrv_get_aio_context(state->bs);
1972 aio_context_acquire(aio_context);
1974 bdrv_drained_end(state->bs);
1976 aio_context_release(aio_context);
1979 typedef struct BlockDirtyBitmapState {
1980 BlkActionState common;
1981 BdrvDirtyBitmap *bitmap;
1982 BlockDriverState *bs;
1983 HBitmap *backup;
1984 bool prepared;
1985 bool was_enabled;
1986 } BlockDirtyBitmapState;
1988 static void block_dirty_bitmap_add_prepare(BlkActionState *common,
1989 Error **errp)
1991 Error *local_err = NULL;
1992 BlockDirtyBitmapAdd *action;
1993 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
1994 common, common);
1996 if (action_check_completion_mode(common, errp) < 0) {
1997 return;
2000 action = common->action->u.block_dirty_bitmap_add.data;
2001 /* AIO context taken and released within qmp_block_dirty_bitmap_add */
2002 qmp_block_dirty_bitmap_add(action->node, action->name,
2003 action->has_granularity, action->granularity,
2004 action->has_persistent, action->persistent,
2005 action->has_disabled, action->disabled,
2006 &local_err);
2008 if (!local_err) {
2009 state->prepared = true;
2010 } else {
2011 error_propagate(errp, local_err);
2015 static void block_dirty_bitmap_add_abort(BlkActionState *common)
2017 BlockDirtyBitmapAdd *action;
2018 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2019 common, common);
2021 action = common->action->u.block_dirty_bitmap_add.data;
2022 /* Should not be able to fail: IF the bitmap was added via .prepare(),
2023 * then the node reference and bitmap name must have been valid.
2025 if (state->prepared) {
2026 qmp_block_dirty_bitmap_remove(action->node, action->name, &error_abort);
2030 static void block_dirty_bitmap_clear_prepare(BlkActionState *common,
2031 Error **errp)
2033 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2034 common, common);
2035 BlockDirtyBitmap *action;
2037 if (action_check_completion_mode(common, errp) < 0) {
2038 return;
2041 action = common->action->u.block_dirty_bitmap_clear.data;
2042 state->bitmap = block_dirty_bitmap_lookup(action->node,
2043 action->name,
2044 &state->bs,
2045 errp);
2046 if (!state->bitmap) {
2047 return;
2050 if (bdrv_dirty_bitmap_check(state->bitmap, BDRV_BITMAP_DEFAULT, errp)) {
2051 return;
2054 bdrv_clear_dirty_bitmap(state->bitmap, &state->backup);
2057 static void block_dirty_bitmap_restore(BlkActionState *common)
2059 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2060 common, common);
2062 if (state->backup) {
2063 bdrv_restore_dirty_bitmap(state->bitmap, state->backup);
2067 static void block_dirty_bitmap_free_backup(BlkActionState *common)
2069 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2070 common, common);
2072 hbitmap_free(state->backup);
2075 static void block_dirty_bitmap_enable_prepare(BlkActionState *common,
2076 Error **errp)
2078 BlockDirtyBitmap *action;
2079 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2080 common, common);
2082 if (action_check_completion_mode(common, errp) < 0) {
2083 return;
2086 action = common->action->u.block_dirty_bitmap_enable.data;
2087 state->bitmap = block_dirty_bitmap_lookup(action->node,
2088 action->name,
2089 NULL,
2090 errp);
2091 if (!state->bitmap) {
2092 return;
2095 if (bdrv_dirty_bitmap_check(state->bitmap, BDRV_BITMAP_ALLOW_RO, errp)) {
2096 return;
2099 state->was_enabled = bdrv_dirty_bitmap_enabled(state->bitmap);
2100 bdrv_enable_dirty_bitmap(state->bitmap);
2103 static void block_dirty_bitmap_enable_abort(BlkActionState *common)
2105 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2106 common, common);
2108 if (!state->was_enabled) {
2109 bdrv_disable_dirty_bitmap(state->bitmap);
2113 static void block_dirty_bitmap_disable_prepare(BlkActionState *common,
2114 Error **errp)
2116 BlockDirtyBitmap *action;
2117 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2118 common, common);
2120 if (action_check_completion_mode(common, errp) < 0) {
2121 return;
2124 action = common->action->u.block_dirty_bitmap_disable.data;
2125 state->bitmap = block_dirty_bitmap_lookup(action->node,
2126 action->name,
2127 NULL,
2128 errp);
2129 if (!state->bitmap) {
2130 return;
2133 if (bdrv_dirty_bitmap_check(state->bitmap, BDRV_BITMAP_ALLOW_RO, errp)) {
2134 return;
2137 state->was_enabled = bdrv_dirty_bitmap_enabled(state->bitmap);
2138 bdrv_disable_dirty_bitmap(state->bitmap);
2141 static void block_dirty_bitmap_disable_abort(BlkActionState *common)
2143 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2144 common, common);
2146 if (state->was_enabled) {
2147 bdrv_enable_dirty_bitmap(state->bitmap);
2151 static void block_dirty_bitmap_merge_prepare(BlkActionState *common,
2152 Error **errp)
2154 BlockDirtyBitmapMerge *action;
2155 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2156 common, common);
2158 if (action_check_completion_mode(common, errp) < 0) {
2159 return;
2162 action = common->action->u.block_dirty_bitmap_merge.data;
2164 state->bitmap = block_dirty_bitmap_merge(action->node, action->target,
2165 action->bitmaps, &state->backup,
2166 errp);
2169 static void block_dirty_bitmap_remove_prepare(BlkActionState *common,
2170 Error **errp)
2172 BlockDirtyBitmap *action;
2173 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2174 common, common);
2176 if (action_check_completion_mode(common, errp) < 0) {
2177 return;
2180 action = common->action->u.block_dirty_bitmap_remove.data;
2182 state->bitmap = block_dirty_bitmap_remove(action->node, action->name,
2183 false, &state->bs, errp);
2184 if (state->bitmap) {
2185 bdrv_dirty_bitmap_skip_store(state->bitmap, true);
2186 bdrv_dirty_bitmap_set_busy(state->bitmap, true);
2190 static void block_dirty_bitmap_remove_abort(BlkActionState *common)
2192 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2193 common, common);
2195 if (state->bitmap) {
2196 bdrv_dirty_bitmap_skip_store(state->bitmap, false);
2197 bdrv_dirty_bitmap_set_busy(state->bitmap, false);
2201 static void block_dirty_bitmap_remove_commit(BlkActionState *common)
2203 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2204 common, common);
2206 bdrv_dirty_bitmap_set_busy(state->bitmap, false);
2207 bdrv_release_dirty_bitmap(state->bitmap);
2210 static void abort_prepare(BlkActionState *common, Error **errp)
2212 error_setg(errp, "Transaction aborted using Abort action");
2215 static void abort_commit(BlkActionState *common)
2217 g_assert_not_reached(); /* this action never succeeds */
2220 static const BlkActionOps actions[] = {
2221 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT] = {
2222 .instance_size = sizeof(ExternalSnapshotState),
2223 .prepare = external_snapshot_prepare,
2224 .commit = external_snapshot_commit,
2225 .abort = external_snapshot_abort,
2226 .clean = external_snapshot_clean,
2228 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC] = {
2229 .instance_size = sizeof(ExternalSnapshotState),
2230 .prepare = external_snapshot_prepare,
2231 .commit = external_snapshot_commit,
2232 .abort = external_snapshot_abort,
2233 .clean = external_snapshot_clean,
2235 [TRANSACTION_ACTION_KIND_DRIVE_BACKUP] = {
2236 .instance_size = sizeof(DriveBackupState),
2237 .prepare = drive_backup_prepare,
2238 .commit = drive_backup_commit,
2239 .abort = drive_backup_abort,
2240 .clean = drive_backup_clean,
2242 [TRANSACTION_ACTION_KIND_BLOCKDEV_BACKUP] = {
2243 .instance_size = sizeof(BlockdevBackupState),
2244 .prepare = blockdev_backup_prepare,
2245 .commit = blockdev_backup_commit,
2246 .abort = blockdev_backup_abort,
2247 .clean = blockdev_backup_clean,
2249 [TRANSACTION_ACTION_KIND_ABORT] = {
2250 .instance_size = sizeof(BlkActionState),
2251 .prepare = abort_prepare,
2252 .commit = abort_commit,
2254 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC] = {
2255 .instance_size = sizeof(InternalSnapshotState),
2256 .prepare = internal_snapshot_prepare,
2257 .abort = internal_snapshot_abort,
2258 .clean = internal_snapshot_clean,
2260 [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_ADD] = {
2261 .instance_size = sizeof(BlockDirtyBitmapState),
2262 .prepare = block_dirty_bitmap_add_prepare,
2263 .abort = block_dirty_bitmap_add_abort,
2265 [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_CLEAR] = {
2266 .instance_size = sizeof(BlockDirtyBitmapState),
2267 .prepare = block_dirty_bitmap_clear_prepare,
2268 .commit = block_dirty_bitmap_free_backup,
2269 .abort = block_dirty_bitmap_restore,
2271 [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_ENABLE] = {
2272 .instance_size = sizeof(BlockDirtyBitmapState),
2273 .prepare = block_dirty_bitmap_enable_prepare,
2274 .abort = block_dirty_bitmap_enable_abort,
2276 [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_DISABLE] = {
2277 .instance_size = sizeof(BlockDirtyBitmapState),
2278 .prepare = block_dirty_bitmap_disable_prepare,
2279 .abort = block_dirty_bitmap_disable_abort,
2281 [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_MERGE] = {
2282 .instance_size = sizeof(BlockDirtyBitmapState),
2283 .prepare = block_dirty_bitmap_merge_prepare,
2284 .commit = block_dirty_bitmap_free_backup,
2285 .abort = block_dirty_bitmap_restore,
2287 [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_REMOVE] = {
2288 .instance_size = sizeof(BlockDirtyBitmapState),
2289 .prepare = block_dirty_bitmap_remove_prepare,
2290 .commit = block_dirty_bitmap_remove_commit,
2291 .abort = block_dirty_bitmap_remove_abort,
2293 /* Where are transactions for MIRROR, COMMIT and STREAM?
2294 * Although these blockjobs use transaction callbacks like the backup job,
2295 * these jobs do not necessarily adhere to transaction semantics.
2296 * These jobs may not fully undo all of their actions on abort, nor do they
2297 * necessarily work in transactions with more than one job in them.
2302 * Allocate a TransactionProperties structure if necessary, and fill
2303 * that structure with desired defaults if they are unset.
2305 static TransactionProperties *get_transaction_properties(
2306 TransactionProperties *props)
2308 if (!props) {
2309 props = g_new0(TransactionProperties, 1);
2312 if (!props->has_completion_mode) {
2313 props->has_completion_mode = true;
2314 props->completion_mode = ACTION_COMPLETION_MODE_INDIVIDUAL;
2317 return props;
2321 * 'Atomic' group operations. The operations are performed as a set, and if
2322 * any fail then we roll back all operations in the group.
2324 * Always run under BQL.
2326 void qmp_transaction(TransactionActionList *dev_list,
2327 bool has_props,
2328 struct TransactionProperties *props,
2329 Error **errp)
2331 TransactionActionList *dev_entry = dev_list;
2332 JobTxn *block_job_txn = NULL;
2333 BlkActionState *state, *next;
2334 Error *local_err = NULL;
2336 GLOBAL_STATE_CODE();
2338 QTAILQ_HEAD(, BlkActionState) snap_bdrv_states;
2339 QTAILQ_INIT(&snap_bdrv_states);
2341 /* Does this transaction get canceled as a group on failure?
2342 * If not, we don't really need to make a JobTxn.
2344 props = get_transaction_properties(props);
2345 if (props->completion_mode != ACTION_COMPLETION_MODE_INDIVIDUAL) {
2346 block_job_txn = job_txn_new();
2349 /* drain all i/o before any operations */
2350 bdrv_drain_all();
2352 /* We don't do anything in this loop that commits us to the operations */
2353 while (NULL != dev_entry) {
2354 TransactionAction *dev_info = NULL;
2355 const BlkActionOps *ops;
2357 dev_info = dev_entry->value;
2358 dev_entry = dev_entry->next;
2360 assert(dev_info->type < ARRAY_SIZE(actions));
2362 ops = &actions[dev_info->type];
2363 assert(ops->instance_size > 0);
2365 state = g_malloc0(ops->instance_size);
2366 state->ops = ops;
2367 state->action = dev_info;
2368 state->block_job_txn = block_job_txn;
2369 state->txn_props = props;
2370 QTAILQ_INSERT_TAIL(&snap_bdrv_states, state, entry);
2372 state->ops->prepare(state, &local_err);
2373 if (local_err) {
2374 error_propagate(errp, local_err);
2375 goto delete_and_fail;
2379 QTAILQ_FOREACH(state, &snap_bdrv_states, entry) {
2380 if (state->ops->commit) {
2381 state->ops->commit(state);
2385 /* success */
2386 goto exit;
2388 delete_and_fail:
2389 /* failure, and it is all-or-none; roll back all operations */
2390 QTAILQ_FOREACH_REVERSE(state, &snap_bdrv_states, entry) {
2391 if (state->ops->abort) {
2392 state->ops->abort(state);
2395 exit:
2396 QTAILQ_FOREACH_SAFE(state, &snap_bdrv_states, entry, next) {
2397 if (state->ops->clean) {
2398 state->ops->clean(state);
2400 g_free(state);
2402 if (!has_props) {
2403 qapi_free_TransactionProperties(props);
2405 job_txn_unref(block_job_txn);
2408 BlockDirtyBitmapSha256 *qmp_x_debug_block_dirty_bitmap_sha256(const char *node,
2409 const char *name,
2410 Error **errp)
2412 BdrvDirtyBitmap *bitmap;
2413 BlockDriverState *bs;
2414 BlockDirtyBitmapSha256 *ret = NULL;
2415 char *sha256;
2417 bitmap = block_dirty_bitmap_lookup(node, name, &bs, errp);
2418 if (!bitmap || !bs) {
2419 return NULL;
2422 sha256 = bdrv_dirty_bitmap_sha256(bitmap, errp);
2423 if (sha256 == NULL) {
2424 return NULL;
2427 ret = g_new(BlockDirtyBitmapSha256, 1);
2428 ret->sha256 = sha256;
2430 return ret;
2433 void coroutine_fn qmp_block_resize(bool has_device, const char *device,
2434 bool has_node_name, const char *node_name,
2435 int64_t size, Error **errp)
2437 Error *local_err = NULL;
2438 BlockBackend *blk;
2439 BlockDriverState *bs;
2440 AioContext *old_ctx;
2442 bs = bdrv_lookup_bs(has_device ? device : NULL,
2443 has_node_name ? node_name : NULL,
2444 &local_err);
2445 if (local_err) {
2446 error_propagate(errp, local_err);
2447 return;
2450 if (size < 0) {
2451 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "size", "a >0 size");
2452 return;
2455 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_RESIZE, NULL)) {
2456 error_setg(errp, QERR_DEVICE_IN_USE, device);
2457 return;
2460 blk = blk_new_with_bs(bs, BLK_PERM_RESIZE, BLK_PERM_ALL, errp);
2461 if (!blk) {
2462 return;
2465 bdrv_co_lock(bs);
2466 bdrv_drained_begin(bs);
2467 bdrv_co_unlock(bs);
2469 old_ctx = bdrv_co_enter(bs);
2470 blk_truncate(blk, size, false, PREALLOC_MODE_OFF, 0, errp);
2471 bdrv_co_leave(bs, old_ctx);
2473 bdrv_co_lock(bs);
2474 bdrv_drained_end(bs);
2475 blk_unref(blk);
2476 bdrv_co_unlock(bs);
2479 void qmp_block_stream(bool has_job_id, const char *job_id, const char *device,
2480 bool has_base, const char *base,
2481 bool has_base_node, const char *base_node,
2482 bool has_backing_file, const char *backing_file,
2483 bool has_bottom, const char *bottom,
2484 bool has_speed, int64_t speed,
2485 bool has_on_error, BlockdevOnError on_error,
2486 bool has_filter_node_name, const char *filter_node_name,
2487 bool has_auto_finalize, bool auto_finalize,
2488 bool has_auto_dismiss, bool auto_dismiss,
2489 Error **errp)
2491 BlockDriverState *bs, *iter, *iter_end;
2492 BlockDriverState *base_bs = NULL;
2493 BlockDriverState *bottom_bs = NULL;
2494 AioContext *aio_context;
2495 Error *local_err = NULL;
2496 int job_flags = JOB_DEFAULT;
2498 if (has_base && has_base_node) {
2499 error_setg(errp, "'base' and 'base-node' cannot be specified "
2500 "at the same time");
2501 return;
2504 if (has_base && has_bottom) {
2505 error_setg(errp, "'base' and 'bottom' cannot be specified "
2506 "at the same time");
2507 return;
2510 if (has_bottom && has_base_node) {
2511 error_setg(errp, "'bottom' and 'base-node' cannot be specified "
2512 "at the same time");
2513 return;
2516 if (!has_on_error) {
2517 on_error = BLOCKDEV_ON_ERROR_REPORT;
2520 bs = bdrv_lookup_bs(device, device, errp);
2521 if (!bs) {
2522 return;
2525 aio_context = bdrv_get_aio_context(bs);
2526 aio_context_acquire(aio_context);
2528 if (has_base) {
2529 base_bs = bdrv_find_backing_image(bs, base);
2530 if (base_bs == NULL) {
2531 error_setg(errp, "Can't find '%s' in the backing chain", base);
2532 goto out;
2534 assert(bdrv_get_aio_context(base_bs) == aio_context);
2537 if (has_base_node) {
2538 base_bs = bdrv_lookup_bs(NULL, base_node, errp);
2539 if (!base_bs) {
2540 goto out;
2542 if (bs == base_bs || !bdrv_chain_contains(bs, base_bs)) {
2543 error_setg(errp, "Node '%s' is not a backing image of '%s'",
2544 base_node, device);
2545 goto out;
2547 assert(bdrv_get_aio_context(base_bs) == aio_context);
2548 bdrv_refresh_filename(base_bs);
2551 if (has_bottom) {
2552 bottom_bs = bdrv_lookup_bs(NULL, bottom, errp);
2553 if (!bottom_bs) {
2554 goto out;
2556 if (!bottom_bs->drv) {
2557 error_setg(errp, "Node '%s' is not open", bottom);
2558 goto out;
2560 if (bottom_bs->drv->is_filter) {
2561 error_setg(errp, "Node '%s' is a filter, use a non-filter node "
2562 "as 'bottom'", bottom);
2563 goto out;
2565 if (!bdrv_chain_contains(bs, bottom_bs)) {
2566 error_setg(errp, "Node '%s' is not in a chain starting from '%s'",
2567 bottom, device);
2568 goto out;
2570 assert(bdrv_get_aio_context(bottom_bs) == aio_context);
2574 * Check for op blockers in the whole chain between bs and base (or bottom)
2576 iter_end = has_bottom ? bdrv_filter_or_cow_bs(bottom_bs) : base_bs;
2577 for (iter = bs; iter && iter != iter_end;
2578 iter = bdrv_filter_or_cow_bs(iter))
2580 if (bdrv_op_is_blocked(iter, BLOCK_OP_TYPE_STREAM, errp)) {
2581 goto out;
2585 /* if we are streaming the entire chain, the result will have no backing
2586 * file, and specifying one is therefore an error */
2587 if (base_bs == NULL && has_backing_file) {
2588 error_setg(errp, "backing file specified, but streaming the "
2589 "entire chain");
2590 goto out;
2593 if (has_auto_finalize && !auto_finalize) {
2594 job_flags |= JOB_MANUAL_FINALIZE;
2596 if (has_auto_dismiss && !auto_dismiss) {
2597 job_flags |= JOB_MANUAL_DISMISS;
2600 stream_start(has_job_id ? job_id : NULL, bs, base_bs, backing_file,
2601 bottom_bs, job_flags, has_speed ? speed : 0, on_error,
2602 filter_node_name, &local_err);
2603 if (local_err) {
2604 error_propagate(errp, local_err);
2605 goto out;
2608 trace_qmp_block_stream(bs);
2610 out:
2611 aio_context_release(aio_context);
2614 void qmp_block_commit(bool has_job_id, const char *job_id, const char *device,
2615 bool has_base_node, const char *base_node,
2616 bool has_base, const char *base,
2617 bool has_top_node, const char *top_node,
2618 bool has_top, const char *top,
2619 bool has_backing_file, const char *backing_file,
2620 bool has_speed, int64_t speed,
2621 bool has_on_error, BlockdevOnError on_error,
2622 bool has_filter_node_name, const char *filter_node_name,
2623 bool has_auto_finalize, bool auto_finalize,
2624 bool has_auto_dismiss, bool auto_dismiss,
2625 Error **errp)
2627 BlockDriverState *bs;
2628 BlockDriverState *iter;
2629 BlockDriverState *base_bs, *top_bs;
2630 AioContext *aio_context;
2631 Error *local_err = NULL;
2632 int job_flags = JOB_DEFAULT;
2633 uint64_t top_perm, top_shared;
2635 if (!has_speed) {
2636 speed = 0;
2638 if (!has_on_error) {
2639 on_error = BLOCKDEV_ON_ERROR_REPORT;
2641 if (!has_filter_node_name) {
2642 filter_node_name = NULL;
2644 if (has_auto_finalize && !auto_finalize) {
2645 job_flags |= JOB_MANUAL_FINALIZE;
2647 if (has_auto_dismiss && !auto_dismiss) {
2648 job_flags |= JOB_MANUAL_DISMISS;
2651 /* Important Note:
2652 * libvirt relies on the DeviceNotFound error class in order to probe for
2653 * live commit feature versions; for this to work, we must make sure to
2654 * perform the device lookup before any generic errors that may occur in a
2655 * scenario in which all optional arguments are omitted. */
2656 bs = qmp_get_root_bs(device, &local_err);
2657 if (!bs) {
2658 bs = bdrv_lookup_bs(device, device, NULL);
2659 if (!bs) {
2660 error_free(local_err);
2661 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
2662 "Device '%s' not found", device);
2663 } else {
2664 error_propagate(errp, local_err);
2666 return;
2669 aio_context = bdrv_get_aio_context(bs);
2670 aio_context_acquire(aio_context);
2672 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_COMMIT_SOURCE, errp)) {
2673 goto out;
2676 /* default top_bs is the active layer */
2677 top_bs = bs;
2679 if (has_top_node && has_top) {
2680 error_setg(errp, "'top-node' and 'top' are mutually exclusive");
2681 goto out;
2682 } else if (has_top_node) {
2683 top_bs = bdrv_lookup_bs(NULL, top_node, errp);
2684 if (top_bs == NULL) {
2685 goto out;
2687 if (!bdrv_chain_contains(bs, top_bs)) {
2688 error_setg(errp, "'%s' is not in this backing file chain",
2689 top_node);
2690 goto out;
2692 } else if (has_top && top) {
2693 /* This strcmp() is just a shortcut, there is no need to
2694 * refresh @bs's filename. If it mismatches,
2695 * bdrv_find_backing_image() will do the refresh and may still
2696 * return @bs. */
2697 if (strcmp(bs->filename, top) != 0) {
2698 top_bs = bdrv_find_backing_image(bs, top);
2702 if (top_bs == NULL) {
2703 error_setg(errp, "Top image file %s not found", top ? top : "NULL");
2704 goto out;
2707 assert(bdrv_get_aio_context(top_bs) == aio_context);
2709 if (has_base_node && has_base) {
2710 error_setg(errp, "'base-node' and 'base' are mutually exclusive");
2711 goto out;
2712 } else if (has_base_node) {
2713 base_bs = bdrv_lookup_bs(NULL, base_node, errp);
2714 if (base_bs == NULL) {
2715 goto out;
2717 if (!bdrv_chain_contains(top_bs, base_bs)) {
2718 error_setg(errp, "'%s' is not in this backing file chain",
2719 base_node);
2720 goto out;
2722 } else if (has_base && base) {
2723 base_bs = bdrv_find_backing_image(top_bs, base);
2724 if (base_bs == NULL) {
2725 error_setg(errp, "Can't find '%s' in the backing chain", base);
2726 goto out;
2728 } else {
2729 base_bs = bdrv_find_base(top_bs);
2730 if (base_bs == NULL) {
2731 error_setg(errp, "There is no backimg image");
2732 goto out;
2736 assert(bdrv_get_aio_context(base_bs) == aio_context);
2738 for (iter = top_bs; iter != bdrv_filter_or_cow_bs(base_bs);
2739 iter = bdrv_filter_or_cow_bs(iter))
2741 if (bdrv_op_is_blocked(iter, BLOCK_OP_TYPE_COMMIT_TARGET, errp)) {
2742 goto out;
2746 /* Do not allow attempts to commit an image into itself */
2747 if (top_bs == base_bs) {
2748 error_setg(errp, "cannot commit an image into itself");
2749 goto out;
2753 * Active commit is required if and only if someone has taken a
2754 * WRITE permission on the top node. Historically, we have always
2755 * used active commit for top nodes, so continue that practice
2756 * lest we possibly break clients that rely on this behavior, e.g.
2757 * to later attach this node to a writing parent.
2758 * (Active commit is never really wrong.)
2760 bdrv_get_cumulative_perm(top_bs, &top_perm, &top_shared);
2761 if (top_perm & BLK_PERM_WRITE ||
2762 bdrv_skip_filters(top_bs) == bdrv_skip_filters(bs))
2764 if (has_backing_file) {
2765 if (bdrv_skip_filters(top_bs) == bdrv_skip_filters(bs)) {
2766 error_setg(errp, "'backing-file' specified,"
2767 " but 'top' is the active layer");
2768 } else {
2769 error_setg(errp, "'backing-file' specified, but 'top' has a "
2770 "writer on it");
2772 goto out;
2774 if (!has_job_id) {
2776 * Emulate here what block_job_create() does, because it
2777 * is possible that @bs != @top_bs (the block job should
2778 * be named after @bs, even if @top_bs is the actual
2779 * source)
2781 job_id = bdrv_get_device_name(bs);
2783 commit_active_start(job_id, top_bs, base_bs, job_flags, speed, on_error,
2784 filter_node_name, NULL, NULL, false, &local_err);
2785 } else {
2786 BlockDriverState *overlay_bs = bdrv_find_overlay(bs, top_bs);
2787 if (bdrv_op_is_blocked(overlay_bs, BLOCK_OP_TYPE_COMMIT_TARGET, errp)) {
2788 goto out;
2790 commit_start(has_job_id ? job_id : NULL, bs, base_bs, top_bs, job_flags,
2791 speed, on_error, has_backing_file ? backing_file : NULL,
2792 filter_node_name, &local_err);
2794 if (local_err != NULL) {
2795 error_propagate(errp, local_err);
2796 goto out;
2799 out:
2800 aio_context_release(aio_context);
2803 /* Common QMP interface for drive-backup and blockdev-backup */
2804 static BlockJob *do_backup_common(BackupCommon *backup,
2805 BlockDriverState *bs,
2806 BlockDriverState *target_bs,
2807 AioContext *aio_context,
2808 JobTxn *txn, Error **errp)
2810 BlockJob *job = NULL;
2811 BdrvDirtyBitmap *bmap = NULL;
2812 BackupPerf perf = { .max_workers = 64 };
2813 int job_flags = JOB_DEFAULT;
2815 if (!backup->has_speed) {
2816 backup->speed = 0;
2818 if (!backup->has_on_source_error) {
2819 backup->on_source_error = BLOCKDEV_ON_ERROR_REPORT;
2821 if (!backup->has_on_target_error) {
2822 backup->on_target_error = BLOCKDEV_ON_ERROR_REPORT;
2824 if (!backup->has_job_id) {
2825 backup->job_id = NULL;
2827 if (!backup->has_auto_finalize) {
2828 backup->auto_finalize = true;
2830 if (!backup->has_auto_dismiss) {
2831 backup->auto_dismiss = true;
2833 if (!backup->has_compress) {
2834 backup->compress = false;
2837 if (backup->x_perf) {
2838 if (backup->x_perf->has_use_copy_range) {
2839 perf.use_copy_range = backup->x_perf->use_copy_range;
2841 if (backup->x_perf->has_max_workers) {
2842 perf.max_workers = backup->x_perf->max_workers;
2844 if (backup->x_perf->has_max_chunk) {
2845 perf.max_chunk = backup->x_perf->max_chunk;
2849 if ((backup->sync == MIRROR_SYNC_MODE_BITMAP) ||
2850 (backup->sync == MIRROR_SYNC_MODE_INCREMENTAL)) {
2851 /* done before desugaring 'incremental' to print the right message */
2852 if (!backup->has_bitmap) {
2853 error_setg(errp, "must provide a valid bitmap name for "
2854 "'%s' sync mode", MirrorSyncMode_str(backup->sync));
2855 return NULL;
2859 if (backup->sync == MIRROR_SYNC_MODE_INCREMENTAL) {
2860 if (backup->has_bitmap_mode &&
2861 backup->bitmap_mode != BITMAP_SYNC_MODE_ON_SUCCESS) {
2862 error_setg(errp, "Bitmap sync mode must be '%s' "
2863 "when using sync mode '%s'",
2864 BitmapSyncMode_str(BITMAP_SYNC_MODE_ON_SUCCESS),
2865 MirrorSyncMode_str(backup->sync));
2866 return NULL;
2868 backup->has_bitmap_mode = true;
2869 backup->sync = MIRROR_SYNC_MODE_BITMAP;
2870 backup->bitmap_mode = BITMAP_SYNC_MODE_ON_SUCCESS;
2873 if (backup->has_bitmap) {
2874 bmap = bdrv_find_dirty_bitmap(bs, backup->bitmap);
2875 if (!bmap) {
2876 error_setg(errp, "Bitmap '%s' could not be found", backup->bitmap);
2877 return NULL;
2879 if (!backup->has_bitmap_mode) {
2880 error_setg(errp, "Bitmap sync mode must be given "
2881 "when providing a bitmap");
2882 return NULL;
2884 if (bdrv_dirty_bitmap_check(bmap, BDRV_BITMAP_ALLOW_RO, errp)) {
2885 return NULL;
2888 /* This does not produce a useful bitmap artifact: */
2889 if (backup->sync == MIRROR_SYNC_MODE_NONE) {
2890 error_setg(errp, "sync mode '%s' does not produce meaningful bitmap"
2891 " outputs", MirrorSyncMode_str(backup->sync));
2892 return NULL;
2895 /* If the bitmap isn't used for input or output, this is useless: */
2896 if (backup->bitmap_mode == BITMAP_SYNC_MODE_NEVER &&
2897 backup->sync != MIRROR_SYNC_MODE_BITMAP) {
2898 error_setg(errp, "Bitmap sync mode '%s' has no meaningful effect"
2899 " when combined with sync mode '%s'",
2900 BitmapSyncMode_str(backup->bitmap_mode),
2901 MirrorSyncMode_str(backup->sync));
2902 return NULL;
2906 if (!backup->has_bitmap && backup->has_bitmap_mode) {
2907 error_setg(errp, "Cannot specify bitmap sync mode without a bitmap");
2908 return NULL;
2911 if (!backup->auto_finalize) {
2912 job_flags |= JOB_MANUAL_FINALIZE;
2914 if (!backup->auto_dismiss) {
2915 job_flags |= JOB_MANUAL_DISMISS;
2918 job = backup_job_create(backup->job_id, bs, target_bs, backup->speed,
2919 backup->sync, bmap, backup->bitmap_mode,
2920 backup->compress,
2921 backup->filter_node_name,
2922 &perf,
2923 backup->on_source_error,
2924 backup->on_target_error,
2925 job_flags, NULL, NULL, txn, errp);
2926 return job;
2929 void qmp_drive_backup(DriveBackup *backup, Error **errp)
2931 TransactionAction action = {
2932 .type = TRANSACTION_ACTION_KIND_DRIVE_BACKUP,
2933 .u.drive_backup.data = backup,
2935 blockdev_do_action(&action, errp);
2938 BlockDeviceInfoList *qmp_query_named_block_nodes(bool has_flat,
2939 bool flat,
2940 Error **errp)
2942 bool return_flat = has_flat && flat;
2944 return bdrv_named_nodes_list(return_flat, errp);
2947 XDbgBlockGraph *qmp_x_debug_query_block_graph(Error **errp)
2949 return bdrv_get_xdbg_block_graph(errp);
2952 void qmp_blockdev_backup(BlockdevBackup *backup, Error **errp)
2954 TransactionAction action = {
2955 .type = TRANSACTION_ACTION_KIND_BLOCKDEV_BACKUP,
2956 .u.blockdev_backup.data = backup,
2958 blockdev_do_action(&action, errp);
2961 /* Parameter check and block job starting for drive mirroring.
2962 * Caller should hold @device and @target's aio context (must be the same).
2964 static void blockdev_mirror_common(const char *job_id, BlockDriverState *bs,
2965 BlockDriverState *target,
2966 bool has_replaces, const char *replaces,
2967 enum MirrorSyncMode sync,
2968 BlockMirrorBackingMode backing_mode,
2969 bool zero_target,
2970 bool has_speed, int64_t speed,
2971 bool has_granularity, uint32_t granularity,
2972 bool has_buf_size, int64_t buf_size,
2973 bool has_on_source_error,
2974 BlockdevOnError on_source_error,
2975 bool has_on_target_error,
2976 BlockdevOnError on_target_error,
2977 bool has_unmap, bool unmap,
2978 bool has_filter_node_name,
2979 const char *filter_node_name,
2980 bool has_copy_mode, MirrorCopyMode copy_mode,
2981 bool has_auto_finalize, bool auto_finalize,
2982 bool has_auto_dismiss, bool auto_dismiss,
2983 Error **errp)
2985 BlockDriverState *unfiltered_bs;
2986 int job_flags = JOB_DEFAULT;
2988 if (!has_speed) {
2989 speed = 0;
2991 if (!has_on_source_error) {
2992 on_source_error = BLOCKDEV_ON_ERROR_REPORT;
2994 if (!has_on_target_error) {
2995 on_target_error = BLOCKDEV_ON_ERROR_REPORT;
2997 if (!has_granularity) {
2998 granularity = 0;
3000 if (!has_buf_size) {
3001 buf_size = 0;
3003 if (!has_unmap) {
3004 unmap = true;
3006 if (!has_filter_node_name) {
3007 filter_node_name = NULL;
3009 if (!has_copy_mode) {
3010 copy_mode = MIRROR_COPY_MODE_BACKGROUND;
3012 if (has_auto_finalize && !auto_finalize) {
3013 job_flags |= JOB_MANUAL_FINALIZE;
3015 if (has_auto_dismiss && !auto_dismiss) {
3016 job_flags |= JOB_MANUAL_DISMISS;
3019 if (granularity != 0 && (granularity < 512 || granularity > 1048576 * 64)) {
3020 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "granularity",
3021 "a value in range [512B, 64MB]");
3022 return;
3024 if (granularity & (granularity - 1)) {
3025 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "granularity",
3026 "a power of 2");
3027 return;
3030 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_MIRROR_SOURCE, errp)) {
3031 return;
3033 if (bdrv_op_is_blocked(target, BLOCK_OP_TYPE_MIRROR_TARGET, errp)) {
3034 return;
3037 if (!bdrv_backing_chain_next(bs) && sync == MIRROR_SYNC_MODE_TOP) {
3038 sync = MIRROR_SYNC_MODE_FULL;
3041 if (!has_replaces) {
3042 /* We want to mirror from @bs, but keep implicit filters on top */
3043 unfiltered_bs = bdrv_skip_implicit_filters(bs);
3044 if (unfiltered_bs != bs) {
3045 replaces = unfiltered_bs->node_name;
3046 has_replaces = true;
3050 if (has_replaces) {
3051 BlockDriverState *to_replace_bs;
3052 AioContext *replace_aio_context;
3053 int64_t bs_size, replace_size;
3055 bs_size = bdrv_getlength(bs);
3056 if (bs_size < 0) {
3057 error_setg_errno(errp, -bs_size, "Failed to query device's size");
3058 return;
3061 to_replace_bs = check_to_replace_node(bs, replaces, errp);
3062 if (!to_replace_bs) {
3063 return;
3066 replace_aio_context = bdrv_get_aio_context(to_replace_bs);
3067 aio_context_acquire(replace_aio_context);
3068 replace_size = bdrv_getlength(to_replace_bs);
3069 aio_context_release(replace_aio_context);
3071 if (replace_size < 0) {
3072 error_setg_errno(errp, -replace_size,
3073 "Failed to query the replacement node's size");
3074 return;
3076 if (bs_size != replace_size) {
3077 error_setg(errp, "cannot replace image with a mirror image of "
3078 "different size");
3079 return;
3083 /* pass the node name to replace to mirror start since it's loose coupling
3084 * and will allow to check whether the node still exist at mirror completion
3086 mirror_start(job_id, bs, target,
3087 has_replaces ? replaces : NULL, job_flags,
3088 speed, granularity, buf_size, sync, backing_mode, zero_target,
3089 on_source_error, on_target_error, unmap, filter_node_name,
3090 copy_mode, errp);
3093 void qmp_drive_mirror(DriveMirror *arg, Error **errp)
3095 BlockDriverState *bs;
3096 BlockDriverState *target_backing_bs, *target_bs;
3097 AioContext *aio_context;
3098 AioContext *old_context;
3099 BlockMirrorBackingMode backing_mode;
3100 Error *local_err = NULL;
3101 QDict *options = NULL;
3102 int flags;
3103 int64_t size;
3104 const char *format = arg->format;
3105 bool zero_target;
3106 int ret;
3108 bs = qmp_get_root_bs(arg->device, errp);
3109 if (!bs) {
3110 return;
3113 /* Early check to avoid creating target */
3114 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_MIRROR_SOURCE, errp)) {
3115 return;
3118 aio_context = bdrv_get_aio_context(bs);
3119 aio_context_acquire(aio_context);
3121 if (!arg->has_mode) {
3122 arg->mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS;
3125 if (!arg->has_format) {
3126 format = (arg->mode == NEW_IMAGE_MODE_EXISTING
3127 ? NULL : bs->drv->format_name);
3130 flags = bs->open_flags | BDRV_O_RDWR;
3131 target_backing_bs = bdrv_cow_bs(bdrv_skip_filters(bs));
3132 if (!target_backing_bs && arg->sync == MIRROR_SYNC_MODE_TOP) {
3133 arg->sync = MIRROR_SYNC_MODE_FULL;
3135 if (arg->sync == MIRROR_SYNC_MODE_NONE) {
3136 target_backing_bs = bs;
3139 size = bdrv_getlength(bs);
3140 if (size < 0) {
3141 error_setg_errno(errp, -size, "bdrv_getlength failed");
3142 goto out;
3145 if (arg->has_replaces) {
3146 if (!arg->has_node_name) {
3147 error_setg(errp, "a node-name must be provided when replacing a"
3148 " named node of the graph");
3149 goto out;
3153 if (arg->mode == NEW_IMAGE_MODE_ABSOLUTE_PATHS) {
3154 backing_mode = MIRROR_SOURCE_BACKING_CHAIN;
3155 } else {
3156 backing_mode = MIRROR_OPEN_BACKING_CHAIN;
3159 /* Don't open backing image in create() */
3160 flags |= BDRV_O_NO_BACKING;
3162 if ((arg->sync == MIRROR_SYNC_MODE_FULL || !target_backing_bs)
3163 && arg->mode != NEW_IMAGE_MODE_EXISTING)
3165 /* create new image w/o backing file */
3166 assert(format);
3167 bdrv_img_create(arg->target, format,
3168 NULL, NULL, NULL, size, flags, false, &local_err);
3169 } else {
3170 /* Implicit filters should not appear in the filename */
3171 BlockDriverState *explicit_backing =
3172 bdrv_skip_implicit_filters(target_backing_bs);
3174 switch (arg->mode) {
3175 case NEW_IMAGE_MODE_EXISTING:
3176 break;
3177 case NEW_IMAGE_MODE_ABSOLUTE_PATHS:
3178 /* create new image with backing file */
3179 bdrv_refresh_filename(explicit_backing);
3180 bdrv_img_create(arg->target, format,
3181 explicit_backing->filename,
3182 explicit_backing->drv->format_name,
3183 NULL, size, flags, false, &local_err);
3184 break;
3185 default:
3186 abort();
3190 if (local_err) {
3191 error_propagate(errp, local_err);
3192 goto out;
3195 options = qdict_new();
3196 if (arg->has_node_name) {
3197 qdict_put_str(options, "node-name", arg->node_name);
3199 if (format) {
3200 qdict_put_str(options, "driver", format);
3203 /* Mirroring takes care of copy-on-write using the source's backing
3204 * file.
3206 target_bs = bdrv_open(arg->target, NULL, options, flags, errp);
3207 if (!target_bs) {
3208 goto out;
3211 zero_target = (arg->sync == MIRROR_SYNC_MODE_FULL &&
3212 (arg->mode == NEW_IMAGE_MODE_EXISTING ||
3213 !bdrv_has_zero_init(target_bs)));
3216 /* Honor bdrv_try_set_aio_context() context acquisition requirements. */
3217 old_context = bdrv_get_aio_context(target_bs);
3218 aio_context_release(aio_context);
3219 aio_context_acquire(old_context);
3221 ret = bdrv_try_set_aio_context(target_bs, aio_context, errp);
3222 if (ret < 0) {
3223 bdrv_unref(target_bs);
3224 aio_context_release(old_context);
3225 return;
3228 aio_context_release(old_context);
3229 aio_context_acquire(aio_context);
3231 blockdev_mirror_common(arg->has_job_id ? arg->job_id : NULL, bs, target_bs,
3232 arg->has_replaces, arg->replaces, arg->sync,
3233 backing_mode, zero_target,
3234 arg->has_speed, arg->speed,
3235 arg->has_granularity, arg->granularity,
3236 arg->has_buf_size, arg->buf_size,
3237 arg->has_on_source_error, arg->on_source_error,
3238 arg->has_on_target_error, arg->on_target_error,
3239 arg->has_unmap, arg->unmap,
3240 false, NULL,
3241 arg->has_copy_mode, arg->copy_mode,
3242 arg->has_auto_finalize, arg->auto_finalize,
3243 arg->has_auto_dismiss, arg->auto_dismiss,
3244 errp);
3245 bdrv_unref(target_bs);
3246 out:
3247 aio_context_release(aio_context);
3250 void qmp_blockdev_mirror(bool has_job_id, const char *job_id,
3251 const char *device, const char *target,
3252 bool has_replaces, const char *replaces,
3253 MirrorSyncMode sync,
3254 bool has_speed, int64_t speed,
3255 bool has_granularity, uint32_t granularity,
3256 bool has_buf_size, int64_t buf_size,
3257 bool has_on_source_error,
3258 BlockdevOnError on_source_error,
3259 bool has_on_target_error,
3260 BlockdevOnError on_target_error,
3261 bool has_filter_node_name,
3262 const char *filter_node_name,
3263 bool has_copy_mode, MirrorCopyMode copy_mode,
3264 bool has_auto_finalize, bool auto_finalize,
3265 bool has_auto_dismiss, bool auto_dismiss,
3266 Error **errp)
3268 BlockDriverState *bs;
3269 BlockDriverState *target_bs;
3270 AioContext *aio_context;
3271 AioContext *old_context;
3272 BlockMirrorBackingMode backing_mode = MIRROR_LEAVE_BACKING_CHAIN;
3273 bool zero_target;
3274 int ret;
3276 bs = qmp_get_root_bs(device, errp);
3277 if (!bs) {
3278 return;
3281 target_bs = bdrv_lookup_bs(target, target, errp);
3282 if (!target_bs) {
3283 return;
3286 zero_target = (sync == MIRROR_SYNC_MODE_FULL);
3288 /* Honor bdrv_try_set_aio_context() context acquisition requirements. */
3289 old_context = bdrv_get_aio_context(target_bs);
3290 aio_context = bdrv_get_aio_context(bs);
3291 aio_context_acquire(old_context);
3293 ret = bdrv_try_set_aio_context(target_bs, aio_context, errp);
3295 aio_context_release(old_context);
3296 aio_context_acquire(aio_context);
3298 if (ret < 0) {
3299 goto out;
3302 blockdev_mirror_common(has_job_id ? job_id : NULL, bs, target_bs,
3303 has_replaces, replaces, sync, backing_mode,
3304 zero_target, has_speed, speed,
3305 has_granularity, granularity,
3306 has_buf_size, buf_size,
3307 has_on_source_error, on_source_error,
3308 has_on_target_error, on_target_error,
3309 true, true,
3310 has_filter_node_name, filter_node_name,
3311 has_copy_mode, copy_mode,
3312 has_auto_finalize, auto_finalize,
3313 has_auto_dismiss, auto_dismiss,
3314 errp);
3315 out:
3316 aio_context_release(aio_context);
3320 * Get a block job using its ID and acquire its AioContext.
3321 * Called with job_mutex held.
3323 static BlockJob *find_block_job_locked(const char *id,
3324 AioContext **aio_context,
3325 Error **errp)
3327 BlockJob *job;
3329 assert(id != NULL);
3331 *aio_context = NULL;
3333 job = block_job_get_locked(id);
3335 if (!job) {
3336 error_set(errp, ERROR_CLASS_DEVICE_NOT_ACTIVE,
3337 "Block job '%s' not found", id);
3338 return NULL;
3341 *aio_context = block_job_get_aio_context(job);
3342 aio_context_acquire(*aio_context);
3344 return job;
3347 void qmp_block_job_set_speed(const char *device, int64_t speed, Error **errp)
3349 AioContext *aio_context;
3350 BlockJob *job;
3352 JOB_LOCK_GUARD();
3353 job = find_block_job_locked(device, &aio_context, errp);
3355 if (!job) {
3356 return;
3359 block_job_set_speed_locked(job, speed, errp);
3360 aio_context_release(aio_context);
3363 void qmp_block_job_cancel(const char *device,
3364 bool has_force, bool force, Error **errp)
3366 AioContext *aio_context;
3367 BlockJob *job;
3369 JOB_LOCK_GUARD();
3370 job = find_block_job_locked(device, &aio_context, errp);
3372 if (!job) {
3373 return;
3376 if (!has_force) {
3377 force = false;
3380 if (job_user_paused_locked(&job->job) && !force) {
3381 error_setg(errp, "The block job for device '%s' is currently paused",
3382 device);
3383 goto out;
3386 trace_qmp_block_job_cancel(job);
3387 job_user_cancel_locked(&job->job, force, errp);
3388 out:
3389 aio_context_release(aio_context);
3392 void qmp_block_job_pause(const char *device, Error **errp)
3394 AioContext *aio_context;
3395 BlockJob *job;
3397 JOB_LOCK_GUARD();
3398 job = find_block_job_locked(device, &aio_context, errp);
3400 if (!job) {
3401 return;
3404 trace_qmp_block_job_pause(job);
3405 job_user_pause_locked(&job->job, errp);
3406 aio_context_release(aio_context);
3409 void qmp_block_job_resume(const char *device, Error **errp)
3411 AioContext *aio_context;
3412 BlockJob *job;
3414 JOB_LOCK_GUARD();
3415 job = find_block_job_locked(device, &aio_context, errp);
3417 if (!job) {
3418 return;
3421 trace_qmp_block_job_resume(job);
3422 job_user_resume_locked(&job->job, errp);
3423 aio_context_release(aio_context);
3426 void qmp_block_job_complete(const char *device, Error **errp)
3428 AioContext *aio_context;
3429 BlockJob *job;
3431 JOB_LOCK_GUARD();
3432 job = find_block_job_locked(device, &aio_context, errp);
3434 if (!job) {
3435 return;
3438 trace_qmp_block_job_complete(job);
3439 job_complete_locked(&job->job, errp);
3440 aio_context_release(aio_context);
3443 void qmp_block_job_finalize(const char *id, Error **errp)
3445 AioContext *aio_context;
3446 BlockJob *job;
3448 JOB_LOCK_GUARD();
3449 job = find_block_job_locked(id, &aio_context, errp);
3451 if (!job) {
3452 return;
3455 trace_qmp_block_job_finalize(job);
3456 job_ref_locked(&job->job);
3457 job_finalize_locked(&job->job, errp);
3460 * Job's context might have changed via job_finalize (and job_txn_apply
3461 * automatically acquires the new one), so make sure we release the correct
3462 * one.
3464 aio_context = block_job_get_aio_context(job);
3465 job_unref_locked(&job->job);
3466 aio_context_release(aio_context);
3469 void qmp_block_job_dismiss(const char *id, Error **errp)
3471 AioContext *aio_context;
3472 BlockJob *bjob;
3473 Job *job;
3475 JOB_LOCK_GUARD();
3476 bjob = find_block_job_locked(id, &aio_context, errp);
3478 if (!bjob) {
3479 return;
3482 trace_qmp_block_job_dismiss(bjob);
3483 job = &bjob->job;
3484 job_dismiss_locked(&job, errp);
3485 aio_context_release(aio_context);
3488 void qmp_change_backing_file(const char *device,
3489 const char *image_node_name,
3490 const char *backing_file,
3491 Error **errp)
3493 BlockDriverState *bs = NULL;
3494 AioContext *aio_context;
3495 BlockDriverState *image_bs = NULL;
3496 Error *local_err = NULL;
3497 bool ro;
3498 int ret;
3500 bs = qmp_get_root_bs(device, errp);
3501 if (!bs) {
3502 return;
3505 aio_context = bdrv_get_aio_context(bs);
3506 aio_context_acquire(aio_context);
3508 image_bs = bdrv_lookup_bs(NULL, image_node_name, &local_err);
3509 if (local_err) {
3510 error_propagate(errp, local_err);
3511 goto out;
3514 if (!image_bs) {
3515 error_setg(errp, "image file not found");
3516 goto out;
3519 if (bdrv_find_base(image_bs) == image_bs) {
3520 error_setg(errp, "not allowing backing file change on an image "
3521 "without a backing file");
3522 goto out;
3525 /* even though we are not necessarily operating on bs, we need it to
3526 * determine if block ops are currently prohibited on the chain */
3527 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_CHANGE, errp)) {
3528 goto out;
3531 /* final sanity check */
3532 if (!bdrv_chain_contains(bs, image_bs)) {
3533 error_setg(errp, "'%s' and image file are not in the same chain",
3534 device);
3535 goto out;
3538 /* if not r/w, reopen to make r/w */
3539 ro = bdrv_is_read_only(image_bs);
3541 if (ro) {
3542 if (bdrv_reopen_set_read_only(image_bs, false, errp) != 0) {
3543 goto out;
3547 ret = bdrv_change_backing_file(image_bs, backing_file,
3548 image_bs->drv ? image_bs->drv->format_name : "",
3549 false);
3551 if (ret < 0) {
3552 error_setg_errno(errp, -ret, "Could not change backing file to '%s'",
3553 backing_file);
3554 /* don't exit here, so we can try to restore open flags if
3555 * appropriate */
3558 if (ro) {
3559 bdrv_reopen_set_read_only(image_bs, true, errp);
3562 out:
3563 aio_context_release(aio_context);
3566 void qmp_blockdev_add(BlockdevOptions *options, Error **errp)
3568 BlockDriverState *bs;
3569 QObject *obj;
3570 Visitor *v = qobject_output_visitor_new(&obj);
3571 QDict *qdict;
3573 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
3574 visit_complete(v, &obj);
3575 qdict = qobject_to(QDict, obj);
3577 qdict_flatten(qdict);
3579 if (!qdict_get_try_str(qdict, "node-name")) {
3580 error_setg(errp, "'node-name' must be specified for the root node");
3581 goto fail;
3584 bs = bds_tree_init(qdict, errp);
3585 if (!bs) {
3586 goto fail;
3589 bdrv_set_monitor_owned(bs);
3591 fail:
3592 visit_free(v);
3595 void qmp_blockdev_reopen(BlockdevOptionsList *reopen_list, Error **errp)
3597 BlockReopenQueue *queue = NULL;
3598 GSList *drained = NULL;
3599 GSList *p;
3601 /* Add each one of the BDS that we want to reopen to the queue */
3602 for (; reopen_list != NULL; reopen_list = reopen_list->next) {
3603 BlockdevOptions *options = reopen_list->value;
3604 BlockDriverState *bs;
3605 AioContext *ctx;
3606 QObject *obj;
3607 Visitor *v;
3608 QDict *qdict;
3610 /* Check for the selected node name */
3611 if (!options->has_node_name) {
3612 error_setg(errp, "node-name not specified");
3613 goto fail;
3616 bs = bdrv_find_node(options->node_name);
3617 if (!bs) {
3618 error_setg(errp, "Failed to find node with node-name='%s'",
3619 options->node_name);
3620 goto fail;
3623 /* Put all options in a QDict and flatten it */
3624 v = qobject_output_visitor_new(&obj);
3625 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
3626 visit_complete(v, &obj);
3627 visit_free(v);
3629 qdict = qobject_to(QDict, obj);
3631 qdict_flatten(qdict);
3633 ctx = bdrv_get_aio_context(bs);
3634 aio_context_acquire(ctx);
3636 bdrv_subtree_drained_begin(bs);
3637 queue = bdrv_reopen_queue(queue, bs, qdict, false);
3638 drained = g_slist_prepend(drained, bs);
3640 aio_context_release(ctx);
3643 /* Perform the reopen operation */
3644 bdrv_reopen_multiple(queue, errp);
3645 queue = NULL;
3647 fail:
3648 bdrv_reopen_queue_free(queue);
3649 for (p = drained; p; p = p->next) {
3650 BlockDriverState *bs = p->data;
3651 AioContext *ctx = bdrv_get_aio_context(bs);
3653 aio_context_acquire(ctx);
3654 bdrv_subtree_drained_end(bs);
3655 aio_context_release(ctx);
3657 g_slist_free(drained);
3660 void qmp_blockdev_del(const char *node_name, Error **errp)
3662 AioContext *aio_context;
3663 BlockDriverState *bs;
3665 GLOBAL_STATE_CODE();
3667 bs = bdrv_find_node(node_name);
3668 if (!bs) {
3669 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
3670 return;
3672 if (bdrv_has_blk(bs)) {
3673 error_setg(errp, "Node %s is in use", node_name);
3674 return;
3676 aio_context = bdrv_get_aio_context(bs);
3677 aio_context_acquire(aio_context);
3679 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_DRIVE_DEL, errp)) {
3680 goto out;
3683 if (!QTAILQ_IN_USE(bs, monitor_list)) {
3684 error_setg(errp, "Node %s is not owned by the monitor",
3685 bs->node_name);
3686 goto out;
3689 if (bs->refcnt > 1) {
3690 error_setg(errp, "Block device %s is in use",
3691 bdrv_get_device_or_node_name(bs));
3692 goto out;
3695 QTAILQ_REMOVE(&monitor_bdrv_states, bs, monitor_list);
3696 bdrv_unref(bs);
3698 out:
3699 aio_context_release(aio_context);
3702 static BdrvChild *bdrv_find_child(BlockDriverState *parent_bs,
3703 const char *child_name)
3705 BdrvChild *child;
3707 QLIST_FOREACH(child, &parent_bs->children, next) {
3708 if (strcmp(child->name, child_name) == 0) {
3709 return child;
3713 return NULL;
3716 void qmp_x_blockdev_change(const char *parent, bool has_child,
3717 const char *child, bool has_node,
3718 const char *node, Error **errp)
3720 BlockDriverState *parent_bs, *new_bs = NULL;
3721 BdrvChild *p_child;
3723 parent_bs = bdrv_lookup_bs(parent, parent, errp);
3724 if (!parent_bs) {
3725 return;
3728 if (has_child == has_node) {
3729 if (has_child) {
3730 error_setg(errp, "The parameters child and node are in conflict");
3731 } else {
3732 error_setg(errp, "Either child or node must be specified");
3734 return;
3737 if (has_child) {
3738 p_child = bdrv_find_child(parent_bs, child);
3739 if (!p_child) {
3740 error_setg(errp, "Node '%s' does not have child '%s'",
3741 parent, child);
3742 return;
3744 bdrv_del_child(parent_bs, p_child, errp);
3747 if (has_node) {
3748 new_bs = bdrv_find_node(node);
3749 if (!new_bs) {
3750 error_setg(errp, "Node '%s' not found", node);
3751 return;
3753 bdrv_add_child(parent_bs, new_bs, errp);
3757 BlockJobInfoList *qmp_query_block_jobs(Error **errp)
3759 BlockJobInfoList *head = NULL, **tail = &head;
3760 BlockJob *job;
3762 JOB_LOCK_GUARD();
3764 for (job = block_job_next_locked(NULL); job;
3765 job = block_job_next_locked(job)) {
3766 BlockJobInfo *value;
3767 AioContext *aio_context;
3769 if (block_job_is_internal(job)) {
3770 continue;
3772 aio_context = block_job_get_aio_context(job);
3773 aio_context_acquire(aio_context);
3774 value = block_job_query_locked(job, errp);
3775 aio_context_release(aio_context);
3776 if (!value) {
3777 qapi_free_BlockJobInfoList(head);
3778 return NULL;
3780 QAPI_LIST_APPEND(tail, value);
3783 return head;
3786 void qmp_x_blockdev_set_iothread(const char *node_name, StrOrNull *iothread,
3787 bool has_force, bool force, Error **errp)
3789 AioContext *old_context;
3790 AioContext *new_context;
3791 BlockDriverState *bs;
3793 bs = bdrv_find_node(node_name);
3794 if (!bs) {
3795 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
3796 return;
3799 /* Protects against accidents. */
3800 if (!(has_force && force) && bdrv_has_blk(bs)) {
3801 error_setg(errp, "Node %s is associated with a BlockBackend and could "
3802 "be in use (use force=true to override this check)",
3803 node_name);
3804 return;
3807 if (iothread->type == QTYPE_QSTRING) {
3808 IOThread *obj = iothread_by_id(iothread->u.s);
3809 if (!obj) {
3810 error_setg(errp, "Cannot find iothread %s", iothread->u.s);
3811 return;
3814 new_context = iothread_get_aio_context(obj);
3815 } else {
3816 new_context = qemu_get_aio_context();
3819 old_context = bdrv_get_aio_context(bs);
3820 aio_context_acquire(old_context);
3822 bdrv_try_set_aio_context(bs, new_context, errp);
3824 aio_context_release(old_context);
3827 QemuOptsList qemu_common_drive_opts = {
3828 .name = "drive",
3829 .head = QTAILQ_HEAD_INITIALIZER(qemu_common_drive_opts.head),
3830 .desc = {
3832 .name = "snapshot",
3833 .type = QEMU_OPT_BOOL,
3834 .help = "enable/disable snapshot mode",
3836 .name = "aio",
3837 .type = QEMU_OPT_STRING,
3838 .help = "host AIO implementation (threads, native, io_uring)",
3840 .name = BDRV_OPT_CACHE_WB,
3841 .type = QEMU_OPT_BOOL,
3842 .help = "Enable writeback mode",
3844 .name = "format",
3845 .type = QEMU_OPT_STRING,
3846 .help = "disk format (raw, qcow2, ...)",
3848 .name = "rerror",
3849 .type = QEMU_OPT_STRING,
3850 .help = "read error action",
3852 .name = "werror",
3853 .type = QEMU_OPT_STRING,
3854 .help = "write error action",
3856 .name = BDRV_OPT_READ_ONLY,
3857 .type = QEMU_OPT_BOOL,
3858 .help = "open drive file as read-only",
3861 THROTTLE_OPTS,
3864 .name = "throttling.group",
3865 .type = QEMU_OPT_STRING,
3866 .help = "name of the block throttling group",
3868 .name = "copy-on-read",
3869 .type = QEMU_OPT_BOOL,
3870 .help = "copy read data from backing file into image file",
3872 .name = "detect-zeroes",
3873 .type = QEMU_OPT_STRING,
3874 .help = "try to optimize zero writes (off, on, unmap)",
3876 .name = "stats-account-invalid",
3877 .type = QEMU_OPT_BOOL,
3878 .help = "whether to account for invalid I/O operations "
3879 "in the statistics",
3881 .name = "stats-account-failed",
3882 .type = QEMU_OPT_BOOL,
3883 .help = "whether to account for failed I/O operations "
3884 "in the statistics",
3886 { /* end of list */ }
3890 QemuOptsList qemu_drive_opts = {
3891 .name = "drive",
3892 .head = QTAILQ_HEAD_INITIALIZER(qemu_drive_opts.head),
3893 .desc = {
3895 * no elements => accept any params
3896 * validation will happen later
3898 { /* end of list */ }