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 static QTAILQ_HEAD(drivelist
, DriveInfo
) drives
= QTAILQ_HEAD_INITIALIZER(drives
);
22 static const char *const if_name
[IF_COUNT
] = {
26 [IF_FLOPPY
] = "floppy",
27 [IF_PFLASH
] = "pflash",
30 [IF_VIRTIO
] = "virtio",
34 static const int if_max_devs
[IF_COUNT
] = {
36 * Do not change these numbers! They govern how drive option
37 * index maps to unit and bus. That mapping is ABI.
39 * All controllers used to imlement if=T drives need to support
40 * if_max_devs[T] units, for any T with if_max_devs[T] != 0.
41 * Otherwise, some index values map to "impossible" bus, unit
44 * For instance, if you change [IF_SCSI] to 255, -drive
45 * if=scsi,index=12 no longer means bus=1,unit=5, but
46 * bus=0,unit=12. With an lsi53c895a controller (7 units max),
47 * the drive can't be set up. Regression.
54 * We automatically delete the drive when a device using it gets
55 * unplugged. Questionable feature, but we can't just drop it.
56 * Device models call blockdev_mark_auto_del() to schedule the
57 * automatic deletion, and generic qdev code calls blockdev_auto_del()
58 * when deletion is actually safe.
60 void blockdev_mark_auto_del(BlockDriverState
*bs
)
62 DriveInfo
*dinfo
= drive_get_by_blockdev(bs
);
69 void blockdev_auto_del(BlockDriverState
*bs
)
71 DriveInfo
*dinfo
= drive_get_by_blockdev(bs
);
73 if (dinfo
&& dinfo
->auto_del
) {
78 static int drive_index_to_bus_id(BlockInterfaceType type
, int index
)
80 int max_devs
= if_max_devs
[type
];
81 return max_devs
? index
/ max_devs
: 0;
84 static int drive_index_to_unit_id(BlockInterfaceType type
, int index
)
86 int max_devs
= if_max_devs
[type
];
87 return max_devs
? index
% max_devs
: index
;
90 QemuOpts
*drive_def(const char *optstr
)
92 return qemu_opts_parse(qemu_find_opts("drive"), optstr
, 0);
95 QemuOpts
*drive_add(BlockInterfaceType type
, int index
, const char *file
,
101 opts
= drive_def(optstr
);
105 if (type
!= IF_DEFAULT
) {
106 qemu_opt_set(opts
, "if", if_name
[type
]);
109 snprintf(buf
, sizeof(buf
), "%d", index
);
110 qemu_opt_set(opts
, "index", buf
);
113 qemu_opt_set(opts
, "file", file
);
117 DriveInfo
*drive_get(BlockInterfaceType type
, int bus
, int unit
)
121 /* seek interface, bus and unit */
123 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
124 if (dinfo
->type
== type
&&
133 DriveInfo
*drive_get_by_index(BlockInterfaceType type
, int index
)
135 return drive_get(type
,
136 drive_index_to_bus_id(type
, index
),
137 drive_index_to_unit_id(type
, index
));
140 int drive_get_max_bus(BlockInterfaceType type
)
146 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
147 if(dinfo
->type
== type
&&
148 dinfo
->bus
> max_bus
)
149 max_bus
= dinfo
->bus
;
154 /* Get a block device. This should only be used for single-drive devices
155 (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the
157 DriveInfo
*drive_get_next(BlockInterfaceType type
)
159 static int next_block_unit
[IF_COUNT
];
161 return drive_get(type
, 0, next_block_unit
[type
]++);
164 DriveInfo
*drive_get_by_blockdev(BlockDriverState
*bs
)
168 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
169 if (dinfo
->bdrv
== bs
) {
176 static void bdrv_format_print(void *opaque
, const char *name
)
178 error_printf(" %s", name
);
181 static void drive_uninit(DriveInfo
*dinfo
)
183 qemu_opts_del(dinfo
->opts
);
184 bdrv_delete(dinfo
->bdrv
);
185 qemu_free(dinfo
->id
);
186 QTAILQ_REMOVE(&drives
, dinfo
, next
);
190 void drive_put_ref(DriveInfo
*dinfo
)
192 assert(dinfo
->refcount
);
193 if (--dinfo
->refcount
== 0) {
198 void drive_get_ref(DriveInfo
*dinfo
)
203 static int parse_block_error_action(const char *buf
, int is_read
)
205 if (!strcmp(buf
, "ignore")) {
206 return BLOCK_ERR_IGNORE
;
207 } else if (!is_read
&& !strcmp(buf
, "enospc")) {
208 return BLOCK_ERR_STOP_ENOSPC
;
209 } else if (!strcmp(buf
, "stop")) {
210 return BLOCK_ERR_STOP_ANY
;
211 } else if (!strcmp(buf
, "report")) {
212 return BLOCK_ERR_REPORT
;
214 error_report("'%s' invalid %s error action",
215 buf
, is_read
? "read" : "write");
220 DriveInfo
*drive_init(QemuOpts
*opts
, int default_to_scsi
)
223 const char *file
= NULL
;
226 const char *mediastr
= "";
227 BlockInterfaceType type
;
228 enum { MEDIA_DISK
, MEDIA_CDROM
} media
;
230 int cyls
, heads
, secs
, translation
;
231 BlockDriver
*drv
= NULL
;
236 int on_read_error
, on_write_error
;
242 translation
= BIOS_ATA_TRANSLATION_AUTO
;
244 if (default_to_scsi
) {
246 pstrcpy(devname
, sizeof(devname
), "scsi");
249 pstrcpy(devname
, sizeof(devname
), "ide");
253 /* extract parameters */
254 bus_id
= qemu_opt_get_number(opts
, "bus", 0);
255 unit_id
= qemu_opt_get_number(opts
, "unit", -1);
256 index
= qemu_opt_get_number(opts
, "index", -1);
258 cyls
= qemu_opt_get_number(opts
, "cyls", 0);
259 heads
= qemu_opt_get_number(opts
, "heads", 0);
260 secs
= qemu_opt_get_number(opts
, "secs", 0);
262 snapshot
= qemu_opt_get_bool(opts
, "snapshot", 0);
263 ro
= qemu_opt_get_bool(opts
, "readonly", 0);
265 file
= qemu_opt_get(opts
, "file");
266 serial
= qemu_opt_get(opts
, "serial");
268 if ((buf
= qemu_opt_get(opts
, "if")) != NULL
) {
269 pstrcpy(devname
, sizeof(devname
), buf
);
270 for (type
= 0; type
< IF_COUNT
&& strcmp(buf
, if_name
[type
]); type
++)
272 if (type
== IF_COUNT
) {
273 error_report("unsupported bus type '%s'", buf
);
277 max_devs
= if_max_devs
[type
];
279 if (cyls
|| heads
|| secs
) {
280 if (cyls
< 1 || (type
== IF_IDE
&& cyls
> 16383)) {
281 error_report("invalid physical cyls number");
284 if (heads
< 1 || (type
== IF_IDE
&& heads
> 16)) {
285 error_report("invalid physical heads number");
288 if (secs
< 1 || (type
== IF_IDE
&& secs
> 63)) {
289 error_report("invalid physical secs number");
294 if ((buf
= qemu_opt_get(opts
, "trans")) != NULL
) {
296 error_report("'%s' trans must be used with cyls,heads and secs",
300 if (!strcmp(buf
, "none"))
301 translation
= BIOS_ATA_TRANSLATION_NONE
;
302 else if (!strcmp(buf
, "lba"))
303 translation
= BIOS_ATA_TRANSLATION_LBA
;
304 else if (!strcmp(buf
, "auto"))
305 translation
= BIOS_ATA_TRANSLATION_AUTO
;
307 error_report("'%s' invalid translation type", buf
);
312 if ((buf
= qemu_opt_get(opts
, "media")) != NULL
) {
313 if (!strcmp(buf
, "disk")) {
315 } else if (!strcmp(buf
, "cdrom")) {
316 if (cyls
|| secs
|| heads
) {
317 error_report("'%s' invalid physical CHS format", buf
);
322 error_report("'%s' invalid media", buf
);
327 if ((buf
= qemu_opt_get(opts
, "cache")) != NULL
) {
328 if (!strcmp(buf
, "off") || !strcmp(buf
, "none")) {
329 bdrv_flags
|= BDRV_O_NOCACHE
;
330 } else if (!strcmp(buf
, "writeback")) {
331 bdrv_flags
|= BDRV_O_CACHE_WB
;
332 } else if (!strcmp(buf
, "unsafe")) {
333 bdrv_flags
|= BDRV_O_CACHE_WB
;
334 bdrv_flags
|= BDRV_O_NO_FLUSH
;
335 } else if (!strcmp(buf
, "writethrough")) {
336 /* this is the default */
338 error_report("invalid cache option");
343 #ifdef CONFIG_LINUX_AIO
344 if ((buf
= qemu_opt_get(opts
, "aio")) != NULL
) {
345 if (!strcmp(buf
, "native")) {
346 bdrv_flags
|= BDRV_O_NATIVE_AIO
;
347 } else if (!strcmp(buf
, "threads")) {
348 /* this is the default */
350 error_report("invalid aio option");
356 if ((buf
= qemu_opt_get(opts
, "format")) != NULL
) {
357 if (strcmp(buf
, "?") == 0) {
358 error_printf("Supported formats:");
359 bdrv_iterate_format(bdrv_format_print
, NULL
);
363 drv
= bdrv_find_whitelisted_format(buf
);
365 error_report("'%s' invalid format", buf
);
370 on_write_error
= BLOCK_ERR_STOP_ENOSPC
;
371 if ((buf
= qemu_opt_get(opts
, "werror")) != NULL
) {
372 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
&& type
!= IF_NONE
) {
373 error_report("werror is not supported by this bus type");
377 on_write_error
= parse_block_error_action(buf
, 0);
378 if (on_write_error
< 0) {
383 on_read_error
= BLOCK_ERR_REPORT
;
384 if ((buf
= qemu_opt_get(opts
, "rerror")) != NULL
) {
385 if (type
!= IF_IDE
&& type
!= IF_VIRTIO
&& type
!= IF_SCSI
&& type
!= IF_NONE
) {
386 error_report("rerror is not supported by this bus type");
390 on_read_error
= parse_block_error_action(buf
, 1);
391 if (on_read_error
< 0) {
396 if ((devaddr
= qemu_opt_get(opts
, "addr")) != NULL
) {
397 if (type
!= IF_VIRTIO
) {
398 error_report("addr is not supported by this bus type");
403 /* compute bus and unit according index */
406 if (bus_id
!= 0 || unit_id
!= -1) {
407 error_report("index cannot be used with bus and unit");
410 bus_id
= drive_index_to_bus_id(type
, index
);
411 unit_id
= drive_index_to_unit_id(type
, index
);
414 /* if user doesn't specify a unit_id,
415 * try to find the first free
420 while (drive_get(type
, bus_id
, unit_id
) != NULL
) {
422 if (max_devs
&& unit_id
>= max_devs
) {
431 if (max_devs
&& unit_id
>= max_devs
) {
432 error_report("unit %d too big (max is %d)",
433 unit_id
, max_devs
- 1);
438 * catch multiple definitions
441 if (drive_get(type
, bus_id
, unit_id
) != NULL
) {
442 error_report("drive with bus=%d, unit=%d (index=%d) exists",
443 bus_id
, unit_id
, index
);
449 dinfo
= qemu_mallocz(sizeof(*dinfo
));
450 if ((buf
= qemu_opts_id(opts
)) != NULL
) {
451 dinfo
->id
= qemu_strdup(buf
);
453 /* no id supplied -> create one */
454 dinfo
->id
= qemu_mallocz(32);
455 if (type
== IF_IDE
|| type
== IF_SCSI
)
456 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
458 snprintf(dinfo
->id
, 32, "%s%i%s%i",
459 devname
, bus_id
, mediastr
, unit_id
);
461 snprintf(dinfo
->id
, 32, "%s%s%i",
462 devname
, mediastr
, unit_id
);
464 dinfo
->bdrv
= bdrv_new(dinfo
->id
);
465 dinfo
->devaddr
= devaddr
;
468 dinfo
->unit
= unit_id
;
472 strncpy(dinfo
->serial
, serial
, sizeof(dinfo
->serial
) - 1);
473 QTAILQ_INSERT_TAIL(&drives
, dinfo
, next
);
475 bdrv_set_on_error(dinfo
->bdrv
, on_read_error
, on_write_error
);
485 bdrv_set_geometry_hint(dinfo
->bdrv
, cyls
, heads
, secs
);
486 bdrv_set_translation_hint(dinfo
->bdrv
, translation
);
490 bdrv_set_type_hint(dinfo
->bdrv
, BDRV_TYPE_CDROM
);
495 /* FIXME: This isn't really a floppy, but it's a reasonable
498 bdrv_set_type_hint(dinfo
->bdrv
, BDRV_TYPE_FLOPPY
);
504 /* add virtio block device */
505 opts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0);
506 qemu_opt_set(opts
, "driver", "virtio-blk");
507 qemu_opt_set(opts
, "drive", dinfo
->id
);
509 qemu_opt_set(opts
, "addr", devaddr
);
514 if (!file
|| !*file
) {
518 /* always use cache=unsafe with snapshot */
519 bdrv_flags
&= ~BDRV_O_CACHE_MASK
;
520 bdrv_flags
|= (BDRV_O_SNAPSHOT
|BDRV_O_CACHE_WB
|BDRV_O_NO_FLUSH
);
523 if (media
== MEDIA_CDROM
) {
524 /* CDROM is fine for any interface, don't check. */
526 } else if (ro
== 1) {
527 if (type
!= IF_SCSI
&& type
!= IF_VIRTIO
&& type
!= IF_FLOPPY
&& type
!= IF_NONE
) {
528 error_report("readonly not supported by this bus type");
533 bdrv_flags
|= ro
? 0 : BDRV_O_RDWR
;
535 ret
= bdrv_open(dinfo
->bdrv
, file
, bdrv_flags
, drv
);
537 error_report("could not open disk image %s: %s",
538 file
, strerror(-ret
));
542 if (bdrv_key_required(dinfo
->bdrv
))
547 bdrv_delete(dinfo
->bdrv
);
548 qemu_free(dinfo
->id
);
549 QTAILQ_REMOVE(&drives
, dinfo
, next
);
554 void do_commit(Monitor
*mon
, const QDict
*qdict
)
556 const char *device
= qdict_get_str(qdict
, "device");
557 BlockDriverState
*bs
;
559 if (!strcmp(device
, "all")) {
562 bs
= bdrv_find(device
);
564 qerror_report(QERR_DEVICE_NOT_FOUND
, device
);
571 int do_snapshot_blkdev(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
573 const char *device
= qdict_get_str(qdict
, "device");
574 const char *filename
= qdict_get_try_str(qdict
, "snapshot_file");
575 const char *format
= qdict_get_try_str(qdict
, "format");
576 BlockDriverState
*bs
;
577 BlockDriver
*drv
, *old_drv
, *proto_drv
;
580 char old_filename
[1024];
583 qerror_report(QERR_MISSING_PARAMETER
, "snapshot_file");
588 bs
= bdrv_find(device
);
590 qerror_report(QERR_DEVICE_NOT_FOUND
, device
);
595 pstrcpy(old_filename
, sizeof(old_filename
), bs
->filename
);
598 flags
= bs
->open_flags
;
604 drv
= bdrv_find_format(format
);
606 qerror_report(QERR_INVALID_BLOCK_FORMAT
, format
);
611 proto_drv
= bdrv_find_protocol(filename
);
613 qerror_report(QERR_INVALID_BLOCK_FORMAT
, format
);
618 ret
= bdrv_img_create(filename
, format
, bs
->filename
,
619 bs
->drv
->format_name
, NULL
, -1, flags
);
628 ret
= bdrv_open(bs
, filename
, flags
, drv
);
630 * If reopening the image file we just created fails, fall back
631 * and try to re-open the original image. If that fails too, we
632 * are in serious trouble.
635 ret
= bdrv_open(bs
, old_filename
, flags
, old_drv
);
637 qerror_report(QERR_OPEN_FILE_FAILED
, old_filename
);
639 qerror_report(QERR_OPEN_FILE_FAILED
, filename
);
650 static int eject_device(Monitor
*mon
, BlockDriverState
*bs
, int force
)
653 if (!bdrv_is_removable(bs
)) {
654 qerror_report(QERR_DEVICE_NOT_REMOVABLE
,
655 bdrv_get_device_name(bs
));
658 if (bdrv_is_locked(bs
)) {
659 qerror_report(QERR_DEVICE_LOCKED
, bdrv_get_device_name(bs
));
667 int do_eject(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
669 BlockDriverState
*bs
;
670 int force
= qdict_get_try_bool(qdict
, "force", 0);
671 const char *filename
= qdict_get_str(qdict
, "device");
673 bs
= bdrv_find(filename
);
675 qerror_report(QERR_DEVICE_NOT_FOUND
, filename
);
678 return eject_device(mon
, bs
, force
);
681 int do_block_set_passwd(Monitor
*mon
, const QDict
*qdict
,
684 BlockDriverState
*bs
;
687 bs
= bdrv_find(qdict_get_str(qdict
, "device"));
689 qerror_report(QERR_DEVICE_NOT_FOUND
, qdict_get_str(qdict
, "device"));
693 err
= bdrv_set_key(bs
, qdict_get_str(qdict
, "password"));
694 if (err
== -EINVAL
) {
695 qerror_report(QERR_DEVICE_NOT_ENCRYPTED
, bdrv_get_device_name(bs
));
697 } else if (err
< 0) {
698 qerror_report(QERR_INVALID_PASSWORD
);
705 int do_change_block(Monitor
*mon
, const char *device
,
706 const char *filename
, const char *fmt
)
708 BlockDriverState
*bs
;
709 BlockDriver
*drv
= NULL
;
712 bs
= bdrv_find(device
);
714 qerror_report(QERR_DEVICE_NOT_FOUND
, device
);
718 drv
= bdrv_find_whitelisted_format(fmt
);
720 qerror_report(QERR_INVALID_BLOCK_FORMAT
, fmt
);
724 if (eject_device(mon
, bs
, 0) < 0) {
727 bdrv_flags
= bdrv_is_read_only(bs
) ? 0 : BDRV_O_RDWR
;
728 bdrv_flags
|= bdrv_is_snapshot(bs
) ? BDRV_O_SNAPSHOT
: 0;
729 if (bdrv_open(bs
, filename
, bdrv_flags
, drv
) < 0) {
730 qerror_report(QERR_OPEN_FILE_FAILED
, filename
);
733 return monitor_read_bdrv_key_start(mon
, bs
, NULL
, NULL
);
736 int do_drive_del(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
738 const char *id
= qdict_get_str(qdict
, "id");
739 BlockDriverState
*bs
;
743 qerror_report(QERR_DEVICE_NOT_FOUND
, id
);
746 if (bdrv_in_use(bs
)) {
747 qerror_report(QERR_DEVICE_IN_USE
, id
);
751 /* quiesce block driver; prevent further io */
756 /* if we have a device associated with this BlockDriverState (bs->peer)
757 * then we need to make the drive anonymous until the device
758 * can be removed. If this is a drive with no device backing
759 * then we can just get rid of the block driver state right here.
764 drive_uninit(drive_get_by_blockdev(bs
));
771 * XXX: replace the QERR_UNDEFINED_ERROR errors with real values once the
772 * existing QERR_ macro mess is cleaned up. A good example for better
773 * error reports can be found in the qemu-img resize code.
775 int do_block_resize(Monitor
*mon
, const QDict
*qdict
, QObject
**ret_data
)
777 const char *device
= qdict_get_str(qdict
, "device");
778 int64_t size
= qdict_get_int(qdict
, "size");
779 BlockDriverState
*bs
;
781 bs
= bdrv_find(device
);
783 qerror_report(QERR_DEVICE_NOT_FOUND
, device
);
788 qerror_report(QERR_UNDEFINED_ERROR
);
792 if (bdrv_truncate(bs
, size
)) {
793 qerror_report(QERR_UNDEFINED_ERROR
);