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