Statistics
| Branch: | Revision:

root / block / raw.c @ 7a3f5fe9

History | View | Annotate | Download (4 kB)

1

    
2
#include "qemu-common.h"
3
#include "block_int.h"
4
#include "module.h"
5

    
6
static int raw_open(BlockDriverState *bs, int flags)
7
{
8
    bs->sg = bs->file->sg;
9
    return 0;
10
}
11

    
12
static int raw_read(BlockDriverState *bs, int64_t sector_num,
13
                    uint8_t *buf, int nb_sectors)
14
{
15
    return bdrv_read(bs->file, sector_num, buf, nb_sectors);
16
}
17

    
18
static int raw_write(BlockDriverState *bs, int64_t sector_num,
19
                     const uint8_t *buf, int nb_sectors)
20
{
21
    return bdrv_write(bs->file, sector_num, buf, nb_sectors);
22
}
23

    
24
static BlockDriverAIOCB *raw_aio_readv(BlockDriverState *bs,
25
    int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
26
    BlockDriverCompletionFunc *cb, void *opaque)
27
{
28
    return bdrv_aio_readv(bs->file, sector_num, qiov, nb_sectors, cb, opaque);
29
}
30

    
31
static BlockDriverAIOCB *raw_aio_writev(BlockDriverState *bs,
32
    int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
33
    BlockDriverCompletionFunc *cb, void *opaque)
34
{
35
    return bdrv_aio_writev(bs->file, sector_num, qiov, nb_sectors, cb, opaque);
36
}
37

    
38
static void raw_close(BlockDriverState *bs)
39
{
40
}
41

    
42
static int raw_flush(BlockDriverState *bs)
43
{
44
    return bdrv_flush(bs->file);
45
}
46

    
47
static BlockDriverAIOCB *raw_aio_flush(BlockDriverState *bs,
48
    BlockDriverCompletionFunc *cb, void *opaque)
49
{
50
    return bdrv_aio_flush(bs->file, cb, opaque);
51
}
52

    
53
static int64_t raw_getlength(BlockDriverState *bs)
54
{
55
    return bdrv_getlength(bs->file);
56
}
57

    
58
static int raw_truncate(BlockDriverState *bs, int64_t offset)
59
{
60
    return bdrv_truncate(bs->file, offset);
61
}
62

    
63
static 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

    
68
static 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

    
73
static int raw_is_inserted(BlockDriverState *bs)
74
{
75
    return bdrv_is_inserted(bs->file);
76
}
77

    
78
static int raw_media_changed(BlockDriverState *bs)
79
{
80
    return bdrv_media_changed(bs->file);
81
}
82

    
83
static void raw_eject(BlockDriverState *bs, int eject_flag)
84
{
85
    bdrv_eject(bs->file, eject_flag);
86
}
87

    
88
static void raw_lock_medium(BlockDriverState *bs, bool locked)
89
{
90
    bdrv_lock_medium(bs->file, locked);
91
}
92

    
93
static int raw_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
94
{
95
   return bdrv_ioctl(bs->file, req, buf);
96
}
97

    
98
static BlockDriverAIOCB *raw_aio_ioctl(BlockDriverState *bs,
99
        unsigned long int req, void *buf,
100
        BlockDriverCompletionFunc *cb, void *opaque)
101
{
102
   return bdrv_aio_ioctl(bs->file, req, buf, cb, opaque);
103
}
104

    
105
static int raw_create(const char *filename, QEMUOptionParameter *options)
106
{
107
    return bdrv_create_file(filename, options);
108
}
109

    
110
static QEMUOptionParameter raw_create_options[] = {
111
    {
112
        .name = BLOCK_OPT_SIZE,
113
        .type = OPT_SIZE,
114
        .help = "Virtual disk size"
115
    },
116
    { NULL }
117
};
118

    
119
static int raw_has_zero_init(BlockDriverState *bs)
120
{
121
    return bdrv_has_zero_init(bs->file);
122
}
123

    
124
static BlockDriver bdrv_raw = {
125
    .format_name        = "raw",
126

    
127
    /* It's really 0, but we need to make g_malloc() happy */
128
    .instance_size      = 1,
129

    
130
    .bdrv_open          = raw_open,
131
    .bdrv_close         = raw_close,
132
    .bdrv_read          = raw_read,
133
    .bdrv_write         = raw_write,
134
    .bdrv_flush         = raw_flush,
135
    .bdrv_probe         = raw_probe,
136
    .bdrv_getlength     = raw_getlength,
137
    .bdrv_truncate      = raw_truncate,
138

    
139
    .bdrv_aio_readv     = raw_aio_readv,
140
    .bdrv_aio_writev    = raw_aio_writev,
141
    .bdrv_aio_flush     = raw_aio_flush,
142
    .bdrv_discard       = raw_discard,
143

    
144
    .bdrv_is_inserted   = raw_is_inserted,
145
    .bdrv_media_changed = raw_media_changed,
146
    .bdrv_eject         = raw_eject,
147
    .bdrv_lock_medium   = raw_lock_medium,
148

    
149
    .bdrv_ioctl         = raw_ioctl,
150
    .bdrv_aio_ioctl     = raw_aio_ioctl,
151

    
152
    .bdrv_create        = raw_create,
153
    .create_options     = raw_create_options,
154
    .bdrv_has_zero_init = raw_has_zero_init,
155
};
156

    
157
static void bdrv_raw_init(void)
158
{
159
    bdrv_register(&bdrv_raw);
160
}
161

    
162
block_init(bdrv_raw_init);