2010-04-07 22:30:24 +02:00
|
|
|
|
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "block_int.h"
|
|
|
|
#include "module.h"
|
|
|
|
|
2010-04-14 14:17:38 +02:00
|
|
|
static int raw_open(BlockDriverState *bs, int flags)
|
2010-04-07 22:30:24 +02:00
|
|
|
{
|
2010-04-14 14:17:38 +02:00
|
|
|
bs->sg = bs->file->sg;
|
|
|
|
return 0;
|
2010-04-07 22:30:24 +02:00
|
|
|
}
|
|
|
|
|
2012-09-20 21:13:26 +02:00
|
|
|
/* We have nothing to do for raw reopen, stubs just return
|
|
|
|
* success */
|
|
|
|
static int raw_reopen_prepare(BDRVReopenState *state,
|
|
|
|
BlockReopenQueue *queue, Error **errp)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-10-13 22:09:30 +02:00
|
|
|
static int coroutine_fn raw_co_readv(BlockDriverState *bs, int64_t sector_num,
|
|
|
|
int nb_sectors, QEMUIOVector *qiov)
|
2010-04-07 22:30:24 +02:00
|
|
|
{
|
2012-06-06 08:10:44 +02:00
|
|
|
BLKDBG_EVENT(bs->file, BLKDBG_READ_AIO);
|
2011-10-13 22:09:30 +02:00
|
|
|
return bdrv_co_readv(bs->file, sector_num, nb_sectors, qiov);
|
2010-04-07 22:30:24 +02:00
|
|
|
}
|
|
|
|
|
2011-10-13 22:09:30 +02:00
|
|
|
static int coroutine_fn raw_co_writev(BlockDriverState *bs, int64_t sector_num,
|
|
|
|
int nb_sectors, QEMUIOVector *qiov)
|
2010-04-07 22:30:24 +02:00
|
|
|
{
|
2012-06-06 08:10:44 +02:00
|
|
|
BLKDBG_EVENT(bs->file, BLKDBG_WRITE_AIO);
|
2011-10-13 22:09:30 +02:00
|
|
|
return bdrv_co_writev(bs->file, sector_num, nb_sectors, qiov);
|
2010-04-07 22:30:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void raw_close(BlockDriverState *bs)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-05-09 16:49:58 +02:00
|
|
|
static int coroutine_fn raw_co_is_allocated(BlockDriverState *bs,
|
|
|
|
int64_t sector_num,
|
|
|
|
int nb_sectors, int *pnum)
|
|
|
|
{
|
|
|
|
return bdrv_co_is_allocated(bs->file, sector_num, nb_sectors, pnum);
|
|
|
|
}
|
|
|
|
|
2010-04-07 22:30:24 +02:00
|
|
|
static int64_t raw_getlength(BlockDriverState *bs)
|
|
|
|
{
|
2010-04-14 14:17:38 +02:00
|
|
|
return bdrv_getlength(bs->file);
|
2010-04-07 22:30:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int raw_truncate(BlockDriverState *bs, int64_t offset)
|
|
|
|
{
|
2010-04-14 14:17:38 +02:00
|
|
|
return bdrv_truncate(bs->file, offset);
|
2010-04-07 22:30:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int raw_probe(const uint8_t *buf, int buf_size, const char *filename)
|
|
|
|
{
|
|
|
|
return 1; /* everything can be opened as raw image */
|
|
|
|
}
|
|
|
|
|
2011-10-17 12:32:14 +02:00
|
|
|
static int coroutine_fn raw_co_discard(BlockDriverState *bs,
|
|
|
|
int64_t sector_num, int nb_sectors)
|
2010-12-16 19:36:31 +01:00
|
|
|
{
|
2011-10-17 12:32:14 +02:00
|
|
|
return bdrv_co_discard(bs->file, sector_num, nb_sectors);
|
2010-12-16 19:36:31 +01:00
|
|
|
}
|
|
|
|
|
2010-04-07 22:30:24 +02:00
|
|
|
static int raw_is_inserted(BlockDriverState *bs)
|
|
|
|
{
|
2010-04-14 14:17:38 +02:00
|
|
|
return bdrv_is_inserted(bs->file);
|
2010-04-07 22:30:24 +02:00
|
|
|
}
|
|
|
|
|
2011-08-03 15:08:07 +02:00
|
|
|
static int raw_media_changed(BlockDriverState *bs)
|
|
|
|
{
|
|
|
|
return bdrv_media_changed(bs->file);
|
|
|
|
}
|
|
|
|
|
2012-02-03 19:24:53 +01:00
|
|
|
static void raw_eject(BlockDriverState *bs, bool eject_flag)
|
2010-04-07 22:30:24 +02:00
|
|
|
{
|
2011-07-20 18:23:42 +02:00
|
|
|
bdrv_eject(bs->file, eject_flag);
|
2010-04-07 22:30:24 +02:00
|
|
|
}
|
|
|
|
|
2011-09-06 18:58:47 +02:00
|
|
|
static void raw_lock_medium(BlockDriverState *bs, bool locked)
|
2010-04-07 22:30:24 +02:00
|
|
|
{
|
2011-09-06 18:58:47 +02:00
|
|
|
bdrv_lock_medium(bs->file, locked);
|
2010-04-07 22:30:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int raw_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
|
|
|
|
{
|
2010-04-14 14:17:38 +02:00
|
|
|
return bdrv_ioctl(bs->file, req, buf);
|
2010-04-07 22:30:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static BlockDriverAIOCB *raw_aio_ioctl(BlockDriverState *bs,
|
|
|
|
unsigned long int req, void *buf,
|
|
|
|
BlockDriverCompletionFunc *cb, void *opaque)
|
|
|
|
{
|
2010-04-14 14:17:38 +02:00
|
|
|
return bdrv_aio_ioctl(bs->file, req, buf, cb, opaque);
|
2010-04-07 22:30:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int raw_create(const char *filename, QEMUOptionParameter *options)
|
|
|
|
{
|
|
|
|
return bdrv_create_file(filename, options);
|
|
|
|
}
|
|
|
|
|
|
|
|
static QEMUOptionParameter raw_create_options[] = {
|
|
|
|
{
|
|
|
|
.name = BLOCK_OPT_SIZE,
|
|
|
|
.type = OPT_SIZE,
|
|
|
|
.help = "Virtual disk size"
|
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
2010-07-28 11:26:29 +02:00
|
|
|
static int raw_has_zero_init(BlockDriverState *bs)
|
|
|
|
{
|
|
|
|
return bdrv_has_zero_init(bs->file);
|
|
|
|
}
|
|
|
|
|
2010-04-07 22:30:24 +02:00
|
|
|
static BlockDriver bdrv_raw = {
|
|
|
|
.format_name = "raw",
|
|
|
|
|
2011-08-21 05:09:37 +02:00
|
|
|
/* It's really 0, but we need to make g_malloc() happy */
|
2010-04-14 14:17:38 +02:00
|
|
|
.instance_size = 1,
|
2010-04-07 22:30:24 +02:00
|
|
|
|
|
|
|
.bdrv_open = raw_open,
|
|
|
|
.bdrv_close = raw_close,
|
2011-10-17 12:32:14 +02:00
|
|
|
|
2012-09-20 21:13:26 +02:00
|
|
|
.bdrv_reopen_prepare = raw_reopen_prepare,
|
|
|
|
|
2011-11-10 17:25:44 +01:00
|
|
|
.bdrv_co_readv = raw_co_readv,
|
|
|
|
.bdrv_co_writev = raw_co_writev,
|
2012-05-09 16:49:58 +02:00
|
|
|
.bdrv_co_is_allocated = raw_co_is_allocated,
|
2011-11-10 17:25:44 +01:00
|
|
|
.bdrv_co_discard = raw_co_discard,
|
2011-10-17 12:32:14 +02:00
|
|
|
|
2010-04-07 22:30:24 +02:00
|
|
|
.bdrv_probe = raw_probe,
|
|
|
|
.bdrv_getlength = raw_getlength,
|
|
|
|
.bdrv_truncate = raw_truncate,
|
|
|
|
|
|
|
|
.bdrv_is_inserted = raw_is_inserted,
|
2011-08-03 15:08:07 +02:00
|
|
|
.bdrv_media_changed = raw_media_changed,
|
2010-04-07 22:30:24 +02:00
|
|
|
.bdrv_eject = raw_eject,
|
2011-09-06 18:58:47 +02:00
|
|
|
.bdrv_lock_medium = raw_lock_medium,
|
2011-08-03 15:08:07 +02:00
|
|
|
|
2010-04-07 22:30:24 +02:00
|
|
|
.bdrv_ioctl = raw_ioctl,
|
|
|
|
.bdrv_aio_ioctl = raw_aio_ioctl,
|
|
|
|
|
|
|
|
.bdrv_create = raw_create,
|
|
|
|
.create_options = raw_create_options,
|
2010-07-28 11:26:29 +02:00
|
|
|
.bdrv_has_zero_init = raw_has_zero_init,
|
2010-04-07 22:30:24 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static void bdrv_raw_init(void)
|
|
|
|
{
|
|
|
|
bdrv_register(&bdrv_raw);
|
|
|
|
}
|
|
|
|
|
|
|
|
block_init(bdrv_raw_init);
|