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