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 inline int parse_enum_option(const char *lookup
[], const char *buf
,
292 int max
, int def
, Error
**errp
)
300 for (i
= 0; i
< max
; i
++) {
301 if (!strcmp(buf
, lookup
[i
])) {
306 error_setg(errp
, "invalid parameter value: %s", buf
);
310 static bool check_throttle_config(ThrottleConfig
*cfg
, Error
**errp
)
312 if (throttle_conflicting(cfg
)) {
313 error_setg(errp
, "bps/iops/max total values and read/write values"
314 " cannot be used at the same time");
318 if (!throttle_is_valid(cfg
)) {
319 error_setg(errp
, "bps/iops/maxs values must be 0 or greater");
326 typedef enum { MEDIA_DISK
, MEDIA_CDROM
} DriveMediaType
;
328 /* Takes the ownership of bs_opts */
329 static DriveInfo
*blockdev_init(const char *file
, QDict
*bs_opts
,
336 int on_read_error
, on_write_error
;
345 bool has_driver_specific_opts
;
346 BlockDriver
*drv
= NULL
;
348 /* Check common options by copying from bs_opts to opts, all other options
349 * stay in bs_opts for processing by bdrv_open(). */
350 id
= qdict_get_try_str(bs_opts
, "id");
351 opts
= qemu_opts_create(&qemu_common_drive_opts
, id
, 1, &error
);
353 error_propagate(errp
, error
);
357 qemu_opts_absorb_qdict(opts
, bs_opts
, &error
);
359 error_propagate(errp
, error
);
364 qdict_del(bs_opts
, "id");
367 has_driver_specific_opts
= !!qdict_size(bs_opts
);
369 /* extract parameters */
370 snapshot
= qemu_opt_get_bool(opts
, "snapshot", 0);
371 ro
= qemu_opt_get_bool(opts
, "read-only", 0);
372 copy_on_read
= qemu_opt_get_bool(opts
, "copy-on-read", false);
374 serial
= qemu_opt_get(opts
, "serial");
376 if ((buf
= qemu_opt_get(opts
, "discard")) != NULL
) {
377 if (bdrv_parse_discard_flags(buf
, &bdrv_flags
) != 0) {
378 error_setg(errp
, "invalid discard option");
383 if (qemu_opt_get_bool(opts
, "cache.writeback", true)) {
384 bdrv_flags
|= BDRV_O_CACHE_WB
;
386 if (qemu_opt_get_bool(opts
, "cache.direct", false)) {
387 bdrv_flags
|= BDRV_O_NOCACHE
;
389 if (qemu_opt_get_bool(opts
, "cache.no-flush", false)) {
390 bdrv_flags
|= BDRV_O_NO_FLUSH
;
393 #ifdef CONFIG_LINUX_AIO
394 if ((buf
= qemu_opt_get(opts
, "aio")) != NULL
) {
395 if (!strcmp(buf
, "native")) {
396 bdrv_flags
|= BDRV_O_NATIVE_AIO
;
397 } else if (!strcmp(buf
, "threads")) {
398 /* this is the default */
400 error_setg(errp
, "invalid aio option");
406 if ((buf
= qemu_opt_get(opts
, "format")) != NULL
) {
407 if (is_help_option(buf
)) {
408 error_printf("Supported formats:");
409 bdrv_iterate_format(bdrv_format_print
, NULL
);
414 drv
= bdrv_find_format(buf
);
416 error_setg(errp
, "'%s' invalid format", buf
);
421 /* disk I/O throttling */
422 memset(&cfg
, 0, sizeof(cfg
));
423 cfg
.buckets
[THROTTLE_BPS_TOTAL
].avg
=
424 qemu_opt_get_number(opts
, "throttling.bps-total", 0);
425 cfg
.buckets
[THROTTLE_BPS_READ
].avg
=
426 qemu_opt_get_number(opts
, "throttling.bps-read", 0);
427 cfg
.buckets
[THROTTLE_BPS_WRITE
].avg
=
428 qemu_opt_get_number(opts
, "throttling.bps-write", 0);
429 cfg
.buckets
[THROTTLE_OPS_TOTAL
].avg
=
430 qemu_opt_get_number(opts
, "throttling.iops-total", 0);
431 cfg
.buckets
[THROTTLE_OPS_READ
].avg
=
432 qemu_opt_get_number(opts
, "throttling.iops-read", 0);
433 cfg
.buckets
[THROTTLE_OPS_WRITE
].avg
=
434 qemu_opt_get_number(opts
, "throttling.iops-write", 0);
436 cfg
.buckets
[THROTTLE_BPS_TOTAL
].max
=
437 qemu_opt_get_number(opts
, "throttling.bps-total-max", 0);
438 cfg
.buckets
[THROTTLE_BPS_READ
].max
=
439 qemu_opt_get_number(opts
, "throttling.bps-read-max", 0);
440 cfg
.buckets
[THROTTLE_BPS_WRITE
].max
=
441 qemu_opt_get_number(opts
, "throttling.bps-write-max", 0);
442 cfg
.buckets
[THROTTLE_OPS_TOTAL
].max
=
443 qemu_opt_get_number(opts
, "throttling.iops-total-max", 0);
444 cfg
.buckets
[THROTTLE_OPS_READ
].max
=
445 qemu_opt_get_number(opts
, "throttling.iops-read-max", 0);
446 cfg
.buckets
[THROTTLE_OPS_WRITE
].max
=
447 qemu_opt_get_number(opts
, "throttling.iops-write-max", 0);
449 cfg
.op_size
= qemu_opt_get_number(opts
, "throttling.iops-size", 0);
451 if (!check_throttle_config(&cfg
, &error
)) {
452 error_propagate(errp
, error
);
456 on_write_error
= BLOCKDEV_ON_ERROR_ENOSPC
;
457 if ((buf
= qemu_opt_get(opts
, "werror")) != NULL
) {
458 on_write_error
= parse_block_error_action(buf
, 0, &error
);
460 error_propagate(errp
, error
);
465 on_read_error
= BLOCKDEV_ON_ERROR_REPORT
;
466 if ((buf
= qemu_opt_get(opts
, "rerror")) != NULL
) {
467 on_read_error
= parse_block_error_action(buf
, 1, &error
);
469 error_propagate(errp
, error
);
475 dinfo
= g_malloc0(sizeof(*dinfo
));
476 dinfo
->id
= g_strdup(qemu_opts_id(opts
));
477 dinfo
->bdrv
= bdrv_new(dinfo
->id
, &error
);
479 error_propagate(errp
, error
);
482 dinfo
->bdrv
->open_flags
= snapshot
? BDRV_O_SNAPSHOT
: 0;
483 dinfo
->bdrv
->read_only
= ro
;
485 if (serial
!= NULL
) {
486 dinfo
->serial
= g_strdup(serial
);
488 QTAILQ_INSERT_TAIL(&drives
, dinfo
, next
);
490 bdrv_set_on_error(dinfo
->bdrv
, on_read_error
, on_write_error
);
492 /* disk I/O throttling */
493 if (throttle_enabled(&cfg
)) {
494 bdrv_io_limits_enable(dinfo
->bdrv
);
495 bdrv_set_io_limits(dinfo
->bdrv
, &cfg
);
498 if (!file
|| !*file
) {
499 if (has_driver_specific_opts
) {
508 /* always use cache=unsafe with snapshot */
509 bdrv_flags
&= ~BDRV_O_CACHE_MASK
;
510 bdrv_flags
|= (BDRV_O_SNAPSHOT
|BDRV_O_CACHE_WB
|BDRV_O_NO_FLUSH
);
514 bdrv_flags
|= BDRV_O_COPY_ON_READ
;
517 if (runstate_check(RUN_STATE_INMIGRATE
)) {
518 bdrv_flags
|= BDRV_O_INCOMING
;
521 bdrv_flags
|= ro
? 0 : BDRV_O_RDWR
;
524 ret
= bdrv_open(&dinfo
->bdrv
, file
, NULL
, bs_opts
, bdrv_flags
, drv
, &error
);
527 error_setg(errp
, "could not open disk image %s: %s",
528 file
?: dinfo
->id
, error_get_pretty(error
));
533 if (bdrv_key_required(dinfo
->bdrv
))
542 bdrv_unref(dinfo
->bdrv
);
543 QTAILQ_REMOVE(&drives
, dinfo
, next
);
553 static void qemu_opt_rename(QemuOpts
*opts
, const char *from
, const char *to
)
557 value
= qemu_opt_get(opts
, from
);
559 qemu_opt_set(opts
, to
, value
);
560 qemu_opt_unset(opts
, from
);
564 QemuOptsList qemu_legacy_drive_opts
= {
566 .head
= QTAILQ_HEAD_INITIALIZER(qemu_legacy_drive_opts
.head
),
570 .type
= QEMU_OPT_NUMBER
,
571 .help
= "bus number",
574 .type
= QEMU_OPT_NUMBER
,
575 .help
= "unit number (i.e. lun for scsi)",
578 .type
= QEMU_OPT_NUMBER
,
579 .help
= "index number",
582 .type
= QEMU_OPT_STRING
,
583 .help
= "media type (disk, cdrom)",
586 .type
= QEMU_OPT_STRING
,
587 .help
= "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
590 .type
= QEMU_OPT_NUMBER
,
591 .help
= "number of cylinders (ide disk geometry)",
594 .type
= QEMU_OPT_NUMBER
,
595 .help
= "number of heads (ide disk geometry)",
598 .type
= QEMU_OPT_NUMBER
,
599 .help
= "number of sectors (ide disk geometry)",
602 .type
= QEMU_OPT_STRING
,
603 .help
= "chs translation (auto, lba, none)",
606 .type
= QEMU_OPT_BOOL
,
607 .help
= "(deprecated, ignored)",
610 .type
= QEMU_OPT_STRING
,
611 .help
= "pci address (virtio only)",
614 .type
= QEMU_OPT_STRING
,
618 /* Options that are passed on, but have special semantics with -drive */
621 .type
= QEMU_OPT_BOOL
,
622 .help
= "open drive file as read-only",
625 .type
= QEMU_OPT_STRING
,
626 .help
= "read error action",
629 .type
= QEMU_OPT_STRING
,
630 .help
= "write error action",
632 .name
= "copy-on-read",
633 .type
= QEMU_OPT_BOOL
,
634 .help
= "copy read data from backing file into image file",
637 { /* end of list */ }
641 DriveInfo
*drive_init(QemuOpts
*all_opts
, BlockInterfaceType block_default_type
)
644 DriveInfo
*dinfo
= NULL
;
646 QemuOpts
*legacy_opts
;
647 DriveMediaType media
= MEDIA_DISK
;
648 BlockInterfaceType type
;
649 int cyls
, heads
, secs
, translation
;
650 int max_devs
, bus_id
, unit_id
, index
;
652 const char *werror
, *rerror
;
653 bool read_only
= false;
655 const char *filename
;
656 Error
*local_err
= NULL
;
658 /* Change legacy command line options into QMP ones */
659 qemu_opt_rename(all_opts
, "iops", "throttling.iops-total");
660 qemu_opt_rename(all_opts
, "iops_rd", "throttling.iops-read");
661 qemu_opt_rename(all_opts
, "iops_wr", "throttling.iops-write");
663 qemu_opt_rename(all_opts
, "bps", "throttling.bps-total");
664 qemu_opt_rename(all_opts
, "bps_rd", "throttling.bps-read");
665 qemu_opt_rename(all_opts
, "bps_wr", "throttling.bps-write");
667 qemu_opt_rename(all_opts
, "iops_max", "throttling.iops-total-max");
668 qemu_opt_rename(all_opts
, "iops_rd_max", "throttling.iops-read-max");
669 qemu_opt_rename(all_opts
, "iops_wr_max", "throttling.iops-write-max");
671 qemu_opt_rename(all_opts
, "bps_max", "throttling.bps-total-max");
672 qemu_opt_rename(all_opts
, "bps_rd_max", "throttling.bps-read-max");
673 qemu_opt_rename(all_opts
, "bps_wr_max", "throttling.bps-write-max");
675 qemu_opt_rename(all_opts
,
676 "iops_size", "throttling.iops-size");
678 qemu_opt_rename(all_opts
, "readonly", "read-only");
680 value
= qemu_opt_get(all_opts
, "cache");
684 if (bdrv_parse_cache_flags(value
, &flags
) != 0) {
685 error_report("invalid cache option");
689 /* Specific options take precedence */
690 if (!qemu_opt_get(all_opts
, "cache.writeback")) {
691 qemu_opt_set_bool(all_opts
, "cache.writeback",
692 !!(flags
& BDRV_O_CACHE_WB
));
694 if (!qemu_opt_get(all_opts
, "cache.direct")) {
695 qemu_opt_set_bool(all_opts
, "cache.direct",
696 !!(flags
& BDRV_O_NOCACHE
));
698 if (!qemu_opt_get(all_opts
, "cache.no-flush")) {
699 qemu_opt_set_bool(all_opts
, "cache.no-flush",
700 !!(flags
& BDRV_O_NO_FLUSH
));
702 qemu_opt_unset(all_opts
, "cache");
705 /* Get a QDict for processing the options */
706 bs_opts
= qdict_new();
707 qemu_opts_to_qdict(all_opts
, bs_opts
);
709 legacy_opts
= qemu_opts_create(&qemu_legacy_drive_opts
, NULL
, 0,
711 qemu_opts_absorb_qdict(legacy_opts
, bs_opts
, &local_err
);
713 qerror_report_err(local_err
);
714 error_free(local_err
);
718 /* Deprecated option boot=[on|off] */
719 if (qemu_opt_get(legacy_opts
, "boot") != NULL
) {
720 fprintf(stderr
, "qemu-kvm: boot=on|off is deprecated and will be "
721 "ignored. Future versions will reject this parameter. Please "
722 "update your scripts.\n");
726 value
= qemu_opt_get(legacy_opts
, "media");
728 if (!strcmp(value
, "disk")) {
730 } else if (!strcmp(value
, "cdrom")) {
734 error_report("'%s' invalid media", value
);
739 /* copy-on-read is disabled with a warning for read-only devices */
740 read_only
|= qemu_opt_get_bool(legacy_opts
, "read-only", false);
741 copy_on_read
= qemu_opt_get_bool(legacy_opts
, "copy-on-read", false);
743 if (read_only
&& copy_on_read
) {
744 error_report("warning: disabling copy-on-read on read-only drive");
745 copy_on_read
= false;
748 qdict_put(bs_opts
, "read-only",
749 qstring_from_str(read_only
? "on" : "off"));
750 qdict_put(bs_opts
, "copy-on-read",
751 qstring_from_str(copy_on_read
? "on" :"off"));
753 /* Controller type */
754 value
= qemu_opt_get(legacy_opts
, "if");
757 type
< IF_COUNT
&& strcmp(value
, if_name
[type
]);
760 if (type
== IF_COUNT
) {
761 error_report("unsupported bus type '%s'", value
);
765 type
= block_default_type
;
769 cyls
= qemu_opt_get_number(legacy_opts
, "cyls", 0);
770 heads
= qemu_opt_get_number(legacy_opts
, "heads", 0);
771 secs
= qemu_opt_get_number(legacy_opts
, "secs", 0);
773 if (cyls
|| heads
|| secs
) {
775 error_report("invalid physical cyls number");
779 error_report("invalid physical heads number");
783 error_report("invalid physical secs number");
788 translation
= BIOS_ATA_TRANSLATION_AUTO
;
789 value
= qemu_opt_get(legacy_opts
, "trans");
792 error_report("'%s' trans must be used with cyls, heads and secs",
796 if (!strcmp(value
, "none")) {
797 translation
= BIOS_ATA_TRANSLATION_NONE
;
798 } else if (!strcmp(value
, "lba")) {
799 translation
= BIOS_ATA_TRANSLATION_LBA
;
800 } else if (!strcmp(value
, "large")) {
801 translation
= BIOS_ATA_TRANSLATION_LARGE
;
802 } else if (!strcmp(value
, "rechs")) {
803 translation
= BIOS_ATA_TRANSLATION_RECHS
;
804 } else if (!strcmp(value
, "auto")) {
805 translation
= BIOS_ATA_TRANSLATION_AUTO
;
807 error_report("'%s' invalid translation type", value
);
812 if (media
== MEDIA_CDROM
) {
813 if (cyls
|| secs
|| heads
) {
814 error_report("CHS can't be set with media=cdrom");
819 /* Device address specified by bus/unit or index.
820 * If none was specified, try to find the first free one. */
821 bus_id
= qemu_opt_get_number(legacy_opts
, "bus", 0);
822 unit_id
= qemu_opt_get_number(legacy_opts
, "unit", -1);
823 index
= qemu_opt_get_number(legacy_opts
, "index", -1);
825 max_devs
= if_max_devs
[type
];
828 if (bus_id
!= 0 || unit_id
!= -1) {
829 error_report("index cannot be used with bus and unit");
832 bus_id
= drive_index_to_bus_id(type
, index
);
833 unit_id
= drive_index_to_unit_id(type
, index
);
838 while (drive_get(type
, bus_id
, unit_id
) != NULL
) {
840 if (max_devs
&& unit_id
>= max_devs
) {
847 if (max_devs
&& unit_id
>= max_devs
) {
848 error_report("unit %d too big (max is %d)", unit_id
, max_devs
- 1);
852 if (drive_get(type
, bus_id
, unit_id
) != NULL
) {
853 error_report("drive with bus=%d, unit=%d (index=%d) exists",
854 bus_id
, unit_id
, index
);
858 /* no id supplied -> create one */
859 if (qemu_opts_id(all_opts
) == NULL
) {
861 const char *mediastr
= "";
862 if (type
== IF_IDE
|| type
== IF_SCSI
) {
863 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
866 new_id
= g_strdup_printf("%s%i%s%i", if_name
[type
], bus_id
,
869 new_id
= g_strdup_printf("%s%s%i", if_name
[type
],
872 qdict_put(bs_opts
, "id", qstring_from_str(new_id
));
876 /* Add virtio block device */
877 devaddr
= qemu_opt_get(legacy_opts
, "addr");
878 if (devaddr
&& type
!= IF_VIRTIO
) {
879 error_report("addr is not supported by this bus type");
883 if (type
== IF_VIRTIO
) {
885 devopts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
887 if (arch_type
== QEMU_ARCH_S390X
) {
888 qemu_opt_set(devopts
, "driver", "virtio-blk-s390");
890 qemu_opt_set(devopts
, "driver", "virtio-blk-pci");
892 qemu_opt_set(devopts
, "drive", qdict_get_str(bs_opts
, "id"));
894 qemu_opt_set(devopts
, "addr", devaddr
);
898 filename
= qemu_opt_get(legacy_opts
, "file");
900 /* Check werror/rerror compatibility with if=... */
901 werror
= qemu_opt_get(legacy_opts
, "werror");
902 if (werror
!= NULL
) {
903 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
&&
905 error_report("werror is not supported by this bus type");
908 qdict_put(bs_opts
, "werror", qstring_from_str(werror
));
911 rerror
= qemu_opt_get(legacy_opts
, "rerror");
912 if (rerror
!= NULL
) {
913 if (type
!= IF_IDE
&& type
!= IF_VIRTIO
&& type
!= IF_SCSI
&&
915 error_report("rerror is not supported by this bus type");
918 qdict_put(bs_opts
, "rerror", qstring_from_str(rerror
));
921 /* Actual block device init: Functionality shared with blockdev-add */
922 dinfo
= blockdev_init(filename
, bs_opts
, &local_err
);
925 qerror_report_err(local_err
);
926 error_free(local_err
);
933 /* Set legacy DriveInfo fields */
934 dinfo
->enable_auto_del
= true;
935 dinfo
->opts
= all_opts
;
938 dinfo
->heads
= heads
;
940 dinfo
->trans
= translation
;
944 dinfo
->unit
= unit_id
;
945 dinfo
->devaddr
= devaddr
;
952 dinfo
->media_cd
= media
== MEDIA_CDROM
;
959 qemu_opts_del(legacy_opts
);
963 void do_commit(Monitor
*mon
, const QDict
*qdict
)
965 const char *device
= qdict_get_str(qdict
, "device");
966 BlockDriverState
*bs
;
969 if (!strcmp(device
, "all")) {
970 ret
= bdrv_commit_all();
972 bs
= bdrv_find(device
);
974 monitor_printf(mon
, "Device '%s' not found\n", device
);
977 ret
= bdrv_commit(bs
);
980 monitor_printf(mon
, "'commit' error for '%s': %s\n", device
,
985 static void blockdev_do_action(int kind
, void *data
, Error
**errp
)
987 TransactionAction action
;
988 TransactionActionList list
;
992 list
.value
= &action
;
994 qmp_transaction(&list
, errp
);
997 void qmp_blockdev_snapshot_sync(bool has_device
, const char *device
,
998 bool has_node_name
, const char *node_name
,
999 const char *snapshot_file
,
1000 bool has_snapshot_node_name
,
1001 const char *snapshot_node_name
,
1002 bool has_format
, const char *format
,
1003 bool has_mode
, NewImageMode mode
, Error
**errp
)
1005 BlockdevSnapshot snapshot
= {
1006 .has_device
= has_device
,
1007 .device
= (char *) device
,
1008 .has_node_name
= has_node_name
,
1009 .node_name
= (char *) node_name
,
1010 .snapshot_file
= (char *) snapshot_file
,
1011 .has_snapshot_node_name
= has_snapshot_node_name
,
1012 .snapshot_node_name
= (char *) snapshot_node_name
,
1013 .has_format
= has_format
,
1014 .format
= (char *) format
,
1015 .has_mode
= has_mode
,
1018 blockdev_do_action(TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
,
1022 void qmp_blockdev_snapshot_internal_sync(const char *device
,
1026 BlockdevSnapshotInternal snapshot
= {
1027 .device
= (char *) device
,
1028 .name
= (char *) name
1031 blockdev_do_action(TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC
,
1035 SnapshotInfo
*qmp_blockdev_snapshot_delete_internal_sync(const char *device
,
1042 BlockDriverState
*bs
= bdrv_find(device
);
1043 QEMUSnapshotInfo sn
;
1044 Error
*local_err
= NULL
;
1045 SnapshotInfo
*info
= NULL
;
1049 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1062 error_setg(errp
, "Name or id must be provided");
1066 ret
= bdrv_snapshot_find_by_id_and_name(bs
, id
, name
, &sn
, &local_err
);
1068 error_propagate(errp
, local_err
);
1073 "Snapshot with id '%s' and name '%s' does not exist on "
1075 STR_OR_NULL(id
), STR_OR_NULL(name
), device
);
1079 bdrv_snapshot_delete(bs
, id
, name
, &local_err
);
1081 error_propagate(errp
, local_err
);
1085 info
= g_malloc0(sizeof(SnapshotInfo
));
1086 info
->id
= g_strdup(sn
.id_str
);
1087 info
->name
= g_strdup(sn
.name
);
1088 info
->date_nsec
= sn
.date_nsec
;
1089 info
->date_sec
= sn
.date_sec
;
1090 info
->vm_state_size
= sn
.vm_state_size
;
1091 info
->vm_clock_nsec
= sn
.vm_clock_nsec
% 1000000000;
1092 info
->vm_clock_sec
= sn
.vm_clock_nsec
/ 1000000000;
1097 /* New and old BlockDriverState structs for group snapshots */
1099 typedef struct BlkTransactionState BlkTransactionState
;
1101 /* Only prepare() may fail. In a single transaction, only one of commit() or
1102 abort() will be called, clean() will always be called if it present. */
1103 typedef struct BdrvActionOps
{
1104 /* Size of state struct, in bytes. */
1105 size_t instance_size
;
1106 /* Prepare the work, must NOT be NULL. */
1107 void (*prepare
)(BlkTransactionState
*common
, Error
**errp
);
1108 /* Commit the changes, can be NULL. */
1109 void (*commit
)(BlkTransactionState
*common
);
1110 /* Abort the changes on fail, can be NULL. */
1111 void (*abort
)(BlkTransactionState
*common
);
1112 /* Clean up resource in the end, can be NULL. */
1113 void (*clean
)(BlkTransactionState
*common
);
1117 * This structure must be arranged as first member in child type, assuming
1118 * that compiler will also arrange it to the same address with parent instance.
1119 * Later it will be used in free().
1121 struct BlkTransactionState
{
1122 TransactionAction
*action
;
1123 const BdrvActionOps
*ops
;
1124 QSIMPLEQ_ENTRY(BlkTransactionState
) entry
;
1127 /* internal snapshot private data */
1128 typedef struct InternalSnapshotState
{
1129 BlkTransactionState common
;
1130 BlockDriverState
*bs
;
1131 QEMUSnapshotInfo sn
;
1132 } InternalSnapshotState
;
1134 static void internal_snapshot_prepare(BlkTransactionState
*common
,
1137 Error
*local_err
= NULL
;
1140 BlockDriverState
*bs
;
1141 QEMUSnapshotInfo old_sn
, *sn
;
1144 BlockdevSnapshotInternal
*internal
;
1145 InternalSnapshotState
*state
;
1148 g_assert(common
->action
->kind
==
1149 TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC
);
1150 internal
= common
->action
->blockdev_snapshot_internal_sync
;
1151 state
= DO_UPCAST(InternalSnapshotState
, common
, common
);
1153 /* 1. parse input */
1154 device
= internal
->device
;
1155 name
= internal
->name
;
1157 /* 2. check for validation */
1158 bs
= bdrv_find(device
);
1160 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1164 if (!bdrv_is_inserted(bs
)) {
1165 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1169 if (bdrv_is_read_only(bs
)) {
1170 error_set(errp
, QERR_DEVICE_IS_READ_ONLY
, device
);
1174 if (!bdrv_can_snapshot(bs
)) {
1175 error_set(errp
, QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED
,
1176 bs
->drv
->format_name
, device
, "internal snapshot");
1180 if (!strlen(name
)) {
1181 error_setg(errp
, "Name is empty");
1185 /* check whether a snapshot with name exist */
1186 ret
= bdrv_snapshot_find_by_id_and_name(bs
, NULL
, name
, &old_sn
,
1189 error_propagate(errp
, local_err
);
1193 "Snapshot with name '%s' already exists on device '%s'",
1198 /* 3. take the snapshot */
1200 pstrcpy(sn
->name
, sizeof(sn
->name
), name
);
1201 qemu_gettimeofday(&tv
);
1202 sn
->date_sec
= tv
.tv_sec
;
1203 sn
->date_nsec
= tv
.tv_usec
* 1000;
1204 sn
->vm_clock_nsec
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
1206 ret1
= bdrv_snapshot_create(bs
, sn
);
1208 error_setg_errno(errp
, -ret1
,
1209 "Failed to create snapshot '%s' on device '%s'",
1214 /* 4. succeed, mark a snapshot is created */
1218 static void internal_snapshot_abort(BlkTransactionState
*common
)
1220 InternalSnapshotState
*state
=
1221 DO_UPCAST(InternalSnapshotState
, common
, common
);
1222 BlockDriverState
*bs
= state
->bs
;
1223 QEMUSnapshotInfo
*sn
= &state
->sn
;
1224 Error
*local_error
= NULL
;
1230 if (bdrv_snapshot_delete(bs
, sn
->id_str
, sn
->name
, &local_error
) < 0) {
1231 error_report("Failed to delete snapshot with id '%s' and name '%s' on "
1232 "device '%s' in abort: %s",
1235 bdrv_get_device_name(bs
),
1236 error_get_pretty(local_error
));
1237 error_free(local_error
);
1241 /* external snapshot private data */
1242 typedef struct ExternalSnapshotState
{
1243 BlkTransactionState common
;
1244 BlockDriverState
*old_bs
;
1245 BlockDriverState
*new_bs
;
1246 } ExternalSnapshotState
;
1248 static void external_snapshot_prepare(BlkTransactionState
*common
,
1253 QDict
*options
= NULL
;
1254 Error
*local_err
= NULL
;
1255 bool has_device
= false;
1257 bool has_node_name
= false;
1258 const char *node_name
;
1259 bool has_snapshot_node_name
= false;
1260 const char *snapshot_node_name
;
1261 const char *new_image_file
;
1262 const char *format
= "qcow2";
1263 enum NewImageMode mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1264 ExternalSnapshotState
*state
=
1265 DO_UPCAST(ExternalSnapshotState
, common
, common
);
1266 TransactionAction
*action
= common
->action
;
1268 /* get parameters */
1269 g_assert(action
->kind
== TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
);
1271 has_device
= action
->blockdev_snapshot_sync
->has_device
;
1272 device
= action
->blockdev_snapshot_sync
->device
;
1273 has_node_name
= action
->blockdev_snapshot_sync
->has_node_name
;
1274 node_name
= action
->blockdev_snapshot_sync
->node_name
;
1275 has_snapshot_node_name
=
1276 action
->blockdev_snapshot_sync
->has_snapshot_node_name
;
1277 snapshot_node_name
= action
->blockdev_snapshot_sync
->snapshot_node_name
;
1279 new_image_file
= action
->blockdev_snapshot_sync
->snapshot_file
;
1280 if (action
->blockdev_snapshot_sync
->has_format
) {
1281 format
= action
->blockdev_snapshot_sync
->format
;
1283 if (action
->blockdev_snapshot_sync
->has_mode
) {
1284 mode
= action
->blockdev_snapshot_sync
->mode
;
1287 /* start processing */
1288 drv
= bdrv_find_format(format
);
1290 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
1294 state
->old_bs
= bdrv_lookup_bs(has_device
? device
: NULL
,
1295 has_node_name
? node_name
: NULL
,
1298 error_propagate(errp
, local_err
);
1302 if (has_node_name
&& !has_snapshot_node_name
) {
1303 error_setg(errp
, "New snapshot node name missing");
1307 if (has_snapshot_node_name
&& bdrv_find_node(snapshot_node_name
)) {
1308 error_setg(errp
, "New snapshot node name already existing");
1312 if (!bdrv_is_inserted(state
->old_bs
)) {
1313 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1317 if (bdrv_in_use(state
->old_bs
)) {
1318 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
1322 if (!bdrv_is_read_only(state
->old_bs
)) {
1323 if (bdrv_flush(state
->old_bs
)) {
1324 error_set(errp
, QERR_IO_ERROR
);
1329 if (!bdrv_is_first_non_filter(state
->old_bs
)) {
1330 error_set(errp
, QERR_FEATURE_DISABLED
, "snapshot");
1334 flags
= state
->old_bs
->open_flags
;
1336 /* create new image w/backing file */
1337 if (mode
!= NEW_IMAGE_MODE_EXISTING
) {
1338 bdrv_img_create(new_image_file
, format
,
1339 state
->old_bs
->filename
,
1340 state
->old_bs
->drv
->format_name
,
1341 NULL
, -1, flags
, &local_err
, false);
1343 error_propagate(errp
, local_err
);
1348 if (has_snapshot_node_name
) {
1349 options
= qdict_new();
1350 qdict_put(options
, "node-name",
1351 qstring_from_str(snapshot_node_name
));
1354 /* TODO Inherit bs->options or only take explicit options with an
1355 * extended QMP command? */
1356 assert(state
->new_bs
== NULL
);
1357 ret
= bdrv_open(&state
->new_bs
, new_image_file
, NULL
, options
,
1358 flags
| BDRV_O_NO_BACKING
, drv
, &local_err
);
1359 /* We will manually add the backing_hd field to the bs later */
1361 error_propagate(errp
, local_err
);
1365 static void external_snapshot_commit(BlkTransactionState
*common
)
1367 ExternalSnapshotState
*state
=
1368 DO_UPCAST(ExternalSnapshotState
, common
, common
);
1370 /* This removes our old bs and adds the new bs */
1371 bdrv_append(state
->new_bs
, state
->old_bs
);
1372 /* We don't need (or want) to use the transactional
1373 * bdrv_reopen_multiple() across all the entries at once, because we
1374 * don't want to abort all of them if one of them fails the reopen */
1375 bdrv_reopen(state
->new_bs
, state
->new_bs
->open_flags
& ~BDRV_O_RDWR
,
1379 static void external_snapshot_abort(BlkTransactionState
*common
)
1381 ExternalSnapshotState
*state
=
1382 DO_UPCAST(ExternalSnapshotState
, common
, common
);
1383 if (state
->new_bs
) {
1384 bdrv_unref(state
->new_bs
);
1388 typedef struct DriveBackupState
{
1389 BlkTransactionState common
;
1390 BlockDriverState
*bs
;
1394 static void drive_backup_prepare(BlkTransactionState
*common
, Error
**errp
)
1396 DriveBackupState
*state
= DO_UPCAST(DriveBackupState
, common
, common
);
1397 DriveBackup
*backup
;
1398 Error
*local_err
= NULL
;
1400 assert(common
->action
->kind
== TRANSACTION_ACTION_KIND_DRIVE_BACKUP
);
1401 backup
= common
->action
->drive_backup
;
1403 qmp_drive_backup(backup
->device
, backup
->target
,
1404 backup
->has_format
, backup
->format
,
1406 backup
->has_mode
, backup
->mode
,
1407 backup
->has_speed
, backup
->speed
,
1408 backup
->has_on_source_error
, backup
->on_source_error
,
1409 backup
->has_on_target_error
, backup
->on_target_error
,
1412 error_propagate(errp
, local_err
);
1418 state
->bs
= bdrv_find(backup
->device
);
1419 state
->job
= state
->bs
->job
;
1422 static void drive_backup_abort(BlkTransactionState
*common
)
1424 DriveBackupState
*state
= DO_UPCAST(DriveBackupState
, common
, common
);
1425 BlockDriverState
*bs
= state
->bs
;
1427 /* Only cancel if it's the job we started */
1428 if (bs
&& bs
->job
&& bs
->job
== state
->job
) {
1429 block_job_cancel_sync(bs
->job
);
1433 static void abort_prepare(BlkTransactionState
*common
, Error
**errp
)
1435 error_setg(errp
, "Transaction aborted using Abort action");
1438 static void abort_commit(BlkTransactionState
*common
)
1440 g_assert_not_reached(); /* this action never succeeds */
1443 static const BdrvActionOps actions
[] = {
1444 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
] = {
1445 .instance_size
= sizeof(ExternalSnapshotState
),
1446 .prepare
= external_snapshot_prepare
,
1447 .commit
= external_snapshot_commit
,
1448 .abort
= external_snapshot_abort
,
1450 [TRANSACTION_ACTION_KIND_DRIVE_BACKUP
] = {
1451 .instance_size
= sizeof(DriveBackupState
),
1452 .prepare
= drive_backup_prepare
,
1453 .abort
= drive_backup_abort
,
1455 [TRANSACTION_ACTION_KIND_ABORT
] = {
1456 .instance_size
= sizeof(BlkTransactionState
),
1457 .prepare
= abort_prepare
,
1458 .commit
= abort_commit
,
1460 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC
] = {
1461 .instance_size
= sizeof(InternalSnapshotState
),
1462 .prepare
= internal_snapshot_prepare
,
1463 .abort
= internal_snapshot_abort
,
1468 * 'Atomic' group snapshots. The snapshots are taken as a set, and if any fail
1469 * then we do not pivot any of the devices in the group, and abandon the
1472 void qmp_transaction(TransactionActionList
*dev_list
, Error
**errp
)
1474 TransactionActionList
*dev_entry
= dev_list
;
1475 BlkTransactionState
*state
, *next
;
1476 Error
*local_err
= NULL
;
1478 QSIMPLEQ_HEAD(snap_bdrv_states
, BlkTransactionState
) snap_bdrv_states
;
1479 QSIMPLEQ_INIT(&snap_bdrv_states
);
1481 /* drain all i/o before any snapshots */
1484 /* We don't do anything in this loop that commits us to the snapshot */
1485 while (NULL
!= dev_entry
) {
1486 TransactionAction
*dev_info
= NULL
;
1487 const BdrvActionOps
*ops
;
1489 dev_info
= dev_entry
->value
;
1490 dev_entry
= dev_entry
->next
;
1492 assert(dev_info
->kind
< ARRAY_SIZE(actions
));
1494 ops
= &actions
[dev_info
->kind
];
1495 assert(ops
->instance_size
> 0);
1497 state
= g_malloc0(ops
->instance_size
);
1499 state
->action
= dev_info
;
1500 QSIMPLEQ_INSERT_TAIL(&snap_bdrv_states
, state
, entry
);
1502 state
->ops
->prepare(state
, &local_err
);
1504 error_propagate(errp
, local_err
);
1505 goto delete_and_fail
;
1509 QSIMPLEQ_FOREACH(state
, &snap_bdrv_states
, entry
) {
1510 if (state
->ops
->commit
) {
1511 state
->ops
->commit(state
);
1520 * failure, and it is all-or-none; abandon each new bs, and keep using
1521 * the original bs for all images
1523 QSIMPLEQ_FOREACH(state
, &snap_bdrv_states
, entry
) {
1524 if (state
->ops
->abort
) {
1525 state
->ops
->abort(state
);
1529 QSIMPLEQ_FOREACH_SAFE(state
, &snap_bdrv_states
, entry
, next
) {
1530 if (state
->ops
->clean
) {
1531 state
->ops
->clean(state
);
1538 static void eject_device(BlockDriverState
*bs
, int force
, Error
**errp
)
1540 if (bdrv_in_use(bs
)) {
1541 error_set(errp
, QERR_DEVICE_IN_USE
, bdrv_get_device_name(bs
));
1544 if (!bdrv_dev_has_removable_media(bs
)) {
1545 error_setg(errp
, "Device '%s' is not removable",
1546 bdrv_get_device_name(bs
));
1550 if (bdrv_dev_is_medium_locked(bs
) && !bdrv_dev_is_tray_open(bs
)) {
1551 bdrv_dev_eject_request(bs
, force
);
1553 error_setg(errp
, "Device '%s' is locked",
1554 bdrv_get_device_name(bs
));
1562 void qmp_eject(const char *device
, bool has_force
, bool force
, Error
**errp
)
1564 BlockDriverState
*bs
;
1566 bs
= bdrv_find(device
);
1568 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1572 eject_device(bs
, force
, errp
);
1575 void qmp_block_passwd(bool has_device
, const char *device
,
1576 bool has_node_name
, const char *node_name
,
1577 const char *password
, Error
**errp
)
1579 Error
*local_err
= NULL
;
1580 BlockDriverState
*bs
;
1583 bs
= bdrv_lookup_bs(has_device
? device
: NULL
,
1584 has_node_name
? node_name
: NULL
,
1587 error_propagate(errp
, local_err
);
1591 err
= bdrv_set_key(bs
, password
);
1592 if (err
== -EINVAL
) {
1593 error_set(errp
, QERR_DEVICE_NOT_ENCRYPTED
, bdrv_get_device_name(bs
));
1595 } else if (err
< 0) {
1596 error_set(errp
, QERR_INVALID_PASSWORD
);
1601 static void qmp_bdrv_open_encrypted(BlockDriverState
*bs
, const char *filename
,
1602 int bdrv_flags
, BlockDriver
*drv
,
1603 const char *password
, Error
**errp
)
1605 Error
*local_err
= NULL
;
1608 ret
= bdrv_open(&bs
, filename
, NULL
, NULL
, bdrv_flags
, drv
, &local_err
);
1610 error_propagate(errp
, local_err
);
1614 if (bdrv_key_required(bs
)) {
1616 if (bdrv_set_key(bs
, password
) < 0) {
1617 error_set(errp
, QERR_INVALID_PASSWORD
);
1620 error_set(errp
, QERR_DEVICE_ENCRYPTED
, bdrv_get_device_name(bs
),
1621 bdrv_get_encrypted_filename(bs
));
1623 } else if (password
) {
1624 error_set(errp
, QERR_DEVICE_NOT_ENCRYPTED
, bdrv_get_device_name(bs
));
1628 void qmp_change_blockdev(const char *device
, const char *filename
,
1629 const char *format
, Error
**errp
)
1631 BlockDriverState
*bs
;
1632 BlockDriver
*drv
= NULL
;
1636 bs
= bdrv_find(device
);
1638 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1643 drv
= bdrv_find_whitelisted_format(format
, bs
->read_only
);
1645 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
1650 eject_device(bs
, 0, &err
);
1652 error_propagate(errp
, err
);
1656 bdrv_flags
= bdrv_is_read_only(bs
) ? 0 : BDRV_O_RDWR
;
1657 bdrv_flags
|= bdrv_is_snapshot(bs
) ? BDRV_O_SNAPSHOT
: 0;
1659 qmp_bdrv_open_encrypted(bs
, filename
, bdrv_flags
, drv
, NULL
, errp
);
1662 /* throttling disk I/O limits */
1663 void qmp_block_set_io_throttle(const char *device
, int64_t bps
, int64_t bps_rd
,
1670 bool has_bps_rd_max
,
1672 bool has_bps_wr_max
,
1676 bool has_iops_rd_max
,
1677 int64_t iops_rd_max
,
1678 bool has_iops_wr_max
,
1679 int64_t iops_wr_max
,
1681 int64_t iops_size
, Error
**errp
)
1684 BlockDriverState
*bs
;
1686 bs
= bdrv_find(device
);
1688 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1692 memset(&cfg
, 0, sizeof(cfg
));
1693 cfg
.buckets
[THROTTLE_BPS_TOTAL
].avg
= bps
;
1694 cfg
.buckets
[THROTTLE_BPS_READ
].avg
= bps_rd
;
1695 cfg
.buckets
[THROTTLE_BPS_WRITE
].avg
= bps_wr
;
1697 cfg
.buckets
[THROTTLE_OPS_TOTAL
].avg
= iops
;
1698 cfg
.buckets
[THROTTLE_OPS_READ
].avg
= iops_rd
;
1699 cfg
.buckets
[THROTTLE_OPS_WRITE
].avg
= iops_wr
;
1702 cfg
.buckets
[THROTTLE_BPS_TOTAL
].max
= bps_max
;
1704 if (has_bps_rd_max
) {
1705 cfg
.buckets
[THROTTLE_BPS_READ
].max
= bps_rd_max
;
1707 if (has_bps_wr_max
) {
1708 cfg
.buckets
[THROTTLE_BPS_WRITE
].max
= bps_wr_max
;
1711 cfg
.buckets
[THROTTLE_OPS_TOTAL
].max
= iops_max
;
1713 if (has_iops_rd_max
) {
1714 cfg
.buckets
[THROTTLE_OPS_READ
].max
= iops_rd_max
;
1716 if (has_iops_wr_max
) {
1717 cfg
.buckets
[THROTTLE_OPS_WRITE
].max
= iops_wr_max
;
1720 if (has_iops_size
) {
1721 cfg
.op_size
= iops_size
;
1724 if (!check_throttle_config(&cfg
, errp
)) {
1728 if (!bs
->io_limits_enabled
&& throttle_enabled(&cfg
)) {
1729 bdrv_io_limits_enable(bs
);
1730 } else if (bs
->io_limits_enabled
&& !throttle_enabled(&cfg
)) {
1731 bdrv_io_limits_disable(bs
);
1734 if (bs
->io_limits_enabled
) {
1735 bdrv_set_io_limits(bs
, &cfg
);
1739 int do_drive_del(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1741 const char *id
= qdict_get_str(qdict
, "id");
1742 BlockDriverState
*bs
;
1746 qerror_report(QERR_DEVICE_NOT_FOUND
, id
);
1749 if (bdrv_in_use(bs
)) {
1750 qerror_report(QERR_DEVICE_IN_USE
, id
);
1754 /* quiesce block driver; prevent further io */
1759 /* if we have a device attached to this BlockDriverState
1760 * then we need to make the drive anonymous until the device
1761 * can be removed. If this is a drive with no device backing
1762 * then we can just get rid of the block driver state right here.
1764 if (bdrv_get_attached_dev(bs
)) {
1767 /* Further I/O must not pause the guest */
1768 bdrv_set_on_error(bs
, BLOCKDEV_ON_ERROR_REPORT
,
1769 BLOCKDEV_ON_ERROR_REPORT
);
1771 drive_uninit(drive_get_by_blockdev(bs
));
1777 void qmp_block_resize(bool has_device
, const char *device
,
1778 bool has_node_name
, const char *node_name
,
1779 int64_t size
, Error
**errp
)
1781 Error
*local_err
= NULL
;
1782 BlockDriverState
*bs
;
1785 bs
= bdrv_lookup_bs(has_device
? device
: NULL
,
1786 has_node_name
? node_name
: NULL
,
1789 error_propagate(errp
, local_err
);
1793 if (!bdrv_is_first_non_filter(bs
)) {
1794 error_set(errp
, QERR_FEATURE_DISABLED
, "resize");
1799 error_set(errp
, QERR_INVALID_PARAMETER_VALUE
, "size", "a >0 size");
1803 /* complete all in-flight operations before resizing the device */
1806 ret
= bdrv_truncate(bs
, size
);
1811 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1814 error_set(errp
, QERR_UNSUPPORTED
);
1817 error_set(errp
, QERR_DEVICE_IS_READ_ONLY
, device
);
1820 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
1823 error_setg_errno(errp
, -ret
, "Could not resize");
1828 static void block_job_cb(void *opaque
, int ret
)
1830 BlockDriverState
*bs
= opaque
;
1833 trace_block_job_cb(bs
, bs
->job
, ret
);
1836 obj
= qobject_from_block_job(bs
->job
);
1838 QDict
*dict
= qobject_to_qdict(obj
);
1839 qdict_put(dict
, "error", qstring_from_str(strerror(-ret
)));
1842 if (block_job_is_cancelled(bs
->job
)) {
1843 monitor_protocol_event(QEVENT_BLOCK_JOB_CANCELLED
, obj
);
1845 monitor_protocol_event(QEVENT_BLOCK_JOB_COMPLETED
, obj
);
1847 qobject_decref(obj
);
1849 bdrv_put_ref_bh_schedule(bs
);
1852 void qmp_block_stream(const char *device
, bool has_base
,
1853 const char *base
, bool has_speed
, int64_t speed
,
1854 bool has_on_error
, BlockdevOnError on_error
,
1857 BlockDriverState
*bs
;
1858 BlockDriverState
*base_bs
= NULL
;
1859 Error
*local_err
= NULL
;
1861 if (!has_on_error
) {
1862 on_error
= BLOCKDEV_ON_ERROR_REPORT
;
1865 bs
= bdrv_find(device
);
1867 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1872 base_bs
= bdrv_find_backing_image(bs
, base
);
1873 if (base_bs
== NULL
) {
1874 error_set(errp
, QERR_BASE_NOT_FOUND
, base
);
1879 stream_start(bs
, base_bs
, base
, has_speed
? speed
: 0,
1880 on_error
, block_job_cb
, bs
, &local_err
);
1882 error_propagate(errp
, local_err
);
1886 trace_qmp_block_stream(bs
, bs
->job
);
1889 void qmp_block_commit(const char *device
,
1890 bool has_base
, const char *base
, const char *top
,
1891 bool has_speed
, int64_t speed
,
1894 BlockDriverState
*bs
;
1895 BlockDriverState
*base_bs
, *top_bs
;
1896 Error
*local_err
= NULL
;
1897 /* This will be part of the QMP command, if/when the
1898 * BlockdevOnError change for blkmirror makes it in
1900 BlockdevOnError on_error
= BLOCKDEV_ON_ERROR_REPORT
;
1906 /* drain all i/o before commits */
1909 bs
= bdrv_find(device
);
1911 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1915 /* default top_bs is the active layer */
1919 if (strcmp(bs
->filename
, top
) != 0) {
1920 top_bs
= bdrv_find_backing_image(bs
, top
);
1924 if (top_bs
== NULL
) {
1925 error_setg(errp
, "Top image file %s not found", top
? top
: "NULL");
1929 if (has_base
&& base
) {
1930 base_bs
= bdrv_find_backing_image(top_bs
, base
);
1932 base_bs
= bdrv_find_base(top_bs
);
1935 if (base_bs
== NULL
) {
1936 error_set(errp
, QERR_BASE_NOT_FOUND
, base
? base
: "NULL");
1941 commit_active_start(bs
, base_bs
, speed
, on_error
, block_job_cb
,
1944 commit_start(bs
, base_bs
, top_bs
, speed
, on_error
, block_job_cb
, bs
,
1947 if (local_err
!= NULL
) {
1948 error_propagate(errp
, local_err
);
1953 void qmp_drive_backup(const char *device
, const char *target
,
1954 bool has_format
, const char *format
,
1955 enum MirrorSyncMode sync
,
1956 bool has_mode
, enum NewImageMode mode
,
1957 bool has_speed
, int64_t speed
,
1958 bool has_on_source_error
, BlockdevOnError on_source_error
,
1959 bool has_on_target_error
, BlockdevOnError on_target_error
,
1962 BlockDriverState
*bs
;
1963 BlockDriverState
*target_bs
;
1964 BlockDriverState
*source
= NULL
;
1965 BlockDriver
*drv
= NULL
;
1966 Error
*local_err
= NULL
;
1974 if (!has_on_source_error
) {
1975 on_source_error
= BLOCKDEV_ON_ERROR_REPORT
;
1977 if (!has_on_target_error
) {
1978 on_target_error
= BLOCKDEV_ON_ERROR_REPORT
;
1981 mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1984 bs
= bdrv_find(device
);
1986 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1990 if (!bdrv_is_inserted(bs
)) {
1991 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1996 format
= mode
== NEW_IMAGE_MODE_EXISTING
? NULL
: bs
->drv
->format_name
;
1999 drv
= bdrv_find_format(format
);
2001 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
2006 if (bdrv_in_use(bs
)) {
2007 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
2011 flags
= bs
->open_flags
| BDRV_O_RDWR
;
2013 /* See if we have a backing HD we can use to create our new image
2015 if (sync
== MIRROR_SYNC_MODE_TOP
) {
2016 source
= bs
->backing_hd
;
2018 sync
= MIRROR_SYNC_MODE_FULL
;
2021 if (sync
== MIRROR_SYNC_MODE_NONE
) {
2025 size
= bdrv_getlength(bs
);
2027 error_setg_errno(errp
, -size
, "bdrv_getlength failed");
2031 if (mode
!= NEW_IMAGE_MODE_EXISTING
) {
2032 assert(format
&& drv
);
2034 bdrv_img_create(target
, format
, source
->filename
,
2035 source
->drv
->format_name
, NULL
,
2036 size
, flags
, &local_err
, false);
2038 bdrv_img_create(target
, format
, NULL
, NULL
, NULL
,
2039 size
, flags
, &local_err
, false);
2044 error_propagate(errp
, local_err
);
2049 ret
= bdrv_open(&target_bs
, target
, NULL
, NULL
, flags
, drv
, &local_err
);
2051 error_propagate(errp
, local_err
);
2055 backup_start(bs
, target_bs
, speed
, sync
, on_source_error
, on_target_error
,
2056 block_job_cb
, bs
, &local_err
);
2057 if (local_err
!= NULL
) {
2058 bdrv_unref(target_bs
);
2059 error_propagate(errp
, local_err
);
2064 BlockDeviceInfoList
*qmp_query_named_block_nodes(Error
**errp
)
2066 return bdrv_named_nodes_list();
2069 #define DEFAULT_MIRROR_BUF_SIZE (10 << 20)
2071 void qmp_drive_mirror(const char *device
, const char *target
,
2072 bool has_format
, const char *format
,
2073 enum MirrorSyncMode sync
,
2074 bool has_mode
, enum NewImageMode mode
,
2075 bool has_speed
, int64_t speed
,
2076 bool has_granularity
, uint32_t granularity
,
2077 bool has_buf_size
, int64_t buf_size
,
2078 bool has_on_source_error
, BlockdevOnError on_source_error
,
2079 bool has_on_target_error
, BlockdevOnError on_target_error
,
2082 BlockDriverState
*bs
;
2083 BlockDriverState
*source
, *target_bs
;
2084 BlockDriver
*drv
= NULL
;
2085 Error
*local_err
= NULL
;
2093 if (!has_on_source_error
) {
2094 on_source_error
= BLOCKDEV_ON_ERROR_REPORT
;
2096 if (!has_on_target_error
) {
2097 on_target_error
= BLOCKDEV_ON_ERROR_REPORT
;
2100 mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
2102 if (!has_granularity
) {
2105 if (!has_buf_size
) {
2106 buf_size
= DEFAULT_MIRROR_BUF_SIZE
;
2109 if (granularity
!= 0 && (granularity
< 512 || granularity
> 1048576 * 64)) {
2110 error_set(errp
, QERR_INVALID_PARAMETER
, device
);
2113 if (granularity
& (granularity
- 1)) {
2114 error_set(errp
, QERR_INVALID_PARAMETER
, device
);
2118 bs
= bdrv_find(device
);
2120 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
2124 if (!bdrv_is_inserted(bs
)) {
2125 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
2130 format
= mode
== NEW_IMAGE_MODE_EXISTING
? NULL
: bs
->drv
->format_name
;
2133 drv
= bdrv_find_format(format
);
2135 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
2140 if (bdrv_in_use(bs
)) {
2141 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
2145 flags
= bs
->open_flags
| BDRV_O_RDWR
;
2146 source
= bs
->backing_hd
;
2147 if (!source
&& sync
== MIRROR_SYNC_MODE_TOP
) {
2148 sync
= MIRROR_SYNC_MODE_FULL
;
2150 if (sync
== MIRROR_SYNC_MODE_NONE
) {
2154 size
= bdrv_getlength(bs
);
2156 error_setg_errno(errp
, -size
, "bdrv_getlength failed");
2160 if ((sync
== MIRROR_SYNC_MODE_FULL
|| !source
)
2161 && mode
!= NEW_IMAGE_MODE_EXISTING
)
2163 /* create new image w/o backing file */
2164 assert(format
&& drv
);
2165 bdrv_img_create(target
, format
,
2166 NULL
, NULL
, NULL
, size
, flags
, &local_err
, false);
2169 case NEW_IMAGE_MODE_EXISTING
:
2171 case NEW_IMAGE_MODE_ABSOLUTE_PATHS
:
2172 /* create new image with backing file */
2173 bdrv_img_create(target
, format
,
2175 source
->drv
->format_name
,
2176 NULL
, size
, flags
, &local_err
, false);
2184 error_propagate(errp
, local_err
);
2188 /* Mirroring takes care of copy-on-write using the source's backing
2192 ret
= bdrv_open(&target_bs
, target
, NULL
, NULL
, flags
| BDRV_O_NO_BACKING
,
2195 error_propagate(errp
, local_err
);
2199 mirror_start(bs
, target_bs
, speed
, granularity
, buf_size
, sync
,
2200 on_source_error
, on_target_error
,
2201 block_job_cb
, bs
, &local_err
);
2202 if (local_err
!= NULL
) {
2203 bdrv_unref(target_bs
);
2204 error_propagate(errp
, local_err
);
2209 static BlockJob
*find_block_job(const char *device
)
2211 BlockDriverState
*bs
;
2213 bs
= bdrv_find(device
);
2214 if (!bs
|| !bs
->job
) {
2220 void qmp_block_job_set_speed(const char *device
, int64_t speed
, Error
**errp
)
2222 BlockJob
*job
= find_block_job(device
);
2225 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
2229 block_job_set_speed(job
, speed
, errp
);
2232 void qmp_block_job_cancel(const char *device
,
2233 bool has_force
, bool force
, Error
**errp
)
2235 BlockJob
*job
= find_block_job(device
);
2242 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
2245 if (job
->paused
&& !force
) {
2246 error_setg(errp
, "The block job for device '%s' is currently paused",
2251 trace_qmp_block_job_cancel(job
);
2252 block_job_cancel(job
);
2255 void qmp_block_job_pause(const char *device
, Error
**errp
)
2257 BlockJob
*job
= find_block_job(device
);
2260 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
2264 trace_qmp_block_job_pause(job
);
2265 block_job_pause(job
);
2268 void qmp_block_job_resume(const char *device
, Error
**errp
)
2270 BlockJob
*job
= find_block_job(device
);
2273 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
2277 trace_qmp_block_job_resume(job
);
2278 block_job_resume(job
);
2281 void qmp_block_job_complete(const char *device
, Error
**errp
)
2283 BlockJob
*job
= find_block_job(device
);
2286 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
2290 trace_qmp_block_job_complete(job
);
2291 block_job_complete(job
, errp
);
2294 void qmp_blockdev_add(BlockdevOptions
*options
, Error
**errp
)
2296 QmpOutputVisitor
*ov
= qmp_output_visitor_new();
2300 Error
*local_err
= NULL
;
2302 /* Require an ID in the top level */
2303 if (!options
->has_id
) {
2304 error_setg(errp
, "Block device needs an ID");
2308 /* TODO Sort it out in raw-posix and drive_init: Reject aio=native with
2309 * cache.direct=false instead of silently switching to aio=threads, except
2310 * if called from drive_init.
2312 * For now, simply forbidding the combination for all drivers will do. */
2313 if (options
->has_aio
&& options
->aio
== BLOCKDEV_AIO_OPTIONS_NATIVE
) {
2314 bool direct
= options
->has_cache
&&
2315 options
->cache
->has_direct
&&
2316 options
->cache
->direct
;
2318 error_setg(errp
, "aio=native requires cache.direct=true");
2323 visit_type_BlockdevOptions(qmp_output_get_visitor(ov
),
2324 &options
, NULL
, &local_err
);
2326 error_propagate(errp
, local_err
);
2330 obj
= qmp_output_get_qobject(ov
);
2331 qdict
= qobject_to_qdict(obj
);
2333 qdict_flatten(qdict
);
2335 dinfo
= blockdev_init(NULL
, qdict
, &local_err
);
2337 error_propagate(errp
, local_err
);
2341 if (bdrv_key_required(dinfo
->bdrv
)) {
2342 drive_uninit(dinfo
);
2343 error_setg(errp
, "blockdev-add doesn't support encrypted devices");
2348 qmp_output_visitor_cleanup(ov
);
2351 static void do_qmp_query_block_jobs_one(void *opaque
, BlockDriverState
*bs
)
2353 BlockJobInfoList
**prev
= opaque
;
2354 BlockJob
*job
= bs
->job
;
2357 BlockJobInfoList
*elem
= g_new0(BlockJobInfoList
, 1);
2358 elem
->value
= block_job_query(bs
->job
);
2359 (*prev
)->next
= elem
;
2364 BlockJobInfoList
*qmp_query_block_jobs(Error
**errp
)
2366 /* Dummy is a fake list element for holding the head pointer */
2367 BlockJobInfoList dummy
= {};
2368 BlockJobInfoList
*prev
= &dummy
;
2369 bdrv_iterate(do_qmp_query_block_jobs_one
, &prev
);
2373 QemuOptsList qemu_common_drive_opts
= {
2375 .head
= QTAILQ_HEAD_INITIALIZER(qemu_common_drive_opts
.head
),
2379 .type
= QEMU_OPT_BOOL
,
2380 .help
= "enable/disable snapshot mode",
2383 .type
= QEMU_OPT_STRING
,
2384 .help
= "discard operation (ignore/off, unmap/on)",
2386 .name
= "cache.writeback",
2387 .type
= QEMU_OPT_BOOL
,
2388 .help
= "enables writeback mode for any caches",
2390 .name
= "cache.direct",
2391 .type
= QEMU_OPT_BOOL
,
2392 .help
= "enables use of O_DIRECT (bypass the host page cache)",
2394 .name
= "cache.no-flush",
2395 .type
= QEMU_OPT_BOOL
,
2396 .help
= "ignore any flush requests for the device",
2399 .type
= QEMU_OPT_STRING
,
2400 .help
= "host AIO implementation (threads, native)",
2403 .type
= QEMU_OPT_STRING
,
2404 .help
= "disk format (raw, qcow2, ...)",
2407 .type
= QEMU_OPT_STRING
,
2408 .help
= "disk serial number",
2411 .type
= QEMU_OPT_STRING
,
2412 .help
= "read error action",
2415 .type
= QEMU_OPT_STRING
,
2416 .help
= "write error action",
2418 .name
= "read-only",
2419 .type
= QEMU_OPT_BOOL
,
2420 .help
= "open drive file as read-only",
2422 .name
= "throttling.iops-total",
2423 .type
= QEMU_OPT_NUMBER
,
2424 .help
= "limit total I/O operations per second",
2426 .name
= "throttling.iops-read",
2427 .type
= QEMU_OPT_NUMBER
,
2428 .help
= "limit read operations per second",
2430 .name
= "throttling.iops-write",
2431 .type
= QEMU_OPT_NUMBER
,
2432 .help
= "limit write operations per second",
2434 .name
= "throttling.bps-total",
2435 .type
= QEMU_OPT_NUMBER
,
2436 .help
= "limit total bytes per second",
2438 .name
= "throttling.bps-read",
2439 .type
= QEMU_OPT_NUMBER
,
2440 .help
= "limit read bytes per second",
2442 .name
= "throttling.bps-write",
2443 .type
= QEMU_OPT_NUMBER
,
2444 .help
= "limit write bytes per second",
2446 .name
= "throttling.iops-total-max",
2447 .type
= QEMU_OPT_NUMBER
,
2448 .help
= "I/O operations burst",
2450 .name
= "throttling.iops-read-max",
2451 .type
= QEMU_OPT_NUMBER
,
2452 .help
= "I/O operations read burst",
2454 .name
= "throttling.iops-write-max",
2455 .type
= QEMU_OPT_NUMBER
,
2456 .help
= "I/O operations write burst",
2458 .name
= "throttling.bps-total-max",
2459 .type
= QEMU_OPT_NUMBER
,
2460 .help
= "total bytes burst",
2462 .name
= "throttling.bps-read-max",
2463 .type
= QEMU_OPT_NUMBER
,
2464 .help
= "total bytes read burst",
2466 .name
= "throttling.bps-write-max",
2467 .type
= QEMU_OPT_NUMBER
,
2468 .help
= "total bytes write burst",
2470 .name
= "throttling.iops-size",
2471 .type
= QEMU_OPT_NUMBER
,
2472 .help
= "when limiting by iops max size of an I/O in bytes",
2474 .name
= "copy-on-read",
2475 .type
= QEMU_OPT_BOOL
,
2476 .help
= "copy read data from backing file into image file",
2478 { /* end of list */ }
2482 QemuOptsList qemu_drive_opts
= {
2484 .head
= QTAILQ_HEAD_INITIALIZER(qemu_drive_opts
.head
),
2487 * no elements => accept any params
2488 * validation will happen later
2490 { /* end of list */ }