block: Enable the new throttling code in the block layer.
[qemu/ar7.git] / blockdev.c
blob5f5ba968edbd81dce68c31a9d9bda2dd0bc771d2
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.
9 * This file incorporates work covered by the following copyright and
10 * permission notice:
12 * Copyright (c) 2003-2008 Fabrice Bellard
14 * Permission is hereby granted, free of charge, to any person obtaining a copy
15 * of this software and associated documentation files (the "Software"), to deal
16 * in the Software without restriction, including without limitation the rights
17 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18 * copies of the Software, and to permit persons to whom the Software is
19 * furnished to do so, subject to the following conditions:
21 * The above copyright notice and this permission notice shall be included in
22 * all copies or substantial portions of the Software.
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
27 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
30 * THE SOFTWARE.
33 #include "sysemu/blockdev.h"
34 #include "hw/block/block.h"
35 #include "block/blockjob.h"
36 #include "monitor/monitor.h"
37 #include "qapi/qmp/qerror.h"
38 #include "qemu/option.h"
39 #include "qemu/config-file.h"
40 #include "qapi/qmp/types.h"
41 #include "sysemu/sysemu.h"
42 #include "block/block_int.h"
43 #include "qmp-commands.h"
44 #include "trace.h"
45 #include "sysemu/arch_init.h"
47 static QTAILQ_HEAD(drivelist, DriveInfo) drives = QTAILQ_HEAD_INITIALIZER(drives);
48 extern QemuOptsList qemu_common_drive_opts;
50 static const char *const if_name[IF_COUNT] = {
51 [IF_NONE] = "none",
52 [IF_IDE] = "ide",
53 [IF_SCSI] = "scsi",
54 [IF_FLOPPY] = "floppy",
55 [IF_PFLASH] = "pflash",
56 [IF_MTD] = "mtd",
57 [IF_SD] = "sd",
58 [IF_VIRTIO] = "virtio",
59 [IF_XEN] = "xen",
62 static const int if_max_devs[IF_COUNT] = {
64 * Do not change these numbers! They govern how drive option
65 * index maps to unit and bus. That mapping is ABI.
67 * All controllers used to imlement if=T drives need to support
68 * if_max_devs[T] units, for any T with if_max_devs[T] != 0.
69 * Otherwise, some index values map to "impossible" bus, unit
70 * values.
72 * For instance, if you change [IF_SCSI] to 255, -drive
73 * if=scsi,index=12 no longer means bus=1,unit=5, but
74 * bus=0,unit=12. With an lsi53c895a controller (7 units max),
75 * the drive can't be set up. Regression.
77 [IF_IDE] = 2,
78 [IF_SCSI] = 7,
82 * We automatically delete the drive when a device using it gets
83 * unplugged. Questionable feature, but we can't just drop it.
84 * Device models call blockdev_mark_auto_del() to schedule the
85 * automatic deletion, and generic qdev code calls blockdev_auto_del()
86 * when deletion is actually safe.
88 void blockdev_mark_auto_del(BlockDriverState *bs)
90 DriveInfo *dinfo = drive_get_by_blockdev(bs);
92 if (bs->job) {
93 block_job_cancel(bs->job);
95 if (dinfo) {
96 dinfo->auto_del = 1;
100 void blockdev_auto_del(BlockDriverState *bs)
102 DriveInfo *dinfo = drive_get_by_blockdev(bs);
104 if (dinfo && dinfo->auto_del) {
105 drive_put_ref(dinfo);
109 static int drive_index_to_bus_id(BlockInterfaceType type, int index)
111 int max_devs = if_max_devs[type];
112 return max_devs ? index / max_devs : 0;
115 static int drive_index_to_unit_id(BlockInterfaceType type, int index)
117 int max_devs = if_max_devs[type];
118 return max_devs ? index % max_devs : index;
121 QemuOpts *drive_def(const char *optstr)
123 return qemu_opts_parse(qemu_find_opts("drive"), optstr, 0);
126 QemuOpts *drive_add(BlockInterfaceType type, int index, const char *file,
127 const char *optstr)
129 QemuOpts *opts;
130 char buf[32];
132 opts = drive_def(optstr);
133 if (!opts) {
134 return NULL;
136 if (type != IF_DEFAULT) {
137 qemu_opt_set(opts, "if", if_name[type]);
139 if (index >= 0) {
140 snprintf(buf, sizeof(buf), "%d", index);
141 qemu_opt_set(opts, "index", buf);
143 if (file)
144 qemu_opt_set(opts, "file", file);
145 return opts;
148 DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit)
150 DriveInfo *dinfo;
152 /* seek interface, bus and unit */
154 QTAILQ_FOREACH(dinfo, &drives, next) {
155 if (dinfo->type == type &&
156 dinfo->bus == bus &&
157 dinfo->unit == unit)
158 return dinfo;
161 return NULL;
164 DriveInfo *drive_get_by_index(BlockInterfaceType type, int index)
166 return drive_get(type,
167 drive_index_to_bus_id(type, index),
168 drive_index_to_unit_id(type, index));
171 int drive_get_max_bus(BlockInterfaceType type)
173 int max_bus;
174 DriveInfo *dinfo;
176 max_bus = -1;
177 QTAILQ_FOREACH(dinfo, &drives, next) {
178 if(dinfo->type == type &&
179 dinfo->bus > max_bus)
180 max_bus = dinfo->bus;
182 return max_bus;
185 /* Get a block device. This should only be used for single-drive devices
186 (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the
187 appropriate bus. */
188 DriveInfo *drive_get_next(BlockInterfaceType type)
190 static int next_block_unit[IF_COUNT];
192 return drive_get(type, 0, next_block_unit[type]++);
195 DriveInfo *drive_get_by_blockdev(BlockDriverState *bs)
197 DriveInfo *dinfo;
199 QTAILQ_FOREACH(dinfo, &drives, next) {
200 if (dinfo->bdrv == bs) {
201 return dinfo;
204 return NULL;
207 static void bdrv_format_print(void *opaque, const char *name)
209 error_printf(" %s", name);
212 static void drive_uninit(DriveInfo *dinfo)
214 qemu_opts_del(dinfo->opts);
215 bdrv_delete(dinfo->bdrv);
216 g_free(dinfo->id);
217 QTAILQ_REMOVE(&drives, dinfo, next);
218 g_free(dinfo->serial);
219 g_free(dinfo);
222 void drive_put_ref(DriveInfo *dinfo)
224 assert(dinfo->refcount);
225 if (--dinfo->refcount == 0) {
226 drive_uninit(dinfo);
230 void drive_get_ref(DriveInfo *dinfo)
232 dinfo->refcount++;
235 typedef struct {
236 QEMUBH *bh;
237 DriveInfo *dinfo;
238 } DrivePutRefBH;
240 static void drive_put_ref_bh(void *opaque)
242 DrivePutRefBH *s = opaque;
244 drive_put_ref(s->dinfo);
245 qemu_bh_delete(s->bh);
246 g_free(s);
250 * Release a drive reference in a BH
252 * It is not possible to use drive_put_ref() from a callback function when the
253 * callers still need the drive. In such cases we schedule a BH to release the
254 * reference.
256 static void drive_put_ref_bh_schedule(DriveInfo *dinfo)
258 DrivePutRefBH *s;
260 s = g_new(DrivePutRefBH, 1);
261 s->bh = qemu_bh_new(drive_put_ref_bh, s);
262 s->dinfo = dinfo;
263 qemu_bh_schedule(s->bh);
266 static int parse_block_error_action(const char *buf, bool is_read)
268 if (!strcmp(buf, "ignore")) {
269 return BLOCKDEV_ON_ERROR_IGNORE;
270 } else if (!is_read && !strcmp(buf, "enospc")) {
271 return BLOCKDEV_ON_ERROR_ENOSPC;
272 } else if (!strcmp(buf, "stop")) {
273 return BLOCKDEV_ON_ERROR_STOP;
274 } else if (!strcmp(buf, "report")) {
275 return BLOCKDEV_ON_ERROR_REPORT;
276 } else {
277 error_report("'%s' invalid %s error action",
278 buf, is_read ? "read" : "write");
279 return -1;
283 static bool check_throttle_config(ThrottleConfig *cfg, Error **errp)
285 if (throttle_conflicting(cfg)) {
286 error_setg(errp, "bps/iops/max total values and read/write values"
287 " cannot be used at the same time");
288 return false;
291 if (!throttle_is_valid(cfg)) {
292 error_setg(errp, "bps/iops/maxs values must be 0 or greater");
293 return false;
296 return true;
299 static DriveInfo *blockdev_init(QemuOpts *all_opts,
300 BlockInterfaceType block_default_type)
302 const char *buf;
303 const char *file = NULL;
304 const char *serial;
305 const char *mediastr = "";
306 BlockInterfaceType type;
307 enum { MEDIA_DISK, MEDIA_CDROM } media;
308 int bus_id, unit_id;
309 int cyls, heads, secs, translation;
310 int max_devs;
311 int index;
312 int ro = 0;
313 int bdrv_flags = 0;
314 int on_read_error, on_write_error;
315 const char *devaddr;
316 DriveInfo *dinfo;
317 ThrottleConfig cfg;
318 int snapshot = 0;
319 bool copy_on_read;
320 int ret;
321 Error *error = NULL;
322 QemuOpts *opts;
323 QDict *bs_opts;
324 const char *id;
325 bool has_driver_specific_opts;
326 BlockDriver *drv = NULL;
328 translation = BIOS_ATA_TRANSLATION_AUTO;
329 media = MEDIA_DISK;
331 /* Check common options by copying from all_opts to opts, all other options
332 * are stored in bs_opts. */
333 id = qemu_opts_id(all_opts);
334 opts = qemu_opts_create(&qemu_common_drive_opts, id, 1, &error);
335 if (error_is_set(&error)) {
336 qerror_report_err(error);
337 error_free(error);
338 return NULL;
341 bs_opts = qdict_new();
342 qemu_opts_to_qdict(all_opts, bs_opts);
343 qemu_opts_absorb_qdict(opts, bs_opts, &error);
344 if (error_is_set(&error)) {
345 qerror_report_err(error);
346 error_free(error);
347 return NULL;
350 if (id) {
351 qdict_del(bs_opts, "id");
354 has_driver_specific_opts = !!qdict_size(bs_opts);
356 /* extract parameters */
357 bus_id = qemu_opt_get_number(opts, "bus", 0);
358 unit_id = qemu_opt_get_number(opts, "unit", -1);
359 index = qemu_opt_get_number(opts, "index", -1);
361 cyls = qemu_opt_get_number(opts, "cyls", 0);
362 heads = qemu_opt_get_number(opts, "heads", 0);
363 secs = qemu_opt_get_number(opts, "secs", 0);
365 snapshot = qemu_opt_get_bool(opts, "snapshot", 0);
366 ro = qemu_opt_get_bool(opts, "read-only", 0);
367 copy_on_read = qemu_opt_get_bool(opts, "copy-on-read", false);
369 file = qemu_opt_get(opts, "file");
370 serial = qemu_opt_get(opts, "serial");
372 if ((buf = qemu_opt_get(opts, "if")) != NULL) {
373 for (type = 0; type < IF_COUNT && strcmp(buf, if_name[type]); type++)
375 if (type == IF_COUNT) {
376 error_report("unsupported bus type '%s'", buf);
377 return NULL;
379 } else {
380 type = block_default_type;
383 max_devs = if_max_devs[type];
385 if (cyls || heads || secs) {
386 if (cyls < 1) {
387 error_report("invalid physical cyls number");
388 return NULL;
390 if (heads < 1) {
391 error_report("invalid physical heads number");
392 return NULL;
394 if (secs < 1) {
395 error_report("invalid physical secs number");
396 return NULL;
400 if ((buf = qemu_opt_get(opts, "trans")) != NULL) {
401 if (!cyls) {
402 error_report("'%s' trans must be used with cyls, heads and secs",
403 buf);
404 return NULL;
406 if (!strcmp(buf, "none"))
407 translation = BIOS_ATA_TRANSLATION_NONE;
408 else if (!strcmp(buf, "lba"))
409 translation = BIOS_ATA_TRANSLATION_LBA;
410 else if (!strcmp(buf, "auto"))
411 translation = BIOS_ATA_TRANSLATION_AUTO;
412 else {
413 error_report("'%s' invalid translation type", buf);
414 return NULL;
418 if ((buf = qemu_opt_get(opts, "media")) != NULL) {
419 if (!strcmp(buf, "disk")) {
420 media = MEDIA_DISK;
421 } else if (!strcmp(buf, "cdrom")) {
422 if (cyls || secs || heads) {
423 error_report("CHS can't be set with media=%s", buf);
424 return NULL;
426 media = MEDIA_CDROM;
427 } else {
428 error_report("'%s' invalid media", buf);
429 return NULL;
433 if ((buf = qemu_opt_get(opts, "discard")) != NULL) {
434 if (bdrv_parse_discard_flags(buf, &bdrv_flags) != 0) {
435 error_report("invalid discard option");
436 return NULL;
440 if (qemu_opt_get_bool(opts, "cache.writeback", true)) {
441 bdrv_flags |= BDRV_O_CACHE_WB;
443 if (qemu_opt_get_bool(opts, "cache.direct", false)) {
444 bdrv_flags |= BDRV_O_NOCACHE;
446 if (qemu_opt_get_bool(opts, "cache.no-flush", true)) {
447 bdrv_flags |= BDRV_O_NO_FLUSH;
450 #ifdef CONFIG_LINUX_AIO
451 if ((buf = qemu_opt_get(opts, "aio")) != NULL) {
452 if (!strcmp(buf, "native")) {
453 bdrv_flags |= BDRV_O_NATIVE_AIO;
454 } else if (!strcmp(buf, "threads")) {
455 /* this is the default */
456 } else {
457 error_report("invalid aio option");
458 return NULL;
461 #endif
463 if ((buf = qemu_opt_get(opts, "format")) != NULL) {
464 if (is_help_option(buf)) {
465 error_printf("Supported formats:");
466 bdrv_iterate_format(bdrv_format_print, NULL);
467 error_printf("\n");
468 return NULL;
471 drv = bdrv_find_whitelisted_format(buf, ro);
472 if (!drv) {
473 if (!ro && bdrv_find_whitelisted_format(buf, !ro)) {
474 error_report("'%s' can be only used as read-only device.", buf);
475 } else {
476 error_report("'%s' invalid format", buf);
478 return NULL;
482 /* disk I/O throttling */
483 memset(&cfg, 0, sizeof(cfg));
484 cfg.buckets[THROTTLE_BPS_TOTAL].avg =
485 qemu_opt_get_number(opts, "throttling.bps-total", 0);
486 cfg.buckets[THROTTLE_BPS_READ].avg =
487 qemu_opt_get_number(opts, "throttling.bps-read", 0);
488 cfg.buckets[THROTTLE_BPS_WRITE].avg =
489 qemu_opt_get_number(opts, "throttling.bps-write", 0);
490 cfg.buckets[THROTTLE_OPS_TOTAL].avg =
491 qemu_opt_get_number(opts, "throttling.iops-total", 0);
492 cfg.buckets[THROTTLE_OPS_READ].avg =
493 qemu_opt_get_number(opts, "throttling.iops-read", 0);
494 cfg.buckets[THROTTLE_OPS_WRITE].avg =
495 qemu_opt_get_number(opts, "throttling.iops-write", 0);
497 cfg.buckets[THROTTLE_BPS_TOTAL].max = 0;
498 cfg.buckets[THROTTLE_BPS_READ].max = 0;
499 cfg.buckets[THROTTLE_BPS_WRITE].max = 0;
501 cfg.buckets[THROTTLE_OPS_TOTAL].max = 0;
502 cfg.buckets[THROTTLE_OPS_READ].max = 0;
503 cfg.buckets[THROTTLE_OPS_WRITE].max = 0;
505 cfg.op_size = 0;
507 if (!check_throttle_config(&cfg, &error)) {
508 error_report("%s", error_get_pretty(error));
509 error_free(error);
510 return NULL;
513 if (qemu_opt_get(opts, "boot") != NULL) {
514 fprintf(stderr, "qemu-kvm: boot=on|off is deprecated and will be "
515 "ignored. Future versions will reject this parameter. Please "
516 "update your scripts.\n");
519 on_write_error = BLOCKDEV_ON_ERROR_ENOSPC;
520 if ((buf = qemu_opt_get(opts, "werror")) != NULL) {
521 if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO && type != IF_NONE) {
522 error_report("werror is not supported by this bus type");
523 return NULL;
526 on_write_error = parse_block_error_action(buf, 0);
527 if (on_write_error < 0) {
528 return NULL;
532 on_read_error = BLOCKDEV_ON_ERROR_REPORT;
533 if ((buf = qemu_opt_get(opts, "rerror")) != NULL) {
534 if (type != IF_IDE && type != IF_VIRTIO && type != IF_SCSI && type != IF_NONE) {
535 error_report("rerror is not supported by this bus type");
536 return NULL;
539 on_read_error = parse_block_error_action(buf, 1);
540 if (on_read_error < 0) {
541 return NULL;
545 if ((devaddr = qemu_opt_get(opts, "addr")) != NULL) {
546 if (type != IF_VIRTIO) {
547 error_report("addr is not supported by this bus type");
548 return NULL;
552 /* compute bus and unit according index */
554 if (index != -1) {
555 if (bus_id != 0 || unit_id != -1) {
556 error_report("index cannot be used with bus and unit");
557 return NULL;
559 bus_id = drive_index_to_bus_id(type, index);
560 unit_id = drive_index_to_unit_id(type, index);
563 /* if user doesn't specify a unit_id,
564 * try to find the first free
567 if (unit_id == -1) {
568 unit_id = 0;
569 while (drive_get(type, bus_id, unit_id) != NULL) {
570 unit_id++;
571 if (max_devs && unit_id >= max_devs) {
572 unit_id -= max_devs;
573 bus_id++;
578 /* check unit id */
580 if (max_devs && unit_id >= max_devs) {
581 error_report("unit %d too big (max is %d)",
582 unit_id, max_devs - 1);
583 return NULL;
587 * catch multiple definitions
590 if (drive_get(type, bus_id, unit_id) != NULL) {
591 error_report("drive with bus=%d, unit=%d (index=%d) exists",
592 bus_id, unit_id, index);
593 return NULL;
596 /* init */
598 dinfo = g_malloc0(sizeof(*dinfo));
599 if ((buf = qemu_opts_id(opts)) != NULL) {
600 dinfo->id = g_strdup(buf);
601 } else {
602 /* no id supplied -> create one */
603 dinfo->id = g_malloc0(32);
604 if (type == IF_IDE || type == IF_SCSI)
605 mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd";
606 if (max_devs)
607 snprintf(dinfo->id, 32, "%s%i%s%i",
608 if_name[type], bus_id, mediastr, unit_id);
609 else
610 snprintf(dinfo->id, 32, "%s%s%i",
611 if_name[type], mediastr, unit_id);
613 dinfo->bdrv = bdrv_new(dinfo->id);
614 dinfo->bdrv->open_flags = snapshot ? BDRV_O_SNAPSHOT : 0;
615 dinfo->bdrv->read_only = ro;
616 dinfo->devaddr = devaddr;
617 dinfo->type = type;
618 dinfo->bus = bus_id;
619 dinfo->unit = unit_id;
620 dinfo->cyls = cyls;
621 dinfo->heads = heads;
622 dinfo->secs = secs;
623 dinfo->trans = translation;
624 dinfo->opts = all_opts;
625 dinfo->refcount = 1;
626 if (serial != NULL) {
627 dinfo->serial = g_strdup(serial);
629 QTAILQ_INSERT_TAIL(&drives, dinfo, next);
631 bdrv_set_on_error(dinfo->bdrv, on_read_error, on_write_error);
633 /* disk I/O throttling */
634 if (throttle_enabled(&cfg)) {
635 bdrv_io_limits_enable(dinfo->bdrv);
636 bdrv_set_io_limits(dinfo->bdrv, &cfg);
639 switch(type) {
640 case IF_IDE:
641 case IF_SCSI:
642 case IF_XEN:
643 case IF_NONE:
644 dinfo->media_cd = media == MEDIA_CDROM;
645 break;
646 case IF_SD:
647 case IF_FLOPPY:
648 case IF_PFLASH:
649 case IF_MTD:
650 break;
651 case IF_VIRTIO:
653 /* add virtio block device */
654 QemuOpts *devopts;
655 devopts = qemu_opts_create_nofail(qemu_find_opts("device"));
656 if (arch_type == QEMU_ARCH_S390X) {
657 qemu_opt_set(devopts, "driver", "virtio-blk-s390");
658 } else {
659 qemu_opt_set(devopts, "driver", "virtio-blk-pci");
661 qemu_opt_set(devopts, "drive", dinfo->id);
662 if (devaddr)
663 qemu_opt_set(devopts, "addr", devaddr);
664 break;
666 default:
667 abort();
669 if (!file || !*file) {
670 if (has_driver_specific_opts) {
671 file = NULL;
672 } else {
673 return dinfo;
676 if (snapshot) {
677 /* always use cache=unsafe with snapshot */
678 bdrv_flags &= ~BDRV_O_CACHE_MASK;
679 bdrv_flags |= (BDRV_O_SNAPSHOT|BDRV_O_CACHE_WB|BDRV_O_NO_FLUSH);
682 if (copy_on_read) {
683 bdrv_flags |= BDRV_O_COPY_ON_READ;
686 if (runstate_check(RUN_STATE_INMIGRATE)) {
687 bdrv_flags |= BDRV_O_INCOMING;
690 if (media == MEDIA_CDROM) {
691 /* CDROM is fine for any interface, don't check. */
692 ro = 1;
693 } else if (ro == 1) {
694 if (type != IF_SCSI && type != IF_VIRTIO && type != IF_FLOPPY &&
695 type != IF_NONE && type != IF_PFLASH) {
696 error_report("read-only not supported by this bus type");
697 goto err;
701 bdrv_flags |= ro ? 0 : BDRV_O_RDWR;
703 if (ro && copy_on_read) {
704 error_report("warning: disabling copy_on_read on read-only drive");
707 QINCREF(bs_opts);
708 ret = bdrv_open(dinfo->bdrv, file, bs_opts, bdrv_flags, drv);
710 if (ret < 0) {
711 if (ret == -EMEDIUMTYPE) {
712 error_report("could not open disk image %s: not in %s format",
713 file ?: dinfo->id, drv ? drv->format_name :
714 qdict_get_str(bs_opts, "driver"));
715 } else {
716 error_report("could not open disk image %s: %s",
717 file ?: dinfo->id, strerror(-ret));
719 goto err;
722 if (bdrv_key_required(dinfo->bdrv))
723 autostart = 0;
725 QDECREF(bs_opts);
726 qemu_opts_del(opts);
728 return dinfo;
730 err:
731 qemu_opts_del(opts);
732 QDECREF(bs_opts);
733 bdrv_delete(dinfo->bdrv);
734 g_free(dinfo->id);
735 QTAILQ_REMOVE(&drives, dinfo, next);
736 g_free(dinfo);
737 return NULL;
740 static void qemu_opt_rename(QemuOpts *opts, const char *from, const char *to)
742 const char *value;
744 value = qemu_opt_get(opts, from);
745 if (value) {
746 qemu_opt_set(opts, to, value);
747 qemu_opt_unset(opts, from);
751 DriveInfo *drive_init(QemuOpts *all_opts, BlockInterfaceType block_default_type)
753 const char *value;
755 /* Change legacy command line options into QMP ones */
756 qemu_opt_rename(all_opts, "iops", "throttling.iops-total");
757 qemu_opt_rename(all_opts, "iops_rd", "throttling.iops-read");
758 qemu_opt_rename(all_opts, "iops_wr", "throttling.iops-write");
760 qemu_opt_rename(all_opts, "bps", "throttling.bps-total");
761 qemu_opt_rename(all_opts, "bps_rd", "throttling.bps-read");
762 qemu_opt_rename(all_opts, "bps_wr", "throttling.bps-write");
764 qemu_opt_rename(all_opts, "readonly", "read-only");
766 value = qemu_opt_get(all_opts, "cache");
767 if (value) {
768 int flags = 0;
770 if (bdrv_parse_cache_flags(value, &flags) != 0) {
771 error_report("invalid cache option");
772 return NULL;
775 /* Specific options take precedence */
776 if (!qemu_opt_get(all_opts, "cache.writeback")) {
777 qemu_opt_set_bool(all_opts, "cache.writeback",
778 !!(flags & BDRV_O_CACHE_WB));
780 if (!qemu_opt_get(all_opts, "cache.direct")) {
781 qemu_opt_set_bool(all_opts, "cache.direct",
782 !!(flags & BDRV_O_NOCACHE));
784 if (!qemu_opt_get(all_opts, "cache.no-flush")) {
785 qemu_opt_set_bool(all_opts, "cache.no-flush",
786 !!(flags & BDRV_O_NO_FLUSH));
788 qemu_opt_unset(all_opts, "cache");
791 return blockdev_init(all_opts, block_default_type);
794 void do_commit(Monitor *mon, const QDict *qdict)
796 const char *device = qdict_get_str(qdict, "device");
797 BlockDriverState *bs;
798 int ret;
800 if (!strcmp(device, "all")) {
801 ret = bdrv_commit_all();
802 } else {
803 bs = bdrv_find(device);
804 if (!bs) {
805 monitor_printf(mon, "Device '%s' not found\n", device);
806 return;
808 ret = bdrv_commit(bs);
810 if (ret < 0) {
811 monitor_printf(mon, "'commit' error for '%s': %s\n", device,
812 strerror(-ret));
816 static void blockdev_do_action(int kind, void *data, Error **errp)
818 TransactionAction action;
819 TransactionActionList list;
821 action.kind = kind;
822 action.data = data;
823 list.value = &action;
824 list.next = NULL;
825 qmp_transaction(&list, errp);
828 void qmp_blockdev_snapshot_sync(const char *device, const char *snapshot_file,
829 bool has_format, const char *format,
830 bool has_mode, enum NewImageMode mode,
831 Error **errp)
833 BlockdevSnapshot snapshot = {
834 .device = (char *) device,
835 .snapshot_file = (char *) snapshot_file,
836 .has_format = has_format,
837 .format = (char *) format,
838 .has_mode = has_mode,
839 .mode = mode,
841 blockdev_do_action(TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC,
842 &snapshot, errp);
846 /* New and old BlockDriverState structs for group snapshots */
848 typedef struct BlkTransactionState BlkTransactionState;
850 /* Only prepare() may fail. In a single transaction, only one of commit() or
851 abort() will be called, clean() will always be called if it present. */
852 typedef struct BdrvActionOps {
853 /* Size of state struct, in bytes. */
854 size_t instance_size;
855 /* Prepare the work, must NOT be NULL. */
856 void (*prepare)(BlkTransactionState *common, Error **errp);
857 /* Commit the changes, can be NULL. */
858 void (*commit)(BlkTransactionState *common);
859 /* Abort the changes on fail, can be NULL. */
860 void (*abort)(BlkTransactionState *common);
861 /* Clean up resource in the end, can be NULL. */
862 void (*clean)(BlkTransactionState *common);
863 } BdrvActionOps;
866 * This structure must be arranged as first member in child type, assuming
867 * that compiler will also arrange it to the same address with parent instance.
868 * Later it will be used in free().
870 struct BlkTransactionState {
871 TransactionAction *action;
872 const BdrvActionOps *ops;
873 QSIMPLEQ_ENTRY(BlkTransactionState) entry;
876 /* external snapshot private data */
877 typedef struct ExternalSnapshotState {
878 BlkTransactionState common;
879 BlockDriverState *old_bs;
880 BlockDriverState *new_bs;
881 } ExternalSnapshotState;
883 static void external_snapshot_prepare(BlkTransactionState *common,
884 Error **errp)
886 BlockDriver *drv;
887 int flags, ret;
888 Error *local_err = NULL;
889 const char *device;
890 const char *new_image_file;
891 const char *format = "qcow2";
892 enum NewImageMode mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS;
893 ExternalSnapshotState *state =
894 DO_UPCAST(ExternalSnapshotState, common, common);
895 TransactionAction *action = common->action;
897 /* get parameters */
898 g_assert(action->kind == TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC);
900 device = action->blockdev_snapshot_sync->device;
901 new_image_file = action->blockdev_snapshot_sync->snapshot_file;
902 if (action->blockdev_snapshot_sync->has_format) {
903 format = action->blockdev_snapshot_sync->format;
905 if (action->blockdev_snapshot_sync->has_mode) {
906 mode = action->blockdev_snapshot_sync->mode;
909 /* start processing */
910 drv = bdrv_find_format(format);
911 if (!drv) {
912 error_set(errp, QERR_INVALID_BLOCK_FORMAT, format);
913 return;
916 state->old_bs = bdrv_find(device);
917 if (!state->old_bs) {
918 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
919 return;
922 if (!bdrv_is_inserted(state->old_bs)) {
923 error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device);
924 return;
927 if (bdrv_in_use(state->old_bs)) {
928 error_set(errp, QERR_DEVICE_IN_USE, device);
929 return;
932 if (!bdrv_is_read_only(state->old_bs)) {
933 if (bdrv_flush(state->old_bs)) {
934 error_set(errp, QERR_IO_ERROR);
935 return;
939 flags = state->old_bs->open_flags;
941 /* create new image w/backing file */
942 if (mode != NEW_IMAGE_MODE_EXISTING) {
943 bdrv_img_create(new_image_file, format,
944 state->old_bs->filename,
945 state->old_bs->drv->format_name,
946 NULL, -1, flags, &local_err, false);
947 if (error_is_set(&local_err)) {
948 error_propagate(errp, local_err);
949 return;
953 /* We will manually add the backing_hd field to the bs later */
954 state->new_bs = bdrv_new("");
955 /* TODO Inherit bs->options or only take explicit options with an
956 * extended QMP command? */
957 ret = bdrv_open(state->new_bs, new_image_file, NULL,
958 flags | BDRV_O_NO_BACKING, drv);
959 if (ret != 0) {
960 error_setg_file_open(errp, -ret, new_image_file);
964 static void external_snapshot_commit(BlkTransactionState *common)
966 ExternalSnapshotState *state =
967 DO_UPCAST(ExternalSnapshotState, common, common);
969 /* This removes our old bs and adds the new bs */
970 bdrv_append(state->new_bs, state->old_bs);
971 /* We don't need (or want) to use the transactional
972 * bdrv_reopen_multiple() across all the entries at once, because we
973 * don't want to abort all of them if one of them fails the reopen */
974 bdrv_reopen(state->new_bs, state->new_bs->open_flags & ~BDRV_O_RDWR,
975 NULL);
978 static void external_snapshot_abort(BlkTransactionState *common)
980 ExternalSnapshotState *state =
981 DO_UPCAST(ExternalSnapshotState, common, common);
982 if (state->new_bs) {
983 bdrv_delete(state->new_bs);
987 typedef struct DriveBackupState {
988 BlkTransactionState common;
989 BlockDriverState *bs;
990 BlockJob *job;
991 } DriveBackupState;
993 static void drive_backup_prepare(BlkTransactionState *common, Error **errp)
995 DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common);
996 DriveBackup *backup;
997 Error *local_err = NULL;
999 assert(common->action->kind == TRANSACTION_ACTION_KIND_DRIVE_BACKUP);
1000 backup = common->action->drive_backup;
1002 qmp_drive_backup(backup->device, backup->target,
1003 backup->has_format, backup->format,
1004 backup->sync,
1005 backup->has_mode, backup->mode,
1006 backup->has_speed, backup->speed,
1007 backup->has_on_source_error, backup->on_source_error,
1008 backup->has_on_target_error, backup->on_target_error,
1009 &local_err);
1010 if (error_is_set(&local_err)) {
1011 error_propagate(errp, local_err);
1012 state->bs = NULL;
1013 state->job = NULL;
1014 return;
1017 state->bs = bdrv_find(backup->device);
1018 state->job = state->bs->job;
1021 static void drive_backup_abort(BlkTransactionState *common)
1023 DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common);
1024 BlockDriverState *bs = state->bs;
1026 /* Only cancel if it's the job we started */
1027 if (bs && bs->job && bs->job == state->job) {
1028 block_job_cancel_sync(bs->job);
1032 static void abort_prepare(BlkTransactionState *common, Error **errp)
1034 error_setg(errp, "Transaction aborted using Abort action");
1037 static void abort_commit(BlkTransactionState *common)
1039 g_assert_not_reached(); /* this action never succeeds */
1042 static const BdrvActionOps actions[] = {
1043 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC] = {
1044 .instance_size = sizeof(ExternalSnapshotState),
1045 .prepare = external_snapshot_prepare,
1046 .commit = external_snapshot_commit,
1047 .abort = external_snapshot_abort,
1049 [TRANSACTION_ACTION_KIND_DRIVE_BACKUP] = {
1050 .instance_size = sizeof(DriveBackupState),
1051 .prepare = drive_backup_prepare,
1052 .abort = drive_backup_abort,
1054 [TRANSACTION_ACTION_KIND_ABORT] = {
1055 .instance_size = sizeof(BlkTransactionState),
1056 .prepare = abort_prepare,
1057 .commit = abort_commit,
1062 * 'Atomic' group snapshots. The snapshots are taken as a set, and if any fail
1063 * then we do not pivot any of the devices in the group, and abandon the
1064 * snapshots
1066 void qmp_transaction(TransactionActionList *dev_list, Error **errp)
1068 TransactionActionList *dev_entry = dev_list;
1069 BlkTransactionState *state, *next;
1070 Error *local_err = NULL;
1072 QSIMPLEQ_HEAD(snap_bdrv_states, BlkTransactionState) snap_bdrv_states;
1073 QSIMPLEQ_INIT(&snap_bdrv_states);
1075 /* drain all i/o before any snapshots */
1076 bdrv_drain_all();
1078 /* We don't do anything in this loop that commits us to the snapshot */
1079 while (NULL != dev_entry) {
1080 TransactionAction *dev_info = NULL;
1081 const BdrvActionOps *ops;
1083 dev_info = dev_entry->value;
1084 dev_entry = dev_entry->next;
1086 assert(dev_info->kind < ARRAY_SIZE(actions));
1088 ops = &actions[dev_info->kind];
1089 state = g_malloc0(ops->instance_size);
1090 state->ops = ops;
1091 state->action = dev_info;
1092 QSIMPLEQ_INSERT_TAIL(&snap_bdrv_states, state, entry);
1094 state->ops->prepare(state, &local_err);
1095 if (error_is_set(&local_err)) {
1096 error_propagate(errp, local_err);
1097 goto delete_and_fail;
1101 QSIMPLEQ_FOREACH(state, &snap_bdrv_states, entry) {
1102 if (state->ops->commit) {
1103 state->ops->commit(state);
1107 /* success */
1108 goto exit;
1110 delete_and_fail:
1112 * failure, and it is all-or-none; abandon each new bs, and keep using
1113 * the original bs for all images
1115 QSIMPLEQ_FOREACH(state, &snap_bdrv_states, entry) {
1116 if (state->ops->abort) {
1117 state->ops->abort(state);
1120 exit:
1121 QSIMPLEQ_FOREACH_SAFE(state, &snap_bdrv_states, entry, next) {
1122 if (state->ops->clean) {
1123 state->ops->clean(state);
1125 g_free(state);
1130 static void eject_device(BlockDriverState *bs, int force, Error **errp)
1132 if (bdrv_in_use(bs)) {
1133 error_set(errp, QERR_DEVICE_IN_USE, bdrv_get_device_name(bs));
1134 return;
1136 if (!bdrv_dev_has_removable_media(bs)) {
1137 error_set(errp, QERR_DEVICE_NOT_REMOVABLE, bdrv_get_device_name(bs));
1138 return;
1141 if (bdrv_dev_is_medium_locked(bs) && !bdrv_dev_is_tray_open(bs)) {
1142 bdrv_dev_eject_request(bs, force);
1143 if (!force) {
1144 error_set(errp, QERR_DEVICE_LOCKED, bdrv_get_device_name(bs));
1145 return;
1149 bdrv_close(bs);
1152 void qmp_eject(const char *device, bool has_force, bool force, Error **errp)
1154 BlockDriverState *bs;
1156 bs = bdrv_find(device);
1157 if (!bs) {
1158 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1159 return;
1162 eject_device(bs, force, errp);
1165 void qmp_block_passwd(const char *device, const char *password, Error **errp)
1167 BlockDriverState *bs;
1168 int err;
1170 bs = bdrv_find(device);
1171 if (!bs) {
1172 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1173 return;
1176 err = bdrv_set_key(bs, password);
1177 if (err == -EINVAL) {
1178 error_set(errp, QERR_DEVICE_NOT_ENCRYPTED, bdrv_get_device_name(bs));
1179 return;
1180 } else if (err < 0) {
1181 error_set(errp, QERR_INVALID_PASSWORD);
1182 return;
1186 static void qmp_bdrv_open_encrypted(BlockDriverState *bs, const char *filename,
1187 int bdrv_flags, BlockDriver *drv,
1188 const char *password, Error **errp)
1190 int ret;
1192 ret = bdrv_open(bs, filename, NULL, bdrv_flags, drv);
1193 if (ret < 0) {
1194 error_setg_file_open(errp, -ret, filename);
1195 return;
1198 if (bdrv_key_required(bs)) {
1199 if (password) {
1200 if (bdrv_set_key(bs, password) < 0) {
1201 error_set(errp, QERR_INVALID_PASSWORD);
1203 } else {
1204 error_set(errp, QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs),
1205 bdrv_get_encrypted_filename(bs));
1207 } else if (password) {
1208 error_set(errp, QERR_DEVICE_NOT_ENCRYPTED, bdrv_get_device_name(bs));
1212 void qmp_change_blockdev(const char *device, const char *filename,
1213 bool has_format, const char *format, Error **errp)
1215 BlockDriverState *bs;
1216 BlockDriver *drv = NULL;
1217 int bdrv_flags;
1218 Error *err = NULL;
1220 bs = bdrv_find(device);
1221 if (!bs) {
1222 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1223 return;
1226 if (format) {
1227 drv = bdrv_find_whitelisted_format(format, bs->read_only);
1228 if (!drv) {
1229 error_set(errp, QERR_INVALID_BLOCK_FORMAT, format);
1230 return;
1234 eject_device(bs, 0, &err);
1235 if (error_is_set(&err)) {
1236 error_propagate(errp, err);
1237 return;
1240 bdrv_flags = bdrv_is_read_only(bs) ? 0 : BDRV_O_RDWR;
1241 bdrv_flags |= bdrv_is_snapshot(bs) ? BDRV_O_SNAPSHOT : 0;
1243 qmp_bdrv_open_encrypted(bs, filename, bdrv_flags, drv, NULL, errp);
1246 /* throttling disk I/O limits */
1247 void qmp_block_set_io_throttle(const char *device, int64_t bps, int64_t bps_rd,
1248 int64_t bps_wr, int64_t iops, int64_t iops_rd,
1249 int64_t iops_wr, Error **errp)
1251 ThrottleConfig cfg;
1252 BlockDriverState *bs;
1254 bs = bdrv_find(device);
1255 if (!bs) {
1256 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1257 return;
1260 memset(&cfg, 0, sizeof(cfg));
1261 cfg.buckets[THROTTLE_BPS_TOTAL].avg = bps;
1262 cfg.buckets[THROTTLE_BPS_READ].avg = bps_rd;
1263 cfg.buckets[THROTTLE_BPS_WRITE].avg = bps_wr;
1265 cfg.buckets[THROTTLE_OPS_TOTAL].avg = iops;
1266 cfg.buckets[THROTTLE_OPS_READ].avg = iops_rd;
1267 cfg.buckets[THROTTLE_OPS_WRITE].avg = iops_wr;
1269 cfg.buckets[THROTTLE_BPS_TOTAL].max = 0;
1270 cfg.buckets[THROTTLE_BPS_READ].max = 0;
1271 cfg.buckets[THROTTLE_BPS_WRITE].max = 0;
1273 cfg.buckets[THROTTLE_OPS_TOTAL].max = 0;
1274 cfg.buckets[THROTTLE_OPS_READ].max = 0;
1275 cfg.buckets[THROTTLE_OPS_WRITE].max = 0;
1277 cfg.op_size = 0;
1279 if (!check_throttle_config(&cfg, errp)) {
1280 return;
1283 if (!bs->io_limits_enabled && throttle_enabled(&cfg)) {
1284 bdrv_io_limits_enable(bs);
1285 } else if (bs->io_limits_enabled && !throttle_enabled(&cfg)) {
1286 bdrv_io_limits_disable(bs);
1289 if (bs->io_limits_enabled) {
1290 bdrv_set_io_limits(bs, &cfg);
1294 int do_drive_del(Monitor *mon, const QDict *qdict, QObject **ret_data)
1296 const char *id = qdict_get_str(qdict, "id");
1297 BlockDriverState *bs;
1299 bs = bdrv_find(id);
1300 if (!bs) {
1301 qerror_report(QERR_DEVICE_NOT_FOUND, id);
1302 return -1;
1304 if (bdrv_in_use(bs)) {
1305 qerror_report(QERR_DEVICE_IN_USE, id);
1306 return -1;
1309 /* quiesce block driver; prevent further io */
1310 bdrv_drain_all();
1311 bdrv_flush(bs);
1312 bdrv_close(bs);
1314 /* if we have a device attached to this BlockDriverState
1315 * then we need to make the drive anonymous until the device
1316 * can be removed. If this is a drive with no device backing
1317 * then we can just get rid of the block driver state right here.
1319 if (bdrv_get_attached_dev(bs)) {
1320 bdrv_make_anon(bs);
1322 /* Further I/O must not pause the guest */
1323 bdrv_set_on_error(bs, BLOCKDEV_ON_ERROR_REPORT,
1324 BLOCKDEV_ON_ERROR_REPORT);
1325 } else {
1326 drive_uninit(drive_get_by_blockdev(bs));
1329 return 0;
1332 void qmp_block_resize(const char *device, int64_t size, Error **errp)
1334 BlockDriverState *bs;
1335 int ret;
1337 bs = bdrv_find(device);
1338 if (!bs) {
1339 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1340 return;
1343 if (size < 0) {
1344 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "size", "a >0 size");
1345 return;
1348 /* complete all in-flight operations before resizing the device */
1349 bdrv_drain_all();
1351 ret = bdrv_truncate(bs, size);
1352 switch (ret) {
1353 case 0:
1354 break;
1355 case -ENOMEDIUM:
1356 error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device);
1357 break;
1358 case -ENOTSUP:
1359 error_set(errp, QERR_UNSUPPORTED);
1360 break;
1361 case -EACCES:
1362 error_set(errp, QERR_DEVICE_IS_READ_ONLY, device);
1363 break;
1364 case -EBUSY:
1365 error_set(errp, QERR_DEVICE_IN_USE, device);
1366 break;
1367 default:
1368 error_setg_errno(errp, -ret, "Could not resize");
1369 break;
1373 static void block_job_cb(void *opaque, int ret)
1375 BlockDriverState *bs = opaque;
1376 QObject *obj;
1378 trace_block_job_cb(bs, bs->job, ret);
1380 assert(bs->job);
1381 obj = qobject_from_block_job(bs->job);
1382 if (ret < 0) {
1383 QDict *dict = qobject_to_qdict(obj);
1384 qdict_put(dict, "error", qstring_from_str(strerror(-ret)));
1387 if (block_job_is_cancelled(bs->job)) {
1388 monitor_protocol_event(QEVENT_BLOCK_JOB_CANCELLED, obj);
1389 } else {
1390 monitor_protocol_event(QEVENT_BLOCK_JOB_COMPLETED, obj);
1392 qobject_decref(obj);
1394 drive_put_ref_bh_schedule(drive_get_by_blockdev(bs));
1397 void qmp_block_stream(const char *device, bool has_base,
1398 const char *base, bool has_speed, int64_t speed,
1399 bool has_on_error, BlockdevOnError on_error,
1400 Error **errp)
1402 BlockDriverState *bs;
1403 BlockDriverState *base_bs = NULL;
1404 Error *local_err = NULL;
1406 if (!has_on_error) {
1407 on_error = BLOCKDEV_ON_ERROR_REPORT;
1410 bs = bdrv_find(device);
1411 if (!bs) {
1412 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1413 return;
1416 if (base) {
1417 base_bs = bdrv_find_backing_image(bs, base);
1418 if (base_bs == NULL) {
1419 error_set(errp, QERR_BASE_NOT_FOUND, base);
1420 return;
1424 stream_start(bs, base_bs, base, has_speed ? speed : 0,
1425 on_error, block_job_cb, bs, &local_err);
1426 if (error_is_set(&local_err)) {
1427 error_propagate(errp, local_err);
1428 return;
1431 /* Grab a reference so hotplug does not delete the BlockDriverState from
1432 * underneath us.
1434 drive_get_ref(drive_get_by_blockdev(bs));
1436 trace_qmp_block_stream(bs, bs->job);
1439 void qmp_block_commit(const char *device,
1440 bool has_base, const char *base, const char *top,
1441 bool has_speed, int64_t speed,
1442 Error **errp)
1444 BlockDriverState *bs;
1445 BlockDriverState *base_bs, *top_bs;
1446 Error *local_err = NULL;
1447 /* This will be part of the QMP command, if/when the
1448 * BlockdevOnError change for blkmirror makes it in
1450 BlockdevOnError on_error = BLOCKDEV_ON_ERROR_REPORT;
1452 /* drain all i/o before commits */
1453 bdrv_drain_all();
1455 bs = bdrv_find(device);
1456 if (!bs) {
1457 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1458 return;
1461 /* default top_bs is the active layer */
1462 top_bs = bs;
1464 if (top) {
1465 if (strcmp(bs->filename, top) != 0) {
1466 top_bs = bdrv_find_backing_image(bs, top);
1470 if (top_bs == NULL) {
1471 error_setg(errp, "Top image file %s not found", top ? top : "NULL");
1472 return;
1475 if (has_base && base) {
1476 base_bs = bdrv_find_backing_image(top_bs, base);
1477 } else {
1478 base_bs = bdrv_find_base(top_bs);
1481 if (base_bs == NULL) {
1482 error_set(errp, QERR_BASE_NOT_FOUND, base ? base : "NULL");
1483 return;
1486 commit_start(bs, base_bs, top_bs, speed, on_error, block_job_cb, bs,
1487 &local_err);
1488 if (local_err != NULL) {
1489 error_propagate(errp, local_err);
1490 return;
1492 /* Grab a reference so hotplug does not delete the BlockDriverState from
1493 * underneath us.
1495 drive_get_ref(drive_get_by_blockdev(bs));
1498 void qmp_drive_backup(const char *device, const char *target,
1499 bool has_format, const char *format,
1500 enum MirrorSyncMode sync,
1501 bool has_mode, enum NewImageMode mode,
1502 bool has_speed, int64_t speed,
1503 bool has_on_source_error, BlockdevOnError on_source_error,
1504 bool has_on_target_error, BlockdevOnError on_target_error,
1505 Error **errp)
1507 BlockDriverState *bs;
1508 BlockDriverState *target_bs;
1509 BlockDriverState *source = NULL;
1510 BlockDriver *drv = NULL;
1511 Error *local_err = NULL;
1512 int flags;
1513 int64_t size;
1514 int ret;
1516 if (!has_speed) {
1517 speed = 0;
1519 if (!has_on_source_error) {
1520 on_source_error = BLOCKDEV_ON_ERROR_REPORT;
1522 if (!has_on_target_error) {
1523 on_target_error = BLOCKDEV_ON_ERROR_REPORT;
1525 if (!has_mode) {
1526 mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS;
1529 bs = bdrv_find(device);
1530 if (!bs) {
1531 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1532 return;
1535 if (!bdrv_is_inserted(bs)) {
1536 error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device);
1537 return;
1540 if (!has_format) {
1541 format = mode == NEW_IMAGE_MODE_EXISTING ? NULL : bs->drv->format_name;
1543 if (format) {
1544 drv = bdrv_find_format(format);
1545 if (!drv) {
1546 error_set(errp, QERR_INVALID_BLOCK_FORMAT, format);
1547 return;
1551 if (bdrv_in_use(bs)) {
1552 error_set(errp, QERR_DEVICE_IN_USE, device);
1553 return;
1556 flags = bs->open_flags | BDRV_O_RDWR;
1558 /* See if we have a backing HD we can use to create our new image
1559 * on top of. */
1560 if (sync == MIRROR_SYNC_MODE_TOP) {
1561 source = bs->backing_hd;
1562 if (!source) {
1563 sync = MIRROR_SYNC_MODE_FULL;
1566 if (sync == MIRROR_SYNC_MODE_NONE) {
1567 source = bs;
1570 size = bdrv_getlength(bs);
1571 if (size < 0) {
1572 error_setg_errno(errp, -size, "bdrv_getlength failed");
1573 return;
1576 if (mode != NEW_IMAGE_MODE_EXISTING) {
1577 assert(format && drv);
1578 if (source) {
1579 bdrv_img_create(target, format, source->filename,
1580 source->drv->format_name, NULL,
1581 size, flags, &local_err, false);
1582 } else {
1583 bdrv_img_create(target, format, NULL, NULL, NULL,
1584 size, flags, &local_err, false);
1588 if (error_is_set(&local_err)) {
1589 error_propagate(errp, local_err);
1590 return;
1593 target_bs = bdrv_new("");
1594 ret = bdrv_open(target_bs, target, NULL, flags, drv);
1595 if (ret < 0) {
1596 bdrv_delete(target_bs);
1597 error_setg_file_open(errp, -ret, target);
1598 return;
1601 backup_start(bs, target_bs, speed, sync, on_source_error, on_target_error,
1602 block_job_cb, bs, &local_err);
1603 if (local_err != NULL) {
1604 bdrv_delete(target_bs);
1605 error_propagate(errp, local_err);
1606 return;
1609 /* Grab a reference so hotplug does not delete the BlockDriverState from
1610 * underneath us.
1612 drive_get_ref(drive_get_by_blockdev(bs));
1615 #define DEFAULT_MIRROR_BUF_SIZE (10 << 20)
1617 void qmp_drive_mirror(const char *device, const char *target,
1618 bool has_format, const char *format,
1619 enum MirrorSyncMode sync,
1620 bool has_mode, enum NewImageMode mode,
1621 bool has_speed, int64_t speed,
1622 bool has_granularity, uint32_t granularity,
1623 bool has_buf_size, int64_t buf_size,
1624 bool has_on_source_error, BlockdevOnError on_source_error,
1625 bool has_on_target_error, BlockdevOnError on_target_error,
1626 Error **errp)
1628 BlockDriverState *bs;
1629 BlockDriverState *source, *target_bs;
1630 BlockDriver *drv = NULL;
1631 Error *local_err = NULL;
1632 int flags;
1633 int64_t size;
1634 int ret;
1636 if (!has_speed) {
1637 speed = 0;
1639 if (!has_on_source_error) {
1640 on_source_error = BLOCKDEV_ON_ERROR_REPORT;
1642 if (!has_on_target_error) {
1643 on_target_error = BLOCKDEV_ON_ERROR_REPORT;
1645 if (!has_mode) {
1646 mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS;
1648 if (!has_granularity) {
1649 granularity = 0;
1651 if (!has_buf_size) {
1652 buf_size = DEFAULT_MIRROR_BUF_SIZE;
1655 if (granularity != 0 && (granularity < 512 || granularity > 1048576 * 64)) {
1656 error_set(errp, QERR_INVALID_PARAMETER, device);
1657 return;
1659 if (granularity & (granularity - 1)) {
1660 error_set(errp, QERR_INVALID_PARAMETER, device);
1661 return;
1664 bs = bdrv_find(device);
1665 if (!bs) {
1666 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1667 return;
1670 if (!bdrv_is_inserted(bs)) {
1671 error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device);
1672 return;
1675 if (!has_format) {
1676 format = mode == NEW_IMAGE_MODE_EXISTING ? NULL : bs->drv->format_name;
1678 if (format) {
1679 drv = bdrv_find_format(format);
1680 if (!drv) {
1681 error_set(errp, QERR_INVALID_BLOCK_FORMAT, format);
1682 return;
1686 if (bdrv_in_use(bs)) {
1687 error_set(errp, QERR_DEVICE_IN_USE, device);
1688 return;
1691 flags = bs->open_flags | BDRV_O_RDWR;
1692 source = bs->backing_hd;
1693 if (!source && sync == MIRROR_SYNC_MODE_TOP) {
1694 sync = MIRROR_SYNC_MODE_FULL;
1697 size = bdrv_getlength(bs);
1698 if (size < 0) {
1699 error_setg_errno(errp, -size, "bdrv_getlength failed");
1700 return;
1703 if (sync == MIRROR_SYNC_MODE_FULL && mode != NEW_IMAGE_MODE_EXISTING) {
1704 /* create new image w/o backing file */
1705 assert(format && drv);
1706 bdrv_img_create(target, format,
1707 NULL, NULL, NULL, size, flags, &local_err, false);
1708 } else {
1709 switch (mode) {
1710 case NEW_IMAGE_MODE_EXISTING:
1711 ret = 0;
1712 break;
1713 case NEW_IMAGE_MODE_ABSOLUTE_PATHS:
1714 /* create new image with backing file */
1715 bdrv_img_create(target, format,
1716 source->filename,
1717 source->drv->format_name,
1718 NULL, size, flags, &local_err, false);
1719 break;
1720 default:
1721 abort();
1725 if (error_is_set(&local_err)) {
1726 error_propagate(errp, local_err);
1727 return;
1730 /* Mirroring takes care of copy-on-write using the source's backing
1731 * file.
1733 target_bs = bdrv_new("");
1734 ret = bdrv_open(target_bs, target, NULL, flags | BDRV_O_NO_BACKING, drv);
1735 if (ret < 0) {
1736 bdrv_delete(target_bs);
1737 error_setg_file_open(errp, -ret, target);
1738 return;
1741 mirror_start(bs, target_bs, speed, granularity, buf_size, sync,
1742 on_source_error, on_target_error,
1743 block_job_cb, bs, &local_err);
1744 if (local_err != NULL) {
1745 bdrv_delete(target_bs);
1746 error_propagate(errp, local_err);
1747 return;
1750 /* Grab a reference so hotplug does not delete the BlockDriverState from
1751 * underneath us.
1753 drive_get_ref(drive_get_by_blockdev(bs));
1756 static BlockJob *find_block_job(const char *device)
1758 BlockDriverState *bs;
1760 bs = bdrv_find(device);
1761 if (!bs || !bs->job) {
1762 return NULL;
1764 return bs->job;
1767 void qmp_block_job_set_speed(const char *device, int64_t speed, Error **errp)
1769 BlockJob *job = find_block_job(device);
1771 if (!job) {
1772 error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device);
1773 return;
1776 block_job_set_speed(job, speed, errp);
1779 void qmp_block_job_cancel(const char *device,
1780 bool has_force, bool force, Error **errp)
1782 BlockJob *job = find_block_job(device);
1784 if (!has_force) {
1785 force = false;
1788 if (!job) {
1789 error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device);
1790 return;
1792 if (job->paused && !force) {
1793 error_set(errp, QERR_BLOCK_JOB_PAUSED, device);
1794 return;
1797 trace_qmp_block_job_cancel(job);
1798 block_job_cancel(job);
1801 void qmp_block_job_pause(const char *device, Error **errp)
1803 BlockJob *job = find_block_job(device);
1805 if (!job) {
1806 error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device);
1807 return;
1810 trace_qmp_block_job_pause(job);
1811 block_job_pause(job);
1814 void qmp_block_job_resume(const char *device, Error **errp)
1816 BlockJob *job = find_block_job(device);
1818 if (!job) {
1819 error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device);
1820 return;
1823 trace_qmp_block_job_resume(job);
1824 block_job_resume(job);
1827 void qmp_block_job_complete(const char *device, Error **errp)
1829 BlockJob *job = find_block_job(device);
1831 if (!job) {
1832 error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device);
1833 return;
1836 trace_qmp_block_job_complete(job);
1837 block_job_complete(job, errp);
1840 static void do_qmp_query_block_jobs_one(void *opaque, BlockDriverState *bs)
1842 BlockJobInfoList **prev = opaque;
1843 BlockJob *job = bs->job;
1845 if (job) {
1846 BlockJobInfoList *elem = g_new0(BlockJobInfoList, 1);
1847 elem->value = block_job_query(bs->job);
1848 (*prev)->next = elem;
1849 *prev = elem;
1853 BlockJobInfoList *qmp_query_block_jobs(Error **errp)
1855 /* Dummy is a fake list element for holding the head pointer */
1856 BlockJobInfoList dummy = {};
1857 BlockJobInfoList *prev = &dummy;
1858 bdrv_iterate(do_qmp_query_block_jobs_one, &prev);
1859 return dummy.next;
1862 QemuOptsList qemu_common_drive_opts = {
1863 .name = "drive",
1864 .head = QTAILQ_HEAD_INITIALIZER(qemu_common_drive_opts.head),
1865 .desc = {
1867 .name = "bus",
1868 .type = QEMU_OPT_NUMBER,
1869 .help = "bus number",
1871 .name = "unit",
1872 .type = QEMU_OPT_NUMBER,
1873 .help = "unit number (i.e. lun for scsi)",
1875 .name = "if",
1876 .type = QEMU_OPT_STRING,
1877 .help = "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
1879 .name = "index",
1880 .type = QEMU_OPT_NUMBER,
1881 .help = "index number",
1883 .name = "cyls",
1884 .type = QEMU_OPT_NUMBER,
1885 .help = "number of cylinders (ide disk geometry)",
1887 .name = "heads",
1888 .type = QEMU_OPT_NUMBER,
1889 .help = "number of heads (ide disk geometry)",
1891 .name = "secs",
1892 .type = QEMU_OPT_NUMBER,
1893 .help = "number of sectors (ide disk geometry)",
1895 .name = "trans",
1896 .type = QEMU_OPT_STRING,
1897 .help = "chs translation (auto, lba. none)",
1899 .name = "media",
1900 .type = QEMU_OPT_STRING,
1901 .help = "media type (disk, cdrom)",
1903 .name = "snapshot",
1904 .type = QEMU_OPT_BOOL,
1905 .help = "enable/disable snapshot mode",
1907 .name = "file",
1908 .type = QEMU_OPT_STRING,
1909 .help = "disk image",
1911 .name = "discard",
1912 .type = QEMU_OPT_STRING,
1913 .help = "discard operation (ignore/off, unmap/on)",
1915 .name = "cache.writeback",
1916 .type = QEMU_OPT_BOOL,
1917 .help = "enables writeback mode for any caches",
1919 .name = "cache.direct",
1920 .type = QEMU_OPT_BOOL,
1921 .help = "enables use of O_DIRECT (bypass the host page cache)",
1923 .name = "cache.no-flush",
1924 .type = QEMU_OPT_BOOL,
1925 .help = "ignore any flush requests for the device",
1927 .name = "aio",
1928 .type = QEMU_OPT_STRING,
1929 .help = "host AIO implementation (threads, native)",
1931 .name = "format",
1932 .type = QEMU_OPT_STRING,
1933 .help = "disk format (raw, qcow2, ...)",
1935 .name = "serial",
1936 .type = QEMU_OPT_STRING,
1937 .help = "disk serial number",
1939 .name = "rerror",
1940 .type = QEMU_OPT_STRING,
1941 .help = "read error action",
1943 .name = "werror",
1944 .type = QEMU_OPT_STRING,
1945 .help = "write error action",
1947 .name = "addr",
1948 .type = QEMU_OPT_STRING,
1949 .help = "pci address (virtio only)",
1951 .name = "read-only",
1952 .type = QEMU_OPT_BOOL,
1953 .help = "open drive file as read-only",
1955 .name = "throttling.iops-total",
1956 .type = QEMU_OPT_NUMBER,
1957 .help = "limit total I/O operations per second",
1959 .name = "throttling.iops-read",
1960 .type = QEMU_OPT_NUMBER,
1961 .help = "limit read operations per second",
1963 .name = "throttling.iops-write",
1964 .type = QEMU_OPT_NUMBER,
1965 .help = "limit write operations per second",
1967 .name = "throttling.bps-total",
1968 .type = QEMU_OPT_NUMBER,
1969 .help = "limit total bytes per second",
1971 .name = "throttling.bps-read",
1972 .type = QEMU_OPT_NUMBER,
1973 .help = "limit read bytes per second",
1975 .name = "throttling.bps-write",
1976 .type = QEMU_OPT_NUMBER,
1977 .help = "limit write bytes per second",
1979 .name = "copy-on-read",
1980 .type = QEMU_OPT_BOOL,
1981 .help = "copy read data from backing file into image file",
1983 .name = "boot",
1984 .type = QEMU_OPT_BOOL,
1985 .help = "(deprecated, ignored)",
1987 { /* end of list */ }
1991 QemuOptsList qemu_drive_opts = {
1992 .name = "drive",
1993 .head = QTAILQ_HEAD_INITIALIZER(qemu_drive_opts.head),
1994 .desc = {
1996 * no elements => accept any params
1997 * validation will happen later
1999 { /* end of list */ }