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
);
50 extern QemuOptsList qemu_common_drive_opts
;
52 static const char *const if_name
[IF_COUNT
] = {
56 [IF_FLOPPY
] = "floppy",
57 [IF_PFLASH
] = "pflash",
60 [IF_VIRTIO
] = "virtio",
64 static const int if_max_devs
[IF_COUNT
] = {
66 * Do not change these numbers! They govern how drive option
67 * index maps to unit and bus. That mapping is ABI.
69 * All controllers used to imlement if=T drives need to support
70 * if_max_devs[T] units, for any T with if_max_devs[T] != 0.
71 * Otherwise, some index values map to "impossible" bus, unit
74 * For instance, if you change [IF_SCSI] to 255, -drive
75 * if=scsi,index=12 no longer means bus=1,unit=5, but
76 * bus=0,unit=12. With an lsi53c895a controller (7 units max),
77 * the drive can't be set up. Regression.
84 * We automatically delete the drive when a device using it gets
85 * unplugged. Questionable feature, but we can't just drop it.
86 * Device models call blockdev_mark_auto_del() to schedule the
87 * automatic deletion, and generic qdev code calls blockdev_auto_del()
88 * when deletion is actually safe.
90 void blockdev_mark_auto_del(BlockDriverState
*bs
)
92 DriveInfo
*dinfo
= drive_get_by_blockdev(bs
);
94 if (dinfo
&& !dinfo
->enable_auto_del
) {
99 block_job_cancel(bs
->job
);
106 void blockdev_auto_del(BlockDriverState
*bs
)
108 DriveInfo
*dinfo
= drive_get_by_blockdev(bs
);
110 if (dinfo
&& dinfo
->auto_del
) {
111 drive_put_ref(dinfo
);
115 static int drive_index_to_bus_id(BlockInterfaceType type
, int index
)
117 int max_devs
= if_max_devs
[type
];
118 return max_devs
? index
/ max_devs
: 0;
121 static int drive_index_to_unit_id(BlockInterfaceType type
, int index
)
123 int max_devs
= if_max_devs
[type
];
124 return max_devs
? index
% max_devs
: index
;
127 QemuOpts
*drive_def(const char *optstr
)
129 return qemu_opts_parse(qemu_find_opts("drive"), optstr
, 0);
132 QemuOpts
*drive_add(BlockInterfaceType type
, int index
, const char *file
,
138 opts
= drive_def(optstr
);
142 if (type
!= IF_DEFAULT
) {
143 qemu_opt_set(opts
, "if", if_name
[type
]);
146 snprintf(buf
, sizeof(buf
), "%d", index
);
147 qemu_opt_set(opts
, "index", buf
);
150 qemu_opt_set(opts
, "file", file
);
154 DriveInfo
*drive_get(BlockInterfaceType type
, int bus
, int unit
)
158 /* seek interface, bus and unit */
160 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
161 if (dinfo
->type
== type
&&
170 DriveInfo
*drive_get_by_index(BlockInterfaceType type
, int index
)
172 return drive_get(type
,
173 drive_index_to_bus_id(type
, index
),
174 drive_index_to_unit_id(type
, index
));
177 int drive_get_max_bus(BlockInterfaceType type
)
183 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
184 if(dinfo
->type
== type
&&
185 dinfo
->bus
> max_bus
)
186 max_bus
= dinfo
->bus
;
191 /* Get a block device. This should only be used for single-drive devices
192 (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the
194 DriveInfo
*drive_get_next(BlockInterfaceType type
)
196 static int next_block_unit
[IF_COUNT
];
198 return drive_get(type
, 0, next_block_unit
[type
]++);
201 DriveInfo
*drive_get_by_blockdev(BlockDriverState
*bs
)
205 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
206 if (dinfo
->bdrv
== bs
) {
213 static void bdrv_format_print(void *opaque
, const char *name
)
215 error_printf(" %s", name
);
218 static void drive_uninit(DriveInfo
*dinfo
)
221 qemu_opts_del(dinfo
->opts
);
224 bdrv_unref(dinfo
->bdrv
);
226 QTAILQ_REMOVE(&drives
, dinfo
, next
);
227 g_free(dinfo
->serial
);
231 void drive_put_ref(DriveInfo
*dinfo
)
233 assert(dinfo
->refcount
);
234 if (--dinfo
->refcount
== 0) {
239 void drive_get_ref(DriveInfo
*dinfo
)
246 BlockDriverState
*bs
;
249 static void bdrv_put_ref_bh(void *opaque
)
251 BDRVPutRefBH
*s
= opaque
;
254 qemu_bh_delete(s
->bh
);
259 * Release a BDS reference in a BH
261 * It is not safe to use bdrv_unref() from a callback function when the callers
262 * still need the BlockDriverState. In such cases we schedule a BH to release
265 static void bdrv_put_ref_bh_schedule(BlockDriverState
*bs
)
269 s
= g_new(BDRVPutRefBH
, 1);
270 s
->bh
= qemu_bh_new(bdrv_put_ref_bh
, s
);
272 qemu_bh_schedule(s
->bh
);
275 static int parse_block_error_action(const char *buf
, bool is_read
, Error
**errp
)
277 if (!strcmp(buf
, "ignore")) {
278 return BLOCKDEV_ON_ERROR_IGNORE
;
279 } else if (!is_read
&& !strcmp(buf
, "enospc")) {
280 return BLOCKDEV_ON_ERROR_ENOSPC
;
281 } else if (!strcmp(buf
, "stop")) {
282 return BLOCKDEV_ON_ERROR_STOP
;
283 } else if (!strcmp(buf
, "report")) {
284 return BLOCKDEV_ON_ERROR_REPORT
;
286 error_setg(errp
, "'%s' invalid %s error action",
287 buf
, is_read
? "read" : "write");
292 static bool check_throttle_config(ThrottleConfig
*cfg
, Error
**errp
)
294 if (throttle_conflicting(cfg
)) {
295 error_setg(errp
, "bps/iops/max total values and read/write values"
296 " cannot be used at the same time");
300 if (!throttle_is_valid(cfg
)) {
301 error_setg(errp
, "bps/iops/maxs values must be 0 or greater");
308 typedef enum { MEDIA_DISK
, MEDIA_CDROM
} DriveMediaType
;
310 /* Takes the ownership of bs_opts */
311 static DriveInfo
*blockdev_init(QDict
*bs_opts
,
312 BlockInterfaceType type
,
316 const char *file
= NULL
;
320 int on_read_error
, on_write_error
;
329 bool has_driver_specific_opts
;
330 BlockDriver
*drv
= NULL
;
332 /* Check common options by copying from bs_opts to opts, all other options
333 * stay in bs_opts for processing by bdrv_open(). */
334 id
= qdict_get_try_str(bs_opts
, "id");
335 opts
= qemu_opts_create(&qemu_common_drive_opts
, id
, 1, &error
);
336 if (error_is_set(&error
)) {
337 error_propagate(errp
, error
);
341 qemu_opts_absorb_qdict(opts
, bs_opts
, &error
);
342 if (error_is_set(&error
)) {
343 error_propagate(errp
, error
);
348 qdict_del(bs_opts
, "id");
351 has_driver_specific_opts
= !!qdict_size(bs_opts
);
353 /* extract parameters */
354 snapshot
= qemu_opt_get_bool(opts
, "snapshot", 0);
355 ro
= qemu_opt_get_bool(opts
, "read-only", 0);
356 copy_on_read
= qemu_opt_get_bool(opts
, "copy-on-read", false);
358 file
= qemu_opt_get(opts
, "file");
359 serial
= qemu_opt_get(opts
, "serial");
361 if ((buf
= qemu_opt_get(opts
, "discard")) != NULL
) {
362 if (bdrv_parse_discard_flags(buf
, &bdrv_flags
) != 0) {
363 error_setg(errp
, "invalid discard option");
368 if (qemu_opt_get_bool(opts
, "cache.writeback", true)) {
369 bdrv_flags
|= BDRV_O_CACHE_WB
;
371 if (qemu_opt_get_bool(opts
, "cache.direct", false)) {
372 bdrv_flags
|= BDRV_O_NOCACHE
;
374 if (qemu_opt_get_bool(opts
, "cache.no-flush", false)) {
375 bdrv_flags
|= BDRV_O_NO_FLUSH
;
378 #ifdef CONFIG_LINUX_AIO
379 if ((buf
= qemu_opt_get(opts
, "aio")) != NULL
) {
380 if (!strcmp(buf
, "native")) {
381 bdrv_flags
|= BDRV_O_NATIVE_AIO
;
382 } else if (!strcmp(buf
, "threads")) {
383 /* this is the default */
385 error_setg(errp
, "invalid aio option");
391 if ((buf
= qemu_opt_get(opts
, "format")) != NULL
) {
392 if (is_help_option(buf
)) {
393 error_printf("Supported formats:");
394 bdrv_iterate_format(bdrv_format_print
, NULL
);
399 drv
= bdrv_find_format(buf
);
401 error_setg(errp
, "'%s' invalid format", buf
);
406 /* disk I/O throttling */
407 memset(&cfg
, 0, sizeof(cfg
));
408 cfg
.buckets
[THROTTLE_BPS_TOTAL
].avg
=
409 qemu_opt_get_number(opts
, "throttling.bps-total", 0);
410 cfg
.buckets
[THROTTLE_BPS_READ
].avg
=
411 qemu_opt_get_number(opts
, "throttling.bps-read", 0);
412 cfg
.buckets
[THROTTLE_BPS_WRITE
].avg
=
413 qemu_opt_get_number(opts
, "throttling.bps-write", 0);
414 cfg
.buckets
[THROTTLE_OPS_TOTAL
].avg
=
415 qemu_opt_get_number(opts
, "throttling.iops-total", 0);
416 cfg
.buckets
[THROTTLE_OPS_READ
].avg
=
417 qemu_opt_get_number(opts
, "throttling.iops-read", 0);
418 cfg
.buckets
[THROTTLE_OPS_WRITE
].avg
=
419 qemu_opt_get_number(opts
, "throttling.iops-write", 0);
421 cfg
.buckets
[THROTTLE_BPS_TOTAL
].max
=
422 qemu_opt_get_number(opts
, "throttling.bps-total-max", 0);
423 cfg
.buckets
[THROTTLE_BPS_READ
].max
=
424 qemu_opt_get_number(opts
, "throttling.bps-read-max", 0);
425 cfg
.buckets
[THROTTLE_BPS_WRITE
].max
=
426 qemu_opt_get_number(opts
, "throttling.bps-write-max", 0);
427 cfg
.buckets
[THROTTLE_OPS_TOTAL
].max
=
428 qemu_opt_get_number(opts
, "throttling.iops-total-max", 0);
429 cfg
.buckets
[THROTTLE_OPS_READ
].max
=
430 qemu_opt_get_number(opts
, "throttling.iops-read-max", 0);
431 cfg
.buckets
[THROTTLE_OPS_WRITE
].max
=
432 qemu_opt_get_number(opts
, "throttling.iops-write-max", 0);
434 cfg
.op_size
= qemu_opt_get_number(opts
, "throttling.iops-size", 0);
436 if (!check_throttle_config(&cfg
, &error
)) {
437 error_propagate(errp
, error
);
441 on_write_error
= BLOCKDEV_ON_ERROR_ENOSPC
;
442 if ((buf
= qemu_opt_get(opts
, "werror")) != NULL
) {
443 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
&& type
!= IF_NONE
) {
444 error_setg(errp
, "werror is not supported by this bus type");
448 on_write_error
= parse_block_error_action(buf
, 0, &error
);
449 if (error_is_set(&error
)) {
450 error_propagate(errp
, error
);
455 on_read_error
= BLOCKDEV_ON_ERROR_REPORT
;
456 if ((buf
= qemu_opt_get(opts
, "rerror")) != NULL
) {
457 if (type
!= IF_IDE
&& type
!= IF_VIRTIO
&& type
!= IF_SCSI
&& type
!= IF_NONE
) {
458 error_report("rerror is not supported by this bus type");
462 on_read_error
= parse_block_error_action(buf
, 1, &error
);
463 if (error_is_set(&error
)) {
464 error_propagate(errp
, error
);
470 dinfo
= g_malloc0(sizeof(*dinfo
));
471 dinfo
->id
= g_strdup(qemu_opts_id(opts
));
472 dinfo
->bdrv
= bdrv_new(dinfo
->id
);
473 dinfo
->bdrv
->open_flags
= snapshot
? BDRV_O_SNAPSHOT
: 0;
474 dinfo
->bdrv
->read_only
= ro
;
477 if (serial
!= NULL
) {
478 dinfo
->serial
= g_strdup(serial
);
480 QTAILQ_INSERT_TAIL(&drives
, dinfo
, next
);
482 bdrv_set_on_error(dinfo
->bdrv
, on_read_error
, on_write_error
);
484 /* disk I/O throttling */
485 if (throttle_enabled(&cfg
)) {
486 bdrv_io_limits_enable(dinfo
->bdrv
);
487 bdrv_set_io_limits(dinfo
->bdrv
, &cfg
);
490 if (!file
|| !*file
) {
491 if (has_driver_specific_opts
) {
498 /* always use cache=unsafe with snapshot */
499 bdrv_flags
&= ~BDRV_O_CACHE_MASK
;
500 bdrv_flags
|= (BDRV_O_SNAPSHOT
|BDRV_O_CACHE_WB
|BDRV_O_NO_FLUSH
);
504 bdrv_flags
|= BDRV_O_COPY_ON_READ
;
507 if (runstate_check(RUN_STATE_INMIGRATE
)) {
508 bdrv_flags
|= BDRV_O_INCOMING
;
511 bdrv_flags
|= ro
? 0 : BDRV_O_RDWR
;
514 ret
= bdrv_open(dinfo
->bdrv
, file
, bs_opts
, bdrv_flags
, drv
, &error
);
517 error_setg(errp
, "could not open disk image %s: %s",
518 file
?: dinfo
->id
, error_get_pretty(error
));
523 if (bdrv_key_required(dinfo
->bdrv
))
534 bdrv_unref(dinfo
->bdrv
);
536 QTAILQ_REMOVE(&drives
, dinfo
, next
);
541 static void qemu_opt_rename(QemuOpts
*opts
, const char *from
, const char *to
)
545 value
= qemu_opt_get(opts
, from
);
547 qemu_opt_set(opts
, to
, value
);
548 qemu_opt_unset(opts
, from
);
552 QemuOptsList qemu_legacy_drive_opts
= {
554 .head
= QTAILQ_HEAD_INITIALIZER(qemu_legacy_drive_opts
.head
),
558 .type
= QEMU_OPT_NUMBER
,
559 .help
= "bus number",
562 .type
= QEMU_OPT_NUMBER
,
563 .help
= "unit number (i.e. lun for scsi)",
566 .type
= QEMU_OPT_NUMBER
,
567 .help
= "index number",
570 .type
= QEMU_OPT_STRING
,
571 .help
= "media type (disk, cdrom)",
574 .type
= QEMU_OPT_STRING
,
575 .help
= "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
578 .type
= QEMU_OPT_NUMBER
,
579 .help
= "number of cylinders (ide disk geometry)",
582 .type
= QEMU_OPT_NUMBER
,
583 .help
= "number of heads (ide disk geometry)",
586 .type
= QEMU_OPT_NUMBER
,
587 .help
= "number of sectors (ide disk geometry)",
590 .type
= QEMU_OPT_STRING
,
591 .help
= "chs translation (auto, lba, none)",
594 .type
= QEMU_OPT_BOOL
,
595 .help
= "(deprecated, ignored)",
598 .type
= QEMU_OPT_STRING
,
599 .help
= "pci address (virtio only)",
602 /* Options that are passed on, but have special semantics with -drive */
605 .type
= QEMU_OPT_BOOL
,
606 .help
= "open drive file as read-only",
608 .name
= "copy-on-read",
609 .type
= QEMU_OPT_BOOL
,
610 .help
= "copy read data from backing file into image file",
613 { /* end of list */ }
617 DriveInfo
*drive_init(QemuOpts
*all_opts
, BlockInterfaceType block_default_type
)
620 DriveInfo
*dinfo
= NULL
;
622 QemuOpts
*legacy_opts
;
623 DriveMediaType media
= MEDIA_DISK
;
624 BlockInterfaceType type
;
625 int cyls
, heads
, secs
, translation
;
626 int max_devs
, bus_id
, unit_id
, index
;
628 bool read_only
, copy_on_read
;
629 Error
*local_err
= NULL
;
631 /* Change legacy command line options into QMP ones */
632 qemu_opt_rename(all_opts
, "iops", "throttling.iops-total");
633 qemu_opt_rename(all_opts
, "iops_rd", "throttling.iops-read");
634 qemu_opt_rename(all_opts
, "iops_wr", "throttling.iops-write");
636 qemu_opt_rename(all_opts
, "bps", "throttling.bps-total");
637 qemu_opt_rename(all_opts
, "bps_rd", "throttling.bps-read");
638 qemu_opt_rename(all_opts
, "bps_wr", "throttling.bps-write");
640 qemu_opt_rename(all_opts
, "iops_max", "throttling.iops-total-max");
641 qemu_opt_rename(all_opts
, "iops_rd_max", "throttling.iops-read-max");
642 qemu_opt_rename(all_opts
, "iops_wr_max", "throttling.iops-write-max");
644 qemu_opt_rename(all_opts
, "bps_max", "throttling.bps-total-max");
645 qemu_opt_rename(all_opts
, "bps_rd_max", "throttling.bps-read-max");
646 qemu_opt_rename(all_opts
, "bps_wr_max", "throttling.bps-write-max");
648 qemu_opt_rename(all_opts
,
649 "iops_size", "throttling.iops-size");
651 qemu_opt_rename(all_opts
, "readonly", "read-only");
653 value
= qemu_opt_get(all_opts
, "cache");
657 if (bdrv_parse_cache_flags(value
, &flags
) != 0) {
658 error_report("invalid cache option");
662 /* Specific options take precedence */
663 if (!qemu_opt_get(all_opts
, "cache.writeback")) {
664 qemu_opt_set_bool(all_opts
, "cache.writeback",
665 !!(flags
& BDRV_O_CACHE_WB
));
667 if (!qemu_opt_get(all_opts
, "cache.direct")) {
668 qemu_opt_set_bool(all_opts
, "cache.direct",
669 !!(flags
& BDRV_O_NOCACHE
));
671 if (!qemu_opt_get(all_opts
, "cache.no-flush")) {
672 qemu_opt_set_bool(all_opts
, "cache.no-flush",
673 !!(flags
& BDRV_O_NO_FLUSH
));
675 qemu_opt_unset(all_opts
, "cache");
678 /* Get a QDict for processing the options */
679 bs_opts
= qdict_new();
680 qemu_opts_to_qdict(all_opts
, bs_opts
);
682 legacy_opts
= qemu_opts_create_nofail(&qemu_legacy_drive_opts
);
683 qemu_opts_absorb_qdict(legacy_opts
, bs_opts
, &local_err
);
684 if (error_is_set(&local_err
)) {
685 qerror_report_err(local_err
);
686 error_free(local_err
);
690 /* Deprecated option boot=[on|off] */
691 if (qemu_opt_get(legacy_opts
, "boot") != NULL
) {
692 fprintf(stderr
, "qemu-kvm: boot=on|off is deprecated and will be "
693 "ignored. Future versions will reject this parameter. Please "
694 "update your scripts.\n");
698 value
= qemu_opt_get(legacy_opts
, "media");
700 if (!strcmp(value
, "disk")) {
702 } else if (!strcmp(value
, "cdrom")) {
704 qdict_put(bs_opts
, "read-only", qstring_from_str("on"));
706 error_report("'%s' invalid media", value
);
711 /* copy-on-read is disabled with a warning for read-only devices */
712 read_only
= qemu_opt_get_bool(legacy_opts
, "read-only", false);
713 copy_on_read
= qemu_opt_get_bool(legacy_opts
, "copy-on-read", false);
715 if (read_only
&& copy_on_read
) {
716 error_report("warning: disabling copy-on-read on read-only drive");
717 copy_on_read
= false;
720 qdict_put(bs_opts
, "read-only",
721 qstring_from_str(read_only
? "on" : "off"));
722 qdict_put(bs_opts
, "copy-on-read",
723 qstring_from_str(copy_on_read
? "on" :"off"));
725 /* Controller type */
726 value
= qemu_opt_get(legacy_opts
, "if");
729 type
< IF_COUNT
&& strcmp(value
, if_name
[type
]);
732 if (type
== IF_COUNT
) {
733 error_report("unsupported bus type '%s'", value
);
737 type
= block_default_type
;
741 cyls
= qemu_opt_get_number(legacy_opts
, "cyls", 0);
742 heads
= qemu_opt_get_number(legacy_opts
, "heads", 0);
743 secs
= qemu_opt_get_number(legacy_opts
, "secs", 0);
745 if (cyls
|| heads
|| secs
) {
747 error_report("invalid physical cyls number");
751 error_report("invalid physical heads number");
755 error_report("invalid physical secs number");
760 translation
= BIOS_ATA_TRANSLATION_AUTO
;
761 value
= qemu_opt_get(legacy_opts
, "trans");
764 error_report("'%s' trans must be used with cyls, heads and secs",
768 if (!strcmp(value
, "none")) {
769 translation
= BIOS_ATA_TRANSLATION_NONE
;
770 } else if (!strcmp(value
, "lba")) {
771 translation
= BIOS_ATA_TRANSLATION_LBA
;
772 } else if (!strcmp(value
, "auto")) {
773 translation
= BIOS_ATA_TRANSLATION_AUTO
;
775 error_report("'%s' invalid translation type", value
);
780 if (media
== MEDIA_CDROM
) {
781 if (cyls
|| secs
|| heads
) {
782 error_report("CHS can't be set with media=cdrom");
787 /* Device address specified by bus/unit or index.
788 * If none was specified, try to find the first free one. */
789 bus_id
= qemu_opt_get_number(legacy_opts
, "bus", 0);
790 unit_id
= qemu_opt_get_number(legacy_opts
, "unit", -1);
791 index
= qemu_opt_get_number(legacy_opts
, "index", -1);
793 max_devs
= if_max_devs
[type
];
796 if (bus_id
!= 0 || unit_id
!= -1) {
797 error_report("index cannot be used with bus and unit");
800 bus_id
= drive_index_to_bus_id(type
, index
);
801 unit_id
= drive_index_to_unit_id(type
, index
);
806 while (drive_get(type
, bus_id
, unit_id
) != NULL
) {
808 if (max_devs
&& unit_id
>= max_devs
) {
815 if (max_devs
&& unit_id
>= max_devs
) {
816 error_report("unit %d too big (max is %d)", unit_id
, max_devs
- 1);
820 if (drive_get(type
, bus_id
, unit_id
) != NULL
) {
821 error_report("drive with bus=%d, unit=%d (index=%d) exists",
822 bus_id
, unit_id
, index
);
826 /* no id supplied -> create one */
827 if (qemu_opts_id(all_opts
) == NULL
) {
829 const char *mediastr
= "";
830 if (type
== IF_IDE
|| type
== IF_SCSI
) {
831 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
834 new_id
= g_strdup_printf("%s%i%s%i", if_name
[type
], bus_id
,
837 new_id
= g_strdup_printf("%s%s%i", if_name
[type
],
840 qdict_put(bs_opts
, "id", qstring_from_str(new_id
));
844 /* Add virtio block device */
845 devaddr
= qemu_opt_get(legacy_opts
, "addr");
846 if (devaddr
&& type
!= IF_VIRTIO
) {
847 error_report("addr is not supported by this bus type");
851 if (type
== IF_VIRTIO
) {
853 devopts
= qemu_opts_create_nofail(qemu_find_opts("device"));
854 if (arch_type
== QEMU_ARCH_S390X
) {
855 qemu_opt_set(devopts
, "driver", "virtio-blk-s390");
857 qemu_opt_set(devopts
, "driver", "virtio-blk-pci");
859 qemu_opt_set(devopts
, "drive", qdict_get_str(bs_opts
, "id"));
861 qemu_opt_set(devopts
, "addr", devaddr
);
865 /* Actual block device init: Functionality shared with blockdev-add */
866 dinfo
= blockdev_init(bs_opts
, type
, &local_err
);
868 if (error_is_set(&local_err
)) {
869 qerror_report_err(local_err
);
870 error_free(local_err
);
874 assert(!error_is_set(&local_err
));
877 /* Set legacy DriveInfo fields */
878 dinfo
->enable_auto_del
= true;
879 dinfo
->opts
= all_opts
;
882 dinfo
->heads
= heads
;
884 dinfo
->trans
= translation
;
887 dinfo
->unit
= unit_id
;
888 dinfo
->devaddr
= devaddr
;
895 dinfo
->media_cd
= media
== MEDIA_CDROM
;
902 qemu_opts_del(legacy_opts
);
906 void do_commit(Monitor
*mon
, const QDict
*qdict
)
908 const char *device
= qdict_get_str(qdict
, "device");
909 BlockDriverState
*bs
;
912 if (!strcmp(device
, "all")) {
913 ret
= bdrv_commit_all();
915 bs
= bdrv_find(device
);
917 monitor_printf(mon
, "Device '%s' not found\n", device
);
920 ret
= bdrv_commit(bs
);
923 monitor_printf(mon
, "'commit' error for '%s': %s\n", device
,
928 static void blockdev_do_action(int kind
, void *data
, Error
**errp
)
930 TransactionAction action
;
931 TransactionActionList list
;
935 list
.value
= &action
;
937 qmp_transaction(&list
, errp
);
940 void qmp_blockdev_snapshot_sync(const char *device
, const char *snapshot_file
,
941 bool has_format
, const char *format
,
942 bool has_mode
, enum NewImageMode mode
,
945 BlockdevSnapshot snapshot
= {
946 .device
= (char *) device
,
947 .snapshot_file
= (char *) snapshot_file
,
948 .has_format
= has_format
,
949 .format
= (char *) format
,
950 .has_mode
= has_mode
,
953 blockdev_do_action(TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
,
957 void qmp_blockdev_snapshot_internal_sync(const char *device
,
961 BlockdevSnapshotInternal snapshot
= {
962 .device
= (char *) device
,
963 .name
= (char *) name
966 blockdev_do_action(TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC
,
970 SnapshotInfo
*qmp_blockdev_snapshot_delete_internal_sync(const char *device
,
977 BlockDriverState
*bs
= bdrv_find(device
);
979 Error
*local_err
= NULL
;
980 SnapshotInfo
*info
= NULL
;
984 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
997 error_setg(errp
, "Name or id must be provided");
1001 ret
= bdrv_snapshot_find_by_id_and_name(bs
, id
, name
, &sn
, &local_err
);
1002 if (error_is_set(&local_err
)) {
1003 error_propagate(errp
, local_err
);
1008 "Snapshot with id '%s' and name '%s' does not exist on "
1010 STR_OR_NULL(id
), STR_OR_NULL(name
), device
);
1014 bdrv_snapshot_delete(bs
, id
, name
, &local_err
);
1015 if (error_is_set(&local_err
)) {
1016 error_propagate(errp
, local_err
);
1020 info
= g_malloc0(sizeof(SnapshotInfo
));
1021 info
->id
= g_strdup(sn
.id_str
);
1022 info
->name
= g_strdup(sn
.name
);
1023 info
->date_nsec
= sn
.date_nsec
;
1024 info
->date_sec
= sn
.date_sec
;
1025 info
->vm_state_size
= sn
.vm_state_size
;
1026 info
->vm_clock_nsec
= sn
.vm_clock_nsec
% 1000000000;
1027 info
->vm_clock_sec
= sn
.vm_clock_nsec
/ 1000000000;
1032 /* New and old BlockDriverState structs for group snapshots */
1034 typedef struct BlkTransactionState BlkTransactionState
;
1036 /* Only prepare() may fail. In a single transaction, only one of commit() or
1037 abort() will be called, clean() will always be called if it present. */
1038 typedef struct BdrvActionOps
{
1039 /* Size of state struct, in bytes. */
1040 size_t instance_size
;
1041 /* Prepare the work, must NOT be NULL. */
1042 void (*prepare
)(BlkTransactionState
*common
, Error
**errp
);
1043 /* Commit the changes, can be NULL. */
1044 void (*commit
)(BlkTransactionState
*common
);
1045 /* Abort the changes on fail, can be NULL. */
1046 void (*abort
)(BlkTransactionState
*common
);
1047 /* Clean up resource in the end, can be NULL. */
1048 void (*clean
)(BlkTransactionState
*common
);
1052 * This structure must be arranged as first member in child type, assuming
1053 * that compiler will also arrange it to the same address with parent instance.
1054 * Later it will be used in free().
1056 struct BlkTransactionState
{
1057 TransactionAction
*action
;
1058 const BdrvActionOps
*ops
;
1059 QSIMPLEQ_ENTRY(BlkTransactionState
) entry
;
1062 /* internal snapshot private data */
1063 typedef struct InternalSnapshotState
{
1064 BlkTransactionState common
;
1065 BlockDriverState
*bs
;
1066 QEMUSnapshotInfo sn
;
1067 } InternalSnapshotState
;
1069 static void internal_snapshot_prepare(BlkTransactionState
*common
,
1074 BlockDriverState
*bs
;
1075 QEMUSnapshotInfo old_sn
, *sn
;
1078 BlockdevSnapshotInternal
*internal
;
1079 InternalSnapshotState
*state
;
1082 g_assert(common
->action
->kind
==
1083 TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC
);
1084 internal
= common
->action
->blockdev_snapshot_internal_sync
;
1085 state
= DO_UPCAST(InternalSnapshotState
, common
, common
);
1087 /* 1. parse input */
1088 device
= internal
->device
;
1089 name
= internal
->name
;
1091 /* 2. check for validation */
1092 bs
= bdrv_find(device
);
1094 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1098 if (!bdrv_is_inserted(bs
)) {
1099 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1103 if (bdrv_is_read_only(bs
)) {
1104 error_set(errp
, QERR_DEVICE_IS_READ_ONLY
, device
);
1108 if (!bdrv_can_snapshot(bs
)) {
1109 error_set(errp
, QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED
,
1110 bs
->drv
->format_name
, device
, "internal snapshot");
1114 if (!strlen(name
)) {
1115 error_setg(errp
, "Name is empty");
1119 /* check whether a snapshot with name exist */
1120 ret
= bdrv_snapshot_find_by_id_and_name(bs
, NULL
, name
, &old_sn
, errp
);
1121 if (error_is_set(errp
)) {
1125 "Snapshot with name '%s' already exists on device '%s'",
1130 /* 3. take the snapshot */
1132 pstrcpy(sn
->name
, sizeof(sn
->name
), name
);
1133 qemu_gettimeofday(&tv
);
1134 sn
->date_sec
= tv
.tv_sec
;
1135 sn
->date_nsec
= tv
.tv_usec
* 1000;
1136 sn
->vm_clock_nsec
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
1138 ret1
= bdrv_snapshot_create(bs
, sn
);
1140 error_setg_errno(errp
, -ret1
,
1141 "Failed to create snapshot '%s' on device '%s'",
1146 /* 4. succeed, mark a snapshot is created */
1150 static void internal_snapshot_abort(BlkTransactionState
*common
)
1152 InternalSnapshotState
*state
=
1153 DO_UPCAST(InternalSnapshotState
, common
, common
);
1154 BlockDriverState
*bs
= state
->bs
;
1155 QEMUSnapshotInfo
*sn
= &state
->sn
;
1156 Error
*local_error
= NULL
;
1162 if (bdrv_snapshot_delete(bs
, sn
->id_str
, sn
->name
, &local_error
) < 0) {
1163 error_report("Failed to delete snapshot with id '%s' and name '%s' on "
1164 "device '%s' in abort: %s",
1167 bdrv_get_device_name(bs
),
1168 error_get_pretty(local_error
));
1169 error_free(local_error
);
1173 /* external snapshot private data */
1174 typedef struct ExternalSnapshotState
{
1175 BlkTransactionState common
;
1176 BlockDriverState
*old_bs
;
1177 BlockDriverState
*new_bs
;
1178 } ExternalSnapshotState
;
1180 static void external_snapshot_prepare(BlkTransactionState
*common
,
1185 Error
*local_err
= NULL
;
1187 const char *new_image_file
;
1188 const char *format
= "qcow2";
1189 enum NewImageMode mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1190 ExternalSnapshotState
*state
=
1191 DO_UPCAST(ExternalSnapshotState
, common
, common
);
1192 TransactionAction
*action
= common
->action
;
1194 /* get parameters */
1195 g_assert(action
->kind
== TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
);
1197 device
= action
->blockdev_snapshot_sync
->device
;
1198 new_image_file
= action
->blockdev_snapshot_sync
->snapshot_file
;
1199 if (action
->blockdev_snapshot_sync
->has_format
) {
1200 format
= action
->blockdev_snapshot_sync
->format
;
1202 if (action
->blockdev_snapshot_sync
->has_mode
) {
1203 mode
= action
->blockdev_snapshot_sync
->mode
;
1206 /* start processing */
1207 drv
= bdrv_find_format(format
);
1209 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
1213 state
->old_bs
= bdrv_find(device
);
1214 if (!state
->old_bs
) {
1215 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1219 if (!bdrv_is_inserted(state
->old_bs
)) {
1220 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1224 if (bdrv_in_use(state
->old_bs
)) {
1225 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
1229 if (!bdrv_is_read_only(state
->old_bs
)) {
1230 if (bdrv_flush(state
->old_bs
)) {
1231 error_set(errp
, QERR_IO_ERROR
);
1236 if (bdrv_check_ext_snapshot(state
->old_bs
) != EXT_SNAPSHOT_ALLOWED
) {
1237 error_set(errp
, QERR_FEATURE_DISABLED
, "snapshot");
1241 flags
= state
->old_bs
->open_flags
;
1243 /* create new image w/backing file */
1244 if (mode
!= NEW_IMAGE_MODE_EXISTING
) {
1245 bdrv_img_create(new_image_file
, format
,
1246 state
->old_bs
->filename
,
1247 state
->old_bs
->drv
->format_name
,
1248 NULL
, -1, flags
, &local_err
, false);
1249 if (error_is_set(&local_err
)) {
1250 error_propagate(errp
, local_err
);
1255 /* We will manually add the backing_hd field to the bs later */
1256 state
->new_bs
= bdrv_new("");
1257 /* TODO Inherit bs->options or only take explicit options with an
1258 * extended QMP command? */
1259 ret
= bdrv_open(state
->new_bs
, new_image_file
, NULL
,
1260 flags
| BDRV_O_NO_BACKING
, drv
, &local_err
);
1262 error_propagate(errp
, local_err
);
1266 static void external_snapshot_commit(BlkTransactionState
*common
)
1268 ExternalSnapshotState
*state
=
1269 DO_UPCAST(ExternalSnapshotState
, common
, common
);
1271 /* This removes our old bs and adds the new bs */
1272 bdrv_append(state
->new_bs
, state
->old_bs
);
1273 /* We don't need (or want) to use the transactional
1274 * bdrv_reopen_multiple() across all the entries at once, because we
1275 * don't want to abort all of them if one of them fails the reopen */
1276 bdrv_reopen(state
->new_bs
, state
->new_bs
->open_flags
& ~BDRV_O_RDWR
,
1280 static void external_snapshot_abort(BlkTransactionState
*common
)
1282 ExternalSnapshotState
*state
=
1283 DO_UPCAST(ExternalSnapshotState
, common
, common
);
1284 if (state
->new_bs
) {
1285 bdrv_unref(state
->new_bs
);
1289 typedef struct DriveBackupState
{
1290 BlkTransactionState common
;
1291 BlockDriverState
*bs
;
1295 static void drive_backup_prepare(BlkTransactionState
*common
, Error
**errp
)
1297 DriveBackupState
*state
= DO_UPCAST(DriveBackupState
, common
, common
);
1298 DriveBackup
*backup
;
1299 Error
*local_err
= NULL
;
1301 assert(common
->action
->kind
== TRANSACTION_ACTION_KIND_DRIVE_BACKUP
);
1302 backup
= common
->action
->drive_backup
;
1304 qmp_drive_backup(backup
->device
, backup
->target
,
1305 backup
->has_format
, backup
->format
,
1307 backup
->has_mode
, backup
->mode
,
1308 backup
->has_speed
, backup
->speed
,
1309 backup
->has_on_source_error
, backup
->on_source_error
,
1310 backup
->has_on_target_error
, backup
->on_target_error
,
1312 if (error_is_set(&local_err
)) {
1313 error_propagate(errp
, local_err
);
1319 state
->bs
= bdrv_find(backup
->device
);
1320 state
->job
= state
->bs
->job
;
1323 static void drive_backup_abort(BlkTransactionState
*common
)
1325 DriveBackupState
*state
= DO_UPCAST(DriveBackupState
, common
, common
);
1326 BlockDriverState
*bs
= state
->bs
;
1328 /* Only cancel if it's the job we started */
1329 if (bs
&& bs
->job
&& bs
->job
== state
->job
) {
1330 block_job_cancel_sync(bs
->job
);
1334 static void abort_prepare(BlkTransactionState
*common
, Error
**errp
)
1336 error_setg(errp
, "Transaction aborted using Abort action");
1339 static void abort_commit(BlkTransactionState
*common
)
1341 g_assert_not_reached(); /* this action never succeeds */
1344 static const BdrvActionOps actions
[] = {
1345 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
] = {
1346 .instance_size
= sizeof(ExternalSnapshotState
),
1347 .prepare
= external_snapshot_prepare
,
1348 .commit
= external_snapshot_commit
,
1349 .abort
= external_snapshot_abort
,
1351 [TRANSACTION_ACTION_KIND_DRIVE_BACKUP
] = {
1352 .instance_size
= sizeof(DriveBackupState
),
1353 .prepare
= drive_backup_prepare
,
1354 .abort
= drive_backup_abort
,
1356 [TRANSACTION_ACTION_KIND_ABORT
] = {
1357 .instance_size
= sizeof(BlkTransactionState
),
1358 .prepare
= abort_prepare
,
1359 .commit
= abort_commit
,
1361 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC
] = {
1362 .instance_size
= sizeof(InternalSnapshotState
),
1363 .prepare
= internal_snapshot_prepare
,
1364 .abort
= internal_snapshot_abort
,
1369 * 'Atomic' group snapshots. The snapshots are taken as a set, and if any fail
1370 * then we do not pivot any of the devices in the group, and abandon the
1373 void qmp_transaction(TransactionActionList
*dev_list
, Error
**errp
)
1375 TransactionActionList
*dev_entry
= dev_list
;
1376 BlkTransactionState
*state
, *next
;
1377 Error
*local_err
= NULL
;
1379 QSIMPLEQ_HEAD(snap_bdrv_states
, BlkTransactionState
) snap_bdrv_states
;
1380 QSIMPLEQ_INIT(&snap_bdrv_states
);
1382 /* drain all i/o before any snapshots */
1385 /* We don't do anything in this loop that commits us to the snapshot */
1386 while (NULL
!= dev_entry
) {
1387 TransactionAction
*dev_info
= NULL
;
1388 const BdrvActionOps
*ops
;
1390 dev_info
= dev_entry
->value
;
1391 dev_entry
= dev_entry
->next
;
1393 assert(dev_info
->kind
< ARRAY_SIZE(actions
));
1395 ops
= &actions
[dev_info
->kind
];
1396 assert(ops
->instance_size
> 0);
1398 state
= g_malloc0(ops
->instance_size
);
1400 state
->action
= dev_info
;
1401 QSIMPLEQ_INSERT_TAIL(&snap_bdrv_states
, state
, entry
);
1403 state
->ops
->prepare(state
, &local_err
);
1404 if (error_is_set(&local_err
)) {
1405 error_propagate(errp
, local_err
);
1406 goto delete_and_fail
;
1410 QSIMPLEQ_FOREACH(state
, &snap_bdrv_states
, entry
) {
1411 if (state
->ops
->commit
) {
1412 state
->ops
->commit(state
);
1421 * failure, and it is all-or-none; abandon each new bs, and keep using
1422 * the original bs for all images
1424 QSIMPLEQ_FOREACH(state
, &snap_bdrv_states
, entry
) {
1425 if (state
->ops
->abort
) {
1426 state
->ops
->abort(state
);
1430 QSIMPLEQ_FOREACH_SAFE(state
, &snap_bdrv_states
, entry
, next
) {
1431 if (state
->ops
->clean
) {
1432 state
->ops
->clean(state
);
1439 static void eject_device(BlockDriverState
*bs
, int force
, Error
**errp
)
1441 if (bdrv_in_use(bs
)) {
1442 error_set(errp
, QERR_DEVICE_IN_USE
, bdrv_get_device_name(bs
));
1445 if (!bdrv_dev_has_removable_media(bs
)) {
1446 error_set(errp
, QERR_DEVICE_NOT_REMOVABLE
, bdrv_get_device_name(bs
));
1450 if (bdrv_dev_is_medium_locked(bs
) && !bdrv_dev_is_tray_open(bs
)) {
1451 bdrv_dev_eject_request(bs
, force
);
1453 error_set(errp
, QERR_DEVICE_LOCKED
, bdrv_get_device_name(bs
));
1461 void qmp_eject(const char *device
, bool has_force
, bool force
, Error
**errp
)
1463 BlockDriverState
*bs
;
1465 bs
= bdrv_find(device
);
1467 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1471 eject_device(bs
, force
, errp
);
1474 void qmp_block_passwd(const char *device
, const char *password
, Error
**errp
)
1476 BlockDriverState
*bs
;
1479 bs
= bdrv_find(device
);
1481 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1485 err
= bdrv_set_key(bs
, password
);
1486 if (err
== -EINVAL
) {
1487 error_set(errp
, QERR_DEVICE_NOT_ENCRYPTED
, bdrv_get_device_name(bs
));
1489 } else if (err
< 0) {
1490 error_set(errp
, QERR_INVALID_PASSWORD
);
1495 static void qmp_bdrv_open_encrypted(BlockDriverState
*bs
, const char *filename
,
1496 int bdrv_flags
, BlockDriver
*drv
,
1497 const char *password
, Error
**errp
)
1499 Error
*local_err
= NULL
;
1502 ret
= bdrv_open(bs
, filename
, NULL
, bdrv_flags
, drv
, &local_err
);
1504 error_propagate(errp
, local_err
);
1508 if (bdrv_key_required(bs
)) {
1510 if (bdrv_set_key(bs
, password
) < 0) {
1511 error_set(errp
, QERR_INVALID_PASSWORD
);
1514 error_set(errp
, QERR_DEVICE_ENCRYPTED
, bdrv_get_device_name(bs
),
1515 bdrv_get_encrypted_filename(bs
));
1517 } else if (password
) {
1518 error_set(errp
, QERR_DEVICE_NOT_ENCRYPTED
, bdrv_get_device_name(bs
));
1522 void qmp_change_blockdev(const char *device
, const char *filename
,
1523 bool has_format
, const char *format
, Error
**errp
)
1525 BlockDriverState
*bs
;
1526 BlockDriver
*drv
= NULL
;
1530 bs
= bdrv_find(device
);
1532 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1537 drv
= bdrv_find_whitelisted_format(format
, bs
->read_only
);
1539 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
1544 eject_device(bs
, 0, &err
);
1545 if (error_is_set(&err
)) {
1546 error_propagate(errp
, err
);
1550 bdrv_flags
= bdrv_is_read_only(bs
) ? 0 : BDRV_O_RDWR
;
1551 bdrv_flags
|= bdrv_is_snapshot(bs
) ? BDRV_O_SNAPSHOT
: 0;
1553 qmp_bdrv_open_encrypted(bs
, filename
, bdrv_flags
, drv
, NULL
, errp
);
1556 /* throttling disk I/O limits */
1557 void qmp_block_set_io_throttle(const char *device
, int64_t bps
, int64_t bps_rd
,
1564 bool has_bps_rd_max
,
1566 bool has_bps_wr_max
,
1570 bool has_iops_rd_max
,
1571 int64_t iops_rd_max
,
1572 bool has_iops_wr_max
,
1573 int64_t iops_wr_max
,
1575 int64_t iops_size
, Error
**errp
)
1578 BlockDriverState
*bs
;
1580 bs
= bdrv_find(device
);
1582 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1586 memset(&cfg
, 0, sizeof(cfg
));
1587 cfg
.buckets
[THROTTLE_BPS_TOTAL
].avg
= bps
;
1588 cfg
.buckets
[THROTTLE_BPS_READ
].avg
= bps_rd
;
1589 cfg
.buckets
[THROTTLE_BPS_WRITE
].avg
= bps_wr
;
1591 cfg
.buckets
[THROTTLE_OPS_TOTAL
].avg
= iops
;
1592 cfg
.buckets
[THROTTLE_OPS_READ
].avg
= iops_rd
;
1593 cfg
.buckets
[THROTTLE_OPS_WRITE
].avg
= iops_wr
;
1596 cfg
.buckets
[THROTTLE_BPS_TOTAL
].max
= bps_max
;
1598 if (has_bps_rd_max
) {
1599 cfg
.buckets
[THROTTLE_BPS_READ
].max
= bps_rd_max
;
1601 if (has_bps_wr_max
) {
1602 cfg
.buckets
[THROTTLE_BPS_WRITE
].max
= bps_wr_max
;
1605 cfg
.buckets
[THROTTLE_OPS_TOTAL
].max
= iops_max
;
1607 if (has_iops_rd_max
) {
1608 cfg
.buckets
[THROTTLE_OPS_READ
].max
= iops_rd_max
;
1610 if (has_iops_wr_max
) {
1611 cfg
.buckets
[THROTTLE_OPS_WRITE
].max
= iops_wr_max
;
1614 if (has_iops_size
) {
1615 cfg
.op_size
= iops_size
;
1618 if (!check_throttle_config(&cfg
, errp
)) {
1622 if (!bs
->io_limits_enabled
&& throttle_enabled(&cfg
)) {
1623 bdrv_io_limits_enable(bs
);
1624 } else if (bs
->io_limits_enabled
&& !throttle_enabled(&cfg
)) {
1625 bdrv_io_limits_disable(bs
);
1628 if (bs
->io_limits_enabled
) {
1629 bdrv_set_io_limits(bs
, &cfg
);
1633 int do_drive_del(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1635 const char *id
= qdict_get_str(qdict
, "id");
1636 BlockDriverState
*bs
;
1640 qerror_report(QERR_DEVICE_NOT_FOUND
, id
);
1643 if (bdrv_in_use(bs
)) {
1644 qerror_report(QERR_DEVICE_IN_USE
, id
);
1648 /* quiesce block driver; prevent further io */
1653 /* if we have a device attached to this BlockDriverState
1654 * then we need to make the drive anonymous until the device
1655 * can be removed. If this is a drive with no device backing
1656 * then we can just get rid of the block driver state right here.
1658 if (bdrv_get_attached_dev(bs
)) {
1661 /* Further I/O must not pause the guest */
1662 bdrv_set_on_error(bs
, BLOCKDEV_ON_ERROR_REPORT
,
1663 BLOCKDEV_ON_ERROR_REPORT
);
1665 drive_uninit(drive_get_by_blockdev(bs
));
1671 void qmp_block_resize(const char *device
, int64_t size
, Error
**errp
)
1673 BlockDriverState
*bs
;
1676 bs
= bdrv_find(device
);
1678 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1683 error_set(errp
, QERR_INVALID_PARAMETER_VALUE
, "size", "a >0 size");
1687 /* complete all in-flight operations before resizing the device */
1690 ret
= bdrv_truncate(bs
, size
);
1695 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1698 error_set(errp
, QERR_UNSUPPORTED
);
1701 error_set(errp
, QERR_DEVICE_IS_READ_ONLY
, device
);
1704 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
1707 error_setg_errno(errp
, -ret
, "Could not resize");
1712 static void block_job_cb(void *opaque
, int ret
)
1714 BlockDriverState
*bs
= opaque
;
1717 trace_block_job_cb(bs
, bs
->job
, ret
);
1720 obj
= qobject_from_block_job(bs
->job
);
1722 QDict
*dict
= qobject_to_qdict(obj
);
1723 qdict_put(dict
, "error", qstring_from_str(strerror(-ret
)));
1726 if (block_job_is_cancelled(bs
->job
)) {
1727 monitor_protocol_event(QEVENT_BLOCK_JOB_CANCELLED
, obj
);
1729 monitor_protocol_event(QEVENT_BLOCK_JOB_COMPLETED
, obj
);
1731 qobject_decref(obj
);
1733 bdrv_put_ref_bh_schedule(bs
);
1736 void qmp_block_stream(const char *device
, bool has_base
,
1737 const char *base
, bool has_speed
, int64_t speed
,
1738 bool has_on_error
, BlockdevOnError on_error
,
1741 BlockDriverState
*bs
;
1742 BlockDriverState
*base_bs
= NULL
;
1743 Error
*local_err
= NULL
;
1745 if (!has_on_error
) {
1746 on_error
= BLOCKDEV_ON_ERROR_REPORT
;
1749 bs
= bdrv_find(device
);
1751 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1756 base_bs
= bdrv_find_backing_image(bs
, base
);
1757 if (base_bs
== NULL
) {
1758 error_set(errp
, QERR_BASE_NOT_FOUND
, base
);
1763 stream_start(bs
, base_bs
, base
, has_speed
? speed
: 0,
1764 on_error
, block_job_cb
, bs
, &local_err
);
1765 if (error_is_set(&local_err
)) {
1766 error_propagate(errp
, local_err
);
1770 trace_qmp_block_stream(bs
, bs
->job
);
1773 void qmp_block_commit(const char *device
,
1774 bool has_base
, const char *base
, const char *top
,
1775 bool has_speed
, int64_t speed
,
1778 BlockDriverState
*bs
;
1779 BlockDriverState
*base_bs
, *top_bs
;
1780 Error
*local_err
= NULL
;
1781 /* This will be part of the QMP command, if/when the
1782 * BlockdevOnError change for blkmirror makes it in
1784 BlockdevOnError on_error
= BLOCKDEV_ON_ERROR_REPORT
;
1786 /* drain all i/o before commits */
1789 bs
= bdrv_find(device
);
1791 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1795 /* default top_bs is the active layer */
1799 if (strcmp(bs
->filename
, top
) != 0) {
1800 top_bs
= bdrv_find_backing_image(bs
, top
);
1804 if (top_bs
== NULL
) {
1805 error_setg(errp
, "Top image file %s not found", top
? top
: "NULL");
1809 if (has_base
&& base
) {
1810 base_bs
= bdrv_find_backing_image(top_bs
, base
);
1812 base_bs
= bdrv_find_base(top_bs
);
1815 if (base_bs
== NULL
) {
1816 error_set(errp
, QERR_BASE_NOT_FOUND
, base
? base
: "NULL");
1820 commit_start(bs
, base_bs
, top_bs
, speed
, on_error
, block_job_cb
, bs
,
1822 if (local_err
!= NULL
) {
1823 error_propagate(errp
, local_err
);
1828 void qmp_drive_backup(const char *device
, const char *target
,
1829 bool has_format
, const char *format
,
1830 enum MirrorSyncMode sync
,
1831 bool has_mode
, enum NewImageMode mode
,
1832 bool has_speed
, int64_t speed
,
1833 bool has_on_source_error
, BlockdevOnError on_source_error
,
1834 bool has_on_target_error
, BlockdevOnError on_target_error
,
1837 BlockDriverState
*bs
;
1838 BlockDriverState
*target_bs
;
1839 BlockDriverState
*source
= NULL
;
1840 BlockDriver
*drv
= NULL
;
1841 Error
*local_err
= NULL
;
1849 if (!has_on_source_error
) {
1850 on_source_error
= BLOCKDEV_ON_ERROR_REPORT
;
1852 if (!has_on_target_error
) {
1853 on_target_error
= BLOCKDEV_ON_ERROR_REPORT
;
1856 mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1859 bs
= bdrv_find(device
);
1861 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1865 if (!bdrv_is_inserted(bs
)) {
1866 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1871 format
= mode
== NEW_IMAGE_MODE_EXISTING
? NULL
: bs
->drv
->format_name
;
1874 drv
= bdrv_find_format(format
);
1876 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
1881 if (bdrv_in_use(bs
)) {
1882 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
1886 flags
= bs
->open_flags
| BDRV_O_RDWR
;
1888 /* See if we have a backing HD we can use to create our new image
1890 if (sync
== MIRROR_SYNC_MODE_TOP
) {
1891 source
= bs
->backing_hd
;
1893 sync
= MIRROR_SYNC_MODE_FULL
;
1896 if (sync
== MIRROR_SYNC_MODE_NONE
) {
1900 size
= bdrv_getlength(bs
);
1902 error_setg_errno(errp
, -size
, "bdrv_getlength failed");
1906 if (mode
!= NEW_IMAGE_MODE_EXISTING
) {
1907 assert(format
&& drv
);
1909 bdrv_img_create(target
, format
, source
->filename
,
1910 source
->drv
->format_name
, NULL
,
1911 size
, flags
, &local_err
, false);
1913 bdrv_img_create(target
, format
, NULL
, NULL
, NULL
,
1914 size
, flags
, &local_err
, false);
1918 if (error_is_set(&local_err
)) {
1919 error_propagate(errp
, local_err
);
1923 target_bs
= bdrv_new("");
1924 ret
= bdrv_open(target_bs
, target
, NULL
, flags
, drv
, &local_err
);
1926 bdrv_unref(target_bs
);
1927 error_propagate(errp
, local_err
);
1931 backup_start(bs
, target_bs
, speed
, sync
, on_source_error
, on_target_error
,
1932 block_job_cb
, bs
, &local_err
);
1933 if (local_err
!= NULL
) {
1934 bdrv_unref(target_bs
);
1935 error_propagate(errp
, local_err
);
1940 #define DEFAULT_MIRROR_BUF_SIZE (10 << 20)
1942 void qmp_drive_mirror(const char *device
, const char *target
,
1943 bool has_format
, const char *format
,
1944 enum MirrorSyncMode sync
,
1945 bool has_mode
, enum NewImageMode mode
,
1946 bool has_speed
, int64_t speed
,
1947 bool has_granularity
, uint32_t granularity
,
1948 bool has_buf_size
, int64_t buf_size
,
1949 bool has_on_source_error
, BlockdevOnError on_source_error
,
1950 bool has_on_target_error
, BlockdevOnError on_target_error
,
1953 BlockDriverState
*bs
;
1954 BlockDriverState
*source
, *target_bs
;
1955 BlockDriver
*drv
= NULL
;
1956 Error
*local_err
= NULL
;
1964 if (!has_on_source_error
) {
1965 on_source_error
= BLOCKDEV_ON_ERROR_REPORT
;
1967 if (!has_on_target_error
) {
1968 on_target_error
= BLOCKDEV_ON_ERROR_REPORT
;
1971 mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1973 if (!has_granularity
) {
1976 if (!has_buf_size
) {
1977 buf_size
= DEFAULT_MIRROR_BUF_SIZE
;
1980 if (granularity
!= 0 && (granularity
< 512 || granularity
> 1048576 * 64)) {
1981 error_set(errp
, QERR_INVALID_PARAMETER
, device
);
1984 if (granularity
& (granularity
- 1)) {
1985 error_set(errp
, QERR_INVALID_PARAMETER
, device
);
1989 bs
= bdrv_find(device
);
1991 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1995 if (!bdrv_is_inserted(bs
)) {
1996 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
2001 format
= mode
== NEW_IMAGE_MODE_EXISTING
? NULL
: bs
->drv
->format_name
;
2004 drv
= bdrv_find_format(format
);
2006 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
2011 if (bdrv_in_use(bs
)) {
2012 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
2016 flags
= bs
->open_flags
| BDRV_O_RDWR
;
2017 source
= bs
->backing_hd
;
2018 if (!source
&& sync
== MIRROR_SYNC_MODE_TOP
) {
2019 sync
= MIRROR_SYNC_MODE_FULL
;
2022 size
= bdrv_getlength(bs
);
2024 error_setg_errno(errp
, -size
, "bdrv_getlength failed");
2028 if (sync
== MIRROR_SYNC_MODE_FULL
&& mode
!= NEW_IMAGE_MODE_EXISTING
) {
2029 /* create new image w/o backing file */
2030 assert(format
&& drv
);
2031 bdrv_img_create(target
, format
,
2032 NULL
, NULL
, NULL
, size
, flags
, &local_err
, false);
2035 case NEW_IMAGE_MODE_EXISTING
:
2037 case NEW_IMAGE_MODE_ABSOLUTE_PATHS
:
2038 /* create new image with backing file */
2039 bdrv_img_create(target
, format
,
2041 source
->drv
->format_name
,
2042 NULL
, size
, flags
, &local_err
, false);
2049 if (error_is_set(&local_err
)) {
2050 error_propagate(errp
, local_err
);
2054 /* Mirroring takes care of copy-on-write using the source's backing
2057 target_bs
= bdrv_new("");
2058 ret
= bdrv_open(target_bs
, target
, NULL
, flags
| BDRV_O_NO_BACKING
, drv
,
2061 bdrv_unref(target_bs
);
2062 error_propagate(errp
, local_err
);
2066 mirror_start(bs
, target_bs
, speed
, granularity
, buf_size
, sync
,
2067 on_source_error
, on_target_error
,
2068 block_job_cb
, bs
, &local_err
);
2069 if (local_err
!= NULL
) {
2070 bdrv_unref(target_bs
);
2071 error_propagate(errp
, local_err
);
2076 static BlockJob
*find_block_job(const char *device
)
2078 BlockDriverState
*bs
;
2080 bs
= bdrv_find(device
);
2081 if (!bs
|| !bs
->job
) {
2087 void qmp_block_job_set_speed(const char *device
, int64_t speed
, Error
**errp
)
2089 BlockJob
*job
= find_block_job(device
);
2092 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
2096 block_job_set_speed(job
, speed
, errp
);
2099 void qmp_block_job_cancel(const char *device
,
2100 bool has_force
, bool force
, Error
**errp
)
2102 BlockJob
*job
= find_block_job(device
);
2109 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
2112 if (job
->paused
&& !force
) {
2113 error_set(errp
, QERR_BLOCK_JOB_PAUSED
, device
);
2117 trace_qmp_block_job_cancel(job
);
2118 block_job_cancel(job
);
2121 void qmp_block_job_pause(const char *device
, Error
**errp
)
2123 BlockJob
*job
= find_block_job(device
);
2126 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
2130 trace_qmp_block_job_pause(job
);
2131 block_job_pause(job
);
2134 void qmp_block_job_resume(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_resume(job
);
2144 block_job_resume(job
);
2147 void qmp_block_job_complete(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_complete(job
);
2157 block_job_complete(job
, errp
);
2160 void qmp_blockdev_add(BlockdevOptions
*options
, Error
**errp
)
2162 QmpOutputVisitor
*ov
= qmp_output_visitor_new();
2165 Error
*local_err
= NULL
;
2167 /* Require an ID in the top level */
2168 if (!options
->has_id
) {
2169 error_setg(errp
, "Block device needs an ID");
2173 /* TODO Sort it out in raw-posix and drive_init: Reject aio=native with
2174 * cache.direct=false instead of silently switching to aio=threads, except
2175 * if called from drive_init.
2177 * For now, simply forbidding the combination for all drivers will do. */
2178 if (options
->has_aio
&& options
->aio
== BLOCKDEV_AIO_OPTIONS_NATIVE
) {
2179 bool direct
= options
->cache
->has_direct
&& options
->cache
->direct
;
2180 if (!options
->has_cache
&& !direct
) {
2181 error_setg(errp
, "aio=native requires cache.direct=true");
2186 visit_type_BlockdevOptions(qmp_output_get_visitor(ov
),
2187 &options
, NULL
, &local_err
);
2188 if (error_is_set(&local_err
)) {
2189 error_propagate(errp
, local_err
);
2193 obj
= qmp_output_get_qobject(ov
);
2194 qdict
= qobject_to_qdict(obj
);
2196 qdict_flatten(qdict
);
2198 blockdev_init(qdict
, IF_NONE
, &local_err
);
2199 if (error_is_set(&local_err
)) {
2200 error_propagate(errp
, local_err
);
2205 qmp_output_visitor_cleanup(ov
);
2208 static void do_qmp_query_block_jobs_one(void *opaque
, BlockDriverState
*bs
)
2210 BlockJobInfoList
**prev
= opaque
;
2211 BlockJob
*job
= bs
->job
;
2214 BlockJobInfoList
*elem
= g_new0(BlockJobInfoList
, 1);
2215 elem
->value
= block_job_query(bs
->job
);
2216 (*prev
)->next
= elem
;
2221 BlockJobInfoList
*qmp_query_block_jobs(Error
**errp
)
2223 /* Dummy is a fake list element for holding the head pointer */
2224 BlockJobInfoList dummy
= {};
2225 BlockJobInfoList
*prev
= &dummy
;
2226 bdrv_iterate(do_qmp_query_block_jobs_one
, &prev
);
2230 QemuOptsList qemu_common_drive_opts
= {
2232 .head
= QTAILQ_HEAD_INITIALIZER(qemu_common_drive_opts
.head
),
2236 .type
= QEMU_OPT_BOOL
,
2237 .help
= "enable/disable snapshot mode",
2240 .type
= QEMU_OPT_STRING
,
2241 .help
= "disk image",
2244 .type
= QEMU_OPT_STRING
,
2245 .help
= "discard operation (ignore/off, unmap/on)",
2247 .name
= "cache.writeback",
2248 .type
= QEMU_OPT_BOOL
,
2249 .help
= "enables writeback mode for any caches",
2251 .name
= "cache.direct",
2252 .type
= QEMU_OPT_BOOL
,
2253 .help
= "enables use of O_DIRECT (bypass the host page cache)",
2255 .name
= "cache.no-flush",
2256 .type
= QEMU_OPT_BOOL
,
2257 .help
= "ignore any flush requests for the device",
2260 .type
= QEMU_OPT_STRING
,
2261 .help
= "host AIO implementation (threads, native)",
2264 .type
= QEMU_OPT_STRING
,
2265 .help
= "disk format (raw, qcow2, ...)",
2268 .type
= QEMU_OPT_STRING
,
2269 .help
= "disk serial number",
2272 .type
= QEMU_OPT_STRING
,
2273 .help
= "read error action",
2276 .type
= QEMU_OPT_STRING
,
2277 .help
= "write error action",
2279 .name
= "read-only",
2280 .type
= QEMU_OPT_BOOL
,
2281 .help
= "open drive file as read-only",
2283 .name
= "throttling.iops-total",
2284 .type
= QEMU_OPT_NUMBER
,
2285 .help
= "limit total I/O operations per second",
2287 .name
= "throttling.iops-read",
2288 .type
= QEMU_OPT_NUMBER
,
2289 .help
= "limit read operations per second",
2291 .name
= "throttling.iops-write",
2292 .type
= QEMU_OPT_NUMBER
,
2293 .help
= "limit write operations per second",
2295 .name
= "throttling.bps-total",
2296 .type
= QEMU_OPT_NUMBER
,
2297 .help
= "limit total bytes per second",
2299 .name
= "throttling.bps-read",
2300 .type
= QEMU_OPT_NUMBER
,
2301 .help
= "limit read bytes per second",
2303 .name
= "throttling.bps-write",
2304 .type
= QEMU_OPT_NUMBER
,
2305 .help
= "limit write bytes per second",
2307 .name
= "throttling.iops-total-max",
2308 .type
= QEMU_OPT_NUMBER
,
2309 .help
= "I/O operations burst",
2311 .name
= "throttling.iops-read-max",
2312 .type
= QEMU_OPT_NUMBER
,
2313 .help
= "I/O operations read burst",
2315 .name
= "throttling.iops-write-max",
2316 .type
= QEMU_OPT_NUMBER
,
2317 .help
= "I/O operations write burst",
2319 .name
= "throttling.bps-total-max",
2320 .type
= QEMU_OPT_NUMBER
,
2321 .help
= "total bytes burst",
2323 .name
= "throttling.bps-read-max",
2324 .type
= QEMU_OPT_NUMBER
,
2325 .help
= "total bytes read burst",
2327 .name
= "throttling.bps-write-max",
2328 .type
= QEMU_OPT_NUMBER
,
2329 .help
= "total bytes write burst",
2331 .name
= "throttling.iops-size",
2332 .type
= QEMU_OPT_NUMBER
,
2333 .help
= "when limiting by iops max size of an I/O in bytes",
2335 .name
= "copy-on-read",
2336 .type
= QEMU_OPT_BOOL
,
2337 .help
= "copy read data from backing file into image file",
2339 { /* end of list */ }
2343 QemuOptsList qemu_drive_opts
= {
2345 .head
= QTAILQ_HEAD_INITIALIZER(qemu_drive_opts
.head
),
2348 * no elements => accept any params
2349 * validation will happen later
2351 { /* end of list */ }