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.
10 #include "sysemu/blockdev.h"
11 #include "hw/block-common.h"
12 #include "block/blockjob.h"
13 #include "monitor/monitor.h"
14 #include "qapi/qmp/qerror.h"
15 #include "qemu/option.h"
16 #include "qemu/config-file.h"
17 #include "qapi/qmp/types.h"
18 #include "sysemu/sysemu.h"
19 #include "block/block_int.h"
20 #include "qmp-commands.h"
22 #include "sysemu/arch_init.h"
24 static QTAILQ_HEAD(drivelist
, DriveInfo
) drives
= QTAILQ_HEAD_INITIALIZER(drives
);
26 static const char *const if_name
[IF_COUNT
] = {
30 [IF_FLOPPY
] = "floppy",
31 [IF_PFLASH
] = "pflash",
34 [IF_VIRTIO
] = "virtio",
38 static const int if_max_devs
[IF_COUNT
] = {
40 * Do not change these numbers! They govern how drive option
41 * index maps to unit and bus. That mapping is ABI.
43 * All controllers used to imlement if=T drives need to support
44 * if_max_devs[T] units, for any T with if_max_devs[T] != 0.
45 * Otherwise, some index values map to "impossible" bus, unit
48 * For instance, if you change [IF_SCSI] to 255, -drive
49 * if=scsi,index=12 no longer means bus=1,unit=5, but
50 * bus=0,unit=12. With an lsi53c895a controller (7 units max),
51 * the drive can't be set up. Regression.
58 * We automatically delete the drive when a device using it gets
59 * unplugged. Questionable feature, but we can't just drop it.
60 * Device models call blockdev_mark_auto_del() to schedule the
61 * automatic deletion, and generic qdev code calls blockdev_auto_del()
62 * when deletion is actually safe.
64 void blockdev_mark_auto_del(BlockDriverState
*bs
)
66 DriveInfo
*dinfo
= drive_get_by_blockdev(bs
);
69 block_job_cancel(bs
->job
);
76 void blockdev_auto_del(BlockDriverState
*bs
)
78 DriveInfo
*dinfo
= drive_get_by_blockdev(bs
);
80 if (dinfo
&& dinfo
->auto_del
) {
85 static int drive_index_to_bus_id(BlockInterfaceType type
, int index
)
87 int max_devs
= if_max_devs
[type
];
88 return max_devs
? index
/ max_devs
: 0;
91 static int drive_index_to_unit_id(BlockInterfaceType type
, int index
)
93 int max_devs
= if_max_devs
[type
];
94 return max_devs
? index
% max_devs
: index
;
97 QemuOpts
*drive_def(const char *optstr
)
99 return qemu_opts_parse(qemu_find_opts("drive"), optstr
, 0);
102 QemuOpts
*drive_add(BlockInterfaceType type
, int index
, const char *file
,
108 opts
= drive_def(optstr
);
112 if (type
!= IF_DEFAULT
) {
113 qemu_opt_set(opts
, "if", if_name
[type
]);
116 snprintf(buf
, sizeof(buf
), "%d", index
);
117 qemu_opt_set(opts
, "index", buf
);
120 qemu_opt_set(opts
, "file", file
);
124 DriveInfo
*drive_get(BlockInterfaceType type
, int bus
, int unit
)
128 /* seek interface, bus and unit */
130 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
131 if (dinfo
->type
== type
&&
140 DriveInfo
*drive_get_by_index(BlockInterfaceType type
, int index
)
142 return drive_get(type
,
143 drive_index_to_bus_id(type
, index
),
144 drive_index_to_unit_id(type
, index
));
147 int drive_get_max_bus(BlockInterfaceType type
)
153 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
154 if(dinfo
->type
== type
&&
155 dinfo
->bus
> max_bus
)
156 max_bus
= dinfo
->bus
;
161 /* Get a block device. This should only be used for single-drive devices
162 (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the
164 DriveInfo
*drive_get_next(BlockInterfaceType type
)
166 static int next_block_unit
[IF_COUNT
];
168 return drive_get(type
, 0, next_block_unit
[type
]++);
171 DriveInfo
*drive_get_by_blockdev(BlockDriverState
*bs
)
175 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
176 if (dinfo
->bdrv
== bs
) {
183 static void bdrv_format_print(void *opaque
, const char *name
)
185 error_printf(" %s", name
);
188 static void drive_uninit(DriveInfo
*dinfo
)
190 qemu_opts_del(dinfo
->opts
);
191 bdrv_delete(dinfo
->bdrv
);
193 QTAILQ_REMOVE(&drives
, dinfo
, next
);
197 void drive_put_ref(DriveInfo
*dinfo
)
199 assert(dinfo
->refcount
);
200 if (--dinfo
->refcount
== 0) {
205 void drive_get_ref(DriveInfo
*dinfo
)
215 static void drive_put_ref_bh(void *opaque
)
217 DrivePutRefBH
*s
= opaque
;
219 drive_put_ref(s
->dinfo
);
220 qemu_bh_delete(s
->bh
);
225 * Release a drive reference in a BH
227 * It is not possible to use drive_put_ref() from a callback function when the
228 * callers still need the drive. In such cases we schedule a BH to release the
231 static void drive_put_ref_bh_schedule(DriveInfo
*dinfo
)
235 s
= g_new(DrivePutRefBH
, 1);
236 s
->bh
= qemu_bh_new(drive_put_ref_bh
, s
);
238 qemu_bh_schedule(s
->bh
);
241 static int parse_block_error_action(const char *buf
, bool is_read
)
243 if (!strcmp(buf
, "ignore")) {
244 return BLOCKDEV_ON_ERROR_IGNORE
;
245 } else if (!is_read
&& !strcmp(buf
, "enospc")) {
246 return BLOCKDEV_ON_ERROR_ENOSPC
;
247 } else if (!strcmp(buf
, "stop")) {
248 return BLOCKDEV_ON_ERROR_STOP
;
249 } else if (!strcmp(buf
, "report")) {
250 return BLOCKDEV_ON_ERROR_REPORT
;
252 error_report("'%s' invalid %s error action",
253 buf
, is_read
? "read" : "write");
258 static bool do_check_io_limits(BlockIOLimit
*io_limits
, Error
**errp
)
265 bps_flag
= (io_limits
->bps
[BLOCK_IO_LIMIT_TOTAL
] != 0)
266 && ((io_limits
->bps
[BLOCK_IO_LIMIT_READ
] != 0)
267 || (io_limits
->bps
[BLOCK_IO_LIMIT_WRITE
] != 0));
268 iops_flag
= (io_limits
->iops
[BLOCK_IO_LIMIT_TOTAL
] != 0)
269 && ((io_limits
->iops
[BLOCK_IO_LIMIT_READ
] != 0)
270 || (io_limits
->iops
[BLOCK_IO_LIMIT_WRITE
] != 0));
271 if (bps_flag
|| iops_flag
) {
272 error_setg(errp
, "bps(iops) and bps_rd/bps_wr(iops_rd/iops_wr) "
273 "cannot be used at the same time");
277 if (io_limits
->bps
[BLOCK_IO_LIMIT_TOTAL
] < 0 ||
278 io_limits
->bps
[BLOCK_IO_LIMIT_WRITE
] < 0 ||
279 io_limits
->bps
[BLOCK_IO_LIMIT_READ
] < 0 ||
280 io_limits
->iops
[BLOCK_IO_LIMIT_TOTAL
] < 0 ||
281 io_limits
->iops
[BLOCK_IO_LIMIT_WRITE
] < 0 ||
282 io_limits
->iops
[BLOCK_IO_LIMIT_READ
] < 0) {
283 error_setg(errp
, "bps and iops values must be 0 or greater");
290 DriveInfo
*drive_init(QemuOpts
*opts
, BlockInterfaceType block_default_type
)
293 const char *file
= NULL
;
295 const char *mediastr
= "";
296 BlockInterfaceType type
;
297 enum { MEDIA_DISK
, MEDIA_CDROM
} media
;
299 int cyls
, heads
, secs
, translation
;
300 BlockDriver
*drv
= NULL
;
305 int on_read_error
, on_write_error
;
308 BlockIOLimit io_limits
;
314 translation
= BIOS_ATA_TRANSLATION_AUTO
;
317 /* extract parameters */
318 bus_id
= qemu_opt_get_number(opts
, "bus", 0);
319 unit_id
= qemu_opt_get_number(opts
, "unit", -1);
320 index
= qemu_opt_get_number(opts
, "index", -1);
322 cyls
= qemu_opt_get_number(opts
, "cyls", 0);
323 heads
= qemu_opt_get_number(opts
, "heads", 0);
324 secs
= qemu_opt_get_number(opts
, "secs", 0);
326 snapshot
= qemu_opt_get_bool(opts
, "snapshot", 0);
327 ro
= qemu_opt_get_bool(opts
, "readonly", 0);
328 copy_on_read
= qemu_opt_get_bool(opts
, "copy-on-read", false);
330 file
= qemu_opt_get(opts
, "file");
331 serial
= qemu_opt_get(opts
, "serial");
333 if ((buf
= qemu_opt_get(opts
, "if")) != NULL
) {
334 for (type
= 0; type
< IF_COUNT
&& strcmp(buf
, if_name
[type
]); type
++)
336 if (type
== IF_COUNT
) {
337 error_report("unsupported bus type '%s'", buf
);
341 type
= block_default_type
;
344 max_devs
= if_max_devs
[type
];
346 if (cyls
|| heads
|| secs
) {
348 error_report("invalid physical cyls number");
352 error_report("invalid physical heads number");
356 error_report("invalid physical secs number");
361 if ((buf
= qemu_opt_get(opts
, "trans")) != NULL
) {
363 error_report("'%s' trans must be used with cyls, heads and secs",
367 if (!strcmp(buf
, "none"))
368 translation
= BIOS_ATA_TRANSLATION_NONE
;
369 else if (!strcmp(buf
, "lba"))
370 translation
= BIOS_ATA_TRANSLATION_LBA
;
371 else if (!strcmp(buf
, "auto"))
372 translation
= BIOS_ATA_TRANSLATION_AUTO
;
374 error_report("'%s' invalid translation type", buf
);
379 if ((buf
= qemu_opt_get(opts
, "media")) != NULL
) {
380 if (!strcmp(buf
, "disk")) {
382 } else if (!strcmp(buf
, "cdrom")) {
383 if (cyls
|| secs
|| heads
) {
384 error_report("CHS can't be set with media=%s", buf
);
389 error_report("'%s' invalid media", buf
);
394 if ((buf
= qemu_opt_get(opts
, "discard")) != NULL
) {
395 if (bdrv_parse_discard_flags(buf
, &bdrv_flags
) != 0) {
396 error_report("invalid discard option");
401 bdrv_flags
|= BDRV_O_CACHE_WB
;
402 if ((buf
= qemu_opt_get(opts
, "cache")) != NULL
) {
403 if (bdrv_parse_cache_flags(buf
, &bdrv_flags
) != 0) {
404 error_report("invalid cache option");
409 #ifdef CONFIG_LINUX_AIO
410 if ((buf
= qemu_opt_get(opts
, "aio")) != NULL
) {
411 if (!strcmp(buf
, "native")) {
412 bdrv_flags
|= BDRV_O_NATIVE_AIO
;
413 } else if (!strcmp(buf
, "threads")) {
414 /* this is the default */
416 error_report("invalid aio option");
422 if ((buf
= qemu_opt_get(opts
, "format")) != NULL
) {
423 if (is_help_option(buf
)) {
424 error_printf("Supported formats:");
425 bdrv_iterate_format(bdrv_format_print
, NULL
);
429 drv
= bdrv_find_whitelisted_format(buf
);
431 error_report("'%s' invalid format", buf
);
436 /* disk I/O throttling */
437 io_limits
.bps
[BLOCK_IO_LIMIT_TOTAL
] =
438 qemu_opt_get_number(opts
, "bps", 0);
439 io_limits
.bps
[BLOCK_IO_LIMIT_READ
] =
440 qemu_opt_get_number(opts
, "bps_rd", 0);
441 io_limits
.bps
[BLOCK_IO_LIMIT_WRITE
] =
442 qemu_opt_get_number(opts
, "bps_wr", 0);
443 io_limits
.iops
[BLOCK_IO_LIMIT_TOTAL
] =
444 qemu_opt_get_number(opts
, "iops", 0);
445 io_limits
.iops
[BLOCK_IO_LIMIT_READ
] =
446 qemu_opt_get_number(opts
, "iops_rd", 0);
447 io_limits
.iops
[BLOCK_IO_LIMIT_WRITE
] =
448 qemu_opt_get_number(opts
, "iops_wr", 0);
450 if (!do_check_io_limits(&io_limits
, &error
)) {
451 error_report("%s", error_get_pretty(error
));
456 if (qemu_opt_get(opts
, "boot") != NULL
) {
457 fprintf(stderr
, "qemu-kvm: boot=on|off is deprecated and will be "
458 "ignored. Future versions will reject this parameter. Please "
459 "update your scripts.\n");
462 on_write_error
= BLOCKDEV_ON_ERROR_ENOSPC
;
463 if ((buf
= qemu_opt_get(opts
, "werror")) != NULL
) {
464 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
&& type
!= IF_NONE
) {
465 error_report("werror is not supported by this bus type");
469 on_write_error
= parse_block_error_action(buf
, 0);
470 if (on_write_error
< 0) {
475 on_read_error
= BLOCKDEV_ON_ERROR_REPORT
;
476 if ((buf
= qemu_opt_get(opts
, "rerror")) != NULL
) {
477 if (type
!= IF_IDE
&& type
!= IF_VIRTIO
&& type
!= IF_SCSI
&& type
!= IF_NONE
) {
478 error_report("rerror is not supported by this bus type");
482 on_read_error
= parse_block_error_action(buf
, 1);
483 if (on_read_error
< 0) {
488 if ((devaddr
= qemu_opt_get(opts
, "addr")) != NULL
) {
489 if (type
!= IF_VIRTIO
) {
490 error_report("addr is not supported by this bus type");
495 /* compute bus and unit according index */
498 if (bus_id
!= 0 || unit_id
!= -1) {
499 error_report("index cannot be used with bus and unit");
502 bus_id
= drive_index_to_bus_id(type
, index
);
503 unit_id
= drive_index_to_unit_id(type
, index
);
506 /* if user doesn't specify a unit_id,
507 * try to find the first free
512 while (drive_get(type
, bus_id
, unit_id
) != NULL
) {
514 if (max_devs
&& unit_id
>= max_devs
) {
523 if (max_devs
&& unit_id
>= max_devs
) {
524 error_report("unit %d too big (max is %d)",
525 unit_id
, max_devs
- 1);
530 * catch multiple definitions
533 if (drive_get(type
, bus_id
, unit_id
) != NULL
) {
534 error_report("drive with bus=%d, unit=%d (index=%d) exists",
535 bus_id
, unit_id
, index
);
541 dinfo
= g_malloc0(sizeof(*dinfo
));
542 if ((buf
= qemu_opts_id(opts
)) != NULL
) {
543 dinfo
->id
= g_strdup(buf
);
545 /* no id supplied -> create one */
546 dinfo
->id
= g_malloc0(32);
547 if (type
== IF_IDE
|| type
== IF_SCSI
)
548 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
550 snprintf(dinfo
->id
, 32, "%s%i%s%i",
551 if_name
[type
], bus_id
, mediastr
, unit_id
);
553 snprintf(dinfo
->id
, 32, "%s%s%i",
554 if_name
[type
], mediastr
, unit_id
);
556 dinfo
->bdrv
= bdrv_new(dinfo
->id
);
557 dinfo
->bdrv
->open_flags
= snapshot
? BDRV_O_SNAPSHOT
: 0;
558 dinfo
->bdrv
->read_only
= ro
;
559 dinfo
->devaddr
= devaddr
;
562 dinfo
->unit
= unit_id
;
564 dinfo
->heads
= heads
;
566 dinfo
->trans
= translation
;
569 dinfo
->serial
= serial
;
570 QTAILQ_INSERT_TAIL(&drives
, dinfo
, next
);
572 bdrv_set_on_error(dinfo
->bdrv
, on_read_error
, on_write_error
);
574 /* disk I/O throttling */
575 bdrv_set_io_limits(dinfo
->bdrv
, &io_limits
);
582 dinfo
->media_cd
= media
== MEDIA_CDROM
;
590 /* add virtio block device */
591 opts
= qemu_opts_create_nofail(qemu_find_opts("device"));
592 if (arch_type
== QEMU_ARCH_S390X
) {
593 qemu_opt_set(opts
, "driver", "virtio-blk-s390");
595 qemu_opt_set(opts
, "driver", "virtio-blk-pci");
597 qemu_opt_set(opts
, "drive", dinfo
->id
);
599 qemu_opt_set(opts
, "addr", devaddr
);
604 if (!file
|| !*file
) {
608 /* always use cache=unsafe with snapshot */
609 bdrv_flags
&= ~BDRV_O_CACHE_MASK
;
610 bdrv_flags
|= (BDRV_O_SNAPSHOT
|BDRV_O_CACHE_WB
|BDRV_O_NO_FLUSH
);
614 bdrv_flags
|= BDRV_O_COPY_ON_READ
;
617 if (runstate_check(RUN_STATE_INMIGRATE
)) {
618 bdrv_flags
|= BDRV_O_INCOMING
;
621 if (media
== MEDIA_CDROM
) {
622 /* CDROM is fine for any interface, don't check. */
624 } else if (ro
== 1) {
625 if (type
!= IF_SCSI
&& type
!= IF_VIRTIO
&& type
!= IF_FLOPPY
&&
626 type
!= IF_NONE
&& type
!= IF_PFLASH
) {
627 error_report("readonly not supported by this bus type");
632 bdrv_flags
|= ro
? 0 : BDRV_O_RDWR
;
634 if (ro
&& copy_on_read
) {
635 error_report("warning: disabling copy_on_read on readonly drive");
638 ret
= bdrv_open(dinfo
->bdrv
, file
, bdrv_flags
, drv
);
640 if (ret
== -EMEDIUMTYPE
) {
641 error_report("could not open disk image %s: not in %s format",
642 file
, drv
->format_name
);
644 error_report("could not open disk image %s: %s",
645 file
, strerror(-ret
));
650 if (bdrv_key_required(dinfo
->bdrv
))
655 bdrv_delete(dinfo
->bdrv
);
657 QTAILQ_REMOVE(&drives
, dinfo
, next
);
662 void do_commit(Monitor
*mon
, const QDict
*qdict
)
664 const char *device
= qdict_get_str(qdict
, "device");
665 BlockDriverState
*bs
;
668 if (!strcmp(device
, "all")) {
669 ret
= bdrv_commit_all();
671 bs
= bdrv_find(device
);
673 monitor_printf(mon
, "Device '%s' not found\n", device
);
676 ret
= bdrv_commit(bs
);
679 monitor_printf(mon
, "'commit' error for '%s': %s\n", device
,
684 static void blockdev_do_action(int kind
, void *data
, Error
**errp
)
686 BlockdevAction action
;
687 BlockdevActionList list
;
691 list
.value
= &action
;
693 qmp_transaction(&list
, errp
);
696 void qmp_blockdev_snapshot_sync(const char *device
, const char *snapshot_file
,
697 bool has_format
, const char *format
,
698 bool has_mode
, enum NewImageMode mode
,
701 BlockdevSnapshot snapshot
= {
702 .device
= (char *) device
,
703 .snapshot_file
= (char *) snapshot_file
,
704 .has_format
= has_format
,
705 .format
= (char *) format
,
706 .has_mode
= has_mode
,
709 blockdev_do_action(BLOCKDEV_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
, &snapshot
,
714 /* New and old BlockDriverState structs for group snapshots */
715 typedef struct BlkTransactionStates
{
716 BlockDriverState
*old_bs
;
717 BlockDriverState
*new_bs
;
718 QSIMPLEQ_ENTRY(BlkTransactionStates
) entry
;
719 } BlkTransactionStates
;
722 * 'Atomic' group snapshots. The snapshots are taken as a set, and if any fail
723 * then we do not pivot any of the devices in the group, and abandon the
726 void qmp_transaction(BlockdevActionList
*dev_list
, Error
**errp
)
729 BlockdevActionList
*dev_entry
= dev_list
;
730 BlkTransactionStates
*states
, *next
;
731 Error
*local_err
= NULL
;
733 QSIMPLEQ_HEAD(snap_bdrv_states
, BlkTransactionStates
) snap_bdrv_states
;
734 QSIMPLEQ_INIT(&snap_bdrv_states
);
736 /* drain all i/o before any snapshots */
739 /* We don't do anything in this loop that commits us to the snapshot */
740 while (NULL
!= dev_entry
) {
741 BlockdevAction
*dev_info
= NULL
;
742 BlockDriver
*proto_drv
;
745 enum NewImageMode mode
;
746 const char *new_image_file
;
748 const char *format
= "qcow2";
750 dev_info
= dev_entry
->value
;
751 dev_entry
= dev_entry
->next
;
753 states
= g_malloc0(sizeof(BlkTransactionStates
));
754 QSIMPLEQ_INSERT_TAIL(&snap_bdrv_states
, states
, entry
);
756 switch (dev_info
->kind
) {
757 case BLOCKDEV_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
:
758 device
= dev_info
->blockdev_snapshot_sync
->device
;
759 if (!dev_info
->blockdev_snapshot_sync
->has_mode
) {
760 dev_info
->blockdev_snapshot_sync
->mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
762 new_image_file
= dev_info
->blockdev_snapshot_sync
->snapshot_file
;
763 if (dev_info
->blockdev_snapshot_sync
->has_format
) {
764 format
= dev_info
->blockdev_snapshot_sync
->format
;
766 mode
= dev_info
->blockdev_snapshot_sync
->mode
;
772 drv
= bdrv_find_format(format
);
774 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
775 goto delete_and_fail
;
778 states
->old_bs
= bdrv_find(device
);
779 if (!states
->old_bs
) {
780 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
781 goto delete_and_fail
;
784 if (!bdrv_is_inserted(states
->old_bs
)) {
785 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
786 goto delete_and_fail
;
789 if (bdrv_in_use(states
->old_bs
)) {
790 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
791 goto delete_and_fail
;
794 if (!bdrv_is_read_only(states
->old_bs
)) {
795 if (bdrv_flush(states
->old_bs
)) {
796 error_set(errp
, QERR_IO_ERROR
);
797 goto delete_and_fail
;
801 flags
= states
->old_bs
->open_flags
;
803 proto_drv
= bdrv_find_protocol(new_image_file
);
805 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
806 goto delete_and_fail
;
809 /* create new image w/backing file */
810 if (mode
!= NEW_IMAGE_MODE_EXISTING
) {
811 bdrv_img_create(new_image_file
, format
,
812 states
->old_bs
->filename
,
813 states
->old_bs
->drv
->format_name
,
814 NULL
, -1, flags
, &local_err
, false);
815 if (error_is_set(&local_err
)) {
816 error_propagate(errp
, local_err
);
817 goto delete_and_fail
;
821 /* We will manually add the backing_hd field to the bs later */
822 states
->new_bs
= bdrv_new("");
823 ret
= bdrv_open(states
->new_bs
, new_image_file
,
824 flags
| BDRV_O_NO_BACKING
, drv
);
826 error_set(errp
, QERR_OPEN_FILE_FAILED
, new_image_file
);
827 goto delete_and_fail
;
832 /* Now we are going to do the actual pivot. Everything up to this point
833 * is reversible, but we are committed at this point */
834 QSIMPLEQ_FOREACH(states
, &snap_bdrv_states
, entry
) {
835 /* This removes our old bs from the bdrv_states, and adds the new bs */
836 bdrv_append(states
->new_bs
, states
->old_bs
);
837 /* We don't need (or want) to use the transactional
838 * bdrv_reopen_multiple() across all the entries at once, because we
839 * don't want to abort all of them if one of them fails the reopen */
840 bdrv_reopen(states
->new_bs
, states
->new_bs
->open_flags
& ~BDRV_O_RDWR
,
849 * failure, and it is all-or-none; abandon each new bs, and keep using
850 * the original bs for all images
852 QSIMPLEQ_FOREACH(states
, &snap_bdrv_states
, entry
) {
853 if (states
->new_bs
) {
854 bdrv_delete(states
->new_bs
);
858 QSIMPLEQ_FOREACH_SAFE(states
, &snap_bdrv_states
, entry
, next
) {
864 static void eject_device(BlockDriverState
*bs
, int force
, Error
**errp
)
866 if (bdrv_in_use(bs
)) {
867 error_set(errp
, QERR_DEVICE_IN_USE
, bdrv_get_device_name(bs
));
870 if (!bdrv_dev_has_removable_media(bs
)) {
871 error_set(errp
, QERR_DEVICE_NOT_REMOVABLE
, bdrv_get_device_name(bs
));
875 if (bdrv_dev_is_medium_locked(bs
) && !bdrv_dev_is_tray_open(bs
)) {
876 bdrv_dev_eject_request(bs
, force
);
878 error_set(errp
, QERR_DEVICE_LOCKED
, bdrv_get_device_name(bs
));
886 void qmp_eject(const char *device
, bool has_force
, bool force
, Error
**errp
)
888 BlockDriverState
*bs
;
890 bs
= bdrv_find(device
);
892 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
896 eject_device(bs
, force
, errp
);
899 void qmp_block_passwd(const char *device
, const char *password
, Error
**errp
)
901 BlockDriverState
*bs
;
904 bs
= bdrv_find(device
);
906 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
910 err
= bdrv_set_key(bs
, password
);
911 if (err
== -EINVAL
) {
912 error_set(errp
, QERR_DEVICE_NOT_ENCRYPTED
, bdrv_get_device_name(bs
));
914 } else if (err
< 0) {
915 error_set(errp
, QERR_INVALID_PASSWORD
);
920 static void qmp_bdrv_open_encrypted(BlockDriverState
*bs
, const char *filename
,
921 int bdrv_flags
, BlockDriver
*drv
,
922 const char *password
, Error
**errp
)
924 if (bdrv_open(bs
, filename
, bdrv_flags
, drv
) < 0) {
925 error_set(errp
, QERR_OPEN_FILE_FAILED
, filename
);
929 if (bdrv_key_required(bs
)) {
931 if (bdrv_set_key(bs
, password
) < 0) {
932 error_set(errp
, QERR_INVALID_PASSWORD
);
935 error_set(errp
, QERR_DEVICE_ENCRYPTED
, bdrv_get_device_name(bs
),
936 bdrv_get_encrypted_filename(bs
));
938 } else if (password
) {
939 error_set(errp
, QERR_DEVICE_NOT_ENCRYPTED
, bdrv_get_device_name(bs
));
943 void qmp_change_blockdev(const char *device
, const char *filename
,
944 bool has_format
, const char *format
, Error
**errp
)
946 BlockDriverState
*bs
;
947 BlockDriver
*drv
= NULL
;
951 bs
= bdrv_find(device
);
953 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
958 drv
= bdrv_find_whitelisted_format(format
);
960 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
965 eject_device(bs
, 0, &err
);
966 if (error_is_set(&err
)) {
967 error_propagate(errp
, err
);
971 bdrv_flags
= bdrv_is_read_only(bs
) ? 0 : BDRV_O_RDWR
;
972 bdrv_flags
|= bdrv_is_snapshot(bs
) ? BDRV_O_SNAPSHOT
: 0;
974 qmp_bdrv_open_encrypted(bs
, filename
, bdrv_flags
, drv
, NULL
, errp
);
977 /* throttling disk I/O limits */
978 void qmp_block_set_io_throttle(const char *device
, int64_t bps
, int64_t bps_rd
,
979 int64_t bps_wr
, int64_t iops
, int64_t iops_rd
,
980 int64_t iops_wr
, Error
**errp
)
982 BlockIOLimit io_limits
;
983 BlockDriverState
*bs
;
985 bs
= bdrv_find(device
);
987 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
991 io_limits
.bps
[BLOCK_IO_LIMIT_TOTAL
] = bps
;
992 io_limits
.bps
[BLOCK_IO_LIMIT_READ
] = bps_rd
;
993 io_limits
.bps
[BLOCK_IO_LIMIT_WRITE
] = bps_wr
;
994 io_limits
.iops
[BLOCK_IO_LIMIT_TOTAL
]= iops
;
995 io_limits
.iops
[BLOCK_IO_LIMIT_READ
] = iops_rd
;
996 io_limits
.iops
[BLOCK_IO_LIMIT_WRITE
]= iops_wr
;
998 if (!do_check_io_limits(&io_limits
, errp
)) {
1002 bs
->io_limits
= io_limits
;
1003 bs
->slice_time
= BLOCK_IO_SLICE_TIME
;
1005 if (!bs
->io_limits_enabled
&& bdrv_io_limits_enabled(bs
)) {
1006 bdrv_io_limits_enable(bs
);
1007 } else if (bs
->io_limits_enabled
&& !bdrv_io_limits_enabled(bs
)) {
1008 bdrv_io_limits_disable(bs
);
1010 if (bs
->block_timer
) {
1011 qemu_mod_timer(bs
->block_timer
, qemu_get_clock_ns(vm_clock
));
1016 int do_drive_del(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
1018 const char *id
= qdict_get_str(qdict
, "id");
1019 BlockDriverState
*bs
;
1023 qerror_report(QERR_DEVICE_NOT_FOUND
, id
);
1026 if (bdrv_in_use(bs
)) {
1027 qerror_report(QERR_DEVICE_IN_USE
, id
);
1031 /* quiesce block driver; prevent further io */
1036 /* if we have a device attached to this BlockDriverState
1037 * then we need to make the drive anonymous until the device
1038 * can be removed. If this is a drive with no device backing
1039 * then we can just get rid of the block driver state right here.
1041 if (bdrv_get_attached_dev(bs
)) {
1044 drive_uninit(drive_get_by_blockdev(bs
));
1050 void qmp_block_resize(const char *device
, int64_t size
, Error
**errp
)
1052 BlockDriverState
*bs
;
1054 bs
= bdrv_find(device
);
1056 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1061 error_set(errp
, QERR_INVALID_PARAMETER_VALUE
, "size", "a >0 size");
1065 switch (bdrv_truncate(bs
, size
)) {
1069 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1072 error_set(errp
, QERR_UNSUPPORTED
);
1075 error_set(errp
, QERR_DEVICE_IS_READ_ONLY
, device
);
1078 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
1081 error_set(errp
, QERR_UNDEFINED_ERROR
);
1086 static void block_job_cb(void *opaque
, int ret
)
1088 BlockDriverState
*bs
= opaque
;
1091 trace_block_job_cb(bs
, bs
->job
, ret
);
1094 obj
= qobject_from_block_job(bs
->job
);
1096 QDict
*dict
= qobject_to_qdict(obj
);
1097 qdict_put(dict
, "error", qstring_from_str(strerror(-ret
)));
1100 if (block_job_is_cancelled(bs
->job
)) {
1101 monitor_protocol_event(QEVENT_BLOCK_JOB_CANCELLED
, obj
);
1103 monitor_protocol_event(QEVENT_BLOCK_JOB_COMPLETED
, obj
);
1105 qobject_decref(obj
);
1107 drive_put_ref_bh_schedule(drive_get_by_blockdev(bs
));
1110 void qmp_block_stream(const char *device
, bool has_base
,
1111 const char *base
, bool has_speed
, int64_t speed
,
1112 bool has_on_error
, BlockdevOnError on_error
,
1115 BlockDriverState
*bs
;
1116 BlockDriverState
*base_bs
= NULL
;
1117 Error
*local_err
= NULL
;
1119 if (!has_on_error
) {
1120 on_error
= BLOCKDEV_ON_ERROR_REPORT
;
1123 bs
= bdrv_find(device
);
1125 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1130 base_bs
= bdrv_find_backing_image(bs
, base
);
1131 if (base_bs
== NULL
) {
1132 error_set(errp
, QERR_BASE_NOT_FOUND
, base
);
1137 stream_start(bs
, base_bs
, base
, has_speed
? speed
: 0,
1138 on_error
, block_job_cb
, bs
, &local_err
);
1139 if (error_is_set(&local_err
)) {
1140 error_propagate(errp
, local_err
);
1144 /* Grab a reference so hotplug does not delete the BlockDriverState from
1147 drive_get_ref(drive_get_by_blockdev(bs
));
1149 trace_qmp_block_stream(bs
, bs
->job
);
1152 void qmp_block_commit(const char *device
,
1153 bool has_base
, const char *base
, const char *top
,
1154 bool has_speed
, int64_t speed
,
1157 BlockDriverState
*bs
;
1158 BlockDriverState
*base_bs
, *top_bs
;
1159 Error
*local_err
= NULL
;
1160 /* This will be part of the QMP command, if/when the
1161 * BlockdevOnError change for blkmirror makes it in
1163 BlockdevOnError on_error
= BLOCKDEV_ON_ERROR_REPORT
;
1165 /* drain all i/o before commits */
1168 bs
= bdrv_find(device
);
1170 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1174 /* default top_bs is the active layer */
1178 if (strcmp(bs
->filename
, top
) != 0) {
1179 top_bs
= bdrv_find_backing_image(bs
, top
);
1183 if (top_bs
== NULL
) {
1184 error_setg(errp
, "Top image file %s not found", top
? top
: "NULL");
1188 if (has_base
&& base
) {
1189 base_bs
= bdrv_find_backing_image(top_bs
, base
);
1191 base_bs
= bdrv_find_base(top_bs
);
1194 if (base_bs
== NULL
) {
1195 error_set(errp
, QERR_BASE_NOT_FOUND
, base
? base
: "NULL");
1199 commit_start(bs
, base_bs
, top_bs
, speed
, on_error
, block_job_cb
, bs
,
1201 if (local_err
!= NULL
) {
1202 error_propagate(errp
, local_err
);
1205 /* Grab a reference so hotplug does not delete the BlockDriverState from
1208 drive_get_ref(drive_get_by_blockdev(bs
));
1211 #define DEFAULT_MIRROR_BUF_SIZE (10 << 20)
1213 void qmp_drive_mirror(const char *device
, const char *target
,
1214 bool has_format
, const char *format
,
1215 enum MirrorSyncMode sync
,
1216 bool has_mode
, enum NewImageMode mode
,
1217 bool has_speed
, int64_t speed
,
1218 bool has_granularity
, uint32_t granularity
,
1219 bool has_buf_size
, int64_t buf_size
,
1220 bool has_on_source_error
, BlockdevOnError on_source_error
,
1221 bool has_on_target_error
, BlockdevOnError on_target_error
,
1224 BlockDriverState
*bs
;
1225 BlockDriverState
*source
, *target_bs
;
1226 BlockDriver
*proto_drv
;
1227 BlockDriver
*drv
= NULL
;
1228 Error
*local_err
= NULL
;
1236 if (!has_on_source_error
) {
1237 on_source_error
= BLOCKDEV_ON_ERROR_REPORT
;
1239 if (!has_on_target_error
) {
1240 on_target_error
= BLOCKDEV_ON_ERROR_REPORT
;
1243 mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
1245 if (!has_granularity
) {
1248 if (!has_buf_size
) {
1249 buf_size
= DEFAULT_MIRROR_BUF_SIZE
;
1252 if (granularity
!= 0 && (granularity
< 512 || granularity
> 1048576 * 64)) {
1253 error_set(errp
, QERR_INVALID_PARAMETER
, device
);
1256 if (granularity
& (granularity
- 1)) {
1257 error_set(errp
, QERR_INVALID_PARAMETER
, device
);
1261 bs
= bdrv_find(device
);
1263 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1267 if (!bdrv_is_inserted(bs
)) {
1268 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1273 format
= mode
== NEW_IMAGE_MODE_EXISTING
? NULL
: bs
->drv
->format_name
;
1276 drv
= bdrv_find_format(format
);
1278 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
1283 if (bdrv_in_use(bs
)) {
1284 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
1288 flags
= bs
->open_flags
| BDRV_O_RDWR
;
1289 source
= bs
->backing_hd
;
1290 if (!source
&& sync
== MIRROR_SYNC_MODE_TOP
) {
1291 sync
= MIRROR_SYNC_MODE_FULL
;
1294 proto_drv
= bdrv_find_protocol(target
);
1296 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
1300 bdrv_get_geometry(bs
, &size
);
1302 if (sync
== MIRROR_SYNC_MODE_FULL
&& mode
!= NEW_IMAGE_MODE_EXISTING
) {
1303 /* create new image w/o backing file */
1304 assert(format
&& drv
);
1305 bdrv_img_create(target
, format
,
1306 NULL
, NULL
, NULL
, size
, flags
, &local_err
, false);
1309 case NEW_IMAGE_MODE_EXISTING
:
1312 case NEW_IMAGE_MODE_ABSOLUTE_PATHS
:
1313 /* create new image with backing file */
1314 bdrv_img_create(target
, format
,
1316 source
->drv
->format_name
,
1317 NULL
, size
, flags
, &local_err
, false);
1324 if (error_is_set(&local_err
)) {
1325 error_propagate(errp
, local_err
);
1329 /* Mirroring takes care of copy-on-write using the source's backing
1332 target_bs
= bdrv_new("");
1333 ret
= bdrv_open(target_bs
, target
, flags
| BDRV_O_NO_BACKING
, drv
);
1336 bdrv_delete(target_bs
);
1337 error_set(errp
, QERR_OPEN_FILE_FAILED
, target
);
1341 mirror_start(bs
, target_bs
, speed
, granularity
, buf_size
, sync
,
1342 on_source_error
, on_target_error
,
1343 block_job_cb
, bs
, &local_err
);
1344 if (local_err
!= NULL
) {
1345 bdrv_delete(target_bs
);
1346 error_propagate(errp
, local_err
);
1350 /* Grab a reference so hotplug does not delete the BlockDriverState from
1353 drive_get_ref(drive_get_by_blockdev(bs
));
1356 static BlockJob
*find_block_job(const char *device
)
1358 BlockDriverState
*bs
;
1360 bs
= bdrv_find(device
);
1361 if (!bs
|| !bs
->job
) {
1367 void qmp_block_job_set_speed(const char *device
, int64_t speed
, Error
**errp
)
1369 BlockJob
*job
= find_block_job(device
);
1372 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
1376 block_job_set_speed(job
, speed
, errp
);
1379 void qmp_block_job_cancel(const char *device
,
1380 bool has_force
, bool force
, Error
**errp
)
1382 BlockJob
*job
= find_block_job(device
);
1389 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
1392 if (job
->paused
&& !force
) {
1393 error_set(errp
, QERR_BLOCK_JOB_PAUSED
, device
);
1397 trace_qmp_block_job_cancel(job
);
1398 block_job_cancel(job
);
1401 void qmp_block_job_pause(const char *device
, Error
**errp
)
1403 BlockJob
*job
= find_block_job(device
);
1406 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
1410 trace_qmp_block_job_pause(job
);
1411 block_job_pause(job
);
1414 void qmp_block_job_resume(const char *device
, Error
**errp
)
1416 BlockJob
*job
= find_block_job(device
);
1419 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
1423 trace_qmp_block_job_resume(job
);
1424 block_job_resume(job
);
1427 void qmp_block_job_complete(const char *device
, Error
**errp
)
1429 BlockJob
*job
= find_block_job(device
);
1432 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
1436 trace_qmp_block_job_complete(job
);
1437 block_job_complete(job
, errp
);
1440 static void do_qmp_query_block_jobs_one(void *opaque
, BlockDriverState
*bs
)
1442 BlockJobInfoList
**prev
= opaque
;
1443 BlockJob
*job
= bs
->job
;
1446 BlockJobInfoList
*elem
= g_new0(BlockJobInfoList
, 1);
1447 elem
->value
= block_job_query(bs
->job
);
1448 (*prev
)->next
= elem
;
1453 BlockJobInfoList
*qmp_query_block_jobs(Error
**errp
)
1455 /* Dummy is a fake list element for holding the head pointer */
1456 BlockJobInfoList dummy
= {};
1457 BlockJobInfoList
*prev
= &dummy
;
1458 bdrv_iterate(do_qmp_query_block_jobs_one
, &prev
);
1462 QemuOptsList qemu_drive_opts
= {
1464 .head
= QTAILQ_HEAD_INITIALIZER(qemu_drive_opts
.head
),
1468 .type
= QEMU_OPT_NUMBER
,
1469 .help
= "bus number",
1472 .type
= QEMU_OPT_NUMBER
,
1473 .help
= "unit number (i.e. lun for scsi)",
1476 .type
= QEMU_OPT_STRING
,
1477 .help
= "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
1480 .type
= QEMU_OPT_NUMBER
,
1481 .help
= "index number",
1484 .type
= QEMU_OPT_NUMBER
,
1485 .help
= "number of cylinders (ide disk geometry)",
1488 .type
= QEMU_OPT_NUMBER
,
1489 .help
= "number of heads (ide disk geometry)",
1492 .type
= QEMU_OPT_NUMBER
,
1493 .help
= "number of sectors (ide disk geometry)",
1496 .type
= QEMU_OPT_STRING
,
1497 .help
= "chs translation (auto, lba. none)",
1500 .type
= QEMU_OPT_STRING
,
1501 .help
= "media type (disk, cdrom)",
1504 .type
= QEMU_OPT_BOOL
,
1505 .help
= "enable/disable snapshot mode",
1508 .type
= QEMU_OPT_STRING
,
1509 .help
= "disk image",
1512 .type
= QEMU_OPT_STRING
,
1513 .help
= "discard operation (ignore/off, unmap/on)",
1516 .type
= QEMU_OPT_STRING
,
1517 .help
= "host cache usage (none, writeback, writethrough, "
1518 "directsync, unsafe)",
1521 .type
= QEMU_OPT_STRING
,
1522 .help
= "host AIO implementation (threads, native)",
1525 .type
= QEMU_OPT_STRING
,
1526 .help
= "disk format (raw, qcow2, ...)",
1529 .type
= QEMU_OPT_STRING
,
1530 .help
= "disk serial number",
1533 .type
= QEMU_OPT_STRING
,
1534 .help
= "read error action",
1537 .type
= QEMU_OPT_STRING
,
1538 .help
= "write error action",
1541 .type
= QEMU_OPT_STRING
,
1542 .help
= "pci address (virtio only)",
1545 .type
= QEMU_OPT_BOOL
,
1546 .help
= "open drive file as read-only",
1549 .type
= QEMU_OPT_NUMBER
,
1550 .help
= "limit total I/O operations per second",
1553 .type
= QEMU_OPT_NUMBER
,
1554 .help
= "limit read operations per second",
1557 .type
= QEMU_OPT_NUMBER
,
1558 .help
= "limit write operations per second",
1561 .type
= QEMU_OPT_NUMBER
,
1562 .help
= "limit total bytes per second",
1565 .type
= QEMU_OPT_NUMBER
,
1566 .help
= "limit read bytes per second",
1569 .type
= QEMU_OPT_NUMBER
,
1570 .help
= "limit write bytes per second",
1572 .name
= "copy-on-read",
1573 .type
= QEMU_OPT_BOOL
,
1574 .help
= "copy read data from backing file into image file",
1577 .type
= QEMU_OPT_BOOL
,
1578 .help
= "(deprecated, ignored)",
1580 { /* end of list */ }