]> git.proxmox.com Git - qemu.git/blame - block/qcow2-refcount.c
qcow2: Ignore reserved bits in refcount table entries
[qemu.git] / block / qcow2-refcount.c
CommitLineData
f7d0fe02
KW
1/*
2 * Block driver for the QCOW version 2 format
3 *
4 * Copyright (c) 2004-2006 Fabrice Bellard
5 *
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 */
24
25#include "qemu-common.h"
26#include "block_int.h"
27#include "block/qcow2.h"
28
29static int64_t alloc_clusters_noref(BlockDriverState *bs, int64_t size);
92dcb59f 30static int QEMU_WARN_UNUSED_RESULT update_refcount(BlockDriverState *bs,
f7d0fe02
KW
31 int64_t offset, int64_t length,
32 int addend);
33
3b88e52b 34
f7d0fe02
KW
35/*********************************************************/
36/* refcount handling */
37
ed6ccf0f 38int qcow2_refcount_init(BlockDriverState *bs)
f7d0fe02
KW
39{
40 BDRVQcowState *s = bs->opaque;
41 int ret, refcount_table_size2, i;
42
f7d0fe02 43 refcount_table_size2 = s->refcount_table_size * sizeof(uint64_t);
7267c094 44 s->refcount_table = g_malloc(refcount_table_size2);
f7d0fe02 45 if (s->refcount_table_size > 0) {
66f82cee
KW
46 BLKDBG_EVENT(bs->file, BLKDBG_REFTABLE_LOAD);
47 ret = bdrv_pread(bs->file, s->refcount_table_offset,
f7d0fe02
KW
48 s->refcount_table, refcount_table_size2);
49 if (ret != refcount_table_size2)
50 goto fail;
51 for(i = 0; i < s->refcount_table_size; i++)
52 be64_to_cpus(&s->refcount_table[i]);
53 }
54 return 0;
55 fail:
56 return -ENOMEM;
57}
58
ed6ccf0f 59void qcow2_refcount_close(BlockDriverState *bs)
f7d0fe02
KW
60{
61 BDRVQcowState *s = bs->opaque;
7267c094 62 g_free(s->refcount_table);
f7d0fe02
KW
63}
64
65
66static int load_refcount_block(BlockDriverState *bs,
29c1a730
KW
67 int64_t refcount_block_offset,
68 void **refcount_block)
f7d0fe02
KW
69{
70 BDRVQcowState *s = bs->opaque;
71 int ret;
3b88e52b 72
66f82cee 73 BLKDBG_EVENT(bs->file, BLKDBG_REFBLOCK_LOAD);
29c1a730
KW
74 ret = qcow2_cache_get(bs, s->refcount_block_cache, refcount_block_offset,
75 refcount_block);
e14e8ba5 76
29c1a730 77 return ret;
f7d0fe02
KW
78}
79
018faafd
KW
80/*
81 * Returns the refcount of the cluster given by its index. Any non-negative
82 * return value is the refcount of the cluster, negative values are -errno
83 * and indicate an error.
84 */
f7d0fe02
KW
85static int get_refcount(BlockDriverState *bs, int64_t cluster_index)
86{
87 BDRVQcowState *s = bs->opaque;
88 int refcount_table_index, block_index;
89 int64_t refcount_block_offset;
018faafd 90 int ret;
29c1a730
KW
91 uint16_t *refcount_block;
92 uint16_t refcount;
f7d0fe02
KW
93
94 refcount_table_index = cluster_index >> (s->cluster_bits - REFCOUNT_SHIFT);
95 if (refcount_table_index >= s->refcount_table_size)
96 return 0;
97 refcount_block_offset = s->refcount_table[refcount_table_index];
98 if (!refcount_block_offset)
99 return 0;
29c1a730
KW
100
101 ret = qcow2_cache_get(bs, s->refcount_block_cache, refcount_block_offset,
102 (void**) &refcount_block);
103 if (ret < 0) {
104 return ret;
f7d0fe02 105 }
29c1a730 106
f7d0fe02
KW
107 block_index = cluster_index &
108 ((1 << (s->cluster_bits - REFCOUNT_SHIFT)) - 1);
29c1a730
KW
109 refcount = be16_to_cpu(refcount_block[block_index]);
110
111 ret = qcow2_cache_put(bs, s->refcount_block_cache,
112 (void**) &refcount_block);
113 if (ret < 0) {
114 return ret;
115 }
116
117 return refcount;
f7d0fe02
KW
118}
119
05121aed
KW
120/*
121 * Rounds the refcount table size up to avoid growing the table for each single
122 * refcount block that is allocated.
123 */
124static unsigned int next_refcount_table_size(BDRVQcowState *s,
125 unsigned int min_size)
126{
127 unsigned int min_clusters = (min_size >> (s->cluster_bits - 3)) + 1;
128 unsigned int refcount_table_clusters =
129 MAX(1, s->refcount_table_size >> (s->cluster_bits - 3));
130
131 while (min_clusters > refcount_table_clusters) {
132 refcount_table_clusters = (refcount_table_clusters * 3 + 1) / 2;
133 }
134
135 return refcount_table_clusters << (s->cluster_bits - 3);
136}
137
92dcb59f
KW
138
139/* Checks if two offsets are described by the same refcount block */
140static int in_same_refcount_block(BDRVQcowState *s, uint64_t offset_a,
141 uint64_t offset_b)
142{
143 uint64_t block_a = offset_a >> (2 * s->cluster_bits - REFCOUNT_SHIFT);
144 uint64_t block_b = offset_b >> (2 * s->cluster_bits - REFCOUNT_SHIFT);
145
146 return (block_a == block_b);
147}
148
149/*
150 * Loads a refcount block. If it doesn't exist yet, it is allocated first
151 * (including growing the refcount table if needed).
152 *
29c1a730 153 * Returns 0 on success or -errno in error case
92dcb59f 154 */
29c1a730
KW
155static int alloc_refcount_block(BlockDriverState *bs,
156 int64_t cluster_index, uint16_t **refcount_block)
f7d0fe02
KW
157{
158 BDRVQcowState *s = bs->opaque;
92dcb59f
KW
159 unsigned int refcount_table_index;
160 int ret;
161
66f82cee 162 BLKDBG_EVENT(bs->file, BLKDBG_REFBLOCK_ALLOC);
8252278a 163
92dcb59f
KW
164 /* Find the refcount block for the given cluster */
165 refcount_table_index = cluster_index >> (s->cluster_bits - REFCOUNT_SHIFT);
166
167 if (refcount_table_index < s->refcount_table_size) {
168
169 uint64_t refcount_block_offset =
76dc9e0c 170 s->refcount_table[refcount_table_index] & REFT_OFFSET_MASK;
92dcb59f
KW
171
172 /* If it's already there, we're done */
173 if (refcount_block_offset) {
29c1a730
KW
174 return load_refcount_block(bs, refcount_block_offset,
175 (void**) refcount_block);
92dcb59f
KW
176 }
177 }
178
179 /*
180 * If we came here, we need to allocate something. Something is at least
181 * a cluster for the new refcount block. It may also include a new refcount
182 * table if the old refcount table is too small.
183 *
184 * Note that allocating clusters here needs some special care:
185 *
186 * - We can't use the normal qcow2_alloc_clusters(), it would try to
187 * increase the refcount and very likely we would end up with an endless
188 * recursion. Instead we must place the refcount blocks in a way that
189 * they can describe them themselves.
190 *
191 * - We need to consider that at this point we are inside update_refcounts
192 * and doing the initial refcount increase. This means that some clusters
193 * have already been allocated by the caller, but their refcount isn't
194 * accurate yet. free_cluster_index tells us where this allocation ends
195 * as long as we don't overwrite it by freeing clusters.
196 *
197 * - alloc_clusters_noref and qcow2_free_clusters may load a different
198 * refcount block into the cache
199 */
200
29c1a730
KW
201 *refcount_block = NULL;
202
203 /* We write to the refcount table, so we might depend on L2 tables */
204 qcow2_cache_flush(bs, s->l2_table_cache);
92dcb59f
KW
205
206 /* Allocate the refcount block itself and mark it as used */
2eaa8f63
KW
207 int64_t new_block = alloc_clusters_noref(bs, s->cluster_size);
208 if (new_block < 0) {
209 return new_block;
210 }
f7d0fe02 211
f7d0fe02 212#ifdef DEBUG_ALLOC2
92dcb59f
KW
213 fprintf(stderr, "qcow2: Allocate refcount block %d for %" PRIx64
214 " at %" PRIx64 "\n",
215 refcount_table_index, cluster_index << s->cluster_bits, new_block);
f7d0fe02 216#endif
92dcb59f
KW
217
218 if (in_same_refcount_block(s, new_block, cluster_index << s->cluster_bits)) {
25408c09 219 /* Zero the new refcount block before updating it */
29c1a730
KW
220 ret = qcow2_cache_get_empty(bs, s->refcount_block_cache, new_block,
221 (void**) refcount_block);
222 if (ret < 0) {
223 goto fail_block;
224 }
225
226 memset(*refcount_block, 0, s->cluster_size);
25408c09 227
92dcb59f
KW
228 /* The block describes itself, need to update the cache */
229 int block_index = (new_block >> s->cluster_bits) &
230 ((1 << (s->cluster_bits - REFCOUNT_SHIFT)) - 1);
29c1a730 231 (*refcount_block)[block_index] = cpu_to_be16(1);
92dcb59f
KW
232 } else {
233 /* Described somewhere else. This can recurse at most twice before we
234 * arrive at a block that describes itself. */
235 ret = update_refcount(bs, new_block, s->cluster_size, 1);
236 if (ret < 0) {
237 goto fail_block;
238 }
25408c09 239
1c4c2814
KW
240 bdrv_flush(bs->file);
241
25408c09
KW
242 /* Initialize the new refcount block only after updating its refcount,
243 * update_refcount uses the refcount cache itself */
29c1a730
KW
244 ret = qcow2_cache_get_empty(bs, s->refcount_block_cache, new_block,
245 (void**) refcount_block);
246 if (ret < 0) {
247 goto fail_block;
248 }
249
250 memset(*refcount_block, 0, s->cluster_size);
92dcb59f
KW
251 }
252
253 /* Now the new refcount block needs to be written to disk */
66f82cee 254 BLKDBG_EVENT(bs->file, BLKDBG_REFBLOCK_ALLOC_WRITE);
29c1a730
KW
255 qcow2_cache_entry_mark_dirty(s->refcount_block_cache, *refcount_block);
256 ret = qcow2_cache_flush(bs, s->refcount_block_cache);
92dcb59f
KW
257 if (ret < 0) {
258 goto fail_block;
259 }
260
261 /* If the refcount table is big enough, just hook the block up there */
262 if (refcount_table_index < s->refcount_table_size) {
263 uint64_t data64 = cpu_to_be64(new_block);
66f82cee 264 BLKDBG_EVENT(bs->file, BLKDBG_REFBLOCK_ALLOC_HOOKUP);
8b3b7206 265 ret = bdrv_pwrite_sync(bs->file,
92dcb59f
KW
266 s->refcount_table_offset + refcount_table_index * sizeof(uint64_t),
267 &data64, sizeof(data64));
268 if (ret < 0) {
269 goto fail_block;
270 }
271
272 s->refcount_table[refcount_table_index] = new_block;
29c1a730
KW
273 return 0;
274 }
275
276 ret = qcow2_cache_put(bs, s->refcount_block_cache, (void**) refcount_block);
277 if (ret < 0) {
278 goto fail_block;
92dcb59f
KW
279 }
280
281 /*
282 * If we come here, we need to grow the refcount table. Again, a new
283 * refcount table needs some space and we can't simply allocate to avoid
284 * endless recursion.
285 *
286 * Therefore let's grab new refcount blocks at the end of the image, which
287 * will describe themselves and the new refcount table. This way we can
288 * reference them only in the new table and do the switch to the new
289 * refcount table at once without producing an inconsistent state in
290 * between.
291 */
66f82cee 292 BLKDBG_EVENT(bs->file, BLKDBG_REFTABLE_GROW);
8252278a 293
92dcb59f
KW
294 /* Calculate the number of refcount blocks needed so far */
295 uint64_t refcount_block_clusters = 1 << (s->cluster_bits - REFCOUNT_SHIFT);
296 uint64_t blocks_used = (s->free_cluster_index +
297 refcount_block_clusters - 1) / refcount_block_clusters;
298
299 /* And now we need at least one block more for the new metadata */
300 uint64_t table_size = next_refcount_table_size(s, blocks_used + 1);
301 uint64_t last_table_size;
302 uint64_t blocks_clusters;
303 do {
304 uint64_t table_clusters = size_to_clusters(s, table_size);
305 blocks_clusters = 1 +
306 ((table_clusters + refcount_block_clusters - 1)
307 / refcount_block_clusters);
308 uint64_t meta_clusters = table_clusters + blocks_clusters;
309
310 last_table_size = table_size;
311 table_size = next_refcount_table_size(s, blocks_used +
312 ((meta_clusters + refcount_block_clusters - 1)
313 / refcount_block_clusters));
314
315 } while (last_table_size != table_size);
316
317#ifdef DEBUG_ALLOC2
318 fprintf(stderr, "qcow2: Grow refcount table %" PRId32 " => %" PRId64 "\n",
319 s->refcount_table_size, table_size);
320#endif
321
322 /* Create the new refcount table and blocks */
323 uint64_t meta_offset = (blocks_used * refcount_block_clusters) *
324 s->cluster_size;
325 uint64_t table_offset = meta_offset + blocks_clusters * s->cluster_size;
7267c094
AL
326 uint16_t *new_blocks = g_malloc0(blocks_clusters * s->cluster_size);
327 uint64_t *new_table = g_malloc0(table_size * sizeof(uint64_t));
92dcb59f
KW
328
329 assert(meta_offset >= (s->free_cluster_index * s->cluster_size));
330
331 /* Fill the new refcount table */
f7d0fe02 332 memcpy(new_table, s->refcount_table,
92dcb59f
KW
333 s->refcount_table_size * sizeof(uint64_t));
334 new_table[refcount_table_index] = new_block;
335
336 int i;
337 for (i = 0; i < blocks_clusters; i++) {
338 new_table[blocks_used + i] = meta_offset + (i * s->cluster_size);
339 }
340
341 /* Fill the refcount blocks */
342 uint64_t table_clusters = size_to_clusters(s, table_size * sizeof(uint64_t));
343 int block = 0;
344 for (i = 0; i < table_clusters + blocks_clusters; i++) {
345 new_blocks[block++] = cpu_to_be16(1);
346 }
347
348 /* Write refcount blocks to disk */
66f82cee 349 BLKDBG_EVENT(bs->file, BLKDBG_REFBLOCK_ALLOC_WRITE_BLOCKS);
8b3b7206 350 ret = bdrv_pwrite_sync(bs->file, meta_offset, new_blocks,
92dcb59f 351 blocks_clusters * s->cluster_size);
7267c094 352 g_free(new_blocks);
92dcb59f
KW
353 if (ret < 0) {
354 goto fail_table;
355 }
356
357 /* Write refcount table to disk */
358 for(i = 0; i < table_size; i++) {
359 cpu_to_be64s(&new_table[i]);
360 }
361
66f82cee 362 BLKDBG_EVENT(bs->file, BLKDBG_REFBLOCK_ALLOC_WRITE_TABLE);
8b3b7206 363 ret = bdrv_pwrite_sync(bs->file, table_offset, new_table,
92dcb59f
KW
364 table_size * sizeof(uint64_t));
365 if (ret < 0) {
366 goto fail_table;
367 }
368
369 for(i = 0; i < table_size; i++) {
f7d0fe02 370 cpu_to_be64s(&new_table[i]);
92dcb59f 371 }
f7d0fe02 372
92dcb59f
KW
373 /* Hook up the new refcount table in the qcow2 header */
374 uint8_t data[12];
f7d0fe02 375 cpu_to_be64w((uint64_t*)data, table_offset);
92dcb59f 376 cpu_to_be32w((uint32_t*)(data + 8), table_clusters);
66f82cee 377 BLKDBG_EVENT(bs->file, BLKDBG_REFBLOCK_ALLOC_SWITCH_TABLE);
8b3b7206 378 ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, refcount_table_offset),
92dcb59f
KW
379 data, sizeof(data));
380 if (ret < 0) {
381 goto fail_table;
f2b7c8b3
KW
382 }
383
92dcb59f
KW
384 /* And switch it in memory */
385 uint64_t old_table_offset = s->refcount_table_offset;
386 uint64_t old_table_size = s->refcount_table_size;
387
7267c094 388 g_free(s->refcount_table);
f7d0fe02 389 s->refcount_table = new_table;
92dcb59f 390 s->refcount_table_size = table_size;
f7d0fe02
KW
391 s->refcount_table_offset = table_offset;
392
92dcb59f
KW
393 /* Free old table. Remember, we must not change free_cluster_index */
394 uint64_t old_free_cluster_index = s->free_cluster_index;
ed6ccf0f 395 qcow2_free_clusters(bs, old_table_offset, old_table_size * sizeof(uint64_t));
92dcb59f 396 s->free_cluster_index = old_free_cluster_index;
f7d0fe02 397
29c1a730 398 ret = load_refcount_block(bs, new_block, (void**) refcount_block);
92dcb59f 399 if (ret < 0) {
29c1a730 400 return ret;
f7d0fe02
KW
401 }
402
2795ecf6 403 return 0;
f7d0fe02 404
92dcb59f 405fail_table:
7267c094 406 g_free(new_table);
92dcb59f 407fail_block:
29c1a730
KW
408 if (*refcount_block != NULL) {
409 qcow2_cache_put(bs, s->refcount_block_cache, (void**) refcount_block);
3b88e52b 410 }
29c1a730 411 return ret;
9923e05e
KW
412}
413
f7d0fe02 414/* XXX: cache several refcount block clusters ? */
db3a964f
KW
415static int QEMU_WARN_UNUSED_RESULT update_refcount(BlockDriverState *bs,
416 int64_t offset, int64_t length, int addend)
f7d0fe02
KW
417{
418 BDRVQcowState *s = bs->opaque;
419 int64_t start, last, cluster_offset;
29c1a730
KW
420 uint16_t *refcount_block = NULL;
421 int64_t old_table_index = -1;
09508d13 422 int ret;
f7d0fe02
KW
423
424#ifdef DEBUG_ALLOC2
35ee5e39 425 fprintf(stderr, "update_refcount: offset=%" PRId64 " size=%" PRId64 " addend=%d\n",
f7d0fe02
KW
426 offset, length, addend);
427#endif
7322afe7 428 if (length < 0) {
f7d0fe02 429 return -EINVAL;
7322afe7
KW
430 } else if (length == 0) {
431 return 0;
432 }
433
29c1a730
KW
434 if (addend < 0) {
435 qcow2_cache_set_dependency(bs, s->refcount_block_cache,
436 s->l2_table_cache);
437 }
438
f7d0fe02
KW
439 start = offset & ~(s->cluster_size - 1);
440 last = (offset + length - 1) & ~(s->cluster_size - 1);
441 for(cluster_offset = start; cluster_offset <= last;
442 cluster_offset += s->cluster_size)
443 {
444 int block_index, refcount;
445 int64_t cluster_index = cluster_offset >> s->cluster_bits;
29c1a730
KW
446 int64_t table_index =
447 cluster_index >> (s->cluster_bits - REFCOUNT_SHIFT);
f7d0fe02 448
29c1a730
KW
449 /* Load the refcount block and allocate it if needed */
450 if (table_index != old_table_index) {
451 if (refcount_block) {
452 ret = qcow2_cache_put(bs, s->refcount_block_cache,
453 (void**) &refcount_block);
454 if (ret < 0) {
455 goto fail;
456 }
457 }
9923e05e 458
29c1a730 459 ret = alloc_refcount_block(bs, cluster_index, &refcount_block);
ed0df867 460 if (ret < 0) {
29c1a730 461 goto fail;
f7d0fe02 462 }
f7d0fe02 463 }
29c1a730 464 old_table_index = table_index;
f7d0fe02 465
29c1a730 466 qcow2_cache_entry_mark_dirty(s->refcount_block_cache, refcount_block);
f7d0fe02
KW
467
468 /* we can update the count and save it */
469 block_index = cluster_index &
470 ((1 << (s->cluster_bits - REFCOUNT_SHIFT)) - 1);
f7d0fe02 471
29c1a730 472 refcount = be16_to_cpu(refcount_block[block_index]);
f7d0fe02 473 refcount += addend;
09508d13
KW
474 if (refcount < 0 || refcount > 0xffff) {
475 ret = -EINVAL;
476 goto fail;
477 }
f7d0fe02
KW
478 if (refcount == 0 && cluster_index < s->free_cluster_index) {
479 s->free_cluster_index = cluster_index;
480 }
29c1a730 481 refcount_block[block_index] = cpu_to_be16(refcount);
f7d0fe02
KW
482 }
483
09508d13
KW
484 ret = 0;
485fail:
f7d0fe02 486 /* Write last changed block to disk */
29c1a730 487 if (refcount_block) {
ed0df867 488 int wret;
29c1a730
KW
489 wret = qcow2_cache_put(bs, s->refcount_block_cache,
490 (void**) &refcount_block);
ed0df867
KW
491 if (wret < 0) {
492 return ret < 0 ? ret : wret;
f7d0fe02
KW
493 }
494 }
495
09508d13
KW
496 /*
497 * Try do undo any updates if an error is returned (This may succeed in
498 * some cases like ENOSPC for allocating a new refcount block)
499 */
500 if (ret < 0) {
501 int dummy;
502 dummy = update_refcount(bs, offset, cluster_offset - offset, -addend);
83e3f76c 503 (void)dummy;
09508d13
KW
504 }
505
506 return ret;
f7d0fe02
KW
507}
508
018faafd
KW
509/*
510 * Increases or decreases the refcount of a given cluster by one.
511 * addend must be 1 or -1.
512 *
513 * If the return value is non-negative, it is the new refcount of the cluster.
514 * If it is negative, it is -errno and indicates an error.
515 */
f7d0fe02
KW
516static int update_cluster_refcount(BlockDriverState *bs,
517 int64_t cluster_index,
518 int addend)
519{
520 BDRVQcowState *s = bs->opaque;
521 int ret;
522
523 ret = update_refcount(bs, cluster_index << s->cluster_bits, 1, addend);
524 if (ret < 0) {
525 return ret;
526 }
527
1c4c2814
KW
528 bdrv_flush(bs->file);
529
f7d0fe02
KW
530 return get_refcount(bs, cluster_index);
531}
532
533
534
535/*********************************************************/
536/* cluster allocation functions */
537
538
539
540/* return < 0 if error */
541static int64_t alloc_clusters_noref(BlockDriverState *bs, int64_t size)
542{
543 BDRVQcowState *s = bs->opaque;
2eaa8f63 544 int i, nb_clusters, refcount;
f7d0fe02
KW
545
546 nb_clusters = size_to_clusters(s, size);
547retry:
548 for(i = 0; i < nb_clusters; i++) {
508e0893 549 int64_t next_cluster_index = s->free_cluster_index++;
2eaa8f63
KW
550 refcount = get_refcount(bs, next_cluster_index);
551
552 if (refcount < 0) {
553 return refcount;
554 } else if (refcount != 0) {
f7d0fe02 555 goto retry;
2eaa8f63 556 }
f7d0fe02
KW
557 }
558#ifdef DEBUG_ALLOC2
35ee5e39 559 fprintf(stderr, "alloc_clusters: size=%" PRId64 " -> %" PRId64 "\n",
f7d0fe02
KW
560 size,
561 (s->free_cluster_index - nb_clusters) << s->cluster_bits);
562#endif
563 return (s->free_cluster_index - nb_clusters) << s->cluster_bits;
564}
565
ed6ccf0f 566int64_t qcow2_alloc_clusters(BlockDriverState *bs, int64_t size)
f7d0fe02
KW
567{
568 int64_t offset;
db3a964f 569 int ret;
f7d0fe02 570
66f82cee 571 BLKDBG_EVENT(bs->file, BLKDBG_CLUSTER_ALLOC);
f7d0fe02 572 offset = alloc_clusters_noref(bs, size);
2eaa8f63
KW
573 if (offset < 0) {
574 return offset;
575 }
576
db3a964f
KW
577 ret = update_refcount(bs, offset, size, 1);
578 if (ret < 0) {
579 return ret;
580 }
1c4c2814 581
f7d0fe02
KW
582 return offset;
583}
584
256900b1
KW
585int qcow2_alloc_clusters_at(BlockDriverState *bs, uint64_t offset,
586 int nb_clusters)
587{
588 BDRVQcowState *s = bs->opaque;
589 uint64_t cluster_index;
f24423bd 590 uint64_t old_free_cluster_index;
256900b1
KW
591 int i, refcount, ret;
592
593 /* Check how many clusters there are free */
594 cluster_index = offset >> s->cluster_bits;
595 for(i = 0; i < nb_clusters; i++) {
596 refcount = get_refcount(bs, cluster_index++);
597
598 if (refcount < 0) {
599 return refcount;
600 } else if (refcount != 0) {
601 break;
602 }
603 }
604
605 /* And then allocate them */
f24423bd
KW
606 old_free_cluster_index = s->free_cluster_index;
607 s->free_cluster_index = cluster_index + i;
608
256900b1
KW
609 ret = update_refcount(bs, offset, i << s->cluster_bits, 1);
610 if (ret < 0) {
611 return ret;
612 }
613
f24423bd
KW
614 s->free_cluster_index = old_free_cluster_index;
615
256900b1
KW
616 return i;
617}
618
f7d0fe02
KW
619/* only used to allocate compressed sectors. We try to allocate
620 contiguous sectors. size must be <= cluster_size */
ed6ccf0f 621int64_t qcow2_alloc_bytes(BlockDriverState *bs, int size)
f7d0fe02
KW
622{
623 BDRVQcowState *s = bs->opaque;
624 int64_t offset, cluster_offset;
625 int free_in_cluster;
626
66f82cee 627 BLKDBG_EVENT(bs->file, BLKDBG_CLUSTER_ALLOC_BYTES);
f7d0fe02
KW
628 assert(size > 0 && size <= s->cluster_size);
629 if (s->free_byte_offset == 0) {
ed6ccf0f 630 s->free_byte_offset = qcow2_alloc_clusters(bs, s->cluster_size);
5d757b56
KW
631 if (s->free_byte_offset < 0) {
632 return s->free_byte_offset;
633 }
f7d0fe02
KW
634 }
635 redo:
636 free_in_cluster = s->cluster_size -
637 (s->free_byte_offset & (s->cluster_size - 1));
638 if (size <= free_in_cluster) {
639 /* enough space in current cluster */
640 offset = s->free_byte_offset;
641 s->free_byte_offset += size;
642 free_in_cluster -= size;
643 if (free_in_cluster == 0)
644 s->free_byte_offset = 0;
645 if ((offset & (s->cluster_size - 1)) != 0)
646 update_cluster_refcount(bs, offset >> s->cluster_bits, 1);
647 } else {
ed6ccf0f 648 offset = qcow2_alloc_clusters(bs, s->cluster_size);
5d757b56
KW
649 if (offset < 0) {
650 return offset;
651 }
f7d0fe02
KW
652 cluster_offset = s->free_byte_offset & ~(s->cluster_size - 1);
653 if ((cluster_offset + s->cluster_size) == offset) {
654 /* we are lucky: contiguous data */
655 offset = s->free_byte_offset;
656 update_cluster_refcount(bs, offset >> s->cluster_bits, 1);
657 s->free_byte_offset += size;
658 } else {
659 s->free_byte_offset = offset;
660 goto redo;
661 }
662 }
29216ed1
KW
663
664 bdrv_flush(bs->file);
f7d0fe02
KW
665 return offset;
666}
667
ed6ccf0f 668void qcow2_free_clusters(BlockDriverState *bs,
f7d0fe02
KW
669 int64_t offset, int64_t size)
670{
db3a964f
KW
671 int ret;
672
66f82cee 673 BLKDBG_EVENT(bs->file, BLKDBG_CLUSTER_FREE);
db3a964f
KW
674 ret = update_refcount(bs, offset, size, -1);
675 if (ret < 0) {
676 fprintf(stderr, "qcow2_free_clusters failed: %s\n", strerror(-ret));
003fad6e 677 /* TODO Remember the clusters to free them later and avoid leaking */
db3a964f 678 }
f7d0fe02
KW
679}
680
45aba42f 681/*
c7a4c37a
KW
682 * Free a cluster using its L2 entry (handles clusters of all types, e.g.
683 * normal cluster, compressed cluster, etc.)
45aba42f 684 */
ed6ccf0f 685void qcow2_free_any_clusters(BlockDriverState *bs,
c7a4c37a 686 uint64_t l2_entry, int nb_clusters)
45aba42f
KW
687{
688 BDRVQcowState *s = bs->opaque;
689
c7a4c37a
KW
690 switch (qcow2_get_cluster_type(l2_entry)) {
691 case QCOW2_CLUSTER_COMPRESSED:
692 {
693 int nb_csectors;
694 nb_csectors = ((l2_entry >> s->csize_shift) &
695 s->csize_mask) + 1;
696 qcow2_free_clusters(bs,
697 (l2_entry & s->cluster_offset_mask) & ~511,
698 nb_csectors * 512);
699 }
700 break;
701 case QCOW2_CLUSTER_NORMAL:
702 qcow2_free_clusters(bs, l2_entry & L2E_OFFSET_MASK,
703 nb_clusters << s->cluster_bits);
704 break;
705 case QCOW2_CLUSTER_UNALLOCATED:
706 break;
707 default:
708 abort();
45aba42f 709 }
45aba42f
KW
710}
711
f7d0fe02
KW
712
713
714/*********************************************************/
715/* snapshots and image creation */
716
717
718
f7d0fe02 719/* update the refcounts of snapshots and the copied flag */
ed6ccf0f
KW
720int qcow2_update_snapshot_refcount(BlockDriverState *bs,
721 int64_t l1_table_offset, int l1_size, int addend)
f7d0fe02
KW
722{
723 BDRVQcowState *s = bs->opaque;
724 uint64_t *l1_table, *l2_table, l2_offset, offset, l1_size2, l1_allocated;
725 int64_t old_offset, old_l2_offset;
93913dfd 726 int i, j, l1_modified = 0, nb_csectors, refcount;
29c1a730 727 int ret;
93913dfd
KW
728 bool old_l2_writethrough, old_refcount_writethrough;
729
730 /* Switch caches to writeback mode during update */
731 old_l2_writethrough =
732 qcow2_cache_set_writethrough(bs, s->l2_table_cache, false);
733 old_refcount_writethrough =
734 qcow2_cache_set_writethrough(bs, s->refcount_block_cache, false);
f7d0fe02
KW
735
736 l2_table = NULL;
737 l1_table = NULL;
738 l1_size2 = l1_size * sizeof(uint64_t);
43a0cac4
KW
739
740 /* WARNING: qcow2_snapshot_goto relies on this function not using the
741 * l1_table_offset when it is the current s->l1_table_offset! Be careful
742 * when changing this! */
f7d0fe02 743 if (l1_table_offset != s->l1_table_offset) {
702ef63f 744 if (l1_size2 != 0) {
7267c094 745 l1_table = g_malloc0(align_offset(l1_size2, 512));
702ef63f
KW
746 } else {
747 l1_table = NULL;
748 }
f7d0fe02 749 l1_allocated = 1;
66f82cee 750 if (bdrv_pread(bs->file, l1_table_offset,
f7d0fe02 751 l1_table, l1_size2) != l1_size2)
93913dfd
KW
752 {
753 ret = -EIO;
f7d0fe02 754 goto fail;
93913dfd
KW
755 }
756
f7d0fe02
KW
757 for(i = 0;i < l1_size; i++)
758 be64_to_cpus(&l1_table[i]);
759 } else {
760 assert(l1_size == s->l1_size);
761 l1_table = s->l1_table;
762 l1_allocated = 0;
763 }
764
f7d0fe02
KW
765 for(i = 0; i < l1_size; i++) {
766 l2_offset = l1_table[i];
767 if (l2_offset) {
768 old_l2_offset = l2_offset;
8e37f681 769 l2_offset &= L1E_OFFSET_MASK;
29c1a730
KW
770
771 ret = qcow2_cache_get(bs, s->l2_table_cache, l2_offset,
772 (void**) &l2_table);
773 if (ret < 0) {
f7d0fe02 774 goto fail;
29c1a730
KW
775 }
776
f7d0fe02
KW
777 for(j = 0; j < s->l2_size; j++) {
778 offset = be64_to_cpu(l2_table[j]);
779 if (offset != 0) {
780 old_offset = offset;
781 offset &= ~QCOW_OFLAG_COPIED;
782 if (offset & QCOW_OFLAG_COMPRESSED) {
783 nb_csectors = ((offset >> s->csize_shift) &
784 s->csize_mask) + 1;
db3a964f
KW
785 if (addend != 0) {
786 int ret;
787 ret = update_refcount(bs,
788 (offset & s->cluster_offset_mask) & ~511,
789 nb_csectors * 512, addend);
790 if (ret < 0) {
791 goto fail;
792 }
1c4c2814
KW
793
794 /* TODO Flushing once for the whole function should
795 * be enough */
796 bdrv_flush(bs->file);
db3a964f 797 }
f7d0fe02
KW
798 /* compressed clusters are never modified */
799 refcount = 2;
800 } else {
8e37f681 801 uint64_t cluster_index = (offset & L2E_OFFSET_MASK) >> s->cluster_bits;
f7d0fe02 802 if (addend != 0) {
8e37f681 803 refcount = update_cluster_refcount(bs, cluster_index, addend);
f7d0fe02 804 } else {
8e37f681 805 refcount = get_refcount(bs, cluster_index);
f7d0fe02 806 }
018faafd
KW
807
808 if (refcount < 0) {
93913dfd 809 ret = -EIO;
018faafd
KW
810 goto fail;
811 }
f7d0fe02
KW
812 }
813
814 if (refcount == 1) {
815 offset |= QCOW_OFLAG_COPIED;
816 }
817 if (offset != old_offset) {
29c1a730
KW
818 if (addend > 0) {
819 qcow2_cache_set_dependency(bs, s->l2_table_cache,
820 s->refcount_block_cache);
821 }
f7d0fe02 822 l2_table[j] = cpu_to_be64(offset);
29c1a730 823 qcow2_cache_entry_mark_dirty(s->l2_table_cache, l2_table);
f7d0fe02
KW
824 }
825 }
826 }
29c1a730
KW
827
828 ret = qcow2_cache_put(bs, s->l2_table_cache, (void**) &l2_table);
829 if (ret < 0) {
830 goto fail;
f7d0fe02
KW
831 }
832
29c1a730 833
f7d0fe02
KW
834 if (addend != 0) {
835 refcount = update_cluster_refcount(bs, l2_offset >> s->cluster_bits, addend);
836 } else {
837 refcount = get_refcount(bs, l2_offset >> s->cluster_bits);
838 }
018faafd 839 if (refcount < 0) {
93913dfd 840 ret = -EIO;
018faafd
KW
841 goto fail;
842 } else if (refcount == 1) {
f7d0fe02
KW
843 l2_offset |= QCOW_OFLAG_COPIED;
844 }
845 if (l2_offset != old_l2_offset) {
846 l1_table[i] = l2_offset;
847 l1_modified = 1;
848 }
849 }
850 }
93913dfd
KW
851
852 ret = 0;
853fail:
854 if (l2_table) {
855 qcow2_cache_put(bs, s->l2_table_cache, (void**) &l2_table);
856 }
857
858 /* Enable writethrough cache mode again */
859 qcow2_cache_set_writethrough(bs, s->l2_table_cache, old_l2_writethrough);
860 qcow2_cache_set_writethrough(bs, s->refcount_block_cache,
861 old_refcount_writethrough);
862
43a0cac4
KW
863 /* Update L1 only if it isn't deleted anyway (addend = -1) */
864 if (addend >= 0 && l1_modified) {
f7d0fe02
KW
865 for(i = 0; i < l1_size; i++)
866 cpu_to_be64s(&l1_table[i]);
8b3b7206
KW
867 if (bdrv_pwrite_sync(bs->file, l1_table_offset, l1_table,
868 l1_size2) < 0)
f7d0fe02
KW
869 goto fail;
870 for(i = 0; i < l1_size; i++)
871 be64_to_cpus(&l1_table[i]);
872 }
873 if (l1_allocated)
7267c094 874 g_free(l1_table);
93913dfd 875 return ret;
f7d0fe02
KW
876}
877
878
879
880
881/*********************************************************/
882/* refcount checking functions */
883
884
885
886/*
887 * Increases the refcount for a range of clusters in a given refcount table.
888 * This is used to construct a temporary refcount table out of L1 and L2 tables
889 * which can be compared the the refcount table saved in the image.
890 *
9ac228e0 891 * Modifies the number of errors in res.
f7d0fe02 892 */
9ac228e0
KW
893static void inc_refcounts(BlockDriverState *bs,
894 BdrvCheckResult *res,
f7d0fe02
KW
895 uint16_t *refcount_table,
896 int refcount_table_size,
897 int64_t offset, int64_t size)
898{
899 BDRVQcowState *s = bs->opaque;
900 int64_t start, last, cluster_offset;
901 int k;
f7d0fe02
KW
902
903 if (size <= 0)
9ac228e0 904 return;
f7d0fe02
KW
905
906 start = offset & ~(s->cluster_size - 1);
907 last = (offset + size - 1) & ~(s->cluster_size - 1);
908 for(cluster_offset = start; cluster_offset <= last;
909 cluster_offset += s->cluster_size) {
910 k = cluster_offset >> s->cluster_bits;
9ac228e0 911 if (k < 0) {
f7d0fe02
KW
912 fprintf(stderr, "ERROR: invalid cluster offset=0x%" PRIx64 "\n",
913 cluster_offset);
9ac228e0
KW
914 res->corruptions++;
915 } else if (k >= refcount_table_size) {
916 fprintf(stderr, "Warning: cluster offset=0x%" PRIx64 " is after "
917 "the end of the image file, can't properly check refcounts.\n",
918 cluster_offset);
919 res->check_errors++;
f7d0fe02
KW
920 } else {
921 if (++refcount_table[k] == 0) {
922 fprintf(stderr, "ERROR: overflow cluster offset=0x%" PRIx64
923 "\n", cluster_offset);
9ac228e0 924 res->corruptions++;
f7d0fe02
KW
925 }
926 }
927 }
f7d0fe02
KW
928}
929
930/*
931 * Increases the refcount in the given refcount table for the all clusters
932 * referenced in the L2 table. While doing so, performs some checks on L2
933 * entries.
934 *
935 * Returns the number of errors found by the checks or -errno if an internal
936 * error occurred.
937 */
9ac228e0 938static int check_refcounts_l2(BlockDriverState *bs, BdrvCheckResult *res,
f7d0fe02
KW
939 uint16_t *refcount_table, int refcount_table_size, int64_t l2_offset,
940 int check_copied)
941{
942 BDRVQcowState *s = bs->opaque;
943 uint64_t *l2_table, offset;
944 int i, l2_size, nb_csectors, refcount;
f7d0fe02
KW
945
946 /* Read L2 table from disk */
947 l2_size = s->l2_size * sizeof(uint64_t);
7267c094 948 l2_table = g_malloc(l2_size);
f7d0fe02 949
66f82cee 950 if (bdrv_pread(bs->file, l2_offset, l2_table, l2_size) != l2_size)
f7d0fe02
KW
951 goto fail;
952
953 /* Do the actual checks */
954 for(i = 0; i < s->l2_size; i++) {
955 offset = be64_to_cpu(l2_table[i]);
956 if (offset != 0) {
957 if (offset & QCOW_OFLAG_COMPRESSED) {
958 /* Compressed clusters don't have QCOW_OFLAG_COPIED */
959 if (offset & QCOW_OFLAG_COPIED) {
960 fprintf(stderr, "ERROR: cluster %" PRId64 ": "
961 "copied flag must never be set for compressed "
962 "clusters\n", offset >> s->cluster_bits);
963 offset &= ~QCOW_OFLAG_COPIED;
9ac228e0 964 res->corruptions++;
f7d0fe02
KW
965 }
966
967 /* Mark cluster as used */
968 nb_csectors = ((offset >> s->csize_shift) &
969 s->csize_mask) + 1;
970 offset &= s->cluster_offset_mask;
9ac228e0
KW
971 inc_refcounts(bs, res, refcount_table, refcount_table_size,
972 offset & ~511, nb_csectors * 512);
f7d0fe02
KW
973 } else {
974 /* QCOW_OFLAG_COPIED must be set iff refcount == 1 */
975 if (check_copied) {
976 uint64_t entry = offset;
977 offset &= ~QCOW_OFLAG_COPIED;
978 refcount = get_refcount(bs, offset >> s->cluster_bits);
018faafd
KW
979 if (refcount < 0) {
980 fprintf(stderr, "Can't get refcount for offset %"
981 PRIx64 ": %s\n", entry, strerror(-refcount));
9ac228e0 982 goto fail;
018faafd 983 }
f7d0fe02
KW
984 if ((refcount == 1) != ((entry & QCOW_OFLAG_COPIED) != 0)) {
985 fprintf(stderr, "ERROR OFLAG_COPIED: offset=%"
986 PRIx64 " refcount=%d\n", entry, refcount);
9ac228e0 987 res->corruptions++;
f7d0fe02
KW
988 }
989 }
990
991 /* Mark cluster as used */
992 offset &= ~QCOW_OFLAG_COPIED;
9ac228e0
KW
993 inc_refcounts(bs, res, refcount_table,refcount_table_size,
994 offset, s->cluster_size);
f7d0fe02
KW
995
996 /* Correct offsets are cluster aligned */
997 if (offset & (s->cluster_size - 1)) {
998 fprintf(stderr, "ERROR offset=%" PRIx64 ": Cluster is not "
999 "properly aligned; L2 entry corrupted.\n", offset);
9ac228e0 1000 res->corruptions++;
f7d0fe02
KW
1001 }
1002 }
1003 }
1004 }
1005
7267c094 1006 g_free(l2_table);
9ac228e0 1007 return 0;
f7d0fe02
KW
1008
1009fail:
9ac228e0 1010 fprintf(stderr, "ERROR: I/O error in check_refcounts_l2\n");
7267c094 1011 g_free(l2_table);
f7d0fe02
KW
1012 return -EIO;
1013}
1014
1015/*
1016 * Increases the refcount for the L1 table, its L2 tables and all referenced
1017 * clusters in the given refcount table. While doing so, performs some checks
1018 * on L1 and L2 entries.
1019 *
1020 * Returns the number of errors found by the checks or -errno if an internal
1021 * error occurred.
1022 */
1023static int check_refcounts_l1(BlockDriverState *bs,
9ac228e0 1024 BdrvCheckResult *res,
f7d0fe02
KW
1025 uint16_t *refcount_table,
1026 int refcount_table_size,
1027 int64_t l1_table_offset, int l1_size,
1028 int check_copied)
1029{
1030 BDRVQcowState *s = bs->opaque;
1031 uint64_t *l1_table, l2_offset, l1_size2;
1032 int i, refcount, ret;
f7d0fe02
KW
1033
1034 l1_size2 = l1_size * sizeof(uint64_t);
1035
1036 /* Mark L1 table as used */
9ac228e0
KW
1037 inc_refcounts(bs, res, refcount_table, refcount_table_size,
1038 l1_table_offset, l1_size2);
f7d0fe02
KW
1039
1040 /* Read L1 table entries from disk */
702ef63f
KW
1041 if (l1_size2 == 0) {
1042 l1_table = NULL;
1043 } else {
7267c094 1044 l1_table = g_malloc(l1_size2);
66f82cee 1045 if (bdrv_pread(bs->file, l1_table_offset,
702ef63f
KW
1046 l1_table, l1_size2) != l1_size2)
1047 goto fail;
1048 for(i = 0;i < l1_size; i++)
1049 be64_to_cpus(&l1_table[i]);
1050 }
f7d0fe02
KW
1051
1052 /* Do the actual checks */
1053 for(i = 0; i < l1_size; i++) {
1054 l2_offset = l1_table[i];
1055 if (l2_offset) {
1056 /* QCOW_OFLAG_COPIED must be set iff refcount == 1 */
1057 if (check_copied) {
1058 refcount = get_refcount(bs, (l2_offset & ~QCOW_OFLAG_COPIED)
1059 >> s->cluster_bits);
018faafd
KW
1060 if (refcount < 0) {
1061 fprintf(stderr, "Can't get refcount for l2_offset %"
1062 PRIx64 ": %s\n", l2_offset, strerror(-refcount));
9ac228e0 1063 goto fail;
018faafd 1064 }
f7d0fe02
KW
1065 if ((refcount == 1) != ((l2_offset & QCOW_OFLAG_COPIED) != 0)) {
1066 fprintf(stderr, "ERROR OFLAG_COPIED: l2_offset=%" PRIx64
1067 " refcount=%d\n", l2_offset, refcount);
9ac228e0 1068 res->corruptions++;
f7d0fe02
KW
1069 }
1070 }
1071
1072 /* Mark L2 table as used */
1073 l2_offset &= ~QCOW_OFLAG_COPIED;
9ac228e0
KW
1074 inc_refcounts(bs, res, refcount_table, refcount_table_size,
1075 l2_offset, s->cluster_size);
f7d0fe02
KW
1076
1077 /* L2 tables are cluster aligned */
1078 if (l2_offset & (s->cluster_size - 1)) {
1079 fprintf(stderr, "ERROR l2_offset=%" PRIx64 ": Table is not "
1080 "cluster aligned; L1 entry corrupted\n", l2_offset);
9ac228e0 1081 res->corruptions++;
f7d0fe02
KW
1082 }
1083
1084 /* Process and check L2 entries */
9ac228e0
KW
1085 ret = check_refcounts_l2(bs, res, refcount_table,
1086 refcount_table_size, l2_offset, check_copied);
f7d0fe02
KW
1087 if (ret < 0) {
1088 goto fail;
1089 }
f7d0fe02
KW
1090 }
1091 }
7267c094 1092 g_free(l1_table);
9ac228e0 1093 return 0;
f7d0fe02
KW
1094
1095fail:
1096 fprintf(stderr, "ERROR: I/O error in check_refcounts_l1\n");
9ac228e0 1097 res->check_errors++;
7267c094 1098 g_free(l1_table);
f7d0fe02
KW
1099 return -EIO;
1100}
1101
1102/*
1103 * Checks an image for refcount consistency.
1104 *
1105 * Returns 0 if no errors are found, the number of errors in case the image is
a1c7273b 1106 * detected as corrupted, and -errno when an internal error occurred.
f7d0fe02 1107 */
9ac228e0 1108int qcow2_check_refcounts(BlockDriverState *bs, BdrvCheckResult *res)
f7d0fe02
KW
1109{
1110 BDRVQcowState *s = bs->opaque;
1111 int64_t size;
1112 int nb_clusters, refcount1, refcount2, i;
1113 QCowSnapshot *sn;
1114 uint16_t *refcount_table;
9ac228e0 1115 int ret;
f7d0fe02 1116
66f82cee 1117 size = bdrv_getlength(bs->file);
f7d0fe02 1118 nb_clusters = size_to_clusters(s, size);
7267c094 1119 refcount_table = g_malloc0(nb_clusters * sizeof(uint16_t));
f7d0fe02
KW
1120
1121 /* header */
9ac228e0
KW
1122 inc_refcounts(bs, res, refcount_table, nb_clusters,
1123 0, s->cluster_size);
f7d0fe02
KW
1124
1125 /* current L1 table */
9ac228e0 1126 ret = check_refcounts_l1(bs, res, refcount_table, nb_clusters,
f7d0fe02
KW
1127 s->l1_table_offset, s->l1_size, 1);
1128 if (ret < 0) {
80fa3341 1129 goto fail;
f7d0fe02 1130 }
f7d0fe02
KW
1131
1132 /* snapshots */
1133 for(i = 0; i < s->nb_snapshots; i++) {
1134 sn = s->snapshots + i;
9ac228e0
KW
1135 ret = check_refcounts_l1(bs, res, refcount_table, nb_clusters,
1136 sn->l1_table_offset, sn->l1_size, 0);
1137 if (ret < 0) {
80fa3341 1138 goto fail;
9ac228e0 1139 }
f7d0fe02 1140 }
9ac228e0
KW
1141 inc_refcounts(bs, res, refcount_table, nb_clusters,
1142 s->snapshots_offset, s->snapshots_size);
f7d0fe02
KW
1143
1144 /* refcount data */
9ac228e0
KW
1145 inc_refcounts(bs, res, refcount_table, nb_clusters,
1146 s->refcount_table_offset,
1147 s->refcount_table_size * sizeof(uint64_t));
1148
f7d0fe02 1149 for(i = 0; i < s->refcount_table_size; i++) {
6882c8fa 1150 uint64_t offset, cluster;
f7d0fe02 1151 offset = s->refcount_table[i];
6882c8fa 1152 cluster = offset >> s->cluster_bits;
746c3cb5
KW
1153
1154 /* Refcount blocks are cluster aligned */
1155 if (offset & (s->cluster_size - 1)) {
1156 fprintf(stderr, "ERROR refcount block %d is not "
1157 "cluster aligned; refcount table entry corrupted\n", i);
9ac228e0 1158 res->corruptions++;
6882c8fa
KW
1159 continue;
1160 }
1161
1162 if (cluster >= nb_clusters) {
1163 fprintf(stderr, "ERROR refcount block %d is outside image\n", i);
9ac228e0 1164 res->corruptions++;
6882c8fa 1165 continue;
746c3cb5
KW
1166 }
1167
f7d0fe02 1168 if (offset != 0) {
9ac228e0
KW
1169 inc_refcounts(bs, res, refcount_table, nb_clusters,
1170 offset, s->cluster_size);
6882c8fa 1171 if (refcount_table[cluster] != 1) {
746c3cb5 1172 fprintf(stderr, "ERROR refcount block %d refcount=%d\n",
6882c8fa 1173 i, refcount_table[cluster]);
9ac228e0 1174 res->corruptions++;
746c3cb5 1175 }
f7d0fe02
KW
1176 }
1177 }
1178
1179 /* compare ref counts */
1180 for(i = 0; i < nb_clusters; i++) {
1181 refcount1 = get_refcount(bs, i);
018faafd
KW
1182 if (refcount1 < 0) {
1183 fprintf(stderr, "Can't get refcount for cluster %d: %s\n",
1184 i, strerror(-refcount1));
9ac228e0 1185 res->check_errors++;
f74550fd 1186 continue;
018faafd
KW
1187 }
1188
f7d0fe02
KW
1189 refcount2 = refcount_table[i];
1190 if (refcount1 != refcount2) {
9ac228e0
KW
1191 fprintf(stderr, "%s cluster %d refcount=%d reference=%d\n",
1192 refcount1 < refcount2 ? "ERROR" : "Leaked",
f7d0fe02 1193 i, refcount1, refcount2);
9ac228e0
KW
1194 if (refcount1 < refcount2) {
1195 res->corruptions++;
1196 } else {
1197 res->leaks++;
1198 }
f7d0fe02
KW
1199 }
1200 }
1201
80fa3341
KW
1202 ret = 0;
1203
1204fail:
7267c094 1205 g_free(refcount_table);
f7d0fe02 1206
80fa3341 1207 return ret;
f7d0fe02
KW
1208}
1209