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.
11 #include "hw/block-common.h"
15 #include "qemu-option.h"
16 #include "qemu-config.h"
17 #include "qemu-objects.h"
19 #include "block_int.h"
20 #include "qmp-commands.h"
22 #include "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
, int 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
)
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
) {
278 DriveInfo
*drive_init(QemuOpts
*opts
, int default_to_scsi
)
281 const char *file
= NULL
;
283 const char *mediastr
= "";
284 BlockInterfaceType type
;
285 enum { MEDIA_DISK
, MEDIA_CDROM
} media
;
287 int cyls
, heads
, secs
, translation
;
288 BlockDriver
*drv
= NULL
;
293 int on_read_error
, on_write_error
;
296 BlockIOLimit io_limits
;
301 translation
= BIOS_ATA_TRANSLATION_AUTO
;
304 /* extract parameters */
305 bus_id
= qemu_opt_get_number(opts
, "bus", 0);
306 unit_id
= qemu_opt_get_number(opts
, "unit", -1);
307 index
= qemu_opt_get_number(opts
, "index", -1);
309 cyls
= qemu_opt_get_number(opts
, "cyls", 0);
310 heads
= qemu_opt_get_number(opts
, "heads", 0);
311 secs
= qemu_opt_get_number(opts
, "secs", 0);
313 snapshot
= qemu_opt_get_bool(opts
, "snapshot", 0);
314 ro
= qemu_opt_get_bool(opts
, "readonly", 0);
315 copy_on_read
= qemu_opt_get_bool(opts
, "copy-on-read", false);
317 file
= qemu_opt_get(opts
, "file");
318 serial
= qemu_opt_get(opts
, "serial");
320 if ((buf
= qemu_opt_get(opts
, "if")) != NULL
) {
321 for (type
= 0; type
< IF_COUNT
&& strcmp(buf
, if_name
[type
]); type
++)
323 if (type
== IF_COUNT
) {
324 error_report("unsupported bus type '%s'", buf
);
328 type
= default_to_scsi
? IF_SCSI
: IF_IDE
;
331 max_devs
= if_max_devs
[type
];
333 if (cyls
|| heads
|| secs
) {
335 error_report("invalid physical cyls number");
339 error_report("invalid physical heads number");
343 error_report("invalid physical secs number");
348 if ((buf
= qemu_opt_get(opts
, "trans")) != NULL
) {
350 error_report("'%s' trans must be used with cyls, heads and secs",
354 if (!strcmp(buf
, "none"))
355 translation
= BIOS_ATA_TRANSLATION_NONE
;
356 else if (!strcmp(buf
, "lba"))
357 translation
= BIOS_ATA_TRANSLATION_LBA
;
358 else if (!strcmp(buf
, "auto"))
359 translation
= BIOS_ATA_TRANSLATION_AUTO
;
361 error_report("'%s' invalid translation type", buf
);
366 if ((buf
= qemu_opt_get(opts
, "media")) != NULL
) {
367 if (!strcmp(buf
, "disk")) {
369 } else if (!strcmp(buf
, "cdrom")) {
370 if (cyls
|| secs
|| heads
) {
371 error_report("CHS can't be set with media=%s", buf
);
376 error_report("'%s' invalid media", buf
);
381 bdrv_flags
|= BDRV_O_CACHE_WB
;
382 if ((buf
= qemu_opt_get(opts
, "cache")) != NULL
) {
383 if (bdrv_parse_cache_flags(buf
, &bdrv_flags
) != 0) {
384 error_report("invalid cache option");
389 #ifdef CONFIG_LINUX_AIO
390 if ((buf
= qemu_opt_get(opts
, "aio")) != NULL
) {
391 if (!strcmp(buf
, "native")) {
392 bdrv_flags
|= BDRV_O_NATIVE_AIO
;
393 } else if (!strcmp(buf
, "threads")) {
394 /* this is the default */
396 error_report("invalid aio option");
402 if ((buf
= qemu_opt_get(opts
, "format")) != NULL
) {
403 if (is_help_option(buf
)) {
404 error_printf("Supported formats:");
405 bdrv_iterate_format(bdrv_format_print
, NULL
);
409 drv
= bdrv_find_whitelisted_format(buf
);
411 error_report("'%s' invalid format", buf
);
416 /* disk I/O throttling */
417 io_limits
.bps
[BLOCK_IO_LIMIT_TOTAL
] =
418 qemu_opt_get_number(opts
, "bps", 0);
419 io_limits
.bps
[BLOCK_IO_LIMIT_READ
] =
420 qemu_opt_get_number(opts
, "bps_rd", 0);
421 io_limits
.bps
[BLOCK_IO_LIMIT_WRITE
] =
422 qemu_opt_get_number(opts
, "bps_wr", 0);
423 io_limits
.iops
[BLOCK_IO_LIMIT_TOTAL
] =
424 qemu_opt_get_number(opts
, "iops", 0);
425 io_limits
.iops
[BLOCK_IO_LIMIT_READ
] =
426 qemu_opt_get_number(opts
, "iops_rd", 0);
427 io_limits
.iops
[BLOCK_IO_LIMIT_WRITE
] =
428 qemu_opt_get_number(opts
, "iops_wr", 0);
430 if (!do_check_io_limits(&io_limits
)) {
431 error_report("bps(iops) and bps_rd/bps_wr(iops_rd/iops_wr) "
432 "cannot be used at the same time");
436 if (qemu_opt_get(opts
, "boot") != NULL
) {
437 fprintf(stderr
, "qemu-kvm: boot=on|off is deprecated and will be "
438 "ignored. Future versions will reject this parameter. Please "
439 "update your scripts.\n");
442 on_write_error
= BLOCKDEV_ON_ERROR_ENOSPC
;
443 if ((buf
= qemu_opt_get(opts
, "werror")) != NULL
) {
444 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
&& type
!= IF_NONE
) {
445 error_report("werror is not supported by this bus type");
449 on_write_error
= parse_block_error_action(buf
, 0);
450 if (on_write_error
< 0) {
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);
463 if (on_read_error
< 0) {
468 if ((devaddr
= qemu_opt_get(opts
, "addr")) != NULL
) {
469 if (type
!= IF_VIRTIO
) {
470 error_report("addr is not supported by this bus type");
475 /* compute bus and unit according index */
478 if (bus_id
!= 0 || unit_id
!= -1) {
479 error_report("index cannot be used with bus and unit");
482 bus_id
= drive_index_to_bus_id(type
, index
);
483 unit_id
= drive_index_to_unit_id(type
, index
);
486 /* if user doesn't specify a unit_id,
487 * try to find the first free
492 while (drive_get(type
, bus_id
, unit_id
) != NULL
) {
494 if (max_devs
&& unit_id
>= max_devs
) {
503 if (max_devs
&& unit_id
>= max_devs
) {
504 error_report("unit %d too big (max is %d)",
505 unit_id
, max_devs
- 1);
510 * catch multiple definitions
513 if (drive_get(type
, bus_id
, unit_id
) != NULL
) {
514 error_report("drive with bus=%d, unit=%d (index=%d) exists",
515 bus_id
, unit_id
, index
);
521 dinfo
= g_malloc0(sizeof(*dinfo
));
522 if ((buf
= qemu_opts_id(opts
)) != NULL
) {
523 dinfo
->id
= g_strdup(buf
);
525 /* no id supplied -> create one */
526 dinfo
->id
= g_malloc0(32);
527 if (type
== IF_IDE
|| type
== IF_SCSI
)
528 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
530 snprintf(dinfo
->id
, 32, "%s%i%s%i",
531 if_name
[type
], bus_id
, mediastr
, unit_id
);
533 snprintf(dinfo
->id
, 32, "%s%s%i",
534 if_name
[type
], mediastr
, unit_id
);
536 dinfo
->bdrv
= bdrv_new(dinfo
->id
);
537 dinfo
->bdrv
->open_flags
= snapshot
? BDRV_O_SNAPSHOT
: 0;
538 dinfo
->bdrv
->read_only
= ro
;
539 dinfo
->devaddr
= devaddr
;
542 dinfo
->unit
= unit_id
;
544 dinfo
->heads
= heads
;
546 dinfo
->trans
= translation
;
549 dinfo
->serial
= serial
;
550 QTAILQ_INSERT_TAIL(&drives
, dinfo
, next
);
552 bdrv_set_on_error(dinfo
->bdrv
, on_read_error
, on_write_error
);
554 /* disk I/O throttling */
555 bdrv_set_io_limits(dinfo
->bdrv
, &io_limits
);
562 dinfo
->media_cd
= media
== MEDIA_CDROM
;
570 /* add virtio block device */
571 opts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0, NULL
);
572 if (arch_type
== QEMU_ARCH_S390X
) {
573 qemu_opt_set(opts
, "driver", "virtio-blk-s390");
575 qemu_opt_set(opts
, "driver", "virtio-blk-pci");
577 qemu_opt_set(opts
, "drive", dinfo
->id
);
579 qemu_opt_set(opts
, "addr", devaddr
);
584 if (!file
|| !*file
) {
588 /* always use cache=unsafe with snapshot */
589 bdrv_flags
&= ~BDRV_O_CACHE_MASK
;
590 bdrv_flags
|= (BDRV_O_SNAPSHOT
|BDRV_O_CACHE_WB
|BDRV_O_NO_FLUSH
);
594 bdrv_flags
|= BDRV_O_COPY_ON_READ
;
597 if (runstate_check(RUN_STATE_INMIGRATE
)) {
598 bdrv_flags
|= BDRV_O_INCOMING
;
601 if (media
== MEDIA_CDROM
) {
602 /* CDROM is fine for any interface, don't check. */
604 } else if (ro
== 1) {
605 if (type
!= IF_SCSI
&& type
!= IF_VIRTIO
&& type
!= IF_FLOPPY
&&
606 type
!= IF_NONE
&& type
!= IF_PFLASH
) {
607 error_report("readonly not supported by this bus type");
612 bdrv_flags
|= ro
? 0 : BDRV_O_RDWR
;
614 if (ro
&& copy_on_read
) {
615 error_report("warning: disabling copy_on_read on readonly drive");
618 ret
= bdrv_open(dinfo
->bdrv
, file
, bdrv_flags
, drv
);
620 error_report("could not open disk image %s: %s",
621 file
, strerror(-ret
));
625 if (bdrv_key_required(dinfo
->bdrv
))
630 bdrv_delete(dinfo
->bdrv
);
632 QTAILQ_REMOVE(&drives
, dinfo
, next
);
637 void do_commit(Monitor
*mon
, const QDict
*qdict
)
639 const char *device
= qdict_get_str(qdict
, "device");
640 BlockDriverState
*bs
;
643 if (!strcmp(device
, "all")) {
644 ret
= bdrv_commit_all();
646 qerror_report(QERR_DEVICE_IN_USE
, device
);
650 bs
= bdrv_find(device
);
652 qerror_report(QERR_DEVICE_NOT_FOUND
, device
);
655 ret
= bdrv_commit(bs
);
657 qerror_report(QERR_DEVICE_IN_USE
, device
);
663 static void blockdev_do_action(int kind
, void *data
, Error
**errp
)
665 BlockdevAction action
;
666 BlockdevActionList list
;
670 list
.value
= &action
;
672 qmp_transaction(&list
, errp
);
675 void qmp_blockdev_snapshot_sync(const char *device
, const char *snapshot_file
,
676 bool has_format
, const char *format
,
677 bool has_mode
, enum NewImageMode mode
,
680 BlockdevSnapshot snapshot
= {
681 .device
= (char *) device
,
682 .snapshot_file
= (char *) snapshot_file
,
683 .has_format
= has_format
,
684 .format
= (char *) format
,
685 .has_mode
= has_mode
,
688 blockdev_do_action(BLOCKDEV_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
, &snapshot
,
693 /* New and old BlockDriverState structs for group snapshots */
694 typedef struct BlkTransactionStates
{
695 BlockDriverState
*old_bs
;
696 BlockDriverState
*new_bs
;
697 QSIMPLEQ_ENTRY(BlkTransactionStates
) entry
;
698 } BlkTransactionStates
;
701 * 'Atomic' group snapshots. The snapshots are taken as a set, and if any fail
702 * then we do not pivot any of the devices in the group, and abandon the
705 void qmp_transaction(BlockdevActionList
*dev_list
, Error
**errp
)
708 BlockdevActionList
*dev_entry
= dev_list
;
709 BlkTransactionStates
*states
, *next
;
711 QSIMPLEQ_HEAD(snap_bdrv_states
, BlkTransactionStates
) snap_bdrv_states
;
712 QSIMPLEQ_INIT(&snap_bdrv_states
);
714 /* drain all i/o before any snapshots */
717 /* We don't do anything in this loop that commits us to the snapshot */
718 while (NULL
!= dev_entry
) {
719 BlockdevAction
*dev_info
= NULL
;
720 BlockDriver
*proto_drv
;
723 enum NewImageMode mode
;
724 const char *new_image_file
;
726 const char *format
= "qcow2";
728 dev_info
= dev_entry
->value
;
729 dev_entry
= dev_entry
->next
;
731 states
= g_malloc0(sizeof(BlkTransactionStates
));
732 QSIMPLEQ_INSERT_TAIL(&snap_bdrv_states
, states
, entry
);
734 switch (dev_info
->kind
) {
735 case BLOCKDEV_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
:
736 device
= dev_info
->blockdev_snapshot_sync
->device
;
737 if (!dev_info
->blockdev_snapshot_sync
->has_mode
) {
738 dev_info
->blockdev_snapshot_sync
->mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
740 new_image_file
= dev_info
->blockdev_snapshot_sync
->snapshot_file
;
741 if (dev_info
->blockdev_snapshot_sync
->has_format
) {
742 format
= dev_info
->blockdev_snapshot_sync
->format
;
744 mode
= dev_info
->blockdev_snapshot_sync
->mode
;
750 drv
= bdrv_find_format(format
);
752 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
753 goto delete_and_fail
;
756 states
->old_bs
= bdrv_find(device
);
757 if (!states
->old_bs
) {
758 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
759 goto delete_and_fail
;
762 if (!bdrv_is_inserted(states
->old_bs
)) {
763 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
764 goto delete_and_fail
;
767 if (bdrv_in_use(states
->old_bs
)) {
768 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
769 goto delete_and_fail
;
772 if (!bdrv_is_read_only(states
->old_bs
)) {
773 if (bdrv_flush(states
->old_bs
)) {
774 error_set(errp
, QERR_IO_ERROR
);
775 goto delete_and_fail
;
779 flags
= states
->old_bs
->open_flags
;
781 proto_drv
= bdrv_find_protocol(new_image_file
);
783 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
784 goto delete_and_fail
;
787 /* create new image w/backing file */
788 if (mode
!= NEW_IMAGE_MODE_EXISTING
) {
789 ret
= bdrv_img_create(new_image_file
, format
,
790 states
->old_bs
->filename
,
791 states
->old_bs
->drv
->format_name
,
794 error_set(errp
, QERR_OPEN_FILE_FAILED
, new_image_file
);
795 goto delete_and_fail
;
799 /* We will manually add the backing_hd field to the bs later */
800 states
->new_bs
= bdrv_new("");
801 ret
= bdrv_open(states
->new_bs
, new_image_file
,
802 flags
| BDRV_O_NO_BACKING
, drv
);
804 error_set(errp
, QERR_OPEN_FILE_FAILED
, new_image_file
);
805 goto delete_and_fail
;
810 /* Now we are going to do the actual pivot. Everything up to this point
811 * is reversible, but we are committed at this point */
812 QSIMPLEQ_FOREACH(states
, &snap_bdrv_states
, entry
) {
813 /* This removes our old bs from the bdrv_states, and adds the new bs */
814 bdrv_append(states
->new_bs
, states
->old_bs
);
815 /* We don't need (or want) to use the transactional
816 * bdrv_reopen_multiple() across all the entries at once, because we
817 * don't want to abort all of them if one of them fails the reopen */
818 bdrv_reopen(states
->new_bs
, states
->new_bs
->open_flags
& ~BDRV_O_RDWR
,
827 * failure, and it is all-or-none; abandon each new bs, and keep using
828 * the original bs for all images
830 QSIMPLEQ_FOREACH(states
, &snap_bdrv_states
, entry
) {
831 if (states
->new_bs
) {
832 bdrv_delete(states
->new_bs
);
836 QSIMPLEQ_FOREACH_SAFE(states
, &snap_bdrv_states
, entry
, next
) {
843 static void eject_device(BlockDriverState
*bs
, int force
, Error
**errp
)
845 if (bdrv_in_use(bs
)) {
846 error_set(errp
, QERR_DEVICE_IN_USE
, bdrv_get_device_name(bs
));
849 if (!bdrv_dev_has_removable_media(bs
)) {
850 error_set(errp
, QERR_DEVICE_NOT_REMOVABLE
, bdrv_get_device_name(bs
));
854 if (bdrv_dev_is_medium_locked(bs
) && !bdrv_dev_is_tray_open(bs
)) {
855 bdrv_dev_eject_request(bs
, force
);
857 error_set(errp
, QERR_DEVICE_LOCKED
, bdrv_get_device_name(bs
));
865 void qmp_eject(const char *device
, bool has_force
, bool force
, Error
**errp
)
867 BlockDriverState
*bs
;
869 bs
= bdrv_find(device
);
871 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
875 eject_device(bs
, force
, errp
);
878 void qmp_block_passwd(const char *device
, const char *password
, Error
**errp
)
880 BlockDriverState
*bs
;
883 bs
= bdrv_find(device
);
885 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
889 err
= bdrv_set_key(bs
, password
);
890 if (err
== -EINVAL
) {
891 error_set(errp
, QERR_DEVICE_NOT_ENCRYPTED
, bdrv_get_device_name(bs
));
893 } else if (err
< 0) {
894 error_set(errp
, QERR_INVALID_PASSWORD
);
899 static void qmp_bdrv_open_encrypted(BlockDriverState
*bs
, const char *filename
,
900 int bdrv_flags
, BlockDriver
*drv
,
901 const char *password
, Error
**errp
)
903 if (bdrv_open(bs
, filename
, bdrv_flags
, drv
) < 0) {
904 error_set(errp
, QERR_OPEN_FILE_FAILED
, filename
);
908 if (bdrv_key_required(bs
)) {
910 if (bdrv_set_key(bs
, password
) < 0) {
911 error_set(errp
, QERR_INVALID_PASSWORD
);
914 error_set(errp
, QERR_DEVICE_ENCRYPTED
, bdrv_get_device_name(bs
),
915 bdrv_get_encrypted_filename(bs
));
917 } else if (password
) {
918 error_set(errp
, QERR_DEVICE_NOT_ENCRYPTED
, bdrv_get_device_name(bs
));
922 void qmp_change_blockdev(const char *device
, const char *filename
,
923 bool has_format
, const char *format
, Error
**errp
)
925 BlockDriverState
*bs
;
926 BlockDriver
*drv
= NULL
;
930 bs
= bdrv_find(device
);
932 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
937 drv
= bdrv_find_whitelisted_format(format
);
939 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
944 eject_device(bs
, 0, &err
);
945 if (error_is_set(&err
)) {
946 error_propagate(errp
, err
);
950 bdrv_flags
= bdrv_is_read_only(bs
) ? 0 : BDRV_O_RDWR
;
951 bdrv_flags
|= bdrv_is_snapshot(bs
) ? BDRV_O_SNAPSHOT
: 0;
953 qmp_bdrv_open_encrypted(bs
, filename
, bdrv_flags
, drv
, NULL
, errp
);
956 /* throttling disk I/O limits */
957 void qmp_block_set_io_throttle(const char *device
, int64_t bps
, int64_t bps_rd
,
958 int64_t bps_wr
, int64_t iops
, int64_t iops_rd
,
959 int64_t iops_wr
, Error
**errp
)
961 BlockIOLimit io_limits
;
962 BlockDriverState
*bs
;
964 bs
= bdrv_find(device
);
966 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
970 io_limits
.bps
[BLOCK_IO_LIMIT_TOTAL
] = bps
;
971 io_limits
.bps
[BLOCK_IO_LIMIT_READ
] = bps_rd
;
972 io_limits
.bps
[BLOCK_IO_LIMIT_WRITE
] = bps_wr
;
973 io_limits
.iops
[BLOCK_IO_LIMIT_TOTAL
]= iops
;
974 io_limits
.iops
[BLOCK_IO_LIMIT_READ
] = iops_rd
;
975 io_limits
.iops
[BLOCK_IO_LIMIT_WRITE
]= iops_wr
;
977 if (!do_check_io_limits(&io_limits
)) {
978 error_set(errp
, QERR_INVALID_PARAMETER_COMBINATION
);
982 bs
->io_limits
= io_limits
;
983 bs
->slice_time
= BLOCK_IO_SLICE_TIME
;
985 if (!bs
->io_limits_enabled
&& bdrv_io_limits_enabled(bs
)) {
986 bdrv_io_limits_enable(bs
);
987 } else if (bs
->io_limits_enabled
&& !bdrv_io_limits_enabled(bs
)) {
988 bdrv_io_limits_disable(bs
);
990 if (bs
->block_timer
) {
991 qemu_mod_timer(bs
->block_timer
, qemu_get_clock_ns(vm_clock
));
996 int do_drive_del(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
998 const char *id
= qdict_get_str(qdict
, "id");
999 BlockDriverState
*bs
;
1003 qerror_report(QERR_DEVICE_NOT_FOUND
, id
);
1006 if (bdrv_in_use(bs
)) {
1007 qerror_report(QERR_DEVICE_IN_USE
, id
);
1011 /* quiesce block driver; prevent further io */
1016 /* if we have a device attached to this BlockDriverState
1017 * then we need to make the drive anonymous until the device
1018 * can be removed. If this is a drive with no device backing
1019 * then we can just get rid of the block driver state right here.
1021 if (bdrv_get_attached_dev(bs
)) {
1024 drive_uninit(drive_get_by_blockdev(bs
));
1030 void qmp_block_resize(const char *device
, int64_t size
, Error
**errp
)
1032 BlockDriverState
*bs
;
1034 bs
= bdrv_find(device
);
1036 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1041 error_set(errp
, QERR_INVALID_PARAMETER_VALUE
, "size", "a >0 size");
1045 switch (bdrv_truncate(bs
, size
)) {
1049 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1052 error_set(errp
, QERR_UNSUPPORTED
);
1055 error_set(errp
, QERR_DEVICE_IS_READ_ONLY
, device
);
1058 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
1061 error_set(errp
, QERR_UNDEFINED_ERROR
);
1066 static QObject
*qobject_from_block_job(BlockJob
*job
)
1068 return qobject_from_jsonf("{ 'type': %s,"
1070 "'len': %" PRId64
","
1071 "'offset': %" PRId64
","
1072 "'speed': %" PRId64
" }",
1073 job
->job_type
->job_type
,
1074 bdrv_get_device_name(job
->bs
),
1080 static void block_job_cb(void *opaque
, int ret
)
1082 BlockDriverState
*bs
= opaque
;
1085 trace_block_job_cb(bs
, bs
->job
, ret
);
1088 obj
= qobject_from_block_job(bs
->job
);
1090 QDict
*dict
= qobject_to_qdict(obj
);
1091 qdict_put(dict
, "error", qstring_from_str(strerror(-ret
)));
1094 if (block_job_is_cancelled(bs
->job
)) {
1095 monitor_protocol_event(QEVENT_BLOCK_JOB_CANCELLED
, obj
);
1097 monitor_protocol_event(QEVENT_BLOCK_JOB_COMPLETED
, obj
);
1099 qobject_decref(obj
);
1101 drive_put_ref_bh_schedule(drive_get_by_blockdev(bs
));
1104 void qmp_block_stream(const char *device
, bool has_base
,
1105 const char *base
, bool has_speed
,
1106 int64_t speed
, Error
**errp
)
1108 BlockDriverState
*bs
;
1109 BlockDriverState
*base_bs
= NULL
;
1110 Error
*local_err
= NULL
;
1112 bs
= bdrv_find(device
);
1114 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1119 base_bs
= bdrv_find_backing_image(bs
, base
);
1120 if (base_bs
== NULL
) {
1121 error_set(errp
, QERR_BASE_NOT_FOUND
, base
);
1126 stream_start(bs
, base_bs
, base
, has_speed
? speed
: 0,
1127 block_job_cb
, bs
, &local_err
);
1128 if (error_is_set(&local_err
)) {
1129 error_propagate(errp
, local_err
);
1133 /* Grab a reference so hotplug does not delete the BlockDriverState from
1136 drive_get_ref(drive_get_by_blockdev(bs
));
1138 trace_qmp_block_stream(bs
, bs
->job
);
1141 void qmp_block_commit(const char *device
,
1142 bool has_base
, const char *base
, const char *top
,
1143 bool has_speed
, int64_t speed
,
1146 BlockDriverState
*bs
;
1147 BlockDriverState
*base_bs
, *top_bs
;
1148 Error
*local_err
= NULL
;
1149 /* This will be part of the QMP command, if/when the
1150 * BlockdevOnError change for blkmirror makes it in
1152 BlockdevOnError on_error
= BLOCKDEV_ON_ERROR_REPORT
;
1154 /* drain all i/o before commits */
1157 bs
= bdrv_find(device
);
1159 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1162 if (base
&& has_base
) {
1163 base_bs
= bdrv_find_backing_image(bs
, base
);
1165 base_bs
= bdrv_find_base(bs
);
1168 if (base_bs
== NULL
) {
1169 error_set(errp
, QERR_BASE_NOT_FOUND
, base
? base
: "NULL");
1173 /* default top_bs is the active layer */
1177 if (strcmp(bs
->filename
, top
) != 0) {
1178 top_bs
= bdrv_find_backing_image(bs
, top
);
1182 if (top_bs
== NULL
) {
1183 error_setg(errp
, "Top image file %s not found", top
? top
: "NULL");
1187 commit_start(bs
, base_bs
, top_bs
, speed
, on_error
, block_job_cb
, bs
,
1189 if (local_err
!= NULL
) {
1190 error_propagate(errp
, local_err
);
1193 /* Grab a reference so hotplug does not delete the BlockDriverState from
1196 drive_get_ref(drive_get_by_blockdev(bs
));
1199 static BlockJob
*find_block_job(const char *device
)
1201 BlockDriverState
*bs
;
1203 bs
= bdrv_find(device
);
1204 if (!bs
|| !bs
->job
) {
1210 void qmp_block_job_set_speed(const char *device
, int64_t speed
, Error
**errp
)
1212 BlockJob
*job
= find_block_job(device
);
1215 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
1219 block_job_set_speed(job
, speed
, errp
);
1222 void qmp_block_job_cancel(const char *device
,
1223 bool has_force
, bool force
, Error
**errp
)
1225 BlockJob
*job
= find_block_job(device
);
1232 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
1235 if (job
->paused
&& !force
) {
1236 error_set(errp
, QERR_BLOCK_JOB_PAUSED
, device
);
1240 trace_qmp_block_job_cancel(job
);
1241 block_job_cancel(job
);
1244 void qmp_block_job_pause(const char *device
, Error
**errp
)
1246 BlockJob
*job
= find_block_job(device
);
1249 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
1253 trace_qmp_block_job_pause(job
);
1254 block_job_pause(job
);
1257 void qmp_block_job_resume(const char *device
, Error
**errp
)
1259 BlockJob
*job
= find_block_job(device
);
1262 error_set(errp
, QERR_BLOCK_JOB_NOT_ACTIVE
, device
);
1266 trace_qmp_block_job_resume(job
);
1267 block_job_resume(job
);
1270 static void do_qmp_query_block_jobs_one(void *opaque
, BlockDriverState
*bs
)
1272 BlockJobInfoList
**prev
= opaque
;
1273 BlockJob
*job
= bs
->job
;
1276 BlockJobInfoList
*elem
= g_new0(BlockJobInfoList
, 1);
1277 elem
->value
= block_job_query(bs
->job
);
1278 (*prev
)->next
= elem
;
1283 BlockJobInfoList
*qmp_query_block_jobs(Error
**errp
)
1285 /* Dummy is a fake list element for holding the head pointer */
1286 BlockJobInfoList dummy
= {};
1287 BlockJobInfoList
*prev
= &dummy
;
1288 bdrv_iterate(do_qmp_query_block_jobs_one
, &prev
);