]> git.proxmox.com Git - mirror_qemu.git/blame - blockdev.c
qmp: add interface blockdev-snapshot-internal-sync
[mirror_qemu.git] / blockdev.c
CommitLineData
666daa68
MA
1/*
2 * QEMU host block devices
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
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.
3618a094
MA
8 *
9 * This file incorporates work covered by the following copyright and
10 * permission notice:
11 *
12 * Copyright (c) 2003-2008 Fabrice Bellard
13 *
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:
20 *
21 * The above copyright notice and this permission notice shall be included in
22 * all copies or substantial portions of the Software.
23 *
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.
666daa68
MA
31 */
32
9c17d615 33#include "sysemu/blockdev.h"
0d09e41a 34#include "hw/block/block.h"
737e150e 35#include "block/blockjob.h"
83c9089e 36#include "monitor/monitor.h"
7b1b5d19 37#include "qapi/qmp/qerror.h"
1de7afc9
PB
38#include "qemu/option.h"
39#include "qemu/config-file.h"
7b1b5d19 40#include "qapi/qmp/types.h"
9c17d615 41#include "sysemu/sysemu.h"
737e150e 42#include "block/block_int.h"
a4dea8a9 43#include "qmp-commands.h"
12bd451f 44#include "trace.h"
9c17d615 45#include "sysemu/arch_init.h"
666daa68 46
c9b62a7e 47static QTAILQ_HEAD(drivelist, DriveInfo) drives = QTAILQ_HEAD_INITIALIZER(drives);
0006383e 48extern QemuOptsList qemu_common_drive_opts;
666daa68 49
1960966d
MA
50static 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",
60};
61
62static const int if_max_devs[IF_COUNT] = {
27d6bf40
MA
63 /*
64 * Do not change these numbers! They govern how drive option
65 * index maps to unit and bus. That mapping is ABI.
66 *
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.
71 *
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.
76 */
77 [IF_IDE] = 2,
78 [IF_SCSI] = 7,
1960966d
MA
79};
80
14bafc54
MA
81/*
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.
87 */
88void blockdev_mark_auto_del(BlockDriverState *bs)
89{
90 DriveInfo *dinfo = drive_get_by_blockdev(bs);
91
12bde0ee
PB
92 if (bs->job) {
93 block_job_cancel(bs->job);
94 }
0fc0f1fa
RH
95 if (dinfo) {
96 dinfo->auto_del = 1;
97 }
14bafc54
MA
98}
99
100void blockdev_auto_del(BlockDriverState *bs)
101{
102 DriveInfo *dinfo = drive_get_by_blockdev(bs);
103
0fc0f1fa 104 if (dinfo && dinfo->auto_del) {
84fb3925 105 drive_put_ref(dinfo);
14bafc54
MA
106 }
107}
108
505a7fb1
MA
109static int drive_index_to_bus_id(BlockInterfaceType type, int index)
110{
111 int max_devs = if_max_devs[type];
112 return max_devs ? index / max_devs : 0;
113}
114
115static int drive_index_to_unit_id(BlockInterfaceType type, int index)
116{
117 int max_devs = if_max_devs[type];
118 return max_devs ? index % max_devs : index;
119}
120
2292ddae
MA
121QemuOpts *drive_def(const char *optstr)
122{
123 return qemu_opts_parse(qemu_find_opts("drive"), optstr, 0);
124}
125
126QemuOpts *drive_add(BlockInterfaceType type, int index, const char *file,
5645b0f4 127 const char *optstr)
666daa68 128{
666daa68 129 QemuOpts *opts;
2292ddae 130 char buf[32];
666daa68 131
2292ddae 132 opts = drive_def(optstr);
666daa68
MA
133 if (!opts) {
134 return NULL;
135 }
2292ddae
MA
136 if (type != IF_DEFAULT) {
137 qemu_opt_set(opts, "if", if_name[type]);
138 }
139 if (index >= 0) {
140 snprintf(buf, sizeof(buf), "%d", index);
141 qemu_opt_set(opts, "index", buf);
142 }
666daa68
MA
143 if (file)
144 qemu_opt_set(opts, "file", file);
145 return opts;
146}
147
148DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit)
149{
150 DriveInfo *dinfo;
151
152 /* seek interface, bus and unit */
153
154 QTAILQ_FOREACH(dinfo, &drives, next) {
155 if (dinfo->type == type &&
156 dinfo->bus == bus &&
157 dinfo->unit == unit)
158 return dinfo;
159 }
160
161 return NULL;
162}
163
f1bd51ac
MA
164DriveInfo *drive_get_by_index(BlockInterfaceType type, int index)
165{
166 return drive_get(type,
167 drive_index_to_bus_id(type, index),
168 drive_index_to_unit_id(type, index));
169}
170
666daa68
MA
171int drive_get_max_bus(BlockInterfaceType type)
172{
173 int max_bus;
174 DriveInfo *dinfo;
175
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;
181 }
182 return max_bus;
183}
184
13839974
MA
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. */
188DriveInfo *drive_get_next(BlockInterfaceType type)
189{
190 static int next_block_unit[IF_COUNT];
191
192 return drive_get(type, 0, next_block_unit[type]++);
193}
194
e4700e59 195DriveInfo *drive_get_by_blockdev(BlockDriverState *bs)
666daa68
MA
196{
197 DriveInfo *dinfo;
198
199 QTAILQ_FOREACH(dinfo, &drives, next) {
e4700e59
MA
200 if (dinfo->bdrv == bs) {
201 return dinfo;
202 }
666daa68 203 }
e4700e59 204 return NULL;
666daa68
MA
205}
206
666daa68
MA
207static void bdrv_format_print(void *opaque, const char *name)
208{
807105a7 209 error_printf(" %s", name);
666daa68
MA
210}
211
84fb3925 212static void drive_uninit(DriveInfo *dinfo)
666daa68
MA
213{
214 qemu_opts_del(dinfo->opts);
4f6fd349 215 bdrv_unref(dinfo->bdrv);
7267c094 216 g_free(dinfo->id);
666daa68 217 QTAILQ_REMOVE(&drives, dinfo, next);
bb44619b 218 g_free(dinfo->serial);
7267c094 219 g_free(dinfo);
666daa68
MA
220}
221
84fb3925
MT
222void drive_put_ref(DriveInfo *dinfo)
223{
224 assert(dinfo->refcount);
225 if (--dinfo->refcount == 0) {
226 drive_uninit(dinfo);
227 }
228}
229
230void drive_get_ref(DriveInfo *dinfo)
231{
232 dinfo->refcount++;
233}
234
aa398a5c
SH
235typedef struct {
236 QEMUBH *bh;
fa510ebf
FZ
237 BlockDriverState *bs;
238} BDRVPutRefBH;
aa398a5c 239
fa510ebf 240static void bdrv_put_ref_bh(void *opaque)
aa398a5c 241{
fa510ebf 242 BDRVPutRefBH *s = opaque;
aa398a5c 243
fa510ebf 244 bdrv_unref(s->bs);
aa398a5c
SH
245 qemu_bh_delete(s->bh);
246 g_free(s);
247}
248
249/*
fa510ebf 250 * Release a BDS reference in a BH
aa398a5c 251 *
fa510ebf
FZ
252 * It is not safe to use bdrv_unref() from a callback function when the callers
253 * still need the BlockDriverState. In such cases we schedule a BH to release
254 * the reference.
aa398a5c 255 */
fa510ebf 256static void bdrv_put_ref_bh_schedule(BlockDriverState *bs)
aa398a5c 257{
fa510ebf 258 BDRVPutRefBH *s;
aa398a5c 259
fa510ebf
FZ
260 s = g_new(BDRVPutRefBH, 1);
261 s->bh = qemu_bh_new(bdrv_put_ref_bh, s);
262 s->bs = bs;
aa398a5c
SH
263 qemu_bh_schedule(s->bh);
264}
265
1ceee0d5 266static int parse_block_error_action(const char *buf, bool is_read)
666daa68
MA
267{
268 if (!strcmp(buf, "ignore")) {
92aa5c6d 269 return BLOCKDEV_ON_ERROR_IGNORE;
666daa68 270 } else if (!is_read && !strcmp(buf, "enospc")) {
92aa5c6d 271 return BLOCKDEV_ON_ERROR_ENOSPC;
666daa68 272 } else if (!strcmp(buf, "stop")) {
92aa5c6d 273 return BLOCKDEV_ON_ERROR_STOP;
666daa68 274 } else if (!strcmp(buf, "report")) {
92aa5c6d 275 return BLOCKDEV_ON_ERROR_REPORT;
666daa68 276 } else {
807105a7
MA
277 error_report("'%s' invalid %s error action",
278 buf, is_read ? "read" : "write");
666daa68
MA
279 return -1;
280 }
281}
282
cc0681c4 283static bool check_throttle_config(ThrottleConfig *cfg, Error **errp)
0563e191 284{
cc0681c4
BC
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");
0563e191
ZYW
288 return false;
289 }
290
cc0681c4
BC
291 if (!throttle_is_valid(cfg)) {
292 error_setg(errp, "bps/iops/maxs values must be 0 or greater");
7d81c141
SH
293 return false;
294 }
295
0563e191
ZYW
296 return true;
297}
298
57975222
KW
299static DriveInfo *blockdev_init(QemuOpts *all_opts,
300 BlockInterfaceType block_default_type)
666daa68
MA
301{
302 const char *buf;
303 const char *file = NULL;
666daa68
MA
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;
666daa68
MA
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;
cc0681c4 317 ThrottleConfig cfg;
666daa68 318 int snapshot = 0;
fb0490f6 319 bool copy_on_read;
666daa68 320 int ret;
c546194f 321 Error *error = NULL;
0006383e
KW
322 QemuOpts *opts;
323 QDict *bs_opts;
324 const char *id;
74fe54f2 325 bool has_driver_specific_opts;
6db5f5d6 326 BlockDriver *drv = NULL;
666daa68 327
666daa68 328 translation = BIOS_ATA_TRANSLATION_AUTO;
666daa68
MA
329 media = MEDIA_DISK;
330
0006383e
KW
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;
339 }
340
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;
348 }
349
350 if (id) {
351 qdict_del(bs_opts, "id");
352 }
353
74fe54f2
KW
354 has_driver_specific_opts = !!qdict_size(bs_opts);
355
666daa68
MA
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);
360
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);
364
365 snapshot = qemu_opt_get_bool(opts, "snapshot", 0);
0f227a94 366 ro = qemu_opt_get_bool(opts, "read-only", 0);
fb0490f6 367 copy_on_read = qemu_opt_get_bool(opts, "copy-on-read", false);
666daa68
MA
368
369 file = qemu_opt_get(opts, "file");
370 serial = qemu_opt_get(opts, "serial");
371
372 if ((buf = qemu_opt_get(opts, "if")) != NULL) {
1960966d
MA
373 for (type = 0; type < IF_COUNT && strcmp(buf, if_name[type]); type++)
374 ;
375 if (type == IF_COUNT) {
807105a7 376 error_report("unsupported bus type '%s'", buf);
666daa68
MA
377 return NULL;
378 }
2d3999fe 379 } else {
2d0d2837 380 type = block_default_type;
666daa68 381 }
2d3999fe 382
1960966d 383 max_devs = if_max_devs[type];
666daa68
MA
384
385 if (cyls || heads || secs) {
aaea3f36 386 if (cyls < 1) {
807105a7 387 error_report("invalid physical cyls number");
666daa68
MA
388 return NULL;
389 }
aaea3f36 390 if (heads < 1) {
807105a7 391 error_report("invalid physical heads number");
666daa68
MA
392 return NULL;
393 }
aaea3f36 394 if (secs < 1) {
807105a7 395 error_report("invalid physical secs number");
666daa68
MA
396 return NULL;
397 }
398 }
399
400 if ((buf = qemu_opt_get(opts, "trans")) != NULL) {
401 if (!cyls) {
e4080f9b 402 error_report("'%s' trans must be used with cyls, heads and secs",
807105a7 403 buf);
666daa68
MA
404 return NULL;
405 }
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 {
807105a7 413 error_report("'%s' invalid translation type", buf);
666daa68
MA
414 return NULL;
415 }
416 }
417
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) {
e7ff8f0e 423 error_report("CHS can't be set with media=%s", buf);
666daa68
MA
424 return NULL;
425 }
426 media = MEDIA_CDROM;
427 } else {
807105a7 428 error_report("'%s' invalid media", buf);
666daa68
MA
429 return NULL;
430 }
431 }
432
a9384aff
PB
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;
437 }
438 }
439
29c4e2b5
KW
440 if (qemu_opt_get_bool(opts, "cache.writeback", true)) {
441 bdrv_flags |= BDRV_O_CACHE_WB;
442 }
443 if (qemu_opt_get_bool(opts, "cache.direct", false)) {
444 bdrv_flags |= BDRV_O_NOCACHE;
445 }
446 if (qemu_opt_get_bool(opts, "cache.no-flush", true)) {
447 bdrv_flags |= BDRV_O_NO_FLUSH;
666daa68
MA
448 }
449
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 {
807105a7 457 error_report("invalid aio option");
666daa68
MA
458 return NULL;
459 }
460 }
461#endif
462
463 if ((buf = qemu_opt_get(opts, "format")) != NULL) {
c8057f95
PM
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;
666daa68 469 }
74fe54f2 470
6db5f5d6
MQ
471 drv = bdrv_find_whitelisted_format(buf, ro);
472 if (!drv) {
7780d472
FZ
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);
477 }
6db5f5d6
MQ
478 return NULL;
479 }
666daa68
MA
480 }
481
0563e191 482 /* disk I/O throttling */
cc0681c4
BC
483 memset(&cfg, 0, sizeof(cfg));
484 cfg.buckets[THROTTLE_BPS_TOTAL].avg =
57975222 485 qemu_opt_get_number(opts, "throttling.bps-total", 0);
cc0681c4 486 cfg.buckets[THROTTLE_BPS_READ].avg =
57975222 487 qemu_opt_get_number(opts, "throttling.bps-read", 0);
cc0681c4 488 cfg.buckets[THROTTLE_BPS_WRITE].avg =
57975222 489 qemu_opt_get_number(opts, "throttling.bps-write", 0);
cc0681c4 490 cfg.buckets[THROTTLE_OPS_TOTAL].avg =
57975222 491 qemu_opt_get_number(opts, "throttling.iops-total", 0);
cc0681c4 492 cfg.buckets[THROTTLE_OPS_READ].avg =
57975222 493 qemu_opt_get_number(opts, "throttling.iops-read", 0);
cc0681c4 494 cfg.buckets[THROTTLE_OPS_WRITE].avg =
57975222 495 qemu_opt_get_number(opts, "throttling.iops-write", 0);
0563e191 496
3e9fab69
BC
497 cfg.buckets[THROTTLE_BPS_TOTAL].max =
498 qemu_opt_get_number(opts, "throttling.bps-total-max", 0);
499 cfg.buckets[THROTTLE_BPS_READ].max =
500 qemu_opt_get_number(opts, "throttling.bps-read-max", 0);
501 cfg.buckets[THROTTLE_BPS_WRITE].max =
502 qemu_opt_get_number(opts, "throttling.bps-write-max", 0);
503 cfg.buckets[THROTTLE_OPS_TOTAL].max =
504 qemu_opt_get_number(opts, "throttling.iops-total-max", 0);
505 cfg.buckets[THROTTLE_OPS_READ].max =
506 qemu_opt_get_number(opts, "throttling.iops-read-max", 0);
507 cfg.buckets[THROTTLE_OPS_WRITE].max =
508 qemu_opt_get_number(opts, "throttling.iops-write-max", 0);
cc0681c4 509
2024c1df 510 cfg.op_size = qemu_opt_get_number(opts, "throttling.iops-size", 0);
cc0681c4
BC
511
512 if (!check_throttle_config(&cfg, &error)) {
c546194f
SH
513 error_report("%s", error_get_pretty(error));
514 error_free(error);
0563e191
ZYW
515 return NULL;
516 }
517
0d92d17a
JK
518 if (qemu_opt_get(opts, "boot") != NULL) {
519 fprintf(stderr, "qemu-kvm: boot=on|off is deprecated and will be "
520 "ignored. Future versions will reject this parameter. Please "
521 "update your scripts.\n");
522 }
523
92aa5c6d 524 on_write_error = BLOCKDEV_ON_ERROR_ENOSPC;
666daa68
MA
525 if ((buf = qemu_opt_get(opts, "werror")) != NULL) {
526 if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO && type != IF_NONE) {
807105a7 527 error_report("werror is not supported by this bus type");
666daa68
MA
528 return NULL;
529 }
530
531 on_write_error = parse_block_error_action(buf, 0);
532 if (on_write_error < 0) {
533 return NULL;
534 }
535 }
536
92aa5c6d 537 on_read_error = BLOCKDEV_ON_ERROR_REPORT;
666daa68 538 if ((buf = qemu_opt_get(opts, "rerror")) != NULL) {
5dba48a8 539 if (type != IF_IDE && type != IF_VIRTIO && type != IF_SCSI && type != IF_NONE) {
807105a7 540 error_report("rerror is not supported by this bus type");
666daa68
MA
541 return NULL;
542 }
543
544 on_read_error = parse_block_error_action(buf, 1);
545 if (on_read_error < 0) {
546 return NULL;
547 }
548 }
549
550 if ((devaddr = qemu_opt_get(opts, "addr")) != NULL) {
551 if (type != IF_VIRTIO) {
807105a7 552 error_report("addr is not supported by this bus type");
666daa68
MA
553 return NULL;
554 }
555 }
556
557 /* compute bus and unit according index */
558
559 if (index != -1) {
560 if (bus_id != 0 || unit_id != -1) {
807105a7 561 error_report("index cannot be used with bus and unit");
666daa68
MA
562 return NULL;
563 }
505a7fb1
MA
564 bus_id = drive_index_to_bus_id(type, index);
565 unit_id = drive_index_to_unit_id(type, index);
666daa68
MA
566 }
567
568 /* if user doesn't specify a unit_id,
569 * try to find the first free
570 */
571
572 if (unit_id == -1) {
573 unit_id = 0;
574 while (drive_get(type, bus_id, unit_id) != NULL) {
575 unit_id++;
576 if (max_devs && unit_id >= max_devs) {
577 unit_id -= max_devs;
578 bus_id++;
579 }
580 }
581 }
582
583 /* check unit id */
584
585 if (max_devs && unit_id >= max_devs) {
807105a7
MA
586 error_report("unit %d too big (max is %d)",
587 unit_id, max_devs - 1);
666daa68
MA
588 return NULL;
589 }
590
591 /*
4e5d9b57 592 * catch multiple definitions
666daa68
MA
593 */
594
595 if (drive_get(type, bus_id, unit_id) != NULL) {
4e5d9b57
MA
596 error_report("drive with bus=%d, unit=%d (index=%d) exists",
597 bus_id, unit_id, index);
666daa68
MA
598 return NULL;
599 }
600
601 /* init */
602
7267c094 603 dinfo = g_malloc0(sizeof(*dinfo));
666daa68 604 if ((buf = qemu_opts_id(opts)) != NULL) {
7267c094 605 dinfo->id = g_strdup(buf);
666daa68
MA
606 } else {
607 /* no id supplied -> create one */
7267c094 608 dinfo->id = g_malloc0(32);
666daa68
MA
609 if (type == IF_IDE || type == IF_SCSI)
610 mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd";
611 if (max_devs)
612 snprintf(dinfo->id, 32, "%s%i%s%i",
79d21d5b 613 if_name[type], bus_id, mediastr, unit_id);
666daa68
MA
614 else
615 snprintf(dinfo->id, 32, "%s%s%i",
79d21d5b 616 if_name[type], mediastr, unit_id);
666daa68
MA
617 }
618 dinfo->bdrv = bdrv_new(dinfo->id);
80dd1aae
KS
619 dinfo->bdrv->open_flags = snapshot ? BDRV_O_SNAPSHOT : 0;
620 dinfo->bdrv->read_only = ro;
666daa68
MA
621 dinfo->devaddr = devaddr;
622 dinfo->type = type;
623 dinfo->bus = bus_id;
624 dinfo->unit = unit_id;
317bb412
MA
625 dinfo->cyls = cyls;
626 dinfo->heads = heads;
627 dinfo->secs = secs;
628 dinfo->trans = translation;
0006383e 629 dinfo->opts = all_opts;
84fb3925 630 dinfo->refcount = 1;
bb44619b
KW
631 if (serial != NULL) {
632 dinfo->serial = g_strdup(serial);
633 }
666daa68
MA
634 QTAILQ_INSERT_TAIL(&drives, dinfo, next);
635
abd7f68d
MA
636 bdrv_set_on_error(dinfo->bdrv, on_read_error, on_write_error);
637
0563e191 638 /* disk I/O throttling */
cc0681c4
BC
639 if (throttle_enabled(&cfg)) {
640 bdrv_io_limits_enable(dinfo->bdrv);
641 bdrv_set_io_limits(dinfo->bdrv, &cfg);
642 }
0563e191 643
666daa68
MA
644 switch(type) {
645 case IF_IDE:
646 case IF_SCSI:
647 case IF_XEN:
648 case IF_NONE:
2b584959 649 dinfo->media_cd = media == MEDIA_CDROM;
666daa68
MA
650 break;
651 case IF_SD:
666daa68 652 case IF_FLOPPY:
666daa68
MA
653 case IF_PFLASH:
654 case IF_MTD:
655 break;
656 case IF_VIRTIO:
0006383e 657 {
666daa68 658 /* add virtio block device */
0006383e
KW
659 QemuOpts *devopts;
660 devopts = qemu_opts_create_nofail(qemu_find_opts("device"));
eeb9c1b5 661 if (arch_type == QEMU_ARCH_S390X) {
0006383e 662 qemu_opt_set(devopts, "driver", "virtio-blk-s390");
eeb9c1b5 663 } else {
0006383e 664 qemu_opt_set(devopts, "driver", "virtio-blk-pci");
eeb9c1b5 665 }
0006383e 666 qemu_opt_set(devopts, "drive", dinfo->id);
666daa68 667 if (devaddr)
0006383e 668 qemu_opt_set(devopts, "addr", devaddr);
666daa68 669 break;
0006383e 670 }
2292ddae 671 default:
666daa68
MA
672 abort();
673 }
dd5b0d71 674 if (!file || !*file) {
74fe54f2 675 if (has_driver_specific_opts) {
c2ad1b0c
KW
676 file = NULL;
677 } else {
678 return dinfo;
679 }
666daa68
MA
680 }
681 if (snapshot) {
682 /* always use cache=unsafe with snapshot */
683 bdrv_flags &= ~BDRV_O_CACHE_MASK;
684 bdrv_flags |= (BDRV_O_SNAPSHOT|BDRV_O_CACHE_WB|BDRV_O_NO_FLUSH);
685 }
686
fb0490f6
SH
687 if (copy_on_read) {
688 bdrv_flags |= BDRV_O_COPY_ON_READ;
689 }
690
ed9d4205
BC
691 if (runstate_check(RUN_STATE_INMIGRATE)) {
692 bdrv_flags |= BDRV_O_INCOMING;
693 }
694
666daa68
MA
695 if (media == MEDIA_CDROM) {
696 /* CDROM is fine for any interface, don't check. */
697 ro = 1;
698 } else if (ro == 1) {
1e9eb78a
JJ
699 if (type != IF_SCSI && type != IF_VIRTIO && type != IF_FLOPPY &&
700 type != IF_NONE && type != IF_PFLASH) {
0f227a94 701 error_report("read-only not supported by this bus type");
a9ae2bff 702 goto err;
666daa68
MA
703 }
704 }
705
706 bdrv_flags |= ro ? 0 : BDRV_O_RDWR;
707
04d4abe9 708 if (ro && copy_on_read) {
0f227a94 709 error_report("warning: disabling copy_on_read on read-only drive");
04d4abe9
SH
710 }
711
74fe54f2 712 QINCREF(bs_opts);
6db5f5d6 713 ret = bdrv_open(dinfo->bdrv, file, bs_opts, bdrv_flags, drv);
0006383e 714
666daa68 715 if (ret < 0) {
02582abd
SW
716 if (ret == -EMEDIUMTYPE) {
717 error_report("could not open disk image %s: not in %s format",
6db5f5d6
MQ
718 file ?: dinfo->id, drv ? drv->format_name :
719 qdict_get_str(bs_opts, "driver"));
02582abd
SW
720 } else {
721 error_report("could not open disk image %s: %s",
c2ad1b0c 722 file ?: dinfo->id, strerror(-ret));
02582abd 723 }
a9ae2bff 724 goto err;
666daa68
MA
725 }
726
727 if (bdrv_key_required(dinfo->bdrv))
728 autostart = 0;
0006383e 729
74fe54f2 730 QDECREF(bs_opts);
0006383e
KW
731 qemu_opts_del(opts);
732
666daa68 733 return dinfo;
a9ae2bff
MA
734
735err:
0006383e
KW
736 qemu_opts_del(opts);
737 QDECREF(bs_opts);
4f6fd349 738 bdrv_unref(dinfo->bdrv);
7267c094 739 g_free(dinfo->id);
a9ae2bff 740 QTAILQ_REMOVE(&drives, dinfo, next);
7267c094 741 g_free(dinfo);
a9ae2bff 742 return NULL;
666daa68
MA
743}
744
57975222
KW
745static void qemu_opt_rename(QemuOpts *opts, const char *from, const char *to)
746{
747 const char *value;
748
749 value = qemu_opt_get(opts, from);
750 if (value) {
751 qemu_opt_set(opts, to, value);
752 qemu_opt_unset(opts, from);
753 }
754}
755
756DriveInfo *drive_init(QemuOpts *all_opts, BlockInterfaceType block_default_type)
757{
29c4e2b5
KW
758 const char *value;
759
57975222
KW
760 /* Change legacy command line options into QMP ones */
761 qemu_opt_rename(all_opts, "iops", "throttling.iops-total");
762 qemu_opt_rename(all_opts, "iops_rd", "throttling.iops-read");
763 qemu_opt_rename(all_opts, "iops_wr", "throttling.iops-write");
764
765 qemu_opt_rename(all_opts, "bps", "throttling.bps-total");
766 qemu_opt_rename(all_opts, "bps_rd", "throttling.bps-read");
767 qemu_opt_rename(all_opts, "bps_wr", "throttling.bps-write");
768
3e9fab69
BC
769 qemu_opt_rename(all_opts, "iops_max", "throttling.iops-total-max");
770 qemu_opt_rename(all_opts, "iops_rd_max", "throttling.iops-read-max");
771 qemu_opt_rename(all_opts, "iops_wr_max", "throttling.iops-write-max");
772
773 qemu_opt_rename(all_opts, "bps_max", "throttling.bps-total-max");
774 qemu_opt_rename(all_opts, "bps_rd_max", "throttling.bps-read-max");
775 qemu_opt_rename(all_opts, "bps_wr_max", "throttling.bps-write-max");
776
2024c1df
BC
777 qemu_opt_rename(all_opts,
778 "iops_size", "throttling.iops-size");
779
0f227a94
KW
780 qemu_opt_rename(all_opts, "readonly", "read-only");
781
29c4e2b5
KW
782 value = qemu_opt_get(all_opts, "cache");
783 if (value) {
784 int flags = 0;
785
786 if (bdrv_parse_cache_flags(value, &flags) != 0) {
787 error_report("invalid cache option");
788 return NULL;
789 }
790
791 /* Specific options take precedence */
792 if (!qemu_opt_get(all_opts, "cache.writeback")) {
793 qemu_opt_set_bool(all_opts, "cache.writeback",
794 !!(flags & BDRV_O_CACHE_WB));
795 }
796 if (!qemu_opt_get(all_opts, "cache.direct")) {
797 qemu_opt_set_bool(all_opts, "cache.direct",
798 !!(flags & BDRV_O_NOCACHE));
799 }
800 if (!qemu_opt_get(all_opts, "cache.no-flush")) {
801 qemu_opt_set_bool(all_opts, "cache.no-flush",
802 !!(flags & BDRV_O_NO_FLUSH));
803 }
804 qemu_opt_unset(all_opts, "cache");
805 }
806
57975222
KW
807 return blockdev_init(all_opts, block_default_type);
808}
809
666daa68
MA
810void do_commit(Monitor *mon, const QDict *qdict)
811{
666daa68 812 const char *device = qdict_get_str(qdict, "device");
6ab4b5ab 813 BlockDriverState *bs;
e8877497 814 int ret;
666daa68 815
6ab4b5ab 816 if (!strcmp(device, "all")) {
e8877497 817 ret = bdrv_commit_all();
6ab4b5ab
MA
818 } else {
819 bs = bdrv_find(device);
ac59eb95 820 if (!bs) {
58513bde 821 monitor_printf(mon, "Device '%s' not found\n", device);
ac59eb95 822 return;
6ab4b5ab 823 }
2d3735d3 824 ret = bdrv_commit(bs);
58513bde
JC
825 }
826 if (ret < 0) {
827 monitor_printf(mon, "'commit' error for '%s': %s\n", device,
828 strerror(-ret));
666daa68
MA
829 }
830}
831
6cc2a415
PB
832static void blockdev_do_action(int kind, void *data, Error **errp)
833{
c8a83e85
KW
834 TransactionAction action;
835 TransactionActionList list;
6cc2a415
PB
836
837 action.kind = kind;
838 action.data = data;
839 list.value = &action;
840 list.next = NULL;
841 qmp_transaction(&list, errp);
842}
843
6106e249
LC
844void qmp_blockdev_snapshot_sync(const char *device, const char *snapshot_file,
845 bool has_format, const char *format,
6cc2a415 846 bool has_mode, enum NewImageMode mode,
6106e249 847 Error **errp)
f8882568 848{
6cc2a415
PB
849 BlockdevSnapshot snapshot = {
850 .device = (char *) device,
851 .snapshot_file = (char *) snapshot_file,
852 .has_format = has_format,
853 .format = (char *) format,
854 .has_mode = has_mode,
855 .mode = mode,
856 };
c8a83e85
KW
857 blockdev_do_action(TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC,
858 &snapshot, errp);
f8882568
JS
859}
860
f323bc9e
WX
861void qmp_blockdev_snapshot_internal_sync(const char *device,
862 const char *name,
863 Error **errp)
864{
865 BlockdevSnapshotInternal snapshot = {
866 .device = (char *) device,
867 .name = (char *) name
868 };
869
870 blockdev_do_action(TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC,
871 &snapshot, errp);
872}
873
8802d1fd
JC
874
875/* New and old BlockDriverState structs for group snapshots */
ba0c86a3 876
ba5d6ab6 877typedef struct BlkTransactionState BlkTransactionState;
ba0c86a3
WX
878
879/* Only prepare() may fail. In a single transaction, only one of commit() or
880 abort() will be called, clean() will always be called if it present. */
881typedef struct BdrvActionOps {
882 /* Size of state struct, in bytes. */
883 size_t instance_size;
884 /* Prepare the work, must NOT be NULL. */
ba5d6ab6 885 void (*prepare)(BlkTransactionState *common, Error **errp);
f9ea81e8 886 /* Commit the changes, can be NULL. */
ba5d6ab6 887 void (*commit)(BlkTransactionState *common);
ba0c86a3 888 /* Abort the changes on fail, can be NULL. */
ba5d6ab6 889 void (*abort)(BlkTransactionState *common);
ba0c86a3 890 /* Clean up resource in the end, can be NULL. */
ba5d6ab6 891 void (*clean)(BlkTransactionState *common);
ba0c86a3
WX
892} BdrvActionOps;
893
894/*
895 * This structure must be arranged as first member in child type, assuming
896 * that compiler will also arrange it to the same address with parent instance.
897 * Later it will be used in free().
898 */
ba5d6ab6 899struct BlkTransactionState {
c8a83e85 900 TransactionAction *action;
ba0c86a3 901 const BdrvActionOps *ops;
ba5d6ab6 902 QSIMPLEQ_ENTRY(BlkTransactionState) entry;
ba0c86a3
WX
903};
904
bbe86010
WX
905/* internal snapshot private data */
906typedef struct InternalSnapshotState {
907 BlkTransactionState common;
908 BlockDriverState *bs;
909 QEMUSnapshotInfo sn;
910} InternalSnapshotState;
911
912static void internal_snapshot_prepare(BlkTransactionState *common,
913 Error **errp)
914{
915 const char *device;
916 const char *name;
917 BlockDriverState *bs;
918 QEMUSnapshotInfo old_sn, *sn;
919 bool ret;
920 qemu_timeval tv;
921 BlockdevSnapshotInternal *internal;
922 InternalSnapshotState *state;
923 int ret1;
924
925 g_assert(common->action->kind ==
926 TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC);
927 internal = common->action->blockdev_snapshot_internal_sync;
928 state = DO_UPCAST(InternalSnapshotState, common, common);
929
930 /* 1. parse input */
931 device = internal->device;
932 name = internal->name;
933
934 /* 2. check for validation */
935 bs = bdrv_find(device);
936 if (!bs) {
937 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
938 return;
939 }
940
941 if (!bdrv_is_inserted(bs)) {
942 error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device);
943 return;
944 }
945
946 if (bdrv_is_read_only(bs)) {
947 error_set(errp, QERR_DEVICE_IS_READ_ONLY, device);
948 return;
949 }
950
951 if (!bdrv_can_snapshot(bs)) {
952 error_set(errp, QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED,
953 bs->drv->format_name, device, "internal snapshot");
954 return;
955 }
956
957 if (!strlen(name)) {
958 error_setg(errp, "Name is empty");
959 return;
960 }
961
962 /* check whether a snapshot with name exist */
963 ret = bdrv_snapshot_find_by_id_and_name(bs, NULL, name, &old_sn, errp);
964 if (error_is_set(errp)) {
965 return;
966 } else if (ret) {
967 error_setg(errp,
968 "Snapshot with name '%s' already exists on device '%s'",
969 name, device);
970 return;
971 }
972
973 /* 3. take the snapshot */
974 sn = &state->sn;
975 pstrcpy(sn->name, sizeof(sn->name), name);
976 qemu_gettimeofday(&tv);
977 sn->date_sec = tv.tv_sec;
978 sn->date_nsec = tv.tv_usec * 1000;
979 sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
980
981 ret1 = bdrv_snapshot_create(bs, sn);
982 if (ret1 < 0) {
983 error_setg_errno(errp, -ret1,
984 "Failed to create snapshot '%s' on device '%s'",
985 name, device);
986 return;
987 }
988
989 /* 4. succeed, mark a snapshot is created */
990 state->bs = bs;
991}
992
993static void internal_snapshot_abort(BlkTransactionState *common)
994{
995 InternalSnapshotState *state =
996 DO_UPCAST(InternalSnapshotState, common, common);
997 BlockDriverState *bs = state->bs;
998 QEMUSnapshotInfo *sn = &state->sn;
999 Error *local_error = NULL;
1000
1001 if (!bs) {
1002 return;
1003 }
1004
1005 if (bdrv_snapshot_delete(bs, sn->id_str, sn->name, &local_error) < 0) {
1006 error_report("Failed to delete snapshot with id '%s' and name '%s' on "
1007 "device '%s' in abort: %s",
1008 sn->id_str,
1009 sn->name,
1010 bdrv_get_device_name(bs),
1011 error_get_pretty(local_error));
1012 error_free(local_error);
1013 }
1014}
1015
ba0c86a3 1016/* external snapshot private data */
ba5d6ab6
SH
1017typedef struct ExternalSnapshotState {
1018 BlkTransactionState common;
8802d1fd
JC
1019 BlockDriverState *old_bs;
1020 BlockDriverState *new_bs;
ba5d6ab6 1021} ExternalSnapshotState;
8802d1fd 1022
ba5d6ab6 1023static void external_snapshot_prepare(BlkTransactionState *common,
9b9877ee
WX
1024 Error **errp)
1025{
9b9877ee
WX
1026 BlockDriver *drv;
1027 int flags, ret;
1028 Error *local_err = NULL;
e2a31e87
WX
1029 const char *device;
1030 const char *new_image_file;
1031 const char *format = "qcow2";
1032 enum NewImageMode mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS;
ba5d6ab6
SH
1033 ExternalSnapshotState *state =
1034 DO_UPCAST(ExternalSnapshotState, common, common);
c8a83e85 1035 TransactionAction *action = common->action;
9b9877ee 1036
e2a31e87 1037 /* get parameters */
c8a83e85 1038 g_assert(action->kind == TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC);
e2a31e87
WX
1039
1040 device = action->blockdev_snapshot_sync->device;
1041 new_image_file = action->blockdev_snapshot_sync->snapshot_file;
1042 if (action->blockdev_snapshot_sync->has_format) {
1043 format = action->blockdev_snapshot_sync->format;
1044 }
1045 if (action->blockdev_snapshot_sync->has_mode) {
1046 mode = action->blockdev_snapshot_sync->mode;
1047 }
1048
1049 /* start processing */
9b9877ee
WX
1050 drv = bdrv_find_format(format);
1051 if (!drv) {
1052 error_set(errp, QERR_INVALID_BLOCK_FORMAT, format);
1053 return;
1054 }
1055
ba5d6ab6
SH
1056 state->old_bs = bdrv_find(device);
1057 if (!state->old_bs) {
9b9877ee
WX
1058 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1059 return;
1060 }
1061
ba5d6ab6 1062 if (!bdrv_is_inserted(state->old_bs)) {
9b9877ee
WX
1063 error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device);
1064 return;
1065 }
1066
ba5d6ab6 1067 if (bdrv_in_use(state->old_bs)) {
9b9877ee
WX
1068 error_set(errp, QERR_DEVICE_IN_USE, device);
1069 return;
1070 }
1071
ba5d6ab6
SH
1072 if (!bdrv_is_read_only(state->old_bs)) {
1073 if (bdrv_flush(state->old_bs)) {
9b9877ee
WX
1074 error_set(errp, QERR_IO_ERROR);
1075 return;
1076 }
1077 }
1078
ba5d6ab6 1079 flags = state->old_bs->open_flags;
9b9877ee 1080
9b9877ee
WX
1081 /* create new image w/backing file */
1082 if (mode != NEW_IMAGE_MODE_EXISTING) {
1083 bdrv_img_create(new_image_file, format,
ba5d6ab6
SH
1084 state->old_bs->filename,
1085 state->old_bs->drv->format_name,
9b9877ee
WX
1086 NULL, -1, flags, &local_err, false);
1087 if (error_is_set(&local_err)) {
1088 error_propagate(errp, local_err);
1089 return;
1090 }
1091 }
1092
1093 /* We will manually add the backing_hd field to the bs later */
ba5d6ab6 1094 state->new_bs = bdrv_new("");
9b9877ee
WX
1095 /* TODO Inherit bs->options or only take explicit options with an
1096 * extended QMP command? */
ba5d6ab6 1097 ret = bdrv_open(state->new_bs, new_image_file, NULL,
9b9877ee
WX
1098 flags | BDRV_O_NO_BACKING, drv);
1099 if (ret != 0) {
0eef407c 1100 error_setg_file_open(errp, -ret, new_image_file);
9b9877ee
WX
1101 }
1102}
1103
ba5d6ab6 1104static void external_snapshot_commit(BlkTransactionState *common)
3b0047e8 1105{
ba5d6ab6
SH
1106 ExternalSnapshotState *state =
1107 DO_UPCAST(ExternalSnapshotState, common, common);
ba0c86a3 1108
ba5d6ab6
SH
1109 /* This removes our old bs and adds the new bs */
1110 bdrv_append(state->new_bs, state->old_bs);
3b0047e8
WX
1111 /* We don't need (or want) to use the transactional
1112 * bdrv_reopen_multiple() across all the entries at once, because we
1113 * don't want to abort all of them if one of them fails the reopen */
ba5d6ab6 1114 bdrv_reopen(state->new_bs, state->new_bs->open_flags & ~BDRV_O_RDWR,
3b0047e8
WX
1115 NULL);
1116}
1117
ba5d6ab6 1118static void external_snapshot_abort(BlkTransactionState *common)
96b86bf7 1119{
ba5d6ab6
SH
1120 ExternalSnapshotState *state =
1121 DO_UPCAST(ExternalSnapshotState, common, common);
1122 if (state->new_bs) {
4f6fd349 1123 bdrv_unref(state->new_bs);
96b86bf7
WX
1124 }
1125}
1126
3037f364
SH
1127typedef struct DriveBackupState {
1128 BlkTransactionState common;
1129 BlockDriverState *bs;
1130 BlockJob *job;
1131} DriveBackupState;
1132
1133static void drive_backup_prepare(BlkTransactionState *common, Error **errp)
1134{
1135 DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common);
1136 DriveBackup *backup;
1137 Error *local_err = NULL;
1138
1139 assert(common->action->kind == TRANSACTION_ACTION_KIND_DRIVE_BACKUP);
1140 backup = common->action->drive_backup;
1141
1142 qmp_drive_backup(backup->device, backup->target,
1143 backup->has_format, backup->format,
b53169ea 1144 backup->sync,
3037f364
SH
1145 backup->has_mode, backup->mode,
1146 backup->has_speed, backup->speed,
1147 backup->has_on_source_error, backup->on_source_error,
1148 backup->has_on_target_error, backup->on_target_error,
1149 &local_err);
1150 if (error_is_set(&local_err)) {
1151 error_propagate(errp, local_err);
1152 state->bs = NULL;
1153 state->job = NULL;
1154 return;
1155 }
1156
1157 state->bs = bdrv_find(backup->device);
1158 state->job = state->bs->job;
1159}
1160
1161static void drive_backup_abort(BlkTransactionState *common)
1162{
1163 DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common);
1164 BlockDriverState *bs = state->bs;
1165
1166 /* Only cancel if it's the job we started */
1167 if (bs && bs->job && bs->job == state->job) {
1168 block_job_cancel_sync(bs->job);
1169 }
1170}
1171
78b18b78
SH
1172static void abort_prepare(BlkTransactionState *common, Error **errp)
1173{
1174 error_setg(errp, "Transaction aborted using Abort action");
1175}
1176
1177static void abort_commit(BlkTransactionState *common)
1178{
dfc6f865 1179 g_assert_not_reached(); /* this action never succeeds */
78b18b78
SH
1180}
1181
ba0c86a3 1182static const BdrvActionOps actions[] = {
c8a83e85 1183 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC] = {
ba5d6ab6 1184 .instance_size = sizeof(ExternalSnapshotState),
ba0c86a3
WX
1185 .prepare = external_snapshot_prepare,
1186 .commit = external_snapshot_commit,
1187 .abort = external_snapshot_abort,
1188 },
3037f364
SH
1189 [TRANSACTION_ACTION_KIND_DRIVE_BACKUP] = {
1190 .instance_size = sizeof(DriveBackupState),
1191 .prepare = drive_backup_prepare,
1192 .abort = drive_backup_abort,
1193 },
78b18b78
SH
1194 [TRANSACTION_ACTION_KIND_ABORT] = {
1195 .instance_size = sizeof(BlkTransactionState),
1196 .prepare = abort_prepare,
1197 .commit = abort_commit,
1198 },
bbe86010
WX
1199 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC] = {
1200 .instance_size = sizeof(InternalSnapshotState),
1201 .prepare = internal_snapshot_prepare,
1202 .abort = internal_snapshot_abort,
1203 },
ba0c86a3
WX
1204};
1205
8802d1fd
JC
1206/*
1207 * 'Atomic' group snapshots. The snapshots are taken as a set, and if any fail
1208 * then we do not pivot any of the devices in the group, and abandon the
1209 * snapshots
1210 */
c8a83e85 1211void qmp_transaction(TransactionActionList *dev_list, Error **errp)
8802d1fd 1212{
c8a83e85 1213 TransactionActionList *dev_entry = dev_list;
ba5d6ab6 1214 BlkTransactionState *state, *next;
43e17041 1215 Error *local_err = NULL;
8802d1fd 1216
ba5d6ab6 1217 QSIMPLEQ_HEAD(snap_bdrv_states, BlkTransactionState) snap_bdrv_states;
8802d1fd
JC
1218 QSIMPLEQ_INIT(&snap_bdrv_states);
1219
1220 /* drain all i/o before any snapshots */
1221 bdrv_drain_all();
1222
1223 /* We don't do anything in this loop that commits us to the snapshot */
1224 while (NULL != dev_entry) {
c8a83e85 1225 TransactionAction *dev_info = NULL;
ba0c86a3 1226 const BdrvActionOps *ops;
52e7c241 1227
8802d1fd
JC
1228 dev_info = dev_entry->value;
1229 dev_entry = dev_entry->next;
1230
ba0c86a3
WX
1231 assert(dev_info->kind < ARRAY_SIZE(actions));
1232
1233 ops = &actions[dev_info->kind];
ba5d6ab6
SH
1234 state = g_malloc0(ops->instance_size);
1235 state->ops = ops;
1236 state->action = dev_info;
1237 QSIMPLEQ_INSERT_TAIL(&snap_bdrv_states, state, entry);
8802d1fd 1238
ba5d6ab6 1239 state->ops->prepare(state, &local_err);
ba0c86a3
WX
1240 if (error_is_set(&local_err)) {
1241 error_propagate(errp, local_err);
1242 goto delete_and_fail;
8802d1fd 1243 }
8802d1fd
JC
1244 }
1245
ba5d6ab6 1246 QSIMPLEQ_FOREACH(state, &snap_bdrv_states, entry) {
f9ea81e8
SH
1247 if (state->ops->commit) {
1248 state->ops->commit(state);
1249 }
8802d1fd
JC
1250 }
1251
1252 /* success */
1253 goto exit;
1254
1255delete_and_fail:
1256 /*
1257 * failure, and it is all-or-none; abandon each new bs, and keep using
1258 * the original bs for all images
1259 */
ba5d6ab6
SH
1260 QSIMPLEQ_FOREACH(state, &snap_bdrv_states, entry) {
1261 if (state->ops->abort) {
1262 state->ops->abort(state);
ba0c86a3 1263 }
8802d1fd
JC
1264 }
1265exit:
ba5d6ab6
SH
1266 QSIMPLEQ_FOREACH_SAFE(state, &snap_bdrv_states, entry, next) {
1267 if (state->ops->clean) {
1268 state->ops->clean(state);
ba0c86a3 1269 }
ba5d6ab6 1270 g_free(state);
8802d1fd 1271 }
8802d1fd
JC
1272}
1273
1274
92d48558 1275static void eject_device(BlockDriverState *bs, int force, Error **errp)
666daa68 1276{
2d3735d3
SH
1277 if (bdrv_in_use(bs)) {
1278 error_set(errp, QERR_DEVICE_IN_USE, bdrv_get_device_name(bs));
1279 return;
1280 }
2c6942fa 1281 if (!bdrv_dev_has_removable_media(bs)) {
92d48558
LC
1282 error_set(errp, QERR_DEVICE_NOT_REMOVABLE, bdrv_get_device_name(bs));
1283 return;
ea8f942f 1284 }
92d48558 1285
025ccaa7
PB
1286 if (bdrv_dev_is_medium_locked(bs) && !bdrv_dev_is_tray_open(bs)) {
1287 bdrv_dev_eject_request(bs, force);
1288 if (!force) {
92d48558
LC
1289 error_set(errp, QERR_DEVICE_LOCKED, bdrv_get_device_name(bs));
1290 return;
025ccaa7 1291 }
666daa68 1292 }
92d48558 1293
3b5276b5 1294 bdrv_close(bs);
666daa68
MA
1295}
1296
c245b6a3 1297void qmp_eject(const char *device, bool has_force, bool force, Error **errp)
666daa68
MA
1298{
1299 BlockDriverState *bs;
666daa68 1300
c245b6a3 1301 bs = bdrv_find(device);
666daa68 1302 if (!bs) {
c245b6a3
LC
1303 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1304 return;
92d48558
LC
1305 }
1306
c245b6a3 1307 eject_device(bs, force, errp);
666daa68
MA
1308}
1309
a4dea8a9 1310void qmp_block_passwd(const char *device, const char *password, Error **errp)
666daa68
MA
1311{
1312 BlockDriverState *bs;
1313 int err;
1314
a4dea8a9 1315 bs = bdrv_find(device);
666daa68 1316 if (!bs) {
a4dea8a9
LC
1317 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1318 return;
666daa68
MA
1319 }
1320
a4dea8a9 1321 err = bdrv_set_key(bs, password);
666daa68 1322 if (err == -EINVAL) {
a4dea8a9
LC
1323 error_set(errp, QERR_DEVICE_NOT_ENCRYPTED, bdrv_get_device_name(bs));
1324 return;
666daa68 1325 } else if (err < 0) {
a4dea8a9
LC
1326 error_set(errp, QERR_INVALID_PASSWORD);
1327 return;
666daa68 1328 }
666daa68
MA
1329}
1330
333a96ec
LC
1331static void qmp_bdrv_open_encrypted(BlockDriverState *bs, const char *filename,
1332 int bdrv_flags, BlockDriver *drv,
1333 const char *password, Error **errp)
1334{
0eef407c
LC
1335 int ret;
1336
1337 ret = bdrv_open(bs, filename, NULL, bdrv_flags, drv);
1338 if (ret < 0) {
1339 error_setg_file_open(errp, -ret, filename);
333a96ec
LC
1340 return;
1341 }
1342
1343 if (bdrv_key_required(bs)) {
1344 if (password) {
1345 if (bdrv_set_key(bs, password) < 0) {
1346 error_set(errp, QERR_INVALID_PASSWORD);
1347 }
1348 } else {
1349 error_set(errp, QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs),
1350 bdrv_get_encrypted_filename(bs));
1351 }
1352 } else if (password) {
1353 error_set(errp, QERR_DEVICE_NOT_ENCRYPTED, bdrv_get_device_name(bs));
1354 }
1355}
1356
1357void qmp_change_blockdev(const char *device, const char *filename,
1358 bool has_format, const char *format, Error **errp)
666daa68
MA
1359{
1360 BlockDriverState *bs;
1361 BlockDriver *drv = NULL;
1362 int bdrv_flags;
92d48558 1363 Error *err = NULL;
666daa68
MA
1364
1365 bs = bdrv_find(device);
1366 if (!bs) {
333a96ec
LC
1367 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1368 return;
666daa68 1369 }
333a96ec
LC
1370
1371 if (format) {
b64ec4e4 1372 drv = bdrv_find_whitelisted_format(format, bs->read_only);
666daa68 1373 if (!drv) {
333a96ec
LC
1374 error_set(errp, QERR_INVALID_BLOCK_FORMAT, format);
1375 return;
666daa68
MA
1376 }
1377 }
333a96ec 1378
92d48558
LC
1379 eject_device(bs, 0, &err);
1380 if (error_is_set(&err)) {
333a96ec
LC
1381 error_propagate(errp, err);
1382 return;
666daa68 1383 }
333a96ec 1384
528f7663 1385 bdrv_flags = bdrv_is_read_only(bs) ? 0 : BDRV_O_RDWR;
199630b6 1386 bdrv_flags |= bdrv_is_snapshot(bs) ? BDRV_O_SNAPSHOT : 0;
333a96ec
LC
1387
1388 qmp_bdrv_open_encrypted(bs, filename, bdrv_flags, drv, NULL, errp);
666daa68 1389}
9063f814 1390
727f005e 1391/* throttling disk I/O limits */
80047da5 1392void qmp_block_set_io_throttle(const char *device, int64_t bps, int64_t bps_rd,
3e9fab69
BC
1393 int64_t bps_wr,
1394 int64_t iops,
1395 int64_t iops_rd,
1396 int64_t iops_wr,
1397 bool has_bps_max,
1398 int64_t bps_max,
1399 bool has_bps_rd_max,
1400 int64_t bps_rd_max,
1401 bool has_bps_wr_max,
1402 int64_t bps_wr_max,
1403 bool has_iops_max,
1404 int64_t iops_max,
1405 bool has_iops_rd_max,
1406 int64_t iops_rd_max,
1407 bool has_iops_wr_max,
2024c1df
BC
1408 int64_t iops_wr_max,
1409 bool has_iops_size,
1410 int64_t iops_size, Error **errp)
727f005e 1411{
cc0681c4 1412 ThrottleConfig cfg;
727f005e
ZYW
1413 BlockDriverState *bs;
1414
80047da5 1415 bs = bdrv_find(device);
727f005e 1416 if (!bs) {
80047da5
LC
1417 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1418 return;
727f005e
ZYW
1419 }
1420
cc0681c4
BC
1421 memset(&cfg, 0, sizeof(cfg));
1422 cfg.buckets[THROTTLE_BPS_TOTAL].avg = bps;
1423 cfg.buckets[THROTTLE_BPS_READ].avg = bps_rd;
1424 cfg.buckets[THROTTLE_BPS_WRITE].avg = bps_wr;
1425
1426 cfg.buckets[THROTTLE_OPS_TOTAL].avg = iops;
1427 cfg.buckets[THROTTLE_OPS_READ].avg = iops_rd;
1428 cfg.buckets[THROTTLE_OPS_WRITE].avg = iops_wr;
1429
3e9fab69
BC
1430 if (has_bps_max) {
1431 cfg.buckets[THROTTLE_BPS_TOTAL].max = bps_max;
1432 }
1433 if (has_bps_rd_max) {
1434 cfg.buckets[THROTTLE_BPS_READ].max = bps_rd_max;
1435 }
1436 if (has_bps_wr_max) {
1437 cfg.buckets[THROTTLE_BPS_WRITE].max = bps_wr_max;
1438 }
1439 if (has_iops_max) {
1440 cfg.buckets[THROTTLE_OPS_TOTAL].max = iops_max;
1441 }
1442 if (has_iops_rd_max) {
1443 cfg.buckets[THROTTLE_OPS_READ].max = iops_rd_max;
1444 }
1445 if (has_iops_wr_max) {
1446 cfg.buckets[THROTTLE_OPS_WRITE].max = iops_wr_max;
1447 }
727f005e 1448
2024c1df
BC
1449 if (has_iops_size) {
1450 cfg.op_size = iops_size;
1451 }
cc0681c4
BC
1452
1453 if (!check_throttle_config(&cfg, errp)) {
80047da5 1454 return;
727f005e
ZYW
1455 }
1456
cc0681c4 1457 if (!bs->io_limits_enabled && throttle_enabled(&cfg)) {
727f005e 1458 bdrv_io_limits_enable(bs);
cc0681c4 1459 } else if (bs->io_limits_enabled && !throttle_enabled(&cfg)) {
727f005e 1460 bdrv_io_limits_disable(bs);
cc0681c4
BC
1461 }
1462
1463 if (bs->io_limits_enabled) {
1464 bdrv_set_io_limits(bs, &cfg);
727f005e 1465 }
727f005e
ZYW
1466}
1467
9063f814
RH
1468int do_drive_del(Monitor *mon, const QDict *qdict, QObject **ret_data)
1469{
1470 const char *id = qdict_get_str(qdict, "id");
1471 BlockDriverState *bs;
9063f814
RH
1472
1473 bs = bdrv_find(id);
1474 if (!bs) {
1475 qerror_report(QERR_DEVICE_NOT_FOUND, id);
1476 return -1;
1477 }
8591675f
MT
1478 if (bdrv_in_use(bs)) {
1479 qerror_report(QERR_DEVICE_IN_USE, id);
1480 return -1;
1481 }
9063f814
RH
1482
1483 /* quiesce block driver; prevent further io */
922453bc 1484 bdrv_drain_all();
9063f814
RH
1485 bdrv_flush(bs);
1486 bdrv_close(bs);
1487
fa879d62 1488 /* if we have a device attached to this BlockDriverState
d22b2f41
RH
1489 * then we need to make the drive anonymous until the device
1490 * can be removed. If this is a drive with no device backing
1491 * then we can just get rid of the block driver state right here.
1492 */
fa879d62 1493 if (bdrv_get_attached_dev(bs)) {
d22b2f41 1494 bdrv_make_anon(bs);
293c51a6
SH
1495
1496 /* Further I/O must not pause the guest */
1497 bdrv_set_on_error(bs, BLOCKDEV_ON_ERROR_REPORT,
1498 BLOCKDEV_ON_ERROR_REPORT);
d22b2f41
RH
1499 } else {
1500 drive_uninit(drive_get_by_blockdev(bs));
9063f814
RH
1501 }
1502
9063f814
RH
1503 return 0;
1504}
6d4a2b3a 1505
5e7caacb 1506void qmp_block_resize(const char *device, int64_t size, Error **errp)
6d4a2b3a 1507{
6d4a2b3a 1508 BlockDriverState *bs;
8732901e 1509 int ret;
6d4a2b3a
CH
1510
1511 bs = bdrv_find(device);
1512 if (!bs) {
5e7caacb
LC
1513 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1514 return;
6d4a2b3a
CH
1515 }
1516
1517 if (size < 0) {
939a1cc3 1518 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "size", "a >0 size");
5e7caacb 1519 return;
6d4a2b3a
CH
1520 }
1521
92b7a08d
PL
1522 /* complete all in-flight operations before resizing the device */
1523 bdrv_drain_all();
1524
8732901e
KW
1525 ret = bdrv_truncate(bs, size);
1526 switch (ret) {
939a1cc3
SH
1527 case 0:
1528 break;
1529 case -ENOMEDIUM:
1530 error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device);
1531 break;
1532 case -ENOTSUP:
1533 error_set(errp, QERR_UNSUPPORTED);
1534 break;
1535 case -EACCES:
1536 error_set(errp, QERR_DEVICE_IS_READ_ONLY, device);
1537 break;
1538 case -EBUSY:
1539 error_set(errp, QERR_DEVICE_IN_USE, device);
1540 break;
1541 default:
8732901e 1542 error_setg_errno(errp, -ret, "Could not resize");
939a1cc3 1543 break;
6d4a2b3a 1544 }
6d4a2b3a 1545}
12bd451f 1546
9abf2dba 1547static void block_job_cb(void *opaque, int ret)
12bd451f
SH
1548{
1549 BlockDriverState *bs = opaque;
1550 QObject *obj;
1551
9abf2dba 1552 trace_block_job_cb(bs, bs->job, ret);
12bd451f
SH
1553
1554 assert(bs->job);
1555 obj = qobject_from_block_job(bs->job);
1556 if (ret < 0) {
1557 QDict *dict = qobject_to_qdict(obj);
1558 qdict_put(dict, "error", qstring_from_str(strerror(-ret)));
1559 }
1560
370521a1
SH
1561 if (block_job_is_cancelled(bs->job)) {
1562 monitor_protocol_event(QEVENT_BLOCK_JOB_CANCELLED, obj);
1563 } else {
1564 monitor_protocol_event(QEVENT_BLOCK_JOB_COMPLETED, obj);
1565 }
12bd451f 1566 qobject_decref(obj);
aa398a5c 1567
fa510ebf 1568 bdrv_put_ref_bh_schedule(bs);
12bd451f
SH
1569}
1570
1571void qmp_block_stream(const char *device, bool has_base,
1d809098
PB
1572 const char *base, bool has_speed, int64_t speed,
1573 bool has_on_error, BlockdevOnError on_error,
1574 Error **errp)
12bd451f
SH
1575{
1576 BlockDriverState *bs;
c8c3080f 1577 BlockDriverState *base_bs = NULL;
fd7f8c65 1578 Error *local_err = NULL;
12bd451f 1579
1d809098
PB
1580 if (!has_on_error) {
1581 on_error = BLOCKDEV_ON_ERROR_REPORT;
1582 }
1583
12bd451f
SH
1584 bs = bdrv_find(device);
1585 if (!bs) {
1586 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1587 return;
1588 }
1589
12bd451f 1590 if (base) {
c8c3080f
MT
1591 base_bs = bdrv_find_backing_image(bs, base);
1592 if (base_bs == NULL) {
1593 error_set(errp, QERR_BASE_NOT_FOUND, base);
1594 return;
1595 }
12bd451f
SH
1596 }
1597
c83c66c3 1598 stream_start(bs, base_bs, base, has_speed ? speed : 0,
1d809098 1599 on_error, block_job_cb, bs, &local_err);
fd7f8c65
SH
1600 if (error_is_set(&local_err)) {
1601 error_propagate(errp, local_err);
1602 return;
12bd451f
SH
1603 }
1604
1605 trace_qmp_block_stream(bs, bs->job);
1606}
2d47c6e9 1607
ed61fc10
JC
1608void qmp_block_commit(const char *device,
1609 bool has_base, const char *base, const char *top,
1610 bool has_speed, int64_t speed,
1611 Error **errp)
1612{
1613 BlockDriverState *bs;
1614 BlockDriverState *base_bs, *top_bs;
1615 Error *local_err = NULL;
1616 /* This will be part of the QMP command, if/when the
1617 * BlockdevOnError change for blkmirror makes it in
1618 */
92aa5c6d 1619 BlockdevOnError on_error = BLOCKDEV_ON_ERROR_REPORT;
ed61fc10
JC
1620
1621 /* drain all i/o before commits */
1622 bdrv_drain_all();
1623
1624 bs = bdrv_find(device);
1625 if (!bs) {
1626 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1627 return;
1628 }
ed61fc10
JC
1629
1630 /* default top_bs is the active layer */
1631 top_bs = bs;
1632
1633 if (top) {
1634 if (strcmp(bs->filename, top) != 0) {
1635 top_bs = bdrv_find_backing_image(bs, top);
1636 }
1637 }
1638
1639 if (top_bs == NULL) {
1640 error_setg(errp, "Top image file %s not found", top ? top : "NULL");
1641 return;
1642 }
1643
d5208c45
JC
1644 if (has_base && base) {
1645 base_bs = bdrv_find_backing_image(top_bs, base);
1646 } else {
1647 base_bs = bdrv_find_base(top_bs);
1648 }
1649
1650 if (base_bs == NULL) {
1651 error_set(errp, QERR_BASE_NOT_FOUND, base ? base : "NULL");
1652 return;
1653 }
1654
ed61fc10
JC
1655 commit_start(bs, base_bs, top_bs, speed, on_error, block_job_cb, bs,
1656 &local_err);
1657 if (local_err != NULL) {
1658 error_propagate(errp, local_err);
1659 return;
1660 }
ed61fc10
JC
1661}
1662
99a9addf
SH
1663void qmp_drive_backup(const char *device, const char *target,
1664 bool has_format, const char *format,
b53169ea 1665 enum MirrorSyncMode sync,
99a9addf
SH
1666 bool has_mode, enum NewImageMode mode,
1667 bool has_speed, int64_t speed,
1668 bool has_on_source_error, BlockdevOnError on_source_error,
1669 bool has_on_target_error, BlockdevOnError on_target_error,
1670 Error **errp)
1671{
1672 BlockDriverState *bs;
1673 BlockDriverState *target_bs;
fc5d3f84 1674 BlockDriverState *source = NULL;
99a9addf
SH
1675 BlockDriver *drv = NULL;
1676 Error *local_err = NULL;
1677 int flags;
1678 int64_t size;
1679 int ret;
1680
1681 if (!has_speed) {
1682 speed = 0;
1683 }
1684 if (!has_on_source_error) {
1685 on_source_error = BLOCKDEV_ON_ERROR_REPORT;
1686 }
1687 if (!has_on_target_error) {
1688 on_target_error = BLOCKDEV_ON_ERROR_REPORT;
1689 }
1690 if (!has_mode) {
1691 mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS;
1692 }
1693
1694 bs = bdrv_find(device);
1695 if (!bs) {
1696 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1697 return;
1698 }
1699
1700 if (!bdrv_is_inserted(bs)) {
1701 error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device);
1702 return;
1703 }
1704
1705 if (!has_format) {
1706 format = mode == NEW_IMAGE_MODE_EXISTING ? NULL : bs->drv->format_name;
1707 }
1708 if (format) {
1709 drv = bdrv_find_format(format);
1710 if (!drv) {
1711 error_set(errp, QERR_INVALID_BLOCK_FORMAT, format);
1712 return;
1713 }
1714 }
1715
1716 if (bdrv_in_use(bs)) {
1717 error_set(errp, QERR_DEVICE_IN_USE, device);
1718 return;
1719 }
1720
1721 flags = bs->open_flags | BDRV_O_RDWR;
1722
fc5d3f84
IM
1723 /* See if we have a backing HD we can use to create our new image
1724 * on top of. */
1725 if (sync == MIRROR_SYNC_MODE_TOP) {
1726 source = bs->backing_hd;
1727 if (!source) {
1728 sync = MIRROR_SYNC_MODE_FULL;
1729 }
1730 }
1731 if (sync == MIRROR_SYNC_MODE_NONE) {
1732 source = bs;
1733 }
1734
99a9addf
SH
1735 size = bdrv_getlength(bs);
1736 if (size < 0) {
1737 error_setg_errno(errp, -size, "bdrv_getlength failed");
1738 return;
1739 }
1740
1741 if (mode != NEW_IMAGE_MODE_EXISTING) {
1742 assert(format && drv);
fc5d3f84
IM
1743 if (source) {
1744 bdrv_img_create(target, format, source->filename,
1745 source->drv->format_name, NULL,
1746 size, flags, &local_err, false);
1747 } else {
1748 bdrv_img_create(target, format, NULL, NULL, NULL,
1749 size, flags, &local_err, false);
1750 }
99a9addf
SH
1751 }
1752
1753 if (error_is_set(&local_err)) {
1754 error_propagate(errp, local_err);
1755 return;
1756 }
1757
1758 target_bs = bdrv_new("");
1759 ret = bdrv_open(target_bs, target, NULL, flags, drv);
1760 if (ret < 0) {
4f6fd349 1761 bdrv_unref(target_bs);
99a9addf
SH
1762 error_setg_file_open(errp, -ret, target);
1763 return;
1764 }
1765
fc5d3f84 1766 backup_start(bs, target_bs, speed, sync, on_source_error, on_target_error,
99a9addf
SH
1767 block_job_cb, bs, &local_err);
1768 if (local_err != NULL) {
4f6fd349 1769 bdrv_unref(target_bs);
99a9addf
SH
1770 error_propagate(errp, local_err);
1771 return;
1772 }
99a9addf
SH
1773}
1774
08e4ed6c
PB
1775#define DEFAULT_MIRROR_BUF_SIZE (10 << 20)
1776
d9b902db
PB
1777void qmp_drive_mirror(const char *device, const char *target,
1778 bool has_format, const char *format,
1779 enum MirrorSyncMode sync,
1780 bool has_mode, enum NewImageMode mode,
b952b558 1781 bool has_speed, int64_t speed,
eee13dfe 1782 bool has_granularity, uint32_t granularity,
08e4ed6c 1783 bool has_buf_size, int64_t buf_size,
b952b558
PB
1784 bool has_on_source_error, BlockdevOnError on_source_error,
1785 bool has_on_target_error, BlockdevOnError on_target_error,
1786 Error **errp)
d9b902db 1787{
d9b902db
PB
1788 BlockDriverState *bs;
1789 BlockDriverState *source, *target_bs;
d9b902db
PB
1790 BlockDriver *drv = NULL;
1791 Error *local_err = NULL;
1792 int flags;
ac3c5d83 1793 int64_t size;
d9b902db
PB
1794 int ret;
1795
1796 if (!has_speed) {
1797 speed = 0;
1798 }
b952b558
PB
1799 if (!has_on_source_error) {
1800 on_source_error = BLOCKDEV_ON_ERROR_REPORT;
1801 }
1802 if (!has_on_target_error) {
1803 on_target_error = BLOCKDEV_ON_ERROR_REPORT;
1804 }
d9b902db
PB
1805 if (!has_mode) {
1806 mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS;
1807 }
eee13dfe
PB
1808 if (!has_granularity) {
1809 granularity = 0;
1810 }
08e4ed6c
PB
1811 if (!has_buf_size) {
1812 buf_size = DEFAULT_MIRROR_BUF_SIZE;
1813 }
1814
eee13dfe
PB
1815 if (granularity != 0 && (granularity < 512 || granularity > 1048576 * 64)) {
1816 error_set(errp, QERR_INVALID_PARAMETER, device);
1817 return;
1818 }
1819 if (granularity & (granularity - 1)) {
1820 error_set(errp, QERR_INVALID_PARAMETER, device);
1821 return;
1822 }
d9b902db
PB
1823
1824 bs = bdrv_find(device);
1825 if (!bs) {
1826 error_set(errp, QERR_DEVICE_NOT_FOUND, device);
1827 return;
1828 }
1829
1830 if (!bdrv_is_inserted(bs)) {
1831 error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device);
1832 return;
1833 }
1834
1835 if (!has_format) {
1836 format = mode == NEW_IMAGE_MODE_EXISTING ? NULL : bs->drv->format_name;
1837 }
1838 if (format) {
1839 drv = bdrv_find_format(format);
1840 if (!drv) {
1841 error_set(errp, QERR_INVALID_BLOCK_FORMAT, format);
1842 return;
1843 }
1844 }
1845
1846 if (bdrv_in_use(bs)) {
1847 error_set(errp, QERR_DEVICE_IN_USE, device);
1848 return;
1849 }
1850
1851 flags = bs->open_flags | BDRV_O_RDWR;
1852 source = bs->backing_hd;
1853 if (!source && sync == MIRROR_SYNC_MODE_TOP) {
1854 sync = MIRROR_SYNC_MODE_FULL;
1855 }
1856
ac3c5d83
SH
1857 size = bdrv_getlength(bs);
1858 if (size < 0) {
1859 error_setg_errno(errp, -size, "bdrv_getlength failed");
1860 return;
1861 }
1862
d9b902db
PB
1863 if (sync == MIRROR_SYNC_MODE_FULL && mode != NEW_IMAGE_MODE_EXISTING) {
1864 /* create new image w/o backing file */
1865 assert(format && drv);
cf8f2426 1866 bdrv_img_create(target, format,
f382d43a 1867 NULL, NULL, NULL, size, flags, &local_err, false);
d9b902db
PB
1868 } else {
1869 switch (mode) {
1870 case NEW_IMAGE_MODE_EXISTING:
1871 ret = 0;
1872 break;
1873 case NEW_IMAGE_MODE_ABSOLUTE_PATHS:
1874 /* create new image with backing file */
cf8f2426
LC
1875 bdrv_img_create(target, format,
1876 source->filename,
1877 source->drv->format_name,
f382d43a 1878 NULL, size, flags, &local_err, false);
d9b902db
PB
1879 break;
1880 default:
1881 abort();
1882 }
1883 }
1884
cf8f2426
LC
1885 if (error_is_set(&local_err)) {
1886 error_propagate(errp, local_err);
d9b902db
PB
1887 return;
1888 }
1889
b812f671
PB
1890 /* Mirroring takes care of copy-on-write using the source's backing
1891 * file.
1892 */
d9b902db 1893 target_bs = bdrv_new("");
de9c0cec 1894 ret = bdrv_open(target_bs, target, NULL, flags | BDRV_O_NO_BACKING, drv);
d9b902db 1895 if (ret < 0) {
4f6fd349 1896 bdrv_unref(target_bs);
0eef407c 1897 error_setg_file_open(errp, -ret, target);
d9b902db
PB
1898 return;
1899 }
1900
08e4ed6c 1901 mirror_start(bs, target_bs, speed, granularity, buf_size, sync,
eee13dfe 1902 on_source_error, on_target_error,
b952b558 1903 block_job_cb, bs, &local_err);
d9b902db 1904 if (local_err != NULL) {
4f6fd349 1905 bdrv_unref(target_bs);
d9b902db
PB
1906 error_propagate(errp, local_err);
1907 return;
1908 }
d9b902db
PB
1909}
1910
2d47c6e9
SH
1911static BlockJob *find_block_job(const char *device)
1912{
1913 BlockDriverState *bs;
1914
1915 bs = bdrv_find(device);
1916 if (!bs || !bs->job) {
1917 return NULL;
1918 }
1919 return bs->job;
1920}
1921
882ec7ce 1922void qmp_block_job_set_speed(const char *device, int64_t speed, Error **errp)
2d47c6e9
SH
1923{
1924 BlockJob *job = find_block_job(device);
1925
1926 if (!job) {
7ef15070 1927 error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device);
2d47c6e9
SH
1928 return;
1929 }
1930
882ec7ce 1931 block_job_set_speed(job, speed, errp);
2d47c6e9 1932}
370521a1 1933
6e37fb81
PB
1934void qmp_block_job_cancel(const char *device,
1935 bool has_force, bool force, Error **errp)
370521a1
SH
1936{
1937 BlockJob *job = find_block_job(device);
1938
6e37fb81
PB
1939 if (!has_force) {
1940 force = false;
1941 }
1942
370521a1 1943 if (!job) {
7ef15070 1944 error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device);
370521a1
SH
1945 return;
1946 }
6e37fb81 1947 if (job->paused && !force) {
8acc72a4
PB
1948 error_set(errp, QERR_BLOCK_JOB_PAUSED, device);
1949 return;
1950 }
370521a1
SH
1951
1952 trace_qmp_block_job_cancel(job);
1953 block_job_cancel(job);
1954}
fb5458cd 1955
6e37fb81
PB
1956void qmp_block_job_pause(const char *device, Error **errp)
1957{
1958 BlockJob *job = find_block_job(device);
1959
1960 if (!job) {
1961 error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device);
1962 return;
1963 }
1964
1965 trace_qmp_block_job_pause(job);
1966 block_job_pause(job);
1967}
1968
1969void qmp_block_job_resume(const char *device, Error **errp)
1970{
1971 BlockJob *job = find_block_job(device);
1972
1973 if (!job) {
1974 error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device);
1975 return;
1976 }
1977
1978 trace_qmp_block_job_resume(job);
1979 block_job_resume(job);
1980}
1981
aeae883b
PB
1982void qmp_block_job_complete(const char *device, Error **errp)
1983{
1984 BlockJob *job = find_block_job(device);
1985
1986 if (!job) {
1987 error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device);
1988 return;
1989 }
1990
1991 trace_qmp_block_job_complete(job);
1992 block_job_complete(job, errp);
1993}
1994
fb5458cd
SH
1995static void do_qmp_query_block_jobs_one(void *opaque, BlockDriverState *bs)
1996{
1997 BlockJobInfoList **prev = opaque;
1998 BlockJob *job = bs->job;
1999
2000 if (job) {
30e628b7
PB
2001 BlockJobInfoList *elem = g_new0(BlockJobInfoList, 1);
2002 elem->value = block_job_query(bs->job);
fb5458cd
SH
2003 (*prev)->next = elem;
2004 *prev = elem;
2005 }
2006}
2007
2008BlockJobInfoList *qmp_query_block_jobs(Error **errp)
2009{
2010 /* Dummy is a fake list element for holding the head pointer */
2011 BlockJobInfoList dummy = {};
2012 BlockJobInfoList *prev = &dummy;
2013 bdrv_iterate(do_qmp_query_block_jobs_one, &prev);
2014 return dummy.next;
2015}
4d454574 2016
0006383e 2017QemuOptsList qemu_common_drive_opts = {
4d454574 2018 .name = "drive",
0006383e 2019 .head = QTAILQ_HEAD_INITIALIZER(qemu_common_drive_opts.head),
4d454574
PB
2020 .desc = {
2021 {
2022 .name = "bus",
2023 .type = QEMU_OPT_NUMBER,
2024 .help = "bus number",
2025 },{
2026 .name = "unit",
2027 .type = QEMU_OPT_NUMBER,
2028 .help = "unit number (i.e. lun for scsi)",
2029 },{
2030 .name = "if",
2031 .type = QEMU_OPT_STRING,
2032 .help = "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
2033 },{
2034 .name = "index",
2035 .type = QEMU_OPT_NUMBER,
2036 .help = "index number",
2037 },{
2038 .name = "cyls",
2039 .type = QEMU_OPT_NUMBER,
2040 .help = "number of cylinders (ide disk geometry)",
2041 },{
2042 .name = "heads",
2043 .type = QEMU_OPT_NUMBER,
2044 .help = "number of heads (ide disk geometry)",
2045 },{
2046 .name = "secs",
2047 .type = QEMU_OPT_NUMBER,
2048 .help = "number of sectors (ide disk geometry)",
2049 },{
2050 .name = "trans",
2051 .type = QEMU_OPT_STRING,
2052 .help = "chs translation (auto, lba. none)",
2053 },{
2054 .name = "media",
2055 .type = QEMU_OPT_STRING,
2056 .help = "media type (disk, cdrom)",
2057 },{
2058 .name = "snapshot",
2059 .type = QEMU_OPT_BOOL,
2060 .help = "enable/disable snapshot mode",
2061 },{
2062 .name = "file",
2063 .type = QEMU_OPT_STRING,
2064 .help = "disk image",
a9384aff
PB
2065 },{
2066 .name = "discard",
2067 .type = QEMU_OPT_STRING,
2068 .help = "discard operation (ignore/off, unmap/on)",
4d454574 2069 },{
29c4e2b5
KW
2070 .name = "cache.writeback",
2071 .type = QEMU_OPT_BOOL,
2072 .help = "enables writeback mode for any caches",
2073 },{
2074 .name = "cache.direct",
2075 .type = QEMU_OPT_BOOL,
2076 .help = "enables use of O_DIRECT (bypass the host page cache)",
2077 },{
2078 .name = "cache.no-flush",
2079 .type = QEMU_OPT_BOOL,
2080 .help = "ignore any flush requests for the device",
4d454574
PB
2081 },{
2082 .name = "aio",
2083 .type = QEMU_OPT_STRING,
2084 .help = "host AIO implementation (threads, native)",
2085 },{
2086 .name = "format",
2087 .type = QEMU_OPT_STRING,
2088 .help = "disk format (raw, qcow2, ...)",
2089 },{
2090 .name = "serial",
2091 .type = QEMU_OPT_STRING,
2092 .help = "disk serial number",
2093 },{
2094 .name = "rerror",
2095 .type = QEMU_OPT_STRING,
2096 .help = "read error action",
2097 },{
2098 .name = "werror",
2099 .type = QEMU_OPT_STRING,
2100 .help = "write error action",
2101 },{
2102 .name = "addr",
2103 .type = QEMU_OPT_STRING,
2104 .help = "pci address (virtio only)",
2105 },{
0f227a94 2106 .name = "read-only",
4d454574
PB
2107 .type = QEMU_OPT_BOOL,
2108 .help = "open drive file as read-only",
2109 },{
57975222 2110 .name = "throttling.iops-total",
4d454574
PB
2111 .type = QEMU_OPT_NUMBER,
2112 .help = "limit total I/O operations per second",
2113 },{
57975222 2114 .name = "throttling.iops-read",
4d454574
PB
2115 .type = QEMU_OPT_NUMBER,
2116 .help = "limit read operations per second",
2117 },{
57975222 2118 .name = "throttling.iops-write",
4d454574
PB
2119 .type = QEMU_OPT_NUMBER,
2120 .help = "limit write operations per second",
2121 },{
57975222 2122 .name = "throttling.bps-total",
4d454574
PB
2123 .type = QEMU_OPT_NUMBER,
2124 .help = "limit total bytes per second",
2125 },{
57975222 2126 .name = "throttling.bps-read",
4d454574
PB
2127 .type = QEMU_OPT_NUMBER,
2128 .help = "limit read bytes per second",
2129 },{
57975222 2130 .name = "throttling.bps-write",
4d454574
PB
2131 .type = QEMU_OPT_NUMBER,
2132 .help = "limit write bytes per second",
3e9fab69
BC
2133 },{
2134 .name = "throttling.iops-total-max",
2135 .type = QEMU_OPT_NUMBER,
2136 .help = "I/O operations burst",
2137 },{
2138 .name = "throttling.iops-read-max",
2139 .type = QEMU_OPT_NUMBER,
2140 .help = "I/O operations read burst",
2141 },{
2142 .name = "throttling.iops-write-max",
2143 .type = QEMU_OPT_NUMBER,
2144 .help = "I/O operations write burst",
2145 },{
2146 .name = "throttling.bps-total-max",
2147 .type = QEMU_OPT_NUMBER,
2148 .help = "total bytes burst",
2149 },{
2150 .name = "throttling.bps-read-max",
2151 .type = QEMU_OPT_NUMBER,
2152 .help = "total bytes read burst",
2153 },{
2154 .name = "throttling.bps-write-max",
2155 .type = QEMU_OPT_NUMBER,
2156 .help = "total bytes write burst",
2024c1df
BC
2157 },{
2158 .name = "throttling.iops-size",
2159 .type = QEMU_OPT_NUMBER,
2160 .help = "when limiting by iops max size of an I/O in bytes",
4d454574
PB
2161 },{
2162 .name = "copy-on-read",
2163 .type = QEMU_OPT_BOOL,
2164 .help = "copy read data from backing file into image file",
2165 },{
2166 .name = "boot",
2167 .type = QEMU_OPT_BOOL,
2168 .help = "(deprecated, ignored)",
2169 },
2170 { /* end of list */ }
2171 },
2172};
0006383e
KW
2173
2174QemuOptsList qemu_drive_opts = {
2175 .name = "drive",
2176 .head = QTAILQ_HEAD_INITIALIZER(qemu_drive_opts.head),
2177 .desc = {
492fdc6f
KW
2178 /*
2179 * no elements => accept any params
2180 * validation will happen later
2181 */
0006383e
KW
2182 { /* end of list */ }
2183 },
2184};