2004-08-01 23:59:26 +02:00
|
|
|
/*
|
|
|
|
* QEMU System Emulator block driver
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
2004-08-01 23:59:26 +02:00
|
|
|
* Copyright (c) 2003 Fabrice Bellard
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
2004-08-01 23:59:26 +02:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
#ifndef BLOCK_INT_H
|
|
|
|
#define BLOCK_INT_H
|
|
|
|
|
2007-11-11 03:51:17 +01:00
|
|
|
#include "block.h"
|
2009-05-18 16:42:10 +02:00
|
|
|
#include "qemu-option.h"
|
2010-04-10 08:02:42 +02:00
|
|
|
#include "qemu-queue.h"
|
2011-07-14 17:27:13 +02:00
|
|
|
#include "qemu-coroutine.h"
|
2011-08-25 08:26:10 +02:00
|
|
|
#include "qemu-timer.h"
|
2011-09-21 22:16:47 +02:00
|
|
|
#include "qapi-types.h"
|
2007-11-11 03:51:17 +01:00
|
|
|
|
2007-09-16 23:59:02 +02:00
|
|
|
#define BLOCK_FLAG_ENCRYPT 1
|
|
|
|
#define BLOCK_FLAG_COMPAT6 4
|
|
|
|
|
2011-11-03 09:57:25 +01:00
|
|
|
#define BLOCK_IO_LIMIT_READ 0
|
|
|
|
#define BLOCK_IO_LIMIT_WRITE 1
|
|
|
|
#define BLOCK_IO_LIMIT_TOTAL 2
|
|
|
|
|
|
|
|
#define BLOCK_IO_SLICE_TIME 100000000
|
2011-11-08 06:00:14 +01:00
|
|
|
#define NANOSECONDS_PER_SECOND 1000000000.0
|
2011-11-03 09:57:25 +01:00
|
|
|
|
2009-05-18 16:42:10 +02:00
|
|
|
#define BLOCK_OPT_SIZE "size"
|
|
|
|
#define BLOCK_OPT_ENCRYPT "encryption"
|
|
|
|
#define BLOCK_OPT_COMPAT6 "compat6"
|
|
|
|
#define BLOCK_OPT_BACKING_FILE "backing_file"
|
|
|
|
#define BLOCK_OPT_BACKING_FMT "backing_fmt"
|
2009-05-19 17:57:21 +02:00
|
|
|
#define BLOCK_OPT_CLUSTER_SIZE "cluster_size"
|
2010-12-06 17:08:00 +01:00
|
|
|
#define BLOCK_OPT_TABLE_SIZE "table_size"
|
2009-08-17 15:50:10 +02:00
|
|
|
#define BLOCK_OPT_PREALLOC "preallocation"
|
2011-07-19 02:45:23 +02:00
|
|
|
#define BLOCK_OPT_SUBFMT "subformat"
|
2009-05-18 16:42:10 +02:00
|
|
|
|
2011-11-17 14:40:27 +01:00
|
|
|
typedef struct BdrvTrackedRequest BdrvTrackedRequest;
|
|
|
|
|
2009-03-20 19:25:59 +01:00
|
|
|
typedef struct AIOPool {
|
|
|
|
void (*cancel)(BlockDriverAIOCB *acb);
|
|
|
|
int aiocb_size;
|
|
|
|
BlockDriverAIOCB *free_aiocb;
|
|
|
|
} AIOPool;
|
|
|
|
|
2011-11-03 09:57:25 +01:00
|
|
|
typedef struct BlockIOLimit {
|
|
|
|
int64_t bps[3];
|
|
|
|
int64_t iops[3];
|
|
|
|
} BlockIOLimit;
|
|
|
|
|
|
|
|
typedef struct BlockIOBaseValue {
|
|
|
|
uint64_t bytes[2];
|
|
|
|
uint64_t ios[2];
|
|
|
|
} BlockIOBaseValue;
|
|
|
|
|
2004-08-01 23:59:26 +02:00
|
|
|
struct BlockDriver {
|
|
|
|
const char *format_name;
|
|
|
|
int instance_size;
|
|
|
|
int (*bdrv_probe)(const uint8_t *buf, int buf_size, const char *filename);
|
2009-06-15 14:04:22 +02:00
|
|
|
int (*bdrv_probe_device)(const char *filename);
|
2010-04-14 14:17:38 +02:00
|
|
|
int (*bdrv_open)(BlockDriverState *bs, int flags);
|
|
|
|
int (*bdrv_file_open)(BlockDriverState *bs, const char *filename, int flags);
|
2007-09-16 23:08:06 +02:00
|
|
|
int (*bdrv_read)(BlockDriverState *bs, int64_t sector_num,
|
2004-08-01 23:59:26 +02:00
|
|
|
uint8_t *buf, int nb_sectors);
|
2007-09-16 23:08:06 +02:00
|
|
|
int (*bdrv_write)(BlockDriverState *bs, int64_t sector_num,
|
2004-08-01 23:59:26 +02:00
|
|
|
const uint8_t *buf, int nb_sectors);
|
2004-09-18 21:32:11 +02:00
|
|
|
void (*bdrv_close)(BlockDriverState *bs);
|
2009-05-18 16:42:10 +02:00
|
|
|
int (*bdrv_create)(const char *filename, QEMUOptionParameter *options);
|
2004-08-01 23:59:26 +02:00
|
|
|
int (*bdrv_set_key)(BlockDriverState *bs, const char *key);
|
2005-12-18 19:28:15 +01:00
|
|
|
int (*bdrv_make_empty)(BlockDriverState *bs);
|
2006-08-01 18:21:11 +02:00
|
|
|
/* aio */
|
2009-04-07 20:43:24 +02:00
|
|
|
BlockDriverAIOCB *(*bdrv_aio_readv)(BlockDriverState *bs,
|
|
|
|
int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
|
2006-08-07 04:38:06 +02:00
|
|
|
BlockDriverCompletionFunc *cb, void *opaque);
|
2009-04-07 20:43:24 +02:00
|
|
|
BlockDriverAIOCB *(*bdrv_aio_writev)(BlockDriverState *bs,
|
|
|
|
int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
|
2006-08-07 04:38:06 +02:00
|
|
|
BlockDriverCompletionFunc *cb, void *opaque);
|
2009-09-04 19:01:49 +02:00
|
|
|
BlockDriverAIOCB *(*bdrv_aio_flush)(BlockDriverState *bs,
|
|
|
|
BlockDriverCompletionFunc *cb, void *opaque);
|
2011-10-17 12:32:14 +02:00
|
|
|
BlockDriverAIOCB *(*bdrv_aio_discard)(BlockDriverState *bs,
|
|
|
|
int64_t sector_num, int nb_sectors,
|
|
|
|
BlockDriverCompletionFunc *cb, void *opaque);
|
2006-08-01 18:21:11 +02:00
|
|
|
|
2011-07-14 17:27:13 +02:00
|
|
|
int coroutine_fn (*bdrv_co_readv)(BlockDriverState *bs,
|
|
|
|
int64_t sector_num, int nb_sectors, QEMUIOVector *qiov);
|
|
|
|
int coroutine_fn (*bdrv_co_writev)(BlockDriverState *bs,
|
|
|
|
int64_t sector_num, int nb_sectors, QEMUIOVector *qiov);
|
2011-10-17 12:32:14 +02:00
|
|
|
int coroutine_fn (*bdrv_co_discard)(BlockDriverState *bs,
|
|
|
|
int64_t sector_num, int nb_sectors);
|
2011-11-14 13:44:19 +01:00
|
|
|
int coroutine_fn (*bdrv_co_is_allocated)(BlockDriverState *bs,
|
|
|
|
int64_t sector_num, int nb_sectors, int *pnum);
|
2011-07-14 17:27:13 +02:00
|
|
|
|
2011-11-14 22:09:45 +01:00
|
|
|
/*
|
|
|
|
* Invalidate any cached meta-data.
|
|
|
|
*/
|
|
|
|
void (*bdrv_invalidate_cache)(BlockDriverState *bs);
|
|
|
|
|
2011-11-10 17:25:44 +01:00
|
|
|
/*
|
|
|
|
* Flushes all data that was already written to the OS all the way down to
|
|
|
|
* the disk (for example raw-posix calls fsync()).
|
|
|
|
*/
|
|
|
|
int coroutine_fn (*bdrv_co_flush_to_disk)(BlockDriverState *bs);
|
|
|
|
|
2011-11-10 18:10:11 +01:00
|
|
|
/*
|
|
|
|
* Flushes all internal caches to the OS. The data may still sit in a
|
|
|
|
* writeback cache of the host OS, but it will survive a crash of the qemu
|
|
|
|
* process.
|
|
|
|
*/
|
|
|
|
int coroutine_fn (*bdrv_co_flush_to_os)(BlockDriverState *bs);
|
|
|
|
|
2009-09-09 17:53:37 +02:00
|
|
|
int (*bdrv_aio_multiwrite)(BlockDriverState *bs, BlockRequest *reqs,
|
|
|
|
int num_reqs);
|
|
|
|
int (*bdrv_merge_requests)(BlockDriverState *bs, BlockRequest* a,
|
|
|
|
BlockRequest *b);
|
|
|
|
|
|
|
|
|
2006-08-01 18:21:11 +02:00
|
|
|
const char *protocol_name;
|
|
|
|
int (*bdrv_truncate)(BlockDriverState *bs, int64_t offset);
|
|
|
|
int64_t (*bdrv_getlength)(BlockDriverState *bs);
|
2011-07-12 13:56:39 +02:00
|
|
|
int64_t (*bdrv_get_allocated_file_size)(BlockDriverState *bs);
|
2007-09-16 23:08:06 +02:00
|
|
|
int (*bdrv_write_compressed)(BlockDriverState *bs, int64_t sector_num,
|
2006-08-05 23:31:00 +02:00
|
|
|
const uint8_t *buf, int nb_sectors);
|
|
|
|
|
2007-09-16 23:08:06 +02:00
|
|
|
int (*bdrv_snapshot_create)(BlockDriverState *bs,
|
2006-08-05 23:31:00 +02:00
|
|
|
QEMUSnapshotInfo *sn_info);
|
2007-09-16 23:08:06 +02:00
|
|
|
int (*bdrv_snapshot_goto)(BlockDriverState *bs,
|
2006-08-05 23:31:00 +02:00
|
|
|
const char *snapshot_id);
|
|
|
|
int (*bdrv_snapshot_delete)(BlockDriverState *bs, const char *snapshot_id);
|
2007-09-16 23:08:06 +02:00
|
|
|
int (*bdrv_snapshot_list)(BlockDriverState *bs,
|
2006-08-05 23:31:00 +02:00
|
|
|
QEMUSnapshotInfo **psn_info);
|
2010-09-22 04:58:41 +02:00
|
|
|
int (*bdrv_snapshot_load_tmp)(BlockDriverState *bs,
|
|
|
|
const char *snapshot_name);
|
2006-08-05 23:31:00 +02:00
|
|
|
int (*bdrv_get_info)(BlockDriverState *bs, BlockDriverInfo *bdi);
|
2006-08-01 18:21:11 +02:00
|
|
|
|
2009-07-10 23:11:57 +02:00
|
|
|
int (*bdrv_save_vmstate)(BlockDriverState *bs, const uint8_t *buf,
|
|
|
|
int64_t pos, int size);
|
|
|
|
int (*bdrv_load_vmstate)(BlockDriverState *bs, uint8_t *buf,
|
|
|
|
int64_t pos, int size);
|
2009-04-05 21:10:55 +02:00
|
|
|
|
2010-01-12 12:55:17 +01:00
|
|
|
int (*bdrv_change_backing_file)(BlockDriverState *bs,
|
|
|
|
const char *backing_file, const char *backing_fmt);
|
|
|
|
|
2006-08-19 13:45:59 +02:00
|
|
|
/* removable device specific */
|
|
|
|
int (*bdrv_is_inserted)(BlockDriverState *bs);
|
|
|
|
int (*bdrv_media_changed)(BlockDriverState *bs);
|
2011-07-20 18:23:42 +02:00
|
|
|
void (*bdrv_eject)(BlockDriverState *bs, int eject_flag);
|
2011-09-06 18:58:47 +02:00
|
|
|
void (*bdrv_lock_medium)(BlockDriverState *bs, bool locked);
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2007-12-24 17:10:43 +01:00
|
|
|
/* to control generic scsi devices */
|
|
|
|
int (*bdrv_ioctl)(BlockDriverState *bs, unsigned long int req, void *buf);
|
2009-03-28 18:28:41 +01:00
|
|
|
BlockDriverAIOCB *(*bdrv_aio_ioctl)(BlockDriverState *bs,
|
|
|
|
unsigned long int req, void *buf,
|
|
|
|
BlockDriverCompletionFunc *cb, void *opaque);
|
2007-12-24 17:10:43 +01:00
|
|
|
|
2009-05-18 16:42:10 +02:00
|
|
|
/* List of options for creating images, terminated by name == NULL */
|
|
|
|
QEMUOptionParameter *create_options;
|
|
|
|
|
2009-03-28 18:55:10 +01:00
|
|
|
|
2010-06-29 12:37:54 +02:00
|
|
|
/*
|
|
|
|
* Returns 0 for completed check, -errno for internal errors.
|
|
|
|
* The check results are stored in result.
|
|
|
|
*/
|
|
|
|
int (*bdrv_check)(BlockDriverState* bs, BdrvCheckResult *result);
|
2009-04-22 01:11:50 +02:00
|
|
|
|
2010-03-15 17:27:00 +01:00
|
|
|
void (*bdrv_debug_event)(BlockDriverState *bs, BlkDebugEvent event);
|
|
|
|
|
2010-07-28 11:26:29 +02:00
|
|
|
/*
|
|
|
|
* Returns 1 if newly created images are guaranteed to contain only
|
|
|
|
* zeros, 0 otherwise.
|
|
|
|
*/
|
|
|
|
int (*bdrv_has_zero_init)(BlockDriverState *bs);
|
2009-11-30 16:54:15 +01:00
|
|
|
|
2010-04-13 11:29:33 +02:00
|
|
|
QLIST_ENTRY(BlockDriver) list;
|
2004-08-01 23:59:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct BlockDriverState {
|
2006-08-06 15:35:09 +02:00
|
|
|
int64_t total_sectors; /* if we are reading a disk image, give its
|
|
|
|
size in sectors */
|
2004-08-01 23:59:26 +02:00
|
|
|
int read_only; /* if true, the media is read only */
|
2010-02-14 12:39:18 +01:00
|
|
|
int keep_read_only; /* if true, the media was requested to stay read only */
|
|
|
|
int open_flags; /* flags used to open the file, re-used for re-open */
|
2004-08-01 23:59:26 +02:00
|
|
|
int encrypted; /* if true, the media is encrypted */
|
2009-03-06 00:01:01 +01:00
|
|
|
int valid_key; /* if true, a valid encryption key has been set */
|
2007-12-24 17:10:43 +01:00
|
|
|
int sg; /* if true, the device is a /dev/sg* */
|
2011-11-28 17:08:47 +01:00
|
|
|
int copy_on_read; /* if true, copy read backing sectors into image
|
|
|
|
note this is a reference count */
|
2004-08-01 23:59:26 +02:00
|
|
|
|
2006-08-19 13:45:59 +02:00
|
|
|
BlockDriver *drv; /* NULL means no media */
|
2004-08-01 23:59:26 +02:00
|
|
|
void *opaque;
|
|
|
|
|
2011-08-03 15:07:40 +02:00
|
|
|
void *dev; /* attached device model, if any */
|
|
|
|
/* TODO change to DeviceState when all users are qdevified */
|
2011-08-03 15:07:41 +02:00
|
|
|
const BlockDevOps *dev_ops;
|
|
|
|
void *dev_opaque;
|
2010-06-29 16:58:30 +02:00
|
|
|
|
2004-08-01 23:59:26 +02:00
|
|
|
char filename[1024];
|
|
|
|
char backing_file[1024]; /* if non zero, the image is a diff of
|
|
|
|
this file image */
|
2009-03-28 18:55:10 +01:00
|
|
|
char backing_format[16]; /* if non-zero and backing_file exists */
|
2004-08-01 23:59:26 +02:00
|
|
|
int is_temporary;
|
2006-08-19 13:45:59 +02:00
|
|
|
|
2004-08-01 23:59:26 +02:00
|
|
|
BlockDriverState *backing_hd;
|
2010-04-14 14:17:38 +02:00
|
|
|
BlockDriverState *file;
|
|
|
|
|
2006-08-07 04:38:06 +02:00
|
|
|
/* async read/write emulation */
|
2006-08-01 18:21:11 +02:00
|
|
|
|
2006-08-07 04:38:06 +02:00
|
|
|
void *sync_aiocb;
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2011-11-03 09:57:25 +01:00
|
|
|
/* the time for latest disk I/O */
|
|
|
|
int64_t slice_time;
|
|
|
|
int64_t slice_start;
|
|
|
|
int64_t slice_end;
|
|
|
|
BlockIOLimit io_limits;
|
|
|
|
BlockIOBaseValue io_base;
|
|
|
|
CoQueue throttled_reqs;
|
|
|
|
QEMUTimer *block_timer;
|
|
|
|
bool io_limits_enabled;
|
|
|
|
|
2007-12-02 06:18:19 +01:00
|
|
|
/* I/O stats (display with "info blockstats"). */
|
2011-08-25 08:26:01 +02:00
|
|
|
uint64_t nr_bytes[BDRV_MAX_IOTYPE];
|
|
|
|
uint64_t nr_ops[BDRV_MAX_IOTYPE];
|
2011-08-25 08:26:10 +02:00
|
|
|
uint64_t total_time_ns[BDRV_MAX_IOTYPE];
|
2010-04-28 14:34:01 +02:00
|
|
|
uint64_t wr_highest_sector;
|
2007-12-02 06:18:19 +01:00
|
|
|
|
2009-03-03 18:37:16 +01:00
|
|
|
/* Whether the disk can expand beyond total_sectors */
|
|
|
|
int growable;
|
|
|
|
|
2009-04-22 22:20:00 +02:00
|
|
|
/* the memory alignment required for the buffers handled by this driver */
|
|
|
|
int buffer_alignment;
|
|
|
|
|
2009-09-04 19:01:15 +02:00
|
|
|
/* do we need to tell the quest if we have a volatile write cache? */
|
|
|
|
int enable_write_cache;
|
|
|
|
|
2004-08-01 23:59:26 +02:00
|
|
|
/* NOTE: the following infos are only hints for real hardware
|
|
|
|
drivers. They are not used by the block driver */
|
2004-11-16 02:45:27 +01:00
|
|
|
int cyls, heads, secs, translation;
|
2010-06-02 18:55:17 +02:00
|
|
|
BlockErrorAction on_read_error, on_write_error;
|
2011-10-14 22:11:23 +02:00
|
|
|
bool iostatus_enabled;
|
2011-09-21 22:16:47 +02:00
|
|
|
BlockDeviceIoStatus iostatus;
|
2004-08-01 23:59:26 +02:00
|
|
|
char device_name[32];
|
2009-11-30 18:21:20 +01:00
|
|
|
unsigned long *dirty_bitmap;
|
2010-01-26 09:31:48 +01:00
|
|
|
int64_t dirty_count;
|
2011-01-26 15:12:34 +01:00
|
|
|
int in_use; /* users other than guest access, eg. block migration */
|
2010-04-10 08:02:42 +02:00
|
|
|
QTAILQ_ENTRY(BlockDriverState) list;
|
2009-02-11 16:20:29 +01:00
|
|
|
void *private;
|
2011-11-17 14:40:27 +01:00
|
|
|
|
|
|
|
QLIST_HEAD(, BdrvTrackedRequest) tracked_requests;
|
2004-08-01 23:59:26 +02:00
|
|
|
};
|
|
|
|
|
2006-08-01 18:21:11 +02:00
|
|
|
struct BlockDriverAIOCB {
|
2009-03-20 19:25:59 +01:00
|
|
|
AIOPool *pool;
|
2006-08-01 18:21:11 +02:00
|
|
|
BlockDriverState *bs;
|
|
|
|
BlockDriverCompletionFunc *cb;
|
2006-08-07 04:38:06 +02:00
|
|
|
void *opaque;
|
|
|
|
BlockDriverAIOCB *next;
|
2006-08-01 18:21:11 +02:00
|
|
|
};
|
|
|
|
|
2005-12-18 19:28:15 +01:00
|
|
|
void get_tmp_filename(char *filename, int size);
|
|
|
|
|
2009-05-25 12:37:32 +02:00
|
|
|
void *qemu_aio_get(AIOPool *pool, BlockDriverState *bs,
|
|
|
|
BlockDriverCompletionFunc *cb, void *opaque);
|
2006-08-07 04:38:06 +02:00
|
|
|
void qemu_aio_release(void *p);
|
|
|
|
|
2011-11-03 09:57:25 +01:00
|
|
|
void bdrv_set_io_limits(BlockDriverState *bs,
|
|
|
|
BlockIOLimit *io_limits);
|
|
|
|
|
2009-06-15 14:04:22 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
int is_windows_drive(const char *filename);
|
|
|
|
#endif
|
|
|
|
|
2004-08-01 23:59:26 +02:00
|
|
|
#endif /* BLOCK_INT_H */
|