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