]> git.proxmox.com Git - mirror_qemu.git/blame - block/cloop.c
target-i386: add Skylake-Client cpu model
[mirror_qemu.git] / block / cloop.c
CommitLineData
3c56521b 1/*
585d0ed9 2 * QEMU Block driver for CLOOP images
5fafdf24 3 *
3c56521b 4 * Copyright (c) 2004 Johannes E. Schindelin
5fafdf24 5 *
3c56521b
FB
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
80c71a24 24#include "qemu/osdep.h"
da34e65c 25#include "qapi/error.h"
faf07963 26#include "qemu-common.h"
737e150e 27#include "block/block_int.h"
1de7afc9 28#include "qemu/module.h"
58369e22 29#include "qemu/bswap.h"
3c56521b
FB
30#include <zlib.h>
31
d65f97a8
SH
32/* Maximum compressed block size */
33#define MAX_BLOCK_SIZE (64 * 1024 * 1024)
34
3c56521b 35typedef struct BDRVCloopState {
848c66e8 36 CoMutex lock;
3c56521b
FB
37 uint32_t block_size;
38 uint32_t n_blocks;
5b47b7c3 39 uint64_t *offsets;
3c56521b
FB
40 uint32_t sectors_per_block;
41 uint32_t current_block;
28a5c9c8
FB
42 uint8_t *compressed_block;
43 uint8_t *uncompressed_block;
3c56521b
FB
44 z_stream zstream;
45} BDRVCloopState;
46
47static int cloop_probe(const uint8_t *buf, int buf_size, const char *filename)
48{
5b47b7c3
DXW
49 const char *magic_version_2_0 = "#!/bin/sh\n"
50 "#V2.0 Format\n"
51 "modprobe cloop file=$0 && mount -r -t iso9660 /dev/cloop $1\n";
52 int length = strlen(magic_version_2_0);
53 if (length > buf_size) {
54 length = buf_size;
55 }
56 if (!memcmp(magic_version_2_0, buf, length)) {
57 return 2;
58 }
3c56521b
FB
59 return 0;
60}
61
015a1036
HR
62static int cloop_open(BlockDriverState *bs, QDict *options, int flags,
63 Error **errp)
3c56521b
FB
64{
65 BDRVCloopState *s = bs->opaque;
5b47b7c3 66 uint32_t offsets_size, max_compressed_block_size = 1, i;
1a60657f 67 int ret;
3c56521b 68
3c56521b 69 bs->read_only = 1;
5cd23081 70 bs->request_alignment = BDRV_SECTOR_SIZE; /* No sub-sector I/O supported */
3c56521b
FB
71
72 /* read header */
9a4f4c31 73 ret = bdrv_pread(bs->file->bs, 128, &s->block_size, 4);
1a60657f
KW
74 if (ret < 0) {
75 return ret;
3c56521b 76 }
c94304be 77 s->block_size = be32_to_cpu(s->block_size);
d65f97a8 78 if (s->block_size % 512) {
370e6816 79 error_setg(errp, "block_size %" PRIu32 " must be a multiple of 512",
d65f97a8
SH
80 s->block_size);
81 return -EINVAL;
82 }
83 if (s->block_size == 0) {
84 error_setg(errp, "block_size cannot be zero");
85 return -EINVAL;
86 }
87
88 /* cloop's create_compressed_fs.c warns about block sizes beyond 256 KB but
89 * we can accept more. Prevent ridiculous values like 4 GB - 1 since we
90 * need a buffer this big.
91 */
92 if (s->block_size > MAX_BLOCK_SIZE) {
370e6816 93 error_setg(errp, "block_size %" PRIu32 " must be %u MB or less",
d65f97a8
SH
94 s->block_size,
95 MAX_BLOCK_SIZE / (1024 * 1024));
96 return -EINVAL;
97 }
c94304be 98
9a4f4c31 99 ret = bdrv_pread(bs->file->bs, 128 + 4, &s->n_blocks, 4);
1a60657f
KW
100 if (ret < 0) {
101 return ret;
c94304be
CH
102 }
103 s->n_blocks = be32_to_cpu(s->n_blocks);
3c56521b
FB
104
105 /* read offsets */
42d43d35 106 if (s->n_blocks > (UINT32_MAX - 1) / sizeof(uint64_t)) {
509a41ba 107 /* Prevent integer overflow */
370e6816 108 error_setg(errp, "n_blocks %" PRIu32 " must be %zu or less",
509a41ba 109 s->n_blocks,
42d43d35 110 (UINT32_MAX - 1) / sizeof(uint64_t));
509a41ba
SH
111 return -EINVAL;
112 }
42d43d35 113 offsets_size = (s->n_blocks + 1) * sizeof(uint64_t);
7b103b36
SH
114 if (offsets_size > 512 * 1024 * 1024) {
115 /* Prevent ridiculous offsets_size which causes memory allocation to
116 * fail or overflows bdrv_pread() size. In practice the 512 MB
117 * offsets[] limit supports 16 TB images at 256 KB block size.
118 */
119 error_setg(errp, "image requires too many offsets, "
120 "try increasing block size");
121 return -EINVAL;
122 }
4ae7a52e
KW
123
124 s->offsets = g_try_malloc(offsets_size);
125 if (s->offsets == NULL) {
126 error_setg(errp, "Could not allocate offsets table");
127 return -ENOMEM;
128 }
1a60657f 129
9a4f4c31 130 ret = bdrv_pread(bs->file->bs, 128 + 4 + 4, s->offsets, offsets_size);
1a60657f
KW
131 if (ret < 0) {
132 goto fail;
c94304be 133 }
1a60657f 134
42d43d35 135 for (i = 0; i < s->n_blocks + 1; i++) {
f56b9bc3
SH
136 uint64_t size;
137
5b47b7c3 138 s->offsets[i] = be64_to_cpu(s->offsets[i]);
f56b9bc3
SH
139 if (i == 0) {
140 continue;
141 }
142
143 if (s->offsets[i] < s->offsets[i - 1]) {
144 error_setg(errp, "offsets not monotonically increasing at "
370e6816 145 "index %" PRIu32 ", image file is corrupt", i);
f56b9bc3
SH
146 ret = -EINVAL;
147 goto fail;
148 }
149
150 size = s->offsets[i] - s->offsets[i - 1];
151
152 /* Compressed blocks should be smaller than the uncompressed block size
153 * but maybe compression performed poorly so the compressed block is
154 * actually bigger. Clamp down on unrealistic values to prevent
155 * ridiculous s->compressed_block allocation.
156 */
157 if (size > 2 * MAX_BLOCK_SIZE) {
370e6816
SH
158 error_setg(errp, "invalid compressed block size at index %" PRIu32
159 ", image file is corrupt", i);
f56b9bc3
SH
160 ret = -EINVAL;
161 goto fail;
162 }
163
164 if (size > max_compressed_block_size) {
165 max_compressed_block_size = size;
5b47b7c3 166 }
3c56521b
FB
167 }
168
169 /* initialize zlib engine */
4ae7a52e
KW
170 s->compressed_block = g_try_malloc(max_compressed_block_size + 1);
171 if (s->compressed_block == NULL) {
172 error_setg(errp, "Could not allocate compressed_block");
173 ret = -ENOMEM;
174 goto fail;
175 }
176
177 s->uncompressed_block = g_try_malloc(s->block_size);
178 if (s->uncompressed_block == NULL) {
179 error_setg(errp, "Could not allocate uncompressed_block");
180 ret = -ENOMEM;
181 goto fail;
182 }
183
5b47b7c3 184 if (inflateInit(&s->zstream) != Z_OK) {
1a60657f
KW
185 ret = -EINVAL;
186 goto fail;
5b47b7c3
DXW
187 }
188 s->current_block = s->n_blocks;
3b46e624 189
3c56521b 190 s->sectors_per_block = s->block_size/512;
5b47b7c3 191 bs->total_sectors = s->n_blocks * s->sectors_per_block;
848c66e8 192 qemu_co_mutex_init(&s->lock);
3c56521b 193 return 0;
c94304be 194
1a60657f
KW
195fail:
196 g_free(s->offsets);
197 g_free(s->compressed_block);
198 g_free(s->uncompressed_block);
199 return ret;
3c56521b
FB
200}
201
20be49e4 202static inline int cloop_read_block(BlockDriverState *bs, int block_num)
3c56521b 203{
20be49e4
CH
204 BDRVCloopState *s = bs->opaque;
205
5b47b7c3
DXW
206 if (s->current_block != block_num) {
207 int ret;
208 uint32_t bytes = s->offsets[block_num + 1] - s->offsets[block_num];
3b46e624 209
9a4f4c31
KW
210 ret = bdrv_pread(bs->file->bs, s->offsets[block_num],
211 s->compressed_block, bytes);
5b47b7c3 212 if (ret != bytes) {
3c56521b 213 return -1;
5b47b7c3
DXW
214 }
215
216 s->zstream.next_in = s->compressed_block;
217 s->zstream.avail_in = bytes;
218 s->zstream.next_out = s->uncompressed_block;
219 s->zstream.avail_out = s->block_size;
220 ret = inflateReset(&s->zstream);
221 if (ret != Z_OK) {
222 return -1;
223 }
224 ret = inflate(&s->zstream, Z_FINISH);
225 if (ret != Z_STREAM_END || s->zstream.total_out != s->block_size) {
226 return -1;
227 }
5fafdf24 228
5b47b7c3 229 s->current_block = block_num;
3c56521b
FB
230 }
231 return 0;
232}
233
5cd23081
KW
234static int coroutine_fn
235cloop_co_preadv(BlockDriverState *bs, uint64_t offset, uint64_t bytes,
236 QEMUIOVector *qiov, int flags)
3c56521b
FB
237{
238 BDRVCloopState *s = bs->opaque;
5cd23081
KW
239 uint64_t sector_num = offset >> BDRV_SECTOR_BITS;
240 int nb_sectors = bytes >> BDRV_SECTOR_BITS;
241 int ret, i;
242
243 assert((offset & (BDRV_SECTOR_SIZE - 1)) == 0);
244 assert((bytes & (BDRV_SECTOR_SIZE - 1)) == 0);
245
246 qemu_co_mutex_lock(&s->lock);
3c56521b 247
5b47b7c3 248 for (i = 0; i < nb_sectors; i++) {
5cd23081 249 void *data;
5b47b7c3
DXW
250 uint32_t sector_offset_in_block =
251 ((sector_num + i) % s->sectors_per_block),
252 block_num = (sector_num + i) / s->sectors_per_block;
253 if (cloop_read_block(bs, block_num) != 0) {
5cd23081
KW
254 ret = -EIO;
255 goto fail;
5b47b7c3 256 }
5cd23081
KW
257
258 data = s->uncompressed_block + sector_offset_in_block * 512;
259 qemu_iovec_from_buf(qiov, i * 512, data, 512);
3c56521b 260 }
3c56521b 261
5cd23081
KW
262 ret = 0;
263fail:
2914caa0 264 qemu_co_mutex_unlock(&s->lock);
5cd23081 265
2914caa0
PB
266 return ret;
267}
268
3c56521b
FB
269static void cloop_close(BlockDriverState *bs)
270{
271 BDRVCloopState *s = bs->opaque;
42d43d35 272 g_free(s->offsets);
756f51e4
DXW
273 g_free(s->compressed_block);
274 g_free(s->uncompressed_block);
3c56521b
FB
275 inflateEnd(&s->zstream);
276}
277
5efa9d5a 278static BlockDriver bdrv_cloop = {
5b47b7c3
DXW
279 .format_name = "cloop",
280 .instance_size = sizeof(BDRVCloopState),
281 .bdrv_probe = cloop_probe,
282 .bdrv_open = cloop_open,
5cd23081 283 .bdrv_co_preadv = cloop_co_preadv,
5b47b7c3 284 .bdrv_close = cloop_close,
3c56521b 285};
5efa9d5a
AL
286
287static void bdrv_cloop_init(void)
288{
289 bdrv_register(&bdrv_cloop);
290}
291
292block_init(bdrv_cloop_init);