2010-06-02 18:48:27 +02:00
|
|
|
/*
|
|
|
|
* QEMU host block devices
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003-2008 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or
|
|
|
|
* later. See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BLOCKDEV_H
|
|
|
|
#define BLOCKDEV_H
|
|
|
|
|
2012-12-17 18:19:44 +01:00
|
|
|
#include "block/block.h"
|
2012-12-17 18:19:43 +01:00
|
|
|
#include "qapi/error.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/queue.h"
|
2010-06-02 18:48:27 +02:00
|
|
|
|
2010-06-25 08:09:10 +02:00
|
|
|
void blockdev_mark_auto_del(BlockDriverState *bs);
|
|
|
|
void blockdev_auto_del(BlockDriverState *bs);
|
|
|
|
|
2011-01-28 11:21:38 +01:00
|
|
|
typedef enum {
|
2011-01-28 11:21:41 +01:00
|
|
|
IF_DEFAULT = -1, /* for use with drive_add() only */
|
2012-11-20 15:30:34 +01:00
|
|
|
/*
|
|
|
|
* IF_IDE must be zero, because we want QEMUMachine member
|
|
|
|
* block_default_type to default-initialize to IF_IDE
|
|
|
|
*/
|
|
|
|
IF_IDE = 0,
|
2011-01-28 11:21:38 +01:00
|
|
|
IF_NONE,
|
2012-11-20 15:30:34 +01:00
|
|
|
IF_SCSI, IF_FLOPPY, IF_PFLASH, IF_MTD, IF_SD, IF_VIRTIO, IF_XEN,
|
2011-01-28 11:21:38 +01:00
|
|
|
IF_COUNT
|
|
|
|
} BlockInterfaceType;
|
|
|
|
|
2010-08-24 17:22:24 +02:00
|
|
|
struct DriveInfo {
|
2010-06-02 18:48:27 +02:00
|
|
|
BlockDriverState *bdrv;
|
|
|
|
char *id;
|
|
|
|
const char *devaddr;
|
|
|
|
BlockInterfaceType type;
|
|
|
|
int bus;
|
|
|
|
int unit;
|
2010-06-25 08:09:10 +02:00
|
|
|
int auto_del; /* see blockdev_mark_auto_del() */
|
2011-05-16 15:04:56 +02:00
|
|
|
int media_cd;
|
2012-07-10 11:12:39 +02:00
|
|
|
int cyls, heads, secs, trans;
|
2010-06-02 18:48:27 +02:00
|
|
|
QemuOpts *opts;
|
2013-03-15 10:35:06 +01:00
|
|
|
char *serial;
|
2010-06-02 18:48:27 +02:00
|
|
|
QTAILQ_ENTRY(DriveInfo) next;
|
2011-01-26 15:12:32 +01:00
|
|
|
int refcount;
|
2010-08-24 17:22:24 +02:00
|
|
|
};
|
2010-06-02 18:48:27 +02:00
|
|
|
|
2010-09-23 20:47:32 +02:00
|
|
|
DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit);
|
2011-01-28 11:21:44 +01:00
|
|
|
DriveInfo *drive_get_by_index(BlockInterfaceType type, int index);
|
2010-09-23 20:47:32 +02:00
|
|
|
int drive_get_max_bus(BlockInterfaceType type);
|
2011-01-28 11:21:37 +01:00
|
|
|
DriveInfo *drive_get_next(BlockInterfaceType type);
|
2011-01-26 15:12:32 +01:00
|
|
|
void drive_get_ref(DriveInfo *dinfo);
|
|
|
|
void drive_put_ref(DriveInfo *dinfo);
|
2010-09-23 20:47:32 +02:00
|
|
|
DriveInfo *drive_get_by_blockdev(BlockDriverState *bs);
|
|
|
|
|
2011-01-28 11:21:41 +01:00
|
|
|
QemuOpts *drive_def(const char *optstr);
|
|
|
|
QemuOpts *drive_add(BlockInterfaceType type, int index, const char *file,
|
2011-01-31 11:50:09 +01:00
|
|
|
const char *optstr);
|
2012-11-20 15:30:34 +01:00
|
|
|
DriveInfo *drive_init(QemuOpts *arg, BlockInterfaceType block_default_type);
|
2010-06-02 18:48:27 +02:00
|
|
|
|
|
|
|
/* device-hotplug */
|
|
|
|
|
|
|
|
DriveInfo *add_init_drive(const char *opts);
|
|
|
|
|
2011-12-08 14:13:50 +01:00
|
|
|
void qmp_change_blockdev(const char *device, const char *filename,
|
|
|
|
bool has_format, const char *format, Error **errp);
|
2010-06-02 18:48:27 +02:00
|
|
|
void do_commit(Monitor *mon, const QDict *qdict);
|
2010-11-12 18:07:13 +01:00
|
|
|
int do_drive_del(Monitor *mon, const QDict *qdict, QObject **ret_data);
|
2010-06-02 18:48:27 +02:00
|
|
|
#endif
|