bochs.c 7.0 KB
Newer Older
1 2 3
/*
 * Block driver for the various disk image formats used by Bochs
 * Currently only for "growing" type in read-only mode
4
 *
5
 * Copyright (c) 2005 Alex Beregszaszi
6
 *
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 * 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.
 */
P
pbrook 已提交
25
#include "qemu-common.h"
26
#include "block/block_int.h"
27
#include "module.h"
28 29 30 31

/**************************************************************/

#define HEADER_MAGIC "Bochs Virtual HD Image"
32 33
#define HEADER_VERSION 0x00020000
#define HEADER_V1 0x00010000
34 35 36 37 38 39 40 41
#define HEADER_SIZE 512

#define REDOLOG_TYPE "Redolog"
#define GROWING_TYPE "Growing"

// not allocated: 0xffffffff

// always little-endian
42
struct bochs_header_v1 {
43 44 45 46 47
    char magic[32]; // "Bochs Virtual HD Image"
    char type[16]; // "Redolog"
    char subtype[16]; // "Undoable" / "Volatile" / "Growing"
    uint32_t version;
    uint32_t header; // size of header
48

49 50 51 52 53 54 55 56 57 58 59 60
    union {
	struct {
	    uint32_t catalog; // num of entries
	    uint32_t bitmap; // bitmap size
	    uint32_t extent; // extent size
	    uint64_t disk; // disk size
	    char padding[HEADER_SIZE - 64 - 8 - 20];
	} redolog;
	char padding[HEADER_SIZE - 64 - 8];
    } extra;
};

61 62 63 64 65 66 67
// always little-endian
struct bochs_header {
    char magic[32]; // "Bochs Virtual HD Image"
    char type[16]; // "Redolog"
    char subtype[16]; // "Undoable" / "Volatile" / "Growing"
    uint32_t version;
    uint32_t header; // size of header
68

69 70 71 72 73 74 75 76 77 78 79 80 81
    union {
	struct {
	    uint32_t catalog; // num of entries
	    uint32_t bitmap; // bitmap size
	    uint32_t extent; // extent size
	    uint32_t reserved; // for ???
	    uint64_t disk; // disk size
	    char padding[HEADER_SIZE - 64 - 8 - 24];
	} redolog;
	char padding[HEADER_SIZE - 64 - 8];
    } extra;
};

82
typedef struct BDRVBochsState {
83
    CoMutex lock;
84 85
    uint32_t *catalog_bitmap;
    int catalog_size;
86

87
    int data_offset;
88

89 90 91 92 93 94 95 96
    int bitmap_blocks;
    int extent_blocks;
    int extent_size;
} BDRVBochsState;

static int bochs_probe(const uint8_t *buf, int buf_size, const char *filename)
{
    const struct bochs_header *bochs = (const void *)buf;
97

98 99 100 101 102 103
    if (buf_size < HEADER_SIZE)
	return 0;

    if (!strcmp(bochs->magic, HEADER_MAGIC) &&
	!strcmp(bochs->type, REDOLOG_TYPE) &&
	!strcmp(bochs->subtype, GROWING_TYPE) &&
104 105
	((le32_to_cpu(bochs->version) == HEADER_VERSION) ||
	(le32_to_cpu(bochs->version) == HEADER_V1)))
106 107 108 109 110
	return 100;

    return 0;
}

C
Christoph Hellwig 已提交
111
static int bochs_open(BlockDriverState *bs, int flags)
112 113
{
    BDRVBochsState *s = bs->opaque;
C
Christoph Hellwig 已提交
114
    int i;
115
    struct bochs_header bochs;
116
    struct bochs_header_v1 header_v1;
117 118

    bs->read_only = 1; // no write support yet
119

C
Christoph Hellwig 已提交
120
    if (bdrv_pread(bs->file, 0, &bochs, sizeof(bochs)) != sizeof(bochs)) {
121 122 123 124 125 126
        goto fail;
    }

    if (strcmp(bochs.magic, HEADER_MAGIC) ||
        strcmp(bochs.type, REDOLOG_TYPE) ||
        strcmp(bochs.subtype, GROWING_TYPE) ||
127 128
	((le32_to_cpu(bochs.version) != HEADER_VERSION) &&
	(le32_to_cpu(bochs.version) != HEADER_V1))) {
129 130 131
        goto fail;
    }

132 133 134 135 136 137
    if (le32_to_cpu(bochs.version) == HEADER_V1) {
      memcpy(&header_v1, &bochs, sizeof(bochs));
      bs->total_sectors = le64_to_cpu(header_v1.extra.redolog.disk) / 512;
    } else {
      bs->total_sectors = le64_to_cpu(bochs.extra.redolog.disk) / 512;
    }
138 139

    s->catalog_size = le32_to_cpu(bochs.extra.redolog.catalog);
140
    s->catalog_bitmap = g_malloc(s->catalog_size * 4);
C
Christoph Hellwig 已提交
141 142
    if (bdrv_pread(bs->file, le32_to_cpu(bochs.header), s->catalog_bitmap,
                   s->catalog_size * 4) != s->catalog_size * 4)
143 144 145 146 147 148 149 150
	goto fail;
    for (i = 0; i < s->catalog_size; i++)
	le32_to_cpus(&s->catalog_bitmap[i]);

    s->data_offset = le32_to_cpu(bochs.header) + (s->catalog_size * 4);

    s->bitmap_blocks = 1 + (le32_to_cpu(bochs.extra.redolog.bitmap) - 1) / 512;
    s->extent_blocks = 1 + (le32_to_cpu(bochs.extra.redolog.extent) - 1) / 512;
151

152 153
    s->extent_size = le32_to_cpu(bochs.extra.redolog.extent);

154
    qemu_co_mutex_init(&s->lock);
155 156 157 158 159
    return 0;
 fail:
    return -1;
}

C
Christoph Hellwig 已提交
160
static int64_t seek_to_sector(BlockDriverState *bs, int64_t sector_num)
161 162 163
{
    BDRVBochsState *s = bs->opaque;
    int64_t offset = sector_num * 512;
C
Christoph Hellwig 已提交
164
    int64_t extent_index, extent_offset, bitmap_offset;
165 166 167 168 169
    char bitmap_entry;

    // seek to sector
    extent_index = offset / s->extent_size;
    extent_offset = (offset % s->extent_size) / 512;
170

C
Christoph Hellwig 已提交
171 172
    if (s->catalog_bitmap[extent_index] == 0xffffffff) {
	return -1; /* not allocated */
173 174 175 176
    }

    bitmap_offset = s->data_offset + (512 * s->catalog_bitmap[extent_index] *
	(s->extent_blocks + s->bitmap_blocks));
177

C
Christoph Hellwig 已提交
178
    /* read in bitmap for current extent */
C
Christoph Hellwig 已提交
179 180
    if (bdrv_pread(bs->file, bitmap_offset + (extent_offset / 8),
                   &bitmap_entry, 1) != 1) {
181
        return -1;
182 183
    }

C
Christoph Hellwig 已提交
184 185
    if (!((bitmap_entry >> (extent_offset % 8)) & 1)) {
	return -1; /* not allocated */
B
Blue Swirl 已提交
186
    }
187

C
Christoph Hellwig 已提交
188
    return bitmap_offset + (512 * (s->bitmap_blocks + extent_offset));
189 190
}

191
static int bochs_read(BlockDriverState *bs, int64_t sector_num,
192 193 194 195 196
                    uint8_t *buf, int nb_sectors)
{
    int ret;

    while (nb_sectors > 0) {
C
Christoph Hellwig 已提交
197 198
        int64_t block_offset = seek_to_sector(bs, sector_num);
        if (block_offset >= 0) {
C
Christoph Hellwig 已提交
199
            ret = bdrv_pread(bs->file, block_offset, buf, 512);
C
Christoph Hellwig 已提交
200 201 202 203
            if (ret != 512) {
                return -1;
            }
        } else
204 205 206 207 208 209 210 211
            memset(buf, 0, 512);
        nb_sectors--;
        sector_num++;
        buf += 512;
    }
    return 0;
}

212 213 214 215 216 217 218 219 220 221 222
static coroutine_fn int bochs_co_read(BlockDriverState *bs, int64_t sector_num,
                                      uint8_t *buf, int nb_sectors)
{
    int ret;
    BDRVBochsState *s = bs->opaque;
    qemu_co_mutex_lock(&s->lock);
    ret = bochs_read(bs, sector_num, buf, nb_sectors);
    qemu_co_mutex_unlock(&s->lock);
    return ret;
}

223 224 225
static void bochs_close(BlockDriverState *bs)
{
    BDRVBochsState *s = bs->opaque;
226
    g_free(s->catalog_bitmap);
227 228
}

229
static BlockDriver bdrv_bochs = {
230 231 232
    .format_name	= "bochs",
    .instance_size	= sizeof(BDRVBochsState),
    .bdrv_probe		= bochs_probe,
C
Christoph Hellwig 已提交
233
    .bdrv_open		= bochs_open,
234
    .bdrv_read          = bochs_co_read,
235
    .bdrv_close		= bochs_close,
236
};
237 238 239 240 241 242 243

static void bdrv_bochs_init(void)
{
    bdrv_register(&bdrv_bochs);
}

block_init(bdrv_bochs_init);