parallels.c 5.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 * Block driver for Parallels disk image format
 *
 * Copyright (c) 2007 Alex Beregszaszi
 *
 * This code is based on comparing different disk images created by Parallels.
 *
 * 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 已提交
26
#include "qemu-common.h"
27
#include "block/block_int.h"
28
#include "qemu/module.h"
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45

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

#define HEADER_MAGIC "WithoutFreeSpace"
#define HEADER_VERSION 2
#define HEADER_SIZE 64

// always little-endian
struct parallels_header {
    char magic[16]; // "WithoutFreeSpace"
    uint32_t version;
    uint32_t heads;
    uint32_t cylinders;
    uint32_t tracks;
    uint32_t catalog_entries;
    uint32_t nb_sectors;
    char padding[24];
46
} QEMU_PACKED;
47 48

typedef struct BDRVParallelsState {
49
    CoMutex lock;
50 51

    uint32_t *catalog_bitmap;
52
    unsigned int catalog_size;
53

54
    unsigned int tracks;
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
} BDRVParallelsState;

static int parallels_probe(const uint8_t *buf, int buf_size, const char *filename)
{
    const struct parallels_header *ph = (const void *)buf;

    if (buf_size < HEADER_SIZE)
	return 0;

    if (!memcmp(ph->magic, HEADER_MAGIC, 16) &&
	(le32_to_cpu(ph->version) == HEADER_VERSION))
	return 100;

    return 0;
}

M
Max Reitz 已提交
71 72
static int parallels_open(BlockDriverState *bs, QDict *options, int flags,
                          Error **errp)
73 74
{
    BDRVParallelsState *s = bs->opaque;
75
    int i;
76
    struct parallels_header ph;
77
    int ret;
78 79 80

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

81 82
    ret = bdrv_pread(bs->file, 0, &ph, sizeof(ph));
    if (ret < 0) {
83
        goto fail;
84
    }
85 86

    if (memcmp(ph.magic, HEADER_MAGIC, 16) ||
87
        (le32_to_cpu(ph.version) != HEADER_VERSION)) {
P
Paolo Bonzini 已提交
88 89
        error_setg(errp, "Image not in Parallels format");
        ret = -EINVAL;
90 91 92 93 94 95
        goto fail;
    }

    bs->total_sectors = le32_to_cpu(ph.nb_sectors);

    s->tracks = le32_to_cpu(ph.tracks);
96 97 98 99 100
    if (s->tracks == 0) {
        error_setg(errp, "Invalid image: Zero sectors per track");
        ret = -EINVAL;
        goto fail;
    }
101 102

    s->catalog_size = le32_to_cpu(ph.catalog_entries);
103 104 105 106 107
    if (s->catalog_size > INT_MAX / 4) {
        error_setg(errp, "Catalog too large");
        ret = -EFBIG;
        goto fail;
    }
108
    s->catalog_bitmap = g_malloc(s->catalog_size * 4);
109 110 111 112 113 114

    ret = bdrv_pread(bs->file, 64, s->catalog_bitmap, s->catalog_size * 4);
    if (ret < 0) {
        goto fail;
    }

115 116 117
    for (i = 0; i < s->catalog_size; i++)
	le32_to_cpus(&s->catalog_bitmap[i]);

118
    qemu_co_mutex_init(&s->lock);
119
    return 0;
120

121
fail:
122 123
    g_free(s->catalog_bitmap);
    return ret;
124 125
}

C
Christoph Hellwig 已提交
126
static int64_t seek_to_sector(BlockDriverState *bs, int64_t sector_num)
127 128
{
    BDRVParallelsState *s = bs->opaque;
129
    uint32_t index, offset;
130 131 132 133

    index = sector_num / s->tracks;
    offset = sector_num % s->tracks;

C
Christoph Hellwig 已提交
134
    /* not allocated */
135 136
    if ((index > s->catalog_size) || (s->catalog_bitmap[index] == 0))
	return -1;
C
Christoph Hellwig 已提交
137
    return (uint64_t)(s->catalog_bitmap[index] + offset) * 512;
138 139 140 141 142 143
}

static int parallels_read(BlockDriverState *bs, int64_t sector_num,
                    uint8_t *buf, int nb_sectors)
{
    while (nb_sectors > 0) {
C
Christoph Hellwig 已提交
144 145
        int64_t position = seek_to_sector(bs, sector_num);
        if (position >= 0) {
146
            if (bdrv_pread(bs->file, position, buf, 512) != 512)
C
Christoph Hellwig 已提交
147 148
                return -1;
        } else {
149
            memset(buf, 0, 512);
C
Christoph Hellwig 已提交
150
        }
151 152 153 154 155 156 157
        nb_sectors--;
        sector_num++;
        buf += 512;
    }
    return 0;
}

158 159 160 161 162 163 164 165 166 167 168
static coroutine_fn int parallels_co_read(BlockDriverState *bs, int64_t sector_num,
                                          uint8_t *buf, int nb_sectors)
{
    int ret;
    BDRVParallelsState *s = bs->opaque;
    qemu_co_mutex_lock(&s->lock);
    ret = parallels_read(bs, sector_num, buf, nb_sectors);
    qemu_co_mutex_unlock(&s->lock);
    return ret;
}

169 170 171
static void parallels_close(BlockDriverState *bs)
{
    BDRVParallelsState *s = bs->opaque;
172
    g_free(s->catalog_bitmap);
173 174
}

175
static BlockDriver bdrv_parallels = {
176 177 178
    .format_name	= "parallels",
    .instance_size	= sizeof(BDRVParallelsState),
    .bdrv_probe		= parallels_probe,
179
    .bdrv_open		= parallels_open,
180
    .bdrv_read          = parallels_co_read,
181
    .bdrv_close		= parallels_close,
182
};
183 184 185 186 187 188 189

static void bdrv_parallels_init(void)
{
    bdrv_register(&bdrv_parallels);
}

block_init(bdrv_parallels_init);