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.
14 #include "qemu-option.h"
15 #include "qemu-config.h"
16 #include "qemu-objects.h"
18 #include "block_int.h"
19 #include "qmp-commands.h"
21 #include "arch_init.h"
23 static QTAILQ_HEAD(drivelist
, DriveInfo
) drives
= QTAILQ_HEAD_INITIALIZER(drives
);
25 static const char *const if_name
[IF_COUNT
] = {
29 [IF_FLOPPY
] = "floppy",
30 [IF_PFLASH
] = "pflash",
33 [IF_VIRTIO
] = "virtio",
37 static const int if_max_devs
[IF_COUNT
] = {
39 * Do not change these numbers! They govern how drive option
40 * index maps to unit and bus. That mapping is ABI.
42 * All controllers used to imlement if=T drives need to support
43 * if_max_devs[T] units, for any T with if_max_devs[T] != 0.
44 * Otherwise, some index values map to "impossible" bus, unit
47 * For instance, if you change [IF_SCSI] to 255, -drive
48 * if=scsi,index=12 no longer means bus=1,unit=5, but
49 * bus=0,unit=12. With an lsi53c895a controller (7 units max),
50 * the drive can't be set up. Regression.
57 * We automatically delete the drive when a device using it gets
58 * unplugged. Questionable feature, but we can't just drop it.
59 * Device models call blockdev_mark_auto_del() to schedule the
60 * automatic deletion, and generic qdev code calls blockdev_auto_del()
61 * when deletion is actually safe.
63 void blockdev_mark_auto_del(BlockDriverState
*bs
)
65 DriveInfo
*dinfo
= drive_get_by_blockdev(bs
);
68 block_job_cancel(bs
->job
);
75 void blockdev_auto_del(BlockDriverState
*bs
)
77 DriveInfo
*dinfo
= drive_get_by_blockdev(bs
);
79 if (dinfo
&& dinfo
->auto_del
) {
84 static int drive_index_to_bus_id(BlockInterfaceType type
, int index
)
86 int max_devs
= if_max_devs
[type
];
87 return max_devs
? index
/ max_devs
: 0;
90 static int drive_index_to_unit_id(BlockInterfaceType type
, int index
)
92 int max_devs
= if_max_devs
[type
];
93 return max_devs
? index
% max_devs
: index
;
96 QemuOpts
*drive_def(const char *optstr
)
98 return qemu_opts_parse(qemu_find_opts("drive"), optstr
, 0);
101 QemuOpts
*drive_add(BlockInterfaceType type
, int index
, const char *file
,
107 opts
= drive_def(optstr
);
111 if (type
!= IF_DEFAULT
) {
112 qemu_opt_set(opts
, "if", if_name
[type
]);
115 snprintf(buf
, sizeof(buf
), "%d", index
);
116 qemu_opt_set(opts
, "index", buf
);
119 qemu_opt_set(opts
, "file", file
);
123 DriveInfo
*drive_get(BlockInterfaceType type
, int bus
, int unit
)
127 /* seek interface, bus and unit */
129 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
130 if (dinfo
->type
== type
&&
139 DriveInfo
*drive_get_by_index(BlockInterfaceType type
, int index
)
141 return drive_get(type
,
142 drive_index_to_bus_id(type
, index
),
143 drive_index_to_unit_id(type
, index
));
146 int drive_get_max_bus(BlockInterfaceType type
)
152 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
153 if(dinfo
->type
== type
&&
154 dinfo
->bus
> max_bus
)
155 max_bus
= dinfo
->bus
;
160 /* Get a block device. This should only be used for single-drive devices
161 (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the
163 DriveInfo
*drive_get_next(BlockInterfaceType type
)
165 static int next_block_unit
[IF_COUNT
];
167 return drive_get(type
, 0, next_block_unit
[type
]++);
170 DriveInfo
*drive_get_by_blockdev(BlockDriverState
*bs
)
174 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
175 if (dinfo
->bdrv
== bs
) {
182 static void bdrv_format_print(void *opaque
, const char *name
)
184 error_printf(" %s", name
);
187 static void drive_uninit(DriveInfo
*dinfo
)
189 qemu_opts_del(dinfo
->opts
);
190 bdrv_delete(dinfo
->bdrv
);
192 QTAILQ_REMOVE(&drives
, dinfo
, next
);
196 void drive_put_ref(DriveInfo
*dinfo
)
198 assert(dinfo
->refcount
);
199 if (--dinfo
->refcount
== 0) {
204 void drive_get_ref(DriveInfo
*dinfo
)
214 static void drive_put_ref_bh(void *opaque
)
216 DrivePutRefBH
*s
= opaque
;
218 drive_put_ref(s
->dinfo
);
219 qemu_bh_delete(s
->bh
);
224 * Release a drive reference in a BH
226 * It is not possible to use drive_put_ref() from a callback function when the
227 * callers still need the drive. In such cases we schedule a BH to release the
230 static void drive_put_ref_bh_schedule(DriveInfo
*dinfo
)
234 s
= g_new(DrivePutRefBH
, 1);
235 s
->bh
= qemu_bh_new(drive_put_ref_bh
, s
);
237 qemu_bh_schedule(s
->bh
);
240 static int parse_block_error_action(const char *buf
, int is_read
)
242 if (!strcmp(buf
, "ignore")) {
243 return BLOCK_ERR_IGNORE
;
244 } else if (!is_read
&& !strcmp(buf
, "enospc")) {
245 return BLOCK_ERR_STOP_ENOSPC
;
246 } else if (!strcmp(buf
, "stop")) {
247 return BLOCK_ERR_STOP_ANY
;
248 } else if (!strcmp(buf
, "report")) {
249 return BLOCK_ERR_REPORT
;
251 error_report("'%s' invalid %s error action",
252 buf
, is_read
? "read" : "write");
257 static bool do_check_io_limits(BlockIOLimit
*io_limits
)
264 bps_flag
= (io_limits
->bps
[BLOCK_IO_LIMIT_TOTAL
] != 0)
265 && ((io_limits
->bps
[BLOCK_IO_LIMIT_READ
] != 0)
266 || (io_limits
->bps
[BLOCK_IO_LIMIT_WRITE
] != 0));
267 iops_flag
= (io_limits
->iops
[BLOCK_IO_LIMIT_TOTAL
] != 0)
268 && ((io_limits
->iops
[BLOCK_IO_LIMIT_READ
] != 0)
269 || (io_limits
->iops
[BLOCK_IO_LIMIT_WRITE
] != 0));
270 if (bps_flag
|| iops_flag
) {
277 DriveInfo
*drive_init(QemuOpts
*opts
, int default_to_scsi
)
280 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 pstrcpy(devname
, sizeof(devname
), buf
);
322 for (type
= 0; type
< IF_COUNT
&& strcmp(buf
, if_name
[type
]); type
++)
324 if (type
== IF_COUNT
) {
325 error_report("unsupported bus type '%s'", buf
);
329 type
= default_to_scsi
? IF_SCSI
: IF_IDE
;
330 pstrcpy(devname
, sizeof(devname
), if_name
[type
]);
333 max_devs
= if_max_devs
[type
];
335 if (cyls
|| heads
|| secs
) {
336 if (cyls
< 1 || (type
== IF_IDE
&& cyls
> 16383)) {
337 error_report("invalid physical cyls number");
340 if (heads
< 1 || (type
== IF_IDE
&& heads
> 16)) {
341 error_report("invalid physical heads number");
344 if (secs
< 1 || (type
== IF_IDE
&& secs
> 63)) {
345 error_report("invalid physical secs number");
350 if ((buf
= qemu_opt_get(opts
, "trans")) != NULL
) {
352 error_report("'%s' trans must be used with cyls, heads and secs",
356 if (!strcmp(buf
, "none"))
357 translation
= BIOS_ATA_TRANSLATION_NONE
;
358 else if (!strcmp(buf
, "lba"))
359 translation
= BIOS_ATA_TRANSLATION_LBA
;
360 else if (!strcmp(buf
, "auto"))
361 translation
= BIOS_ATA_TRANSLATION_AUTO
;
363 error_report("'%s' invalid translation type", buf
);
368 if ((buf
= qemu_opt_get(opts
, "media")) != NULL
) {
369 if (!strcmp(buf
, "disk")) {
371 } else if (!strcmp(buf
, "cdrom")) {
372 if (cyls
|| secs
|| heads
) {
373 error_report("CHS can't be set with media=%s", buf
);
378 error_report("'%s' invalid media", buf
);
383 if ((buf
= qemu_opt_get(opts
, "cache")) != NULL
) {
384 if (bdrv_parse_cache_flags(buf
, &bdrv_flags
) != 0) {
385 error_report("invalid cache option");
390 #ifdef CONFIG_LINUX_AIO
391 if ((buf
= qemu_opt_get(opts
, "aio")) != NULL
) {
392 if (!strcmp(buf
, "native")) {
393 bdrv_flags
|= BDRV_O_NATIVE_AIO
;
394 } else if (!strcmp(buf
, "threads")) {
395 /* this is the default */
397 error_report("invalid aio option");
403 if ((buf
= qemu_opt_get(opts
, "format")) != NULL
) {
404 if (strcmp(buf
, "?") == 0) {
405 error_printf("Supported formats:");
406 bdrv_iterate_format(bdrv_format_print
, NULL
);
410 drv
= bdrv_find_whitelisted_format(buf
);
412 error_report("'%s' invalid format", buf
);
417 /* disk I/O throttling */
418 io_limits
.bps
[BLOCK_IO_LIMIT_TOTAL
] =
419 qemu_opt_get_number(opts
, "bps", 0);
420 io_limits
.bps
[BLOCK_IO_LIMIT_READ
] =
421 qemu_opt_get_number(opts
, "bps_rd", 0);
422 io_limits
.bps
[BLOCK_IO_LIMIT_WRITE
] =
423 qemu_opt_get_number(opts
, "bps_wr", 0);
424 io_limits
.iops
[BLOCK_IO_LIMIT_TOTAL
] =
425 qemu_opt_get_number(opts
, "iops", 0);
426 io_limits
.iops
[BLOCK_IO_LIMIT_READ
] =
427 qemu_opt_get_number(opts
, "iops_rd", 0);
428 io_limits
.iops
[BLOCK_IO_LIMIT_WRITE
] =
429 qemu_opt_get_number(opts
, "iops_wr", 0);
431 if (!do_check_io_limits(&io_limits
)) {
432 error_report("bps(iops) and bps_rd/bps_wr(iops_rd/iops_wr) "
433 "cannot be used at the same time");
437 on_write_error
= BLOCK_ERR_STOP_ENOSPC
;
438 if ((buf
= qemu_opt_get(opts
, "werror")) != NULL
) {
439 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
&& type
!= IF_NONE
) {
440 error_report("werror is not supported by this bus type");
444 on_write_error
= parse_block_error_action(buf
, 0);
445 if (on_write_error
< 0) {
450 on_read_error
= BLOCK_ERR_REPORT
;
451 if ((buf
= qemu_opt_get(opts
, "rerror")) != NULL
) {
452 if (type
!= IF_IDE
&& type
!= IF_VIRTIO
&& type
!= IF_SCSI
&& type
!= IF_NONE
) {
453 error_report("rerror is not supported by this bus type");
457 on_read_error
= parse_block_error_action(buf
, 1);
458 if (on_read_error
< 0) {
463 if ((devaddr
= qemu_opt_get(opts
, "addr")) != NULL
) {
464 if (type
!= IF_VIRTIO
) {
465 error_report("addr is not supported by this bus type");
470 /* compute bus and unit according index */
473 if (bus_id
!= 0 || unit_id
!= -1) {
474 error_report("index cannot be used with bus and unit");
477 bus_id
= drive_index_to_bus_id(type
, index
);
478 unit_id
= drive_index_to_unit_id(type
, index
);
481 /* if user doesn't specify a unit_id,
482 * try to find the first free
487 while (drive_get(type
, bus_id
, unit_id
) != NULL
) {
489 if (max_devs
&& unit_id
>= max_devs
) {
498 if (max_devs
&& unit_id
>= max_devs
) {
499 error_report("unit %d too big (max is %d)",
500 unit_id
, max_devs
- 1);
505 * catch multiple definitions
508 if (drive_get(type
, bus_id
, unit_id
) != NULL
) {
509 error_report("drive with bus=%d, unit=%d (index=%d) exists",
510 bus_id
, unit_id
, index
);
516 dinfo
= g_malloc0(sizeof(*dinfo
));
517 if ((buf
= qemu_opts_id(opts
)) != NULL
) {
518 dinfo
->id
= g_strdup(buf
);
520 /* no id supplied -> create one */
521 dinfo
->id
= g_malloc0(32);
522 if (type
== IF_IDE
|| type
== IF_SCSI
)
523 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
525 snprintf(dinfo
->id
, 32, "%s%i%s%i",
526 devname
, bus_id
, mediastr
, unit_id
);
528 snprintf(dinfo
->id
, 32, "%s%s%i",
529 devname
, mediastr
, unit_id
);
531 dinfo
->bdrv
= bdrv_new(dinfo
->id
);
532 dinfo
->devaddr
= devaddr
;
535 dinfo
->unit
= unit_id
;
539 pstrcpy(dinfo
->serial
, sizeof(dinfo
->serial
), serial
);
541 QTAILQ_INSERT_TAIL(&drives
, dinfo
, next
);
543 bdrv_set_on_error(dinfo
->bdrv
, on_read_error
, on_write_error
);
545 /* disk I/O throttling */
546 bdrv_set_io_limits(dinfo
->bdrv
, &io_limits
);
556 bdrv_set_geometry_hint(dinfo
->bdrv
, cyls
, heads
, secs
);
557 bdrv_set_translation_hint(dinfo
->bdrv
, translation
);
571 /* add virtio block device */
572 opts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0);
573 if (arch_type
== QEMU_ARCH_S390X
) {
574 qemu_opt_set(opts
, "driver", "virtio-blk-s390");
576 qemu_opt_set(opts
, "driver", "virtio-blk-pci");
578 qemu_opt_set(opts
, "drive", dinfo
->id
);
580 qemu_opt_set(opts
, "addr", devaddr
);
585 if (!file
|| !*file
) {
589 /* always use cache=unsafe with snapshot */
590 bdrv_flags
&= ~BDRV_O_CACHE_MASK
;
591 bdrv_flags
|= (BDRV_O_SNAPSHOT
|BDRV_O_CACHE_WB
|BDRV_O_NO_FLUSH
);
595 bdrv_flags
|= BDRV_O_COPY_ON_READ
;
598 if (media
== MEDIA_CDROM
) {
599 /* CDROM is fine for any interface, don't check. */
601 } else if (ro
== 1) {
602 if (type
!= IF_SCSI
&& type
!= IF_VIRTIO
&& type
!= IF_FLOPPY
&&
603 type
!= IF_NONE
&& type
!= IF_PFLASH
) {
604 error_report("readonly not supported by this bus type");
609 bdrv_flags
|= ro
? 0 : BDRV_O_RDWR
;
611 ret
= bdrv_open(dinfo
->bdrv
, file
, bdrv_flags
, drv
);
613 error_report("could not open disk image %s: %s",
614 file
, strerror(-ret
));
618 if (bdrv_key_required(dinfo
->bdrv
))
623 bdrv_delete(dinfo
->bdrv
);
625 QTAILQ_REMOVE(&drives
, dinfo
, next
);
630 void do_commit(Monitor
*mon
, const QDict
*qdict
)
632 const char *device
= qdict_get_str(qdict
, "device");
633 BlockDriverState
*bs
;
636 if (!strcmp(device
, "all")) {
637 ret
= bdrv_commit_all();
639 qerror_report(QERR_DEVICE_IN_USE
, device
);
643 bs
= bdrv_find(device
);
645 qerror_report(QERR_DEVICE_NOT_FOUND
, device
);
648 ret
= bdrv_commit(bs
);
650 qerror_report(QERR_DEVICE_IN_USE
, device
);
656 static void blockdev_do_action(int kind
, void *data
, Error
**errp
)
658 BlockdevAction action
;
659 BlockdevActionList list
;
663 list
.value
= &action
;
665 qmp_transaction(&list
, errp
);
668 void qmp_blockdev_snapshot_sync(const char *device
, const char *snapshot_file
,
669 bool has_format
, const char *format
,
670 bool has_mode
, enum NewImageMode mode
,
673 BlockdevSnapshot snapshot
= {
674 .device
= (char *) device
,
675 .snapshot_file
= (char *) snapshot_file
,
676 .has_format
= has_format
,
677 .format
= (char *) format
,
678 .has_mode
= has_mode
,
681 blockdev_do_action(BLOCKDEV_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
, &snapshot
,
686 /* New and old BlockDriverState structs for group snapshots */
687 typedef struct BlkTransactionStates
{
688 BlockDriverState
*old_bs
;
689 BlockDriverState
*new_bs
;
690 QSIMPLEQ_ENTRY(BlkTransactionStates
) entry
;
691 } BlkTransactionStates
;
694 * 'Atomic' group snapshots. The snapshots are taken as a set, and if any fail
695 * then we do not pivot any of the devices in the group, and abandon the
698 void qmp_transaction(BlockdevActionList
*dev_list
, Error
**errp
)
701 BlockdevActionList
*dev_entry
= dev_list
;
702 BlkTransactionStates
*states
, *next
;
704 QSIMPLEQ_HEAD(snap_bdrv_states
, BlkTransactionStates
) snap_bdrv_states
;
705 QSIMPLEQ_INIT(&snap_bdrv_states
);
707 /* drain all i/o before any snapshots */
710 /* We don't do anything in this loop that commits us to the snapshot */
711 while (NULL
!= dev_entry
) {
712 BlockdevAction
*dev_info
= NULL
;
713 BlockDriver
*proto_drv
;
716 enum NewImageMode mode
;
717 const char *new_image_file
;
719 const char *format
= "qcow2";
721 dev_info
= dev_entry
->value
;
722 dev_entry
= dev_entry
->next
;
724 states
= g_malloc0(sizeof(BlkTransactionStates
));
725 QSIMPLEQ_INSERT_TAIL(&snap_bdrv_states
, states
, entry
);
727 switch (dev_info
->kind
) {
728 case BLOCKDEV_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC
:
729 device
= dev_info
->blockdev_snapshot_sync
->device
;
730 if (!dev_info
->blockdev_snapshot_sync
->has_mode
) {
731 dev_info
->blockdev_snapshot_sync
->mode
= NEW_IMAGE_MODE_ABSOLUTE_PATHS
;
733 new_image_file
= dev_info
->blockdev_snapshot_sync
->snapshot_file
;
734 if (dev_info
->blockdev_snapshot_sync
->has_format
) {
735 format
= dev_info
->blockdev_snapshot_sync
->format
;
737 mode
= dev_info
->blockdev_snapshot_sync
->mode
;
743 drv
= bdrv_find_format(format
);
745 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
746 goto delete_and_fail
;
749 states
->old_bs
= bdrv_find(device
);
750 if (!states
->old_bs
) {
751 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
752 goto delete_and_fail
;
755 if (bdrv_in_use(states
->old_bs
)) {
756 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
757 goto delete_and_fail
;
760 if (!bdrv_is_read_only(states
->old_bs
) &&
761 bdrv_is_inserted(states
->old_bs
)) {
763 if (bdrv_flush(states
->old_bs
)) {
764 error_set(errp
, QERR_IO_ERROR
);
765 goto delete_and_fail
;
769 flags
= states
->old_bs
->open_flags
;
771 proto_drv
= bdrv_find_protocol(new_image_file
);
773 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
774 goto delete_and_fail
;
777 /* create new image w/backing file */
778 if (mode
!= NEW_IMAGE_MODE_EXISTING
) {
779 ret
= bdrv_img_create(new_image_file
, format
,
780 states
->old_bs
->filename
,
781 states
->old_bs
->drv
->format_name
,
784 error_set(errp
, QERR_OPEN_FILE_FAILED
, new_image_file
);
785 goto delete_and_fail
;
789 /* We will manually add the backing_hd field to the bs later */
790 states
->new_bs
= bdrv_new("");
791 ret
= bdrv_open(states
->new_bs
, new_image_file
,
792 flags
| BDRV_O_NO_BACKING
, drv
);
794 error_set(errp
, QERR_OPEN_FILE_FAILED
, new_image_file
);
795 goto delete_and_fail
;
800 /* Now we are going to do the actual pivot. Everything up to this point
801 * is reversible, but we are committed at this point */
802 QSIMPLEQ_FOREACH(states
, &snap_bdrv_states
, entry
) {
803 /* This removes our old bs from the bdrv_states, and adds the new bs */
804 bdrv_append(states
->new_bs
, states
->old_bs
);
812 * failure, and it is all-or-none; abandon each new bs, and keep using
813 * the original bs for all images
815 QSIMPLEQ_FOREACH(states
, &snap_bdrv_states
, entry
) {
816 if (states
->new_bs
) {
817 bdrv_delete(states
->new_bs
);
821 QSIMPLEQ_FOREACH_SAFE(states
, &snap_bdrv_states
, entry
, next
) {
828 static void eject_device(BlockDriverState
*bs
, int force
, Error
**errp
)
830 if (bdrv_in_use(bs
)) {
831 error_set(errp
, QERR_DEVICE_IN_USE
, bdrv_get_device_name(bs
));
834 if (!bdrv_dev_has_removable_media(bs
)) {
835 error_set(errp
, QERR_DEVICE_NOT_REMOVABLE
, bdrv_get_device_name(bs
));
839 if (bdrv_dev_is_medium_locked(bs
) && !bdrv_dev_is_tray_open(bs
)) {
840 bdrv_dev_eject_request(bs
, force
);
842 error_set(errp
, QERR_DEVICE_LOCKED
, bdrv_get_device_name(bs
));
850 void qmp_eject(const char *device
, bool has_force
, bool force
, Error
**errp
)
852 BlockDriverState
*bs
;
854 bs
= bdrv_find(device
);
856 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
860 eject_device(bs
, force
, errp
);
863 void qmp_block_passwd(const char *device
, const char *password
, Error
**errp
)
865 BlockDriverState
*bs
;
868 bs
= bdrv_find(device
);
870 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
874 err
= bdrv_set_key(bs
, password
);
875 if (err
== -EINVAL
) {
876 error_set(errp
, QERR_DEVICE_NOT_ENCRYPTED
, bdrv_get_device_name(bs
));
878 } else if (err
< 0) {
879 error_set(errp
, QERR_INVALID_PASSWORD
);
884 static void qmp_bdrv_open_encrypted(BlockDriverState
*bs
, const char *filename
,
885 int bdrv_flags
, BlockDriver
*drv
,
886 const char *password
, Error
**errp
)
888 if (bdrv_open(bs
, filename
, bdrv_flags
, drv
) < 0) {
889 error_set(errp
, QERR_OPEN_FILE_FAILED
, filename
);
893 if (bdrv_key_required(bs
)) {
895 if (bdrv_set_key(bs
, password
) < 0) {
896 error_set(errp
, QERR_INVALID_PASSWORD
);
899 error_set(errp
, QERR_DEVICE_ENCRYPTED
, bdrv_get_device_name(bs
),
900 bdrv_get_encrypted_filename(bs
));
902 } else if (password
) {
903 error_set(errp
, QERR_DEVICE_NOT_ENCRYPTED
, bdrv_get_device_name(bs
));
907 void qmp_change_blockdev(const char *device
, const char *filename
,
908 bool has_format
, const char *format
, Error
**errp
)
910 BlockDriverState
*bs
;
911 BlockDriver
*drv
= NULL
;
915 bs
= bdrv_find(device
);
917 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
922 drv
= bdrv_find_whitelisted_format(format
);
924 error_set(errp
, QERR_INVALID_BLOCK_FORMAT
, format
);
929 eject_device(bs
, 0, &err
);
930 if (error_is_set(&err
)) {
931 error_propagate(errp
, err
);
935 bdrv_flags
= bdrv_is_read_only(bs
) ? 0 : BDRV_O_RDWR
;
936 bdrv_flags
|= bdrv_is_snapshot(bs
) ? BDRV_O_SNAPSHOT
: 0;
938 qmp_bdrv_open_encrypted(bs
, filename
, bdrv_flags
, drv
, NULL
, errp
);
941 /* throttling disk I/O limits */
942 void qmp_block_set_io_throttle(const char *device
, int64_t bps
, int64_t bps_rd
,
943 int64_t bps_wr
, int64_t iops
, int64_t iops_rd
,
944 int64_t iops_wr
, Error
**errp
)
946 BlockIOLimit io_limits
;
947 BlockDriverState
*bs
;
949 bs
= bdrv_find(device
);
951 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
955 io_limits
.bps
[BLOCK_IO_LIMIT_TOTAL
] = bps
;
956 io_limits
.bps
[BLOCK_IO_LIMIT_READ
] = bps_rd
;
957 io_limits
.bps
[BLOCK_IO_LIMIT_WRITE
] = bps_wr
;
958 io_limits
.iops
[BLOCK_IO_LIMIT_TOTAL
]= iops
;
959 io_limits
.iops
[BLOCK_IO_LIMIT_READ
] = iops_rd
;
960 io_limits
.iops
[BLOCK_IO_LIMIT_WRITE
]= iops_wr
;
962 if (!do_check_io_limits(&io_limits
)) {
963 error_set(errp
, QERR_INVALID_PARAMETER_COMBINATION
);
967 bs
->io_limits
= io_limits
;
968 bs
->slice_time
= BLOCK_IO_SLICE_TIME
;
970 if (!bs
->io_limits_enabled
&& bdrv_io_limits_enabled(bs
)) {
971 bdrv_io_limits_enable(bs
);
972 } else if (bs
->io_limits_enabled
&& !bdrv_io_limits_enabled(bs
)) {
973 bdrv_io_limits_disable(bs
);
975 if (bs
->block_timer
) {
976 qemu_mod_timer(bs
->block_timer
, qemu_get_clock_ns(vm_clock
));
981 int do_drive_del(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
983 const char *id
= qdict_get_str(qdict
, "id");
984 BlockDriverState
*bs
;
988 qerror_report(QERR_DEVICE_NOT_FOUND
, id
);
991 if (bdrv_in_use(bs
)) {
992 qerror_report(QERR_DEVICE_IN_USE
, id
);
996 /* quiesce block driver; prevent further io */
1001 /* if we have a device attached to this BlockDriverState
1002 * then we need to make the drive anonymous until the device
1003 * can be removed. If this is a drive with no device backing
1004 * then we can just get rid of the block driver state right here.
1006 if (bdrv_get_attached_dev(bs
)) {
1009 drive_uninit(drive_get_by_blockdev(bs
));
1015 void qmp_block_resize(const char *device
, int64_t size
, Error
**errp
)
1017 BlockDriverState
*bs
;
1019 bs
= bdrv_find(device
);
1021 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1026 error_set(errp
, QERR_INVALID_PARAMETER_VALUE
, "size", "a >0 size");
1030 switch (bdrv_truncate(bs
, size
)) {
1034 error_set(errp
, QERR_DEVICE_HAS_NO_MEDIUM
, device
);
1037 error_set(errp
, QERR_UNSUPPORTED
);
1040 error_set(errp
, QERR_DEVICE_IS_READ_ONLY
, device
);
1043 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
1046 error_set(errp
, QERR_UNDEFINED_ERROR
);
1051 static QObject
*qobject_from_block_job(BlockJob
*job
)
1053 return qobject_from_jsonf("{ 'type': %s,"
1055 "'len': %" PRId64
","
1056 "'offset': %" PRId64
","
1057 "'speed': %" PRId64
" }",
1058 job
->job_type
->job_type
,
1059 bdrv_get_device_name(job
->bs
),
1065 static void block_stream_cb(void *opaque
, int ret
)
1067 BlockDriverState
*bs
= opaque
;
1070 trace_block_stream_cb(bs
, bs
->job
, ret
);
1073 obj
= qobject_from_block_job(bs
->job
);
1075 QDict
*dict
= qobject_to_qdict(obj
);
1076 qdict_put(dict
, "error", qstring_from_str(strerror(-ret
)));
1079 if (block_job_is_cancelled(bs
->job
)) {
1080 monitor_protocol_event(QEVENT_BLOCK_JOB_CANCELLED
, obj
);
1082 monitor_protocol_event(QEVENT_BLOCK_JOB_COMPLETED
, obj
);
1084 qobject_decref(obj
);
1086 drive_put_ref_bh_schedule(drive_get_by_blockdev(bs
));
1089 void qmp_block_stream(const char *device
, bool has_base
,
1090 const char *base
, Error
**errp
)
1092 BlockDriverState
*bs
;
1093 BlockDriverState
*base_bs
= NULL
;
1096 bs
= bdrv_find(device
);
1098 error_set(errp
, QERR_DEVICE_NOT_FOUND
, device
);
1103 base_bs
= bdrv_find_backing_image(bs
, base
);
1104 if (base_bs
== NULL
) {
1105 error_set(errp
, QERR_BASE_NOT_FOUND
, base
);
1110 ret
= stream_start(bs
, base_bs
, base
, block_stream_cb
, bs
);
1114 error_set(errp
, QERR_DEVICE_IN_USE
, device
);
1117 error_set(errp
, QERR_NOT_SUPPORTED
);
1122 /* Grab a reference so hotplug does not delete the BlockDriverState from
1125 drive_get_ref(drive_get_by_blockdev(bs
));
1127 trace_qmp_block_stream(bs
, bs
->job
);
1130 static BlockJob
*find_block_job(const char *device
)
1132 BlockDriverState
*bs
;
1134 bs
= bdrv_find(device
);
1135 if (!bs
|| !bs
->job
) {
1141 void qmp_block_job_set_speed(const char *device
, int64_t value
, Error
**errp
)
1143 BlockJob
*job
= find_block_job(device
);
1146 error_set(errp
, QERR_DEVICE_NOT_ACTIVE
, device
);
1150 if (block_job_set_speed(job
, value
) < 0) {
1151 error_set(errp
, QERR_NOT_SUPPORTED
);
1155 void qmp_block_job_cancel(const char *device
, Error
**errp
)
1157 BlockJob
*job
= find_block_job(device
);
1160 error_set(errp
, QERR_DEVICE_NOT_ACTIVE
, device
);
1164 trace_qmp_block_job_cancel(job
);
1165 block_job_cancel(job
);
1168 static void do_qmp_query_block_jobs_one(void *opaque
, BlockDriverState
*bs
)
1170 BlockJobInfoList
**prev
= opaque
;
1171 BlockJob
*job
= bs
->job
;
1174 BlockJobInfoList
*elem
;
1175 BlockJobInfo
*info
= g_new(BlockJobInfo
, 1);
1176 *info
= (BlockJobInfo
){
1177 .type
= g_strdup(job
->job_type
->job_type
),
1178 .device
= g_strdup(bdrv_get_device_name(bs
)),
1180 .offset
= job
->offset
,
1181 .speed
= job
->speed
,
1184 elem
= g_new0(BlockJobInfoList
, 1);
1187 (*prev
)->next
= elem
;
1192 BlockJobInfoList
*qmp_query_block_jobs(Error
**errp
)
1194 /* Dummy is a fake list element for holding the head pointer */
1195 BlockJobInfoList dummy
= {};
1196 BlockJobInfoList
*prev
= &dummy
;
1197 bdrv_iterate(do_qmp_query_block_jobs_one
, &prev
);