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/blockdev.h"
34 #include "hw/block/block.h"
35 #include "block/blockjob.h"
36 #include "monitor/monitor.h"
37 #include "qapi/qmp/qerror.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 "sysemu/sysemu.h"
44 #include "block/block_int.h"
45 #include "qmp-commands.h"
47 #include "sysemu/arch_init.h"
49 static QTAILQ_HEAD(drivelist
, DriveInfo
) drives
= QTAILQ_HEAD_INITIALIZER(drives
);
51 static const char *const if_name
[IF_COUNT
] = {
55 [IF_FLOPPY
] = "floppy",
56 [IF_PFLASH
] = "pflash",
59 [IF_VIRTIO
] = "virtio",
63 static const int if_max_devs
[IF_COUNT
] = {
65 * Do not change these numbers! They govern how drive option
66 * index maps to unit and bus. That mapping is ABI.
68 * All controllers used to imlement if=T drives need to support
69 * if_max_devs[T] units, for any T with if_max_devs[T] != 0.
70 * Otherwise, some index values map to "impossible" bus, unit
73 * For instance, if you change [IF_SCSI] to 255, -drive
74 * if=scsi,index=12 no longer means bus=1,unit=5, but
75 * bus=0,unit=12. With an lsi53c895a controller (7 units max),
76 * the drive can't be set up. Regression.
83 * We automatically delete the drive when a device using it gets
84 * unplugged. Questionable feature, but we can't just drop it.
85 * Device models call blockdev_mark_auto_del() to schedule the
86 * automatic deletion, and generic qdev code calls blockdev_auto_del()
87 * when deletion is actually safe.
89 void blockdev_mark_auto_del(BlockDriverState
*bs
)
91 DriveInfo
*dinfo
= drive_get_by_blockdev(bs
);
93 if (dinfo
&& !dinfo
->enable_auto_del
) {
98 block_job_cancel(bs
->job
);
105 void blockdev_auto_del(BlockDriverState
*bs
)
107 DriveInfo
*dinfo
= drive_get_by_blockdev(bs
);
109 if (dinfo
&& dinfo
->auto_del
) {
110 drive_put_ref(dinfo
);
114 static int drive_index_to_bus_id(BlockInterfaceType type
, int index
)
116 int max_devs
= if_max_devs
[type
];
117 return max_devs
? index
/ max_devs
: 0;
120 static int drive_index_to_unit_id(BlockInterfaceType type
, int index
)
122 int max_devs
= if_max_devs
[type
];
123 return max_devs
? index
% max_devs
: index
;
126 QemuOpts
*drive_def(const char *optstr
)
128 return qemu_opts_parse(qemu_find_opts("drive"), optstr
, 0);
131 QemuOpts
*drive_add(BlockInterfaceType type
, int index
, const char *file
,
137 opts
= drive_def(optstr
);
141 if (type
!= IF_DEFAULT
) {
142 qemu_opt_set(opts
, "if", if_name
[type
]);
145 snprintf(buf
, sizeof(buf
), "%d", index
);
146 qemu_opt_set(opts
, "index", buf
);
149 qemu_opt_set(opts
, "file", file
);
153 DriveInfo
*drive_get(BlockInterfaceType type
, int bus
, int unit
)
157 /* seek interface, bus and unit */
159 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
160 if (dinfo
->type
== type
&&
169 DriveInfo
*drive_get_by_index(BlockInterfaceType type
, int index
)
171 return drive_get(type
,
172 drive_index_to_bus_id(type
, index
),
173 drive_index_to_unit_id(type
, index
));
176 int drive_get_max_bus(BlockInterfaceType type
)
182 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
183 if(dinfo
->type
== type
&&
184 dinfo
->bus
> max_bus
)
185 max_bus
= dinfo
->bus
;
190 /* Get a block device. This should only be used for single-drive devices
191 (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the
193 DriveInfo
*drive_get_next(BlockInterfaceType type
)
195 static int next_block_unit
[IF_COUNT
];
197 return drive_get(type
, 0, next_block_unit
[type
]++);
200 DriveInfo
*drive_get_by_blockdev(BlockDriverState
*bs
)
204 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
205 if (dinfo
->bdrv
== bs
) {
212 static void bdrv_format_print(void *opaque
, const char *name
)
214 error_printf(" %s", name
);
217 static void drive_uninit(DriveInfo
*dinfo
)
220 qemu_opts_del(dinfo
->opts
);
223 bdrv_unref(dinfo
->bdrv
);
225 QTAILQ_REMOVE(&drives
, dinfo
, next
);
226 g_free(dinfo
->serial
);
230 void drive_put_ref(DriveInfo
*dinfo
)
232 assert(dinfo
->refcount
);
233 if (--dinfo
->refcount
== 0) {
238 void drive_get_ref(DriveInfo
*dinfo
)
245 BlockDriverState
*bs
;
248 static void bdrv_put_ref_bh(void *opaque
)
250 BDRVPutRefBH
*s
= opaque
;
253 qemu_bh_delete(s
->bh
);
258 * Release a BDS reference in a BH
260 * It is not safe to use bdrv_unref() from a callback function when the callers
261 * still need the BlockDriverState. In such cases we schedule a BH to release
264 static void bdrv_put_ref_bh_schedule(BlockDriverState
*bs
)
268 s
= g_new(BDRVPutRefBH
, 1);
269 s
->bh
= qemu_bh_new(bdrv_put_ref_bh
, s
);
271 qemu_bh_schedule(s
->bh
);
274 static int parse_block_error_action(const char *buf
, bool is_read
, Error
**errp
)
276 if (!strcmp(buf
, "ignore")) {
277 return BLOCKDEV_ON_ERROR_IGNORE
;
278 } else if (!is_read
&& !strcmp(buf
, "enospc")) {
279 return BLOCKDEV_ON_ERROR_ENOSPC
;
280 } else if (!strcmp(buf
, "stop")) {
281 return BLOCKDEV_ON_ERROR_STOP
;
282 } else if (!strcmp(buf
, "report")) {
283 return BLOCKDEV_ON_ERROR_REPORT
;
285 error_setg(errp
, "'%s' invalid %s error action",
286 buf
, is_read
? "read" : "write");
291 static bool check_throttle_config(ThrottleConfig
*cfg
, Error
**errp
)
293 if (throttle_conflicting(cfg
)) {
294 error_setg(errp
, "bps/iops/max total values and read/write values"
295 " cannot be used at the same time");
299 if (!throttle_is_valid(cfg
)) {
300 error_setg(errp
, "bps/iops/maxs values must be 0 or greater");
307 typedef enum { MEDIA_DISK
, MEDIA_CDROM
} DriveMediaType
;
309 /* Takes the ownership of bs_opts */
310 static DriveInfo
*blockdev_init(QDict
*bs_opts
,
311 BlockInterfaceType type
,
315 const char *file
= NULL
;
319 int on_read_error
, on_write_error
;
328 bool has_driver_specific_opts
;
329 BlockDriver
*drv
= NULL
;
331 /* Check common options by copying from bs_opts to opts, all other options
332 * stay in bs_opts for processing by bdrv_open(). */
333 id
= qdict_get_try_str(bs_opts
, "id");
334 opts
= qemu_opts_create(&qemu_common_drive_opts
, id
, 1, &error
);
335 if (error_is_set(&error
)) {
336 error_propagate(errp
, error
);
340 qemu_opts_absorb_qdict(opts
, bs_opts
, &error
);
341 if (error_is_set(&error
)) {
342 error_propagate(errp
, error
);
347 qdict_del(bs_opts
, "id");
350 has_driver_specific_opts
= !!qdict_size(bs_opts
);
352 /* extract parameters */
353 snapshot
= qemu_opt_get_bool(opts
, "snapshot", 0);
354 ro
= qemu_opt_get_bool(opts
, "read-only", 0);
355 copy_on_read
= qemu_opt_get_bool(opts
, "copy-on-read", false);
357 file
= qemu_opt_get(opts
, "file");
358 serial
= qemu_opt_get(opts
, "serial");
360 if ((buf
= qemu_opt_get(opts
, "discard")) != NULL
) {
361 if (bdrv_parse_discard_flags(buf
, &bdrv_flags
) != 0) {
362 error_setg(errp
, "invalid discard option");
367 if (qemu_opt_get_bool(opts
, "cache.writeback", true)) {
368 bdrv_flags
|= BDRV_O_CACHE_WB
;
370 if (qemu_opt_get_bool(opts
, "cache.direct", false)) {
371 bdrv_flags
|= BDRV_O_NOCACHE
;
373 if (qemu_opt_get_bool(opts
, "cache.no-flush", false)) {
374 bdrv_flags
|= BDRV_O_NO_FLUSH
;
377 #ifdef CONFIG_LINUX_AIO
378 if ((buf
= qemu_opt_get(opts
, "aio")) != NULL
) {
379 if (!strcmp(buf
, "native")) {
380 bdrv_flags
|= BDRV_O_NATIVE_AIO
;
381 } else if (!strcmp(buf
, "threads")) {
382 /* this is the default */
384 error_setg(errp
, "invalid aio option");
390 if ((buf
= qemu_opt_get(opts
, "format")) != NULL
) {
391 if (is_help_option(buf
)) {
392 error_printf("Supported formats:");
393 bdrv_iterate_format(bdrv_format_print
, NULL
);
398 drv
= bdrv_find_format(buf
);
400 error_setg(errp
, "'%s' invalid format", buf
);
405 /* disk I/O throttling */
406 memset(&cfg
, 0, sizeof(cfg
));
407 cfg
.buckets
[THROTTLE_BPS_TOTAL
].avg
=
408 qemu_opt_get_number(opts
, "throttling.bps-total", 0);
409 cfg
.buckets
[THROTTLE_BPS_READ
].avg
=
410 qemu_opt_get_number(opts
, "throttling.bps-read", 0);
411 cfg
.buckets
[THROTTLE_BPS_WRITE
].avg
=
412 qemu_opt_get_number(opts
, "throttling.bps-write", 0);
413 cfg
.buckets
[THROTTLE_OPS_TOTAL
].avg
=
414 qemu_opt_get_number(opts
, "throttling.iops-total", 0);
415 cfg
.buckets
[THROTTLE_OPS_READ
].avg
=
416 qemu_opt_get_number(opts
, "throttling.iops-read", 0);
417 cfg
.buckets
[THROTTLE_OPS_WRITE
].avg
=
418 qemu_opt_get_number(opts
, "throttling.iops-write", 0);
420 cfg
.buckets
[THROTTLE_BPS_TOTAL
].max
=
421 qemu_opt_get_number(opts
, "throttling.bps-total-max", 0);
422 cfg
.buckets
[THROTTLE_BPS_READ
].max
=
423 qemu_opt_get_number(opts
, "throttling.bps-read-max", 0);
424 cfg
.buckets
[THROTTLE_BPS_WRITE
].max
=
425 qemu_opt_get_number(opts
, "throttling.bps-write-max", 0);
426 cfg
.buckets
[THROTTLE_OPS_TOTAL
].max
=
427 qemu_opt_get_number(opts
, "throttling.iops-total-max", 0);
428 cfg
.buckets
[THROTTLE_OPS_READ
].max
=
429 qemu_opt_get_number(opts
, "throttling.iops-read-max", 0);
430 cfg
.buckets
[THROTTLE_OPS_WRITE
].max
=
431 qemu_opt_get_number(opts
, "throttling.iops-write-max", 0);
433 cfg
.op_size
= qemu_opt_get_number(opts
, "throttling.iops-size", 0);
435 if (!check_throttle_config(&cfg
, &error
)) {
436 error_propagate(errp
, error
);
440 on_write_error
= BLOCKDEV_ON_ERROR_ENOSPC
;
441 if ((buf
= qemu_opt_get(opts
, "werror")) != NULL
) {
442 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
&& type
!= IF_NONE
) {
443 error_setg(errp
, "werror is not supported by this bus type");
447 on_write_error
= parse_block_error_action(buf
, 0, &error
);
448 if (error_is_set(&error
)) {
449 error_propagate(errp
, error
);
454 on_read_error
= BLOCKDEV_ON_ERROR_REPORT
;
455 if ((buf
= qemu_opt_get(opts
, "rerror")) != NULL
) {
456 if (type
!= IF_IDE
&& type
!= IF_VIRTIO
&& type
!= IF_SCSI
&& type
!= IF_NONE
) {
457 error_report("rerror is not supported by this bus type");
461 on_read_error
= parse_block_error_action(buf
, 1, &error
);
462 if (error_is_set(&error
)) {
463 error_propagate(errp
, error
);
469 dinfo
= g_malloc0(sizeof(*dinfo
));
470 dinfo
->id
= g_strdup(qemu_opts_id(opts
));
471 dinfo
->bdrv
= bdrv_new(dinfo
->id
);
472 dinfo
->bdrv
->open_flags
= snapshot
? BDRV_O_SNAPSHOT
: 0;
473 dinfo
->bdrv
->read_only
= ro
;
476 if (serial
!= NULL
) {
477 dinfo
->serial
= g_strdup(serial
);
479 QTAILQ_INSERT_TAIL(&drives
, dinfo
, next
);
481 bdrv_set_on_error(dinfo
->bdrv
, on_read_error
, on_write_error
);
483 /* disk I/O throttling */
484 if (throttle_enabled(&cfg
)) {
485 bdrv_io_limits_enable(dinfo
->bdrv
);
486 bdrv_set_io_limits(dinfo
->bdrv
, &cfg
);
489 if (!file
|| !*file
) {
490 if (has_driver_specific_opts
) {
499 /* always use cache=unsafe with snapshot */
500 bdrv_flags
&= ~BDRV_O_CACHE_MASK
;
501 bdrv_flags
|= (BDRV_O_SNAPSHOT
|BDRV_O_CACHE_WB
|BDRV_O_NO_FLUSH
);
505 bdrv_flags
|= BDRV_O_COPY_ON_READ
;
508 if (runstate_check(RUN_STATE_INMIGRATE
)) {
509 bdrv_flags
|= BDRV_O_INCOMING
;
512 bdrv_flags
|= ro
? 0 : BDRV_O_RDWR
;
515 ret
= bdrv_open(dinfo
->bdrv
, file
, bs_opts
, bdrv_flags
, drv
, &error
);
518 error_setg(errp
, "could not open disk image %s: %s",
519 file
?: dinfo
->id
, error_get_pretty(error
));
524 if (bdrv_key_required(dinfo
->bdrv
))
533 bdrv_unref(dinfo
->bdrv
);
535 QTAILQ_REMOVE(&drives
, dinfo
, next
);
543 static void qemu_opt_rename(QemuOpts
*opts
, const char *from
, const char *to
)
547 value
= qemu_opt_get(opts
, from
);
549 qemu_opt_set(opts
, to
, value
);
550 qemu_opt_unset(opts
, from
);
554 QemuOptsList qemu_legacy_drive_opts
= {
556 .head
= QTAILQ_HEAD_INITIALIZER(qemu_legacy_drive_opts
.head
),
560 .type
= QEMU_OPT_NUMBER
,
561 .help
= "bus number",
564 .type
= QEMU_OPT_NUMBER
,
565 .help
= "unit number (i.e. lun for scsi)",
568 .type
= QEMU_OPT_NUMBER
,
569 .help
= "index number",
572 .type
= QEMU_OPT_STRING
,
573 .help
= "media type (disk, cdrom)",
576 .type
= QEMU_OPT_STRING
,
577 .help
= "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
580 .type
= QEMU_OPT_NUMBER
,
581 .help
= "number of cylinders (ide disk geometry)",
584 .type
= QEMU_OPT_NUMBER
,
585 .help
= "number of heads (ide disk geometry)",
588 .type
= QEMU_OPT_NUMBER
,
589 .help
= "number of sectors (ide disk geometry)",
592 .type
= QEMU_OPT_STRING
,
593 .help
= "chs translation (auto, lba, none)",
596 .type
= QEMU_OPT_BOOL
,
597 .help
= "(deprecated, ignored)",
600 .type
= QEMU_OPT_STRING
,
601 .help
= "pci address (virtio only)",
604 /* Options that are passed on, but have special semantics with -drive */
607 .type
= QEMU_OPT_BOOL
,
608 .help
= "open drive file as read-only",
610 .name
= "copy-on-read",
611 .type
= QEMU_OPT_BOOL
,
612 .help
= "copy read data from backing file into image file",
615 { /* end of list */ }
619 DriveInfo
*drive_init(QemuOpts
*all_opts
, BlockInterfaceType block_default_type
)
622 DriveInfo
*dinfo
= NULL
;
624 QemuOpts
*legacy_opts
;
625 DriveMediaType media
= MEDIA_DISK
;
626 BlockInterfaceType type
;
627 int cyls
, heads
, secs
, translation
;
628 int max_devs
, bus_id
, unit_id
, index
;
630 bool read_only
= false;
632 Error
*local_err
= NULL
;
634 /* Change legacy command line options into QMP ones */
635 qemu_opt_rename(all_opts
, "iops", "throttling.iops-total");
636 qemu_opt_rename(all_opts
, "iops_rd", "throttling.iops-read");
637 qemu_opt_rename(all_opts
, "iops_wr", "throttling.iops-write");
639 qemu_opt_rename(all_opts
, "bps", "throttling.bps-total");
640 qemu_opt_rename(all_opts
, "bps_rd", "throttling.bps-read");
641 qemu_opt_rename(all_opts
, "bps_wr", "throttling.bps-write");
643 qemu_opt_rename(all_opts
, "iops_max", "throttling.iops-total-max");
644 qemu_opt_rename(all_opts
, "iops_rd_max", "throttling.iops-read-max");
645 qemu_opt_rename(all_opts
, "iops_wr_max", "throttling.iops-write-max");
647 qemu_opt_rename(all_opts
, "bps_max", "throttling.bps-total-max");
648 qemu_opt_rename(all_opts
, "bps_rd_max", "throttling.bps-read-max");
649 qemu_opt_rename(all_opts
, "bps_wr_max", "throttling.bps-write-max");
651 qemu_opt_rename(all_opts
,
652 "iops_size", "throttling.iops-size");
654 qemu_opt_rename(all_opts
, "readonly", "read-only");
656 value
= qemu_opt_get(all_opts
, "cache");
660 if (bdrv_parse_cache_flags(value
, &flags
) != 0) {
661 error_report("invalid cache option");
665 /* Specific options take precedence */
666 if (!qemu_opt_get(all_opts
, "cache.writeback")) {
667 qemu_opt_set_bool(all_opts
, "cache.writeback",
668 !!(flags
& BDRV_O_CACHE_WB
));
670 if (!qemu_opt_get(all_opts
, "cache.direct")) {
671 qemu_opt_set_bool(all_opts
, "cache.direct",
672 !!(flags
& BDRV_O_NOCACHE
));
674 if (!qemu_opt_get(all_opts
, "cache.no-flush")) {
675 qemu_opt_set_bool(all_opts
, "cache.no-flush",
676 !!(flags
& BDRV_O_NO_FLUSH
));
678 qemu_opt_unset(all_opts
, "cache");
681 /* Get a QDict for processing the options */
682 bs_opts
= qdict_new();
683 qemu_opts_to_qdict(all_opts
, bs_opts
);
685 legacy_opts
= qemu_opts_create_nofail(&qemu_legacy_drive_opts
);
686 qemu_opts_absorb_qdict(legacy_opts
, bs_opts
, &local_err
);
687 if (error_is_set(&local_err
)) {
688 qerror_report_err(local_err
);
689 error_free(local_err
);
693 /* Deprecated option boot=[on|off] */
694 if (qemu_opt_get(legacy_opts
, "boot") != NULL
) {
695 fprintf(stderr
, "qemu-kvm: boot=on|off is deprecated and will be "
696 "ignored. Future versions will reject this parameter. Please "
697 "update your scripts.\n");
701 value
= qemu_opt_get(legacy_opts
, "media");
703 if (!strcmp(value
, "disk")) {
705 } else if (!strcmp(value
, "cdrom")) {
709 error_report("'%s' invalid media", value
);
714 /* copy-on-read is disabled with a warning for read-only devices */
715 read_only
|= qemu_opt_get_bool(legacy_opts
, "read-only", false);
716 copy_on_read
= qemu_opt_get_bool(legacy_opts
, "copy-on-read", false);
718 if (read_only
&& copy_on_read
) {
719 error_report("warning: disabling copy-on-read on read-only drive");
720 copy_on_read
= false;
723 qdict_put(bs_opts
, "read-only",
724 qstring_from_str(read_only
? "on" : "off"));
725 qdict_put(bs_opts
, "copy-on-read",
726 qstring_from_str(copy_on_read
? "on" :"off"));
728 /* Controller type */
729 value
= qemu_opt_get(legacy_opts
, "if");
732 type
< IF_COUNT
&& strcmp(value
, if_name
[type
]);
735 if (type
== IF_COUNT
) {
736 error_report("unsupported bus type '%s'", value
);
740 type
= block_default_type
;
744 cyls
= qemu_opt_get_number(legacy_opts
, "cyls", 0);
745 heads
= qemu_opt_get_number(legacy_opts
, "heads", 0);
746 secs
= qemu_opt_get_number(legacy_opts
, "secs", 0);
748 if (cyls
|| heads
|| secs
) {
750 error_report("invalid physical cyls number");
754 error_report("invalid physical heads number");
758 error_report("invalid physical secs number");
763 translation
= BIOS_ATA_TRANSLATION_AUTO
;
764 value
= qemu_opt_get(legacy_opts
, "trans");
767 error_report("'%s' trans must be used with cyls, heads and secs",
771 if (!strcmp(value
, "none")) {
772 translation
= BIOS_ATA_TRANSLATION_NONE
;
773 } else if (!strcmp(value
, "lba")) {
774 translation
= BIOS_ATA_TRANSLATION_LBA
;
775 } else if (!strcmp(value
, "auto")) {
776 translation
= BIOS_ATA_TRANSLATION_AUTO
;
778 error_report("'%s' invalid translation type", value
);
783 if (media
== MEDIA_CDROM
) {
784 if (cyls
|| secs
|| heads
) {
785 error_report("CHS can't be set with media=cdrom");
790 /* Device address specified by bus/unit or index.
791 * If none was specified, try to find the first free one. */
792 bus_id
= qemu_opt_get_number(legacy_opts
, "bus", 0);
793 unit_id
= qemu_opt_get_number(legacy_opts
, "unit", -1);
794 index
= qemu_opt_get_number(legacy_opts
, "index", -1);
796 max_devs
= if_max_devs
[type
];
799 if (bus_id
!= 0 || unit_id
!= -1) {
800 error_report("index cannot be used with bus and unit");
803 bus_id
= drive_index_to_bus_id(type
, index
);
804 unit_id
= drive_index_to_unit_id(type
, index
);
809 while (drive_get(type
, bus_id
, unit_id
) != NULL
) {
811 if (max_devs
&& unit_id
>= max_devs
) {
818 if (max_devs
&& unit_id
>= max_devs
) {
819 error_report("unit %d too big (max is %d)", unit_id
, max_devs
- 1);
823 if (drive_get(type
, bus_id
, unit_id
) != NULL
) {
824 error_report("drive with bus=%d, unit=%d (index=%d) exists",
825 bus_id
, unit_id
, index
);
829 /* no id supplied -> create one */
830 if (qemu_opts_id(all_opts
) == NULL
) {
832 const char *mediastr
= "";
833 if (type
== IF_IDE
|| type
== IF_SCSI
) {
834 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
837 new_id
= g_strdup_printf("%s%i%s%i", if_name
[type
], bus_id
,
840 new_id
= g_strdup_printf("%s%s%i", if_name
[type
],
843 qdict_put(bs_opts
, "id", qstring_from_str(new_id
));
847 /* Add virtio block device */
848 devaddr
= qemu_opt_get(legacy_opts
, "addr");
849 if (devaddr
&& type
!= IF_VIRTIO
) {
850 error_report("addr is not supported by this bus type");
854 if (type
== IF_VIRTIO
) {
856 devopts
= qemu_opts_create_nofail(qemu_find_opts("device"));
857 if (arch_type
== QEMU_ARCH_S390X
) {
858 qemu_opt_set(devopts
, "driver", "virtio-blk-s390");
860 qemu_opt_set(devopts
, "driver", "virtio-blk-pci");
862 qemu_opt_set(devopts
, "drive", qdict_get_str(bs_opts
, "id"));
864 qemu_opt_set(devopts
, "addr", devaddr
);
868 /* Actual block device init: Functionality shared with blockdev-add */
869 dinfo
= blockdev_init(bs_opts
, type
, &local_err
);
871 if (error_is_set(&local_err
)) {
872 qerror_report_err(local_err
);
873 error_free(local_err
);
877 assert(!error_is_set(&local_err
));
880 /* Set legacy DriveInfo fields */
881 dinfo
->enable_auto_del
= true;
882 dinfo
->opts
= all_opts
;
885 dinfo
->heads
= heads
;
887 dinfo
->trans
= translation
;
890 dinfo
->unit
= unit_id
;
891 dinfo
->devaddr
= devaddr
;
898 dinfo
->media_cd
= media
== MEDIA_CDROM
;
905 qemu_opts_del(legacy_opts
);
909 void do_commit(Monitor
*mon
, const QDict
*qdict
)
911 const char *device
= qdict_get_str(qdict
, "device");
912 BlockDriverState
*bs
;
915 if (!strcmp(device
, "all")) {
916 ret
= bdrv_commit_all();
918 bs
= bdrv_find(device
);
920 monitor_printf(mon
, "Device '%s' not found\n", device
);
923 ret
= bdrv_commit(bs
);
926 monitor_printf(mon
, "'commit' error for '%s': %s\n", device
,
931 static void blockdev_do_action(int kind
, void *data
, Error
**errp
)
933 TransactionAction action
;
934 TransactionActionList list
;
938 list
.value
= &action
;
940 qmp_transaction(&list
, errp
);
943 void qmp_blockdev_snapshot_sync(const char *device
, const char *snapshot_file
,
944 bool has_format
, const char *format
,
945 bool has_mode
, enum NewImageMode mode
,
948 BlockdevSnapshot snapshot
= {
949 .device
= (char *) device
,
950 .snapshot_file
= (char *) snapshot_file
,
951 .has_format
= has_format
,
952 .format
= (char *) format
,
953 .has_mode
= has_mode
,
956 blockdev_do_action(TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
,
960 void qmp_blockdev_snapshot_internal_sync(const char *device
,
964 BlockdevSnapshotInternal snapshot
= {
965 .device
= (char *) device
,
966 .name
= (char *) name
969 blockdev_do_action(TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC
,
973 SnapshotInfo
*qmp_blockdev_snapshot_delete_internal_sync(const char *device
,
980 BlockDriverState
*bs
= bdrv_find(device
);
982 Error
*local_err
= NULL
;
983 SnapshotInfo
*info
= NULL
;
987 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1000 error_setg(errp
, "Name or id must be provided");
1004 ret
= bdrv_snapshot_find_by_id_and_name(bs
, id
, name
, &sn
, &local_err
);
1005 if (error_is_set(&local_err
)) {
1006 error_propagate(errp
, local_err
);
1011 "Snapshot with id '%s' and name '%s' does not exist on "
1013 STR_OR_NULL(id
), STR_OR_NULL(name
), device
);
1017 bdrv_snapshot_delete(bs
, id
, name
, &local_err
);
1018 if (error_is_set(&local_err
)) {
1019 error_propagate(errp
, local_err
);
1023 info
= g_malloc0(sizeof(SnapshotInfo
));
1024 info
->id
= g_strdup(sn
.id_str
);
1025 info
->name
= g_strdup(sn
.name
);
1026 info
->date_nsec
= sn
.date_nsec
;
1027 info
->date_sec
= sn
.date_sec
;
1028 info
->vm_state_size
= sn
.vm_state_size
;
1029 info
->vm_clock_nsec
= sn
.vm_clock_nsec
% 1000000000;
1030 info
->vm_clock_sec
= sn
.vm_clock_nsec
/ 1000000000;
1035 /* New and old BlockDriverState structs for group snapshots */
1037 typedef struct BlkTransactionState BlkTransactionState
;
1039 /* Only prepare() may fail. In a single transaction, only one of commit() or
1040 abort() will be called, clean() will always be called if it present. */
1041 typedef struct BdrvActionOps
{
1042 /* Size of state struct, in bytes. */
1043 size_t instance_size
;
1044 /* Prepare the work, must NOT be NULL. */
1045 void (*prepare
)(BlkTransactionState
*common
, Error
**errp
);
1046 /* Commit the changes, can be NULL. */
1047 void (*commit
)(BlkTransactionState
*common
);
1048 /* Abort the changes on fail, can be NULL. */
1049 void (*abort
)(BlkTransactionState
*common
);
1050 /* Clean up resource in the end, can be NULL. */
1051 void (*clean
)(BlkTransactionState
*common
);
1055 * This structure must be arranged as first member in child type, assuming
1056 * that compiler will also arrange it to the same address with parent instance.
1057 * Later it will be used in free().
1059 struct BlkTransactionState
{
1060 TransactionAction
*action
;
1061 const BdrvActionOps
*ops
;
1062 QSIMPLEQ_ENTRY(BlkTransactionState
) entry
;
1065 /* internal snapshot private data */
1066 typedef struct InternalSnapshotState
{
1067 BlkTransactionState common
;
1068 BlockDriverState
*bs
;
1069 QEMUSnapshotInfo sn
;
1070 } InternalSnapshotState
;
1072 static void internal_snapshot_prepare(BlkTransactionState
*common
,
1077 BlockDriverState
*bs
;
1078 QEMUSnapshotInfo old_sn
, *sn
;
1081 BlockdevSnapshotInternal
*internal
;
1082 InternalSnapshotState
*state
;
1085 g_assert(common
->action
->kind
==
1086 TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC
);
1087 internal
= common
->action
->blockdev_snapshot_internal_sync
;
1088 state
= DO_UPCAST(InternalSnapshotState
, common
, common
);
1090 /* 1. parse input */
1091 device
= internal
->device
;
1092 name
= internal
->name
;
1094 /* 2. check for validation */
1095 bs
= bdrv_find(device
);
1097 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1101 if (!bdrv_is_inserted(bs
)) {
1102 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1106 if (bdrv_is_read_only(bs
)) {
1107 error_set(errp
, QERR_DEVICE_IS_READ_ONLY
, device
);
1111 if (!bdrv_can_snapshot(bs
)) {
1112 error_set(errp
, QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED
,
1113 bs
->drv
->format_name
, device
, "internal snapshot");
1117 if (!strlen(name
)) {
1118 error_setg(errp
, "Name is empty");
1122 /* check whether a snapshot with name exist */
1123 ret
= bdrv_snapshot_find_by_id_and_name(bs
, NULL
, name
, &old_sn
, errp
);
1124 if (error_is_set(errp
)) {
1128 "Snapshot with name '%s' already exists on device '%s'",
1133 /* 3. take the snapshot */
1135 pstrcpy(sn
->name
, sizeof(sn
->name
), name
);
1136 qemu_gettimeofday(&tv
);
1137 sn
->date_sec
= tv
.tv_sec
;
1138 sn
->date_nsec
= tv
.tv_usec
* 1000;
1139 sn
->vm_clock_nsec
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
1141 ret1
= bdrv_snapshot_create(bs
, sn
);
1143 error_setg_errno(errp
, -ret1
,
1144 "Failed to create snapshot '%s' on device '%s'",
1149 /* 4. succeed, mark a snapshot is created */
1153 static void internal_snapshot_abort(BlkTransactionState
*common
)
1155 InternalSnapshotState
*state
=
1156 DO_UPCAST(InternalSnapshotState
, common
, common
);
1157 BlockDriverState
*bs
= state
->bs
;
1158 QEMUSnapshotInfo
*sn
= &state
->sn
;
1159 Error
*local_error
= NULL
;
1165 if (bdrv_snapshot_delete(bs
, sn
->id_str
, sn
->name
, &local_error
) < 0) {
1166 error_report("Failed to delete snapshot with id '%s' and name '%s' on "
1167 "device '%s' in abort: %s",
1170 bdrv_get_device_name(bs
),
1171 error_get_pretty(local_error
));
1172 error_free(local_error
);
1176 /* external snapshot private data */
1177 typedef struct ExternalSnapshotState
{
1178 BlkTransactionState common
;
1179 BlockDriverState
*old_bs
;
1180 BlockDriverState
*new_bs
;
1181 } ExternalSnapshotState
;
1183 static void external_snapshot_prepare(BlkTransactionState
*common
,
1188 Error
*local_err
= NULL
;
1190 const char *new_image_file
;
1191 const char *format
= "qcow2";
1192 enum NewImageMode mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1193 ExternalSnapshotState
*state
=
1194 DO_UPCAST(ExternalSnapshotState
, common
, common
);
1195 TransactionAction
*action
= common
->action
;
1197 /* get parameters */
1198 g_assert(action
->kind
== TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
);
1200 device
= action
->blockdev_snapshot_sync
->device
;
1201 new_image_file
= action
->blockdev_snapshot_sync
->snapshot_file
;
1202 if (action
->blockdev_snapshot_sync
->has_format
) {
1203 format
= action
->blockdev_snapshot_sync
->format
;
1205 if (action
->blockdev_snapshot_sync
->has_mode
) {
1206 mode
= action
->blockdev_snapshot_sync
->mode
;
1209 /* start processing */
1210 drv
= bdrv_find_format(format
);
1212 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
1216 state
->old_bs
= bdrv_find(device
);
1217 if (!state
->old_bs
) {
1218 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1222 if (!bdrv_is_inserted(state
->old_bs
)) {
1223 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1227 if (bdrv_in_use(state
->old_bs
)) {
1228 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
1232 if (!bdrv_is_read_only(state
->old_bs
)) {
1233 if (bdrv_flush(state
->old_bs
)) {
1234 error_set(errp
, QERR_IO_ERROR
);
1239 if (bdrv_check_ext_snapshot(state
->old_bs
) != EXT_SNAPSHOT_ALLOWED
) {
1240 error_set(errp
, QERR_FEATURE_DISABLED
, "snapshot");
1244 flags
= state
->old_bs
->open_flags
;
1246 /* create new image w/backing file */
1247 if (mode
!= NEW_IMAGE_MODE_EXISTING
) {
1248 bdrv_img_create(new_image_file
, format
,
1249 state
->old_bs
->filename
,
1250 state
->old_bs
->drv
->format_name
,
1251 NULL
, -1, flags
, &local_err
, false);
1252 if (error_is_set(&local_err
)) {
1253 error_propagate(errp
, local_err
);
1258 /* We will manually add the backing_hd field to the bs later */
1259 state
->new_bs
= bdrv_new("");
1260 /* TODO Inherit bs->options or only take explicit options with an
1261 * extended QMP command? */
1262 ret
= bdrv_open(state
->new_bs
, new_image_file
, NULL
,
1263 flags
| BDRV_O_NO_BACKING
, drv
, &local_err
);
1265 error_propagate(errp
, local_err
);
1269 static void external_snapshot_commit(BlkTransactionState
*common
)
1271 ExternalSnapshotState
*state
=
1272 DO_UPCAST(ExternalSnapshotState
, common
, common
);
1274 /* This removes our old bs and adds the new bs */
1275 bdrv_append(state
->new_bs
, state
->old_bs
);
1276 /* We don't need (or want) to use the transactional
1277 * bdrv_reopen_multiple() across all the entries at once, because we
1278 * don't want to abort all of them if one of them fails the reopen */
1279 bdrv_reopen(state
->new_bs
, state
->new_bs
->open_flags
& ~BDRV_O_RDWR
,
1283 static void external_snapshot_abort(BlkTransactionState
*common
)
1285 ExternalSnapshotState
*state
=
1286 DO_UPCAST(ExternalSnapshotState
, common
, common
);
1287 if (state
->new_bs
) {
1288 bdrv_unref(state
->new_bs
);
1292 typedef struct DriveBackupState
{
1293 BlkTransactionState common
;
1294 BlockDriverState
*bs
;
1298 static void drive_backup_prepare(BlkTransactionState
*common
, Error
**errp
)
1300 DriveBackupState
*state
= DO_UPCAST(DriveBackupState
, common
, common
);
1301 DriveBackup
*backup
;
1302 Error
*local_err
= NULL
;
1304 assert(common
->action
->kind
== TRANSACTION_ACTION_KIND_DRIVE_BACKUP
);
1305 backup
= common
->action
->drive_backup
;
1307 qmp_drive_backup(backup
->device
, backup
->target
,
1308 backup
->has_format
, backup
->format
,
1310 backup
->has_mode
, backup
->mode
,
1311 backup
->has_speed
, backup
->speed
,
1312 backup
->has_on_source_error
, backup
->on_source_error
,
1313 backup
->has_on_target_error
, backup
->on_target_error
,
1315 if (error_is_set(&local_err
)) {
1316 error_propagate(errp
, local_err
);
1322 state
->bs
= bdrv_find(backup
->device
);
1323 state
->job
= state
->bs
->job
;
1326 static void drive_backup_abort(BlkTransactionState
*common
)
1328 DriveBackupState
*state
= DO_UPCAST(DriveBackupState
, common
, common
);
1329 BlockDriverState
*bs
= state
->bs
;
1331 /* Only cancel if it's the job we started */
1332 if (bs
&& bs
->job
&& bs
->job
== state
->job
) {
1333 block_job_cancel_sync(bs
->job
);
1337 static void abort_prepare(BlkTransactionState
*common
, Error
**errp
)
1339 error_setg(errp
, "Transaction aborted using Abort action");
1342 static void abort_commit(BlkTransactionState
*common
)
1344 g_assert_not_reached(); /* this action never succeeds */
1347 static const BdrvActionOps actions
[] = {
1348 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
] = {
1349 .instance_size
= sizeof(ExternalSnapshotState
),
1350 .prepare
= external_snapshot_prepare
,
1351 .commit
= external_snapshot_commit
,
1352 .abort
= external_snapshot_abort
,
1354 [TRANSACTION_ACTION_KIND_DRIVE_BACKUP
] = {
1355 .instance_size
= sizeof(DriveBackupState
),
1356 .prepare
= drive_backup_prepare
,
1357 .abort
= drive_backup_abort
,
1359 [TRANSACTION_ACTION_KIND_ABORT
] = {
1360 .instance_size
= sizeof(BlkTransactionState
),
1361 .prepare
= abort_prepare
,
1362 .commit
= abort_commit
,
1364 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC
] = {
1365 .instance_size
= sizeof(InternalSnapshotState
),
1366 .prepare
= internal_snapshot_prepare
,
1367 .abort
= internal_snapshot_abort
,
1372 * 'Atomic' group snapshots. The snapshots are taken as a set, and if any fail
1373 * then we do not pivot any of the devices in the group, and abandon the
1376 void qmp_transaction(TransactionActionList
*dev_list
, Error
**errp
)
1378 TransactionActionList
*dev_entry
= dev_list
;
1379 BlkTransactionState
*state
, *next
;
1380 Error
*local_err
= NULL
;
1382 QSIMPLEQ_HEAD(snap_bdrv_states
, BlkTransactionState
) snap_bdrv_states
;
1383 QSIMPLEQ_INIT(&snap_bdrv_states
);
1385 /* drain all i/o before any snapshots */
1388 /* We don't do anything in this loop that commits us to the snapshot */
1389 while (NULL
!= dev_entry
) {
1390 TransactionAction
*dev_info
= NULL
;
1391 const BdrvActionOps
*ops
;
1393 dev_info
= dev_entry
->value
;
1394 dev_entry
= dev_entry
->next
;
1396 assert(dev_info
->kind
< ARRAY_SIZE(actions
));
1398 ops
= &actions
[dev_info
->kind
];
1399 assert(ops
->instance_size
> 0);
1401 state
= g_malloc0(ops
->instance_size
);
1403 state
->action
= dev_info
;
1404 QSIMPLEQ_INSERT_TAIL(&snap_bdrv_states
, state
, entry
);
1406 state
->ops
->prepare(state
, &local_err
);
1407 if (error_is_set(&local_err
)) {
1408 error_propagate(errp
, local_err
);
1409 goto delete_and_fail
;
1413 QSIMPLEQ_FOREACH(state
, &snap_bdrv_states
, entry
) {
1414 if (state
->ops
->commit
) {
1415 state
->ops
->commit(state
);
1424 * failure, and it is all-or-none; abandon each new bs, and keep using
1425 * the original bs for all images
1427 QSIMPLEQ_FOREACH(state
, &snap_bdrv_states
, entry
) {
1428 if (state
->ops
->abort
) {
1429 state
->ops
->abort(state
);
1433 QSIMPLEQ_FOREACH_SAFE(state
, &snap_bdrv_states
, entry
, next
) {
1434 if (state
->ops
->clean
) {
1435 state
->ops
->clean(state
);
1442 static void eject_device(BlockDriverState
*bs
, int force
, Error
**errp
)
1444 if (bdrv_in_use(bs
)) {
1445 error_set(errp
, QERR_DEVICE_IN_USE
, bdrv_get_device_name(bs
));
1448 if (!bdrv_dev_has_removable_media(bs
)) {
1449 error_set(errp
, QERR_DEVICE_NOT_REMOVABLE
, bdrv_get_device_name(bs
));
1453 if (bdrv_dev_is_medium_locked(bs
) && !bdrv_dev_is_tray_open(bs
)) {
1454 bdrv_dev_eject_request(bs
, force
);
1456 error_set(errp
, QERR_DEVICE_LOCKED
, bdrv_get_device_name(bs
));
1464 void qmp_eject(const char *device
, bool has_force
, bool force
, Error
**errp
)
1466 BlockDriverState
*bs
;
1468 bs
= bdrv_find(device
);
1470 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1474 eject_device(bs
, force
, errp
);
1477 void qmp_block_passwd(const char *device
, const char *password
, Error
**errp
)
1479 BlockDriverState
*bs
;
1482 bs
= bdrv_find(device
);
1484 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1488 err
= bdrv_set_key(bs
, password
);
1489 if (err
== -EINVAL
) {
1490 error_set(errp
, QERR_DEVICE_NOT_ENCRYPTED
, bdrv_get_device_name(bs
));
1492 } else if (err
< 0) {
1493 error_set(errp
, QERR_INVALID_PASSWORD
);
1498 static void qmp_bdrv_open_encrypted(BlockDriverState
*bs
, const char *filename
,
1499 int bdrv_flags
, BlockDriver
*drv
,
1500 const char *password
, Error
**errp
)
1502 Error
*local_err
= NULL
;
1505 ret
= bdrv_open(bs
, filename
, NULL
, bdrv_flags
, drv
, &local_err
);
1507 error_propagate(errp
, local_err
);
1511 if (bdrv_key_required(bs
)) {
1513 if (bdrv_set_key(bs
, password
) < 0) {
1514 error_set(errp
, QERR_INVALID_PASSWORD
);
1517 error_set(errp
, QERR_DEVICE_ENCRYPTED
, bdrv_get_device_name(bs
),
1518 bdrv_get_encrypted_filename(bs
));
1520 } else if (password
) {
1521 error_set(errp
, QERR_DEVICE_NOT_ENCRYPTED
, bdrv_get_device_name(bs
));
1525 void qmp_change_blockdev(const char *device
, const char *filename
,
1526 const char *format
, Error
**errp
)
1528 BlockDriverState
*bs
;
1529 BlockDriver
*drv
= NULL
;
1533 bs
= bdrv_find(device
);
1535 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1540 drv
= bdrv_find_whitelisted_format(format
, bs
->read_only
);
1542 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
1547 eject_device(bs
, 0, &err
);
1548 if (error_is_set(&err
)) {
1549 error_propagate(errp
, err
);
1553 bdrv_flags
= bdrv_is_read_only(bs
) ? 0 : BDRV_O_RDWR
;
1554 bdrv_flags
|= bdrv_is_snapshot(bs
) ? BDRV_O_SNAPSHOT
: 0;
1556 qmp_bdrv_open_encrypted(bs
, filename
, bdrv_flags
, drv
, NULL
, errp
);
1559 /* throttling disk I/O limits */
1560 void qmp_block_set_io_throttle(const char *device
, int64_t bps
, int64_t bps_rd
,
1567 bool has_bps_rd_max
,
1569 bool has_bps_wr_max
,
1573 bool has_iops_rd_max
,
1574 int64_t iops_rd_max
,
1575 bool has_iops_wr_max
,
1576 int64_t iops_wr_max
,
1578 int64_t iops_size
, Error
**errp
)
1581 BlockDriverState
*bs
;
1583 bs
= bdrv_find(device
);
1585 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1589 memset(&cfg
, 0, sizeof(cfg
));
1590 cfg
.buckets
[THROTTLE_BPS_TOTAL
].avg
= bps
;
1591 cfg
.buckets
[THROTTLE_BPS_READ
].avg
= bps_rd
;
1592 cfg
.buckets
[THROTTLE_BPS_WRITE
].avg
= bps_wr
;
1594 cfg
.buckets
[THROTTLE_OPS_TOTAL
].avg
= iops
;
1595 cfg
.buckets
[THROTTLE_OPS_READ
].avg
= iops_rd
;
1596 cfg
.buckets
[THROTTLE_OPS_WRITE
].avg
= iops_wr
;
1599 cfg
.buckets
[THROTTLE_BPS_TOTAL
].max
= bps_max
;
1601 if (has_bps_rd_max
) {
1602 cfg
.buckets
[THROTTLE_BPS_READ
].max
= bps_rd_max
;
1604 if (has_bps_wr_max
) {
1605 cfg
.buckets
[THROTTLE_BPS_WRITE
].max
= bps_wr_max
;
1608 cfg
.buckets
[THROTTLE_OPS_TOTAL
].max
= iops_max
;
1610 if (has_iops_rd_max
) {
1611 cfg
.buckets
[THROTTLE_OPS_READ
].max
= iops_rd_max
;
1613 if (has_iops_wr_max
) {
1614 cfg
.buckets
[THROTTLE_OPS_WRITE
].max
= iops_wr_max
;
1617 if (has_iops_size
) {
1618 cfg
.op_size
= iops_size
;
1621 if (!check_throttle_config(&cfg
, errp
)) {
1625 if (!bs
->io_limits_enabled
&& throttle_enabled(&cfg
)) {
1626 bdrv_io_limits_enable(bs
);
1627 } else if (bs
->io_limits_enabled
&& !throttle_enabled(&cfg
)) {
1628 bdrv_io_limits_disable(bs
);
1631 if (bs
->io_limits_enabled
) {
1632 bdrv_set_io_limits(bs
, &cfg
);
1636 int do_drive_del(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1638 const char *id
= qdict_get_str(qdict
, "id");
1639 BlockDriverState
*bs
;
1643 qerror_report(QERR_DEVICE_NOT_FOUND
, id
);
1646 if (bdrv_in_use(bs
)) {
1647 qerror_report(QERR_DEVICE_IN_USE
, id
);
1651 /* quiesce block driver; prevent further io */
1656 /* if we have a device attached to this BlockDriverState
1657 * then we need to make the drive anonymous until the device
1658 * can be removed. If this is a drive with no device backing
1659 * then we can just get rid of the block driver state right here.
1661 if (bdrv_get_attached_dev(bs
)) {
1664 /* Further I/O must not pause the guest */
1665 bdrv_set_on_error(bs
, BLOCKDEV_ON_ERROR_REPORT
,
1666 BLOCKDEV_ON_ERROR_REPORT
);
1668 drive_uninit(drive_get_by_blockdev(bs
));
1674 void qmp_block_resize(const char *device
, int64_t size
, Error
**errp
)
1676 BlockDriverState
*bs
;
1679 bs
= bdrv_find(device
);
1681 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1686 error_set(errp
, QERR_INVALID_PARAMETER_VALUE
, "size", "a >0 size");
1690 /* complete all in-flight operations before resizing the device */
1693 ret
= bdrv_truncate(bs
, size
);
1698 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1701 error_set(errp
, QERR_UNSUPPORTED
);
1704 error_set(errp
, QERR_DEVICE_IS_READ_ONLY
, device
);
1707 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
1710 error_setg_errno(errp
, -ret
, "Could not resize");
1715 static void block_job_cb(void *opaque
, int ret
)
1717 BlockDriverState
*bs
= opaque
;
1720 trace_block_job_cb(bs
, bs
->job
, ret
);
1723 obj
= qobject_from_block_job(bs
->job
);
1725 QDict
*dict
= qobject_to_qdict(obj
);
1726 qdict_put(dict
, "error", qstring_from_str(strerror(-ret
)));
1729 if (block_job_is_cancelled(bs
->job
)) {
1730 monitor_protocol_event(QEVENT_BLOCK_JOB_CANCELLED
, obj
);
1732 monitor_protocol_event(QEVENT_BLOCK_JOB_COMPLETED
, obj
);
1734 qobject_decref(obj
);
1736 bdrv_put_ref_bh_schedule(bs
);
1739 void qmp_block_stream(const char *device
, bool has_base
,
1740 const char *base
, bool has_speed
, int64_t speed
,
1741 bool has_on_error
, BlockdevOnError on_error
,
1744 BlockDriverState
*bs
;
1745 BlockDriverState
*base_bs
= NULL
;
1746 Error
*local_err
= NULL
;
1748 if (!has_on_error
) {
1749 on_error
= BLOCKDEV_ON_ERROR_REPORT
;
1752 bs
= bdrv_find(device
);
1754 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1759 base_bs
= bdrv_find_backing_image(bs
, base
);
1760 if (base_bs
== NULL
) {
1761 error_set(errp
, QERR_BASE_NOT_FOUND
, base
);
1766 stream_start(bs
, base_bs
, base
, has_speed
? speed
: 0,
1767 on_error
, block_job_cb
, bs
, &local_err
);
1768 if (error_is_set(&local_err
)) {
1769 error_propagate(errp
, local_err
);
1773 trace_qmp_block_stream(bs
, bs
->job
);
1776 void qmp_block_commit(const char *device
,
1777 bool has_base
, const char *base
, const char *top
,
1778 bool has_speed
, int64_t speed
,
1781 BlockDriverState
*bs
;
1782 BlockDriverState
*base_bs
, *top_bs
;
1783 Error
*local_err
= NULL
;
1784 /* This will be part of the QMP command, if/when the
1785 * BlockdevOnError change for blkmirror makes it in
1787 BlockdevOnError on_error
= BLOCKDEV_ON_ERROR_REPORT
;
1789 /* drain all i/o before commits */
1792 bs
= bdrv_find(device
);
1794 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1798 /* default top_bs is the active layer */
1802 if (strcmp(bs
->filename
, top
) != 0) {
1803 top_bs
= bdrv_find_backing_image(bs
, top
);
1807 if (top_bs
== NULL
) {
1808 error_setg(errp
, "Top image file %s not found", top
? top
: "NULL");
1812 if (has_base
&& base
) {
1813 base_bs
= bdrv_find_backing_image(top_bs
, base
);
1815 base_bs
= bdrv_find_base(top_bs
);
1818 if (base_bs
== NULL
) {
1819 error_set(errp
, QERR_BASE_NOT_FOUND
, base
? base
: "NULL");
1824 commit_active_start(bs
, base_bs
, speed
, on_error
, block_job_cb
,
1827 commit_start(bs
, base_bs
, top_bs
, speed
, on_error
, block_job_cb
, bs
,
1830 if (local_err
!= NULL
) {
1831 error_propagate(errp
, local_err
);
1836 void qmp_drive_backup(const char *device
, const char *target
,
1837 bool has_format
, const char *format
,
1838 enum MirrorSyncMode sync
,
1839 bool has_mode
, enum NewImageMode mode
,
1840 bool has_speed
, int64_t speed
,
1841 bool has_on_source_error
, BlockdevOnError on_source_error
,
1842 bool has_on_target_error
, BlockdevOnError on_target_error
,
1845 BlockDriverState
*bs
;
1846 BlockDriverState
*target_bs
;
1847 BlockDriverState
*source
= NULL
;
1848 BlockDriver
*drv
= NULL
;
1849 Error
*local_err
= NULL
;
1857 if (!has_on_source_error
) {
1858 on_source_error
= BLOCKDEV_ON_ERROR_REPORT
;
1860 if (!has_on_target_error
) {
1861 on_target_error
= BLOCKDEV_ON_ERROR_REPORT
;
1864 mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1867 bs
= bdrv_find(device
);
1869 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1873 if (!bdrv_is_inserted(bs
)) {
1874 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1879 format
= mode
== NEW_IMAGE_MODE_EXISTING
? NULL
: bs
->drv
->format_name
;
1882 drv
= bdrv_find_format(format
);
1884 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
1889 if (bdrv_in_use(bs
)) {
1890 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
1894 flags
= bs
->open_flags
| BDRV_O_RDWR
;
1896 /* See if we have a backing HD we can use to create our new image
1898 if (sync
== MIRROR_SYNC_MODE_TOP
) {
1899 source
= bs
->backing_hd
;
1901 sync
= MIRROR_SYNC_MODE_FULL
;
1904 if (sync
== MIRROR_SYNC_MODE_NONE
) {
1908 size
= bdrv_getlength(bs
);
1910 error_setg_errno(errp
, -size
, "bdrv_getlength failed");
1914 if (mode
!= NEW_IMAGE_MODE_EXISTING
) {
1915 assert(format
&& drv
);
1917 bdrv_img_create(target
, format
, source
->filename
,
1918 source
->drv
->format_name
, NULL
,
1919 size
, flags
, &local_err
, false);
1921 bdrv_img_create(target
, format
, NULL
, NULL
, NULL
,
1922 size
, flags
, &local_err
, false);
1926 if (error_is_set(&local_err
)) {
1927 error_propagate(errp
, local_err
);
1931 target_bs
= bdrv_new("");
1932 ret
= bdrv_open(target_bs
, target
, NULL
, flags
, drv
, &local_err
);
1934 bdrv_unref(target_bs
);
1935 error_propagate(errp
, local_err
);
1939 backup_start(bs
, target_bs
, speed
, sync
, on_source_error
, on_target_error
,
1940 block_job_cb
, bs
, &local_err
);
1941 if (local_err
!= NULL
) {
1942 bdrv_unref(target_bs
);
1943 error_propagate(errp
, local_err
);
1948 #define DEFAULT_MIRROR_BUF_SIZE (10 << 20)
1950 void qmp_drive_mirror(const char *device
, const char *target
,
1951 bool has_format
, const char *format
,
1952 enum MirrorSyncMode sync
,
1953 bool has_mode
, enum NewImageMode mode
,
1954 bool has_speed
, int64_t speed
,
1955 bool has_granularity
, uint32_t granularity
,
1956 bool has_buf_size
, int64_t buf_size
,
1957 bool has_on_source_error
, BlockdevOnError on_source_error
,
1958 bool has_on_target_error
, BlockdevOnError on_target_error
,
1961 BlockDriverState
*bs
;
1962 BlockDriverState
*source
, *target_bs
;
1963 BlockDriver
*drv
= NULL
;
1964 Error
*local_err
= NULL
;
1972 if (!has_on_source_error
) {
1973 on_source_error
= BLOCKDEV_ON_ERROR_REPORT
;
1975 if (!has_on_target_error
) {
1976 on_target_error
= BLOCKDEV_ON_ERROR_REPORT
;
1979 mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1981 if (!has_granularity
) {
1984 if (!has_buf_size
) {
1985 buf_size
= DEFAULT_MIRROR_BUF_SIZE
;
1988 if (granularity
!= 0 && (granularity
< 512 || granularity
> 1048576 * 64)) {
1989 error_set(errp
, QERR_INVALID_PARAMETER
, device
);
1992 if (granularity
& (granularity
- 1)) {
1993 error_set(errp
, QERR_INVALID_PARAMETER
, device
);
1997 bs
= bdrv_find(device
);
1999 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
2003 if (!bdrv_is_inserted(bs
)) {
2004 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
2009 format
= mode
== NEW_IMAGE_MODE_EXISTING
? NULL
: bs
->drv
->format_name
;
2012 drv
= bdrv_find_format(format
);
2014 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
2019 if (bdrv_in_use(bs
)) {
2020 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
2024 flags
= bs
->open_flags
| BDRV_O_RDWR
;
2025 source
= bs
->backing_hd
;
2026 if (!source
&& sync
== MIRROR_SYNC_MODE_TOP
) {
2027 sync
= MIRROR_SYNC_MODE_FULL
;
2029 if (sync
== MIRROR_SYNC_MODE_NONE
) {
2033 size
= bdrv_getlength(bs
);
2035 error_setg_errno(errp
, -size
, "bdrv_getlength failed");
2039 if ((sync
== MIRROR_SYNC_MODE_FULL
|| !source
)
2040 && mode
!= NEW_IMAGE_MODE_EXISTING
)
2042 /* create new image w/o backing file */
2043 assert(format
&& drv
);
2044 bdrv_img_create(target
, format
,
2045 NULL
, NULL
, NULL
, size
, flags
, &local_err
, false);
2048 case NEW_IMAGE_MODE_EXISTING
:
2050 case NEW_IMAGE_MODE_ABSOLUTE_PATHS
:
2051 /* create new image with backing file */
2052 bdrv_img_create(target
, format
,
2054 source
->drv
->format_name
,
2055 NULL
, size
, flags
, &local_err
, false);
2062 if (error_is_set(&local_err
)) {
2063 error_propagate(errp
, local_err
);
2067 /* Mirroring takes care of copy-on-write using the source's backing
2070 target_bs
= bdrv_new("");
2071 ret
= bdrv_open(target_bs
, target
, NULL
, flags
| BDRV_O_NO_BACKING
, drv
,
2074 bdrv_unref(target_bs
);
2075 error_propagate(errp
, local_err
);
2079 mirror_start(bs
, target_bs
, speed
, granularity
, buf_size
, sync
,
2080 on_source_error
, on_target_error
,
2081 block_job_cb
, bs
, &local_err
);
2082 if (local_err
!= NULL
) {
2083 bdrv_unref(target_bs
);
2084 error_propagate(errp
, local_err
);
2089 static BlockJob
*find_block_job(const char *device
)
2091 BlockDriverState
*bs
;
2093 bs
= bdrv_find(device
);
2094 if (!bs
|| !bs
->job
) {
2100 void qmp_block_job_set_speed(const char *device
, int64_t speed
, Error
**errp
)
2102 BlockJob
*job
= find_block_job(device
);
2105 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
2109 block_job_set_speed(job
, speed
, errp
);
2112 void qmp_block_job_cancel(const char *device
,
2113 bool has_force
, bool force
, Error
**errp
)
2115 BlockJob
*job
= find_block_job(device
);
2122 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
2125 if (job
->paused
&& !force
) {
2126 error_set(errp
, QERR_BLOCK_JOB_PAUSED
, device
);
2130 trace_qmp_block_job_cancel(job
);
2131 block_job_cancel(job
);
2134 void qmp_block_job_pause(const char *device
, Error
**errp
)
2136 BlockJob
*job
= find_block_job(device
);
2139 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
2143 trace_qmp_block_job_pause(job
);
2144 block_job_pause(job
);
2147 void qmp_block_job_resume(const char *device
, Error
**errp
)
2149 BlockJob
*job
= find_block_job(device
);
2152 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
2156 trace_qmp_block_job_resume(job
);
2157 block_job_resume(job
);
2160 void qmp_block_job_complete(const char *device
, Error
**errp
)
2162 BlockJob
*job
= find_block_job(device
);
2165 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
2169 trace_qmp_block_job_complete(job
);
2170 block_job_complete(job
, errp
);
2173 void qmp_blockdev_add(BlockdevOptions
*options
, Error
**errp
)
2175 QmpOutputVisitor
*ov
= qmp_output_visitor_new();
2178 Error
*local_err
= NULL
;
2180 /* Require an ID in the top level */
2181 if (!options
->has_id
) {
2182 error_setg(errp
, "Block device needs an ID");
2186 /* TODO Sort it out in raw-posix and drive_init: Reject aio=native with
2187 * cache.direct=false instead of silently switching to aio=threads, except
2188 * if called from drive_init.
2190 * For now, simply forbidding the combination for all drivers will do. */
2191 if (options
->has_aio
&& options
->aio
== BLOCKDEV_AIO_OPTIONS_NATIVE
) {
2192 bool direct
= options
->cache
->has_direct
&& options
->cache
->direct
;
2193 if (!options
->has_cache
&& !direct
) {
2194 error_setg(errp
, "aio=native requires cache.direct=true");
2199 visit_type_BlockdevOptions(qmp_output_get_visitor(ov
),
2200 &options
, NULL
, &local_err
);
2201 if (error_is_set(&local_err
)) {
2202 error_propagate(errp
, local_err
);
2206 obj
= qmp_output_get_qobject(ov
);
2207 qdict
= qobject_to_qdict(obj
);
2209 qdict_flatten(qdict
);
2211 blockdev_init(qdict
, IF_NONE
, &local_err
);
2212 if (error_is_set(&local_err
)) {
2213 error_propagate(errp
, local_err
);
2218 qmp_output_visitor_cleanup(ov
);
2221 static void do_qmp_query_block_jobs_one(void *opaque
, BlockDriverState
*bs
)
2223 BlockJobInfoList
**prev
= opaque
;
2224 BlockJob
*job
= bs
->job
;
2227 BlockJobInfoList
*elem
= g_new0(BlockJobInfoList
, 1);
2228 elem
->value
= block_job_query(bs
->job
);
2229 (*prev
)->next
= elem
;
2234 BlockJobInfoList
*qmp_query_block_jobs(Error
**errp
)
2236 /* Dummy is a fake list element for holding the head pointer */
2237 BlockJobInfoList dummy
= {};
2238 BlockJobInfoList
*prev
= &dummy
;
2239 bdrv_iterate(do_qmp_query_block_jobs_one
, &prev
);
2243 QemuOptsList qemu_common_drive_opts
= {
2245 .head
= QTAILQ_HEAD_INITIALIZER(qemu_common_drive_opts
.head
),
2249 .type
= QEMU_OPT_BOOL
,
2250 .help
= "enable/disable snapshot mode",
2253 .type
= QEMU_OPT_STRING
,
2254 .help
= "disk image",
2257 .type
= QEMU_OPT_STRING
,
2258 .help
= "discard operation (ignore/off, unmap/on)",
2260 .name
= "cache.writeback",
2261 .type
= QEMU_OPT_BOOL
,
2262 .help
= "enables writeback mode for any caches",
2264 .name
= "cache.direct",
2265 .type
= QEMU_OPT_BOOL
,
2266 .help
= "enables use of O_DIRECT (bypass the host page cache)",
2268 .name
= "cache.no-flush",
2269 .type
= QEMU_OPT_BOOL
,
2270 .help
= "ignore any flush requests for the device",
2273 .type
= QEMU_OPT_STRING
,
2274 .help
= "host AIO implementation (threads, native)",
2277 .type
= QEMU_OPT_STRING
,
2278 .help
= "disk format (raw, qcow2, ...)",
2281 .type
= QEMU_OPT_STRING
,
2282 .help
= "disk serial number",
2285 .type
= QEMU_OPT_STRING
,
2286 .help
= "read error action",
2289 .type
= QEMU_OPT_STRING
,
2290 .help
= "write error action",
2292 .name
= "read-only",
2293 .type
= QEMU_OPT_BOOL
,
2294 .help
= "open drive file as read-only",
2296 .name
= "throttling.iops-total",
2297 .type
= QEMU_OPT_NUMBER
,
2298 .help
= "limit total I/O operations per second",
2300 .name
= "throttling.iops-read",
2301 .type
= QEMU_OPT_NUMBER
,
2302 .help
= "limit read operations per second",
2304 .name
= "throttling.iops-write",
2305 .type
= QEMU_OPT_NUMBER
,
2306 .help
= "limit write operations per second",
2308 .name
= "throttling.bps-total",
2309 .type
= QEMU_OPT_NUMBER
,
2310 .help
= "limit total bytes per second",
2312 .name
= "throttling.bps-read",
2313 .type
= QEMU_OPT_NUMBER
,
2314 .help
= "limit read bytes per second",
2316 .name
= "throttling.bps-write",
2317 .type
= QEMU_OPT_NUMBER
,
2318 .help
= "limit write bytes per second",
2320 .name
= "throttling.iops-total-max",
2321 .type
= QEMU_OPT_NUMBER
,
2322 .help
= "I/O operations burst",
2324 .name
= "throttling.iops-read-max",
2325 .type
= QEMU_OPT_NUMBER
,
2326 .help
= "I/O operations read burst",
2328 .name
= "throttling.iops-write-max",
2329 .type
= QEMU_OPT_NUMBER
,
2330 .help
= "I/O operations write burst",
2332 .name
= "throttling.bps-total-max",
2333 .type
= QEMU_OPT_NUMBER
,
2334 .help
= "total bytes burst",
2336 .name
= "throttling.bps-read-max",
2337 .type
= QEMU_OPT_NUMBER
,
2338 .help
= "total bytes read burst",
2340 .name
= "throttling.bps-write-max",
2341 .type
= QEMU_OPT_NUMBER
,
2342 .help
= "total bytes write burst",
2344 .name
= "throttling.iops-size",
2345 .type
= QEMU_OPT_NUMBER
,
2346 .help
= "when limiting by iops max size of an I/O in bytes",
2348 .name
= "copy-on-read",
2349 .type
= QEMU_OPT_BOOL
,
2350 .help
= "copy read data from backing file into image file",
2352 { /* end of list */ }
2356 QemuOptsList qemu_drive_opts
= {
2358 .head
= QTAILQ_HEAD_INITIALIZER(qemu_drive_opts
.head
),
2361 * no elements => accept any params
2362 * validation will happen later
2364 { /* end of list */ }