2 #include "qemu-common.h"
3 #include "block/block_int.h"
4 #include "qemu/module.h"
6 static int raw_open(BlockDriverState
*bs
, QDict
*options
, int flags
)
12 /* We have nothing to do for raw reopen, stubs just return
14 static int raw_reopen_prepare(BDRVReopenState
*state
,
15 BlockReopenQueue
*queue
, Error
**errp
)
20 static int coroutine_fn
raw_co_readv(BlockDriverState
*bs
, int64_t sector_num
,
21 int nb_sectors
, QEMUIOVector
*qiov
)
23 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_AIO
);
24 return bdrv_co_readv(bs
->file
, sector_num
, nb_sectors
, qiov
);
27 static int coroutine_fn
raw_co_writev(BlockDriverState
*bs
, int64_t sector_num
,
28 int nb_sectors
, QEMUIOVector
*qiov
)
30 BLKDBG_EVENT(bs
->file
, BLKDBG_WRITE_AIO
);
31 return bdrv_co_writev(bs
->file
, sector_num
, nb_sectors
, qiov
);
34 static void raw_close(BlockDriverState
*bs
)
38 static int coroutine_fn
raw_co_is_allocated(BlockDriverState
*bs
,
40 int nb_sectors
, int *pnum
)
42 return bdrv_co_is_allocated(bs
->file
, sector_num
, nb_sectors
, pnum
);
45 static int coroutine_fn
raw_co_write_zeroes(BlockDriverState
*bs
,
49 return bdrv_co_write_zeroes(bs
->file
, sector_num
, nb_sectors
);
52 static int64_t raw_getlength(BlockDriverState
*bs
)
54 return bdrv_getlength(bs
->file
);
57 static int raw_truncate(BlockDriverState
*bs
, int64_t offset
)
59 return bdrv_truncate(bs
->file
, offset
);
62 static int raw_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
64 return 1; /* everything can be opened as raw image */
67 static int coroutine_fn
raw_co_discard(BlockDriverState
*bs
,
68 int64_t sector_num
, int nb_sectors
)
70 return bdrv_co_discard(bs
->file
, sector_num
, nb_sectors
);
73 static int raw_is_inserted(BlockDriverState
*bs
)
75 return bdrv_is_inserted(bs
->file
);
78 static int raw_media_changed(BlockDriverState
*bs
)
80 return bdrv_media_changed(bs
->file
);
83 static void raw_eject(BlockDriverState
*bs
, bool eject_flag
)
85 bdrv_eject(bs
->file
, eject_flag
);
88 static void raw_lock_medium(BlockDriverState
*bs
, bool locked
)
90 bdrv_lock_medium(bs
->file
, locked
);
93 static int raw_ioctl(BlockDriverState
*bs
, unsigned long int req
, void *buf
)
95 return bdrv_ioctl(bs
->file
, req
, buf
);
98 static BlockDriverAIOCB
*raw_aio_ioctl(BlockDriverState
*bs
,
99 unsigned long int req
, void *buf
,
100 BlockDriverCompletionFunc
*cb
, void *opaque
)
102 return bdrv_aio_ioctl(bs
->file
, req
, buf
, cb
, opaque
);
105 static int raw_create(const char *filename
, QEMUOptionParameter
*options
)
107 return bdrv_create_file(filename
, options
);
110 static QEMUOptionParameter raw_create_options
[] = {
112 .name
= BLOCK_OPT_SIZE
,
114 .help
= "Virtual disk size"
119 static int raw_has_zero_init(BlockDriverState
*bs
)
121 return bdrv_has_zero_init(bs
->file
);
124 static int raw_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
126 return bdrv_get_info(bs
->file
, bdi
);
129 static BlockDriver bdrv_raw
= {
130 .format_name
= "raw",
132 /* It's really 0, but we need to make g_malloc() happy */
135 .bdrv_open
= raw_open
,
136 .bdrv_close
= raw_close
,
138 .bdrv_reopen_prepare
= raw_reopen_prepare
,
140 .bdrv_co_readv
= raw_co_readv
,
141 .bdrv_co_writev
= raw_co_writev
,
142 .bdrv_co_is_allocated
= raw_co_is_allocated
,
143 .bdrv_co_write_zeroes
= raw_co_write_zeroes
,
144 .bdrv_co_discard
= raw_co_discard
,
146 .bdrv_probe
= raw_probe
,
147 .bdrv_getlength
= raw_getlength
,
148 .bdrv_get_info
= raw_get_info
,
149 .bdrv_truncate
= raw_truncate
,
151 .bdrv_is_inserted
= raw_is_inserted
,
152 .bdrv_media_changed
= raw_media_changed
,
153 .bdrv_eject
= raw_eject
,
154 .bdrv_lock_medium
= raw_lock_medium
,
156 .bdrv_ioctl
= raw_ioctl
,
157 .bdrv_aio_ioctl
= raw_aio_ioctl
,
159 .bdrv_create
= raw_create
,
160 .create_options
= raw_create_options
,
161 .bdrv_has_zero_init
= raw_has_zero_init
,
164 static void bdrv_raw_init(void)
166 bdrv_register(&bdrv_raw
);
169 block_init(bdrv_raw_init
);