2 * QEMU host block devices
4 * Copyright (c) 2003-2008 Fabrice Bellard
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.
14 #include "qemu-option.h"
15 #include "qemu-config.h"
18 #include "block_int.h"
20 DriveInfo
*extboot_drive
= NULL
;
22 static QTAILQ_HEAD(drivelist
, DriveInfo
) drives
= QTAILQ_HEAD_INITIALIZER(drives
);
24 static const char *const if_name
[IF_COUNT
] = {
28 [IF_FLOPPY
] = "floppy",
29 [IF_PFLASH
] = "pflash",
32 [IF_VIRTIO
] = "virtio",
36 static const int if_max_devs
[IF_COUNT
] = {
38 * Do not change these numbers! They govern how drive option
39 * index maps to unit and bus. That mapping is ABI.
41 * All controllers used to imlement if=T drives need to support
42 * if_max_devs[T] units, for any T with if_max_devs[T] != 0.
43 * Otherwise, some index values map to "impossible" bus, unit
46 * For instance, if you change [IF_SCSI] to 255, -drive
47 * if=scsi,index=12 no longer means bus=1,unit=5, but
48 * bus=0,unit=12. With an lsi53c895a controller (7 units max),
49 * the drive can't be set up. Regression.
56 * We automatically delete the drive when a device using it gets
57 * unplugged. Questionable feature, but we can't just drop it.
58 * Device models call blockdev_mark_auto_del() to schedule the
59 * automatic deletion, and generic qdev code calls blockdev_auto_del()
60 * when deletion is actually safe.
62 void blockdev_mark_auto_del(BlockDriverState
*bs
)
64 DriveInfo
*dinfo
= drive_get_by_blockdev(bs
);
71 void blockdev_auto_del(BlockDriverState
*bs
)
73 DriveInfo
*dinfo
= drive_get_by_blockdev(bs
);
75 if (dinfo
&& dinfo
->auto_del
) {
80 static int drive_index_to_bus_id(BlockInterfaceType type
, int index
)
82 int max_devs
= if_max_devs
[type
];
83 return max_devs
? index
/ max_devs
: 0;
86 static int drive_index_to_unit_id(BlockInterfaceType type
, int index
)
88 int max_devs
= if_max_devs
[type
];
89 return max_devs
? index
% max_devs
: index
;
92 QemuOpts
*drive_def(const char *optstr
)
94 return qemu_opts_parse(qemu_find_opts("drive"), optstr
, 0);
97 QemuOpts
*drive_add(BlockInterfaceType type
, int index
, const char *file
,
103 opts
= drive_def(optstr
);
107 if (type
!= IF_DEFAULT
) {
108 qemu_opt_set(opts
, "if", if_name
[type
]);
111 snprintf(buf
, sizeof(buf
), "%d", index
);
112 qemu_opt_set(opts
, "index", buf
);
115 qemu_opt_set(opts
, "file", file
);
119 DriveInfo
*drive_get(BlockInterfaceType type
, int bus
, int unit
)
123 /* seek interface, bus and unit */
125 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
126 if (dinfo
->type
== type
&&
135 DriveInfo
*drive_get_by_index(BlockInterfaceType type
, int index
)
137 return drive_get(type
,
138 drive_index_to_bus_id(type
, index
),
139 drive_index_to_unit_id(type
, index
));
142 int drive_get_max_bus(BlockInterfaceType type
)
148 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
149 if(dinfo
->type
== type
&&
150 dinfo
->bus
> max_bus
)
151 max_bus
= dinfo
->bus
;
156 /* Get a block device. This should only be used for single-drive devices
157 (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the
159 DriveInfo
*drive_get_next(BlockInterfaceType type
)
161 static int next_block_unit
[IF_COUNT
];
163 return drive_get(type
, 0, next_block_unit
[type
]++);
166 DriveInfo
*drive_get_by_blockdev(BlockDriverState
*bs
)
170 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
171 if (dinfo
->bdrv
== bs
) {
178 static void bdrv_format_print(void *opaque
, const char *name
)
180 error_printf(" %s", name
);
183 static void drive_uninit(DriveInfo
*dinfo
)
185 qemu_opts_del(dinfo
->opts
);
186 bdrv_delete(dinfo
->bdrv
);
187 qemu_free(dinfo
->id
);
188 QTAILQ_REMOVE(&drives
, dinfo
, next
);
192 void drive_put_ref(DriveInfo
*dinfo
)
194 assert(dinfo
->refcount
);
195 if (--dinfo
->refcount
== 0) {
200 void drive_get_ref(DriveInfo
*dinfo
)
205 static int parse_block_error_action(const char *buf
, int is_read
)
207 if (!strcmp(buf
, "ignore")) {
208 return BLOCK_ERR_IGNORE
;
209 } else if (!is_read
&& !strcmp(buf
, "enospc")) {
210 return BLOCK_ERR_STOP_ENOSPC
;
211 } else if (!strcmp(buf
, "stop")) {
212 return BLOCK_ERR_STOP_ANY
;
213 } else if (!strcmp(buf
, "report")) {
214 return BLOCK_ERR_REPORT
;
216 error_report("'%s' invalid %s error action",
217 buf
, is_read
? "read" : "write");
222 DriveInfo
*drive_init(QemuOpts
*opts
, int default_to_scsi
)
225 const char *file
= NULL
;
228 const char *mediastr
= "";
229 BlockInterfaceType type
;
230 enum { MEDIA_DISK
, MEDIA_CDROM
} media
;
232 int cyls
, heads
, secs
, translation
;
233 BlockDriver
*drv
= NULL
;
238 int on_read_error
, on_write_error
;
245 translation
= BIOS_ATA_TRANSLATION_AUTO
;
247 if (default_to_scsi
) {
249 pstrcpy(devname
, sizeof(devname
), "scsi");
252 pstrcpy(devname
, sizeof(devname
), "ide");
256 /* extract parameters */
257 bus_id
= qemu_opt_get_number(opts
, "bus", 0);
258 unit_id
= qemu_opt_get_number(opts
, "unit", -1);
259 index
= qemu_opt_get_number(opts
, "index", -1);
261 cyls
= qemu_opt_get_number(opts
, "cyls", 0);
262 heads
= qemu_opt_get_number(opts
, "heads", 0);
263 secs
= qemu_opt_get_number(opts
, "secs", 0);
265 snapshot
= qemu_opt_get_bool(opts
, "snapshot", 0);
266 ro
= qemu_opt_get_bool(opts
, "readonly", 0);
268 file
= qemu_opt_get(opts
, "file");
269 serial
= qemu_opt_get(opts
, "serial");
271 if ((buf
= qemu_opt_get(opts
, "if")) != NULL
) {
272 pstrcpy(devname
, sizeof(devname
), buf
);
273 for (type
= 0; type
< IF_COUNT
&& strcmp(buf
, if_name
[type
]); type
++)
275 if (type
== IF_COUNT
) {
276 error_report("unsupported bus type '%s'", buf
);
280 max_devs
= if_max_devs
[type
];
282 if (cyls
|| heads
|| secs
) {
283 if (cyls
< 1 || (type
== IF_IDE
&& cyls
> 16383)) {
284 error_report("invalid physical cyls number");
287 if (heads
< 1 || (type
== IF_IDE
&& heads
> 16)) {
288 error_report("invalid physical heads number");
291 if (secs
< 1 || (type
== IF_IDE
&& secs
> 63)) {
292 error_report("invalid physical secs number");
297 if ((buf
= qemu_opt_get(opts
, "trans")) != NULL
) {
299 error_report("'%s' trans must be used with cyls,heads and secs",
303 if (!strcmp(buf
, "none"))
304 translation
= BIOS_ATA_TRANSLATION_NONE
;
305 else if (!strcmp(buf
, "lba"))
306 translation
= BIOS_ATA_TRANSLATION_LBA
;
307 else if (!strcmp(buf
, "auto"))
308 translation
= BIOS_ATA_TRANSLATION_AUTO
;
310 error_report("'%s' invalid translation type", buf
);
315 if ((buf
= qemu_opt_get(opts
, "media")) != NULL
) {
316 if (!strcmp(buf
, "disk")) {
318 } else if (!strcmp(buf
, "cdrom")) {
319 if (cyls
|| secs
|| heads
) {
320 error_report("'%s' invalid physical CHS format", buf
);
325 error_report("'%s' invalid media", buf
);
330 if ((buf
= qemu_opt_get(opts
, "cache")) != NULL
) {
331 if (!strcmp(buf
, "off") || !strcmp(buf
, "none")) {
332 bdrv_flags
|= BDRV_O_NOCACHE
| BDRV_O_CACHE_WB
;
333 } else if (!strcmp(buf
, "writeback")) {
334 bdrv_flags
|= BDRV_O_CACHE_WB
;
335 } else if (!strcmp(buf
, "unsafe")) {
336 bdrv_flags
|= BDRV_O_CACHE_WB
;
337 bdrv_flags
|= BDRV_O_NO_FLUSH
;
338 } else if (!strcmp(buf
, "writethrough")) {
339 /* this is the default */
341 error_report("invalid cache option");
346 #ifdef CONFIG_LINUX_AIO
347 if ((buf
= qemu_opt_get(opts
, "aio")) != NULL
) {
348 if (!strcmp(buf
, "native")) {
349 bdrv_flags
|= BDRV_O_NATIVE_AIO
;
350 } else if (!strcmp(buf
, "threads")) {
351 /* this is the default */
353 error_report("invalid aio option");
359 if ((buf
= qemu_opt_get(opts
, "format")) != NULL
) {
360 if (strcmp(buf
, "?") == 0) {
361 error_printf("Supported formats:");
362 bdrv_iterate_format(bdrv_format_print
, NULL
);
366 drv
= bdrv_find_whitelisted_format(buf
);
368 error_report("'%s' invalid format", buf
);
373 is_extboot
= qemu_opt_get_bool(opts
, "boot", 0);
374 if (is_extboot
&& extboot_drive
) {
375 fprintf(stderr
, "qemu: two bootable drives specified\n");
379 on_write_error
= BLOCK_ERR_STOP_ENOSPC
;
380 if ((buf
= qemu_opt_get(opts
, "werror")) != NULL
) {
381 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
&& type
!= IF_NONE
) {
382 error_report("werror is not supported by this bus type");
386 on_write_error
= parse_block_error_action(buf
, 0);
387 if (on_write_error
< 0) {
392 on_read_error
= BLOCK_ERR_REPORT
;
393 if ((buf
= qemu_opt_get(opts
, "rerror")) != NULL
) {
394 if (type
!= IF_IDE
&& type
!= IF_VIRTIO
&& type
!= IF_SCSI
&& type
!= IF_NONE
) {
395 error_report("rerror is not supported by this bus type");
399 on_read_error
= parse_block_error_action(buf
, 1);
400 if (on_read_error
< 0) {
405 if ((devaddr
= qemu_opt_get(opts
, "addr")) != NULL
) {
406 if (type
!= IF_VIRTIO
) {
407 error_report("addr is not supported by this bus type");
412 /* compute bus and unit according index */
415 if (bus_id
!= 0 || unit_id
!= -1) {
416 error_report("index cannot be used with bus and unit");
419 bus_id
= drive_index_to_bus_id(type
, index
);
420 unit_id
= drive_index_to_unit_id(type
, index
);
423 /* if user doesn't specify a unit_id,
424 * try to find the first free
429 while (drive_get(type
, bus_id
, unit_id
) != NULL
) {
431 if (max_devs
&& unit_id
>= max_devs
) {
440 if (max_devs
&& unit_id
>= max_devs
) {
441 error_report("unit %d too big (max is %d)",
442 unit_id
, max_devs
- 1);
447 * catch multiple definitions
450 if (drive_get(type
, bus_id
, unit_id
) != NULL
) {
451 error_report("drive with bus=%d, unit=%d (index=%d) exists",
452 bus_id
, unit_id
, index
);
458 dinfo
= qemu_mallocz(sizeof(*dinfo
));
459 if ((buf
= qemu_opts_id(opts
)) != NULL
) {
460 dinfo
->id
= qemu_strdup(buf
);
462 /* no id supplied -> create one */
463 dinfo
->id
= qemu_mallocz(32);
464 if (type
== IF_IDE
|| type
== IF_SCSI
)
465 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
467 snprintf(dinfo
->id
, 32, "%s%i%s%i",
468 devname
, bus_id
, mediastr
, unit_id
);
470 snprintf(dinfo
->id
, 32, "%s%s%i",
471 devname
, mediastr
, unit_id
);
473 dinfo
->bdrv
= bdrv_new(dinfo
->id
);
474 dinfo
->devaddr
= devaddr
;
477 dinfo
->unit
= unit_id
;
481 strncpy(dinfo
->serial
, serial
, sizeof(dinfo
->serial
) - 1);
482 QTAILQ_INSERT_TAIL(&drives
, dinfo
, next
);
485 extboot_drive
= dinfo
;
488 bdrv_set_on_error(dinfo
->bdrv
, on_read_error
, on_write_error
);
498 bdrv_set_geometry_hint(dinfo
->bdrv
, cyls
, heads
, secs
);
499 bdrv_set_translation_hint(dinfo
->bdrv
, translation
);
503 bdrv_set_removable(dinfo
->bdrv
, 1);
509 /* FIXME: This isn't really a floppy, but it's a reasonable
512 bdrv_set_removable(dinfo
->bdrv
, 1);
518 /* add virtio block device */
519 opts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0);
520 qemu_opt_set(opts
, "driver", "virtio-blk");
521 qemu_opt_set(opts
, "drive", dinfo
->id
);
523 qemu_opt_set(opts
, "addr", devaddr
);
528 if (!file
|| !*file
) {
532 /* always use cache=unsafe with snapshot */
533 bdrv_flags
&= ~BDRV_O_CACHE_MASK
;
534 bdrv_flags
|= (BDRV_O_SNAPSHOT
|BDRV_O_CACHE_WB
|BDRV_O_NO_FLUSH
);
537 if (media
== MEDIA_CDROM
) {
538 /* CDROM is fine for any interface, don't check. */
540 } else if (ro
== 1) {
541 if (type
!= IF_SCSI
&& type
!= IF_VIRTIO
&& type
!= IF_FLOPPY
&& type
!= IF_NONE
) {
542 error_report("readonly not supported by this bus type");
547 bdrv_flags
|= ro
? 0 : BDRV_O_RDWR
;
549 ret
= bdrv_open(dinfo
->bdrv
, file
, bdrv_flags
, drv
);
551 error_report("could not open disk image %s: %s",
552 file
, strerror(-ret
));
556 if (bdrv_key_required(dinfo
->bdrv
))
561 bdrv_delete(dinfo
->bdrv
);
562 qemu_free(dinfo
->id
);
563 QTAILQ_REMOVE(&drives
, dinfo
, next
);
568 void do_commit(Monitor
*mon
, const QDict
*qdict
)
570 const char *device
= qdict_get_str(qdict
, "device");
571 BlockDriverState
*bs
;
573 if (!strcmp(device
, "all")) {
576 bs
= bdrv_find(device
);
578 qerror_report(QERR_DEVICE_NOT_FOUND
, device
);
585 int do_snapshot_blkdev(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
587 const char *device
= qdict_get_str(qdict
, "device");
588 const char *filename
= qdict_get_try_str(qdict
, "snapshot_file");
589 const char *format
= qdict_get_try_str(qdict
, "format");
590 BlockDriverState
*bs
;
591 BlockDriver
*drv
, *old_drv
, *proto_drv
;
594 char old_filename
[1024];
597 qerror_report(QERR_MISSING_PARAMETER
, "snapshot_file");
602 bs
= bdrv_find(device
);
604 qerror_report(QERR_DEVICE_NOT_FOUND
, device
);
609 pstrcpy(old_filename
, sizeof(old_filename
), bs
->filename
);
612 flags
= bs
->open_flags
;
618 drv
= bdrv_find_format(format
);
620 qerror_report(QERR_INVALID_BLOCK_FORMAT
, format
);
625 proto_drv
= bdrv_find_protocol(filename
);
627 qerror_report(QERR_INVALID_BLOCK_FORMAT
, format
);
632 ret
= bdrv_img_create(filename
, format
, bs
->filename
,
633 bs
->drv
->format_name
, NULL
, -1, flags
);
642 ret
= bdrv_open(bs
, filename
, flags
, drv
);
644 * If reopening the image file we just created fails, fall back
645 * and try to re-open the original image. If that fails too, we
646 * are in serious trouble.
649 ret
= bdrv_open(bs
, old_filename
, flags
, old_drv
);
651 qerror_report(QERR_OPEN_FILE_FAILED
, old_filename
);
653 qerror_report(QERR_OPEN_FILE_FAILED
, filename
);
664 static int eject_device(Monitor
*mon
, BlockDriverState
*bs
, int force
)
667 if (!bdrv_is_removable(bs
)) {
668 qerror_report(QERR_DEVICE_NOT_REMOVABLE
,
669 bdrv_get_device_name(bs
));
672 if (bdrv_is_locked(bs
)) {
673 qerror_report(QERR_DEVICE_LOCKED
, bdrv_get_device_name(bs
));
681 int do_eject(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
683 BlockDriverState
*bs
;
684 int force
= qdict_get_try_bool(qdict
, "force", 0);
685 const char *filename
= qdict_get_str(qdict
, "device");
687 bs
= bdrv_find(filename
);
689 qerror_report(QERR_DEVICE_NOT_FOUND
, filename
);
692 return eject_device(mon
, bs
, force
);
695 int do_block_set_passwd(Monitor
*mon
, const QDict
*qdict
,
698 BlockDriverState
*bs
;
701 bs
= bdrv_find(qdict_get_str(qdict
, "device"));
703 qerror_report(QERR_DEVICE_NOT_FOUND
, qdict_get_str(qdict
, "device"));
707 err
= bdrv_set_key(bs
, qdict_get_str(qdict
, "password"));
708 if (err
== -EINVAL
) {
709 qerror_report(QERR_DEVICE_NOT_ENCRYPTED
, bdrv_get_device_name(bs
));
711 } else if (err
< 0) {
712 qerror_report(QERR_INVALID_PASSWORD
);
719 int do_change_block(Monitor
*mon
, const char *device
,
720 const char *filename
, const char *fmt
)
722 BlockDriverState
*bs
;
723 BlockDriver
*drv
= NULL
;
726 bs
= bdrv_find(device
);
728 qerror_report(QERR_DEVICE_NOT_FOUND
, device
);
732 drv
= bdrv_find_whitelisted_format(fmt
);
734 qerror_report(QERR_INVALID_BLOCK_FORMAT
, fmt
);
738 if (eject_device(mon
, bs
, 0) < 0) {
741 bdrv_flags
= bdrv_is_read_only(bs
) ? 0 : BDRV_O_RDWR
;
742 bdrv_flags
|= bdrv_is_snapshot(bs
) ? BDRV_O_SNAPSHOT
: 0;
743 if (bdrv_open(bs
, filename
, bdrv_flags
, drv
) < 0) {
744 qerror_report(QERR_OPEN_FILE_FAILED
, filename
);
747 return monitor_read_bdrv_key_start(mon
, bs
, NULL
, NULL
);
750 int do_drive_del(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
752 const char *id
= qdict_get_str(qdict
, "id");
753 BlockDriverState
*bs
;
757 qerror_report(QERR_DEVICE_NOT_FOUND
, id
);
760 if (bdrv_in_use(bs
)) {
761 qerror_report(QERR_DEVICE_IN_USE
, id
);
765 /* quiesce block driver; prevent further io */
770 /* if we have a device associated with this BlockDriverState (bs->peer)
771 * then we need to make the drive anonymous until the device
772 * can be removed. If this is a drive with no device backing
773 * then we can just get rid of the block driver state right here.
778 drive_uninit(drive_get_by_blockdev(bs
));
785 * XXX: replace the QERR_UNDEFINED_ERROR errors with real values once the
786 * existing QERR_ macro mess is cleaned up. A good example for better
787 * error reports can be found in the qemu-img resize code.
789 int do_block_resize(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
791 const char *device
= qdict_get_str(qdict
, "device");
792 int64_t size
= qdict_get_int(qdict
, "size");
793 BlockDriverState
*bs
;
795 bs
= bdrv_find(device
);
797 qerror_report(QERR_DEVICE_NOT_FOUND
, device
);
802 qerror_report(QERR_UNDEFINED_ERROR
);
806 if (bdrv_truncate(bs
, size
)) {
807 qerror_report(QERR_UNDEFINED_ERROR
);