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