]> git.proxmox.com Git - mirror_qemu.git/blame - block/raw.c
Use glib memory allocation and free functions
[mirror_qemu.git] / block / raw.c
CommitLineData
84a12e66
CH
1
2#include "qemu-common.h"
3#include "block_int.h"
4#include "module.h"
5
66f82cee 6static int raw_open(BlockDriverState *bs, int flags)
84a12e66 7{
66f82cee
KW
8 bs->sg = bs->file->sg;
9 return 0;
84a12e66
CH
10}
11
12static int raw_read(BlockDriverState *bs, int64_t sector_num,
13 uint8_t *buf, int nb_sectors)
14{
66f82cee 15 return bdrv_read(bs->file, sector_num, buf, nb_sectors);
84a12e66
CH
16}
17
18static int raw_write(BlockDriverState *bs, int64_t sector_num,
19 const uint8_t *buf, int nb_sectors)
20{
66f82cee 21 return bdrv_write(bs->file, sector_num, buf, nb_sectors);
84a12e66
CH
22}
23
24static BlockDriverAIOCB *raw_aio_readv(BlockDriverState *bs,
25 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
26 BlockDriverCompletionFunc *cb, void *opaque)
27{
66f82cee 28 return bdrv_aio_readv(bs->file, sector_num, qiov, nb_sectors, cb, opaque);
84a12e66
CH
29}
30
31static BlockDriverAIOCB *raw_aio_writev(BlockDriverState *bs,
32 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
33 BlockDriverCompletionFunc *cb, void *opaque)
34{
66f82cee 35 return bdrv_aio_writev(bs->file, sector_num, qiov, nb_sectors, cb, opaque);
84a12e66
CH
36}
37
38static void raw_close(BlockDriverState *bs)
39{
84a12e66
CH
40}
41
205ef796 42static int raw_flush(BlockDriverState *bs)
84a12e66 43{
205ef796 44 return bdrv_flush(bs->file);
84a12e66
CH
45}
46
47static BlockDriverAIOCB *raw_aio_flush(BlockDriverState *bs,
48 BlockDriverCompletionFunc *cb, void *opaque)
49{
66f82cee 50 return bdrv_aio_flush(bs->file, cb, opaque);
84a12e66
CH
51}
52
53static int64_t raw_getlength(BlockDriverState *bs)
54{
66f82cee 55 return bdrv_getlength(bs->file);
84a12e66
CH
56}
57
58static int raw_truncate(BlockDriverState *bs, int64_t offset)
59{
66f82cee 60 return bdrv_truncate(bs->file, offset);
84a12e66
CH
61}
62
63static int raw_probe(const uint8_t *buf, int buf_size, const char *filename)
64{
65 return 1; /* everything can be opened as raw image */
66}
67
bb8bf76f
CH
68static int raw_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors)
69{
70 return bdrv_discard(bs->file, sector_num, nb_sectors);
71}
72
84a12e66
CH
73static int raw_is_inserted(BlockDriverState *bs)
74{
66f82cee 75 return bdrv_is_inserted(bs->file);
84a12e66
CH
76}
77
822e1cd1 78static void raw_eject(BlockDriverState *bs, int eject_flag)
84a12e66 79{
822e1cd1 80 bdrv_eject(bs->file, eject_flag);
84a12e66
CH
81}
82
7bf37fed 83static void raw_set_locked(BlockDriverState *bs, int locked)
84a12e66 84{
66f82cee 85 bdrv_set_locked(bs->file, locked);
84a12e66
CH
86}
87
88static int raw_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
89{
66f82cee 90 return bdrv_ioctl(bs->file, req, buf);
84a12e66
CH
91}
92
93static BlockDriverAIOCB *raw_aio_ioctl(BlockDriverState *bs,
94 unsigned long int req, void *buf,
95 BlockDriverCompletionFunc *cb, void *opaque)
96{
66f82cee 97 return bdrv_aio_ioctl(bs->file, req, buf, cb, opaque);
84a12e66
CH
98}
99
100static int raw_create(const char *filename, QEMUOptionParameter *options)
101{
102 return bdrv_create_file(filename, options);
103}
104
105static QEMUOptionParameter raw_create_options[] = {
106 {
107 .name = BLOCK_OPT_SIZE,
108 .type = OPT_SIZE,
109 .help = "Virtual disk size"
110 },
111 { NULL }
112};
113
336c1c12
KW
114static int raw_has_zero_init(BlockDriverState *bs)
115{
116 return bdrv_has_zero_init(bs->file);
117}
118
84a12e66
CH
119static BlockDriver bdrv_raw = {
120 .format_name = "raw",
121
7267c094 122 /* It's really 0, but we need to make g_malloc() happy */
66f82cee 123 .instance_size = 1,
84a12e66
CH
124
125 .bdrv_open = raw_open,
126 .bdrv_close = raw_close,
127 .bdrv_read = raw_read,
128 .bdrv_write = raw_write,
129 .bdrv_flush = raw_flush,
130 .bdrv_probe = raw_probe,
131 .bdrv_getlength = raw_getlength,
132 .bdrv_truncate = raw_truncate,
133
134 .bdrv_aio_readv = raw_aio_readv,
135 .bdrv_aio_writev = raw_aio_writev,
136 .bdrv_aio_flush = raw_aio_flush,
bb8bf76f 137 .bdrv_discard = raw_discard,
84a12e66
CH
138
139 .bdrv_is_inserted = raw_is_inserted,
140 .bdrv_eject = raw_eject,
141 .bdrv_set_locked = raw_set_locked,
142 .bdrv_ioctl = raw_ioctl,
143 .bdrv_aio_ioctl = raw_aio_ioctl,
144
145 .bdrv_create = raw_create,
146 .create_options = raw_create_options,
336c1c12 147 .bdrv_has_zero_init = raw_has_zero_init,
84a12e66
CH
148};
149
150static void bdrv_raw_init(void)
151{
152 bdrv_register(&bdrv_raw);
153}
154
155block_init(bdrv_raw_init);