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
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
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/arch_init.h"
60 #include "sysemu/qtest.h"
61 #include "sysemu/runstate.h"
62 #include "qemu/cutils.h"
63 #include "qemu/help_option.h"
64 #include "qemu/main-loop.h"
65 #include "qemu/throttle-options.h"
67 static QTAILQ_HEAD(, BlockDriverState
) monitor_bdrv_states
=
68 QTAILQ_HEAD_INITIALIZER(monitor_bdrv_states
);
70 static int do_open_tray(const char *blk_name
, const char *qdev_id
,
71 bool force
, Error
**errp
);
72 static void blockdev_remove_medium(bool has_device
, const char *device
,
73 bool has_id
, const char *id
, Error
**errp
);
74 static void blockdev_insert_medium(bool has_device
, const char *device
,
75 bool has_id
, const char *id
,
76 const char *node_name
, Error
**errp
);
78 static const char *const if_name
[IF_COUNT
] = {
82 [IF_FLOPPY
] = "floppy",
83 [IF_PFLASH
] = "pflash",
86 [IF_VIRTIO
] = "virtio",
90 static int if_max_devs
[IF_COUNT
] = {
92 * Do not change these numbers! They govern how drive option
93 * index maps to unit and bus. That mapping is ABI.
95 * All controllers used to implement if=T drives need to support
96 * if_max_devs[T] units, for any T with if_max_devs[T] != 0.
97 * Otherwise, some index values map to "impossible" bus, unit
100 * For instance, if you change [IF_SCSI] to 255, -drive
101 * if=scsi,index=12 no longer means bus=1,unit=5, but
102 * bus=0,unit=12. With an lsi53c895a controller (7 units max),
103 * the drive can't be set up. Regression.
110 * Boards may call this to offer board-by-board overrides
111 * of the default, global values.
113 void override_max_devs(BlockInterfaceType type
, int max_devs
)
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
);
151 for (job
= block_job_next(NULL
); job
; job
= block_job_next(job
)) {
152 if (block_job_has_bdrv(job
, blk_bs(blk
))) {
153 AioContext
*aio_context
= job
->job
.aio_context
;
154 aio_context_acquire(aio_context
);
156 job_cancel(&job
->job
, false);
158 aio_context_release(aio_context
);
165 void blockdev_auto_del(BlockBackend
*blk
)
167 DriveInfo
*dinfo
= blk_legacy_dinfo(blk
);
169 if (dinfo
&& dinfo
->auto_del
) {
170 monitor_remove_blk(blk
);
176 * Returns the current mapping of how many units per bus
177 * a particular interface can support.
179 * A positive integer indicates n units per bus.
180 * 0 implies the mapping has not been established.
181 * -1 indicates an invalid BlockInterfaceType was given.
183 int drive_get_max_devs(BlockInterfaceType type
)
185 if (type
>= IF_IDE
&& type
< IF_COUNT
) {
186 return if_max_devs
[type
];
192 static int drive_index_to_bus_id(BlockInterfaceType type
, int index
)
194 int max_devs
= if_max_devs
[type
];
195 return max_devs
? index
/ max_devs
: 0;
198 static int drive_index_to_unit_id(BlockInterfaceType type
, int index
)
200 int max_devs
= if_max_devs
[type
];
201 return max_devs
? index
% max_devs
: index
;
204 QemuOpts
*drive_def(const char *optstr
)
206 return qemu_opts_parse_noisily(qemu_find_opts("drive"), optstr
, false);
209 QemuOpts
*drive_add(BlockInterfaceType type
, int index
, const char *file
,
214 opts
= drive_def(optstr
);
218 if (type
!= IF_DEFAULT
) {
219 qemu_opt_set(opts
, "if", if_name
[type
], &error_abort
);
222 qemu_opt_set_number(opts
, "index", index
, &error_abort
);
225 qemu_opt_set(opts
, "file", file
, &error_abort
);
229 DriveInfo
*drive_get(BlockInterfaceType type
, int bus
, int unit
)
234 for (blk
= blk_next(NULL
); blk
; blk
= blk_next(blk
)) {
235 dinfo
= blk_legacy_dinfo(blk
);
236 if (dinfo
&& dinfo
->type
== type
237 && dinfo
->bus
== bus
&& dinfo
->unit
== unit
) {
245 void drive_check_orphaned(void)
250 bool orphans
= false;
252 for (blk
= blk_next(NULL
); blk
; blk
= blk_next(blk
)) {
253 dinfo
= blk_legacy_dinfo(blk
);
254 if (!blk_get_attached_dev(blk
) && !dinfo
->is_default
&&
255 dinfo
->type
!= IF_NONE
) {
257 qemu_opts_loc_restore(dinfo
->opts
);
258 error_report("machine type does not support"
259 " if=%s,bus=%d,unit=%d",
260 if_name
[dinfo
->type
], dinfo
->bus
, dinfo
->unit
);
271 DriveInfo
*drive_get_by_index(BlockInterfaceType type
, int index
)
273 return drive_get(type
,
274 drive_index_to_bus_id(type
, index
),
275 drive_index_to_unit_id(type
, index
));
278 int drive_get_max_bus(BlockInterfaceType type
)
285 for (blk
= blk_next(NULL
); blk
; blk
= blk_next(blk
)) {
286 dinfo
= blk_legacy_dinfo(blk
);
287 if (dinfo
&& dinfo
->type
== type
&& dinfo
->bus
> max_bus
) {
288 max_bus
= dinfo
->bus
;
294 /* Get a block device. This should only be used for single-drive devices
295 (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the
297 DriveInfo
*drive_get_next(BlockInterfaceType type
)
299 static int next_block_unit
[IF_COUNT
];
301 return drive_get(type
, 0, next_block_unit
[type
]++);
304 static void bdrv_format_print(void *opaque
, const char *name
)
306 qemu_printf(" %s", name
);
311 BlockDriverState
*bs
;
314 static int parse_block_error_action(const char *buf
, bool is_read
, Error
**errp
)
316 if (!strcmp(buf
, "ignore")) {
317 return BLOCKDEV_ON_ERROR_IGNORE
;
318 } else if (!is_read
&& !strcmp(buf
, "enospc")) {
319 return BLOCKDEV_ON_ERROR_ENOSPC
;
320 } else if (!strcmp(buf
, "stop")) {
321 return BLOCKDEV_ON_ERROR_STOP
;
322 } else if (!strcmp(buf
, "report")) {
323 return BLOCKDEV_ON_ERROR_REPORT
;
325 error_setg(errp
, "'%s' invalid %s error action",
326 buf
, is_read
? "read" : "write");
331 static bool parse_stats_intervals(BlockAcctStats
*stats
, QList
*intervals
,
334 const QListEntry
*entry
;
335 for (entry
= qlist_first(intervals
); entry
; entry
= qlist_next(entry
)) {
336 switch (qobject_type(entry
->value
)) {
338 case QTYPE_QSTRING
: {
339 unsigned long long length
;
340 const char *str
= qstring_get_str(qobject_to(QString
,
342 if (parse_uint_full(str
, &length
, 10) == 0 &&
343 length
> 0 && length
<= UINT_MAX
) {
344 block_acct_add_interval(stats
, (unsigned) length
);
346 error_setg(errp
, "Invalid interval length: %s", str
);
353 int64_t length
= qnum_get_int(qobject_to(QNum
, entry
->value
));
355 if (length
> 0 && length
<= UINT_MAX
) {
356 block_acct_add_interval(stats
, (unsigned) length
);
358 error_setg(errp
, "Invalid interval length: %" PRId64
, length
);
365 error_setg(errp
, "The specification of stats-intervals is invalid");
372 typedef enum { MEDIA_DISK
, MEDIA_CDROM
} DriveMediaType
;
374 /* All parameters but @opts are optional and may be set to NULL. */
375 static void extract_common_blockdev_options(QemuOpts
*opts
, int *bdrv_flags
,
376 const char **throttling_group
, ThrottleConfig
*throttle_cfg
,
377 BlockdevDetectZeroesOptions
*detect_zeroes
, Error
**errp
)
379 Error
*local_error
= NULL
;
383 if (qemu_opt_get_bool(opts
, "copy-on-read", false)) {
384 *bdrv_flags
|= BDRV_O_COPY_ON_READ
;
387 if ((aio
= qemu_opt_get(opts
, "aio")) != NULL
) {
388 if (bdrv_parse_aio(aio
, bdrv_flags
) < 0) {
389 error_setg(errp
, "invalid aio option");
395 /* disk I/O throttling */
396 if (throttling_group
) {
397 *throttling_group
= qemu_opt_get(opts
, "throttling.group");
401 throttle_config_init(throttle_cfg
);
402 throttle_cfg
->buckets
[THROTTLE_BPS_TOTAL
].avg
=
403 qemu_opt_get_number(opts
, "throttling.bps-total", 0);
404 throttle_cfg
->buckets
[THROTTLE_BPS_READ
].avg
=
405 qemu_opt_get_number(opts
, "throttling.bps-read", 0);
406 throttle_cfg
->buckets
[THROTTLE_BPS_WRITE
].avg
=
407 qemu_opt_get_number(opts
, "throttling.bps-write", 0);
408 throttle_cfg
->buckets
[THROTTLE_OPS_TOTAL
].avg
=
409 qemu_opt_get_number(opts
, "throttling.iops-total", 0);
410 throttle_cfg
->buckets
[THROTTLE_OPS_READ
].avg
=
411 qemu_opt_get_number(opts
, "throttling.iops-read", 0);
412 throttle_cfg
->buckets
[THROTTLE_OPS_WRITE
].avg
=
413 qemu_opt_get_number(opts
, "throttling.iops-write", 0);
415 throttle_cfg
->buckets
[THROTTLE_BPS_TOTAL
].max
=
416 qemu_opt_get_number(opts
, "throttling.bps-total-max", 0);
417 throttle_cfg
->buckets
[THROTTLE_BPS_READ
].max
=
418 qemu_opt_get_number(opts
, "throttling.bps-read-max", 0);
419 throttle_cfg
->buckets
[THROTTLE_BPS_WRITE
].max
=
420 qemu_opt_get_number(opts
, "throttling.bps-write-max", 0);
421 throttle_cfg
->buckets
[THROTTLE_OPS_TOTAL
].max
=
422 qemu_opt_get_number(opts
, "throttling.iops-total-max", 0);
423 throttle_cfg
->buckets
[THROTTLE_OPS_READ
].max
=
424 qemu_opt_get_number(opts
, "throttling.iops-read-max", 0);
425 throttle_cfg
->buckets
[THROTTLE_OPS_WRITE
].max
=
426 qemu_opt_get_number(opts
, "throttling.iops-write-max", 0);
428 throttle_cfg
->buckets
[THROTTLE_BPS_TOTAL
].burst_length
=
429 qemu_opt_get_number(opts
, "throttling.bps-total-max-length", 1);
430 throttle_cfg
->buckets
[THROTTLE_BPS_READ
].burst_length
=
431 qemu_opt_get_number(opts
, "throttling.bps-read-max-length", 1);
432 throttle_cfg
->buckets
[THROTTLE_BPS_WRITE
].burst_length
=
433 qemu_opt_get_number(opts
, "throttling.bps-write-max-length", 1);
434 throttle_cfg
->buckets
[THROTTLE_OPS_TOTAL
].burst_length
=
435 qemu_opt_get_number(opts
, "throttling.iops-total-max-length", 1);
436 throttle_cfg
->buckets
[THROTTLE_OPS_READ
].burst_length
=
437 qemu_opt_get_number(opts
, "throttling.iops-read-max-length", 1);
438 throttle_cfg
->buckets
[THROTTLE_OPS_WRITE
].burst_length
=
439 qemu_opt_get_number(opts
, "throttling.iops-write-max-length", 1);
441 throttle_cfg
->op_size
=
442 qemu_opt_get_number(opts
, "throttling.iops-size", 0);
444 if (!throttle_is_valid(throttle_cfg
, errp
)) {
451 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup
,
452 qemu_opt_get(opts
, "detect-zeroes"),
453 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
,
456 error_propagate(errp
, local_error
);
462 /* Takes the ownership of bs_opts */
463 static BlockBackend
*blockdev_init(const char *file
, QDict
*bs_opts
,
468 int on_read_error
, on_write_error
;
469 bool account_invalid
, account_failed
;
470 bool writethrough
, read_only
;
472 BlockDriverState
*bs
;
477 QDict
*interval_dict
= NULL
;
478 QList
*interval_list
= NULL
;
480 BlockdevDetectZeroesOptions detect_zeroes
=
481 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
;
482 const char *throttling_group
= NULL
;
484 /* Check common options by copying from bs_opts to opts, all other options
485 * stay in bs_opts for processing by bdrv_open(). */
486 id
= qdict_get_try_str(bs_opts
, "id");
487 opts
= qemu_opts_create(&qemu_common_drive_opts
, id
, 1, &error
);
489 error_propagate(errp
, error
);
493 qemu_opts_absorb_qdict(opts
, bs_opts
, &error
);
495 error_propagate(errp
, error
);
500 qdict_del(bs_opts
, "id");
503 /* extract parameters */
504 snapshot
= qemu_opt_get_bool(opts
, "snapshot", 0);
506 account_invalid
= qemu_opt_get_bool(opts
, "stats-account-invalid", true);
507 account_failed
= qemu_opt_get_bool(opts
, "stats-account-failed", true);
509 writethrough
= !qemu_opt_get_bool(opts
, BDRV_OPT_CACHE_WB
, true);
511 id
= qemu_opts_id(opts
);
513 qdict_extract_subqdict(bs_opts
, &interval_dict
, "stats-intervals.");
514 qdict_array_split(interval_dict
, &interval_list
);
516 if (qdict_size(interval_dict
) != 0) {
517 error_setg(errp
, "Invalid option stats-intervals.%s",
518 qdict_first(interval_dict
)->key
);
522 extract_common_blockdev_options(opts
, &bdrv_flags
, &throttling_group
, &cfg
,
523 &detect_zeroes
, &error
);
525 error_propagate(errp
, error
);
529 if ((buf
= qemu_opt_get(opts
, "format")) != NULL
) {
530 if (is_help_option(buf
)) {
531 qemu_printf("Supported formats:");
532 bdrv_iterate_format(bdrv_format_print
, NULL
, false);
533 qemu_printf("\nSupported formats (read-only):");
534 bdrv_iterate_format(bdrv_format_print
, NULL
, true);
539 if (qdict_haskey(bs_opts
, "driver")) {
540 error_setg(errp
, "Cannot specify both 'driver' and 'format'");
543 qdict_put_str(bs_opts
, "driver", buf
);
546 on_write_error
= BLOCKDEV_ON_ERROR_ENOSPC
;
547 if ((buf
= qemu_opt_get(opts
, "werror")) != NULL
) {
548 on_write_error
= parse_block_error_action(buf
, 0, &error
);
550 error_propagate(errp
, error
);
555 on_read_error
= BLOCKDEV_ON_ERROR_REPORT
;
556 if ((buf
= qemu_opt_get(opts
, "rerror")) != NULL
) {
557 on_read_error
= parse_block_error_action(buf
, 1, &error
);
559 error_propagate(errp
, error
);
565 bdrv_flags
|= BDRV_O_SNAPSHOT
;
568 read_only
= qemu_opt_get_bool(opts
, BDRV_OPT_READ_ONLY
, false);
571 if ((!file
|| !*file
) && !qdict_size(bs_opts
)) {
572 BlockBackendRootState
*blk_rs
;
574 blk
= blk_new(qemu_get_aio_context(), 0, BLK_PERM_ALL
);
575 blk_rs
= blk_get_root_state(blk
);
576 blk_rs
->open_flags
= bdrv_flags
;
577 blk_rs
->read_only
= read_only
;
578 blk_rs
->detect_zeroes
= detect_zeroes
;
580 qobject_unref(bs_opts
);
582 if (file
&& !*file
) {
586 /* bdrv_open() defaults to the values in bdrv_flags (for compatibility
587 * with other callers) rather than what we want as the real defaults.
588 * Apply the defaults here instead. */
589 qdict_set_default_str(bs_opts
, BDRV_OPT_CACHE_DIRECT
, "off");
590 qdict_set_default_str(bs_opts
, BDRV_OPT_CACHE_NO_FLUSH
, "off");
591 qdict_set_default_str(bs_opts
, BDRV_OPT_READ_ONLY
,
592 read_only
? "on" : "off");
593 qdict_set_default_str(bs_opts
, BDRV_OPT_AUTO_READ_ONLY
, "on");
594 assert((bdrv_flags
& BDRV_O_CACHE_MASK
) == 0);
596 if (runstate_check(RUN_STATE_INMIGRATE
)) {
597 bdrv_flags
|= BDRV_O_INACTIVE
;
600 blk
= blk_new_open(file
, NULL
, bs_opts
, bdrv_flags
, errp
);
606 bs
->detect_zeroes
= detect_zeroes
;
608 block_acct_setup(blk_get_stats(blk
), account_invalid
, account_failed
);
610 if (!parse_stats_intervals(blk_get_stats(blk
), interval_list
, errp
)) {
617 /* disk I/O throttling */
618 if (throttle_enabled(&cfg
)) {
619 if (!throttling_group
) {
620 throttling_group
= id
;
622 blk_io_limits_enable(blk
, throttling_group
);
623 blk_set_io_limits(blk
, &cfg
);
626 blk_set_enable_write_cache(blk
, !writethrough
);
627 blk_set_on_error(blk
, on_read_error
, on_write_error
);
629 if (!monitor_add_blk(blk
, id
, errp
)) {
637 qobject_unref(interval_dict
);
638 qobject_unref(interval_list
);
643 qobject_unref(interval_dict
);
644 qobject_unref(interval_list
);
646 qobject_unref(bs_opts
);
650 /* Takes the ownership of bs_opts */
651 static BlockDriverState
*bds_tree_init(QDict
*bs_opts
, Error
**errp
)
655 /* bdrv_open() defaults to the values in bdrv_flags (for compatibility
656 * with other callers) rather than what we want as the real defaults.
657 * Apply the defaults here instead. */
658 qdict_set_default_str(bs_opts
, BDRV_OPT_CACHE_DIRECT
, "off");
659 qdict_set_default_str(bs_opts
, BDRV_OPT_CACHE_NO_FLUSH
, "off");
660 qdict_set_default_str(bs_opts
, BDRV_OPT_READ_ONLY
, "off");
662 if (runstate_check(RUN_STATE_INMIGRATE
)) {
663 bdrv_flags
|= BDRV_O_INACTIVE
;
666 return bdrv_open(NULL
, NULL
, bs_opts
, bdrv_flags
, errp
);
669 void blockdev_close_all_bdrv_states(void)
671 BlockDriverState
*bs
, *next_bs
;
673 QTAILQ_FOREACH_SAFE(bs
, &monitor_bdrv_states
, monitor_list
, next_bs
) {
674 AioContext
*ctx
= bdrv_get_aio_context(bs
);
676 aio_context_acquire(ctx
);
678 aio_context_release(ctx
);
682 /* Iterates over the list of monitor-owned BlockDriverStates */
683 BlockDriverState
*bdrv_next_monitor_owned(BlockDriverState
*bs
)
685 return bs
? QTAILQ_NEXT(bs
, monitor_list
)
686 : QTAILQ_FIRST(&monitor_bdrv_states
);
689 static void qemu_opt_rename(QemuOpts
*opts
, const char *from
, const char *to
,
694 value
= qemu_opt_get(opts
, from
);
696 if (qemu_opt_find(opts
, to
)) {
697 error_setg(errp
, "'%s' and its alias '%s' can't be used at the "
698 "same time", to
, from
);
703 /* rename all items in opts */
704 while ((value
= qemu_opt_get(opts
, from
))) {
705 qemu_opt_set(opts
, to
, value
, &error_abort
);
706 qemu_opt_unset(opts
, from
);
710 QemuOptsList qemu_legacy_drive_opts
= {
712 .head
= QTAILQ_HEAD_INITIALIZER(qemu_legacy_drive_opts
.head
),
716 .type
= QEMU_OPT_NUMBER
,
717 .help
= "bus number",
720 .type
= QEMU_OPT_NUMBER
,
721 .help
= "unit number (i.e. lun for scsi)",
724 .type
= QEMU_OPT_NUMBER
,
725 .help
= "index number",
728 .type
= QEMU_OPT_STRING
,
729 .help
= "media type (disk, cdrom)",
732 .type
= QEMU_OPT_STRING
,
733 .help
= "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
736 .type
= QEMU_OPT_STRING
,
740 /* Options that are passed on, but have special semantics with -drive */
742 .name
= BDRV_OPT_READ_ONLY
,
743 .type
= QEMU_OPT_BOOL
,
744 .help
= "open drive file as read-only",
747 .type
= QEMU_OPT_STRING
,
748 .help
= "read error action",
751 .type
= QEMU_OPT_STRING
,
752 .help
= "write error action",
754 .name
= "copy-on-read",
755 .type
= QEMU_OPT_BOOL
,
756 .help
= "copy read data from backing file into image file",
759 { /* end of list */ }
763 DriveInfo
*drive_new(QemuOpts
*all_opts
, BlockInterfaceType block_default_type
,
768 DriveInfo
*dinfo
= NULL
;
770 QemuOpts
*legacy_opts
;
771 DriveMediaType media
= MEDIA_DISK
;
772 BlockInterfaceType type
;
773 int max_devs
, bus_id
, unit_id
, index
;
774 const char *werror
, *rerror
;
775 bool read_only
= false;
777 const char *filename
;
778 Error
*local_err
= NULL
;
781 /* Change legacy command line options into QMP ones */
782 static const struct {
786 { "iops", "throttling.iops-total" },
787 { "iops_rd", "throttling.iops-read" },
788 { "iops_wr", "throttling.iops-write" },
790 { "bps", "throttling.bps-total" },
791 { "bps_rd", "throttling.bps-read" },
792 { "bps_wr", "throttling.bps-write" },
794 { "iops_max", "throttling.iops-total-max" },
795 { "iops_rd_max", "throttling.iops-read-max" },
796 { "iops_wr_max", "throttling.iops-write-max" },
798 { "bps_max", "throttling.bps-total-max" },
799 { "bps_rd_max", "throttling.bps-read-max" },
800 { "bps_wr_max", "throttling.bps-write-max" },
802 { "iops_size", "throttling.iops-size" },
804 { "group", "throttling.group" },
806 { "readonly", BDRV_OPT_READ_ONLY
},
809 for (i
= 0; i
< ARRAY_SIZE(opt_renames
); i
++) {
810 qemu_opt_rename(all_opts
, opt_renames
[i
].from
, opt_renames
[i
].to
,
813 error_propagate(errp
, local_err
);
818 value
= qemu_opt_get(all_opts
, "cache");
823 if (bdrv_parse_cache_mode(value
, &flags
, &writethrough
) != 0) {
824 error_setg(errp
, "invalid cache option");
828 /* Specific options take precedence */
829 if (!qemu_opt_get(all_opts
, BDRV_OPT_CACHE_WB
)) {
830 qemu_opt_set_bool(all_opts
, BDRV_OPT_CACHE_WB
,
831 !writethrough
, &error_abort
);
833 if (!qemu_opt_get(all_opts
, BDRV_OPT_CACHE_DIRECT
)) {
834 qemu_opt_set_bool(all_opts
, BDRV_OPT_CACHE_DIRECT
,
835 !!(flags
& BDRV_O_NOCACHE
), &error_abort
);
837 if (!qemu_opt_get(all_opts
, BDRV_OPT_CACHE_NO_FLUSH
)) {
838 qemu_opt_set_bool(all_opts
, BDRV_OPT_CACHE_NO_FLUSH
,
839 !!(flags
& BDRV_O_NO_FLUSH
), &error_abort
);
841 qemu_opt_unset(all_opts
, "cache");
844 /* Get a QDict for processing the options */
845 bs_opts
= qdict_new();
846 qemu_opts_to_qdict(all_opts
, bs_opts
);
848 legacy_opts
= qemu_opts_create(&qemu_legacy_drive_opts
, NULL
, 0,
850 qemu_opts_absorb_qdict(legacy_opts
, bs_opts
, &local_err
);
852 error_propagate(errp
, local_err
);
857 value
= qemu_opt_get(legacy_opts
, "media");
859 if (!strcmp(value
, "disk")) {
861 } else if (!strcmp(value
, "cdrom")) {
865 error_setg(errp
, "'%s' invalid media", value
);
870 /* copy-on-read is disabled with a warning for read-only devices */
871 read_only
|= qemu_opt_get_bool(legacy_opts
, BDRV_OPT_READ_ONLY
, false);
872 copy_on_read
= qemu_opt_get_bool(legacy_opts
, "copy-on-read", false);
874 if (read_only
&& copy_on_read
) {
875 warn_report("disabling copy-on-read on read-only drive");
876 copy_on_read
= false;
879 qdict_put_str(bs_opts
, BDRV_OPT_READ_ONLY
, read_only
? "on" : "off");
880 qdict_put_str(bs_opts
, "copy-on-read", copy_on_read
? "on" : "off");
882 /* Controller type */
883 value
= qemu_opt_get(legacy_opts
, "if");
886 type
< IF_COUNT
&& strcmp(value
, if_name
[type
]);
889 if (type
== IF_COUNT
) {
890 error_setg(errp
, "unsupported bus type '%s'", value
);
894 type
= block_default_type
;
897 /* Device address specified by bus/unit or index.
898 * If none was specified, try to find the first free one. */
899 bus_id
= qemu_opt_get_number(legacy_opts
, "bus", 0);
900 unit_id
= qemu_opt_get_number(legacy_opts
, "unit", -1);
901 index
= qemu_opt_get_number(legacy_opts
, "index", -1);
903 max_devs
= if_max_devs
[type
];
906 if (bus_id
!= 0 || unit_id
!= -1) {
907 error_setg(errp
, "index cannot be used with bus and unit");
910 bus_id
= drive_index_to_bus_id(type
, index
);
911 unit_id
= drive_index_to_unit_id(type
, index
);
916 while (drive_get(type
, bus_id
, unit_id
) != NULL
) {
918 if (max_devs
&& unit_id
>= max_devs
) {
925 if (max_devs
&& unit_id
>= max_devs
) {
926 error_setg(errp
, "unit %d too big (max is %d)", unit_id
, max_devs
- 1);
930 if (drive_get(type
, bus_id
, unit_id
) != NULL
) {
931 error_setg(errp
, "drive with bus=%d, unit=%d (index=%d) exists",
932 bus_id
, unit_id
, index
);
936 /* no id supplied -> create one */
937 if (qemu_opts_id(all_opts
) == NULL
) {
939 const char *mediastr
= "";
940 if (type
== IF_IDE
|| type
== IF_SCSI
) {
941 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
944 new_id
= g_strdup_printf("%s%i%s%i", if_name
[type
], bus_id
,
947 new_id
= g_strdup_printf("%s%s%i", if_name
[type
],
950 qdict_put_str(bs_opts
, "id", new_id
);
954 /* Add virtio block device */
955 if (type
== IF_VIRTIO
) {
957 devopts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
959 if (arch_type
== QEMU_ARCH_S390X
) {
960 qemu_opt_set(devopts
, "driver", "virtio-blk-ccw", &error_abort
);
962 qemu_opt_set(devopts
, "driver", "virtio-blk-pci", &error_abort
);
964 qemu_opt_set(devopts
, "drive", qdict_get_str(bs_opts
, "id"),
968 filename
= qemu_opt_get(legacy_opts
, "file");
970 /* Check werror/rerror compatibility with if=... */
971 werror
= qemu_opt_get(legacy_opts
, "werror");
972 if (werror
!= NULL
) {
973 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
&&
975 error_setg(errp
, "werror is not supported by this bus type");
978 qdict_put_str(bs_opts
, "werror", werror
);
981 rerror
= qemu_opt_get(legacy_opts
, "rerror");
982 if (rerror
!= NULL
) {
983 if (type
!= IF_IDE
&& type
!= IF_VIRTIO
&& type
!= IF_SCSI
&&
985 error_setg(errp
, "rerror is not supported by this bus type");
988 qdict_put_str(bs_opts
, "rerror", rerror
);
991 /* Actual block device init: Functionality shared with blockdev-add */
992 blk
= blockdev_init(filename
, bs_opts
, &local_err
);
995 error_propagate(errp
, local_err
);
1001 /* Create legacy DriveInfo */
1002 dinfo
= g_malloc0(sizeof(*dinfo
));
1003 dinfo
->opts
= all_opts
;
1006 dinfo
->bus
= bus_id
;
1007 dinfo
->unit
= unit_id
;
1009 blk_set_legacy_dinfo(blk
, dinfo
);
1016 dinfo
->media_cd
= media
== MEDIA_CDROM
;
1023 qemu_opts_del(legacy_opts
);
1024 qobject_unref(bs_opts
);
1028 static BlockDriverState
*qmp_get_root_bs(const char *name
, Error
**errp
)
1030 BlockDriverState
*bs
;
1032 bs
= bdrv_lookup_bs(name
, name
, errp
);
1037 if (!bdrv_is_root_node(bs
)) {
1038 error_setg(errp
, "Need a root block node");
1042 if (!bdrv_is_inserted(bs
)) {
1043 error_setg(errp
, "Device has no medium");
1050 static BlockBackend
*qmp_get_blk(const char *blk_name
, const char *qdev_id
,
1055 if (!blk_name
== !qdev_id
) {
1056 error_setg(errp
, "Need exactly one of 'device' and 'id'");
1061 blk
= blk_by_qdev_id(qdev_id
, errp
);
1063 blk
= blk_by_name(blk_name
);
1065 error_set(errp
, ERROR_CLASS_DEVICE_NOT_FOUND
,
1066 "Device '%s' not found", blk_name
);
1073 void hmp_commit(Monitor
*mon
, const QDict
*qdict
)
1075 const char *device
= qdict_get_str(qdict
, "device");
1079 if (!strcmp(device
, "all")) {
1080 ret
= blk_commit_all();
1082 BlockDriverState
*bs
;
1083 AioContext
*aio_context
;
1085 blk
= blk_by_name(device
);
1087 error_report("Device '%s' not found", device
);
1090 if (!blk_is_available(blk
)) {
1091 error_report("Device '%s' has no medium", device
);
1096 aio_context
= bdrv_get_aio_context(bs
);
1097 aio_context_acquire(aio_context
);
1099 ret
= bdrv_commit(bs
);
1101 aio_context_release(aio_context
);
1104 error_report("'commit' error for '%s': %s", device
, strerror(-ret
));
1108 static void blockdev_do_action(TransactionAction
*action
, Error
**errp
)
1110 TransactionActionList list
;
1112 list
.value
= action
;
1114 qmp_transaction(&list
, false, NULL
, errp
);
1117 void qmp_blockdev_snapshot_sync(bool has_device
, const char *device
,
1118 bool has_node_name
, const char *node_name
,
1119 const char *snapshot_file
,
1120 bool has_snapshot_node_name
,
1121 const char *snapshot_node_name
,
1122 bool has_format
, const char *format
,
1123 bool has_mode
, NewImageMode mode
, Error
**errp
)
1125 BlockdevSnapshotSync snapshot
= {
1126 .has_device
= has_device
,
1127 .device
= (char *) device
,
1128 .has_node_name
= has_node_name
,
1129 .node_name
= (char *) node_name
,
1130 .snapshot_file
= (char *) snapshot_file
,
1131 .has_snapshot_node_name
= has_snapshot_node_name
,
1132 .snapshot_node_name
= (char *) snapshot_node_name
,
1133 .has_format
= has_format
,
1134 .format
= (char *) format
,
1135 .has_mode
= has_mode
,
1138 TransactionAction action
= {
1139 .type
= TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
,
1140 .u
.blockdev_snapshot_sync
.data
= &snapshot
,
1142 blockdev_do_action(&action
, errp
);
1145 void qmp_blockdev_snapshot(const char *node
, const char *overlay
,
1148 BlockdevSnapshot snapshot_data
= {
1149 .node
= (char *) node
,
1150 .overlay
= (char *) overlay
1152 TransactionAction action
= {
1153 .type
= TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT
,
1154 .u
.blockdev_snapshot
.data
= &snapshot_data
,
1156 blockdev_do_action(&action
, errp
);
1159 void qmp_blockdev_snapshot_internal_sync(const char *device
,
1163 BlockdevSnapshotInternal snapshot
= {
1164 .device
= (char *) device
,
1165 .name
= (char *) name
1167 TransactionAction action
= {
1168 .type
= TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC
,
1169 .u
.blockdev_snapshot_internal_sync
.data
= &snapshot
,
1171 blockdev_do_action(&action
, errp
);
1174 SnapshotInfo
*qmp_blockdev_snapshot_delete_internal_sync(const char *device
,
1181 BlockDriverState
*bs
;
1182 AioContext
*aio_context
;
1183 QEMUSnapshotInfo sn
;
1184 Error
*local_err
= NULL
;
1185 SnapshotInfo
*info
= NULL
;
1188 bs
= qmp_get_root_bs(device
, errp
);
1192 aio_context
= bdrv_get_aio_context(bs
);
1193 aio_context_acquire(aio_context
);
1204 error_setg(errp
, "Name or id must be provided");
1205 goto out_aio_context
;
1208 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT_DELETE
, errp
)) {
1209 goto out_aio_context
;
1212 ret
= bdrv_snapshot_find_by_id_and_name(bs
, id
, name
, &sn
, &local_err
);
1214 error_propagate(errp
, local_err
);
1215 goto out_aio_context
;
1219 "Snapshot with id '%s' and name '%s' does not exist on "
1221 STR_OR_NULL(id
), STR_OR_NULL(name
), device
);
1222 goto out_aio_context
;
1225 bdrv_snapshot_delete(bs
, id
, name
, &local_err
);
1227 error_propagate(errp
, local_err
);
1228 goto out_aio_context
;
1231 aio_context_release(aio_context
);
1233 info
= g_new0(SnapshotInfo
, 1);
1234 info
->id
= g_strdup(sn
.id_str
);
1235 info
->name
= g_strdup(sn
.name
);
1236 info
->date_nsec
= sn
.date_nsec
;
1237 info
->date_sec
= sn
.date_sec
;
1238 info
->vm_state_size
= sn
.vm_state_size
;
1239 info
->vm_clock_nsec
= sn
.vm_clock_nsec
% 1000000000;
1240 info
->vm_clock_sec
= sn
.vm_clock_nsec
/ 1000000000;
1245 aio_context_release(aio_context
);
1250 * block_dirty_bitmap_lookup:
1251 * Return a dirty bitmap (if present), after validating
1252 * the node reference and bitmap names.
1254 * @node: The name of the BDS node to search for bitmaps
1255 * @name: The name of the bitmap to search for
1256 * @pbs: Output pointer for BDS lookup, if desired. Can be NULL.
1257 * @errp: Output pointer for error information. Can be NULL.
1259 * @return: A bitmap object on success, or NULL on failure.
1261 static BdrvDirtyBitmap
*block_dirty_bitmap_lookup(const char *node
,
1263 BlockDriverState
**pbs
,
1266 BlockDriverState
*bs
;
1267 BdrvDirtyBitmap
*bitmap
;
1270 error_setg(errp
, "Node cannot be NULL");
1274 error_setg(errp
, "Bitmap name cannot be NULL");
1277 bs
= bdrv_lookup_bs(node
, node
, NULL
);
1279 error_setg(errp
, "Node '%s' not found", node
);
1283 bitmap
= bdrv_find_dirty_bitmap(bs
, name
);
1285 error_setg(errp
, "Dirty bitmap '%s' not found", name
);
1296 /* New and old BlockDriverState structs for atomic group operations */
1298 typedef struct BlkActionState BlkActionState
;
1302 * Table of operations that define an Action.
1304 * @instance_size: Size of state struct, in bytes.
1305 * @prepare: Prepare the work, must NOT be NULL.
1306 * @commit: Commit the changes, can be NULL.
1307 * @abort: Abort the changes on fail, can be NULL.
1308 * @clean: Clean up resources after all transaction actions have called
1309 * commit() or abort(). Can be NULL.
1311 * Only prepare() may fail. In a single transaction, only one of commit() or
1312 * abort() will be called. clean() will always be called if it is present.
1314 typedef struct BlkActionOps
{
1315 size_t instance_size
;
1316 void (*prepare
)(BlkActionState
*common
, Error
**errp
);
1317 void (*commit
)(BlkActionState
*common
);
1318 void (*abort
)(BlkActionState
*common
);
1319 void (*clean
)(BlkActionState
*common
);
1324 * Describes one Action's state within a Transaction.
1326 * @action: QAPI-defined enum identifying which Action to perform.
1327 * @ops: Table of ActionOps this Action can perform.
1328 * @block_job_txn: Transaction which this action belongs to.
1329 * @entry: List membership for all Actions in this Transaction.
1331 * This structure must be arranged as first member in a subclassed type,
1332 * assuming that the compiler will also arrange it to the same offsets as the
1335 struct BlkActionState
{
1336 TransactionAction
*action
;
1337 const BlkActionOps
*ops
;
1338 JobTxn
*block_job_txn
;
1339 TransactionProperties
*txn_props
;
1340 QTAILQ_ENTRY(BlkActionState
) entry
;
1343 /* internal snapshot private data */
1344 typedef struct InternalSnapshotState
{
1345 BlkActionState common
;
1346 BlockDriverState
*bs
;
1347 QEMUSnapshotInfo sn
;
1349 } InternalSnapshotState
;
1352 static int action_check_completion_mode(BlkActionState
*s
, Error
**errp
)
1354 if (s
->txn_props
->completion_mode
!= ACTION_COMPLETION_MODE_INDIVIDUAL
) {
1356 "Action '%s' does not support Transaction property "
1357 "completion-mode = %s",
1358 TransactionActionKind_str(s
->action
->type
),
1359 ActionCompletionMode_str(s
->txn_props
->completion_mode
));
1365 static void internal_snapshot_prepare(BlkActionState
*common
,
1368 Error
*local_err
= NULL
;
1371 BlockDriverState
*bs
;
1372 QEMUSnapshotInfo old_sn
, *sn
;
1375 BlockdevSnapshotInternal
*internal
;
1376 InternalSnapshotState
*state
;
1377 AioContext
*aio_context
;
1380 g_assert(common
->action
->type
==
1381 TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC
);
1382 internal
= common
->action
->u
.blockdev_snapshot_internal_sync
.data
;
1383 state
= DO_UPCAST(InternalSnapshotState
, common
, common
);
1385 /* 1. parse input */
1386 device
= internal
->device
;
1387 name
= internal
->name
;
1389 /* 2. check for validation */
1390 if (action_check_completion_mode(common
, errp
) < 0) {
1394 bs
= qmp_get_root_bs(device
, errp
);
1399 aio_context
= bdrv_get_aio_context(bs
);
1400 aio_context_acquire(aio_context
);
1404 /* Paired with .clean() */
1405 bdrv_drained_begin(bs
);
1407 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT
, errp
)) {
1411 if (bdrv_is_read_only(bs
)) {
1412 error_setg(errp
, "Device '%s' is read only", device
);
1416 if (!bdrv_can_snapshot(bs
)) {
1417 error_setg(errp
, "Block format '%s' used by device '%s' "
1418 "does not support internal snapshots",
1419 bs
->drv
->format_name
, device
);
1423 if (!strlen(name
)) {
1424 error_setg(errp
, "Name is empty");
1428 /* check whether a snapshot with name exist */
1429 ret
= bdrv_snapshot_find_by_id_and_name(bs
, NULL
, name
, &old_sn
,
1432 error_propagate(errp
, local_err
);
1436 "Snapshot with name '%s' already exists on device '%s'",
1441 /* 3. take the snapshot */
1443 pstrcpy(sn
->name
, sizeof(sn
->name
), name
);
1444 qemu_gettimeofday(&tv
);
1445 sn
->date_sec
= tv
.tv_sec
;
1446 sn
->date_nsec
= tv
.tv_usec
* 1000;
1447 sn
->vm_clock_nsec
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
1449 ret1
= bdrv_snapshot_create(bs
, sn
);
1451 error_setg_errno(errp
, -ret1
,
1452 "Failed to create snapshot '%s' on device '%s'",
1457 /* 4. succeed, mark a snapshot is created */
1458 state
->created
= true;
1461 aio_context_release(aio_context
);
1464 static void internal_snapshot_abort(BlkActionState
*common
)
1466 InternalSnapshotState
*state
=
1467 DO_UPCAST(InternalSnapshotState
, common
, common
);
1468 BlockDriverState
*bs
= state
->bs
;
1469 QEMUSnapshotInfo
*sn
= &state
->sn
;
1470 AioContext
*aio_context
;
1471 Error
*local_error
= NULL
;
1473 if (!state
->created
) {
1477 aio_context
= bdrv_get_aio_context(state
->bs
);
1478 aio_context_acquire(aio_context
);
1480 if (bdrv_snapshot_delete(bs
, sn
->id_str
, sn
->name
, &local_error
) < 0) {
1481 error_reportf_err(local_error
,
1482 "Failed to delete snapshot with id '%s' and "
1483 "name '%s' on device '%s' in abort: ",
1484 sn
->id_str
, sn
->name
,
1485 bdrv_get_device_name(bs
));
1488 aio_context_release(aio_context
);
1491 static void internal_snapshot_clean(BlkActionState
*common
)
1493 InternalSnapshotState
*state
= DO_UPCAST(InternalSnapshotState
,
1495 AioContext
*aio_context
;
1501 aio_context
= bdrv_get_aio_context(state
->bs
);
1502 aio_context_acquire(aio_context
);
1504 bdrv_drained_end(state
->bs
);
1506 aio_context_release(aio_context
);
1509 /* external snapshot private data */
1510 typedef struct ExternalSnapshotState
{
1511 BlkActionState common
;
1512 BlockDriverState
*old_bs
;
1513 BlockDriverState
*new_bs
;
1514 bool overlay_appended
;
1515 } ExternalSnapshotState
;
1517 static void external_snapshot_prepare(BlkActionState
*common
,
1521 QDict
*options
= NULL
;
1522 Error
*local_err
= NULL
;
1523 /* Device and node name of the image to generate the snapshot from */
1525 const char *node_name
;
1526 /* Reference to the new image (for 'blockdev-snapshot') */
1527 const char *snapshot_ref
;
1528 /* File name of the new image (for 'blockdev-snapshot-sync') */
1529 const char *new_image_file
;
1530 ExternalSnapshotState
*state
=
1531 DO_UPCAST(ExternalSnapshotState
, common
, common
);
1532 TransactionAction
*action
= common
->action
;
1533 AioContext
*aio_context
;
1534 AioContext
*old_context
;
1537 /* 'blockdev-snapshot' and 'blockdev-snapshot-sync' have similar
1538 * purpose but a different set of parameters */
1539 switch (action
->type
) {
1540 case TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT
:
1542 BlockdevSnapshot
*s
= action
->u
.blockdev_snapshot
.data
;
1544 node_name
= s
->node
;
1545 new_image_file
= NULL
;
1546 snapshot_ref
= s
->overlay
;
1549 case TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
:
1551 BlockdevSnapshotSync
*s
= action
->u
.blockdev_snapshot_sync
.data
;
1552 device
= s
->has_device
? s
->device
: NULL
;
1553 node_name
= s
->has_node_name
? s
->node_name
: NULL
;
1554 new_image_file
= s
->snapshot_file
;
1555 snapshot_ref
= NULL
;
1559 g_assert_not_reached();
1562 /* start processing */
1563 if (action_check_completion_mode(common
, errp
) < 0) {
1567 state
->old_bs
= bdrv_lookup_bs(device
, node_name
, errp
);
1568 if (!state
->old_bs
) {
1572 aio_context
= bdrv_get_aio_context(state
->old_bs
);
1573 aio_context_acquire(aio_context
);
1575 /* Paired with .clean() */
1576 bdrv_drained_begin(state
->old_bs
);
1578 if (!bdrv_is_inserted(state
->old_bs
)) {
1579 error_setg(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1583 if (bdrv_op_is_blocked(state
->old_bs
,
1584 BLOCK_OP_TYPE_EXTERNAL_SNAPSHOT
, errp
)) {
1588 if (!bdrv_is_read_only(state
->old_bs
)) {
1589 if (bdrv_flush(state
->old_bs
)) {
1590 error_setg(errp
, QERR_IO_ERROR
);
1595 if (!bdrv_is_first_non_filter(state
->old_bs
)) {
1596 error_setg(errp
, QERR_FEATURE_DISABLED
, "snapshot");
1600 if (action
->type
== TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
) {
1601 BlockdevSnapshotSync
*s
= action
->u
.blockdev_snapshot_sync
.data
;
1602 const char *format
= s
->has_format
? s
->format
: "qcow2";
1603 enum NewImageMode mode
;
1604 const char *snapshot_node_name
=
1605 s
->has_snapshot_node_name
? s
->snapshot_node_name
: NULL
;
1607 if (node_name
&& !snapshot_node_name
) {
1608 error_setg(errp
, "New overlay node name missing");
1612 if (snapshot_node_name
&&
1613 bdrv_lookup_bs(snapshot_node_name
, snapshot_node_name
, NULL
)) {
1614 error_setg(errp
, "New overlay node name already in use");
1618 flags
= state
->old_bs
->open_flags
;
1619 flags
&= ~(BDRV_O_SNAPSHOT
| BDRV_O_COPY_ON_READ
);
1620 flags
|= BDRV_O_NO_BACKING
;
1622 /* create new image w/backing file */
1623 mode
= s
->has_mode
? s
->mode
: NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1624 if (mode
!= NEW_IMAGE_MODE_EXISTING
) {
1625 int64_t size
= bdrv_getlength(state
->old_bs
);
1627 error_setg_errno(errp
, -size
, "bdrv_getlength failed");
1630 bdrv_refresh_filename(state
->old_bs
);
1631 bdrv_img_create(new_image_file
, format
,
1632 state
->old_bs
->filename
,
1633 state
->old_bs
->drv
->format_name
,
1634 NULL
, size
, flags
, false, &local_err
);
1636 error_propagate(errp
, local_err
);
1641 options
= qdict_new();
1642 if (snapshot_node_name
) {
1643 qdict_put_str(options
, "node-name", snapshot_node_name
);
1645 qdict_put_str(options
, "driver", format
);
1648 state
->new_bs
= bdrv_open(new_image_file
, snapshot_ref
, options
, flags
,
1650 /* We will manually add the backing_hd field to the bs later */
1651 if (!state
->new_bs
) {
1655 if (bdrv_has_blk(state
->new_bs
)) {
1656 error_setg(errp
, "The overlay is already in use");
1660 if (bdrv_op_is_blocked(state
->new_bs
, BLOCK_OP_TYPE_EXTERNAL_SNAPSHOT
,
1665 if (state
->new_bs
->backing
!= NULL
) {
1666 error_setg(errp
, "The overlay already has a backing image");
1670 if (!state
->new_bs
->drv
->supports_backing
) {
1671 error_setg(errp
, "The overlay does not support backing images");
1675 /* Honor bdrv_try_set_aio_context() context acquisition requirements. */
1676 old_context
= bdrv_get_aio_context(state
->new_bs
);
1677 aio_context_release(aio_context
);
1678 aio_context_acquire(old_context
);
1680 ret
= bdrv_try_set_aio_context(state
->new_bs
, aio_context
, errp
);
1682 aio_context_release(old_context
);
1683 aio_context_acquire(aio_context
);
1689 /* This removes our old bs and adds the new bs. This is an operation that
1690 * can fail, so we need to do it in .prepare; undoing it for abort is
1691 * always possible. */
1692 bdrv_ref(state
->new_bs
);
1693 bdrv_append(state
->new_bs
, state
->old_bs
, &local_err
);
1695 error_propagate(errp
, local_err
);
1698 state
->overlay_appended
= true;
1701 aio_context_release(aio_context
);
1704 static void external_snapshot_commit(BlkActionState
*common
)
1706 ExternalSnapshotState
*state
=
1707 DO_UPCAST(ExternalSnapshotState
, common
, common
);
1708 AioContext
*aio_context
;
1710 aio_context
= bdrv_get_aio_context(state
->old_bs
);
1711 aio_context_acquire(aio_context
);
1713 /* We don't need (or want) to use the transactional
1714 * bdrv_reopen_multiple() across all the entries at once, because we
1715 * don't want to abort all of them if one of them fails the reopen */
1716 if (!atomic_read(&state
->old_bs
->copy_on_read
)) {
1717 bdrv_reopen_set_read_only(state
->old_bs
, true, NULL
);
1720 aio_context_release(aio_context
);
1723 static void external_snapshot_abort(BlkActionState
*common
)
1725 ExternalSnapshotState
*state
=
1726 DO_UPCAST(ExternalSnapshotState
, common
, common
);
1727 if (state
->new_bs
) {
1728 if (state
->overlay_appended
) {
1729 AioContext
*aio_context
;
1730 AioContext
*tmp_context
;
1733 aio_context
= bdrv_get_aio_context(state
->old_bs
);
1734 aio_context_acquire(aio_context
);
1736 bdrv_ref(state
->old_bs
); /* we can't let bdrv_set_backind_hd()
1737 close state->old_bs; we need it */
1738 bdrv_set_backing_hd(state
->new_bs
, NULL
, &error_abort
);
1741 * The call to bdrv_set_backing_hd() above returns state->old_bs to
1742 * the main AioContext. As we're still going to be using it, return
1743 * it to the AioContext it was before.
1745 tmp_context
= bdrv_get_aio_context(state
->old_bs
);
1746 if (aio_context
!= tmp_context
) {
1747 aio_context_release(aio_context
);
1748 aio_context_acquire(tmp_context
);
1750 ret
= bdrv_try_set_aio_context(state
->old_bs
,
1754 aio_context_release(tmp_context
);
1755 aio_context_acquire(aio_context
);
1758 bdrv_replace_node(state
->new_bs
, state
->old_bs
, &error_abort
);
1759 bdrv_unref(state
->old_bs
); /* bdrv_replace_node() ref'ed old_bs */
1761 aio_context_release(aio_context
);
1766 static void external_snapshot_clean(BlkActionState
*common
)
1768 ExternalSnapshotState
*state
=
1769 DO_UPCAST(ExternalSnapshotState
, common
, common
);
1770 AioContext
*aio_context
;
1772 if (!state
->old_bs
) {
1776 aio_context
= bdrv_get_aio_context(state
->old_bs
);
1777 aio_context_acquire(aio_context
);
1779 bdrv_drained_end(state
->old_bs
);
1780 bdrv_unref(state
->new_bs
);
1782 aio_context_release(aio_context
);
1785 typedef struct DriveBackupState
{
1786 BlkActionState common
;
1787 BlockDriverState
*bs
;
1791 static BlockJob
*do_backup_common(BackupCommon
*backup
,
1792 BlockDriverState
*bs
,
1793 BlockDriverState
*target_bs
,
1794 AioContext
*aio_context
,
1795 JobTxn
*txn
, Error
**errp
);
1797 static void drive_backup_prepare(BlkActionState
*common
, Error
**errp
)
1799 DriveBackupState
*state
= DO_UPCAST(DriveBackupState
, common
, common
);
1800 DriveBackup
*backup
;
1801 BlockDriverState
*bs
;
1802 BlockDriverState
*target_bs
;
1803 BlockDriverState
*source
= NULL
;
1804 AioContext
*aio_context
;
1805 AioContext
*old_context
;
1807 Error
*local_err
= NULL
;
1810 bool set_backing_hd
= false;
1813 assert(common
->action
->type
== TRANSACTION_ACTION_KIND_DRIVE_BACKUP
);
1814 backup
= common
->action
->u
.drive_backup
.data
;
1816 if (!backup
->has_mode
) {
1817 backup
->mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1820 bs
= bdrv_lookup_bs(backup
->device
, backup
->device
, errp
);
1826 error_setg(errp
, "Device has no medium");
1830 aio_context
= bdrv_get_aio_context(bs
);
1831 aio_context_acquire(aio_context
);
1833 /* Paired with .clean() */
1834 bdrv_drained_begin(bs
);
1836 if (!backup
->has_format
) {
1837 backup
->format
= backup
->mode
== NEW_IMAGE_MODE_EXISTING
?
1838 NULL
: (char *) bs
->drv
->format_name
;
1841 /* Early check to avoid creating target */
1842 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_BACKUP_SOURCE
, errp
)) {
1846 flags
= bs
->open_flags
| BDRV_O_RDWR
;
1849 * See if we have a backing HD we can use to create our new image
1852 if (backup
->sync
== MIRROR_SYNC_MODE_TOP
) {
1853 source
= backing_bs(bs
);
1855 backup
->sync
= MIRROR_SYNC_MODE_FULL
;
1858 if (backup
->sync
== MIRROR_SYNC_MODE_NONE
) {
1860 flags
|= BDRV_O_NO_BACKING
;
1861 set_backing_hd
= true;
1864 size
= bdrv_getlength(bs
);
1866 error_setg_errno(errp
, -size
, "bdrv_getlength failed");
1870 if (backup
->mode
!= NEW_IMAGE_MODE_EXISTING
) {
1871 assert(backup
->format
);
1873 bdrv_refresh_filename(source
);
1874 bdrv_img_create(backup
->target
, backup
->format
, source
->filename
,
1875 source
->drv
->format_name
, NULL
,
1876 size
, flags
, false, &local_err
);
1878 bdrv_img_create(backup
->target
, backup
->format
, NULL
, NULL
, NULL
,
1879 size
, flags
, false, &local_err
);
1884 error_propagate(errp
, local_err
);
1888 options
= qdict_new();
1889 qdict_put_str(options
, "discard", "unmap");
1890 qdict_put_str(options
, "detect-zeroes", "unmap");
1891 if (backup
->format
) {
1892 qdict_put_str(options
, "driver", backup
->format
);
1895 target_bs
= bdrv_open(backup
->target
, NULL
, options
, flags
, errp
);
1900 /* Honor bdrv_try_set_aio_context() context acquisition requirements. */
1901 old_context
= bdrv_get_aio_context(target_bs
);
1902 aio_context_release(aio_context
);
1903 aio_context_acquire(old_context
);
1905 ret
= bdrv_try_set_aio_context(target_bs
, aio_context
, errp
);
1907 bdrv_unref(target_bs
);
1908 aio_context_release(old_context
);
1912 aio_context_release(old_context
);
1913 aio_context_acquire(aio_context
);
1915 if (set_backing_hd
) {
1916 bdrv_set_backing_hd(target_bs
, source
, &local_err
);
1924 state
->job
= do_backup_common(qapi_DriveBackup_base(backup
),
1925 bs
, target_bs
, aio_context
,
1926 common
->block_job_txn
, errp
);
1929 bdrv_unref(target_bs
);
1931 aio_context_release(aio_context
);
1934 static void drive_backup_commit(BlkActionState
*common
)
1936 DriveBackupState
*state
= DO_UPCAST(DriveBackupState
, common
, common
);
1937 AioContext
*aio_context
;
1939 aio_context
= bdrv_get_aio_context(state
->bs
);
1940 aio_context_acquire(aio_context
);
1943 job_start(&state
->job
->job
);
1945 aio_context_release(aio_context
);
1948 static void drive_backup_abort(BlkActionState
*common
)
1950 DriveBackupState
*state
= DO_UPCAST(DriveBackupState
, common
, common
);
1953 AioContext
*aio_context
;
1955 aio_context
= bdrv_get_aio_context(state
->bs
);
1956 aio_context_acquire(aio_context
);
1958 job_cancel_sync(&state
->job
->job
);
1960 aio_context_release(aio_context
);
1964 static void drive_backup_clean(BlkActionState
*common
)
1966 DriveBackupState
*state
= DO_UPCAST(DriveBackupState
, common
, common
);
1967 AioContext
*aio_context
;
1973 aio_context
= bdrv_get_aio_context(state
->bs
);
1974 aio_context_acquire(aio_context
);
1976 bdrv_drained_end(state
->bs
);
1978 aio_context_release(aio_context
);
1981 typedef struct BlockdevBackupState
{
1982 BlkActionState common
;
1983 BlockDriverState
*bs
;
1985 } BlockdevBackupState
;
1987 static void blockdev_backup_prepare(BlkActionState
*common
, Error
**errp
)
1989 BlockdevBackupState
*state
= DO_UPCAST(BlockdevBackupState
, common
, common
);
1990 BlockdevBackup
*backup
;
1991 BlockDriverState
*bs
;
1992 BlockDriverState
*target_bs
;
1993 AioContext
*aio_context
;
1994 AioContext
*old_context
;
1997 assert(common
->action
->type
== TRANSACTION_ACTION_KIND_BLOCKDEV_BACKUP
);
1998 backup
= common
->action
->u
.blockdev_backup
.data
;
2000 bs
= bdrv_lookup_bs(backup
->device
, backup
->device
, errp
);
2005 target_bs
= bdrv_lookup_bs(backup
->target
, backup
->target
, errp
);
2010 /* Honor bdrv_try_set_aio_context() context acquisition requirements. */
2011 aio_context
= bdrv_get_aio_context(bs
);
2012 old_context
= bdrv_get_aio_context(target_bs
);
2013 aio_context_acquire(old_context
);
2015 ret
= bdrv_try_set_aio_context(target_bs
, aio_context
, errp
);
2017 aio_context_release(old_context
);
2021 aio_context_release(old_context
);
2022 aio_context_acquire(aio_context
);
2025 /* Paired with .clean() */
2026 bdrv_drained_begin(state
->bs
);
2028 state
->job
= do_backup_common(qapi_BlockdevBackup_base(backup
),
2029 bs
, target_bs
, aio_context
,
2030 common
->block_job_txn
, errp
);
2032 aio_context_release(aio_context
);
2035 static void blockdev_backup_commit(BlkActionState
*common
)
2037 BlockdevBackupState
*state
= DO_UPCAST(BlockdevBackupState
, common
, common
);
2038 AioContext
*aio_context
;
2040 aio_context
= bdrv_get_aio_context(state
->bs
);
2041 aio_context_acquire(aio_context
);
2044 job_start(&state
->job
->job
);
2046 aio_context_release(aio_context
);
2049 static void blockdev_backup_abort(BlkActionState
*common
)
2051 BlockdevBackupState
*state
= DO_UPCAST(BlockdevBackupState
, common
, common
);
2054 AioContext
*aio_context
;
2056 aio_context
= bdrv_get_aio_context(state
->bs
);
2057 aio_context_acquire(aio_context
);
2059 job_cancel_sync(&state
->job
->job
);
2061 aio_context_release(aio_context
);
2065 static void blockdev_backup_clean(BlkActionState
*common
)
2067 BlockdevBackupState
*state
= DO_UPCAST(BlockdevBackupState
, common
, common
);
2068 AioContext
*aio_context
;
2074 aio_context
= bdrv_get_aio_context(state
->bs
);
2075 aio_context_acquire(aio_context
);
2077 bdrv_drained_end(state
->bs
);
2079 aio_context_release(aio_context
);
2082 typedef struct BlockDirtyBitmapState
{
2083 BlkActionState common
;
2084 BdrvDirtyBitmap
*bitmap
;
2085 BlockDriverState
*bs
;
2089 } BlockDirtyBitmapState
;
2091 static void block_dirty_bitmap_add_prepare(BlkActionState
*common
,
2094 Error
*local_err
= NULL
;
2095 BlockDirtyBitmapAdd
*action
;
2096 BlockDirtyBitmapState
*state
= DO_UPCAST(BlockDirtyBitmapState
,
2099 if (action_check_completion_mode(common
, errp
) < 0) {
2103 action
= common
->action
->u
.block_dirty_bitmap_add
.data
;
2104 /* AIO context taken and released within qmp_block_dirty_bitmap_add */
2105 qmp_block_dirty_bitmap_add(action
->node
, action
->name
,
2106 action
->has_granularity
, action
->granularity
,
2107 action
->has_persistent
, action
->persistent
,
2108 action
->has_disabled
, action
->disabled
,
2112 state
->prepared
= true;
2114 error_propagate(errp
, local_err
);
2118 static void block_dirty_bitmap_add_abort(BlkActionState
*common
)
2120 BlockDirtyBitmapAdd
*action
;
2121 BlockDirtyBitmapState
*state
= DO_UPCAST(BlockDirtyBitmapState
,
2124 action
= common
->action
->u
.block_dirty_bitmap_add
.data
;
2125 /* Should not be able to fail: IF the bitmap was added via .prepare(),
2126 * then the node reference and bitmap name must have been valid.
2128 if (state
->prepared
) {
2129 qmp_block_dirty_bitmap_remove(action
->node
, action
->name
, &error_abort
);
2133 static void block_dirty_bitmap_clear_prepare(BlkActionState
*common
,
2136 BlockDirtyBitmapState
*state
= DO_UPCAST(BlockDirtyBitmapState
,
2138 BlockDirtyBitmap
*action
;
2140 if (action_check_completion_mode(common
, errp
) < 0) {
2144 action
= common
->action
->u
.block_dirty_bitmap_clear
.data
;
2145 state
->bitmap
= block_dirty_bitmap_lookup(action
->node
,
2149 if (!state
->bitmap
) {
2153 if (bdrv_dirty_bitmap_check(state
->bitmap
, BDRV_BITMAP_DEFAULT
, errp
)) {
2157 bdrv_clear_dirty_bitmap(state
->bitmap
, &state
->backup
);
2160 static void block_dirty_bitmap_restore(BlkActionState
*common
)
2162 BlockDirtyBitmapState
*state
= DO_UPCAST(BlockDirtyBitmapState
,
2165 if (state
->backup
) {
2166 bdrv_restore_dirty_bitmap(state
->bitmap
, state
->backup
);
2170 static void block_dirty_bitmap_free_backup(BlkActionState
*common
)
2172 BlockDirtyBitmapState
*state
= DO_UPCAST(BlockDirtyBitmapState
,
2175 hbitmap_free(state
->backup
);
2178 static void block_dirty_bitmap_enable_prepare(BlkActionState
*common
,
2181 BlockDirtyBitmap
*action
;
2182 BlockDirtyBitmapState
*state
= DO_UPCAST(BlockDirtyBitmapState
,
2185 if (action_check_completion_mode(common
, errp
) < 0) {
2189 action
= common
->action
->u
.block_dirty_bitmap_enable
.data
;
2190 state
->bitmap
= block_dirty_bitmap_lookup(action
->node
,
2194 if (!state
->bitmap
) {
2198 if (bdrv_dirty_bitmap_check(state
->bitmap
, BDRV_BITMAP_ALLOW_RO
, errp
)) {
2202 state
->was_enabled
= bdrv_dirty_bitmap_enabled(state
->bitmap
);
2203 bdrv_enable_dirty_bitmap(state
->bitmap
);
2206 static void block_dirty_bitmap_enable_abort(BlkActionState
*common
)
2208 BlockDirtyBitmapState
*state
= DO_UPCAST(BlockDirtyBitmapState
,
2211 if (!state
->was_enabled
) {
2212 bdrv_disable_dirty_bitmap(state
->bitmap
);
2216 static void block_dirty_bitmap_disable_prepare(BlkActionState
*common
,
2219 BlockDirtyBitmap
*action
;
2220 BlockDirtyBitmapState
*state
= DO_UPCAST(BlockDirtyBitmapState
,
2223 if (action_check_completion_mode(common
, errp
) < 0) {
2227 action
= common
->action
->u
.block_dirty_bitmap_disable
.data
;
2228 state
->bitmap
= block_dirty_bitmap_lookup(action
->node
,
2232 if (!state
->bitmap
) {
2236 if (bdrv_dirty_bitmap_check(state
->bitmap
, BDRV_BITMAP_ALLOW_RO
, errp
)) {
2240 state
->was_enabled
= bdrv_dirty_bitmap_enabled(state
->bitmap
);
2241 bdrv_disable_dirty_bitmap(state
->bitmap
);
2244 static void block_dirty_bitmap_disable_abort(BlkActionState
*common
)
2246 BlockDirtyBitmapState
*state
= DO_UPCAST(BlockDirtyBitmapState
,
2249 if (state
->was_enabled
) {
2250 bdrv_enable_dirty_bitmap(state
->bitmap
);
2254 static BdrvDirtyBitmap
*do_block_dirty_bitmap_merge(
2255 const char *node
, const char *target
,
2256 BlockDirtyBitmapMergeSourceList
*bitmaps
,
2257 HBitmap
**backup
, Error
**errp
);
2259 static void block_dirty_bitmap_merge_prepare(BlkActionState
*common
,
2262 BlockDirtyBitmapMerge
*action
;
2263 BlockDirtyBitmapState
*state
= DO_UPCAST(BlockDirtyBitmapState
,
2266 if (action_check_completion_mode(common
, errp
) < 0) {
2270 action
= common
->action
->u
.block_dirty_bitmap_merge
.data
;
2272 state
->bitmap
= do_block_dirty_bitmap_merge(action
->node
, action
->target
,
2273 action
->bitmaps
, &state
->backup
,
2277 static BdrvDirtyBitmap
*do_block_dirty_bitmap_remove(
2278 const char *node
, const char *name
, bool release
,
2279 BlockDriverState
**bitmap_bs
, Error
**errp
);
2281 static void block_dirty_bitmap_remove_prepare(BlkActionState
*common
,
2284 BlockDirtyBitmap
*action
;
2285 BlockDirtyBitmapState
*state
= DO_UPCAST(BlockDirtyBitmapState
,
2288 if (action_check_completion_mode(common
, errp
) < 0) {
2292 action
= common
->action
->u
.block_dirty_bitmap_remove
.data
;
2294 state
->bitmap
= do_block_dirty_bitmap_remove(action
->node
, action
->name
,
2295 false, &state
->bs
, errp
);
2296 if (state
->bitmap
) {
2297 bdrv_dirty_bitmap_skip_store(state
->bitmap
, true);
2298 bdrv_dirty_bitmap_set_busy(state
->bitmap
, true);
2302 static void block_dirty_bitmap_remove_abort(BlkActionState
*common
)
2304 BlockDirtyBitmapState
*state
= DO_UPCAST(BlockDirtyBitmapState
,
2307 if (state
->bitmap
) {
2308 bdrv_dirty_bitmap_skip_store(state
->bitmap
, false);
2309 bdrv_dirty_bitmap_set_busy(state
->bitmap
, false);
2313 static void block_dirty_bitmap_remove_commit(BlkActionState
*common
)
2315 BlockDirtyBitmapState
*state
= DO_UPCAST(BlockDirtyBitmapState
,
2318 bdrv_dirty_bitmap_set_busy(state
->bitmap
, false);
2319 bdrv_release_dirty_bitmap(state
->bitmap
);
2322 static void abort_prepare(BlkActionState
*common
, Error
**errp
)
2324 error_setg(errp
, "Transaction aborted using Abort action");
2327 static void abort_commit(BlkActionState
*common
)
2329 g_assert_not_reached(); /* this action never succeeds */
2332 static const BlkActionOps actions
[] = {
2333 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT
] = {
2334 .instance_size
= sizeof(ExternalSnapshotState
),
2335 .prepare
= external_snapshot_prepare
,
2336 .commit
= external_snapshot_commit
,
2337 .abort
= external_snapshot_abort
,
2338 .clean
= external_snapshot_clean
,
2340 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
] = {
2341 .instance_size
= sizeof(ExternalSnapshotState
),
2342 .prepare
= external_snapshot_prepare
,
2343 .commit
= external_snapshot_commit
,
2344 .abort
= external_snapshot_abort
,
2345 .clean
= external_snapshot_clean
,
2347 [TRANSACTION_ACTION_KIND_DRIVE_BACKUP
] = {
2348 .instance_size
= sizeof(DriveBackupState
),
2349 .prepare
= drive_backup_prepare
,
2350 .commit
= drive_backup_commit
,
2351 .abort
= drive_backup_abort
,
2352 .clean
= drive_backup_clean
,
2354 [TRANSACTION_ACTION_KIND_BLOCKDEV_BACKUP
] = {
2355 .instance_size
= sizeof(BlockdevBackupState
),
2356 .prepare
= blockdev_backup_prepare
,
2357 .commit
= blockdev_backup_commit
,
2358 .abort
= blockdev_backup_abort
,
2359 .clean
= blockdev_backup_clean
,
2361 [TRANSACTION_ACTION_KIND_ABORT
] = {
2362 .instance_size
= sizeof(BlkActionState
),
2363 .prepare
= abort_prepare
,
2364 .commit
= abort_commit
,
2366 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC
] = {
2367 .instance_size
= sizeof(InternalSnapshotState
),
2368 .prepare
= internal_snapshot_prepare
,
2369 .abort
= internal_snapshot_abort
,
2370 .clean
= internal_snapshot_clean
,
2372 [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_ADD
] = {
2373 .instance_size
= sizeof(BlockDirtyBitmapState
),
2374 .prepare
= block_dirty_bitmap_add_prepare
,
2375 .abort
= block_dirty_bitmap_add_abort
,
2377 [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_CLEAR
] = {
2378 .instance_size
= sizeof(BlockDirtyBitmapState
),
2379 .prepare
= block_dirty_bitmap_clear_prepare
,
2380 .commit
= block_dirty_bitmap_free_backup
,
2381 .abort
= block_dirty_bitmap_restore
,
2383 [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_ENABLE
] = {
2384 .instance_size
= sizeof(BlockDirtyBitmapState
),
2385 .prepare
= block_dirty_bitmap_enable_prepare
,
2386 .abort
= block_dirty_bitmap_enable_abort
,
2388 [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_DISABLE
] = {
2389 .instance_size
= sizeof(BlockDirtyBitmapState
),
2390 .prepare
= block_dirty_bitmap_disable_prepare
,
2391 .abort
= block_dirty_bitmap_disable_abort
,
2393 [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_MERGE
] = {
2394 .instance_size
= sizeof(BlockDirtyBitmapState
),
2395 .prepare
= block_dirty_bitmap_merge_prepare
,
2396 .commit
= block_dirty_bitmap_free_backup
,
2397 .abort
= block_dirty_bitmap_restore
,
2399 [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_REMOVE
] = {
2400 .instance_size
= sizeof(BlockDirtyBitmapState
),
2401 .prepare
= block_dirty_bitmap_remove_prepare
,
2402 .commit
= block_dirty_bitmap_remove_commit
,
2403 .abort
= block_dirty_bitmap_remove_abort
,
2405 /* Where are transactions for MIRROR, COMMIT and STREAM?
2406 * Although these blockjobs use transaction callbacks like the backup job,
2407 * these jobs do not necessarily adhere to transaction semantics.
2408 * These jobs may not fully undo all of their actions on abort, nor do they
2409 * necessarily work in transactions with more than one job in them.
2414 * Allocate a TransactionProperties structure if necessary, and fill
2415 * that structure with desired defaults if they are unset.
2417 static TransactionProperties
*get_transaction_properties(
2418 TransactionProperties
*props
)
2421 props
= g_new0(TransactionProperties
, 1);
2424 if (!props
->has_completion_mode
) {
2425 props
->has_completion_mode
= true;
2426 props
->completion_mode
= ACTION_COMPLETION_MODE_INDIVIDUAL
;
2433 * 'Atomic' group operations. The operations are performed as a set, and if
2434 * any fail then we roll back all operations in the group.
2436 void qmp_transaction(TransactionActionList
*dev_list
,
2438 struct TransactionProperties
*props
,
2441 TransactionActionList
*dev_entry
= dev_list
;
2442 JobTxn
*block_job_txn
= NULL
;
2443 BlkActionState
*state
, *next
;
2444 Error
*local_err
= NULL
;
2446 QTAILQ_HEAD(, BlkActionState
) snap_bdrv_states
;
2447 QTAILQ_INIT(&snap_bdrv_states
);
2449 /* Does this transaction get canceled as a group on failure?
2450 * If not, we don't really need to make a JobTxn.
2452 props
= get_transaction_properties(props
);
2453 if (props
->completion_mode
!= ACTION_COMPLETION_MODE_INDIVIDUAL
) {
2454 block_job_txn
= job_txn_new();
2457 /* drain all i/o before any operations */
2460 /* We don't do anything in this loop that commits us to the operations */
2461 while (NULL
!= dev_entry
) {
2462 TransactionAction
*dev_info
= NULL
;
2463 const BlkActionOps
*ops
;
2465 dev_info
= dev_entry
->value
;
2466 dev_entry
= dev_entry
->next
;
2468 assert(dev_info
->type
< ARRAY_SIZE(actions
));
2470 ops
= &actions
[dev_info
->type
];
2471 assert(ops
->instance_size
> 0);
2473 state
= g_malloc0(ops
->instance_size
);
2475 state
->action
= dev_info
;
2476 state
->block_job_txn
= block_job_txn
;
2477 state
->txn_props
= props
;
2478 QTAILQ_INSERT_TAIL(&snap_bdrv_states
, state
, entry
);
2480 state
->ops
->prepare(state
, &local_err
);
2482 error_propagate(errp
, local_err
);
2483 goto delete_and_fail
;
2487 QTAILQ_FOREACH(state
, &snap_bdrv_states
, entry
) {
2488 if (state
->ops
->commit
) {
2489 state
->ops
->commit(state
);
2497 /* failure, and it is all-or-none; roll back all operations */
2498 QTAILQ_FOREACH_REVERSE(state
, &snap_bdrv_states
, entry
) {
2499 if (state
->ops
->abort
) {
2500 state
->ops
->abort(state
);
2504 QTAILQ_FOREACH_SAFE(state
, &snap_bdrv_states
, entry
, next
) {
2505 if (state
->ops
->clean
) {
2506 state
->ops
->clean(state
);
2511 qapi_free_TransactionProperties(props
);
2513 job_txn_unref(block_job_txn
);
2516 void qmp_eject(bool has_device
, const char *device
,
2517 bool has_id
, const char *id
,
2518 bool has_force
, bool force
, Error
**errp
)
2520 Error
*local_err
= NULL
;
2527 rc
= do_open_tray(has_device
? device
: NULL
,
2530 if (rc
&& rc
!= -ENOSYS
) {
2531 error_propagate(errp
, local_err
);
2534 error_free(local_err
);
2536 blockdev_remove_medium(has_device
, device
, has_id
, id
, errp
);
2539 void qmp_block_passwd(bool has_device
, const char *device
,
2540 bool has_node_name
, const char *node_name
,
2541 const char *password
, Error
**errp
)
2544 "Setting block passwords directly is no longer supported");
2548 * Attempt to open the tray of @device.
2549 * If @force, ignore its tray lock.
2550 * Else, if the tray is locked, don't open it, but ask the guest to open it.
2551 * On error, store an error through @errp and return -errno.
2552 * If @device does not exist, return -ENODEV.
2553 * If it has no removable media, return -ENOTSUP.
2554 * If it has no tray, return -ENOSYS.
2555 * If the guest was asked to open the tray, return -EINPROGRESS.
2558 static int do_open_tray(const char *blk_name
, const char *qdev_id
,
2559 bool force
, Error
**errp
)
2562 const char *device
= qdev_id
?: blk_name
;
2565 blk
= qmp_get_blk(blk_name
, qdev_id
, errp
);
2570 if (!blk_dev_has_removable_media(blk
)) {
2571 error_setg(errp
, "Device '%s' is not removable", device
);
2575 if (!blk_dev_has_tray(blk
)) {
2576 error_setg(errp
, "Device '%s' does not have a tray", device
);
2580 if (blk_dev_is_tray_open(blk
)) {
2584 locked
= blk_dev_is_medium_locked(blk
);
2586 blk_dev_eject_request(blk
, force
);
2589 if (!locked
|| force
) {
2590 blk_dev_change_media_cb(blk
, false, &error_abort
);
2593 if (locked
&& !force
) {
2594 error_setg(errp
, "Device '%s' is locked and force was not specified, "
2595 "wait for tray to open and try again", device
);
2596 return -EINPROGRESS
;
2602 void qmp_blockdev_open_tray(bool has_device
, const char *device
,
2603 bool has_id
, const char *id
,
2604 bool has_force
, bool force
,
2607 Error
*local_err
= NULL
;
2613 rc
= do_open_tray(has_device
? device
: NULL
,
2616 if (rc
&& rc
!= -ENOSYS
&& rc
!= -EINPROGRESS
) {
2617 error_propagate(errp
, local_err
);
2620 error_free(local_err
);
2623 void qmp_blockdev_close_tray(bool has_device
, const char *device
,
2624 bool has_id
, const char *id
,
2628 Error
*local_err
= NULL
;
2630 device
= has_device
? device
: NULL
;
2631 id
= has_id
? id
: NULL
;
2633 blk
= qmp_get_blk(device
, id
, errp
);
2638 if (!blk_dev_has_removable_media(blk
)) {
2639 error_setg(errp
, "Device '%s' is not removable", device
?: id
);
2643 if (!blk_dev_has_tray(blk
)) {
2644 /* Ignore this command on tray-less devices */
2648 if (!blk_dev_is_tray_open(blk
)) {
2652 blk_dev_change_media_cb(blk
, true, &local_err
);
2654 error_propagate(errp
, local_err
);
2659 static void blockdev_remove_medium(bool has_device
, const char *device
,
2660 bool has_id
, const char *id
, Error
**errp
)
2663 BlockDriverState
*bs
;
2664 AioContext
*aio_context
;
2665 bool has_attached_device
;
2667 device
= has_device
? device
: NULL
;
2668 id
= has_id
? id
: NULL
;
2670 blk
= qmp_get_blk(device
, id
, errp
);
2675 /* For BBs without a device, we can exchange the BDS tree at will */
2676 has_attached_device
= blk_get_attached_dev(blk
);
2678 if (has_attached_device
&& !blk_dev_has_removable_media(blk
)) {
2679 error_setg(errp
, "Device '%s' is not removable", device
?: id
);
2683 if (has_attached_device
&& blk_dev_has_tray(blk
) &&
2684 !blk_dev_is_tray_open(blk
))
2686 error_setg(errp
, "Tray of device '%s' is not open", device
?: id
);
2695 aio_context
= bdrv_get_aio_context(bs
);
2696 aio_context_acquire(aio_context
);
2698 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_EJECT
, errp
)) {
2704 if (!blk_dev_has_tray(blk
)) {
2705 /* For tray-less devices, blockdev-open-tray is a no-op (or may not be
2706 * called at all); therefore, the medium needs to be ejected here.
2707 * Do it after blk_remove_bs() so blk_is_inserted(blk) returns the @load
2708 * value passed here (i.e. false). */
2709 blk_dev_change_media_cb(blk
, false, &error_abort
);
2713 aio_context_release(aio_context
);
2716 void qmp_blockdev_remove_medium(const char *id
, Error
**errp
)
2718 blockdev_remove_medium(false, NULL
, true, id
, errp
);
2721 static void qmp_blockdev_insert_anon_medium(BlockBackend
*blk
,
2722 BlockDriverState
*bs
, Error
**errp
)
2724 Error
*local_err
= NULL
;
2728 /* For BBs without a device, we can exchange the BDS tree at will */
2729 has_device
= blk_get_attached_dev(blk
);
2731 if (has_device
&& !blk_dev_has_removable_media(blk
)) {
2732 error_setg(errp
, "Device is not removable");
2736 if (has_device
&& blk_dev_has_tray(blk
) && !blk_dev_is_tray_open(blk
)) {
2737 error_setg(errp
, "Tray of the device is not open");
2742 error_setg(errp
, "There already is a medium in the device");
2746 ret
= blk_insert_bs(blk
, bs
, errp
);
2751 if (!blk_dev_has_tray(blk
)) {
2752 /* For tray-less devices, blockdev-close-tray is a no-op (or may not be
2753 * called at all); therefore, the medium needs to be pushed into the
2755 * Do it after blk_insert_bs() so blk_is_inserted(blk) returns the @load
2756 * value passed here (i.e. true). */
2757 blk_dev_change_media_cb(blk
, true, &local_err
);
2759 error_propagate(errp
, local_err
);
2766 static void blockdev_insert_medium(bool has_device
, const char *device
,
2767 bool has_id
, const char *id
,
2768 const char *node_name
, Error
**errp
)
2771 BlockDriverState
*bs
;
2773 blk
= qmp_get_blk(has_device
? device
: NULL
,
2780 bs
= bdrv_find_node(node_name
);
2782 error_setg(errp
, "Node '%s' not found", node_name
);
2786 if (bdrv_has_blk(bs
)) {
2787 error_setg(errp
, "Node '%s' is already in use", node_name
);
2791 qmp_blockdev_insert_anon_medium(blk
, bs
, errp
);
2794 void qmp_blockdev_insert_medium(const char *id
, const char *node_name
,
2797 blockdev_insert_medium(false, NULL
, true, id
, node_name
, errp
);
2800 void qmp_blockdev_change_medium(bool has_device
, const char *device
,
2801 bool has_id
, const char *id
,
2802 const char *filename
,
2803 bool has_format
, const char *format
,
2805 BlockdevChangeReadOnlyMode read_only
,
2809 BlockDriverState
*medium_bs
= NULL
;
2813 QDict
*options
= NULL
;
2816 blk
= qmp_get_blk(has_device
? device
: NULL
,
2824 blk_update_root_state(blk
);
2827 bdrv_flags
= blk_get_open_flags_from_root_state(blk
);
2828 bdrv_flags
&= ~(BDRV_O_TEMPORARY
| BDRV_O_SNAPSHOT
| BDRV_O_NO_BACKING
|
2829 BDRV_O_PROTOCOL
| BDRV_O_AUTO_RDONLY
);
2831 if (!has_read_only
) {
2832 read_only
= BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN
;
2835 switch (read_only
) {
2836 case BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN
:
2839 case BLOCKDEV_CHANGE_READ_ONLY_MODE_READ_ONLY
:
2840 bdrv_flags
&= ~BDRV_O_RDWR
;
2843 case BLOCKDEV_CHANGE_READ_ONLY_MODE_READ_WRITE
:
2844 bdrv_flags
|= BDRV_O_RDWR
;
2851 options
= qdict_new();
2852 detect_zeroes
= blk_get_detect_zeroes_from_root_state(blk
);
2853 qdict_put_str(options
, "detect-zeroes", detect_zeroes
? "on" : "off");
2856 qdict_put_str(options
, "driver", format
);
2859 medium_bs
= bdrv_open(filename
, NULL
, options
, bdrv_flags
, errp
);
2864 rc
= do_open_tray(has_device
? device
: NULL
,
2867 if (rc
&& rc
!= -ENOSYS
) {
2868 error_propagate(errp
, err
);
2874 blockdev_remove_medium(has_device
, device
, has_id
, id
, &err
);
2876 error_propagate(errp
, err
);
2880 qmp_blockdev_insert_anon_medium(blk
, medium_bs
, &err
);
2882 error_propagate(errp
, err
);
2886 qmp_blockdev_close_tray(has_device
, device
, has_id
, id
, errp
);
2889 /* If the medium has been inserted, the device has its own reference, so
2890 * ours must be relinquished; and if it has not been inserted successfully,
2891 * the reference must be relinquished anyway */
2892 bdrv_unref(medium_bs
);
2895 /* throttling disk I/O limits */
2896 void qmp_block_set_io_throttle(BlockIOThrottle
*arg
, Error
**errp
)
2899 BlockDriverState
*bs
;
2901 AioContext
*aio_context
;
2903 blk
= qmp_get_blk(arg
->has_device
? arg
->device
: NULL
,
2904 arg
->has_id
? arg
->id
: NULL
,
2910 aio_context
= blk_get_aio_context(blk
);
2911 aio_context_acquire(aio_context
);
2915 error_setg(errp
, "Device has no medium");
2919 throttle_config_init(&cfg
);
2920 cfg
.buckets
[THROTTLE_BPS_TOTAL
].avg
= arg
->bps
;
2921 cfg
.buckets
[THROTTLE_BPS_READ
].avg
= arg
->bps_rd
;
2922 cfg
.buckets
[THROTTLE_BPS_WRITE
].avg
= arg
->bps_wr
;
2924 cfg
.buckets
[THROTTLE_OPS_TOTAL
].avg
= arg
->iops
;
2925 cfg
.buckets
[THROTTLE_OPS_READ
].avg
= arg
->iops_rd
;
2926 cfg
.buckets
[THROTTLE_OPS_WRITE
].avg
= arg
->iops_wr
;
2928 if (arg
->has_bps_max
) {
2929 cfg
.buckets
[THROTTLE_BPS_TOTAL
].max
= arg
->bps_max
;
2931 if (arg
->has_bps_rd_max
) {
2932 cfg
.buckets
[THROTTLE_BPS_READ
].max
= arg
->bps_rd_max
;
2934 if (arg
->has_bps_wr_max
) {
2935 cfg
.buckets
[THROTTLE_BPS_WRITE
].max
= arg
->bps_wr_max
;
2937 if (arg
->has_iops_max
) {
2938 cfg
.buckets
[THROTTLE_OPS_TOTAL
].max
= arg
->iops_max
;
2940 if (arg
->has_iops_rd_max
) {
2941 cfg
.buckets
[THROTTLE_OPS_READ
].max
= arg
->iops_rd_max
;
2943 if (arg
->has_iops_wr_max
) {
2944 cfg
.buckets
[THROTTLE_OPS_WRITE
].max
= arg
->iops_wr_max
;
2947 if (arg
->has_bps_max_length
) {
2948 cfg
.buckets
[THROTTLE_BPS_TOTAL
].burst_length
= arg
->bps_max_length
;
2950 if (arg
->has_bps_rd_max_length
) {
2951 cfg
.buckets
[THROTTLE_BPS_READ
].burst_length
= arg
->bps_rd_max_length
;
2953 if (arg
->has_bps_wr_max_length
) {
2954 cfg
.buckets
[THROTTLE_BPS_WRITE
].burst_length
= arg
->bps_wr_max_length
;
2956 if (arg
->has_iops_max_length
) {
2957 cfg
.buckets
[THROTTLE_OPS_TOTAL
].burst_length
= arg
->iops_max_length
;
2959 if (arg
->has_iops_rd_max_length
) {
2960 cfg
.buckets
[THROTTLE_OPS_READ
].burst_length
= arg
->iops_rd_max_length
;
2962 if (arg
->has_iops_wr_max_length
) {
2963 cfg
.buckets
[THROTTLE_OPS_WRITE
].burst_length
= arg
->iops_wr_max_length
;
2966 if (arg
->has_iops_size
) {
2967 cfg
.op_size
= arg
->iops_size
;
2970 if (!throttle_is_valid(&cfg
, errp
)) {
2974 if (throttle_enabled(&cfg
)) {
2975 /* Enable I/O limits if they're not enabled yet, otherwise
2976 * just update the throttling group. */
2977 if (!blk_get_public(blk
)->throttle_group_member
.throttle_state
) {
2978 blk_io_limits_enable(blk
,
2979 arg
->has_group
? arg
->group
:
2980 arg
->has_device
? arg
->device
:
2982 } else if (arg
->has_group
) {
2983 blk_io_limits_update_group(blk
, arg
->group
);
2985 /* Set the new throttling configuration */
2986 blk_set_io_limits(blk
, &cfg
);
2987 } else if (blk_get_public(blk
)->throttle_group_member
.throttle_state
) {
2988 /* If all throttling settings are set to 0, disable I/O limits */
2989 blk_io_limits_disable(blk
);
2993 aio_context_release(aio_context
);
2996 void qmp_block_dirty_bitmap_add(const char *node
, const char *name
,
2997 bool has_granularity
, uint32_t granularity
,
2998 bool has_persistent
, bool persistent
,
2999 bool has_disabled
, bool disabled
,
3002 BlockDriverState
*bs
;
3003 BdrvDirtyBitmap
*bitmap
;
3004 AioContext
*aio_context
;
3006 if (!name
|| name
[0] == '\0') {
3007 error_setg(errp
, "Bitmap name cannot be empty");
3011 bs
= bdrv_lookup_bs(node
, node
, errp
);
3016 aio_context
= bdrv_get_aio_context(bs
);
3017 aio_context_acquire(aio_context
);
3019 if (has_granularity
) {
3020 if (granularity
< 512 || !is_power_of_2(granularity
)) {
3021 error_setg(errp
, "Granularity must be power of 2 "
3022 "and at least 512");
3026 /* Default to cluster size, if available: */
3027 granularity
= bdrv_get_default_bitmap_granularity(bs
);
3030 if (!has_persistent
) {
3034 if (!has_disabled
) {
3039 !bdrv_can_store_new_dirty_bitmap(bs
, name
, granularity
, errp
))
3044 bitmap
= bdrv_create_dirty_bitmap(bs
, granularity
, name
, errp
);
3045 if (bitmap
== NULL
) {
3050 bdrv_disable_dirty_bitmap(bitmap
);
3053 bdrv_dirty_bitmap_set_persistence(bitmap
, persistent
);
3056 aio_context_release(aio_context
);
3059 static BdrvDirtyBitmap
*do_block_dirty_bitmap_remove(
3060 const char *node
, const char *name
, bool release
,
3061 BlockDriverState
**bitmap_bs
, Error
**errp
)
3063 BlockDriverState
*bs
;
3064 BdrvDirtyBitmap
*bitmap
;
3065 AioContext
*aio_context
;
3067 bitmap
= block_dirty_bitmap_lookup(node
, name
, &bs
, errp
);
3068 if (!bitmap
|| !bs
) {
3072 aio_context
= bdrv_get_aio_context(bs
);
3073 aio_context_acquire(aio_context
);
3075 if (bdrv_dirty_bitmap_check(bitmap
, BDRV_BITMAP_BUSY
| BDRV_BITMAP_RO
,
3077 aio_context_release(aio_context
);
3081 if (bdrv_dirty_bitmap_get_persistence(bitmap
) &&
3082 bdrv_remove_persistent_dirty_bitmap(bs
, name
, errp
) < 0)
3084 aio_context_release(aio_context
);
3089 bdrv_release_dirty_bitmap(bitmap
);
3096 aio_context_release(aio_context
);
3097 return release
? NULL
: bitmap
;
3100 void qmp_block_dirty_bitmap_remove(const char *node
, const char *name
,
3103 do_block_dirty_bitmap_remove(node
, name
, true, NULL
, errp
);
3107 * Completely clear a bitmap, for the purposes of synchronizing a bitmap
3108 * immediately after a full backup operation.
3110 void qmp_block_dirty_bitmap_clear(const char *node
, const char *name
,
3113 BdrvDirtyBitmap
*bitmap
;
3114 BlockDriverState
*bs
;
3116 bitmap
= block_dirty_bitmap_lookup(node
, name
, &bs
, errp
);
3117 if (!bitmap
|| !bs
) {
3121 if (bdrv_dirty_bitmap_check(bitmap
, BDRV_BITMAP_DEFAULT
, errp
)) {
3125 bdrv_clear_dirty_bitmap(bitmap
, NULL
);
3128 void qmp_block_dirty_bitmap_enable(const char *node
, const char *name
,
3131 BlockDriverState
*bs
;
3132 BdrvDirtyBitmap
*bitmap
;
3134 bitmap
= block_dirty_bitmap_lookup(node
, name
, &bs
, errp
);
3139 if (bdrv_dirty_bitmap_check(bitmap
, BDRV_BITMAP_ALLOW_RO
, errp
)) {
3143 bdrv_enable_dirty_bitmap(bitmap
);
3146 void qmp_block_dirty_bitmap_disable(const char *node
, const char *name
,
3149 BlockDriverState
*bs
;
3150 BdrvDirtyBitmap
*bitmap
;
3152 bitmap
= block_dirty_bitmap_lookup(node
, name
, &bs
, errp
);
3157 if (bdrv_dirty_bitmap_check(bitmap
, BDRV_BITMAP_ALLOW_RO
, errp
)) {
3161 bdrv_disable_dirty_bitmap(bitmap
);
3164 static BdrvDirtyBitmap
*do_block_dirty_bitmap_merge(
3165 const char *node
, const char *target
,
3166 BlockDirtyBitmapMergeSourceList
*bitmaps
,
3167 HBitmap
**backup
, Error
**errp
)
3169 BlockDriverState
*bs
;
3170 BdrvDirtyBitmap
*dst
, *src
, *anon
;
3171 BlockDirtyBitmapMergeSourceList
*lst
;
3172 Error
*local_err
= NULL
;
3174 dst
= block_dirty_bitmap_lookup(node
, target
, &bs
, errp
);
3179 anon
= bdrv_create_dirty_bitmap(bs
, bdrv_dirty_bitmap_granularity(dst
),
3185 for (lst
= bitmaps
; lst
; lst
= lst
->next
) {
3186 switch (lst
->value
->type
) {
3187 const char *name
, *node
;
3189 name
= lst
->value
->u
.local
;
3190 src
= bdrv_find_dirty_bitmap(bs
, name
);
3192 error_setg(errp
, "Dirty bitmap '%s' not found", name
);
3198 node
= lst
->value
->u
.external
.node
;
3199 name
= lst
->value
->u
.external
.name
;
3200 src
= block_dirty_bitmap_lookup(node
, name
, NULL
, errp
);
3210 bdrv_merge_dirty_bitmap(anon
, src
, NULL
, &local_err
);
3212 error_propagate(errp
, local_err
);
3218 /* Merge into dst; dst is unchanged on failure. */
3219 bdrv_merge_dirty_bitmap(dst
, anon
, backup
, errp
);
3222 bdrv_release_dirty_bitmap(anon
);
3226 void qmp_block_dirty_bitmap_merge(const char *node
, const char *target
,
3227 BlockDirtyBitmapMergeSourceList
*bitmaps
,
3230 do_block_dirty_bitmap_merge(node
, target
, bitmaps
, NULL
, errp
);
3233 BlockDirtyBitmapSha256
*qmp_x_debug_block_dirty_bitmap_sha256(const char *node
,
3237 BdrvDirtyBitmap
*bitmap
;
3238 BlockDriverState
*bs
;
3239 BlockDirtyBitmapSha256
*ret
= NULL
;
3242 bitmap
= block_dirty_bitmap_lookup(node
, name
, &bs
, errp
);
3243 if (!bitmap
|| !bs
) {
3247 sha256
= bdrv_dirty_bitmap_sha256(bitmap
, errp
);
3248 if (sha256
== NULL
) {
3252 ret
= g_new(BlockDirtyBitmapSha256
, 1);
3253 ret
->sha256
= sha256
;
3258 void hmp_drive_del(Monitor
*mon
, const QDict
*qdict
)
3260 const char *id
= qdict_get_str(qdict
, "id");
3262 BlockDriverState
*bs
;
3263 AioContext
*aio_context
;
3264 Error
*local_err
= NULL
;
3266 bs
= bdrv_find_node(id
);
3268 qmp_blockdev_del(id
, &local_err
);
3270 error_report_err(local_err
);
3275 blk
= blk_by_name(id
);
3277 error_report("Device '%s' not found", id
);
3281 if (!blk_legacy_dinfo(blk
)) {
3282 error_report("Deleting device added with blockdev-add"
3283 " is not supported");
3287 aio_context
= blk_get_aio_context(blk
);
3288 aio_context_acquire(aio_context
);
3292 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_DRIVE_DEL
, &local_err
)) {
3293 error_report_err(local_err
);
3294 aio_context_release(aio_context
);
3301 /* Make the BlockBackend and the attached BlockDriverState anonymous */
3302 monitor_remove_blk(blk
);
3304 /* If this BlockBackend has a device attached to it, its refcount will be
3305 * decremented when the device is removed; otherwise we have to do so here.
3307 if (blk_get_attached_dev(blk
)) {
3308 /* Further I/O must not pause the guest */
3309 blk_set_on_error(blk
, BLOCKDEV_ON_ERROR_REPORT
,
3310 BLOCKDEV_ON_ERROR_REPORT
);
3315 aio_context_release(aio_context
);
3318 void qmp_block_resize(bool has_device
, const char *device
,
3319 bool has_node_name
, const char *node_name
,
3320 int64_t size
, Error
**errp
)
3322 Error
*local_err
= NULL
;
3323 BlockBackend
*blk
= NULL
;
3324 BlockDriverState
*bs
;
3325 AioContext
*aio_context
;
3328 bs
= bdrv_lookup_bs(has_device
? device
: NULL
,
3329 has_node_name
? node_name
: NULL
,
3332 error_propagate(errp
, local_err
);
3336 aio_context
= bdrv_get_aio_context(bs
);
3337 aio_context_acquire(aio_context
);
3339 if (!bdrv_is_first_non_filter(bs
)) {
3340 error_setg(errp
, QERR_FEATURE_DISABLED
, "resize");
3345 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "size", "a >0 size");
3349 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_RESIZE
, NULL
)) {
3350 error_setg(errp
, QERR_DEVICE_IN_USE
, device
);
3354 blk
= blk_new(bdrv_get_aio_context(bs
), BLK_PERM_RESIZE
, BLK_PERM_ALL
);
3355 ret
= blk_insert_bs(blk
, bs
, errp
);
3360 bdrv_drained_begin(bs
);
3361 ret
= blk_truncate(blk
, size
, false, PREALLOC_MODE_OFF
, errp
);
3362 bdrv_drained_end(bs
);
3366 aio_context_release(aio_context
);
3369 void qmp_block_stream(bool has_job_id
, const char *job_id
, const char *device
,
3370 bool has_base
, const char *base
,
3371 bool has_base_node
, const char *base_node
,
3372 bool has_backing_file
, const char *backing_file
,
3373 bool has_speed
, int64_t speed
,
3374 bool has_on_error
, BlockdevOnError on_error
,
3375 bool has_auto_finalize
, bool auto_finalize
,
3376 bool has_auto_dismiss
, bool auto_dismiss
,
3379 BlockDriverState
*bs
, *iter
;
3380 BlockDriverState
*base_bs
= NULL
;
3381 AioContext
*aio_context
;
3382 Error
*local_err
= NULL
;
3383 const char *base_name
= NULL
;
3384 int job_flags
= JOB_DEFAULT
;
3386 if (!has_on_error
) {
3387 on_error
= BLOCKDEV_ON_ERROR_REPORT
;
3390 bs
= bdrv_lookup_bs(device
, device
, errp
);
3395 aio_context
= bdrv_get_aio_context(bs
);
3396 aio_context_acquire(aio_context
);
3398 if (has_base
&& has_base_node
) {
3399 error_setg(errp
, "'base' and 'base-node' cannot be specified "
3400 "at the same time");
3405 base_bs
= bdrv_find_backing_image(bs
, base
);
3406 if (base_bs
== NULL
) {
3407 error_setg(errp
, QERR_BASE_NOT_FOUND
, base
);
3410 assert(bdrv_get_aio_context(base_bs
) == aio_context
);
3414 if (has_base_node
) {
3415 base_bs
= bdrv_lookup_bs(NULL
, base_node
, errp
);
3419 if (bs
== base_bs
|| !bdrv_chain_contains(bs
, base_bs
)) {
3420 error_setg(errp
, "Node '%s' is not a backing image of '%s'",
3424 assert(bdrv_get_aio_context(base_bs
) == aio_context
);
3425 bdrv_refresh_filename(base_bs
);
3426 base_name
= base_bs
->filename
;
3429 /* Check for op blockers in the whole chain between bs and base */
3430 for (iter
= bs
; iter
&& iter
!= base_bs
; iter
= backing_bs(iter
)) {
3431 if (bdrv_op_is_blocked(iter
, BLOCK_OP_TYPE_STREAM
, errp
)) {
3436 /* if we are streaming the entire chain, the result will have no backing
3437 * file, and specifying one is therefore an error */
3438 if (base_bs
== NULL
&& has_backing_file
) {
3439 error_setg(errp
, "backing file specified, but streaming the "
3444 /* backing_file string overrides base bs filename */
3445 base_name
= has_backing_file
? backing_file
: base_name
;
3447 if (has_auto_finalize
&& !auto_finalize
) {
3448 job_flags
|= JOB_MANUAL_FINALIZE
;
3450 if (has_auto_dismiss
&& !auto_dismiss
) {
3451 job_flags
|= JOB_MANUAL_DISMISS
;
3454 stream_start(has_job_id
? job_id
: NULL
, bs
, base_bs
, base_name
,
3455 job_flags
, has_speed
? speed
: 0, on_error
, &local_err
);
3457 error_propagate(errp
, local_err
);
3461 trace_qmp_block_stream(bs
);
3464 aio_context_release(aio_context
);
3467 void qmp_block_commit(bool has_job_id
, const char *job_id
, const char *device
,
3468 bool has_base_node
, const char *base_node
,
3469 bool has_base
, const char *base
,
3470 bool has_top_node
, const char *top_node
,
3471 bool has_top
, const char *top
,
3472 bool has_backing_file
, const char *backing_file
,
3473 bool has_speed
, int64_t speed
,
3474 bool has_filter_node_name
, const char *filter_node_name
,
3475 bool has_auto_finalize
, bool auto_finalize
,
3476 bool has_auto_dismiss
, bool auto_dismiss
,
3479 BlockDriverState
*bs
;
3480 BlockDriverState
*iter
;
3481 BlockDriverState
*base_bs
, *top_bs
;
3482 AioContext
*aio_context
;
3483 Error
*local_err
= NULL
;
3484 /* This will be part of the QMP command, if/when the
3485 * BlockdevOnError change for blkmirror makes it in
3487 BlockdevOnError on_error
= BLOCKDEV_ON_ERROR_REPORT
;
3488 int job_flags
= JOB_DEFAULT
;
3493 if (!has_filter_node_name
) {
3494 filter_node_name
= NULL
;
3496 if (has_auto_finalize
&& !auto_finalize
) {
3497 job_flags
|= JOB_MANUAL_FINALIZE
;
3499 if (has_auto_dismiss
&& !auto_dismiss
) {
3500 job_flags
|= JOB_MANUAL_DISMISS
;
3504 * libvirt relies on the DeviceNotFound error class in order to probe for
3505 * live commit feature versions; for this to work, we must make sure to
3506 * perform the device lookup before any generic errors that may occur in a
3507 * scenario in which all optional arguments are omitted. */
3508 bs
= qmp_get_root_bs(device
, &local_err
);
3510 bs
= bdrv_lookup_bs(device
, device
, NULL
);
3512 error_free(local_err
);
3513 error_set(errp
, ERROR_CLASS_DEVICE_NOT_FOUND
,
3514 "Device '%s' not found", device
);
3516 error_propagate(errp
, local_err
);
3521 aio_context
= bdrv_get_aio_context(bs
);
3522 aio_context_acquire(aio_context
);
3524 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_COMMIT_SOURCE
, errp
)) {
3528 /* default top_bs is the active layer */
3531 if (has_top_node
&& has_top
) {
3532 error_setg(errp
, "'top-node' and 'top' are mutually exclusive");
3534 } else if (has_top_node
) {
3535 top_bs
= bdrv_lookup_bs(NULL
, top_node
, errp
);
3536 if (top_bs
== NULL
) {
3539 if (!bdrv_chain_contains(bs
, top_bs
)) {
3540 error_setg(errp
, "'%s' is not in this backing file chain",
3544 } else if (has_top
&& top
) {
3545 /* This strcmp() is just a shortcut, there is no need to
3546 * refresh @bs's filename. If it mismatches,
3547 * bdrv_find_backing_image() will do the refresh and may still
3549 if (strcmp(bs
->filename
, top
) != 0) {
3550 top_bs
= bdrv_find_backing_image(bs
, top
);
3554 if (top_bs
== NULL
) {
3555 error_setg(errp
, "Top image file %s not found", top
? top
: "NULL");
3559 assert(bdrv_get_aio_context(top_bs
) == aio_context
);
3561 if (has_base_node
&& has_base
) {
3562 error_setg(errp
, "'base-node' and 'base' are mutually exclusive");
3564 } else if (has_base_node
) {
3565 base_bs
= bdrv_lookup_bs(NULL
, base_node
, errp
);
3566 if (base_bs
== NULL
) {
3569 if (!bdrv_chain_contains(top_bs
, base_bs
)) {
3570 error_setg(errp
, "'%s' is not in this backing file chain",
3574 } else if (has_base
&& base
) {
3575 base_bs
= bdrv_find_backing_image(top_bs
, base
);
3577 base_bs
= bdrv_find_base(top_bs
);
3580 if (base_bs
== NULL
) {
3581 error_setg(errp
, QERR_BASE_NOT_FOUND
, base
? base
: "NULL");
3585 assert(bdrv_get_aio_context(base_bs
) == aio_context
);
3587 for (iter
= top_bs
; iter
!= backing_bs(base_bs
); iter
= backing_bs(iter
)) {
3588 if (bdrv_op_is_blocked(iter
, BLOCK_OP_TYPE_COMMIT_TARGET
, errp
)) {
3593 /* Do not allow attempts to commit an image into itself */
3594 if (top_bs
== base_bs
) {
3595 error_setg(errp
, "cannot commit an image into itself");
3600 if (has_backing_file
) {
3601 error_setg(errp
, "'backing-file' specified,"
3602 " but 'top' is the active layer");
3605 commit_active_start(has_job_id
? job_id
: NULL
, bs
, base_bs
,
3606 job_flags
, speed
, on_error
,
3607 filter_node_name
, NULL
, NULL
, false, &local_err
);
3609 BlockDriverState
*overlay_bs
= bdrv_find_overlay(bs
, top_bs
);
3610 if (bdrv_op_is_blocked(overlay_bs
, BLOCK_OP_TYPE_COMMIT_TARGET
, errp
)) {
3613 commit_start(has_job_id
? job_id
: NULL
, bs
, base_bs
, top_bs
, job_flags
,
3614 speed
, on_error
, has_backing_file
? backing_file
: NULL
,
3615 filter_node_name
, &local_err
);
3617 if (local_err
!= NULL
) {
3618 error_propagate(errp
, local_err
);
3623 aio_context_release(aio_context
);
3626 /* Common QMP interface for drive-backup and blockdev-backup */
3627 static BlockJob
*do_backup_common(BackupCommon
*backup
,
3628 BlockDriverState
*bs
,
3629 BlockDriverState
*target_bs
,
3630 AioContext
*aio_context
,
3631 JobTxn
*txn
, Error
**errp
)
3633 BlockJob
*job
= NULL
;
3634 BdrvDirtyBitmap
*bmap
= NULL
;
3635 int job_flags
= JOB_DEFAULT
;
3637 if (!backup
->has_speed
) {
3640 if (!backup
->has_on_source_error
) {
3641 backup
->on_source_error
= BLOCKDEV_ON_ERROR_REPORT
;
3643 if (!backup
->has_on_target_error
) {
3644 backup
->on_target_error
= BLOCKDEV_ON_ERROR_REPORT
;
3646 if (!backup
->has_job_id
) {
3647 backup
->job_id
= NULL
;
3649 if (!backup
->has_auto_finalize
) {
3650 backup
->auto_finalize
= true;
3652 if (!backup
->has_auto_dismiss
) {
3653 backup
->auto_dismiss
= true;
3655 if (!backup
->has_compress
) {
3656 backup
->compress
= false;
3659 if ((backup
->sync
== MIRROR_SYNC_MODE_BITMAP
) ||
3660 (backup
->sync
== MIRROR_SYNC_MODE_INCREMENTAL
)) {
3661 /* done before desugaring 'incremental' to print the right message */
3662 if (!backup
->has_bitmap
) {
3663 error_setg(errp
, "must provide a valid bitmap name for "
3664 "'%s' sync mode", MirrorSyncMode_str(backup
->sync
));
3669 if (backup
->sync
== MIRROR_SYNC_MODE_INCREMENTAL
) {
3670 if (backup
->has_bitmap_mode
&&
3671 backup
->bitmap_mode
!= BITMAP_SYNC_MODE_ON_SUCCESS
) {
3672 error_setg(errp
, "Bitmap sync mode must be '%s' "
3673 "when using sync mode '%s'",
3674 BitmapSyncMode_str(BITMAP_SYNC_MODE_ON_SUCCESS
),
3675 MirrorSyncMode_str(backup
->sync
));
3678 backup
->has_bitmap_mode
= true;
3679 backup
->sync
= MIRROR_SYNC_MODE_BITMAP
;
3680 backup
->bitmap_mode
= BITMAP_SYNC_MODE_ON_SUCCESS
;
3683 if (backup
->has_bitmap
) {
3684 bmap
= bdrv_find_dirty_bitmap(bs
, backup
->bitmap
);
3686 error_setg(errp
, "Bitmap '%s' could not be found", backup
->bitmap
);
3689 if (!backup
->has_bitmap_mode
) {
3690 error_setg(errp
, "Bitmap sync mode must be given "
3691 "when providing a bitmap");
3694 if (bdrv_dirty_bitmap_check(bmap
, BDRV_BITMAP_ALLOW_RO
, errp
)) {
3698 /* This does not produce a useful bitmap artifact: */
3699 if (backup
->sync
== MIRROR_SYNC_MODE_NONE
) {
3700 error_setg(errp
, "sync mode '%s' does not produce meaningful bitmap"
3701 " outputs", MirrorSyncMode_str(backup
->sync
));
3705 /* If the bitmap isn't used for input or output, this is useless: */
3706 if (backup
->bitmap_mode
== BITMAP_SYNC_MODE_NEVER
&&
3707 backup
->sync
!= MIRROR_SYNC_MODE_BITMAP
) {
3708 error_setg(errp
, "Bitmap sync mode '%s' has no meaningful effect"
3709 " when combined with sync mode '%s'",
3710 BitmapSyncMode_str(backup
->bitmap_mode
),
3711 MirrorSyncMode_str(backup
->sync
));
3716 if (!backup
->has_bitmap
&& backup
->has_bitmap_mode
) {
3717 error_setg(errp
, "Cannot specify bitmap sync mode without a bitmap");
3721 if (!backup
->auto_finalize
) {
3722 job_flags
|= JOB_MANUAL_FINALIZE
;
3724 if (!backup
->auto_dismiss
) {
3725 job_flags
|= JOB_MANUAL_DISMISS
;
3728 job
= backup_job_create(backup
->job_id
, bs
, target_bs
, backup
->speed
,
3729 backup
->sync
, bmap
, backup
->bitmap_mode
,
3731 backup
->filter_node_name
,
3732 backup
->on_source_error
,
3733 backup
->on_target_error
,
3734 job_flags
, NULL
, NULL
, txn
, errp
);
3738 void qmp_drive_backup(DriveBackup
*backup
, Error
**errp
)
3740 TransactionAction action
= {
3741 .type
= TRANSACTION_ACTION_KIND_DRIVE_BACKUP
,
3742 .u
.drive_backup
.data
= backup
,
3744 blockdev_do_action(&action
, errp
);
3747 BlockDeviceInfoList
*qmp_query_named_block_nodes(Error
**errp
)
3749 return bdrv_named_nodes_list(errp
);
3752 XDbgBlockGraph
*qmp_x_debug_query_block_graph(Error
**errp
)
3754 return bdrv_get_xdbg_block_graph(errp
);
3757 void qmp_blockdev_backup(BlockdevBackup
*backup
, Error
**errp
)
3759 TransactionAction action
= {
3760 .type
= TRANSACTION_ACTION_KIND_BLOCKDEV_BACKUP
,
3761 .u
.blockdev_backup
.data
= backup
,
3763 blockdev_do_action(&action
, errp
);
3766 /* Parameter check and block job starting for drive mirroring.
3767 * Caller should hold @device and @target's aio context (must be the same).
3769 static void blockdev_mirror_common(const char *job_id
, BlockDriverState
*bs
,
3770 BlockDriverState
*target
,
3771 bool has_replaces
, const char *replaces
,
3772 enum MirrorSyncMode sync
,
3773 BlockMirrorBackingMode backing_mode
,
3775 bool has_speed
, int64_t speed
,
3776 bool has_granularity
, uint32_t granularity
,
3777 bool has_buf_size
, int64_t buf_size
,
3778 bool has_on_source_error
,
3779 BlockdevOnError on_source_error
,
3780 bool has_on_target_error
,
3781 BlockdevOnError on_target_error
,
3782 bool has_unmap
, bool unmap
,
3783 bool has_filter_node_name
,
3784 const char *filter_node_name
,
3785 bool has_copy_mode
, MirrorCopyMode copy_mode
,
3786 bool has_auto_finalize
, bool auto_finalize
,
3787 bool has_auto_dismiss
, bool auto_dismiss
,
3790 int job_flags
= JOB_DEFAULT
;
3795 if (!has_on_source_error
) {
3796 on_source_error
= BLOCKDEV_ON_ERROR_REPORT
;
3798 if (!has_on_target_error
) {
3799 on_target_error
= BLOCKDEV_ON_ERROR_REPORT
;
3801 if (!has_granularity
) {
3804 if (!has_buf_size
) {
3810 if (!has_filter_node_name
) {
3811 filter_node_name
= NULL
;
3813 if (!has_copy_mode
) {
3814 copy_mode
= MIRROR_COPY_MODE_BACKGROUND
;
3816 if (has_auto_finalize
&& !auto_finalize
) {
3817 job_flags
|= JOB_MANUAL_FINALIZE
;
3819 if (has_auto_dismiss
&& !auto_dismiss
) {
3820 job_flags
|= JOB_MANUAL_DISMISS
;
3823 if (granularity
!= 0 && (granularity
< 512 || granularity
> 1048576 * 64)) {
3824 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "granularity",
3825 "a value in range [512B, 64MB]");
3828 if (granularity
& (granularity
- 1)) {
3829 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "granularity",
3834 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_MIRROR_SOURCE
, errp
)) {
3837 if (bdrv_op_is_blocked(target
, BLOCK_OP_TYPE_MIRROR_TARGET
, errp
)) {
3841 if (!bs
->backing
&& sync
== MIRROR_SYNC_MODE_TOP
) {
3842 sync
= MIRROR_SYNC_MODE_FULL
;
3846 BlockDriverState
*to_replace_bs
;
3847 AioContext
*replace_aio_context
;
3848 int64_t bs_size
, replace_size
;
3850 bs_size
= bdrv_getlength(bs
);
3852 error_setg_errno(errp
, -bs_size
, "Failed to query device's size");
3856 to_replace_bs
= check_to_replace_node(bs
, replaces
, errp
);
3857 if (!to_replace_bs
) {
3861 replace_aio_context
= bdrv_get_aio_context(to_replace_bs
);
3862 aio_context_acquire(replace_aio_context
);
3863 replace_size
= bdrv_getlength(to_replace_bs
);
3864 aio_context_release(replace_aio_context
);
3866 if (replace_size
< 0) {
3867 error_setg_errno(errp
, -replace_size
,
3868 "Failed to query the replacement node's size");
3871 if (bs_size
!= replace_size
) {
3872 error_setg(errp
, "cannot replace image with a mirror image of "
3878 /* pass the node name to replace to mirror start since it's loose coupling
3879 * and will allow to check whether the node still exist at mirror completion
3881 mirror_start(job_id
, bs
, target
,
3882 has_replaces
? replaces
: NULL
, job_flags
,
3883 speed
, granularity
, buf_size
, sync
, backing_mode
, zero_target
,
3884 on_source_error
, on_target_error
, unmap
, filter_node_name
,
3888 void qmp_drive_mirror(DriveMirror
*arg
, Error
**errp
)
3890 BlockDriverState
*bs
;
3891 BlockDriverState
*source
, *target_bs
;
3892 AioContext
*aio_context
;
3893 AioContext
*old_context
;
3894 BlockMirrorBackingMode backing_mode
;
3895 Error
*local_err
= NULL
;
3896 QDict
*options
= NULL
;
3899 const char *format
= arg
->format
;
3903 bs
= qmp_get_root_bs(arg
->device
, errp
);
3908 /* Early check to avoid creating target */
3909 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_MIRROR_SOURCE
, errp
)) {
3913 aio_context
= bdrv_get_aio_context(bs
);
3914 aio_context_acquire(aio_context
);
3916 if (!arg
->has_mode
) {
3917 arg
->mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
3920 if (!arg
->has_format
) {
3921 format
= (arg
->mode
== NEW_IMAGE_MODE_EXISTING
3922 ? NULL
: bs
->drv
->format_name
);
3925 flags
= bs
->open_flags
| BDRV_O_RDWR
;
3926 source
= backing_bs(bs
);
3927 if (!source
&& arg
->sync
== MIRROR_SYNC_MODE_TOP
) {
3928 arg
->sync
= MIRROR_SYNC_MODE_FULL
;
3930 if (arg
->sync
== MIRROR_SYNC_MODE_NONE
) {
3934 size
= bdrv_getlength(bs
);
3936 error_setg_errno(errp
, -size
, "bdrv_getlength failed");
3940 if (arg
->has_replaces
) {
3941 if (!arg
->has_node_name
) {
3942 error_setg(errp
, "a node-name must be provided when replacing a"
3943 " named node of the graph");
3948 if (arg
->mode
== NEW_IMAGE_MODE_ABSOLUTE_PATHS
) {
3949 backing_mode
= MIRROR_SOURCE_BACKING_CHAIN
;
3951 backing_mode
= MIRROR_OPEN_BACKING_CHAIN
;
3954 /* Don't open backing image in create() */
3955 flags
|= BDRV_O_NO_BACKING
;
3957 if ((arg
->sync
== MIRROR_SYNC_MODE_FULL
|| !source
)
3958 && arg
->mode
!= NEW_IMAGE_MODE_EXISTING
)
3960 /* create new image w/o backing file */
3962 bdrv_img_create(arg
->target
, format
,
3963 NULL
, NULL
, NULL
, size
, flags
, false, &local_err
);
3965 switch (arg
->mode
) {
3966 case NEW_IMAGE_MODE_EXISTING
:
3968 case NEW_IMAGE_MODE_ABSOLUTE_PATHS
:
3969 /* create new image with backing file */
3970 bdrv_refresh_filename(source
);
3971 bdrv_img_create(arg
->target
, format
,
3973 source
->drv
->format_name
,
3974 NULL
, size
, flags
, false, &local_err
);
3982 error_propagate(errp
, local_err
);
3986 options
= qdict_new();
3987 if (arg
->has_node_name
) {
3988 qdict_put_str(options
, "node-name", arg
->node_name
);
3991 qdict_put_str(options
, "driver", format
);
3994 /* Mirroring takes care of copy-on-write using the source's backing
3997 target_bs
= bdrv_open(arg
->target
, NULL
, options
, flags
, errp
);
4002 zero_target
= (arg
->sync
== MIRROR_SYNC_MODE_FULL
&&
4003 (arg
->mode
== NEW_IMAGE_MODE_EXISTING
||
4004 !bdrv_has_zero_init(target_bs
)));
4007 /* Honor bdrv_try_set_aio_context() context acquisition requirements. */
4008 old_context
= bdrv_get_aio_context(target_bs
);
4009 aio_context_release(aio_context
);
4010 aio_context_acquire(old_context
);
4012 ret
= bdrv_try_set_aio_context(target_bs
, aio_context
, errp
);
4014 bdrv_unref(target_bs
);
4015 aio_context_release(old_context
);
4019 aio_context_release(old_context
);
4020 aio_context_acquire(aio_context
);
4022 blockdev_mirror_common(arg
->has_job_id
? arg
->job_id
: NULL
, bs
, target_bs
,
4023 arg
->has_replaces
, arg
->replaces
, arg
->sync
,
4024 backing_mode
, zero_target
,
4025 arg
->has_speed
, arg
->speed
,
4026 arg
->has_granularity
, arg
->granularity
,
4027 arg
->has_buf_size
, arg
->buf_size
,
4028 arg
->has_on_source_error
, arg
->on_source_error
,
4029 arg
->has_on_target_error
, arg
->on_target_error
,
4030 arg
->has_unmap
, arg
->unmap
,
4032 arg
->has_copy_mode
, arg
->copy_mode
,
4033 arg
->has_auto_finalize
, arg
->auto_finalize
,
4034 arg
->has_auto_dismiss
, arg
->auto_dismiss
,
4036 bdrv_unref(target_bs
);
4037 error_propagate(errp
, local_err
);
4039 aio_context_release(aio_context
);
4042 void qmp_blockdev_mirror(bool has_job_id
, const char *job_id
,
4043 const char *device
, const char *target
,
4044 bool has_replaces
, const char *replaces
,
4045 MirrorSyncMode sync
,
4046 bool has_speed
, int64_t speed
,
4047 bool has_granularity
, uint32_t granularity
,
4048 bool has_buf_size
, int64_t buf_size
,
4049 bool has_on_source_error
,
4050 BlockdevOnError on_source_error
,
4051 bool has_on_target_error
,
4052 BlockdevOnError on_target_error
,
4053 bool has_filter_node_name
,
4054 const char *filter_node_name
,
4055 bool has_copy_mode
, MirrorCopyMode copy_mode
,
4056 bool has_auto_finalize
, bool auto_finalize
,
4057 bool has_auto_dismiss
, bool auto_dismiss
,
4060 BlockDriverState
*bs
;
4061 BlockDriverState
*target_bs
;
4062 AioContext
*aio_context
;
4063 AioContext
*old_context
;
4064 BlockMirrorBackingMode backing_mode
= MIRROR_LEAVE_BACKING_CHAIN
;
4065 Error
*local_err
= NULL
;
4069 bs
= qmp_get_root_bs(device
, errp
);
4074 target_bs
= bdrv_lookup_bs(target
, target
, errp
);
4079 zero_target
= (sync
== MIRROR_SYNC_MODE_FULL
);
4081 /* Honor bdrv_try_set_aio_context() context acquisition requirements. */
4082 old_context
= bdrv_get_aio_context(target_bs
);
4083 aio_context
= bdrv_get_aio_context(bs
);
4084 aio_context_acquire(old_context
);
4086 ret
= bdrv_try_set_aio_context(target_bs
, aio_context
, errp
);
4088 aio_context_release(old_context
);
4089 aio_context_acquire(aio_context
);
4095 blockdev_mirror_common(has_job_id
? job_id
: NULL
, bs
, target_bs
,
4096 has_replaces
, replaces
, sync
, backing_mode
,
4097 zero_target
, has_speed
, speed
,
4098 has_granularity
, granularity
,
4099 has_buf_size
, buf_size
,
4100 has_on_source_error
, on_source_error
,
4101 has_on_target_error
, on_target_error
,
4103 has_filter_node_name
, filter_node_name
,
4104 has_copy_mode
, copy_mode
,
4105 has_auto_finalize
, auto_finalize
,
4106 has_auto_dismiss
, auto_dismiss
,
4108 error_propagate(errp
, local_err
);
4110 aio_context_release(aio_context
);
4113 /* Get a block job using its ID and acquire its AioContext */
4114 static BlockJob
*find_block_job(const char *id
, AioContext
**aio_context
,
4121 *aio_context
= NULL
;
4123 job
= block_job_get(id
);
4126 error_set(errp
, ERROR_CLASS_DEVICE_NOT_ACTIVE
,
4127 "Block job '%s' not found", id
);
4131 *aio_context
= blk_get_aio_context(job
->blk
);
4132 aio_context_acquire(*aio_context
);
4137 void qmp_block_job_set_speed(const char *device
, int64_t speed
, Error
**errp
)
4139 AioContext
*aio_context
;
4140 BlockJob
*job
= find_block_job(device
, &aio_context
, errp
);
4146 block_job_set_speed(job
, speed
, errp
);
4147 aio_context_release(aio_context
);
4150 void qmp_block_job_cancel(const char *device
,
4151 bool has_force
, bool force
, Error
**errp
)
4153 AioContext
*aio_context
;
4154 BlockJob
*job
= find_block_job(device
, &aio_context
, errp
);
4164 if (job_user_paused(&job
->job
) && !force
) {
4165 error_setg(errp
, "The block job for device '%s' is currently paused",
4170 trace_qmp_block_job_cancel(job
);
4171 job_user_cancel(&job
->job
, force
, errp
);
4173 aio_context_release(aio_context
);
4176 void qmp_block_job_pause(const char *device
, Error
**errp
)
4178 AioContext
*aio_context
;
4179 BlockJob
*job
= find_block_job(device
, &aio_context
, errp
);
4185 trace_qmp_block_job_pause(job
);
4186 job_user_pause(&job
->job
, errp
);
4187 aio_context_release(aio_context
);
4190 void qmp_block_job_resume(const char *device
, Error
**errp
)
4192 AioContext
*aio_context
;
4193 BlockJob
*job
= find_block_job(device
, &aio_context
, errp
);
4199 trace_qmp_block_job_resume(job
);
4200 job_user_resume(&job
->job
, errp
);
4201 aio_context_release(aio_context
);
4204 void qmp_block_job_complete(const char *device
, Error
**errp
)
4206 AioContext
*aio_context
;
4207 BlockJob
*job
= find_block_job(device
, &aio_context
, errp
);
4213 trace_qmp_block_job_complete(job
);
4214 job_complete(&job
->job
, errp
);
4215 aio_context_release(aio_context
);
4218 void qmp_block_job_finalize(const char *id
, Error
**errp
)
4220 AioContext
*aio_context
;
4221 BlockJob
*job
= find_block_job(id
, &aio_context
, errp
);
4227 trace_qmp_block_job_finalize(job
);
4228 job_finalize(&job
->job
, errp
);
4229 aio_context_release(aio_context
);
4232 void qmp_block_job_dismiss(const char *id
, Error
**errp
)
4234 AioContext
*aio_context
;
4235 BlockJob
*bjob
= find_block_job(id
, &aio_context
, errp
);
4242 trace_qmp_block_job_dismiss(bjob
);
4244 job_dismiss(&job
, errp
);
4245 aio_context_release(aio_context
);
4248 void qmp_change_backing_file(const char *device
,
4249 const char *image_node_name
,
4250 const char *backing_file
,
4253 BlockDriverState
*bs
= NULL
;
4254 AioContext
*aio_context
;
4255 BlockDriverState
*image_bs
= NULL
;
4256 Error
*local_err
= NULL
;
4260 bs
= qmp_get_root_bs(device
, errp
);
4265 aio_context
= bdrv_get_aio_context(bs
);
4266 aio_context_acquire(aio_context
);
4268 image_bs
= bdrv_lookup_bs(NULL
, image_node_name
, &local_err
);
4270 error_propagate(errp
, local_err
);
4275 error_setg(errp
, "image file not found");
4279 if (bdrv_find_base(image_bs
) == image_bs
) {
4280 error_setg(errp
, "not allowing backing file change on an image "
4281 "without a backing file");
4285 /* even though we are not necessarily operating on bs, we need it to
4286 * determine if block ops are currently prohibited on the chain */
4287 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_CHANGE
, errp
)) {
4291 /* final sanity check */
4292 if (!bdrv_chain_contains(bs
, image_bs
)) {
4293 error_setg(errp
, "'%s' and image file are not in the same chain",
4298 /* if not r/w, reopen to make r/w */
4299 ro
= bdrv_is_read_only(image_bs
);
4302 if (bdrv_reopen_set_read_only(image_bs
, false, errp
) != 0) {
4307 ret
= bdrv_change_backing_file(image_bs
, backing_file
,
4308 image_bs
->drv
? image_bs
->drv
->format_name
: "");
4311 error_setg_errno(errp
, -ret
, "Could not change backing file to '%s'",
4313 /* don't exit here, so we can try to restore open flags if
4318 bdrv_reopen_set_read_only(image_bs
, true, &local_err
);
4319 error_propagate(errp
, local_err
);
4323 aio_context_release(aio_context
);
4326 void hmp_drive_add_node(Monitor
*mon
, const char *optstr
)
4330 Error
*local_err
= NULL
;
4332 opts
= qemu_opts_parse_noisily(&qemu_drive_opts
, optstr
, false);
4337 qdict
= qemu_opts_to_qdict(opts
, NULL
);
4339 if (!qdict_get_try_str(qdict
, "node-name")) {
4340 qobject_unref(qdict
);
4341 error_report("'node-name' needs to be specified");
4345 BlockDriverState
*bs
= bds_tree_init(qdict
, &local_err
);
4347 error_report_err(local_err
);
4351 QTAILQ_INSERT_TAIL(&monitor_bdrv_states
, bs
, monitor_list
);
4354 qemu_opts_del(opts
);
4357 void qmp_blockdev_add(BlockdevOptions
*options
, Error
**errp
)
4359 BlockDriverState
*bs
;
4361 Visitor
*v
= qobject_output_visitor_new(&obj
);
4363 Error
*local_err
= NULL
;
4365 visit_type_BlockdevOptions(v
, NULL
, &options
, &local_err
);
4367 error_propagate(errp
, local_err
);
4371 visit_complete(v
, &obj
);
4372 qdict
= qobject_to(QDict
, obj
);
4374 qdict_flatten(qdict
);
4376 if (!qdict_get_try_str(qdict
, "node-name")) {
4377 error_setg(errp
, "'node-name' must be specified for the root node");
4381 bs
= bds_tree_init(qdict
, errp
);
4386 QTAILQ_INSERT_TAIL(&monitor_bdrv_states
, bs
, monitor_list
);
4392 void qmp_x_blockdev_reopen(BlockdevOptions
*options
, Error
**errp
)
4394 BlockDriverState
*bs
;
4397 Visitor
*v
= qobject_output_visitor_new(&obj
);
4398 Error
*local_err
= NULL
;
4399 BlockReopenQueue
*queue
;
4402 /* Check for the selected node name */
4403 if (!options
->has_node_name
) {
4404 error_setg(errp
, "Node name not specified");
4408 bs
= bdrv_find_node(options
->node_name
);
4410 error_setg(errp
, "Cannot find node named '%s'", options
->node_name
);
4414 /* Put all options in a QDict and flatten it */
4415 visit_type_BlockdevOptions(v
, NULL
, &options
, &local_err
);
4417 error_propagate(errp
, local_err
);
4421 visit_complete(v
, &obj
);
4422 qdict
= qobject_to(QDict
, obj
);
4424 qdict_flatten(qdict
);
4426 /* Perform the reopen operation */
4427 ctx
= bdrv_get_aio_context(bs
);
4428 aio_context_acquire(ctx
);
4429 bdrv_subtree_drained_begin(bs
);
4430 queue
= bdrv_reopen_queue(NULL
, bs
, qdict
, false);
4431 bdrv_reopen_multiple(queue
, errp
);
4432 bdrv_subtree_drained_end(bs
);
4433 aio_context_release(ctx
);
4439 void qmp_blockdev_del(const char *node_name
, Error
**errp
)
4441 AioContext
*aio_context
;
4442 BlockDriverState
*bs
;
4444 bs
= bdrv_find_node(node_name
);
4446 error_setg(errp
, "Cannot find node %s", node_name
);
4449 if (bdrv_has_blk(bs
)) {
4450 error_setg(errp
, "Node %s is in use", node_name
);
4453 aio_context
= bdrv_get_aio_context(bs
);
4454 aio_context_acquire(aio_context
);
4456 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_DRIVE_DEL
, errp
)) {
4460 if (!QTAILQ_IN_USE(bs
, monitor_list
)) {
4461 error_setg(errp
, "Node %s is not owned by the monitor",
4466 if (bs
->refcnt
> 1) {
4467 error_setg(errp
, "Block device %s is in use",
4468 bdrv_get_device_or_node_name(bs
));
4472 QTAILQ_REMOVE(&monitor_bdrv_states
, bs
, monitor_list
);
4476 aio_context_release(aio_context
);
4479 static BdrvChild
*bdrv_find_child(BlockDriverState
*parent_bs
,
4480 const char *child_name
)
4484 QLIST_FOREACH(child
, &parent_bs
->children
, next
) {
4485 if (strcmp(child
->name
, child_name
) == 0) {
4493 void qmp_x_blockdev_change(const char *parent
, bool has_child
,
4494 const char *child
, bool has_node
,
4495 const char *node
, Error
**errp
)
4497 BlockDriverState
*parent_bs
, *new_bs
= NULL
;
4500 parent_bs
= bdrv_lookup_bs(parent
, parent
, errp
);
4505 if (has_child
== has_node
) {
4507 error_setg(errp
, "The parameters child and node are in conflict");
4509 error_setg(errp
, "Either child or node must be specified");
4515 p_child
= bdrv_find_child(parent_bs
, child
);
4517 error_setg(errp
, "Node '%s' does not have child '%s'",
4521 bdrv_del_child(parent_bs
, p_child
, errp
);
4525 new_bs
= bdrv_find_node(node
);
4527 error_setg(errp
, "Node '%s' not found", node
);
4530 bdrv_add_child(parent_bs
, new_bs
, errp
);
4534 BlockJobInfoList
*qmp_query_block_jobs(Error
**errp
)
4536 BlockJobInfoList
*head
= NULL
, **p_next
= &head
;
4539 for (job
= block_job_next(NULL
); job
; job
= block_job_next(job
)) {
4540 BlockJobInfoList
*elem
;
4541 AioContext
*aio_context
;
4543 if (block_job_is_internal(job
)) {
4546 elem
= g_new0(BlockJobInfoList
, 1);
4547 aio_context
= blk_get_aio_context(job
->blk
);
4548 aio_context_acquire(aio_context
);
4549 elem
->value
= block_job_query(job
, errp
);
4550 aio_context_release(aio_context
);
4553 qapi_free_BlockJobInfoList(head
);
4557 p_next
= &elem
->next
;
4563 void qmp_x_blockdev_set_iothread(const char *node_name
, StrOrNull
*iothread
,
4564 bool has_force
, bool force
, Error
**errp
)
4566 AioContext
*old_context
;
4567 AioContext
*new_context
;
4568 BlockDriverState
*bs
;
4570 bs
= bdrv_find_node(node_name
);
4572 error_setg(errp
, "Cannot find node %s", node_name
);
4576 /* Protects against accidents. */
4577 if (!(has_force
&& force
) && bdrv_has_blk(bs
)) {
4578 error_setg(errp
, "Node %s is associated with a BlockBackend and could "
4579 "be in use (use force=true to override this check)",
4584 if (iothread
->type
== QTYPE_QSTRING
) {
4585 IOThread
*obj
= iothread_by_id(iothread
->u
.s
);
4587 error_setg(errp
, "Cannot find iothread %s", iothread
->u
.s
);
4591 new_context
= iothread_get_aio_context(obj
);
4593 new_context
= qemu_get_aio_context();
4596 old_context
= bdrv_get_aio_context(bs
);
4597 aio_context_acquire(old_context
);
4599 bdrv_try_set_aio_context(bs
, new_context
, errp
);
4601 aio_context_release(old_context
);
4604 void qmp_block_latency_histogram_set(
4606 bool has_boundaries
, uint64List
*boundaries
,
4607 bool has_boundaries_read
, uint64List
*boundaries_read
,
4608 bool has_boundaries_write
, uint64List
*boundaries_write
,
4609 bool has_boundaries_flush
, uint64List
*boundaries_flush
,
4612 BlockBackend
*blk
= qmp_get_blk(NULL
, id
, errp
);
4613 BlockAcctStats
*stats
;
4620 stats
= blk_get_stats(blk
);
4622 if (!has_boundaries
&& !has_boundaries_read
&& !has_boundaries_write
&&
4623 !has_boundaries_flush
)
4625 block_latency_histograms_clear(stats
);
4629 if (has_boundaries
|| has_boundaries_read
) {
4630 ret
= block_latency_histogram_set(
4631 stats
, BLOCK_ACCT_READ
,
4632 has_boundaries_read
? boundaries_read
: boundaries
);
4634 error_setg(errp
, "Device '%s' set read boundaries fail", id
);
4639 if (has_boundaries
|| has_boundaries_write
) {
4640 ret
= block_latency_histogram_set(
4641 stats
, BLOCK_ACCT_WRITE
,
4642 has_boundaries_write
? boundaries_write
: boundaries
);
4644 error_setg(errp
, "Device '%s' set write boundaries fail", id
);
4649 if (has_boundaries
|| has_boundaries_flush
) {
4650 ret
= block_latency_histogram_set(
4651 stats
, BLOCK_ACCT_FLUSH
,
4652 has_boundaries_flush
? boundaries_flush
: boundaries
);
4654 error_setg(errp
, "Device '%s' set flush boundaries fail", id
);
4660 QemuOptsList qemu_common_drive_opts
= {
4662 .head
= QTAILQ_HEAD_INITIALIZER(qemu_common_drive_opts
.head
),
4666 .type
= QEMU_OPT_BOOL
,
4667 .help
= "enable/disable snapshot mode",
4670 .type
= QEMU_OPT_STRING
,
4671 .help
= "host AIO implementation (threads, native, io_uring)",
4673 .name
= BDRV_OPT_CACHE_WB
,
4674 .type
= QEMU_OPT_BOOL
,
4675 .help
= "Enable writeback mode",
4678 .type
= QEMU_OPT_STRING
,
4679 .help
= "disk format (raw, qcow2, ...)",
4682 .type
= QEMU_OPT_STRING
,
4683 .help
= "read error action",
4686 .type
= QEMU_OPT_STRING
,
4687 .help
= "write error action",
4689 .name
= BDRV_OPT_READ_ONLY
,
4690 .type
= QEMU_OPT_BOOL
,
4691 .help
= "open drive file as read-only",
4697 .name
= "throttling.group",
4698 .type
= QEMU_OPT_STRING
,
4699 .help
= "name of the block throttling group",
4701 .name
= "copy-on-read",
4702 .type
= QEMU_OPT_BOOL
,
4703 .help
= "copy read data from backing file into image file",
4705 .name
= "detect-zeroes",
4706 .type
= QEMU_OPT_STRING
,
4707 .help
= "try to optimize zero writes (off, on, unmap)",
4709 .name
= "stats-account-invalid",
4710 .type
= QEMU_OPT_BOOL
,
4711 .help
= "whether to account for invalid I/O operations "
4712 "in the statistics",
4714 .name
= "stats-account-failed",
4715 .type
= QEMU_OPT_BOOL
,
4716 .help
= "whether to account for failed I/O operations "
4717 "in the statistics",
4719 { /* end of list */ }
4723 QemuOptsList qemu_drive_opts
= {
4725 .head
= QTAILQ_HEAD_INITIALIZER(qemu_drive_opts
.head
),
4728 * no elements => accept any params
4729 * validation will happen later
4731 { /* end of list */ }