cloop.c 7.4 KB
Newer Older
B
bellard 已提交
1
/*
2
 * QEMU Block driver for CLOOP images
3
 *
B
bellard 已提交
4
 * Copyright (c) 2004 Johannes E. Schindelin
5
 *
B
bellard 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 * 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 已提交
24
#include "qemu-common.h"
25
#include "block/block_int.h"
26
#include "qemu/module.h"
B
bellard 已提交
27 28
#include <zlib.h>

29 30 31
/* Maximum compressed block size */
#define MAX_BLOCK_SIZE (64 * 1024 * 1024)

B
bellard 已提交
32
typedef struct BDRVCloopState {
33
    CoMutex lock;
B
bellard 已提交
34 35
    uint32_t block_size;
    uint32_t n_blocks;
D
Dong Xu Wang 已提交
36
    uint64_t *offsets;
B
bellard 已提交
37 38
    uint32_t sectors_per_block;
    uint32_t current_block;
B
bellard 已提交
39 40
    uint8_t *compressed_block;
    uint8_t *uncompressed_block;
B
bellard 已提交
41 42 43 44 45
    z_stream zstream;
} BDRVCloopState;

static int cloop_probe(const uint8_t *buf, int buf_size, const char *filename)
{
D
Dong Xu Wang 已提交
46 47 48 49 50 51 52 53 54 55
    const char *magic_version_2_0 = "#!/bin/sh\n"
        "#V2.0 Format\n"
        "modprobe cloop file=$0 && mount -r -t iso9660 /dev/cloop $1\n";
    int length = strlen(magic_version_2_0);
    if (length > buf_size) {
        length = buf_size;
    }
    if (!memcmp(magic_version_2_0, buf, length)) {
        return 2;
    }
B
bellard 已提交
56 57 58
    return 0;
}

M
Max Reitz 已提交
59 60
static int cloop_open(BlockDriverState *bs, QDict *options, int flags,
                      Error **errp)
B
bellard 已提交
61 62
{
    BDRVCloopState *s = bs->opaque;
D
Dong Xu Wang 已提交
63
    uint32_t offsets_size, max_compressed_block_size = 1, i;
64
    int ret;
B
bellard 已提交
65 66 67 68

    bs->read_only = 1;

    /* read header */
69 70 71
    ret = bdrv_pread(bs->file, 128, &s->block_size, 4);
    if (ret < 0) {
        return ret;
B
bellard 已提交
72
    }
C
Christoph Hellwig 已提交
73
    s->block_size = be32_to_cpu(s->block_size);
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
    if (s->block_size % 512) {
        error_setg(errp, "block_size %u must be a multiple of 512",
                   s->block_size);
        return -EINVAL;
    }
    if (s->block_size == 0) {
        error_setg(errp, "block_size cannot be zero");
        return -EINVAL;
    }

    /* cloop's create_compressed_fs.c warns about block sizes beyond 256 KB but
     * we can accept more.  Prevent ridiculous values like 4 GB - 1 since we
     * need a buffer this big.
     */
    if (s->block_size > MAX_BLOCK_SIZE) {
        error_setg(errp, "block_size %u must be %u MB or less",
                   s->block_size,
                   MAX_BLOCK_SIZE / (1024 * 1024));
        return -EINVAL;
    }
C
Christoph Hellwig 已提交
94

95 96 97
    ret = bdrv_pread(bs->file, 128 + 4, &s->n_blocks, 4);
    if (ret < 0) {
        return ret;
C
Christoph Hellwig 已提交
98 99
    }
    s->n_blocks = be32_to_cpu(s->n_blocks);
B
bellard 已提交
100 101

    /* read offsets */
102 103 104 105 106 107 108
    if (s->n_blocks > UINT32_MAX / sizeof(uint64_t)) {
        /* Prevent integer overflow */
        error_setg(errp, "n_blocks %u must be %zu or less",
                   s->n_blocks,
                   UINT32_MAX / sizeof(uint64_t));
        return -EINVAL;
    }
C
Christoph Hellwig 已提交
109
    offsets_size = s->n_blocks * sizeof(uint64_t);
110 111 112 113 114 115 116 117 118
    if (offsets_size > 512 * 1024 * 1024) {
        /* Prevent ridiculous offsets_size which causes memory allocation to
         * fail or overflows bdrv_pread() size.  In practice the 512 MB
         * offsets[] limit supports 16 TB images at 256 KB block size.
         */
        error_setg(errp, "image requires too many offsets, "
                   "try increasing block size");
        return -EINVAL;
    }
119
    s->offsets = g_malloc(offsets_size);
120 121 122 123

    ret = bdrv_pread(bs->file, 128 + 4 + 4, s->offsets, offsets_size);
    if (ret < 0) {
        goto fail;
C
Christoph Hellwig 已提交
124
    }
125

B
bellard 已提交
126
    for(i=0;i<s->n_blocks;i++) {
D
Dong Xu Wang 已提交
127 128 129 130 131 132 133
        s->offsets[i] = be64_to_cpu(s->offsets[i]);
        if (i > 0) {
            uint32_t size = s->offsets[i] - s->offsets[i - 1];
            if (size > max_compressed_block_size) {
                max_compressed_block_size = size;
            }
        }
B
bellard 已提交
134 135 136
    }

    /* initialize zlib engine */
D
Dong Xu Wang 已提交
137
    s->compressed_block = g_malloc(max_compressed_block_size + 1);
138
    s->uncompressed_block = g_malloc(s->block_size);
D
Dong Xu Wang 已提交
139
    if (inflateInit(&s->zstream) != Z_OK) {
140 141
        ret = -EINVAL;
        goto fail;
D
Dong Xu Wang 已提交
142 143
    }
    s->current_block = s->n_blocks;
144

B
bellard 已提交
145
    s->sectors_per_block = s->block_size/512;
D
Dong Xu Wang 已提交
146
    bs->total_sectors = s->n_blocks * s->sectors_per_block;
147
    qemu_co_mutex_init(&s->lock);
B
bellard 已提交
148
    return 0;
C
Christoph Hellwig 已提交
149

150 151 152 153 154
fail:
    g_free(s->offsets);
    g_free(s->compressed_block);
    g_free(s->uncompressed_block);
    return ret;
B
bellard 已提交
155 156
}

C
Christoph Hellwig 已提交
157
static inline int cloop_read_block(BlockDriverState *bs, int block_num)
B
bellard 已提交
158
{
C
Christoph Hellwig 已提交
159 160
    BDRVCloopState *s = bs->opaque;

D
Dong Xu Wang 已提交
161 162 163
    if (s->current_block != block_num) {
        int ret;
        uint32_t bytes = s->offsets[block_num + 1] - s->offsets[block_num];
164

C
Christoph Hellwig 已提交
165 166
        ret = bdrv_pread(bs->file, s->offsets[block_num], s->compressed_block,
                         bytes);
D
Dong Xu Wang 已提交
167
        if (ret != bytes) {
B
bellard 已提交
168
            return -1;
D
Dong Xu Wang 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182
        }

        s->zstream.next_in = s->compressed_block;
        s->zstream.avail_in = bytes;
        s->zstream.next_out = s->uncompressed_block;
        s->zstream.avail_out = s->block_size;
        ret = inflateReset(&s->zstream);
        if (ret != Z_OK) {
            return -1;
        }
        ret = inflate(&s->zstream, Z_FINISH);
        if (ret != Z_STREAM_END || s->zstream.total_out != s->block_size) {
            return -1;
        }
183

D
Dong Xu Wang 已提交
184
        s->current_block = block_num;
B
bellard 已提交
185 186 187 188
    }
    return 0;
}

189
static int cloop_read(BlockDriverState *bs, int64_t sector_num,
B
bellard 已提交
190 191 192 193 194
                    uint8_t *buf, int nb_sectors)
{
    BDRVCloopState *s = bs->opaque;
    int i;

D
Dong Xu Wang 已提交
195 196 197 198 199 200 201 202 203
    for (i = 0; i < nb_sectors; i++) {
        uint32_t sector_offset_in_block =
            ((sector_num + i) % s->sectors_per_block),
            block_num = (sector_num + i) / s->sectors_per_block;
        if (cloop_read_block(bs, block_num) != 0) {
            return -1;
        }
        memcpy(buf + i * 512,
            s->uncompressed_block + sector_offset_in_block * 512, 512);
B
bellard 已提交
204 205 206 207
    }
    return 0;
}

208 209 210 211 212 213 214 215 216 217 218
static coroutine_fn int cloop_co_read(BlockDriverState *bs, int64_t sector_num,
                                      uint8_t *buf, int nb_sectors)
{
    int ret;
    BDRVCloopState *s = bs->opaque;
    qemu_co_mutex_lock(&s->lock);
    ret = cloop_read(bs, sector_num, buf, nb_sectors);
    qemu_co_mutex_unlock(&s->lock);
    return ret;
}

B
bellard 已提交
219 220 221
static void cloop_close(BlockDriverState *bs)
{
    BDRVCloopState *s = bs->opaque;
D
Dong Xu Wang 已提交
222
    if (s->n_blocks > 0) {
223
        g_free(s->offsets);
D
Dong Xu Wang 已提交
224
    }
225 226
    g_free(s->compressed_block);
    g_free(s->uncompressed_block);
B
bellard 已提交
227 228 229
    inflateEnd(&s->zstream);
}

230
static BlockDriver bdrv_cloop = {
D
Dong Xu Wang 已提交
231 232 233 234 235 236
    .format_name    = "cloop",
    .instance_size  = sizeof(BDRVCloopState),
    .bdrv_probe     = cloop_probe,
    .bdrv_open      = cloop_open,
    .bdrv_read      = cloop_co_read,
    .bdrv_close     = cloop_close,
B
bellard 已提交
237
};
238 239 240 241 242 243 244

static void bdrv_cloop_init(void)
{
    bdrv_register(&bdrv_cloop);
}

block_init(bdrv_cloop_init);