]>
Commit | Line | Data |
---|---|---|
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 | 35 | typedef 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 | ||
47 | static 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 |
62 | static 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 | |
4e4bf5c4 KW |
69 | bs->file = bdrv_open_child(NULL, options, "file", bs, &child_file, |
70 | false, errp); | |
71 | if (!bs->file) { | |
72 | return -EINVAL; | |
73 | } | |
74 | ||
54115412 | 75 | bs->read_only = true; |
3c56521b FB |
76 | |
77 | /* read header */ | |
cf2ab8fc | 78 | ret = bdrv_pread(bs->file, 128, &s->block_size, 4); |
1a60657f KW |
79 | if (ret < 0) { |
80 | return ret; | |
3c56521b | 81 | } |
c94304be | 82 | s->block_size = be32_to_cpu(s->block_size); |
d65f97a8 | 83 | if (s->block_size % 512) { |
370e6816 | 84 | error_setg(errp, "block_size %" PRIu32 " must be a multiple of 512", |
d65f97a8 SH |
85 | s->block_size); |
86 | return -EINVAL; | |
87 | } | |
88 | if (s->block_size == 0) { | |
89 | error_setg(errp, "block_size cannot be zero"); | |
90 | return -EINVAL; | |
91 | } | |
92 | ||
93 | /* cloop's create_compressed_fs.c warns about block sizes beyond 256 KB but | |
94 | * we can accept more. Prevent ridiculous values like 4 GB - 1 since we | |
95 | * need a buffer this big. | |
96 | */ | |
97 | if (s->block_size > MAX_BLOCK_SIZE) { | |
370e6816 | 98 | error_setg(errp, "block_size %" PRIu32 " must be %u MB or less", |
d65f97a8 SH |
99 | s->block_size, |
100 | MAX_BLOCK_SIZE / (1024 * 1024)); | |
101 | return -EINVAL; | |
102 | } | |
c94304be | 103 | |
cf2ab8fc | 104 | ret = bdrv_pread(bs->file, 128 + 4, &s->n_blocks, 4); |
1a60657f KW |
105 | if (ret < 0) { |
106 | return ret; | |
c94304be CH |
107 | } |
108 | s->n_blocks = be32_to_cpu(s->n_blocks); | |
3c56521b FB |
109 | |
110 | /* read offsets */ | |
42d43d35 | 111 | if (s->n_blocks > (UINT32_MAX - 1) / sizeof(uint64_t)) { |
509a41ba | 112 | /* Prevent integer overflow */ |
370e6816 | 113 | error_setg(errp, "n_blocks %" PRIu32 " must be %zu or less", |
509a41ba | 114 | s->n_blocks, |
42d43d35 | 115 | (UINT32_MAX - 1) / sizeof(uint64_t)); |
509a41ba SH |
116 | return -EINVAL; |
117 | } | |
42d43d35 | 118 | offsets_size = (s->n_blocks + 1) * sizeof(uint64_t); |
7b103b36 SH |
119 | if (offsets_size > 512 * 1024 * 1024) { |
120 | /* Prevent ridiculous offsets_size which causes memory allocation to | |
121 | * fail or overflows bdrv_pread() size. In practice the 512 MB | |
122 | * offsets[] limit supports 16 TB images at 256 KB block size. | |
123 | */ | |
124 | error_setg(errp, "image requires too many offsets, " | |
125 | "try increasing block size"); | |
126 | return -EINVAL; | |
127 | } | |
4ae7a52e KW |
128 | |
129 | s->offsets = g_try_malloc(offsets_size); | |
130 | if (s->offsets == NULL) { | |
131 | error_setg(errp, "Could not allocate offsets table"); | |
132 | return -ENOMEM; | |
133 | } | |
1a60657f | 134 | |
cf2ab8fc | 135 | ret = bdrv_pread(bs->file, 128 + 4 + 4, s->offsets, offsets_size); |
1a60657f KW |
136 | if (ret < 0) { |
137 | goto fail; | |
c94304be | 138 | } |
1a60657f | 139 | |
42d43d35 | 140 | for (i = 0; i < s->n_blocks + 1; i++) { |
f56b9bc3 SH |
141 | uint64_t size; |
142 | ||
5b47b7c3 | 143 | s->offsets[i] = be64_to_cpu(s->offsets[i]); |
f56b9bc3 SH |
144 | if (i == 0) { |
145 | continue; | |
146 | } | |
147 | ||
148 | if (s->offsets[i] < s->offsets[i - 1]) { | |
149 | error_setg(errp, "offsets not monotonically increasing at " | |
370e6816 | 150 | "index %" PRIu32 ", image file is corrupt", i); |
f56b9bc3 SH |
151 | ret = -EINVAL; |
152 | goto fail; | |
153 | } | |
154 | ||
155 | size = s->offsets[i] - s->offsets[i - 1]; | |
156 | ||
157 | /* Compressed blocks should be smaller than the uncompressed block size | |
158 | * but maybe compression performed poorly so the compressed block is | |
159 | * actually bigger. Clamp down on unrealistic values to prevent | |
160 | * ridiculous s->compressed_block allocation. | |
161 | */ | |
162 | if (size > 2 * MAX_BLOCK_SIZE) { | |
370e6816 SH |
163 | error_setg(errp, "invalid compressed block size at index %" PRIu32 |
164 | ", image file is corrupt", i); | |
f56b9bc3 SH |
165 | ret = -EINVAL; |
166 | goto fail; | |
167 | } | |
168 | ||
169 | if (size > max_compressed_block_size) { | |
170 | max_compressed_block_size = size; | |
5b47b7c3 | 171 | } |
3c56521b FB |
172 | } |
173 | ||
174 | /* initialize zlib engine */ | |
4ae7a52e KW |
175 | s->compressed_block = g_try_malloc(max_compressed_block_size + 1); |
176 | if (s->compressed_block == NULL) { | |
177 | error_setg(errp, "Could not allocate compressed_block"); | |
178 | ret = -ENOMEM; | |
179 | goto fail; | |
180 | } | |
181 | ||
182 | s->uncompressed_block = g_try_malloc(s->block_size); | |
183 | if (s->uncompressed_block == NULL) { | |
184 | error_setg(errp, "Could not allocate uncompressed_block"); | |
185 | ret = -ENOMEM; | |
186 | goto fail; | |
187 | } | |
188 | ||
5b47b7c3 | 189 | if (inflateInit(&s->zstream) != Z_OK) { |
1a60657f KW |
190 | ret = -EINVAL; |
191 | goto fail; | |
5b47b7c3 DXW |
192 | } |
193 | s->current_block = s->n_blocks; | |
3b46e624 | 194 | |
3c56521b | 195 | s->sectors_per_block = s->block_size/512; |
5b47b7c3 | 196 | bs->total_sectors = s->n_blocks * s->sectors_per_block; |
848c66e8 | 197 | qemu_co_mutex_init(&s->lock); |
3c56521b | 198 | return 0; |
c94304be | 199 | |
1a60657f KW |
200 | fail: |
201 | g_free(s->offsets); | |
202 | g_free(s->compressed_block); | |
203 | g_free(s->uncompressed_block); | |
204 | return ret; | |
3c56521b FB |
205 | } |
206 | ||
a6506481 EB |
207 | static void cloop_refresh_limits(BlockDriverState *bs, Error **errp) |
208 | { | |
a5b8dd2c | 209 | bs->bl.request_alignment = BDRV_SECTOR_SIZE; /* No sub-sector I/O */ |
a6506481 EB |
210 | } |
211 | ||
20be49e4 | 212 | static inline int cloop_read_block(BlockDriverState *bs, int block_num) |
3c56521b | 213 | { |
20be49e4 CH |
214 | BDRVCloopState *s = bs->opaque; |
215 | ||
5b47b7c3 DXW |
216 | if (s->current_block != block_num) { |
217 | int ret; | |
218 | uint32_t bytes = s->offsets[block_num + 1] - s->offsets[block_num]; | |
3b46e624 | 219 | |
cf2ab8fc | 220 | ret = bdrv_pread(bs->file, s->offsets[block_num], |
9a4f4c31 | 221 | s->compressed_block, bytes); |
5b47b7c3 | 222 | if (ret != bytes) { |
3c56521b | 223 | return -1; |
5b47b7c3 DXW |
224 | } |
225 | ||
226 | s->zstream.next_in = s->compressed_block; | |
227 | s->zstream.avail_in = bytes; | |
228 | s->zstream.next_out = s->uncompressed_block; | |
229 | s->zstream.avail_out = s->block_size; | |
230 | ret = inflateReset(&s->zstream); | |
231 | if (ret != Z_OK) { | |
232 | return -1; | |
233 | } | |
234 | ret = inflate(&s->zstream, Z_FINISH); | |
235 | if (ret != Z_STREAM_END || s->zstream.total_out != s->block_size) { | |
236 | return -1; | |
237 | } | |
5fafdf24 | 238 | |
5b47b7c3 | 239 | s->current_block = block_num; |
3c56521b FB |
240 | } |
241 | return 0; | |
242 | } | |
243 | ||
5cd23081 KW |
244 | static int coroutine_fn |
245 | cloop_co_preadv(BlockDriverState *bs, uint64_t offset, uint64_t bytes, | |
246 | QEMUIOVector *qiov, int flags) | |
3c56521b FB |
247 | { |
248 | BDRVCloopState *s = bs->opaque; | |
5cd23081 KW |
249 | uint64_t sector_num = offset >> BDRV_SECTOR_BITS; |
250 | int nb_sectors = bytes >> BDRV_SECTOR_BITS; | |
251 | int ret, i; | |
252 | ||
253 | assert((offset & (BDRV_SECTOR_SIZE - 1)) == 0); | |
254 | assert((bytes & (BDRV_SECTOR_SIZE - 1)) == 0); | |
255 | ||
256 | qemu_co_mutex_lock(&s->lock); | |
3c56521b | 257 | |
5b47b7c3 | 258 | for (i = 0; i < nb_sectors; i++) { |
5cd23081 | 259 | void *data; |
5b47b7c3 DXW |
260 | uint32_t sector_offset_in_block = |
261 | ((sector_num + i) % s->sectors_per_block), | |
262 | block_num = (sector_num + i) / s->sectors_per_block; | |
263 | if (cloop_read_block(bs, block_num) != 0) { | |
5cd23081 KW |
264 | ret = -EIO; |
265 | goto fail; | |
5b47b7c3 | 266 | } |
5cd23081 KW |
267 | |
268 | data = s->uncompressed_block + sector_offset_in_block * 512; | |
269 | qemu_iovec_from_buf(qiov, i * 512, data, 512); | |
3c56521b | 270 | } |
3c56521b | 271 | |
5cd23081 KW |
272 | ret = 0; |
273 | fail: | |
2914caa0 | 274 | qemu_co_mutex_unlock(&s->lock); |
5cd23081 | 275 | |
2914caa0 PB |
276 | return ret; |
277 | } | |
278 | ||
3c56521b FB |
279 | static void cloop_close(BlockDriverState *bs) |
280 | { | |
281 | BDRVCloopState *s = bs->opaque; | |
42d43d35 | 282 | g_free(s->offsets); |
756f51e4 DXW |
283 | g_free(s->compressed_block); |
284 | g_free(s->uncompressed_block); | |
3c56521b FB |
285 | inflateEnd(&s->zstream); |
286 | } | |
287 | ||
5efa9d5a | 288 | static BlockDriver bdrv_cloop = { |
5b47b7c3 DXW |
289 | .format_name = "cloop", |
290 | .instance_size = sizeof(BDRVCloopState), | |
291 | .bdrv_probe = cloop_probe, | |
292 | .bdrv_open = cloop_open, | |
a6506481 | 293 | .bdrv_refresh_limits = cloop_refresh_limits, |
5cd23081 | 294 | .bdrv_co_preadv = cloop_co_preadv, |
5b47b7c3 | 295 | .bdrv_close = cloop_close, |
3c56521b | 296 | }; |
5efa9d5a AL |
297 | |
298 | static void bdrv_cloop_init(void) | |
299 | { | |
300 | bdrv_register(&bdrv_cloop); | |
301 | } | |
302 | ||
303 | block_init(bdrv_cloop_init); |