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);
72 void blockdev_auto_del(BlockDriverState *bs)
74 DriveInfo *dinfo = drive_get_by_blockdev(bs);
76 if (dinfo && dinfo->auto_del) {
81 static int drive_index_to_bus_id(BlockInterfaceType type, int index)
83 int max_devs = if_max_devs[type];
84 return max_devs ? index / max_devs : 0;
87 static int drive_index_to_unit_id(BlockInterfaceType type, int index)
89 int max_devs = if_max_devs[type];
90 return max_devs ? index % max_devs : index;
93 QemuOpts *drive_def(const char *optstr)
95 return qemu_opts_parse(qemu_find_opts("drive"), optstr, 0);
98 QemuOpts *drive_add(BlockInterfaceType type, int index, const char *file,
104 opts = drive_def(optstr);
108 if (type != IF_DEFAULT) {
109 qemu_opt_set(opts, "if", if_name[type]);
112 snprintf(buf, sizeof(buf), "%d", index);
113 qemu_opt_set(opts, "index", buf);
116 qemu_opt_set(opts, "file", file);
120 DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit)
124 /* seek interface, bus and unit */
126 QTAILQ_FOREACH(dinfo, &drives, next) {
127 if (dinfo->type == type &&
136 DriveInfo *drive_get_by_index(BlockInterfaceType type, int index)
138 return drive_get(type,
139 drive_index_to_bus_id(type, index),
140 drive_index_to_unit_id(type, index));
143 int drive_get_max_bus(BlockInterfaceType type)
149 QTAILQ_FOREACH(dinfo, &drives, next) {
150 if(dinfo->type == type &&
151 dinfo->bus > max_bus)
152 max_bus = dinfo->bus;
157 /* Get a block device. This should only be used for single-drive devices
158 (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the
160 DriveInfo *drive_get_next(BlockInterfaceType type)
162 static int next_block_unit[IF_COUNT];
164 return drive_get(type, 0, next_block_unit[type]++);
167 DriveInfo *drive_get_by_blockdev(BlockDriverState *bs)
171 QTAILQ_FOREACH(dinfo, &drives, next) {
172 if (dinfo->bdrv == bs) {
179 static void bdrv_format_print(void *opaque, const char *name)
181 error_printf(" %s", name);
184 static void drive_uninit(DriveInfo *dinfo)
186 qemu_opts_del(dinfo->opts);
187 bdrv_delete(dinfo->bdrv);
189 QTAILQ_REMOVE(&drives, dinfo, next);
193 void drive_put_ref(DriveInfo *dinfo)
195 assert(dinfo->refcount);
196 if (--dinfo->refcount == 0) {
201 void drive_get_ref(DriveInfo *dinfo)
211 static void drive_put_ref_bh(void *opaque)
213 DrivePutRefBH *s = opaque;
215 drive_put_ref(s->dinfo);
216 qemu_bh_delete(s->bh);
221 * Release a drive reference in a BH
223 * It is not possible to use drive_put_ref() from a callback function when the
224 * callers still need the drive. In such cases we schedule a BH to release the
227 static void drive_put_ref_bh_schedule(DriveInfo *dinfo)
231 s = g_new(DrivePutRefBH, 1);
232 s->bh = qemu_bh_new(drive_put_ref_bh, s);
234 qemu_bh_schedule(s->bh);
237 static int parse_block_error_action(const char *buf, int is_read)
239 if (!strcmp(buf, "ignore")) {
240 return BLOCK_ERR_IGNORE;
241 } else if (!is_read && !strcmp(buf, "enospc")) {
242 return BLOCK_ERR_STOP_ENOSPC;
243 } else if (!strcmp(buf, "stop")) {
244 return BLOCK_ERR_STOP_ANY;
245 } else if (!strcmp(buf, "report")) {
246 return BLOCK_ERR_REPORT;
248 error_report("'%s' invalid %s error action",
249 buf, is_read ? "read" : "write");
254 static bool do_check_io_limits(BlockIOLimit *io_limits)
261 bps_flag = (io_limits->bps[BLOCK_IO_LIMIT_TOTAL] != 0)
262 && ((io_limits->bps[BLOCK_IO_LIMIT_READ] != 0)
263 || (io_limits->bps[BLOCK_IO_LIMIT_WRITE] != 0));
264 iops_flag = (io_limits->iops[BLOCK_IO_LIMIT_TOTAL] != 0)
265 && ((io_limits->iops[BLOCK_IO_LIMIT_READ] != 0)
266 || (io_limits->iops[BLOCK_IO_LIMIT_WRITE] != 0));
267 if (bps_flag || iops_flag) {
274 DriveInfo *drive_init(QemuOpts *opts, int default_to_scsi)
277 const char *file = NULL;
280 const char *mediastr = "";
281 BlockInterfaceType type;
282 enum { MEDIA_DISK, MEDIA_CDROM } media;
284 int cyls, heads, secs, translation;
285 BlockDriver *drv = NULL;
290 int on_read_error, on_write_error;
293 BlockIOLimit io_limits;
298 translation = BIOS_ATA_TRANSLATION_AUTO;
301 /* extract parameters */
302 bus_id = qemu_opt_get_number(opts, "bus", 0);
303 unit_id = qemu_opt_get_number(opts, "unit", -1);
304 index = qemu_opt_get_number(opts, "index", -1);
306 cyls = qemu_opt_get_number(opts, "cyls", 0);
307 heads = qemu_opt_get_number(opts, "heads", 0);
308 secs = qemu_opt_get_number(opts, "secs", 0);
310 snapshot = qemu_opt_get_bool(opts, "snapshot", 0);
311 ro = qemu_opt_get_bool(opts, "readonly", 0);
312 copy_on_read = qemu_opt_get_bool(opts, "copy-on-read", false);
314 file = qemu_opt_get(opts, "file");
315 serial = qemu_opt_get(opts, "serial");
317 if ((buf = qemu_opt_get(opts, "if")) != NULL) {
318 pstrcpy(devname, sizeof(devname), buf);
319 for (type = 0; type < IF_COUNT && strcmp(buf, if_name[type]); type++)
321 if (type == IF_COUNT) {
322 error_report("unsupported bus type '%s'", buf);
326 type = default_to_scsi ? IF_SCSI : IF_IDE;
327 pstrcpy(devname, sizeof(devname), if_name[type]);
330 max_devs = if_max_devs[type];
332 if (cyls || heads || secs) {
333 if (cyls < 1 || (type == IF_IDE && cyls > 16383)) {
334 error_report("invalid physical cyls number");
337 if (heads < 1 || (type == IF_IDE && heads > 16)) {
338 error_report("invalid physical heads number");
341 if (secs < 1 || (type == IF_IDE && secs > 63)) {
342 error_report("invalid physical secs number");
347 if ((buf = qemu_opt_get(opts, "trans")) != NULL) {
349 error_report("'%s' trans must be used with cyls, heads and secs",
353 if (!strcmp(buf, "none"))
354 translation = BIOS_ATA_TRANSLATION_NONE;
355 else if (!strcmp(buf, "lba"))
356 translation = BIOS_ATA_TRANSLATION_LBA;
357 else if (!strcmp(buf, "auto"))
358 translation = BIOS_ATA_TRANSLATION_AUTO;
360 error_report("'%s' invalid translation type", buf);
365 if ((buf = qemu_opt_get(opts, "media")) != NULL) {
366 if (!strcmp(buf, "disk")) {
368 } else if (!strcmp(buf, "cdrom")) {
369 if (cyls || secs || heads) {
370 error_report("CHS can't be set with media=%s", buf);
375 error_report("'%s' invalid media", buf);
380 if ((buf = qemu_opt_get(opts, "cache")) != NULL) {
381 if (bdrv_parse_cache_flags(buf, &bdrv_flags) != 0) {
382 error_report("invalid cache option");
387 #ifdef CONFIG_LINUX_AIO
388 if ((buf = qemu_opt_get(opts, "aio")) != NULL) {
389 if (!strcmp(buf, "native")) {
390 bdrv_flags |= BDRV_O_NATIVE_AIO;
391 } else if (!strcmp(buf, "threads")) {
392 /* this is the default */
394 error_report("invalid aio option");
400 if ((buf = qemu_opt_get(opts, "format")) != NULL) {
401 if (strcmp(buf, "?") == 0) {
402 error_printf("Supported formats:");
403 bdrv_iterate_format(bdrv_format_print, NULL);
407 drv = bdrv_find_whitelisted_format(buf);
409 error_report("'%s' invalid format", buf);
414 /* disk I/O throttling */
415 io_limits.bps[BLOCK_IO_LIMIT_TOTAL] =
416 qemu_opt_get_number(opts, "bps", 0);
417 io_limits.bps[BLOCK_IO_LIMIT_READ] =
418 qemu_opt_get_number(opts, "bps_rd", 0);
419 io_limits.bps[BLOCK_IO_LIMIT_WRITE] =
420 qemu_opt_get_number(opts, "bps_wr", 0);
421 io_limits.iops[BLOCK_IO_LIMIT_TOTAL] =
422 qemu_opt_get_number(opts, "iops", 0);
423 io_limits.iops[BLOCK_IO_LIMIT_READ] =
424 qemu_opt_get_number(opts, "iops_rd", 0);
425 io_limits.iops[BLOCK_IO_LIMIT_WRITE] =
426 qemu_opt_get_number(opts, "iops_wr", 0);
428 if (!do_check_io_limits(&io_limits)) {
429 error_report("bps(iops) and bps_rd/bps_wr(iops_rd/iops_wr) "
430 "cannot be used at the same time");
434 on_write_error = BLOCK_ERR_STOP_ENOSPC;
435 if ((buf = qemu_opt_get(opts, "werror")) != NULL) {
436 if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO && type != IF_NONE) {
437 error_report("werror is not supported by this bus type");
441 on_write_error = parse_block_error_action(buf, 0);
442 if (on_write_error < 0) {
447 on_read_error = BLOCK_ERR_REPORT;
448 if ((buf = qemu_opt_get(opts, "rerror")) != NULL) {
449 if (type != IF_IDE && type != IF_VIRTIO && type != IF_SCSI && type != IF_NONE) {
450 error_report("rerror is not supported by this bus type");
454 on_read_error = parse_block_error_action(buf, 1);
455 if (on_read_error < 0) {
460 if ((devaddr = qemu_opt_get(opts, "addr")) != NULL) {
461 if (type != IF_VIRTIO) {
462 error_report("addr is not supported by this bus type");
467 /* compute bus and unit according index */
470 if (bus_id != 0 || unit_id != -1) {
471 error_report("index cannot be used with bus and unit");
474 bus_id = drive_index_to_bus_id(type, index);
475 unit_id = drive_index_to_unit_id(type, index);
478 /* if user doesn't specify a unit_id,
479 * try to find the first free
484 while (drive_get(type, bus_id, unit_id) != NULL) {
486 if (max_devs && unit_id >= max_devs) {
495 if (max_devs && unit_id >= max_devs) {
496 error_report("unit %d too big (max is %d)",
497 unit_id, max_devs - 1);
502 * catch multiple definitions
505 if (drive_get(type, bus_id, unit_id) != NULL) {
506 error_report("drive with bus=%d, unit=%d (index=%d) exists",
507 bus_id, unit_id, index);
513 dinfo = g_malloc0(sizeof(*dinfo));
514 if ((buf = qemu_opts_id(opts)) != NULL) {
515 dinfo->id = g_strdup(buf);
517 /* no id supplied -> create one */
518 dinfo->id = g_malloc0(32);
519 if (type == IF_IDE || type == IF_SCSI)
520 mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd";
522 snprintf(dinfo->id, 32, "%s%i%s%i",
523 devname, bus_id, mediastr, unit_id);
525 snprintf(dinfo->id, 32, "%s%s%i",
526 devname, mediastr, unit_id);
528 dinfo->bdrv = bdrv_new(dinfo->id);
529 dinfo->devaddr = devaddr;
532 dinfo->unit = unit_id;
536 strncpy(dinfo->serial, serial, sizeof(dinfo->serial) - 1);
537 QTAILQ_INSERT_TAIL(&drives, dinfo, next);
539 bdrv_set_on_error(dinfo->bdrv, on_read_error, on_write_error);
541 /* disk I/O throttling */
542 bdrv_set_io_limits(dinfo->bdrv, &io_limits);
552 bdrv_set_geometry_hint(dinfo->bdrv, cyls, heads, secs);
553 bdrv_set_translation_hint(dinfo->bdrv, translation);
567 /* add virtio block device */
568 opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0);
569 if (arch_type == QEMU_ARCH_S390X) {
570 qemu_opt_set(opts, "driver", "virtio-blk-s390");
572 qemu_opt_set(opts, "driver", "virtio-blk-pci");
574 qemu_opt_set(opts, "drive", dinfo->id);
576 qemu_opt_set(opts, "addr", devaddr);
581 if (!file || !*file) {
585 /* always use cache=unsafe with snapshot */
586 bdrv_flags &= ~BDRV_O_CACHE_MASK;
587 bdrv_flags |= (BDRV_O_SNAPSHOT|BDRV_O_CACHE_WB|BDRV_O_NO_FLUSH);
591 bdrv_flags |= BDRV_O_COPY_ON_READ;
594 if (media == MEDIA_CDROM) {
595 /* CDROM is fine for any interface, don't check. */
597 } else if (ro == 1) {
598 if (type != IF_SCSI && type != IF_VIRTIO && type != IF_FLOPPY && type != IF_NONE) {
599 error_report("readonly not supported by this bus type");
604 bdrv_flags |= ro ? 0 : BDRV_O_RDWR;
606 ret = bdrv_open(dinfo->bdrv, file, bdrv_flags, drv);
608 error_report("could not open disk image %s: %s",
609 file, strerror(-ret));
613 if (bdrv_key_required(dinfo->bdrv))
618 bdrv_delete(dinfo->bdrv);
620 QTAILQ_REMOVE(&drives, dinfo, next);
625 void do_commit(Monitor *mon, const QDict *qdict)
627 const char *device = qdict_get_str(qdict, "device");
628 BlockDriverState *bs;
630 if (!strcmp(device, "all")) {
635 bs = bdrv_find(device);
637 qerror_report(QERR_DEVICE_NOT_FOUND, device);
640 ret = bdrv_commit(bs);
642 qerror_report(QERR_DEVICE_IN_USE, device);
648 void qmp_blockdev_snapshot_sync(const char *device, const char *snapshot_file,
649 bool has_format, const char *format,
652 BlockDriverState *bs;
653 BlockDriver *drv, *old_drv, *proto_drv;
656 char old_filename[1024];
658 bs = bdrv_find(device);
660 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
663 if (bdrv_in_use(bs)) {
664 error_set(errp, QERR_DEVICE_IN_USE, device);
668 pstrcpy(old_filename, sizeof(old_filename), bs->filename);
671 flags = bs->open_flags;
677 drv = bdrv_find_format(format);
679 error_set(errp, QERR_INVALID_BLOCK_FORMAT, format);
683 proto_drv = bdrv_find_protocol(snapshot_file);
685 error_set(errp, QERR_INVALID_BLOCK_FORMAT, format);
689 ret = bdrv_img_create(snapshot_file, format, bs->filename,
690 bs->drv->format_name, NULL, -1, flags);
692 error_set(errp, QERR_UNDEFINED_ERROR);
700 ret = bdrv_open(bs, snapshot_file, flags, drv);
702 * If reopening the image file we just created fails, fall back
703 * and try to re-open the original image. If that fails too, we
704 * are in serious trouble.
707 ret = bdrv_open(bs, old_filename, flags, old_drv);
709 error_set(errp, QERR_OPEN_FILE_FAILED, old_filename);
711 error_set(errp, QERR_OPEN_FILE_FAILED, snapshot_file);
716 static void eject_device(BlockDriverState *bs, int force, Error **errp)
718 if (bdrv_in_use(bs)) {
719 error_set(errp, QERR_DEVICE_IN_USE, bdrv_get_device_name(bs));
722 if (!bdrv_dev_has_removable_media(bs)) {
723 error_set(errp, QERR_DEVICE_NOT_REMOVABLE, bdrv_get_device_name(bs));
727 if (bdrv_dev_is_medium_locked(bs) && !bdrv_dev_is_tray_open(bs)) {
728 bdrv_dev_eject_request(bs, force);
730 error_set(errp, QERR_DEVICE_LOCKED, bdrv_get_device_name(bs));
738 void qmp_eject(const char *device, bool has_force, bool force, Error **errp)
740 BlockDriverState *bs;
742 bs = bdrv_find(device);
744 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
748 eject_device(bs, force, errp);
751 void qmp_block_passwd(const char *device, const char *password, Error **errp)
753 BlockDriverState *bs;
756 bs = bdrv_find(device);
758 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
762 err = bdrv_set_key(bs, password);
763 if (err == -EINVAL) {
764 error_set(errp, QERR_DEVICE_NOT_ENCRYPTED, bdrv_get_device_name(bs));
766 } else if (err < 0) {
767 error_set(errp, QERR_INVALID_PASSWORD);
772 static void qmp_bdrv_open_encrypted(BlockDriverState *bs, const char *filename,
773 int bdrv_flags, BlockDriver *drv,
774 const char *password, Error **errp)
776 if (bdrv_open(bs, filename, bdrv_flags, drv) < 0) {
777 error_set(errp, QERR_OPEN_FILE_FAILED, filename);
781 if (bdrv_key_required(bs)) {
783 if (bdrv_set_key(bs, password) < 0) {
784 error_set(errp, QERR_INVALID_PASSWORD);
787 error_set(errp, QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs),
788 bdrv_get_encrypted_filename(bs));
790 } else if (password) {
791 error_set(errp, QERR_DEVICE_NOT_ENCRYPTED, bdrv_get_device_name(bs));
795 void qmp_change_blockdev(const char *device, const char *filename,
796 bool has_format, const char *format, Error **errp)
798 BlockDriverState *bs;
799 BlockDriver *drv = NULL;
803 bs = bdrv_find(device);
805 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
810 drv = bdrv_find_whitelisted_format(format);
812 error_set(errp, QERR_INVALID_BLOCK_FORMAT, format);
817 eject_device(bs, 0, &err);
818 if (error_is_set(&err)) {
819 error_propagate(errp, err);
823 bdrv_flags = bdrv_is_read_only(bs) ? 0 : BDRV_O_RDWR;
824 bdrv_flags |= bdrv_is_snapshot(bs) ? BDRV_O_SNAPSHOT : 0;
826 qmp_bdrv_open_encrypted(bs, filename, bdrv_flags, drv, NULL, errp);
829 /* throttling disk I/O limits */
830 void qmp_block_set_io_throttle(const char *device, int64_t bps, int64_t bps_rd,
831 int64_t bps_wr, int64_t iops, int64_t iops_rd,
832 int64_t iops_wr, Error **errp)
834 BlockIOLimit io_limits;
835 BlockDriverState *bs;
837 bs = bdrv_find(device);
839 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
843 io_limits.bps[BLOCK_IO_LIMIT_TOTAL] = bps;
844 io_limits.bps[BLOCK_IO_LIMIT_READ] = bps_rd;
845 io_limits.bps[BLOCK_IO_LIMIT_WRITE] = bps_wr;
846 io_limits.iops[BLOCK_IO_LIMIT_TOTAL]= iops;
847 io_limits.iops[BLOCK_IO_LIMIT_READ] = iops_rd;
848 io_limits.iops[BLOCK_IO_LIMIT_WRITE]= iops_wr;
850 if (!do_check_io_limits(&io_limits)) {
851 error_set(errp, QERR_INVALID_PARAMETER_COMBINATION);
855 bs->io_limits = io_limits;
856 bs->slice_time = BLOCK_IO_SLICE_TIME;
858 if (!bs->io_limits_enabled && bdrv_io_limits_enabled(bs)) {
859 bdrv_io_limits_enable(bs);
860 } else if (bs->io_limits_enabled && !bdrv_io_limits_enabled(bs)) {
861 bdrv_io_limits_disable(bs);
863 if (bs->block_timer) {
864 qemu_mod_timer(bs->block_timer, qemu_get_clock_ns(vm_clock));
869 int do_drive_del(Monitor *mon, const QDict *qdict, QObject **ret_data)
871 const char *id = qdict_get_str(qdict, "id");
872 BlockDriverState *bs;
876 qerror_report(QERR_DEVICE_NOT_FOUND, id);
879 if (bdrv_in_use(bs)) {
880 qerror_report(QERR_DEVICE_IN_USE, id);
884 /* quiesce block driver; prevent further io */
889 /* if we have a device attached to this BlockDriverState
890 * then we need to make the drive anonymous until the device
891 * can be removed. If this is a drive with no device backing
892 * then we can just get rid of the block driver state right here.
894 if (bdrv_get_attached_dev(bs)) {
897 drive_uninit(drive_get_by_blockdev(bs));
903 void qmp_block_resize(const char *device, int64_t size, Error **errp)
905 BlockDriverState *bs;
907 bs = bdrv_find(device);
909 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
914 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "size", "a >0 size");
918 switch (bdrv_truncate(bs, size)) {
922 error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device);
925 error_set(errp, QERR_UNSUPPORTED);
928 error_set(errp, QERR_DEVICE_IS_READ_ONLY, device);
931 error_set(errp, QERR_DEVICE_IN_USE, device);
934 error_set(errp, QERR_UNDEFINED_ERROR);
939 static QObject *qobject_from_block_job(BlockJob *job)
941 return qobject_from_jsonf("{ 'type': %s,"
943 "'len': %" PRId64 ","
944 "'offset': %" PRId64 ","
945 "'speed': %" PRId64 " }",
946 job->job_type->job_type,
947 bdrv_get_device_name(job->bs),
953 static void block_stream_cb(void *opaque, int ret)
955 BlockDriverState *bs = opaque;
958 trace_block_stream_cb(bs, bs->job, ret);
961 obj = qobject_from_block_job(bs->job);
963 QDict *dict = qobject_to_qdict(obj);
964 qdict_put(dict, "error", qstring_from_str(strerror(-ret)));
967 if (block_job_is_cancelled(bs->job)) {
968 monitor_protocol_event(QEVENT_BLOCK_JOB_CANCELLED, obj);
970 monitor_protocol_event(QEVENT_BLOCK_JOB_COMPLETED, obj);
974 drive_put_ref_bh_schedule(drive_get_by_blockdev(bs));
977 void qmp_block_stream(const char *device, bool has_base,
978 const char *base, Error **errp)
980 BlockDriverState *bs;
981 BlockDriverState *base_bs = NULL;
984 bs = bdrv_find(device);
986 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
991 base_bs = bdrv_find_backing_image(bs, base);
992 if (base_bs == NULL) {
993 error_set(errp, QERR_BASE_NOT_FOUND, base);
998 ret = stream_start(bs, base_bs, base, block_stream_cb, bs);
1002 error_set(errp, QERR_DEVICE_IN_USE, device);
1005 error_set(errp, QERR_NOT_SUPPORTED);
1010 /* Grab a reference so hotplug does not delete the BlockDriverState from
1013 drive_get_ref(drive_get_by_blockdev(bs));
1015 trace_qmp_block_stream(bs, bs->job);
1018 static BlockJob *find_block_job(const char *device)
1020 BlockDriverState *bs;
1022 bs = bdrv_find(device);
1023 if (!bs || !bs->job) {
1029 void qmp_block_job_set_speed(const char *device, int64_t value, Error **errp)
1031 BlockJob *job = find_block_job(device);
1034 error_set(errp, QERR_DEVICE_NOT_ACTIVE, device);
1038 if (block_job_set_speed(job, value) < 0) {
1039 error_set(errp, QERR_NOT_SUPPORTED);
1043 void qmp_block_job_cancel(const char *device, Error **errp)
1045 BlockJob *job = find_block_job(device);
1048 error_set(errp, QERR_DEVICE_NOT_ACTIVE, device);
1052 trace_qmp_block_job_cancel(job);
1053 block_job_cancel(job);
1056 static void do_qmp_query_block_jobs_one(void *opaque, BlockDriverState *bs)
1058 BlockJobInfoList **prev = opaque;
1059 BlockJob *job = bs->job;
1062 BlockJobInfoList *elem;
1063 BlockJobInfo *info = g_new(BlockJobInfo, 1);
1064 *info = (BlockJobInfo){
1065 .type = g_strdup(job->job_type->job_type),
1066 .device = g_strdup(bdrv_get_device_name(bs)),
1068 .offset = job->offset,
1069 .speed = job->speed,
1072 elem = g_new0(BlockJobInfoList, 1);
1075 (*prev)->next = elem;
1080 BlockJobInfoList *qmp_query_block_jobs(Error **errp)
1082 /* Dummy is a fake list element for holding the head pointer */
1083 BlockJobInfoList dummy = {};
1084 BlockJobInfoList *prev = &dummy;
1085 bdrv_iterate(do_qmp_query_block_jobs_one, &prev);