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