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