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 "sysemu/block-backend.h"
34 #include "sysemu/blockdev.h"
35 #include "hw/block/block.h"
36 #include "block/blockjob.h"
37 #include "monitor/monitor.h"
38 #include "qemu/option.h"
39 #include "qemu/config-file.h"
40 #include "qapi/qmp/types.h"
41 #include "qapi-visit.h"
42 #include "qapi/qmp-output-visitor.h"
43 #include "qapi/util.h"
44 #include "sysemu/sysemu.h"
45 #include "block/block_int.h"
46 #include "qmp-commands.h"
48 #include "sysemu/arch_init.h"
50 static const char *const if_name
[IF_COUNT
] = {
54 [IF_FLOPPY
] = "floppy",
55 [IF_PFLASH
] = "pflash",
58 [IF_VIRTIO
] = "virtio",
62 static int if_max_devs
[IF_COUNT
] = {
64 * Do not change these numbers! They govern how drive option
65 * index maps to unit and bus. That mapping is ABI.
67 * All controllers used to imlement if=T drives need to support
68 * if_max_devs[T] units, for any T with if_max_devs[T] != 0.
69 * Otherwise, some index values map to "impossible" bus, unit
72 * For instance, if you change [IF_SCSI] to 255, -drive
73 * if=scsi,index=12 no longer means bus=1,unit=5, but
74 * bus=0,unit=12. With an lsi53c895a controller (7 units max),
75 * the drive can't be set up. Regression.
82 * Boards may call this to offer board-by-board overrides
83 * of the default, global values.
85 void override_max_devs(BlockInterfaceType type
, int max_devs
)
94 for (blk
= blk_next(NULL
); blk
; blk
= blk_next(blk
)) {
95 dinfo
= blk_legacy_dinfo(blk
);
96 if (dinfo
->type
== type
) {
97 fprintf(stderr
, "Cannot override units-per-bus property of"
98 " the %s interface, because a drive of that type has"
99 " already been added.\n", if_name
[type
]);
100 g_assert_not_reached();
104 if_max_devs
[type
] = max_devs
;
108 * We automatically delete the drive when a device using it gets
109 * unplugged. Questionable feature, but we can't just drop it.
110 * Device models call blockdev_mark_auto_del() to schedule the
111 * automatic deletion, and generic qdev code calls blockdev_auto_del()
112 * when deletion is actually safe.
114 void blockdev_mark_auto_del(BlockBackend
*blk
)
116 DriveInfo
*dinfo
= blk_legacy_dinfo(blk
);
117 BlockDriverState
*bs
= blk_bs(blk
);
119 if (dinfo
&& !dinfo
->enable_auto_del
) {
124 block_job_cancel(bs
->job
);
131 void blockdev_auto_del(BlockBackend
*blk
)
133 DriveInfo
*dinfo
= blk_legacy_dinfo(blk
);
135 if (dinfo
&& dinfo
->auto_del
) {
141 * Returns the current mapping of how many units per bus
142 * a particular interface can support.
144 * A positive integer indicates n units per bus.
145 * 0 implies the mapping has not been established.
146 * -1 indicates an invalid BlockInterfaceType was given.
148 int drive_get_max_devs(BlockInterfaceType type
)
150 if (type
>= IF_IDE
&& type
< IF_COUNT
) {
151 return if_max_devs
[type
];
157 static int drive_index_to_bus_id(BlockInterfaceType type
, int index
)
159 int max_devs
= if_max_devs
[type
];
160 return max_devs
? index
/ max_devs
: 0;
163 static int drive_index_to_unit_id(BlockInterfaceType type
, int index
)
165 int max_devs
= if_max_devs
[type
];
166 return max_devs
? index
% max_devs
: index
;
169 QemuOpts
*drive_def(const char *optstr
)
171 return qemu_opts_parse(qemu_find_opts("drive"), optstr
, 0);
174 QemuOpts
*drive_add(BlockInterfaceType type
, int index
, const char *file
,
180 opts
= drive_def(optstr
);
184 if (type
!= IF_DEFAULT
) {
185 qemu_opt_set(opts
, "if", if_name
[type
]);
188 snprintf(buf
, sizeof(buf
), "%d", index
);
189 qemu_opt_set(opts
, "index", buf
);
192 qemu_opt_set(opts
, "file", file
);
196 DriveInfo
*drive_get(BlockInterfaceType type
, int bus
, int unit
)
201 for (blk
= blk_next(NULL
); blk
; blk
= blk_next(blk
)) {
202 dinfo
= blk_legacy_dinfo(blk
);
203 if (dinfo
&& dinfo
->type
== type
204 && dinfo
->bus
== bus
&& dinfo
->unit
== unit
) {
212 bool drive_check_orphaned(void)
218 for (blk
= blk_next(NULL
); blk
; blk
= blk_next(blk
)) {
219 dinfo
= blk_legacy_dinfo(blk
);
220 /* If dinfo->bdrv->dev is NULL, it has no device attached. */
221 /* Unless this is a default drive, this may be an oversight. */
222 if (!blk_bs(blk
)->dev
&& !dinfo
->is_default
&&
223 dinfo
->type
!= IF_NONE
) {
224 fprintf(stderr
, "Warning: Orphaned drive without device: "
225 "id=%s,file=%s,if=%s,bus=%d,unit=%d\n",
226 blk_name(blk
), blk_bs(blk
)->filename
, if_name
[dinfo
->type
],
227 dinfo
->bus
, dinfo
->unit
);
235 DriveInfo
*drive_get_by_index(BlockInterfaceType type
, int index
)
237 return drive_get(type
,
238 drive_index_to_bus_id(type
, index
),
239 drive_index_to_unit_id(type
, index
));
242 int drive_get_max_bus(BlockInterfaceType type
)
249 for (blk
= blk_next(NULL
); blk
; blk
= blk_next(blk
)) {
250 dinfo
= blk_legacy_dinfo(blk
);
251 if (dinfo
&& dinfo
->type
== type
&& dinfo
->bus
> max_bus
) {
252 max_bus
= dinfo
->bus
;
258 /* Get a block device. This should only be used for single-drive devices
259 (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the
261 DriveInfo
*drive_get_next(BlockInterfaceType type
)
263 static int next_block_unit
[IF_COUNT
];
265 return drive_get(type
, 0, next_block_unit
[type
]++);
268 static void bdrv_format_print(void *opaque
, const char *name
)
270 error_printf(" %s", name
);
275 BlockDriverState
*bs
;
278 static void bdrv_put_ref_bh(void *opaque
)
280 BDRVPutRefBH
*s
= opaque
;
283 qemu_bh_delete(s
->bh
);
288 * Release a BDS reference in a BH
290 * It is not safe to use bdrv_unref() from a callback function when the callers
291 * still need the BlockDriverState. In such cases we schedule a BH to release
294 static void bdrv_put_ref_bh_schedule(BlockDriverState
*bs
)
298 s
= g_new(BDRVPutRefBH
, 1);
299 s
->bh
= qemu_bh_new(bdrv_put_ref_bh
, s
);
301 qemu_bh_schedule(s
->bh
);
304 static int parse_block_error_action(const char *buf
, bool is_read
, Error
**errp
)
306 if (!strcmp(buf
, "ignore")) {
307 return BLOCKDEV_ON_ERROR_IGNORE
;
308 } else if (!is_read
&& !strcmp(buf
, "enospc")) {
309 return BLOCKDEV_ON_ERROR_ENOSPC
;
310 } else if (!strcmp(buf
, "stop")) {
311 return BLOCKDEV_ON_ERROR_STOP
;
312 } else if (!strcmp(buf
, "report")) {
313 return BLOCKDEV_ON_ERROR_REPORT
;
315 error_setg(errp
, "'%s' invalid %s error action",
316 buf
, is_read
? "read" : "write");
321 static bool check_throttle_config(ThrottleConfig
*cfg
, Error
**errp
)
323 if (throttle_conflicting(cfg
)) {
324 error_setg(errp
, "bps/iops/max total values and read/write values"
325 " cannot be used at the same time");
329 if (!throttle_is_valid(cfg
)) {
330 error_setg(errp
, "bps/iops/maxs values must be 0 or greater");
337 typedef enum { MEDIA_DISK
, MEDIA_CDROM
} DriveMediaType
;
339 /* Takes the ownership of bs_opts */
340 static BlockBackend
*blockdev_init(const char *file
, QDict
*bs_opts
,
346 int on_read_error
, on_write_error
;
348 BlockDriverState
*bs
;
357 bool has_driver_specific_opts
;
358 BlockdevDetectZeroesOptions detect_zeroes
;
359 BlockDriver
*drv
= NULL
;
361 /* Check common options by copying from bs_opts to opts, all other options
362 * stay in bs_opts for processing by bdrv_open(). */
363 id
= qdict_get_try_str(bs_opts
, "id");
364 opts
= qemu_opts_create(&qemu_common_drive_opts
, id
, 1, &error
);
366 error_propagate(errp
, error
);
370 qemu_opts_absorb_qdict(opts
, bs_opts
, &error
);
372 error_propagate(errp
, error
);
377 qdict_del(bs_opts
, "id");
380 has_driver_specific_opts
= !!qdict_size(bs_opts
);
382 /* extract parameters */
383 snapshot
= qemu_opt_get_bool(opts
, "snapshot", 0);
384 ro
= qemu_opt_get_bool(opts
, "read-only", 0);
385 copy_on_read
= qemu_opt_get_bool(opts
, "copy-on-read", false);
387 if ((buf
= qemu_opt_get(opts
, "discard")) != NULL
) {
388 if (bdrv_parse_discard_flags(buf
, &bdrv_flags
) != 0) {
389 error_setg(errp
, "invalid discard option");
394 if (qemu_opt_get_bool(opts
, "cache.writeback", true)) {
395 bdrv_flags
|= BDRV_O_CACHE_WB
;
397 if (qemu_opt_get_bool(opts
, "cache.direct", false)) {
398 bdrv_flags
|= BDRV_O_NOCACHE
;
400 if (qemu_opt_get_bool(opts
, "cache.no-flush", false)) {
401 bdrv_flags
|= BDRV_O_NO_FLUSH
;
404 #ifdef CONFIG_LINUX_AIO
405 if ((buf
= qemu_opt_get(opts
, "aio")) != NULL
) {
406 if (!strcmp(buf
, "native")) {
407 bdrv_flags
|= BDRV_O_NATIVE_AIO
;
408 } else if (!strcmp(buf
, "threads")) {
409 /* this is the default */
411 error_setg(errp
, "invalid aio option");
417 if ((buf
= qemu_opt_get(opts
, "format")) != NULL
) {
418 if (is_help_option(buf
)) {
419 error_printf("Supported formats:");
420 bdrv_iterate_format(bdrv_format_print
, NULL
);
425 drv
= bdrv_find_format(buf
);
427 error_setg(errp
, "'%s' invalid format", buf
);
432 /* disk I/O throttling */
433 memset(&cfg
, 0, sizeof(cfg
));
434 cfg
.buckets
[THROTTLE_BPS_TOTAL
].avg
=
435 qemu_opt_get_number(opts
, "throttling.bps-total", 0);
436 cfg
.buckets
[THROTTLE_BPS_READ
].avg
=
437 qemu_opt_get_number(opts
, "throttling.bps-read", 0);
438 cfg
.buckets
[THROTTLE_BPS_WRITE
].avg
=
439 qemu_opt_get_number(opts
, "throttling.bps-write", 0);
440 cfg
.buckets
[THROTTLE_OPS_TOTAL
].avg
=
441 qemu_opt_get_number(opts
, "throttling.iops-total", 0);
442 cfg
.buckets
[THROTTLE_OPS_READ
].avg
=
443 qemu_opt_get_number(opts
, "throttling.iops-read", 0);
444 cfg
.buckets
[THROTTLE_OPS_WRITE
].avg
=
445 qemu_opt_get_number(opts
, "throttling.iops-write", 0);
447 cfg
.buckets
[THROTTLE_BPS_TOTAL
].max
=
448 qemu_opt_get_number(opts
, "throttling.bps-total-max", 0);
449 cfg
.buckets
[THROTTLE_BPS_READ
].max
=
450 qemu_opt_get_number(opts
, "throttling.bps-read-max", 0);
451 cfg
.buckets
[THROTTLE_BPS_WRITE
].max
=
452 qemu_opt_get_number(opts
, "throttling.bps-write-max", 0);
453 cfg
.buckets
[THROTTLE_OPS_TOTAL
].max
=
454 qemu_opt_get_number(opts
, "throttling.iops-total-max", 0);
455 cfg
.buckets
[THROTTLE_OPS_READ
].max
=
456 qemu_opt_get_number(opts
, "throttling.iops-read-max", 0);
457 cfg
.buckets
[THROTTLE_OPS_WRITE
].max
=
458 qemu_opt_get_number(opts
, "throttling.iops-write-max", 0);
460 cfg
.op_size
= qemu_opt_get_number(opts
, "throttling.iops-size", 0);
462 if (!check_throttle_config(&cfg
, &error
)) {
463 error_propagate(errp
, error
);
467 on_write_error
= BLOCKDEV_ON_ERROR_ENOSPC
;
468 if ((buf
= qemu_opt_get(opts
, "werror")) != NULL
) {
469 on_write_error
= parse_block_error_action(buf
, 0, &error
);
471 error_propagate(errp
, error
);
476 on_read_error
= BLOCKDEV_ON_ERROR_REPORT
;
477 if ((buf
= qemu_opt_get(opts
, "rerror")) != NULL
) {
478 on_read_error
= parse_block_error_action(buf
, 1, &error
);
480 error_propagate(errp
, error
);
486 qapi_enum_parse(BlockdevDetectZeroesOptions_lookup
,
487 qemu_opt_get(opts
, "detect-zeroes"),
488 BLOCKDEV_DETECT_ZEROES_OPTIONS_MAX
,
489 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
,
492 error_propagate(errp
, error
);
496 if (detect_zeroes
== BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP
&&
497 !(bdrv_flags
& BDRV_O_UNMAP
)) {
498 error_setg(errp
, "setting detect-zeroes to unmap is not allowed "
499 "without setting discard operation to unmap");
504 blk
= blk_new_with_bs(qemu_opts_id(opts
), errp
);
509 bs
->open_flags
= snapshot
? BDRV_O_SNAPSHOT
: 0;
511 bs
->detect_zeroes
= detect_zeroes
;
513 bdrv_set_on_error(bs
, on_read_error
, on_write_error
);
515 /* disk I/O throttling */
516 if (throttle_enabled(&cfg
)) {
517 bdrv_io_limits_enable(bs
);
518 bdrv_set_io_limits(bs
, &cfg
);
521 dinfo
= g_malloc0(sizeof(*dinfo
));
522 blk_set_legacy_dinfo(blk
, dinfo
);
524 if (!file
|| !*file
) {
525 if (has_driver_specific_opts
) {
534 /* always use cache=unsafe with snapshot */
535 bdrv_flags
&= ~BDRV_O_CACHE_MASK
;
536 bdrv_flags
|= (BDRV_O_SNAPSHOT
|BDRV_O_CACHE_WB
|BDRV_O_NO_FLUSH
);
540 bdrv_flags
|= BDRV_O_COPY_ON_READ
;
543 if (runstate_check(RUN_STATE_INMIGRATE
)) {
544 bdrv_flags
|= BDRV_O_INCOMING
;
547 bdrv_flags
|= ro
? 0 : BDRV_O_RDWR
;
550 ret
= bdrv_open(&bs
, file
, NULL
, bs_opts
, bdrv_flags
, drv
, &error
);
551 assert(bs
== blk_bs(blk
));
554 error_setg(errp
, "could not open disk image %s: %s",
555 file
?: blk_name(blk
), error_get_pretty(error
));
560 if (bdrv_key_required(bs
)) {
578 static void qemu_opt_rename(QemuOpts
*opts
, const char *from
, const char *to
,
583 value
= qemu_opt_get(opts
, from
);
585 if (qemu_opt_find(opts
, to
)) {
586 error_setg(errp
, "'%s' and its alias '%s' can't be used at the "
587 "same time", to
, from
);
592 /* rename all items in opts */
593 while ((value
= qemu_opt_get(opts
, from
))) {
594 qemu_opt_set(opts
, to
, value
);
595 qemu_opt_unset(opts
, from
);
599 QemuOptsList qemu_legacy_drive_opts
= {
601 .head
= QTAILQ_HEAD_INITIALIZER(qemu_legacy_drive_opts
.head
),
605 .type
= QEMU_OPT_NUMBER
,
606 .help
= "bus number",
609 .type
= QEMU_OPT_NUMBER
,
610 .help
= "unit number (i.e. lun for scsi)",
613 .type
= QEMU_OPT_NUMBER
,
614 .help
= "index number",
617 .type
= QEMU_OPT_STRING
,
618 .help
= "media type (disk, cdrom)",
621 .type
= QEMU_OPT_STRING
,
622 .help
= "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
625 .type
= QEMU_OPT_NUMBER
,
626 .help
= "number of cylinders (ide disk geometry)",
629 .type
= QEMU_OPT_NUMBER
,
630 .help
= "number of heads (ide disk geometry)",
633 .type
= QEMU_OPT_NUMBER
,
634 .help
= "number of sectors (ide disk geometry)",
637 .type
= QEMU_OPT_STRING
,
638 .help
= "chs translation (auto, lba, none)",
641 .type
= QEMU_OPT_BOOL
,
642 .help
= "(deprecated, ignored)",
645 .type
= QEMU_OPT_STRING
,
646 .help
= "pci address (virtio only)",
649 .type
= QEMU_OPT_STRING
,
650 .help
= "disk serial number",
653 .type
= QEMU_OPT_STRING
,
657 /* Options that are passed on, but have special semantics with -drive */
660 .type
= QEMU_OPT_BOOL
,
661 .help
= "open drive file as read-only",
664 .type
= QEMU_OPT_STRING
,
665 .help
= "read error action",
668 .type
= QEMU_OPT_STRING
,
669 .help
= "write error action",
671 .name
= "copy-on-read",
672 .type
= QEMU_OPT_BOOL
,
673 .help
= "copy read data from backing file into image file",
676 { /* end of list */ }
680 DriveInfo
*drive_new(QemuOpts
*all_opts
, BlockInterfaceType block_default_type
)
684 DriveInfo
*dinfo
= NULL
;
686 QemuOpts
*legacy_opts
;
687 DriveMediaType media
= MEDIA_DISK
;
688 BlockInterfaceType type
;
689 int cyls
, heads
, secs
, translation
;
690 int max_devs
, bus_id
, unit_id
, index
;
692 const char *werror
, *rerror
;
693 bool read_only
= false;
696 const char *filename
;
697 Error
*local_err
= NULL
;
700 /* Change legacy command line options into QMP ones */
701 static const struct {
705 { "iops", "throttling.iops-total" },
706 { "iops_rd", "throttling.iops-read" },
707 { "iops_wr", "throttling.iops-write" },
709 { "bps", "throttling.bps-total" },
710 { "bps_rd", "throttling.bps-read" },
711 { "bps_wr", "throttling.bps-write" },
713 { "iops_max", "throttling.iops-total-max" },
714 { "iops_rd_max", "throttling.iops-read-max" },
715 { "iops_wr_max", "throttling.iops-write-max" },
717 { "bps_max", "throttling.bps-total-max" },
718 { "bps_rd_max", "throttling.bps-read-max" },
719 { "bps_wr_max", "throttling.bps-write-max" },
721 { "iops_size", "throttling.iops-size" },
723 { "readonly", "read-only" },
726 for (i
= 0; i
< ARRAY_SIZE(opt_renames
); i
++) {
727 qemu_opt_rename(all_opts
, opt_renames
[i
].from
, opt_renames
[i
].to
,
730 error_report("%s", error_get_pretty(local_err
));
731 error_free(local_err
);
736 value
= qemu_opt_get(all_opts
, "cache");
740 if (bdrv_parse_cache_flags(value
, &flags
) != 0) {
741 error_report("invalid cache option");
745 /* Specific options take precedence */
746 if (!qemu_opt_get(all_opts
, "cache.writeback")) {
747 qemu_opt_set_bool(all_opts
, "cache.writeback",
748 !!(flags
& BDRV_O_CACHE_WB
));
750 if (!qemu_opt_get(all_opts
, "cache.direct")) {
751 qemu_opt_set_bool(all_opts
, "cache.direct",
752 !!(flags
& BDRV_O_NOCACHE
));
754 if (!qemu_opt_get(all_opts
, "cache.no-flush")) {
755 qemu_opt_set_bool(all_opts
, "cache.no-flush",
756 !!(flags
& BDRV_O_NO_FLUSH
));
758 qemu_opt_unset(all_opts
, "cache");
761 /* Get a QDict for processing the options */
762 bs_opts
= qdict_new();
763 qemu_opts_to_qdict(all_opts
, bs_opts
);
765 legacy_opts
= qemu_opts_create(&qemu_legacy_drive_opts
, NULL
, 0,
767 qemu_opts_absorb_qdict(legacy_opts
, bs_opts
, &local_err
);
769 error_report("%s", error_get_pretty(local_err
));
770 error_free(local_err
);
774 /* Deprecated option boot=[on|off] */
775 if (qemu_opt_get(legacy_opts
, "boot") != NULL
) {
776 fprintf(stderr
, "qemu-kvm: boot=on|off is deprecated and will be "
777 "ignored. Future versions will reject this parameter. Please "
778 "update your scripts.\n");
782 value
= qemu_opt_get(legacy_opts
, "media");
784 if (!strcmp(value
, "disk")) {
786 } else if (!strcmp(value
, "cdrom")) {
790 error_report("'%s' invalid media", value
);
795 /* copy-on-read is disabled with a warning for read-only devices */
796 read_only
|= qemu_opt_get_bool(legacy_opts
, "read-only", false);
797 copy_on_read
= qemu_opt_get_bool(legacy_opts
, "copy-on-read", false);
799 if (read_only
&& copy_on_read
) {
800 error_report("warning: disabling copy-on-read on read-only drive");
801 copy_on_read
= false;
804 qdict_put(bs_opts
, "read-only",
805 qstring_from_str(read_only
? "on" : "off"));
806 qdict_put(bs_opts
, "copy-on-read",
807 qstring_from_str(copy_on_read
? "on" :"off"));
809 /* Controller type */
810 value
= qemu_opt_get(legacy_opts
, "if");
813 type
< IF_COUNT
&& strcmp(value
, if_name
[type
]);
816 if (type
== IF_COUNT
) {
817 error_report("unsupported bus type '%s'", value
);
821 type
= block_default_type
;
825 cyls
= qemu_opt_get_number(legacy_opts
, "cyls", 0);
826 heads
= qemu_opt_get_number(legacy_opts
, "heads", 0);
827 secs
= qemu_opt_get_number(legacy_opts
, "secs", 0);
829 if (cyls
|| heads
|| secs
) {
831 error_report("invalid physical cyls number");
835 error_report("invalid physical heads number");
839 error_report("invalid physical secs number");
844 translation
= BIOS_ATA_TRANSLATION_AUTO
;
845 value
= qemu_opt_get(legacy_opts
, "trans");
848 error_report("'%s' trans must be used with cyls, heads and secs",
852 if (!strcmp(value
, "none")) {
853 translation
= BIOS_ATA_TRANSLATION_NONE
;
854 } else if (!strcmp(value
, "lba")) {
855 translation
= BIOS_ATA_TRANSLATION_LBA
;
856 } else if (!strcmp(value
, "large")) {
857 translation
= BIOS_ATA_TRANSLATION_LARGE
;
858 } else if (!strcmp(value
, "rechs")) {
859 translation
= BIOS_ATA_TRANSLATION_RECHS
;
860 } else if (!strcmp(value
, "auto")) {
861 translation
= BIOS_ATA_TRANSLATION_AUTO
;
863 error_report("'%s' invalid translation type", value
);
868 if (media
== MEDIA_CDROM
) {
869 if (cyls
|| secs
|| heads
) {
870 error_report("CHS can't be set with media=cdrom");
875 /* Device address specified by bus/unit or index.
876 * If none was specified, try to find the first free one. */
877 bus_id
= qemu_opt_get_number(legacy_opts
, "bus", 0);
878 unit_id
= qemu_opt_get_number(legacy_opts
, "unit", -1);
879 index
= qemu_opt_get_number(legacy_opts
, "index", -1);
881 max_devs
= if_max_devs
[type
];
884 if (bus_id
!= 0 || unit_id
!= -1) {
885 error_report("index cannot be used with bus and unit");
888 bus_id
= drive_index_to_bus_id(type
, index
);
889 unit_id
= drive_index_to_unit_id(type
, index
);
894 while (drive_get(type
, bus_id
, unit_id
) != NULL
) {
896 if (max_devs
&& unit_id
>= max_devs
) {
903 if (max_devs
&& unit_id
>= max_devs
) {
904 error_report("unit %d too big (max is %d)", unit_id
, max_devs
- 1);
908 if (drive_get(type
, bus_id
, unit_id
) != NULL
) {
909 error_report("drive with bus=%d, unit=%d (index=%d) exists",
910 bus_id
, unit_id
, index
);
915 serial
= qemu_opt_get(legacy_opts
, "serial");
917 /* no id supplied -> create one */
918 if (qemu_opts_id(all_opts
) == NULL
) {
920 const char *mediastr
= "";
921 if (type
== IF_IDE
|| type
== IF_SCSI
) {
922 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
925 new_id
= g_strdup_printf("%s%i%s%i", if_name
[type
], bus_id
,
928 new_id
= g_strdup_printf("%s%s%i", if_name
[type
],
931 qdict_put(bs_opts
, "id", qstring_from_str(new_id
));
935 /* Add virtio block device */
936 devaddr
= qemu_opt_get(legacy_opts
, "addr");
937 if (devaddr
&& type
!= IF_VIRTIO
) {
938 error_report("addr is not supported by this bus type");
942 if (type
== IF_VIRTIO
) {
944 devopts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
946 if (arch_type
== QEMU_ARCH_S390X
) {
947 qemu_opt_set(devopts
, "driver", "virtio-blk-s390");
949 qemu_opt_set(devopts
, "driver", "virtio-blk-pci");
951 qemu_opt_set(devopts
, "drive", qdict_get_str(bs_opts
, "id"));
953 qemu_opt_set(devopts
, "addr", devaddr
);
957 filename
= qemu_opt_get(legacy_opts
, "file");
959 /* Check werror/rerror compatibility with if=... */
960 werror
= qemu_opt_get(legacy_opts
, "werror");
961 if (werror
!= NULL
) {
962 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
&&
964 error_report("werror is not supported by this bus type");
967 qdict_put(bs_opts
, "werror", qstring_from_str(werror
));
970 rerror
= qemu_opt_get(legacy_opts
, "rerror");
971 if (rerror
!= NULL
) {
972 if (type
!= IF_IDE
&& type
!= IF_VIRTIO
&& type
!= IF_SCSI
&&
974 error_report("rerror is not supported by this bus type");
977 qdict_put(bs_opts
, "rerror", qstring_from_str(rerror
));
980 /* Actual block device init: Functionality shared with blockdev-add */
981 blk
= blockdev_init(filename
, bs_opts
, &local_err
);
985 error_report("%s", error_get_pretty(local_err
));
986 error_free(local_err
);
993 /* Set legacy DriveInfo fields */
994 dinfo
= blk_legacy_dinfo(blk
);
995 dinfo
->enable_auto_del
= true;
996 dinfo
->opts
= all_opts
;
999 dinfo
->heads
= heads
;
1001 dinfo
->trans
= translation
;
1004 dinfo
->bus
= bus_id
;
1005 dinfo
->unit
= unit_id
;
1006 dinfo
->devaddr
= devaddr
;
1008 dinfo
->serial
= g_strdup(serial
);
1015 dinfo
->media_cd
= media
== MEDIA_CDROM
;
1022 qemu_opts_del(legacy_opts
);
1027 void do_commit(Monitor
*mon
, const QDict
*qdict
)
1029 const char *device
= qdict_get_str(qdict
, "device");
1030 BlockDriverState
*bs
;
1033 if (!strcmp(device
, "all")) {
1034 ret
= bdrv_commit_all();
1036 bs
= bdrv_find(device
);
1038 monitor_printf(mon
, "Device '%s' not found\n", device
);
1041 ret
= bdrv_commit(bs
);
1044 monitor_printf(mon
, "'commit' error for '%s': %s\n", device
,
1049 static void blockdev_do_action(int kind
, void *data
, Error
**errp
)
1051 TransactionAction action
;
1052 TransactionActionList list
;
1056 list
.value
= &action
;
1058 qmp_transaction(&list
, errp
);
1061 void qmp_blockdev_snapshot_sync(bool has_device
, const char *device
,
1062 bool has_node_name
, const char *node_name
,
1063 const char *snapshot_file
,
1064 bool has_snapshot_node_name
,
1065 const char *snapshot_node_name
,
1066 bool has_format
, const char *format
,
1067 bool has_mode
, NewImageMode mode
, Error
**errp
)
1069 BlockdevSnapshot snapshot
= {
1070 .has_device
= has_device
,
1071 .device
= (char *) device
,
1072 .has_node_name
= has_node_name
,
1073 .node_name
= (char *) node_name
,
1074 .snapshot_file
= (char *) snapshot_file
,
1075 .has_snapshot_node_name
= has_snapshot_node_name
,
1076 .snapshot_node_name
= (char *) snapshot_node_name
,
1077 .has_format
= has_format
,
1078 .format
= (char *) format
,
1079 .has_mode
= has_mode
,
1082 blockdev_do_action(TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
,
1086 void qmp_blockdev_snapshot_internal_sync(const char *device
,
1090 BlockdevSnapshotInternal snapshot
= {
1091 .device
= (char *) device
,
1092 .name
= (char *) name
1095 blockdev_do_action(TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC
,
1099 SnapshotInfo
*qmp_blockdev_snapshot_delete_internal_sync(const char *device
,
1106 BlockDriverState
*bs
= bdrv_find(device
);
1107 QEMUSnapshotInfo sn
;
1108 Error
*local_err
= NULL
;
1109 SnapshotInfo
*info
= NULL
;
1113 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1126 error_setg(errp
, "Name or id must be provided");
1130 ret
= bdrv_snapshot_find_by_id_and_name(bs
, id
, name
, &sn
, &local_err
);
1132 error_propagate(errp
, local_err
);
1137 "Snapshot with id '%s' and name '%s' does not exist on "
1139 STR_OR_NULL(id
), STR_OR_NULL(name
), device
);
1143 bdrv_snapshot_delete(bs
, id
, name
, &local_err
);
1145 error_propagate(errp
, local_err
);
1149 info
= g_new0(SnapshotInfo
, 1);
1150 info
->id
= g_strdup(sn
.id_str
);
1151 info
->name
= g_strdup(sn
.name
);
1152 info
->date_nsec
= sn
.date_nsec
;
1153 info
->date_sec
= sn
.date_sec
;
1154 info
->vm_state_size
= sn
.vm_state_size
;
1155 info
->vm_clock_nsec
= sn
.vm_clock_nsec
% 1000000000;
1156 info
->vm_clock_sec
= sn
.vm_clock_nsec
/ 1000000000;
1161 /* New and old BlockDriverState structs for group snapshots */
1163 typedef struct BlkTransactionState BlkTransactionState
;
1165 /* Only prepare() may fail. In a single transaction, only one of commit() or
1166 abort() will be called, clean() will always be called if it present. */
1167 typedef struct BdrvActionOps
{
1168 /* Size of state struct, in bytes. */
1169 size_t instance_size
;
1170 /* Prepare the work, must NOT be NULL. */
1171 void (*prepare
)(BlkTransactionState
*common
, Error
**errp
);
1172 /* Commit the changes, can be NULL. */
1173 void (*commit
)(BlkTransactionState
*common
);
1174 /* Abort the changes on fail, can be NULL. */
1175 void (*abort
)(BlkTransactionState
*common
);
1176 /* Clean up resource in the end, can be NULL. */
1177 void (*clean
)(BlkTransactionState
*common
);
1181 * This structure must be arranged as first member in child type, assuming
1182 * that compiler will also arrange it to the same address with parent instance.
1183 * Later it will be used in free().
1185 struct BlkTransactionState
{
1186 TransactionAction
*action
;
1187 const BdrvActionOps
*ops
;
1188 QSIMPLEQ_ENTRY(BlkTransactionState
) entry
;
1191 /* internal snapshot private data */
1192 typedef struct InternalSnapshotState
{
1193 BlkTransactionState common
;
1194 BlockDriverState
*bs
;
1195 QEMUSnapshotInfo sn
;
1196 } InternalSnapshotState
;
1198 static void internal_snapshot_prepare(BlkTransactionState
*common
,
1201 Error
*local_err
= NULL
;
1204 BlockDriverState
*bs
;
1205 QEMUSnapshotInfo old_sn
, *sn
;
1208 BlockdevSnapshotInternal
*internal
;
1209 InternalSnapshotState
*state
;
1212 g_assert(common
->action
->kind
==
1213 TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC
);
1214 internal
= common
->action
->blockdev_snapshot_internal_sync
;
1215 state
= DO_UPCAST(InternalSnapshotState
, common
, common
);
1217 /* 1. parse input */
1218 device
= internal
->device
;
1219 name
= internal
->name
;
1221 /* 2. check for validation */
1222 bs
= bdrv_find(device
);
1224 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1228 if (!bdrv_is_inserted(bs
)) {
1229 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1233 if (bdrv_is_read_only(bs
)) {
1234 error_set(errp
, QERR_DEVICE_IS_READ_ONLY
, device
);
1238 if (!bdrv_can_snapshot(bs
)) {
1239 error_set(errp
, QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED
,
1240 bs
->drv
->format_name
, device
, "internal snapshot");
1244 if (!strlen(name
)) {
1245 error_setg(errp
, "Name is empty");
1249 /* check whether a snapshot with name exist */
1250 ret
= bdrv_snapshot_find_by_id_and_name(bs
, NULL
, name
, &old_sn
,
1253 error_propagate(errp
, local_err
);
1257 "Snapshot with name '%s' already exists on device '%s'",
1262 /* 3. take the snapshot */
1264 pstrcpy(sn
->name
, sizeof(sn
->name
), name
);
1265 qemu_gettimeofday(&tv
);
1266 sn
->date_sec
= tv
.tv_sec
;
1267 sn
->date_nsec
= tv
.tv_usec
* 1000;
1268 sn
->vm_clock_nsec
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
1270 ret1
= bdrv_snapshot_create(bs
, sn
);
1272 error_setg_errno(errp
, -ret1
,
1273 "Failed to create snapshot '%s' on device '%s'",
1278 /* 4. succeed, mark a snapshot is created */
1282 static void internal_snapshot_abort(BlkTransactionState
*common
)
1284 InternalSnapshotState
*state
=
1285 DO_UPCAST(InternalSnapshotState
, common
, common
);
1286 BlockDriverState
*bs
= state
->bs
;
1287 QEMUSnapshotInfo
*sn
= &state
->sn
;
1288 Error
*local_error
= NULL
;
1294 if (bdrv_snapshot_delete(bs
, sn
->id_str
, sn
->name
, &local_error
) < 0) {
1295 error_report("Failed to delete snapshot with id '%s' and name '%s' on "
1296 "device '%s' in abort: %s",
1299 bdrv_get_device_name(bs
),
1300 error_get_pretty(local_error
));
1301 error_free(local_error
);
1305 /* external snapshot private data */
1306 typedef struct ExternalSnapshotState
{
1307 BlkTransactionState common
;
1308 BlockDriverState
*old_bs
;
1309 BlockDriverState
*new_bs
;
1310 } ExternalSnapshotState
;
1312 static void external_snapshot_prepare(BlkTransactionState
*common
,
1317 QDict
*options
= NULL
;
1318 Error
*local_err
= NULL
;
1319 bool has_device
= false;
1321 bool has_node_name
= false;
1322 const char *node_name
;
1323 bool has_snapshot_node_name
= false;
1324 const char *snapshot_node_name
;
1325 const char *new_image_file
;
1326 const char *format
= "qcow2";
1327 enum NewImageMode mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1328 ExternalSnapshotState
*state
=
1329 DO_UPCAST(ExternalSnapshotState
, common
, common
);
1330 TransactionAction
*action
= common
->action
;
1332 /* get parameters */
1333 g_assert(action
->kind
== TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
);
1335 has_device
= action
->blockdev_snapshot_sync
->has_device
;
1336 device
= action
->blockdev_snapshot_sync
->device
;
1337 has_node_name
= action
->blockdev_snapshot_sync
->has_node_name
;
1338 node_name
= action
->blockdev_snapshot_sync
->node_name
;
1339 has_snapshot_node_name
=
1340 action
->blockdev_snapshot_sync
->has_snapshot_node_name
;
1341 snapshot_node_name
= action
->blockdev_snapshot_sync
->snapshot_node_name
;
1343 new_image_file
= action
->blockdev_snapshot_sync
->snapshot_file
;
1344 if (action
->blockdev_snapshot_sync
->has_format
) {
1345 format
= action
->blockdev_snapshot_sync
->format
;
1347 if (action
->blockdev_snapshot_sync
->has_mode
) {
1348 mode
= action
->blockdev_snapshot_sync
->mode
;
1351 /* start processing */
1352 drv
= bdrv_find_format(format
);
1354 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
1358 state
->old_bs
= bdrv_lookup_bs(has_device
? device
: NULL
,
1359 has_node_name
? node_name
: NULL
,
1362 error_propagate(errp
, local_err
);
1366 if (has_node_name
&& !has_snapshot_node_name
) {
1367 error_setg(errp
, "New snapshot node name missing");
1371 if (has_snapshot_node_name
&& bdrv_find_node(snapshot_node_name
)) {
1372 error_setg(errp
, "New snapshot node name already existing");
1376 if (!bdrv_is_inserted(state
->old_bs
)) {
1377 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1381 if (bdrv_op_is_blocked(state
->old_bs
,
1382 BLOCK_OP_TYPE_EXTERNAL_SNAPSHOT
, errp
)) {
1386 if (!bdrv_is_read_only(state
->old_bs
)) {
1387 if (bdrv_flush(state
->old_bs
)) {
1388 error_set(errp
, QERR_IO_ERROR
);
1393 if (!bdrv_is_first_non_filter(state
->old_bs
)) {
1394 error_set(errp
, QERR_FEATURE_DISABLED
, "snapshot");
1398 flags
= state
->old_bs
->open_flags
;
1400 /* create new image w/backing file */
1401 if (mode
!= NEW_IMAGE_MODE_EXISTING
) {
1402 bdrv_img_create(new_image_file
, format
,
1403 state
->old_bs
->filename
,
1404 state
->old_bs
->drv
->format_name
,
1405 NULL
, -1, flags
, &local_err
, false);
1407 error_propagate(errp
, local_err
);
1412 if (has_snapshot_node_name
) {
1413 options
= qdict_new();
1414 qdict_put(options
, "node-name",
1415 qstring_from_str(snapshot_node_name
));
1418 /* TODO Inherit bs->options or only take explicit options with an
1419 * extended QMP command? */
1420 assert(state
->new_bs
== NULL
);
1421 ret
= bdrv_open(&state
->new_bs
, new_image_file
, NULL
, options
,
1422 flags
| BDRV_O_NO_BACKING
, drv
, &local_err
);
1423 /* We will manually add the backing_hd field to the bs later */
1425 error_propagate(errp
, local_err
);
1429 static void external_snapshot_commit(BlkTransactionState
*common
)
1431 ExternalSnapshotState
*state
=
1432 DO_UPCAST(ExternalSnapshotState
, common
, common
);
1434 /* This removes our old bs and adds the new bs */
1435 bdrv_append(state
->new_bs
, state
->old_bs
);
1436 /* We don't need (or want) to use the transactional
1437 * bdrv_reopen_multiple() across all the entries at once, because we
1438 * don't want to abort all of them if one of them fails the reopen */
1439 bdrv_reopen(state
->new_bs
, state
->new_bs
->open_flags
& ~BDRV_O_RDWR
,
1443 static void external_snapshot_abort(BlkTransactionState
*common
)
1445 ExternalSnapshotState
*state
=
1446 DO_UPCAST(ExternalSnapshotState
, common
, common
);
1447 if (state
->new_bs
) {
1448 bdrv_unref(state
->new_bs
);
1452 typedef struct DriveBackupState
{
1453 BlkTransactionState common
;
1454 BlockDriverState
*bs
;
1458 static void drive_backup_prepare(BlkTransactionState
*common
, Error
**errp
)
1460 DriveBackupState
*state
= DO_UPCAST(DriveBackupState
, common
, common
);
1461 DriveBackup
*backup
;
1462 Error
*local_err
= NULL
;
1464 assert(common
->action
->kind
== TRANSACTION_ACTION_KIND_DRIVE_BACKUP
);
1465 backup
= common
->action
->drive_backup
;
1467 qmp_drive_backup(backup
->device
, backup
->target
,
1468 backup
->has_format
, backup
->format
,
1470 backup
->has_mode
, backup
->mode
,
1471 backup
->has_speed
, backup
->speed
,
1472 backup
->has_on_source_error
, backup
->on_source_error
,
1473 backup
->has_on_target_error
, backup
->on_target_error
,
1476 error_propagate(errp
, local_err
);
1482 state
->bs
= bdrv_find(backup
->device
);
1483 state
->job
= state
->bs
->job
;
1486 static void drive_backup_abort(BlkTransactionState
*common
)
1488 DriveBackupState
*state
= DO_UPCAST(DriveBackupState
, common
, common
);
1489 BlockDriverState
*bs
= state
->bs
;
1491 /* Only cancel if it's the job we started */
1492 if (bs
&& bs
->job
&& bs
->job
== state
->job
) {
1493 block_job_cancel_sync(bs
->job
);
1497 static void abort_prepare(BlkTransactionState
*common
, Error
**errp
)
1499 error_setg(errp
, "Transaction aborted using Abort action");
1502 static void abort_commit(BlkTransactionState
*common
)
1504 g_assert_not_reached(); /* this action never succeeds */
1507 static const BdrvActionOps actions
[] = {
1508 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
] = {
1509 .instance_size
= sizeof(ExternalSnapshotState
),
1510 .prepare
= external_snapshot_prepare
,
1511 .commit
= external_snapshot_commit
,
1512 .abort
= external_snapshot_abort
,
1514 [TRANSACTION_ACTION_KIND_DRIVE_BACKUP
] = {
1515 .instance_size
= sizeof(DriveBackupState
),
1516 .prepare
= drive_backup_prepare
,
1517 .abort
= drive_backup_abort
,
1519 [TRANSACTION_ACTION_KIND_ABORT
] = {
1520 .instance_size
= sizeof(BlkTransactionState
),
1521 .prepare
= abort_prepare
,
1522 .commit
= abort_commit
,
1524 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC
] = {
1525 .instance_size
= sizeof(InternalSnapshotState
),
1526 .prepare
= internal_snapshot_prepare
,
1527 .abort
= internal_snapshot_abort
,
1532 * 'Atomic' group snapshots. The snapshots are taken as a set, and if any fail
1533 * then we do not pivot any of the devices in the group, and abandon the
1536 void qmp_transaction(TransactionActionList
*dev_list
, Error
**errp
)
1538 TransactionActionList
*dev_entry
= dev_list
;
1539 BlkTransactionState
*state
, *next
;
1540 Error
*local_err
= NULL
;
1542 QSIMPLEQ_HEAD(snap_bdrv_states
, BlkTransactionState
) snap_bdrv_states
;
1543 QSIMPLEQ_INIT(&snap_bdrv_states
);
1545 /* drain all i/o before any snapshots */
1548 /* We don't do anything in this loop that commits us to the snapshot */
1549 while (NULL
!= dev_entry
) {
1550 TransactionAction
*dev_info
= NULL
;
1551 const BdrvActionOps
*ops
;
1553 dev_info
= dev_entry
->value
;
1554 dev_entry
= dev_entry
->next
;
1556 assert(dev_info
->kind
< ARRAY_SIZE(actions
));
1558 ops
= &actions
[dev_info
->kind
];
1559 assert(ops
->instance_size
> 0);
1561 state
= g_malloc0(ops
->instance_size
);
1563 state
->action
= dev_info
;
1564 QSIMPLEQ_INSERT_TAIL(&snap_bdrv_states
, state
, entry
);
1566 state
->ops
->prepare(state
, &local_err
);
1568 error_propagate(errp
, local_err
);
1569 goto delete_and_fail
;
1573 QSIMPLEQ_FOREACH(state
, &snap_bdrv_states
, entry
) {
1574 if (state
->ops
->commit
) {
1575 state
->ops
->commit(state
);
1584 * failure, and it is all-or-none; abandon each new bs, and keep using
1585 * the original bs for all images
1587 QSIMPLEQ_FOREACH(state
, &snap_bdrv_states
, entry
) {
1588 if (state
->ops
->abort
) {
1589 state
->ops
->abort(state
);
1593 QSIMPLEQ_FOREACH_SAFE(state
, &snap_bdrv_states
, entry
, next
) {
1594 if (state
->ops
->clean
) {
1595 state
->ops
->clean(state
);
1602 static void eject_device(BlockDriverState
*bs
, int force
, Error
**errp
)
1604 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_EJECT
, errp
)) {
1607 if (!bdrv_dev_has_removable_media(bs
)) {
1608 error_setg(errp
, "Device '%s' is not removable",
1609 bdrv_get_device_name(bs
));
1613 if (bdrv_dev_is_medium_locked(bs
) && !bdrv_dev_is_tray_open(bs
)) {
1614 bdrv_dev_eject_request(bs
, force
);
1616 error_setg(errp
, "Device '%s' is locked",
1617 bdrv_get_device_name(bs
));
1625 void qmp_eject(const char *device
, bool has_force
, bool force
, Error
**errp
)
1627 BlockDriverState
*bs
;
1629 bs
= bdrv_find(device
);
1631 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1635 eject_device(bs
, force
, errp
);
1638 void qmp_block_passwd(bool has_device
, const char *device
,
1639 bool has_node_name
, const char *node_name
,
1640 const char *password
, Error
**errp
)
1642 Error
*local_err
= NULL
;
1643 BlockDriverState
*bs
;
1646 bs
= bdrv_lookup_bs(has_device
? device
: NULL
,
1647 has_node_name
? node_name
: NULL
,
1650 error_propagate(errp
, local_err
);
1654 err
= bdrv_set_key(bs
, password
);
1655 if (err
== -EINVAL
) {
1656 error_set(errp
, QERR_DEVICE_NOT_ENCRYPTED
, bdrv_get_device_name(bs
));
1658 } else if (err
< 0) {
1659 error_set(errp
, QERR_INVALID_PASSWORD
);
1664 static void qmp_bdrv_open_encrypted(BlockDriverState
*bs
, const char *filename
,
1665 int bdrv_flags
, BlockDriver
*drv
,
1666 const char *password
, Error
**errp
)
1668 Error
*local_err
= NULL
;
1671 ret
= bdrv_open(&bs
, filename
, NULL
, NULL
, bdrv_flags
, drv
, &local_err
);
1673 error_propagate(errp
, local_err
);
1677 if (bdrv_key_required(bs
)) {
1679 if (bdrv_set_key(bs
, password
) < 0) {
1680 error_set(errp
, QERR_INVALID_PASSWORD
);
1683 error_set(errp
, QERR_DEVICE_ENCRYPTED
, bdrv_get_device_name(bs
),
1684 bdrv_get_encrypted_filename(bs
));
1686 } else if (password
) {
1687 error_set(errp
, QERR_DEVICE_NOT_ENCRYPTED
, bdrv_get_device_name(bs
));
1691 void qmp_change_blockdev(const char *device
, const char *filename
,
1692 const char *format
, Error
**errp
)
1694 BlockDriverState
*bs
;
1695 BlockDriver
*drv
= NULL
;
1699 bs
= bdrv_find(device
);
1701 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1706 drv
= bdrv_find_whitelisted_format(format
, bs
->read_only
);
1708 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
1713 eject_device(bs
, 0, &err
);
1715 error_propagate(errp
, err
);
1719 bdrv_flags
= bdrv_is_read_only(bs
) ? 0 : BDRV_O_RDWR
;
1720 bdrv_flags
|= bdrv_is_snapshot(bs
) ? BDRV_O_SNAPSHOT
: 0;
1722 qmp_bdrv_open_encrypted(bs
, filename
, bdrv_flags
, drv
, NULL
, errp
);
1725 /* throttling disk I/O limits */
1726 void qmp_block_set_io_throttle(const char *device
, int64_t bps
, int64_t bps_rd
,
1733 bool has_bps_rd_max
,
1735 bool has_bps_wr_max
,
1739 bool has_iops_rd_max
,
1740 int64_t iops_rd_max
,
1741 bool has_iops_wr_max
,
1742 int64_t iops_wr_max
,
1744 int64_t iops_size
, Error
**errp
)
1747 BlockDriverState
*bs
;
1748 AioContext
*aio_context
;
1750 bs
= bdrv_find(device
);
1752 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1756 memset(&cfg
, 0, sizeof(cfg
));
1757 cfg
.buckets
[THROTTLE_BPS_TOTAL
].avg
= bps
;
1758 cfg
.buckets
[THROTTLE_BPS_READ
].avg
= bps_rd
;
1759 cfg
.buckets
[THROTTLE_BPS_WRITE
].avg
= bps_wr
;
1761 cfg
.buckets
[THROTTLE_OPS_TOTAL
].avg
= iops
;
1762 cfg
.buckets
[THROTTLE_OPS_READ
].avg
= iops_rd
;
1763 cfg
.buckets
[THROTTLE_OPS_WRITE
].avg
= iops_wr
;
1766 cfg
.buckets
[THROTTLE_BPS_TOTAL
].max
= bps_max
;
1768 if (has_bps_rd_max
) {
1769 cfg
.buckets
[THROTTLE_BPS_READ
].max
= bps_rd_max
;
1771 if (has_bps_wr_max
) {
1772 cfg
.buckets
[THROTTLE_BPS_WRITE
].max
= bps_wr_max
;
1775 cfg
.buckets
[THROTTLE_OPS_TOTAL
].max
= iops_max
;
1777 if (has_iops_rd_max
) {
1778 cfg
.buckets
[THROTTLE_OPS_READ
].max
= iops_rd_max
;
1780 if (has_iops_wr_max
) {
1781 cfg
.buckets
[THROTTLE_OPS_WRITE
].max
= iops_wr_max
;
1784 if (has_iops_size
) {
1785 cfg
.op_size
= iops_size
;
1788 if (!check_throttle_config(&cfg
, errp
)) {
1792 aio_context
= bdrv_get_aio_context(bs
);
1793 aio_context_acquire(aio_context
);
1795 if (!bs
->io_limits_enabled
&& throttle_enabled(&cfg
)) {
1796 bdrv_io_limits_enable(bs
);
1797 } else if (bs
->io_limits_enabled
&& !throttle_enabled(&cfg
)) {
1798 bdrv_io_limits_disable(bs
);
1801 if (bs
->io_limits_enabled
) {
1802 bdrv_set_io_limits(bs
, &cfg
);
1805 aio_context_release(aio_context
);
1808 int do_drive_del(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1810 const char *id
= qdict_get_str(qdict
, "id");
1812 BlockDriverState
*bs
;
1814 AioContext
*aio_context
;
1815 Error
*local_err
= NULL
;
1817 blk
= blk_by_name(id
);
1819 error_report("Device '%s' not found", id
);
1824 dinfo
= blk_legacy_dinfo(blk
);
1825 if (dinfo
&& !dinfo
->enable_auto_del
) {
1826 error_report("Deleting device added with blockdev-add"
1827 " is not supported");
1831 aio_context
= bdrv_get_aio_context(bs
);
1832 aio_context_acquire(aio_context
);
1834 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_DRIVE_DEL
, &local_err
)) {
1835 error_report("%s", error_get_pretty(local_err
));
1836 error_free(local_err
);
1837 aio_context_release(aio_context
);
1841 /* quiesce block driver; prevent further io */
1846 /* if we have a device attached to this BlockDriverState
1847 * then we need to make the drive anonymous until the device
1848 * can be removed. If this is a drive with no device backing
1849 * then we can just get rid of the block driver state right here.
1851 if (bdrv_get_attached_dev(bs
)) {
1852 blk_hide_on_behalf_of_do_drive_del(blk
);
1853 /* Further I/O must not pause the guest */
1854 bdrv_set_on_error(bs
, BLOCKDEV_ON_ERROR_REPORT
,
1855 BLOCKDEV_ON_ERROR_REPORT
);
1860 aio_context_release(aio_context
);
1864 void qmp_block_resize(bool has_device
, const char *device
,
1865 bool has_node_name
, const char *node_name
,
1866 int64_t size
, Error
**errp
)
1868 Error
*local_err
= NULL
;
1869 BlockDriverState
*bs
;
1870 AioContext
*aio_context
;
1873 bs
= bdrv_lookup_bs(has_device
? device
: NULL
,
1874 has_node_name
? node_name
: NULL
,
1877 error_propagate(errp
, local_err
);
1881 aio_context
= bdrv_get_aio_context(bs
);
1882 aio_context_acquire(aio_context
);
1884 if (!bdrv_is_first_non_filter(bs
)) {
1885 error_set(errp
, QERR_FEATURE_DISABLED
, "resize");
1890 error_set(errp
, QERR_INVALID_PARAMETER_VALUE
, "size", "a >0 size");
1894 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_RESIZE
, NULL
)) {
1895 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
1899 /* complete all in-flight operations before resizing the device */
1902 ret
= bdrv_truncate(bs
, size
);
1907 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1910 error_set(errp
, QERR_UNSUPPORTED
);
1913 error_set(errp
, QERR_DEVICE_IS_READ_ONLY
, device
);
1916 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
1919 error_setg_errno(errp
, -ret
, "Could not resize");
1924 aio_context_release(aio_context
);
1927 static void block_job_cb(void *opaque
, int ret
)
1929 BlockDriverState
*bs
= opaque
;
1930 const char *msg
= NULL
;
1932 trace_block_job_cb(bs
, bs
->job
, ret
);
1937 msg
= strerror(-ret
);
1940 if (block_job_is_cancelled(bs
->job
)) {
1941 block_job_event_cancelled(bs
->job
);
1943 block_job_event_completed(bs
->job
, msg
);
1946 bdrv_put_ref_bh_schedule(bs
);
1949 void qmp_block_stream(const char *device
,
1950 bool has_base
, const char *base
,
1951 bool has_backing_file
, const char *backing_file
,
1952 bool has_speed
, int64_t speed
,
1953 bool has_on_error
, BlockdevOnError on_error
,
1956 BlockDriverState
*bs
;
1957 BlockDriverState
*base_bs
= NULL
;
1958 Error
*local_err
= NULL
;
1959 const char *base_name
= NULL
;
1961 if (!has_on_error
) {
1962 on_error
= BLOCKDEV_ON_ERROR_REPORT
;
1965 bs
= bdrv_find(device
);
1967 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1971 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_STREAM
, errp
)) {
1976 base_bs
= bdrv_find_backing_image(bs
, base
);
1977 if (base_bs
== NULL
) {
1978 error_set(errp
, QERR_BASE_NOT_FOUND
, base
);
1984 /* if we are streaming the entire chain, the result will have no backing
1985 * file, and specifying one is therefore an error */
1986 if (base_bs
== NULL
&& has_backing_file
) {
1987 error_setg(errp
, "backing file specified, but streaming the "
1992 /* backing_file string overrides base bs filename */
1993 base_name
= has_backing_file
? backing_file
: base_name
;
1995 stream_start(bs
, base_bs
, base_name
, has_speed
? speed
: 0,
1996 on_error
, block_job_cb
, bs
, &local_err
);
1998 error_propagate(errp
, local_err
);
2002 trace_qmp_block_stream(bs
, bs
->job
);
2005 void qmp_block_commit(const char *device
,
2006 bool has_base
, const char *base
,
2007 bool has_top
, const char *top
,
2008 bool has_backing_file
, const char *backing_file
,
2009 bool has_speed
, int64_t speed
,
2012 BlockDriverState
*bs
;
2013 BlockDriverState
*base_bs
, *top_bs
;
2014 Error
*local_err
= NULL
;
2015 /* This will be part of the QMP command, if/when the
2016 * BlockdevOnError change for blkmirror makes it in
2018 BlockdevOnError on_error
= BLOCKDEV_ON_ERROR_REPORT
;
2024 /* drain all i/o before commits */
2028 * libvirt relies on the DeviceNotFound error class in order to probe for
2029 * live commit feature versions; for this to work, we must make sure to
2030 * perform the device lookup before any generic errors that may occur in a
2031 * scenario in which all optional arguments are omitted. */
2032 bs
= bdrv_find(device
);
2034 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
2038 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_COMMIT
, errp
)) {
2042 /* default top_bs is the active layer */
2045 if (has_top
&& top
) {
2046 if (strcmp(bs
->filename
, top
) != 0) {
2047 top_bs
= bdrv_find_backing_image(bs
, top
);
2051 if (top_bs
== NULL
) {
2052 error_setg(errp
, "Top image file %s not found", top
? top
: "NULL");
2056 if (has_base
&& base
) {
2057 base_bs
= bdrv_find_backing_image(top_bs
, base
);
2059 base_bs
= bdrv_find_base(top_bs
);
2062 if (base_bs
== NULL
) {
2063 error_set(errp
, QERR_BASE_NOT_FOUND
, base
? base
: "NULL");
2067 /* Do not allow attempts to commit an image into itself */
2068 if (top_bs
== base_bs
) {
2069 error_setg(errp
, "cannot commit an image into itself");
2074 if (has_backing_file
) {
2075 error_setg(errp
, "'backing-file' specified,"
2076 " but 'top' is the active layer");
2079 commit_active_start(bs
, base_bs
, speed
, on_error
, block_job_cb
,
2082 commit_start(bs
, base_bs
, top_bs
, speed
, on_error
, block_job_cb
, bs
,
2083 has_backing_file
? backing_file
: NULL
, &local_err
);
2085 if (local_err
!= NULL
) {
2086 error_propagate(errp
, local_err
);
2091 void qmp_drive_backup(const char *device
, const char *target
,
2092 bool has_format
, const char *format
,
2093 enum MirrorSyncMode sync
,
2094 bool has_mode
, enum NewImageMode mode
,
2095 bool has_speed
, int64_t speed
,
2096 bool has_on_source_error
, BlockdevOnError on_source_error
,
2097 bool has_on_target_error
, BlockdevOnError on_target_error
,
2100 BlockDriverState
*bs
;
2101 BlockDriverState
*target_bs
;
2102 BlockDriverState
*source
= NULL
;
2103 BlockDriver
*drv
= NULL
;
2104 Error
*local_err
= NULL
;
2112 if (!has_on_source_error
) {
2113 on_source_error
= BLOCKDEV_ON_ERROR_REPORT
;
2115 if (!has_on_target_error
) {
2116 on_target_error
= BLOCKDEV_ON_ERROR_REPORT
;
2119 mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
2122 bs
= bdrv_find(device
);
2124 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
2128 if (!bdrv_is_inserted(bs
)) {
2129 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
2134 format
= mode
== NEW_IMAGE_MODE_EXISTING
? NULL
: bs
->drv
->format_name
;
2137 drv
= bdrv_find_format(format
);
2139 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
2144 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_BACKUP_SOURCE
, errp
)) {
2148 flags
= bs
->open_flags
| BDRV_O_RDWR
;
2150 /* See if we have a backing HD we can use to create our new image
2152 if (sync
== MIRROR_SYNC_MODE_TOP
) {
2153 source
= bs
->backing_hd
;
2155 sync
= MIRROR_SYNC_MODE_FULL
;
2158 if (sync
== MIRROR_SYNC_MODE_NONE
) {
2162 size
= bdrv_getlength(bs
);
2164 error_setg_errno(errp
, -size
, "bdrv_getlength failed");
2168 if (mode
!= NEW_IMAGE_MODE_EXISTING
) {
2169 assert(format
&& drv
);
2171 bdrv_img_create(target
, format
, source
->filename
,
2172 source
->drv
->format_name
, NULL
,
2173 size
, flags
, &local_err
, false);
2175 bdrv_img_create(target
, format
, NULL
, NULL
, NULL
,
2176 size
, flags
, &local_err
, false);
2181 error_propagate(errp
, local_err
);
2186 ret
= bdrv_open(&target_bs
, target
, NULL
, NULL
, flags
, drv
, &local_err
);
2188 error_propagate(errp
, local_err
);
2192 backup_start(bs
, target_bs
, speed
, sync
, on_source_error
, on_target_error
,
2193 block_job_cb
, bs
, &local_err
);
2194 if (local_err
!= NULL
) {
2195 bdrv_unref(target_bs
);
2196 error_propagate(errp
, local_err
);
2201 BlockDeviceInfoList
*qmp_query_named_block_nodes(Error
**errp
)
2203 return bdrv_named_nodes_list();
2206 #define DEFAULT_MIRROR_BUF_SIZE (10 << 20)
2208 void qmp_drive_mirror(const char *device
, const char *target
,
2209 bool has_format
, const char *format
,
2210 bool has_node_name
, const char *node_name
,
2211 bool has_replaces
, const char *replaces
,
2212 enum MirrorSyncMode sync
,
2213 bool has_mode
, enum NewImageMode mode
,
2214 bool has_speed
, int64_t speed
,
2215 bool has_granularity
, uint32_t granularity
,
2216 bool has_buf_size
, int64_t buf_size
,
2217 bool has_on_source_error
, BlockdevOnError on_source_error
,
2218 bool has_on_target_error
, BlockdevOnError on_target_error
,
2221 BlockDriverState
*bs
;
2222 BlockDriverState
*source
, *target_bs
;
2223 BlockDriver
*drv
= NULL
;
2224 Error
*local_err
= NULL
;
2225 QDict
*options
= NULL
;
2233 if (!has_on_source_error
) {
2234 on_source_error
= BLOCKDEV_ON_ERROR_REPORT
;
2236 if (!has_on_target_error
) {
2237 on_target_error
= BLOCKDEV_ON_ERROR_REPORT
;
2240 mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
2242 if (!has_granularity
) {
2245 if (!has_buf_size
) {
2246 buf_size
= DEFAULT_MIRROR_BUF_SIZE
;
2249 if (granularity
!= 0 && (granularity
< 512 || granularity
> 1048576 * 64)) {
2250 error_set(errp
, QERR_INVALID_PARAMETER_VALUE
, "granularity",
2251 "a value in range [512B, 64MB]");
2254 if (granularity
& (granularity
- 1)) {
2255 error_set(errp
, QERR_INVALID_PARAMETER_VALUE
, "granularity", "power of 2");
2259 bs
= bdrv_find(device
);
2261 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
2265 if (!bdrv_is_inserted(bs
)) {
2266 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
2271 format
= mode
== NEW_IMAGE_MODE_EXISTING
? NULL
: bs
->drv
->format_name
;
2274 drv
= bdrv_find_format(format
);
2276 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
2281 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_MIRROR
, errp
)) {
2285 flags
= bs
->open_flags
| BDRV_O_RDWR
;
2286 source
= bs
->backing_hd
;
2287 if (!source
&& sync
== MIRROR_SYNC_MODE_TOP
) {
2288 sync
= MIRROR_SYNC_MODE_FULL
;
2290 if (sync
== MIRROR_SYNC_MODE_NONE
) {
2294 size
= bdrv_getlength(bs
);
2296 error_setg_errno(errp
, -size
, "bdrv_getlength failed");
2301 BlockDriverState
*to_replace_bs
;
2303 if (!has_node_name
) {
2304 error_setg(errp
, "a node-name must be provided when replacing a"
2305 " named node of the graph");
2309 to_replace_bs
= check_to_replace_node(replaces
, &local_err
);
2311 if (!to_replace_bs
) {
2312 error_propagate(errp
, local_err
);
2316 if (size
!= bdrv_getlength(to_replace_bs
)) {
2317 error_setg(errp
, "cannot replace image with a mirror image of "
2323 if ((sync
== MIRROR_SYNC_MODE_FULL
|| !source
)
2324 && mode
!= NEW_IMAGE_MODE_EXISTING
)
2326 /* create new image w/o backing file */
2327 assert(format
&& drv
);
2328 bdrv_img_create(target
, format
,
2329 NULL
, NULL
, NULL
, size
, flags
, &local_err
, false);
2332 case NEW_IMAGE_MODE_EXISTING
:
2334 case NEW_IMAGE_MODE_ABSOLUTE_PATHS
:
2335 /* create new image with backing file */
2336 bdrv_img_create(target
, format
,
2338 source
->drv
->format_name
,
2339 NULL
, size
, flags
, &local_err
, false);
2347 error_propagate(errp
, local_err
);
2351 if (has_node_name
) {
2352 options
= qdict_new();
2353 qdict_put(options
, "node-name", qstring_from_str(node_name
));
2356 /* Mirroring takes care of copy-on-write using the source's backing
2360 ret
= bdrv_open(&target_bs
, target
, NULL
, options
,
2361 flags
| BDRV_O_NO_BACKING
, drv
, &local_err
);
2363 error_propagate(errp
, local_err
);
2367 /* pass the node name to replace to mirror start since it's loose coupling
2368 * and will allow to check whether the node still exist at mirror completion
2370 mirror_start(bs
, target_bs
,
2371 has_replaces
? replaces
: NULL
,
2372 speed
, granularity
, buf_size
, sync
,
2373 on_source_error
, on_target_error
,
2374 block_job_cb
, bs
, &local_err
);
2375 if (local_err
!= NULL
) {
2376 bdrv_unref(target_bs
);
2377 error_propagate(errp
, local_err
);
2382 static BlockJob
*find_block_job(const char *device
)
2384 BlockDriverState
*bs
;
2386 bs
= bdrv_find(device
);
2387 if (!bs
|| !bs
->job
) {
2393 void qmp_block_job_set_speed(const char *device
, int64_t speed
, Error
**errp
)
2395 BlockJob
*job
= find_block_job(device
);
2398 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
2402 block_job_set_speed(job
, speed
, errp
);
2405 void qmp_block_job_cancel(const char *device
,
2406 bool has_force
, bool force
, Error
**errp
)
2408 BlockJob
*job
= find_block_job(device
);
2415 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
2418 if (job
->paused
&& !force
) {
2419 error_setg(errp
, "The block job for device '%s' is currently paused",
2424 trace_qmp_block_job_cancel(job
);
2425 block_job_cancel(job
);
2428 void qmp_block_job_pause(const char *device
, Error
**errp
)
2430 BlockJob
*job
= find_block_job(device
);
2433 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
2437 trace_qmp_block_job_pause(job
);
2438 block_job_pause(job
);
2441 void qmp_block_job_resume(const char *device
, Error
**errp
)
2443 BlockJob
*job
= find_block_job(device
);
2446 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
2450 trace_qmp_block_job_resume(job
);
2451 block_job_resume(job
);
2454 void qmp_block_job_complete(const char *device
, Error
**errp
)
2456 BlockJob
*job
= find_block_job(device
);
2459 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
2463 trace_qmp_block_job_complete(job
);
2464 block_job_complete(job
, errp
);
2467 void qmp_change_backing_file(const char *device
,
2468 const char *image_node_name
,
2469 const char *backing_file
,
2472 BlockDriverState
*bs
= NULL
;
2473 BlockDriverState
*image_bs
= NULL
;
2474 Error
*local_err
= NULL
;
2479 /* find the top layer BDS of the chain */
2480 bs
= bdrv_find(device
);
2482 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
2486 image_bs
= bdrv_lookup_bs(NULL
, image_node_name
, &local_err
);
2488 error_propagate(errp
, local_err
);
2493 error_setg(errp
, "image file not found");
2497 if (bdrv_find_base(image_bs
) == image_bs
) {
2498 error_setg(errp
, "not allowing backing file change on an image "
2499 "without a backing file");
2503 /* even though we are not necessarily operating on bs, we need it to
2504 * determine if block ops are currently prohibited on the chain */
2505 if (bdrv_op_is_blocked(bs
, BLOCK_OP_TYPE_CHANGE
, errp
)) {
2509 /* final sanity check */
2510 if (!bdrv_chain_contains(bs
, image_bs
)) {
2511 error_setg(errp
, "'%s' and image file are not in the same chain",
2516 /* if not r/w, reopen to make r/w */
2517 open_flags
= image_bs
->open_flags
;
2518 ro
= bdrv_is_read_only(image_bs
);
2521 bdrv_reopen(image_bs
, open_flags
| BDRV_O_RDWR
, &local_err
);
2523 error_propagate(errp
, local_err
);
2528 ret
= bdrv_change_backing_file(image_bs
, backing_file
,
2529 image_bs
->drv
? image_bs
->drv
->format_name
: "");
2532 error_setg_errno(errp
, -ret
, "Could not change backing file to '%s'",
2534 /* don't exit here, so we can try to restore open flags if
2539 bdrv_reopen(image_bs
, open_flags
, &local_err
);
2541 error_propagate(errp
, local_err
); /* will preserve prior errp */
2546 void qmp_blockdev_add(BlockdevOptions
*options
, Error
**errp
)
2548 QmpOutputVisitor
*ov
= qmp_output_visitor_new();
2552 Error
*local_err
= NULL
;
2554 /* Require an ID in the top level */
2555 if (!options
->has_id
) {
2556 error_setg(errp
, "Block device needs an ID");
2560 /* TODO Sort it out in raw-posix and drive_new(): Reject aio=native with
2561 * cache.direct=false instead of silently switching to aio=threads, except
2562 * when called from drive_new().
2564 * For now, simply forbidding the combination for all drivers will do. */
2565 if (options
->has_aio
&& options
->aio
== BLOCKDEV_AIO_OPTIONS_NATIVE
) {
2566 bool direct
= options
->has_cache
&&
2567 options
->cache
->has_direct
&&
2568 options
->cache
->direct
;
2570 error_setg(errp
, "aio=native requires cache.direct=true");
2575 visit_type_BlockdevOptions(qmp_output_get_visitor(ov
),
2576 &options
, NULL
, &local_err
);
2578 error_propagate(errp
, local_err
);
2582 obj
= qmp_output_get_qobject(ov
);
2583 qdict
= qobject_to_qdict(obj
);
2585 qdict_flatten(qdict
);
2587 blk
= blockdev_init(NULL
, qdict
, &local_err
);
2589 error_propagate(errp
, local_err
);
2593 if (bdrv_key_required(blk_bs(blk
))) {
2595 error_setg(errp
, "blockdev-add doesn't support encrypted devices");
2600 qmp_output_visitor_cleanup(ov
);
2603 BlockJobInfoList
*qmp_query_block_jobs(Error
**errp
)
2605 BlockJobInfoList
*head
= NULL
, **p_next
= &head
;
2606 BlockDriverState
*bs
;
2608 for (bs
= bdrv_next(NULL
); bs
; bs
= bdrv_next(bs
)) {
2610 BlockJobInfoList
*elem
= g_new0(BlockJobInfoList
, 1);
2611 elem
->value
= block_job_query(bs
->job
);
2613 p_next
= &elem
->next
;
2620 QemuOptsList qemu_common_drive_opts
= {
2622 .head
= QTAILQ_HEAD_INITIALIZER(qemu_common_drive_opts
.head
),
2626 .type
= QEMU_OPT_BOOL
,
2627 .help
= "enable/disable snapshot mode",
2630 .type
= QEMU_OPT_STRING
,
2631 .help
= "discard operation (ignore/off, unmap/on)",
2633 .name
= "cache.writeback",
2634 .type
= QEMU_OPT_BOOL
,
2635 .help
= "enables writeback mode for any caches",
2637 .name
= "cache.direct",
2638 .type
= QEMU_OPT_BOOL
,
2639 .help
= "enables use of O_DIRECT (bypass the host page cache)",
2641 .name
= "cache.no-flush",
2642 .type
= QEMU_OPT_BOOL
,
2643 .help
= "ignore any flush requests for the device",
2646 .type
= QEMU_OPT_STRING
,
2647 .help
= "host AIO implementation (threads, native)",
2650 .type
= QEMU_OPT_STRING
,
2651 .help
= "disk format (raw, qcow2, ...)",
2654 .type
= QEMU_OPT_STRING
,
2655 .help
= "read error action",
2658 .type
= QEMU_OPT_STRING
,
2659 .help
= "write error action",
2661 .name
= "read-only",
2662 .type
= QEMU_OPT_BOOL
,
2663 .help
= "open drive file as read-only",
2665 .name
= "throttling.iops-total",
2666 .type
= QEMU_OPT_NUMBER
,
2667 .help
= "limit total I/O operations per second",
2669 .name
= "throttling.iops-read",
2670 .type
= QEMU_OPT_NUMBER
,
2671 .help
= "limit read operations per second",
2673 .name
= "throttling.iops-write",
2674 .type
= QEMU_OPT_NUMBER
,
2675 .help
= "limit write operations per second",
2677 .name
= "throttling.bps-total",
2678 .type
= QEMU_OPT_NUMBER
,
2679 .help
= "limit total bytes per second",
2681 .name
= "throttling.bps-read",
2682 .type
= QEMU_OPT_NUMBER
,
2683 .help
= "limit read bytes per second",
2685 .name
= "throttling.bps-write",
2686 .type
= QEMU_OPT_NUMBER
,
2687 .help
= "limit write bytes per second",
2689 .name
= "throttling.iops-total-max",
2690 .type
= QEMU_OPT_NUMBER
,
2691 .help
= "I/O operations burst",
2693 .name
= "throttling.iops-read-max",
2694 .type
= QEMU_OPT_NUMBER
,
2695 .help
= "I/O operations read burst",
2697 .name
= "throttling.iops-write-max",
2698 .type
= QEMU_OPT_NUMBER
,
2699 .help
= "I/O operations write burst",
2701 .name
= "throttling.bps-total-max",
2702 .type
= QEMU_OPT_NUMBER
,
2703 .help
= "total bytes burst",
2705 .name
= "throttling.bps-read-max",
2706 .type
= QEMU_OPT_NUMBER
,
2707 .help
= "total bytes read burst",
2709 .name
= "throttling.bps-write-max",
2710 .type
= QEMU_OPT_NUMBER
,
2711 .help
= "total bytes write burst",
2713 .name
= "throttling.iops-size",
2714 .type
= QEMU_OPT_NUMBER
,
2715 .help
= "when limiting by iops max size of an I/O in bytes",
2717 .name
= "copy-on-read",
2718 .type
= QEMU_OPT_BOOL
,
2719 .help
= "copy read data from backing file into image file",
2721 .name
= "detect-zeroes",
2722 .type
= QEMU_OPT_STRING
,
2723 .help
= "try to optimize zero writes (off, on, unmap)",
2725 { /* end of list */ }
2729 QemuOptsList qemu_drive_opts
= {
2731 .head
= QTAILQ_HEAD_INITIALIZER(qemu_drive_opts
.head
),
2734 * no elements => accept any params
2735 * validation will happen later
2737 { /* end of list */ }