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