qerror: fix QERR_PROPERTY_VALUE_OUT_OF_RANGE description
[qemu/ar7.git] / blockdev.c
blobf5e7dba90cd5e016b4b56ece77e62e15aac76136
1 /*
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.
8 */
10 #include "block.h"
11 #include "blockdev.h"
12 #include "monitor.h"
13 #include "qerror.h"
14 #include "qemu-option.h"
15 #include "qemu-config.h"
16 #include "qemu-objects.h"
17 #include "sysemu.h"
18 #include "block_int.h"
19 #include "qmp-commands.h"
20 #include "trace.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] = {
26 [IF_NONE] = "none",
27 [IF_IDE] = "ide",
28 [IF_SCSI] = "scsi",
29 [IF_FLOPPY] = "floppy",
30 [IF_PFLASH] = "pflash",
31 [IF_MTD] = "mtd",
32 [IF_SD] = "sd",
33 [IF_VIRTIO] = "virtio",
34 [IF_XEN] = "xen",
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
45 * values.
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.
52 [IF_IDE] = 2,
53 [IF_SCSI] = 7,
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);
67 if (dinfo) {
68 dinfo->auto_del = 1;
72 void blockdev_auto_del(BlockDriverState *bs)
74 DriveInfo *dinfo = drive_get_by_blockdev(bs);
76 if (dinfo && dinfo->auto_del) {
77 drive_put_ref(dinfo);
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,
99 const char *optstr)
101 QemuOpts *opts;
102 char buf[32];
104 opts = drive_def(optstr);
105 if (!opts) {
106 return NULL;
108 if (type != IF_DEFAULT) {
109 qemu_opt_set(opts, "if", if_name[type]);
111 if (index >= 0) {
112 snprintf(buf, sizeof(buf), "%d", index);
113 qemu_opt_set(opts, "index", buf);
115 if (file)
116 qemu_opt_set(opts, "file", file);
117 return opts;
120 DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit)
122 DriveInfo *dinfo;
124 /* seek interface, bus and unit */
126 QTAILQ_FOREACH(dinfo, &drives, next) {
127 if (dinfo->type == type &&
128 dinfo->bus == bus &&
129 dinfo->unit == unit)
130 return dinfo;
133 return NULL;
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)
145 int max_bus;
146 DriveInfo *dinfo;
148 max_bus = -1;
149 QTAILQ_FOREACH(dinfo, &drives, next) {
150 if(dinfo->type == type &&
151 dinfo->bus > max_bus)
152 max_bus = dinfo->bus;
154 return max_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
159 appropriate bus. */
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)
169 DriveInfo *dinfo;
171 QTAILQ_FOREACH(dinfo, &drives, next) {
172 if (dinfo->bdrv == bs) {
173 return dinfo;
176 return NULL;
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);
188 g_free(dinfo->id);
189 QTAILQ_REMOVE(&drives, dinfo, next);
190 g_free(dinfo);
193 void drive_put_ref(DriveInfo *dinfo)
195 assert(dinfo->refcount);
196 if (--dinfo->refcount == 0) {
197 drive_uninit(dinfo);
201 void drive_get_ref(DriveInfo *dinfo)
203 dinfo->refcount++;
206 typedef struct {
207 QEMUBH *bh;
208 DriveInfo *dinfo;
209 } DrivePutRefBH;
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);
217 g_free(s);
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
225 * reference.
227 static void drive_put_ref_bh_schedule(DriveInfo *dinfo)
229 DrivePutRefBH *s;
231 s = g_new(DrivePutRefBH, 1);
232 s->bh = qemu_bh_new(drive_put_ref_bh, s);
233 s->dinfo = dinfo;
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;
247 } else {
248 error_report("'%s' invalid %s error action",
249 buf, is_read ? "read" : "write");
250 return -1;
254 static bool do_check_io_limits(BlockIOLimit *io_limits)
256 bool bps_flag;
257 bool iops_flag;
259 assert(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) {
268 return false;
271 return true;
274 DriveInfo *drive_init(QemuOpts *opts, int default_to_scsi)
276 const char *buf;
277 const char *file = NULL;
278 char devname[128];
279 const char *serial;
280 const char *mediastr = "";
281 BlockInterfaceType type;
282 enum { MEDIA_DISK, MEDIA_CDROM } media;
283 int bus_id, unit_id;
284 int cyls, heads, secs, translation;
285 BlockDriver *drv = NULL;
286 int max_devs;
287 int index;
288 int ro = 0;
289 int bdrv_flags = 0;
290 int on_read_error, on_write_error;
291 const char *devaddr;
292 DriveInfo *dinfo;
293 BlockIOLimit io_limits;
294 int snapshot = 0;
295 bool copy_on_read;
296 int ret;
298 translation = BIOS_ATA_TRANSLATION_AUTO;
299 media = MEDIA_DISK;
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);
323 return NULL;
325 } else {
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");
335 return NULL;
337 if (heads < 1 || (type == IF_IDE && heads > 16)) {
338 error_report("invalid physical heads number");
339 return NULL;
341 if (secs < 1 || (type == IF_IDE && secs > 63)) {
342 error_report("invalid physical secs number");
343 return NULL;
347 if ((buf = qemu_opt_get(opts, "trans")) != NULL) {
348 if (!cyls) {
349 error_report("'%s' trans must be used with cyls, heads and secs",
350 buf);
351 return NULL;
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;
359 else {
360 error_report("'%s' invalid translation type", buf);
361 return NULL;
365 if ((buf = qemu_opt_get(opts, "media")) != NULL) {
366 if (!strcmp(buf, "disk")) {
367 media = MEDIA_DISK;
368 } else if (!strcmp(buf, "cdrom")) {
369 if (cyls || secs || heads) {
370 error_report("CHS can't be set with media=%s", buf);
371 return NULL;
373 media = MEDIA_CDROM;
374 } else {
375 error_report("'%s' invalid media", buf);
376 return NULL;
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");
383 return NULL;
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 */
393 } else {
394 error_report("invalid aio option");
395 return NULL;
398 #endif
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);
404 error_printf("\n");
405 return NULL;
407 drv = bdrv_find_whitelisted_format(buf);
408 if (!drv) {
409 error_report("'%s' invalid format", buf);
410 return NULL;
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");
431 return NULL;
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");
438 return NULL;
441 on_write_error = parse_block_error_action(buf, 0);
442 if (on_write_error < 0) {
443 return NULL;
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");
451 return NULL;
454 on_read_error = parse_block_error_action(buf, 1);
455 if (on_read_error < 0) {
456 return NULL;
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");
463 return NULL;
467 /* compute bus and unit according index */
469 if (index != -1) {
470 if (bus_id != 0 || unit_id != -1) {
471 error_report("index cannot be used with bus and unit");
472 return NULL;
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
482 if (unit_id == -1) {
483 unit_id = 0;
484 while (drive_get(type, bus_id, unit_id) != NULL) {
485 unit_id++;
486 if (max_devs && unit_id >= max_devs) {
487 unit_id -= max_devs;
488 bus_id++;
493 /* check unit id */
495 if (max_devs && unit_id >= max_devs) {
496 error_report("unit %d too big (max is %d)",
497 unit_id, max_devs - 1);
498 return NULL;
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);
508 return NULL;
511 /* init */
513 dinfo = g_malloc0(sizeof(*dinfo));
514 if ((buf = qemu_opts_id(opts)) != NULL) {
515 dinfo->id = g_strdup(buf);
516 } else {
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";
521 if (max_devs)
522 snprintf(dinfo->id, 32, "%s%i%s%i",
523 devname, bus_id, mediastr, unit_id);
524 else
525 snprintf(dinfo->id, 32, "%s%s%i",
526 devname, mediastr, unit_id);
528 dinfo->bdrv = bdrv_new(dinfo->id);
529 dinfo->devaddr = devaddr;
530 dinfo->type = type;
531 dinfo->bus = bus_id;
532 dinfo->unit = unit_id;
533 dinfo->opts = opts;
534 dinfo->refcount = 1;
535 if (serial) {
536 pstrcpy(dinfo->serial, sizeof(dinfo->serial), serial);
538 QTAILQ_INSERT_TAIL(&drives, dinfo, next);
540 bdrv_set_on_error(dinfo->bdrv, on_read_error, on_write_error);
542 /* disk I/O throttling */
543 bdrv_set_io_limits(dinfo->bdrv, &io_limits);
545 switch(type) {
546 case IF_IDE:
547 case IF_SCSI:
548 case IF_XEN:
549 case IF_NONE:
550 switch(media) {
551 case MEDIA_DISK:
552 if (cyls != 0) {
553 bdrv_set_geometry_hint(dinfo->bdrv, cyls, heads, secs);
554 bdrv_set_translation_hint(dinfo->bdrv, translation);
556 break;
557 case MEDIA_CDROM:
558 dinfo->media_cd = 1;
559 break;
561 break;
562 case IF_SD:
563 case IF_FLOPPY:
564 case IF_PFLASH:
565 case IF_MTD:
566 break;
567 case IF_VIRTIO:
568 /* add virtio block device */
569 opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0);
570 if (arch_type == QEMU_ARCH_S390X) {
571 qemu_opt_set(opts, "driver", "virtio-blk-s390");
572 } else {
573 qemu_opt_set(opts, "driver", "virtio-blk-pci");
575 qemu_opt_set(opts, "drive", dinfo->id);
576 if (devaddr)
577 qemu_opt_set(opts, "addr", devaddr);
578 break;
579 default:
580 abort();
582 if (!file || !*file) {
583 return dinfo;
585 if (snapshot) {
586 /* always use cache=unsafe with snapshot */
587 bdrv_flags &= ~BDRV_O_CACHE_MASK;
588 bdrv_flags |= (BDRV_O_SNAPSHOT|BDRV_O_CACHE_WB|BDRV_O_NO_FLUSH);
591 if (copy_on_read) {
592 bdrv_flags |= BDRV_O_COPY_ON_READ;
595 if (media == MEDIA_CDROM) {
596 /* CDROM is fine for any interface, don't check. */
597 ro = 1;
598 } else if (ro == 1) {
599 if (type != IF_SCSI && type != IF_VIRTIO && type != IF_FLOPPY &&
600 type != IF_NONE && type != IF_PFLASH) {
601 error_report("readonly not supported by this bus type");
602 goto err;
606 bdrv_flags |= ro ? 0 : BDRV_O_RDWR;
608 ret = bdrv_open(dinfo->bdrv, file, bdrv_flags, drv);
609 if (ret < 0) {
610 error_report("could not open disk image %s: %s",
611 file, strerror(-ret));
612 goto err;
615 if (bdrv_key_required(dinfo->bdrv))
616 autostart = 0;
617 return dinfo;
619 err:
620 bdrv_delete(dinfo->bdrv);
621 g_free(dinfo->id);
622 QTAILQ_REMOVE(&drives, dinfo, next);
623 g_free(dinfo);
624 return NULL;
627 void do_commit(Monitor *mon, const QDict *qdict)
629 const char *device = qdict_get_str(qdict, "device");
630 BlockDriverState *bs;
631 int ret;
633 if (!strcmp(device, "all")) {
634 ret = bdrv_commit_all();
635 if (ret == -EBUSY) {
636 qerror_report(QERR_DEVICE_IN_USE, device);
637 return;
639 } else {
640 bs = bdrv_find(device);
641 if (!bs) {
642 qerror_report(QERR_DEVICE_NOT_FOUND, device);
643 return;
645 ret = bdrv_commit(bs);
646 if (ret == -EBUSY) {
647 qerror_report(QERR_DEVICE_IN_USE, device);
648 return;
653 static void blockdev_do_action(int kind, void *data, Error **errp)
655 BlockdevAction action;
656 BlockdevActionList list;
658 action.kind = kind;
659 action.data = data;
660 list.value = &action;
661 list.next = NULL;
662 qmp_transaction(&list, errp);
665 void qmp_blockdev_snapshot_sync(const char *device, const char *snapshot_file,
666 bool has_format, const char *format,
667 bool has_mode, enum NewImageMode mode,
668 Error **errp)
670 BlockdevSnapshot snapshot = {
671 .device = (char *) device,
672 .snapshot_file = (char *) snapshot_file,
673 .has_format = has_format,
674 .format = (char *) format,
675 .has_mode = has_mode,
676 .mode = mode,
678 blockdev_do_action(BLOCKDEV_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC, &snapshot,
679 errp);
683 /* New and old BlockDriverState structs for group snapshots */
684 typedef struct BlkTransactionStates {
685 BlockDriverState *old_bs;
686 BlockDriverState *new_bs;
687 QSIMPLEQ_ENTRY(BlkTransactionStates) entry;
688 } BlkTransactionStates;
691 * 'Atomic' group snapshots. The snapshots are taken as a set, and if any fail
692 * then we do not pivot any of the devices in the group, and abandon the
693 * snapshots
695 void qmp_transaction(BlockdevActionList *dev_list, Error **errp)
697 int ret = 0;
698 BlockdevActionList *dev_entry = dev_list;
699 BlkTransactionStates *states, *next;
701 QSIMPLEQ_HEAD(snap_bdrv_states, BlkTransactionStates) snap_bdrv_states;
702 QSIMPLEQ_INIT(&snap_bdrv_states);
704 /* drain all i/o before any snapshots */
705 bdrv_drain_all();
707 /* We don't do anything in this loop that commits us to the snapshot */
708 while (NULL != dev_entry) {
709 BlockdevAction *dev_info = NULL;
710 BlockDriver *proto_drv;
711 BlockDriver *drv;
712 int flags;
713 enum NewImageMode mode;
714 const char *new_image_file;
715 const char *device;
716 const char *format = "qcow2";
718 dev_info = dev_entry->value;
719 dev_entry = dev_entry->next;
721 states = g_malloc0(sizeof(BlkTransactionStates));
722 QSIMPLEQ_INSERT_TAIL(&snap_bdrv_states, states, entry);
724 switch (dev_info->kind) {
725 case BLOCKDEV_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC:
726 device = dev_info->blockdev_snapshot_sync->device;
727 if (!dev_info->blockdev_snapshot_sync->has_mode) {
728 dev_info->blockdev_snapshot_sync->mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS;
730 new_image_file = dev_info->blockdev_snapshot_sync->snapshot_file;
731 if (dev_info->blockdev_snapshot_sync->has_format) {
732 format = dev_info->blockdev_snapshot_sync->format;
734 mode = dev_info->blockdev_snapshot_sync->mode;
735 break;
736 default:
737 abort();
740 drv = bdrv_find_format(format);
741 if (!drv) {
742 error_set(errp, QERR_INVALID_BLOCK_FORMAT, format);
743 goto delete_and_fail;
746 states->old_bs = bdrv_find(device);
747 if (!states->old_bs) {
748 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
749 goto delete_and_fail;
752 if (bdrv_in_use(states->old_bs)) {
753 error_set(errp, QERR_DEVICE_IN_USE, device);
754 goto delete_and_fail;
757 if (!bdrv_is_read_only(states->old_bs) &&
758 bdrv_is_inserted(states->old_bs)) {
760 if (bdrv_flush(states->old_bs)) {
761 error_set(errp, QERR_IO_ERROR);
762 goto delete_and_fail;
766 flags = states->old_bs->open_flags;
768 proto_drv = bdrv_find_protocol(new_image_file);
769 if (!proto_drv) {
770 error_set(errp, QERR_INVALID_BLOCK_FORMAT, format);
771 goto delete_and_fail;
774 /* create new image w/backing file */
775 if (mode != NEW_IMAGE_MODE_EXISTING) {
776 ret = bdrv_img_create(new_image_file, format,
777 states->old_bs->filename,
778 states->old_bs->drv->format_name,
779 NULL, -1, flags);
780 if (ret) {
781 error_set(errp, QERR_OPEN_FILE_FAILED, new_image_file);
782 goto delete_and_fail;
786 /* We will manually add the backing_hd field to the bs later */
787 states->new_bs = bdrv_new("");
788 ret = bdrv_open(states->new_bs, new_image_file,
789 flags | BDRV_O_NO_BACKING, drv);
790 if (ret != 0) {
791 error_set(errp, QERR_OPEN_FILE_FAILED, new_image_file);
792 goto delete_and_fail;
797 /* Now we are going to do the actual pivot. Everything up to this point
798 * is reversible, but we are committed at this point */
799 QSIMPLEQ_FOREACH(states, &snap_bdrv_states, entry) {
800 /* This removes our old bs from the bdrv_states, and adds the new bs */
801 bdrv_append(states->new_bs, states->old_bs);
804 /* success */
805 goto exit;
807 delete_and_fail:
809 * failure, and it is all-or-none; abandon each new bs, and keep using
810 * the original bs for all images
812 QSIMPLEQ_FOREACH(states, &snap_bdrv_states, entry) {
813 if (states->new_bs) {
814 bdrv_delete(states->new_bs);
817 exit:
818 QSIMPLEQ_FOREACH_SAFE(states, &snap_bdrv_states, entry, next) {
819 g_free(states);
821 return;
825 static void eject_device(BlockDriverState *bs, int force, Error **errp)
827 if (bdrv_in_use(bs)) {
828 error_set(errp, QERR_DEVICE_IN_USE, bdrv_get_device_name(bs));
829 return;
831 if (!bdrv_dev_has_removable_media(bs)) {
832 error_set(errp, QERR_DEVICE_NOT_REMOVABLE, bdrv_get_device_name(bs));
833 return;
836 if (bdrv_dev_is_medium_locked(bs) && !bdrv_dev_is_tray_open(bs)) {
837 bdrv_dev_eject_request(bs, force);
838 if (!force) {
839 error_set(errp, QERR_DEVICE_LOCKED, bdrv_get_device_name(bs));
840 return;
844 bdrv_close(bs);
847 void qmp_eject(const char *device, bool has_force, bool force, Error **errp)
849 BlockDriverState *bs;
851 bs = bdrv_find(device);
852 if (!bs) {
853 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
854 return;
857 eject_device(bs, force, errp);
860 void qmp_block_passwd(const char *device, const char *password, Error **errp)
862 BlockDriverState *bs;
863 int err;
865 bs = bdrv_find(device);
866 if (!bs) {
867 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
868 return;
871 err = bdrv_set_key(bs, password);
872 if (err == -EINVAL) {
873 error_set(errp, QERR_DEVICE_NOT_ENCRYPTED, bdrv_get_device_name(bs));
874 return;
875 } else if (err < 0) {
876 error_set(errp, QERR_INVALID_PASSWORD);
877 return;
881 static void qmp_bdrv_open_encrypted(BlockDriverState *bs, const char *filename,
882 int bdrv_flags, BlockDriver *drv,
883 const char *password, Error **errp)
885 if (bdrv_open(bs, filename, bdrv_flags, drv) < 0) {
886 error_set(errp, QERR_OPEN_FILE_FAILED, filename);
887 return;
890 if (bdrv_key_required(bs)) {
891 if (password) {
892 if (bdrv_set_key(bs, password) < 0) {
893 error_set(errp, QERR_INVALID_PASSWORD);
895 } else {
896 error_set(errp, QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs),
897 bdrv_get_encrypted_filename(bs));
899 } else if (password) {
900 error_set(errp, QERR_DEVICE_NOT_ENCRYPTED, bdrv_get_device_name(bs));
904 void qmp_change_blockdev(const char *device, const char *filename,
905 bool has_format, const char *format, Error **errp)
907 BlockDriverState *bs;
908 BlockDriver *drv = NULL;
909 int bdrv_flags;
910 Error *err = NULL;
912 bs = bdrv_find(device);
913 if (!bs) {
914 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
915 return;
918 if (format) {
919 drv = bdrv_find_whitelisted_format(format);
920 if (!drv) {
921 error_set(errp, QERR_INVALID_BLOCK_FORMAT, format);
922 return;
926 eject_device(bs, 0, &err);
927 if (error_is_set(&err)) {
928 error_propagate(errp, err);
929 return;
932 bdrv_flags = bdrv_is_read_only(bs) ? 0 : BDRV_O_RDWR;
933 bdrv_flags |= bdrv_is_snapshot(bs) ? BDRV_O_SNAPSHOT : 0;
935 qmp_bdrv_open_encrypted(bs, filename, bdrv_flags, drv, NULL, errp);
938 /* throttling disk I/O limits */
939 void qmp_block_set_io_throttle(const char *device, int64_t bps, int64_t bps_rd,
940 int64_t bps_wr, int64_t iops, int64_t iops_rd,
941 int64_t iops_wr, Error **errp)
943 BlockIOLimit io_limits;
944 BlockDriverState *bs;
946 bs = bdrv_find(device);
947 if (!bs) {
948 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
949 return;
952 io_limits.bps[BLOCK_IO_LIMIT_TOTAL] = bps;
953 io_limits.bps[BLOCK_IO_LIMIT_READ] = bps_rd;
954 io_limits.bps[BLOCK_IO_LIMIT_WRITE] = bps_wr;
955 io_limits.iops[BLOCK_IO_LIMIT_TOTAL]= iops;
956 io_limits.iops[BLOCK_IO_LIMIT_READ] = iops_rd;
957 io_limits.iops[BLOCK_IO_LIMIT_WRITE]= iops_wr;
959 if (!do_check_io_limits(&io_limits)) {
960 error_set(errp, QERR_INVALID_PARAMETER_COMBINATION);
961 return;
964 bs->io_limits = io_limits;
965 bs->slice_time = BLOCK_IO_SLICE_TIME;
967 if (!bs->io_limits_enabled && bdrv_io_limits_enabled(bs)) {
968 bdrv_io_limits_enable(bs);
969 } else if (bs->io_limits_enabled && !bdrv_io_limits_enabled(bs)) {
970 bdrv_io_limits_disable(bs);
971 } else {
972 if (bs->block_timer) {
973 qemu_mod_timer(bs->block_timer, qemu_get_clock_ns(vm_clock));
978 int do_drive_del(Monitor *mon, const QDict *qdict, QObject **ret_data)
980 const char *id = qdict_get_str(qdict, "id");
981 BlockDriverState *bs;
983 bs = bdrv_find(id);
984 if (!bs) {
985 qerror_report(QERR_DEVICE_NOT_FOUND, id);
986 return -1;
988 if (bdrv_in_use(bs)) {
989 qerror_report(QERR_DEVICE_IN_USE, id);
990 return -1;
993 /* quiesce block driver; prevent further io */
994 bdrv_drain_all();
995 bdrv_flush(bs);
996 bdrv_close(bs);
998 /* if we have a device attached to this BlockDriverState
999 * then we need to make the drive anonymous until the device
1000 * can be removed. If this is a drive with no device backing
1001 * then we can just get rid of the block driver state right here.
1003 if (bdrv_get_attached_dev(bs)) {
1004 bdrv_make_anon(bs);
1005 } else {
1006 drive_uninit(drive_get_by_blockdev(bs));
1009 return 0;
1012 void qmp_block_resize(const char *device, int64_t size, Error **errp)
1014 BlockDriverState *bs;
1016 bs = bdrv_find(device);
1017 if (!bs) {
1018 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1019 return;
1022 if (size < 0) {
1023 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "size", "a >0 size");
1024 return;
1027 switch (bdrv_truncate(bs, size)) {
1028 case 0:
1029 break;
1030 case -ENOMEDIUM:
1031 error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device);
1032 break;
1033 case -ENOTSUP:
1034 error_set(errp, QERR_UNSUPPORTED);
1035 break;
1036 case -EACCES:
1037 error_set(errp, QERR_DEVICE_IS_READ_ONLY, device);
1038 break;
1039 case -EBUSY:
1040 error_set(errp, QERR_DEVICE_IN_USE, device);
1041 break;
1042 default:
1043 error_set(errp, QERR_UNDEFINED_ERROR);
1044 break;
1048 static QObject *qobject_from_block_job(BlockJob *job)
1050 return qobject_from_jsonf("{ 'type': %s,"
1051 "'device': %s,"
1052 "'len': %" PRId64 ","
1053 "'offset': %" PRId64 ","
1054 "'speed': %" PRId64 " }",
1055 job->job_type->job_type,
1056 bdrv_get_device_name(job->bs),
1057 job->len,
1058 job->offset,
1059 job->speed);
1062 static void block_stream_cb(void *opaque, int ret)
1064 BlockDriverState *bs = opaque;
1065 QObject *obj;
1067 trace_block_stream_cb(bs, bs->job, ret);
1069 assert(bs->job);
1070 obj = qobject_from_block_job(bs->job);
1071 if (ret < 0) {
1072 QDict *dict = qobject_to_qdict(obj);
1073 qdict_put(dict, "error", qstring_from_str(strerror(-ret)));
1076 if (block_job_is_cancelled(bs->job)) {
1077 monitor_protocol_event(QEVENT_BLOCK_JOB_CANCELLED, obj);
1078 } else {
1079 monitor_protocol_event(QEVENT_BLOCK_JOB_COMPLETED, obj);
1081 qobject_decref(obj);
1083 drive_put_ref_bh_schedule(drive_get_by_blockdev(bs));
1086 void qmp_block_stream(const char *device, bool has_base,
1087 const char *base, Error **errp)
1089 BlockDriverState *bs;
1090 BlockDriverState *base_bs = NULL;
1091 int ret;
1093 bs = bdrv_find(device);
1094 if (!bs) {
1095 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1096 return;
1099 if (base) {
1100 base_bs = bdrv_find_backing_image(bs, base);
1101 if (base_bs == NULL) {
1102 error_set(errp, QERR_BASE_NOT_FOUND, base);
1103 return;
1107 ret = stream_start(bs, base_bs, base, block_stream_cb, bs);
1108 if (ret < 0) {
1109 switch (ret) {
1110 case -EBUSY:
1111 error_set(errp, QERR_DEVICE_IN_USE, device);
1112 return;
1113 default:
1114 error_set(errp, QERR_NOT_SUPPORTED);
1115 return;
1119 /* Grab a reference so hotplug does not delete the BlockDriverState from
1120 * underneath us.
1122 drive_get_ref(drive_get_by_blockdev(bs));
1124 trace_qmp_block_stream(bs, bs->job);
1127 static BlockJob *find_block_job(const char *device)
1129 BlockDriverState *bs;
1131 bs = bdrv_find(device);
1132 if (!bs || !bs->job) {
1133 return NULL;
1135 return bs->job;
1138 void qmp_block_job_set_speed(const char *device, int64_t value, Error **errp)
1140 BlockJob *job = find_block_job(device);
1142 if (!job) {
1143 error_set(errp, QERR_DEVICE_NOT_ACTIVE, device);
1144 return;
1147 if (block_job_set_speed(job, value) < 0) {
1148 error_set(errp, QERR_NOT_SUPPORTED);
1152 void qmp_block_job_cancel(const char *device, Error **errp)
1154 BlockJob *job = find_block_job(device);
1156 if (!job) {
1157 error_set(errp, QERR_DEVICE_NOT_ACTIVE, device);
1158 return;
1161 trace_qmp_block_job_cancel(job);
1162 block_job_cancel(job);
1165 static void do_qmp_query_block_jobs_one(void *opaque, BlockDriverState *bs)
1167 BlockJobInfoList **prev = opaque;
1168 BlockJob *job = bs->job;
1170 if (job) {
1171 BlockJobInfoList *elem;
1172 BlockJobInfo *info = g_new(BlockJobInfo, 1);
1173 *info = (BlockJobInfo){
1174 .type = g_strdup(job->job_type->job_type),
1175 .device = g_strdup(bdrv_get_device_name(bs)),
1176 .len = job->len,
1177 .offset = job->offset,
1178 .speed = job->speed,
1181 elem = g_new0(BlockJobInfoList, 1);
1182 elem->value = info;
1184 (*prev)->next = elem;
1185 *prev = elem;
1189 BlockJobInfoList *qmp_query_block_jobs(Error **errp)
1191 /* Dummy is a fake list element for holding the head pointer */
1192 BlockJobInfoList dummy = {};
1193 BlockJobInfoList *prev = &dummy;
1194 bdrv_iterate(do_qmp_query_block_jobs_one, &prev);
1195 return dummy.next;