]> git.proxmox.com Git - mirror_qemu.git/blame - block/qcow2-cluster.c
tests: mark more coroutine_fns
[mirror_qemu.git] / block / qcow2-cluster.c
CommitLineData
45aba42f
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
80c71a24 25#include "qemu/osdep.h"
45aba42f
KW
26#include <zlib.h>
27
e2c1c34f 28#include "block/block-io.h"
c9a442e4 29#include "qapi/error.h"
0d8c41da 30#include "qcow2.h"
58369e22 31#include "qemu/bswap.h"
5df022cf 32#include "qemu/memalign.h"
3cce16f4 33#include "trace.h"
45aba42f 34
a1b4ecfd
PB
35int coroutine_fn qcow2_shrink_l1_table(BlockDriverState *bs,
36 uint64_t exact_size)
46b732cd
PB
37{
38 BDRVQcow2State *s = bs->opaque;
39 int new_l1_size, i, ret;
40
41 if (exact_size >= s->l1_size) {
42 return 0;
43 }
44
45 new_l1_size = exact_size;
46
47#ifdef DEBUG_ALLOC2
48 fprintf(stderr, "shrink l1_table from %d to %d\n", s->l1_size, new_l1_size);
49#endif
50
51 BLKDBG_EVENT(bs->file, BLKDBG_L1_SHRINK_WRITE_TABLE);
38505e2a
AF
52 ret = bdrv_co_pwrite_zeroes(bs->file,
53 s->l1_table_offset + new_l1_size * L1E_SIZE,
54 (s->l1_size - new_l1_size) * L1E_SIZE, 0);
46b732cd
PB
55 if (ret < 0) {
56 goto fail;
57 }
58
38505e2a 59 ret = bdrv_co_flush(bs->file->bs);
46b732cd
PB
60 if (ret < 0) {
61 goto fail;
62 }
63
64 BLKDBG_EVENT(bs->file, BLKDBG_L1_SHRINK_FREE_L2_CLUSTERS);
65 for (i = s->l1_size - 1; i > new_l1_size - 1; i--) {
66 if ((s->l1_table[i] & L1E_OFFSET_MASK) == 0) {
67 continue;
68 }
69 qcow2_free_clusters(bs, s->l1_table[i] & L1E_OFFSET_MASK,
70 s->cluster_size, QCOW2_DISCARD_ALWAYS);
71 s->l1_table[i] = 0;
72 }
73 return 0;
74
75fail:
76 /*
77 * If the write in the l1_table failed the image may contain a partially
78 * overwritten l1_table. In this case it would be better to clear the
79 * l1_table in memory to avoid possible image corruption.
80 */
81 memset(s->l1_table + new_l1_size, 0,
02b1ecfa 82 (s->l1_size - new_l1_size) * L1E_SIZE);
46b732cd
PB
83 return ret;
84}
85
2cf7cfa1
KW
86int qcow2_grow_l1_table(BlockDriverState *bs, uint64_t min_size,
87 bool exact_size)
45aba42f 88{
ff99129a 89 BDRVQcow2State *s = bs->opaque;
2cf7cfa1 90 int new_l1_size2, ret, i;
45aba42f 91 uint64_t *new_l1_table;
fda74f82 92 int64_t old_l1_table_offset, old_l1_size;
2cf7cfa1 93 int64_t new_l1_table_offset, new_l1_size;
45aba42f
KW
94 uint8_t data[12];
95
72893756 96 if (min_size <= s->l1_size)
45aba42f 97 return 0;
72893756 98
b93f9950
HR
99 /* Do a sanity check on min_size before trying to calculate new_l1_size
100 * (this prevents overflows during the while loop for the calculation of
101 * new_l1_size) */
02b1ecfa 102 if (min_size > INT_MAX / L1E_SIZE) {
b93f9950
HR
103 return -EFBIG;
104 }
105
72893756
SH
106 if (exact_size) {
107 new_l1_size = min_size;
108 } else {
109 /* Bump size up to reduce the number of times we have to grow */
110 new_l1_size = s->l1_size;
111 if (new_l1_size == 0) {
112 new_l1_size = 1;
113 }
114 while (min_size > new_l1_size) {
21cf3e12 115 new_l1_size = DIV_ROUND_UP(new_l1_size * 3, 2);
72893756 116 }
45aba42f 117 }
72893756 118
84c26520 119 QEMU_BUILD_BUG_ON(QCOW_MAX_L1_SIZE > INT_MAX);
02b1ecfa 120 if (new_l1_size > QCOW_MAX_L1_SIZE / L1E_SIZE) {
2cf7cfa1
KW
121 return -EFBIG;
122 }
123
45aba42f 124#ifdef DEBUG_ALLOC2
2cf7cfa1
KW
125 fprintf(stderr, "grow l1_table from %d to %" PRId64 "\n",
126 s->l1_size, new_l1_size);
45aba42f
KW
127#endif
128
02b1ecfa 129 new_l1_size2 = L1E_SIZE * new_l1_size;
ef97d608 130 new_l1_table = qemu_try_blockalign(bs->file->bs, new_l1_size2);
de82815d
KW
131 if (new_l1_table == NULL) {
132 return -ENOMEM;
133 }
ef97d608 134 memset(new_l1_table, 0, new_l1_size2);
de82815d 135
0647d47c 136 if (s->l1_size) {
02b1ecfa 137 memcpy(new_l1_table, s->l1_table, s->l1_size * L1E_SIZE);
0647d47c 138 }
45aba42f
KW
139
140 /* write new table (align to cluster) */
66f82cee 141 BLKDBG_EVENT(bs->file, BLKDBG_L1_GROW_ALLOC_TABLE);
ed6ccf0f 142 new_l1_table_offset = qcow2_alloc_clusters(bs, new_l1_size2);
5d757b56 143 if (new_l1_table_offset < 0) {
de82815d 144 qemu_vfree(new_l1_table);
5d757b56
KW
145 return new_l1_table_offset;
146 }
29c1a730
KW
147
148 ret = qcow2_cache_flush(bs, s->refcount_block_cache);
149 if (ret < 0) {
80fa3341 150 goto fail;
29c1a730 151 }
45aba42f 152
cf93980e
HR
153 /* the L1 position has not yet been updated, so these clusters must
154 * indeed be completely free */
231bb267 155 ret = qcow2_pre_write_overlap_check(bs, 0, new_l1_table_offset,
966b000f 156 new_l1_size2, false);
cf93980e
HR
157 if (ret < 0) {
158 goto fail;
159 }
160
66f82cee 161 BLKDBG_EVENT(bs->file, BLKDBG_L1_GROW_WRITE_TABLE);
45aba42f
KW
162 for(i = 0; i < s->l1_size; i++)
163 new_l1_table[i] = cpu_to_be64(new_l1_table[i]);
32cc71de
AF
164 ret = bdrv_pwrite_sync(bs->file, new_l1_table_offset, new_l1_size2,
165 new_l1_table, 0);
8b3b7206 166 if (ret < 0)
45aba42f
KW
167 goto fail;
168 for(i = 0; i < s->l1_size; i++)
169 new_l1_table[i] = be64_to_cpu(new_l1_table[i]);
170
171 /* set new table */
66f82cee 172 BLKDBG_EVENT(bs->file, BLKDBG_L1_GROW_ACTIVATE_TABLE);
f1f7a1dd 173 stl_be_p(data, new_l1_size);
e4ef9f46 174 stq_be_p(data + 4, new_l1_table_offset);
32cc71de
AF
175 ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, l1_size),
176 sizeof(data), data, 0);
8b3b7206 177 if (ret < 0) {
45aba42f 178 goto fail;
fb8fa77c 179 }
de82815d 180 qemu_vfree(s->l1_table);
fda74f82 181 old_l1_table_offset = s->l1_table_offset;
45aba42f
KW
182 s->l1_table_offset = new_l1_table_offset;
183 s->l1_table = new_l1_table;
fda74f82 184 old_l1_size = s->l1_size;
45aba42f 185 s->l1_size = new_l1_size;
02b1ecfa 186 qcow2_free_clusters(bs, old_l1_table_offset, old_l1_size * L1E_SIZE,
fda74f82 187 QCOW2_DISCARD_OTHER);
45aba42f
KW
188 return 0;
189 fail:
de82815d 190 qemu_vfree(new_l1_table);
6cfcb9b8
KW
191 qcow2_free_clusters(bs, new_l1_table_offset, new_l1_size2,
192 QCOW2_DISCARD_OTHER);
8b3b7206 193 return ret;
45aba42f
KW
194}
195
45aba42f
KW
196/*
197 * l2_load
198 *
e2b5713e
AG
199 * @bs: The BlockDriverState
200 * @offset: A guest offset, used to calculate what slice of the L2
201 * table to load.
202 * @l2_offset: Offset to the L2 table in the image file.
203 * @l2_slice: Location to store the pointer to the L2 slice.
45aba42f 204 *
e2b5713e
AG
205 * Loads a L2 slice into memory (L2 slices are the parts of L2 tables
206 * that are loaded by the qcow2 cache). If the slice is in the cache,
207 * the cache is used; otherwise the L2 slice is loaded from the image
208 * file.
45aba42f 209 */
e2b5713e
AG
210static int l2_load(BlockDriverState *bs, uint64_t offset,
211 uint64_t l2_offset, uint64_t **l2_slice)
45aba42f 212{
ff99129a 213 BDRVQcow2State *s = bs->opaque;
c8fd8554 214 int start_of_slice = l2_entry_size(s) *
e2b5713e 215 (offset_to_l2_index(s, offset) - offset_to_l2_slice_index(s, offset));
45aba42f 216
e2b5713e
AG
217 return qcow2_cache_get(bs, s->l2_table_cache, l2_offset + start_of_slice,
218 (void **)l2_slice);
45aba42f
KW
219}
220
6583e3c7 221/*
da86f8cb
AG
222 * Writes an L1 entry to disk (note that depending on the alignment
223 * requirements this function may write more that just one entry in
224 * order to prevent bdrv_pwrite from performing a read-modify-write)
6583e3c7 225 */
e23e400e 226int qcow2_write_l1_entry(BlockDriverState *bs, int l1_index)
6583e3c7 227{
ff99129a 228 BDRVQcow2State *s = bs->opaque;
6583e3c7 229 int l1_start_index;
f7defcb6 230 int i, ret;
02b1ecfa 231 int bufsize = MAX(L1E_SIZE,
da86f8cb 232 MIN(bs->file->bs->bl.request_alignment, s->cluster_size));
02b1ecfa 233 int nentries = bufsize / L1E_SIZE;
da86f8cb 234 g_autofree uint64_t *buf = g_try_new0(uint64_t, nentries);
6583e3c7 235
da86f8cb
AG
236 if (buf == NULL) {
237 return -ENOMEM;
238 }
239
240 l1_start_index = QEMU_ALIGN_DOWN(l1_index, nentries);
241 for (i = 0; i < MIN(nentries, s->l1_size - l1_start_index); i++) {
6583e3c7
KW
242 buf[i] = cpu_to_be64(s->l1_table[l1_start_index + i]);
243 }
244
231bb267 245 ret = qcow2_pre_write_overlap_check(bs, QCOW2_OL_ACTIVE_L1,
c508c73d 246 s->l1_table_offset + L1E_SIZE * l1_start_index, bufsize, false);
cf93980e
HR
247 if (ret < 0) {
248 return ret;
249 }
250
66f82cee 251 BLKDBG_EVENT(bs->file, BLKDBG_L1_UPDATE);
d9ca2ea2 252 ret = bdrv_pwrite_sync(bs->file,
c508c73d 253 s->l1_table_offset + L1E_SIZE * l1_start_index,
32cc71de 254 bufsize, buf, 0);
f7defcb6
KW
255 if (ret < 0) {
256 return ret;
6583e3c7
KW
257 }
258
259 return 0;
260}
261
45aba42f
KW
262/*
263 * l2_allocate
264 *
265 * Allocate a new l2 entry in the file. If l1_index points to an already
266 * used entry in the L2 table (i.e. we are doing a copy on write for the L2
267 * table) copy the contents of the old L2 table into the newly allocated one.
268 * Otherwise the new table is initialized with zeros.
269 *
270 */
271
3861946a 272static int l2_allocate(BlockDriverState *bs, int l1_index)
45aba42f 273{
ff99129a 274 BDRVQcow2State *s = bs->opaque;
6583e3c7 275 uint64_t old_l2_offset;
3861946a
AG
276 uint64_t *l2_slice = NULL;
277 unsigned slice, slice_size2, n_slices;
f4f0d391 278 int64_t l2_offset;
c46e1167 279 int ret;
45aba42f
KW
280
281 old_l2_offset = s->l1_table[l1_index];
282
3cce16f4
KW
283 trace_qcow2_l2_allocate(bs, l1_index);
284
45aba42f
KW
285 /* allocate a new l2 entry */
286
c8fd8554 287 l2_offset = qcow2_alloc_clusters(bs, s->l2_size * l2_entry_size(s));
5d757b56 288 if (l2_offset < 0) {
be0b742e
HR
289 ret = l2_offset;
290 goto fail;
5d757b56 291 }
29c1a730 292
c1c43990
AG
293 /* The offset must fit in the offset field of the L1 table entry */
294 assert((l2_offset & L1E_OFFSET_MASK) == l2_offset);
295
98839750
AG
296 /* If we're allocating the table at offset 0 then something is wrong */
297 if (l2_offset == 0) {
298 qcow2_signal_corruption(bs, true, -1, -1, "Preventing invalid "
299 "allocation of L2 table at offset 0");
300 ret = -EIO;
301 goto fail;
302 }
303
29c1a730
KW
304 ret = qcow2_cache_flush(bs, s->refcount_block_cache);
305 if (ret < 0) {
306 goto fail;
307 }
45aba42f 308
45aba42f
KW
309 /* allocate a new entry in the l2 cache */
310
c8fd8554 311 slice_size2 = s->l2_slice_size * l2_entry_size(s);
3861946a
AG
312 n_slices = s->cluster_size / slice_size2;
313
3cce16f4 314 trace_qcow2_l2_allocate_get_empty(bs, l1_index);
3861946a 315 for (slice = 0; slice < n_slices; slice++) {
6580bb09 316 ret = qcow2_cache_get_empty(bs, s->l2_table_cache,
3861946a
AG
317 l2_offset + slice * slice_size2,
318 (void **) &l2_slice);
6580bb09
AG
319 if (ret < 0) {
320 goto fail;
321 }
29c1a730 322
6580bb09 323 if ((old_l2_offset & L1E_OFFSET_MASK) == 0) {
3861946a
AG
324 /* if there was no old l2 table, clear the new slice */
325 memset(l2_slice, 0, slice_size2);
6580bb09 326 } else {
3861946a
AG
327 uint64_t *old_slice;
328 uint64_t old_l2_slice_offset =
329 (old_l2_offset & L1E_OFFSET_MASK) + slice * slice_size2;
29c1a730 330
3861946a 331 /* if there was an old l2 table, read a slice from the disk */
6580bb09 332 BLKDBG_EVENT(bs->file, BLKDBG_L2_ALLOC_COW_READ);
3861946a
AG
333 ret = qcow2_cache_get(bs, s->l2_table_cache, old_l2_slice_offset,
334 (void **) &old_slice);
6580bb09
AG
335 if (ret < 0) {
336 goto fail;
337 }
338
3861946a 339 memcpy(l2_slice, old_slice, slice_size2);
6580bb09 340
3861946a 341 qcow2_cache_put(s->l2_table_cache, (void **) &old_slice);
29c1a730
KW
342 }
343
3861946a 344 /* write the l2 slice to the file */
6580bb09 345 BLKDBG_EVENT(bs->file, BLKDBG_L2_ALLOC_WRITE);
29c1a730 346
6580bb09 347 trace_qcow2_l2_allocate_write_l2(bs, l1_index);
3861946a
AG
348 qcow2_cache_entry_mark_dirty(s->l2_table_cache, l2_slice);
349 qcow2_cache_put(s->l2_table_cache, (void **) &l2_slice);
45aba42f 350 }
29c1a730 351
29c1a730 352 ret = qcow2_cache_flush(bs, s->l2_table_cache);
c46e1167 353 if (ret < 0) {
175e1152
KW
354 goto fail;
355 }
356
357 /* update the L1 entry */
3cce16f4 358 trace_qcow2_l2_allocate_write_l1(bs, l1_index);
175e1152 359 s->l1_table[l1_index] = l2_offset | QCOW_OFLAG_COPIED;
e23e400e 360 ret = qcow2_write_l1_entry(bs, l1_index);
175e1152
KW
361 if (ret < 0) {
362 goto fail;
c46e1167 363 }
45aba42f 364
3cce16f4 365 trace_qcow2_l2_allocate_done(bs, l1_index, 0);
c46e1167 366 return 0;
175e1152
KW
367
368fail:
3cce16f4 369 trace_qcow2_l2_allocate_done(bs, l1_index, ret);
3861946a
AG
370 if (l2_slice != NULL) {
371 qcow2_cache_put(s->l2_table_cache, (void **) &l2_slice);
8585afd8 372 }
68dba0bf 373 s->l1_table[l1_index] = old_l2_offset;
e3b21ef9 374 if (l2_offset > 0) {
c8fd8554 375 qcow2_free_clusters(bs, l2_offset, s->l2_size * l2_entry_size(s),
e3b21ef9
HR
376 QCOW2_DISCARD_ALWAYS);
377 }
175e1152 378 return ret;
45aba42f
KW
379}
380
70d1cbae
AG
381/*
382 * For a given L2 entry, count the number of contiguous subclusters of
383 * the same type starting from @sc_from. Compressed clusters are
384 * treated as if they were divided into subclusters of size
385 * s->subcluster_size.
386 *
387 * Return the number of contiguous subclusters and set @type to the
388 * subcluster type.
389 *
390 * If the L2 entry is invalid return -errno and set @type to
391 * QCOW2_SUBCLUSTER_INVALID.
392 */
70d1cbae
AG
393static int qcow2_get_subcluster_range_type(BlockDriverState *bs,
394 uint64_t l2_entry,
395 uint64_t l2_bitmap,
396 unsigned sc_from,
397 QCow2SubclusterType *type)
398{
399 BDRVQcow2State *s = bs->opaque;
400 uint32_t val;
401
402 *type = qcow2_get_subcluster_type(bs, l2_entry, l2_bitmap, sc_from);
403
404 if (*type == QCOW2_SUBCLUSTER_INVALID) {
405 return -EINVAL;
406 } else if (!has_subclusters(s) || *type == QCOW2_SUBCLUSTER_COMPRESSED) {
407 return s->subclusters_per_cluster - sc_from;
408 }
409
410 switch (*type) {
411 case QCOW2_SUBCLUSTER_NORMAL:
412 val = l2_bitmap | QCOW_OFLAG_SUB_ALLOC_RANGE(0, sc_from);
413 return cto32(val) - sc_from;
414
415 case QCOW2_SUBCLUSTER_ZERO_PLAIN:
416 case QCOW2_SUBCLUSTER_ZERO_ALLOC:
417 val = (l2_bitmap | QCOW_OFLAG_SUB_ZERO_RANGE(0, sc_from)) >> 32;
418 return cto32(val) - sc_from;
419
420 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN:
421 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC:
422 val = ((l2_bitmap >> 32) | l2_bitmap)
423 & ~QCOW_OFLAG_SUB_ALLOC_RANGE(0, sc_from);
424 return ctz32(val) - sc_from;
425
426 default:
427 g_assert_not_reached();
428 }
429}
430
2bfcc4a0 431/*
3f9c6b3b
AG
432 * Return the number of contiguous subclusters of the exact same type
433 * in a given L2 slice, starting from cluster @l2_index, subcluster
434 * @sc_index. Allocated subclusters are required to be contiguous in
435 * the image file.
436 * At most @nb_clusters are checked (note that this means clusters,
437 * not subclusters).
438 * Compressed clusters are always processed one by one but for the
439 * purpose of this count they are treated as if they were divided into
440 * subclusters of size s->subcluster_size.
441 * On failure return -errno and update @l2_index to point to the
442 * invalid entry.
2bfcc4a0 443 */
3f9c6b3b
AG
444static int count_contiguous_subclusters(BlockDriverState *bs, int nb_clusters,
445 unsigned sc_index, uint64_t *l2_slice,
446 unsigned *l2_index)
45aba42f 447{
12c6aebe 448 BDRVQcow2State *s = bs->opaque;
3f9c6b3b
AG
449 int i, count = 0;
450 bool check_offset = false;
451 uint64_t expected_offset = 0;
452 QCow2SubclusterType expected_type = QCOW2_SUBCLUSTER_NORMAL, type;
45aba42f 453
3f9c6b3b 454 assert(*l2_index + nb_clusters <= s->l2_slice_size);
15684a47 455
61653008 456 for (i = 0; i < nb_clusters; i++) {
3f9c6b3b
AG
457 unsigned first_sc = (i == 0) ? sc_index : 0;
458 uint64_t l2_entry = get_l2_entry(s, l2_slice, *l2_index + i);
459 uint64_t l2_bitmap = get_l2_bitmap(s, l2_slice, *l2_index + i);
460 int ret = qcow2_get_subcluster_range_type(bs, l2_entry, l2_bitmap,
461 first_sc, &type);
462 if (ret < 0) {
463 *l2_index += i; /* Point to the invalid entry */
464 return -EIO;
465 }
466 if (i == 0) {
467 if (type == QCOW2_SUBCLUSTER_COMPRESSED) {
468 /* Compressed clusters are always processed one by one */
469 return ret;
470 }
471 expected_type = type;
472 expected_offset = l2_entry & L2E_OFFSET_MASK;
473 check_offset = (type == QCOW2_SUBCLUSTER_NORMAL ||
474 type == QCOW2_SUBCLUSTER_ZERO_ALLOC ||
475 type == QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC);
476 } else if (type != expected_type) {
45aba42f 477 break;
3f9c6b3b
AG
478 } else if (check_offset) {
479 expected_offset += s->cluster_size;
480 if (expected_offset != (l2_entry & L2E_OFFSET_MASK)) {
481 break;
482 }
2bfcc4a0 483 }
3f9c6b3b
AG
484 count += ret;
485 /* Stop if there are type changes before the end of the cluster */
486 if (first_sc + ret < s->subclusters_per_cluster) {
2bfcc4a0
KW
487 break;
488 }
489 }
45aba42f 490
3f9c6b3b 491 return count;
45aba42f
KW
492}
493
7b1fb72e
KW
494static int coroutine_fn GRAPH_RDLOCK
495do_perform_cow_read(BlockDriverState *bs, uint64_t src_cluster_offset,
496 unsigned offset_in_cluster, QEMUIOVector *qiov)
45aba42f 497{
aaa4d20b 498 int ret;
1b9f1491 499
86b862c4 500 if (qiov->size == 0) {
99450c6f
AG
501 return 0;
502 }
503
66f82cee 504 BLKDBG_EVENT(bs->file, BLKDBG_COW_READ);
aef4acb6 505
dba28555 506 if (!bs->drv) {
672f0f2c 507 return -ENOMEDIUM;
dba28555
HR
508 }
509
f7ef38dd
VSO
510 /*
511 * We never deal with requests that don't satisfy
512 * bdrv_check_qiov_request(), and aligning requests to clusters never
513 * breaks this condition. So, do some assertions before calling
514 * bs->drv->bdrv_co_preadv_part() which has int64_t arguments.
515 */
516 assert(src_cluster_offset <= INT64_MAX);
517 assert(src_cluster_offset + offset_in_cluster <= INT64_MAX);
e7e588d4
HR
518 /* Cast qiov->size to uint64_t to silence a compiler warning on -m32 */
519 assert((uint64_t)qiov->size <= INT64_MAX);
f7ef38dd
VSO
520 bdrv_check_qiov_request(src_cluster_offset + offset_in_cluster, qiov->size,
521 qiov, 0, &error_abort);
522 /*
523 * Call .bdrv_co_readv() directly instead of using the public block-layer
aef4acb6
SH
524 * interface. This avoids double I/O throttling and request tracking,
525 * which can lead to deadlock when block layer copy-on-read is enabled.
526 */
df893d25
VSO
527 ret = bs->drv->bdrv_co_preadv_part(bs,
528 src_cluster_offset + offset_in_cluster,
529 qiov->size, qiov, 0, 0);
1b9f1491 530 if (ret < 0) {
672f0f2c 531 return ret;
1b9f1491
KW
532 }
533
672f0f2c
AG
534 return 0;
535}
536
b9b10c35
KW
537static int coroutine_fn GRAPH_RDLOCK
538do_perform_cow_write(BlockDriverState *bs, uint64_t cluster_offset,
539 unsigned offset_in_cluster, QEMUIOVector *qiov)
672f0f2c 540{
966b000f 541 BDRVQcow2State *s = bs->opaque;
672f0f2c
AG
542 int ret;
543
86b862c4 544 if (qiov->size == 0) {
672f0f2c
AG
545 return 0;
546 }
547
231bb267 548 ret = qcow2_pre_write_overlap_check(bs, 0,
966b000f 549 cluster_offset + offset_in_cluster, qiov->size, true);
cf93980e 550 if (ret < 0) {
672f0f2c 551 return ret;
cf93980e
HR
552 }
553
66f82cee 554 BLKDBG_EVENT(bs->file, BLKDBG_COW_WRITE);
966b000f 555 ret = bdrv_co_pwritev(s->data_file, cluster_offset + offset_in_cluster,
86b862c4 556 qiov->size, qiov, 0);
1b9f1491 557 if (ret < 0) {
672f0f2c 558 return ret;
1b9f1491
KW
559 }
560
672f0f2c 561 return 0;
45aba42f
KW
562}
563
564
565/*
388e5816 566 * get_host_offset
45aba42f 567 *
388e5816
AG
568 * For a given offset of the virtual disk find the equivalent host
569 * offset in the qcow2 file and store it in *host_offset. Neither
570 * offset needs to be aligned to a cluster boundary.
571 *
572 * If the cluster is unallocated then *host_offset will be 0.
9a3978a4 573 * If the cluster is compressed then *host_offset will contain the l2 entry.
45aba42f 574 *
ecfe1863
KW
575 * On entry, *bytes is the maximum number of contiguous bytes starting at
576 * offset that we are interested in.
45aba42f 577 *
ecfe1863 578 * On exit, *bytes is the number of bytes starting at offset that have the same
10dabdc5
AG
579 * subcluster type and (if applicable) are stored contiguously in the image
580 * file. The subcluster type is stored in *subcluster_type.
581 * Compressed clusters are always processed one by one.
45aba42f 582 *
ca4a0bb8 583 * Returns 0 on success, -errno in error cases.
45aba42f 584 */
388e5816 585int qcow2_get_host_offset(BlockDriverState *bs, uint64_t offset,
ca4a0bb8 586 unsigned int *bytes, uint64_t *host_offset,
10dabdc5 587 QCow2SubclusterType *subcluster_type)
45aba42f 588{
ff99129a 589 BDRVQcow2State *s = bs->opaque;
3f9c6b3b
AG
590 unsigned int l2_index, sc_index;
591 uint64_t l1_index, l2_offset, *l2_slice, l2_entry, l2_bitmap;
592 int sc;
c834cba9
HR
593 unsigned int offset_in_cluster;
594 uint64_t bytes_available, bytes_needed, nb_clusters;
3f9c6b3b 595 QCow2SubclusterType type;
55c17e98 596 int ret;
45aba42f 597
b2f65d6b 598 offset_in_cluster = offset_into_cluster(s, offset);
ecfe1863 599 bytes_needed = (uint64_t) *bytes + offset_in_cluster;
45aba42f 600
b2f65d6b 601 /* compute how many bytes there are between the start of the cluster
fd630039
AG
602 * containing offset and the end of the l2 slice that contains
603 * the entry pointing to it */
604 bytes_available =
605 ((uint64_t) (s->l2_slice_size - offset_to_l2_slice_index(s, offset)))
606 << s->cluster_bits;
45aba42f 607
b2f65d6b
KW
608 if (bytes_needed > bytes_available) {
609 bytes_needed = bytes_available;
45aba42f
KW
610 }
611
388e5816 612 *host_offset = 0;
45aba42f 613
b6af0975 614 /* seek to the l2 offset in the l1 table */
45aba42f 615
05b5b6ee 616 l1_index = offset_to_l1_index(s, offset);
68d000a3 617 if (l1_index >= s->l1_size) {
3f9c6b3b 618 type = QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN;
45aba42f 619 goto out;
68d000a3 620 }
45aba42f 621
68d000a3
KW
622 l2_offset = s->l1_table[l1_index] & L1E_OFFSET_MASK;
623 if (!l2_offset) {
3f9c6b3b 624 type = QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN;
45aba42f 625 goto out;
68d000a3 626 }
45aba42f 627
a97c67ee
HR
628 if (offset_into_cluster(s, l2_offset)) {
629 qcow2_signal_corruption(bs, true, -1, -1, "L2 table offset %#" PRIx64
630 " unaligned (L1 index: %#" PRIx64 ")",
631 l2_offset, l1_index);
632 return -EIO;
633 }
634
fd630039 635 /* load the l2 slice in memory */
45aba42f 636
fd630039 637 ret = l2_load(bs, offset, l2_offset, &l2_slice);
55c17e98
KW
638 if (ret < 0) {
639 return ret;
1c46efaa 640 }
45aba42f
KW
641
642 /* find the cluster offset for the given disk offset */
643
fd630039 644 l2_index = offset_to_l2_slice_index(s, offset);
3f9c6b3b 645 sc_index = offset_to_sc_index(s, offset);
12c6aebe 646 l2_entry = get_l2_entry(s, l2_slice, l2_index);
3f9c6b3b 647 l2_bitmap = get_l2_bitmap(s, l2_slice, l2_index);
b6d36def 648
b2f65d6b 649 nb_clusters = size_to_clusters(s, bytes_needed);
c834cba9
HR
650 /* bytes_needed <= *bytes + offset_in_cluster, both of which are unsigned
651 * integers; the minimum cluster size is 512, so this assertion is always
652 * true */
653 assert(nb_clusters <= INT_MAX);
45aba42f 654
3f9c6b3b
AG
655 type = qcow2_get_subcluster_type(bs, l2_entry, l2_bitmap, sc_index);
656 if (s->qcow_version < 3 && (type == QCOW2_SUBCLUSTER_ZERO_PLAIN ||
657 type == QCOW2_SUBCLUSTER_ZERO_ALLOC)) {
fdfab37d
EB
658 qcow2_signal_corruption(bs, true, -1, -1, "Zero cluster entry found"
659 " in pre-v3 image (L2 offset: %#" PRIx64
660 ", L2 index: %#x)", l2_offset, l2_index);
661 ret = -EIO;
662 goto fail;
663 }
3ef95218 664 switch (type) {
3f9c6b3b
AG
665 case QCOW2_SUBCLUSTER_INVALID:
666 break; /* This is handled by count_contiguous_subclusters() below */
667 case QCOW2_SUBCLUSTER_COMPRESSED:
966b000f
KW
668 if (has_data_file(bs)) {
669 qcow2_signal_corruption(bs, true, -1, -1, "Compressed cluster "
670 "entry found in image with external data "
671 "file (L2 offset: %#" PRIx64 ", L2 index: "
672 "%#x)", l2_offset, l2_index);
673 ret = -EIO;
674 goto fail;
675 }
9a3978a4 676 *host_offset = l2_entry;
68d000a3 677 break;
3f9c6b3b
AG
678 case QCOW2_SUBCLUSTER_ZERO_PLAIN:
679 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN:
68d000a3 680 break;
3f9c6b3b
AG
681 case QCOW2_SUBCLUSTER_ZERO_ALLOC:
682 case QCOW2_SUBCLUSTER_NORMAL:
683 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC: {
388e5816
AG
684 uint64_t host_cluster_offset = l2_entry & L2E_OFFSET_MASK;
685 *host_offset = host_cluster_offset + offset_in_cluster;
388e5816 686 if (offset_into_cluster(s, host_cluster_offset)) {
fdfab37d
EB
687 qcow2_signal_corruption(bs, true, -1, -1,
688 "Cluster allocation offset %#"
a97c67ee 689 PRIx64 " unaligned (L2 offset: %#" PRIx64
388e5816 690 ", L2 index: %#x)", host_cluster_offset,
a97c67ee
HR
691 l2_offset, l2_index);
692 ret = -EIO;
693 goto fail;
694 }
388e5816 695 if (has_data_file(bs) && *host_offset != offset) {
966b000f
KW
696 qcow2_signal_corruption(bs, true, -1, -1,
697 "External data file host cluster offset %#"
698 PRIx64 " does not match guest cluster "
699 "offset: %#" PRIx64
388e5816 700 ", L2 index: %#x)", host_cluster_offset,
966b000f
KW
701 offset - offset_in_cluster, l2_index);
702 ret = -EIO;
703 goto fail;
704 }
68d000a3 705 break;
388e5816 706 }
1417d7e4
KW
707 default:
708 abort();
45aba42f
KW
709 }
710
3f9c6b3b
AG
711 sc = count_contiguous_subclusters(bs, nb_clusters, sc_index,
712 l2_slice, &l2_index);
713 if (sc < 0) {
714 qcow2_signal_corruption(bs, true, -1, -1, "Invalid cluster entry found "
715 " (L2 offset: %#" PRIx64 ", L2 index: %#x)",
716 l2_offset, l2_index);
717 ret = -EIO;
718 goto fail;
719 }
fd630039 720 qcow2_cache_put(s->l2_table_cache, (void **) &l2_slice);
29c1a730 721
3f9c6b3b 722 bytes_available = ((int64_t)sc + sc_index) << s->subcluster_bits;
68d000a3 723
45aba42f 724out:
b2f65d6b
KW
725 if (bytes_available > bytes_needed) {
726 bytes_available = bytes_needed;
727 }
45aba42f 728
c834cba9
HR
729 /* bytes_available <= bytes_needed <= *bytes + offset_in_cluster;
730 * subtracting offset_in_cluster will therefore definitely yield something
731 * not exceeding UINT_MAX */
732 assert(bytes_available - offset_in_cluster <= UINT_MAX);
ecfe1863 733 *bytes = bytes_available - offset_in_cluster;
45aba42f 734
3f9c6b3b 735 *subcluster_type = type;
ca4a0bb8
AG
736
737 return 0;
a97c67ee
HR
738
739fail:
fd630039 740 qcow2_cache_put(s->l2_table_cache, (void **)&l2_slice);
a97c67ee 741 return ret;
45aba42f
KW
742}
743
744/*
745 * get_cluster_table
746 *
747 * for a given disk offset, load (and allocate if needed)
c03bfc5b 748 * the appropriate slice of its l2 table.
45aba42f 749 *
c03bfc5b 750 * the cluster index in the l2 slice is given to the caller.
45aba42f 751 *
1e3e8f1a 752 * Returns 0 on success, -errno in failure case
45aba42f 753 */
45aba42f 754static int get_cluster_table(BlockDriverState *bs, uint64_t offset,
c03bfc5b 755 uint64_t **new_l2_slice,
45aba42f
KW
756 int *new_l2_index)
757{
ff99129a 758 BDRVQcow2State *s = bs->opaque;
2cf7cfa1
KW
759 unsigned int l2_index;
760 uint64_t l1_index, l2_offset;
c03bfc5b 761 uint64_t *l2_slice = NULL;
80ee15a6 762 int ret;
45aba42f 763
b6af0975 764 /* seek to the l2 offset in the l1 table */
45aba42f 765
05b5b6ee 766 l1_index = offset_to_l1_index(s, offset);
45aba42f 767 if (l1_index >= s->l1_size) {
72893756 768 ret = qcow2_grow_l1_table(bs, l1_index + 1, false);
1e3e8f1a
KW
769 if (ret < 0) {
770 return ret;
771 }
45aba42f 772 }
8e37f681 773
2cf7cfa1 774 assert(l1_index < s->l1_size);
8e37f681 775 l2_offset = s->l1_table[l1_index] & L1E_OFFSET_MASK;
a97c67ee
HR
776 if (offset_into_cluster(s, l2_offset)) {
777 qcow2_signal_corruption(bs, true, -1, -1, "L2 table offset %#" PRIx64
778 " unaligned (L1 index: %#" PRIx64 ")",
779 l2_offset, l1_index);
780 return -EIO;
781 }
45aba42f 782
05f9ee46 783 if (!(s->l1_table[l1_index] & QCOW_OFLAG_COPIED)) {
16fde5f2 784 /* First allocate a new L2 table (and do COW if needed) */
3861946a 785 ret = l2_allocate(bs, l1_index);
c46e1167
KW
786 if (ret < 0) {
787 return ret;
1e3e8f1a 788 }
16fde5f2
KW
789
790 /* Then decrease the refcount of the old table */
791 if (l2_offset) {
c8fd8554 792 qcow2_free_clusters(bs, l2_offset, s->l2_size * l2_entry_size(s),
6cfcb9b8 793 QCOW2_DISCARD_OTHER);
16fde5f2 794 }
3861946a
AG
795
796 /* Get the offset of the newly-allocated l2 table */
797 l2_offset = s->l1_table[l1_index] & L1E_OFFSET_MASK;
798 assert(offset_into_cluster(s, l2_offset) == 0);
05f9ee46
AG
799 }
800
c03bfc5b
AG
801 /* load the l2 slice in memory */
802 ret = l2_load(bs, offset, l2_offset, &l2_slice);
05f9ee46
AG
803 if (ret < 0) {
804 return ret;
45aba42f
KW
805 }
806
807 /* find the cluster offset for the given disk offset */
808
c03bfc5b 809 l2_index = offset_to_l2_slice_index(s, offset);
45aba42f 810
c03bfc5b 811 *new_l2_slice = l2_slice;
45aba42f
KW
812 *new_l2_index = l2_index;
813
1e3e8f1a 814 return 0;
45aba42f
KW
815}
816
817/*
818 * alloc_compressed_cluster_offset
819 *
77e023ff
KW
820 * For a given offset on the virtual disk, allocate a new compressed cluster
821 * and put the host offset of the cluster into *host_offset. If a cluster is
822 * already allocated at the offset, return an error.
45aba42f 823 *
77e023ff 824 * Return 0 on success and -errno in error cases
45aba42f 825 */
a1b4ecfd
PB
826int coroutine_fn qcow2_alloc_compressed_cluster_offset(BlockDriverState *bs,
827 uint64_t offset,
828 int compressed_size,
829 uint64_t *host_offset)
45aba42f 830{
ff99129a 831 BDRVQcow2State *s = bs->opaque;
45aba42f 832 int l2_index, ret;
e4e72548 833 uint64_t *l2_slice;
f4f0d391 834 int64_t cluster_offset;
45aba42f
KW
835 int nb_csectors;
836
966b000f
KW
837 if (has_data_file(bs)) {
838 return 0;
839 }
840
e4e72548 841 ret = get_cluster_table(bs, offset, &l2_slice, &l2_index);
1e3e8f1a 842 if (ret < 0) {
77e023ff 843 return ret;
1e3e8f1a 844 }
45aba42f 845
b0b6862e
KW
846 /* Compression can't overwrite anything. Fail if the cluster was already
847 * allocated. */
12c6aebe 848 cluster_offset = get_l2_entry(s, l2_slice, l2_index);
b0b6862e 849 if (cluster_offset & L2E_OFFSET_MASK) {
e4e72548 850 qcow2_cache_put(s->l2_table_cache, (void **) &l2_slice);
77e023ff 851 return -EIO;
8f1efd00 852 }
45aba42f 853
ed6ccf0f 854 cluster_offset = qcow2_alloc_bytes(bs, compressed_size);
5d757b56 855 if (cluster_offset < 0) {
e4e72548 856 qcow2_cache_put(s->l2_table_cache, (void **) &l2_slice);
77e023ff 857 return cluster_offset;
5d757b56
KW
858 }
859
b6c24694
AG
860 nb_csectors =
861 (cluster_offset + compressed_size - 1) / QCOW2_COMPRESSED_SECTOR_SIZE -
862 (cluster_offset / QCOW2_COMPRESSED_SECTOR_SIZE);
45aba42f 863
3a75a870
AG
864 /* The offset and size must fit in their fields of the L2 table entry */
865 assert((cluster_offset & s->cluster_offset_mask) == cluster_offset);
866 assert((nb_csectors & s->csize_mask) == nb_csectors);
867
45aba42f
KW
868 cluster_offset |= QCOW_OFLAG_COMPRESSED |
869 ((uint64_t)nb_csectors << s->csize_shift);
870
871 /* update L2 table */
872
873 /* compressed clusters never have the copied flag */
874
66f82cee 875 BLKDBG_EVENT(bs->file, BLKDBG_L2_UPDATE_COMPRESSED);
e4e72548 876 qcow2_cache_entry_mark_dirty(s->l2_table_cache, l2_slice);
12c6aebe 877 set_l2_entry(s, l2_slice, l2_index, cluster_offset);
ff4cdec7
AG
878 if (has_subclusters(s)) {
879 set_l2_bitmap(s, l2_slice, l2_index, 0);
880 }
e4e72548 881 qcow2_cache_put(s->l2_table_cache, (void **) &l2_slice);
4c1612d9 882
77e023ff
KW
883 *host_offset = cluster_offset & s->cluster_offset_mask;
884 return 0;
4c1612d9
KW
885}
886
7b1fb72e
KW
887static int coroutine_fn GRAPH_RDLOCK
888perform_cow(BlockDriverState *bs, QCowL2Meta *m)
593fb83c 889{
ff99129a 890 BDRVQcow2State *s = bs->opaque;
99450c6f
AG
891 Qcow2COWRegion *start = &m->cow_start;
892 Qcow2COWRegion *end = &m->cow_end;
672f0f2c 893 unsigned buffer_size;
b3cf1c7c
AG
894 unsigned data_bytes = end->offset - (start->offset + start->nb_bytes);
895 bool merge_reads;
672f0f2c 896 uint8_t *start_buffer, *end_buffer;
86b862c4 897 QEMUIOVector qiov;
593fb83c
KW
898 int ret;
899
672f0f2c 900 assert(start->nb_bytes <= UINT_MAX - end->nb_bytes);
b3cf1c7c
AG
901 assert(start->nb_bytes + end->nb_bytes <= UINT_MAX - data_bytes);
902 assert(start->offset + start->nb_bytes <= end->offset);
672f0f2c 903
c8bb23cb 904 if ((start->nb_bytes == 0 && end->nb_bytes == 0) || m->skip_cow) {
593fb83c
KW
905 return 0;
906 }
907
b3cf1c7c
AG
908 /* If we have to read both the start and end COW regions and the
909 * middle region is not too large then perform just one read
910 * operation */
911 merge_reads = start->nb_bytes && end->nb_bytes && data_bytes <= 16384;
912 if (merge_reads) {
913 buffer_size = start->nb_bytes + data_bytes + end->nb_bytes;
914 } else {
915 /* If we have to do two reads, add some padding in the middle
916 * if necessary to make sure that the end region is optimally
917 * aligned. */
918 size_t align = bdrv_opt_mem_align(bs);
919 assert(align > 0 && align <= UINT_MAX);
920 assert(QEMU_ALIGN_UP(start->nb_bytes, align) <=
921 UINT_MAX - end->nb_bytes);
922 buffer_size = QEMU_ALIGN_UP(start->nb_bytes, align) + end->nb_bytes;
923 }
924
925 /* Reserve a buffer large enough to store all the data that we're
926 * going to read */
672f0f2c
AG
927 start_buffer = qemu_try_blockalign(bs, buffer_size);
928 if (start_buffer == NULL) {
929 return -ENOMEM;
930 }
931 /* The part of the buffer where the end region is located */
932 end_buffer = start_buffer + buffer_size - end->nb_bytes;
933
5396234b
VSO
934 qemu_iovec_init(&qiov, 2 + (m->data_qiov ?
935 qemu_iovec_subvec_niov(m->data_qiov,
936 m->data_qiov_offset,
937 data_bytes)
938 : 0));
86b862c4 939
593fb83c 940 qemu_co_mutex_unlock(&s->lock);
b3cf1c7c
AG
941 /* First we read the existing data from both COW regions. We
942 * either read the whole region in one go, or the start and end
943 * regions separately. */
944 if (merge_reads) {
86b862c4
AG
945 qemu_iovec_add(&qiov, start_buffer, buffer_size);
946 ret = do_perform_cow_read(bs, m->offset, start->offset, &qiov);
b3cf1c7c 947 } else {
86b862c4
AG
948 qemu_iovec_add(&qiov, start_buffer, start->nb_bytes);
949 ret = do_perform_cow_read(bs, m->offset, start->offset, &qiov);
b3cf1c7c
AG
950 if (ret < 0) {
951 goto fail;
952 }
672f0f2c 953
86b862c4
AG
954 qemu_iovec_reset(&qiov);
955 qemu_iovec_add(&qiov, end_buffer, end->nb_bytes);
956 ret = do_perform_cow_read(bs, m->offset, end->offset, &qiov);
b3cf1c7c 957 }
593fb83c 958 if (ret < 0) {
99450c6f 959 goto fail;
593fb83c
KW
960 }
961
672f0f2c
AG
962 /* Encrypt the data if necessary before writing it */
963 if (bs->encrypted) {
603fbd07
ML
964 ret = qcow2_co_encrypt(bs,
965 m->alloc_offset + start->offset,
966 m->offset + start->offset,
967 start_buffer, start->nb_bytes);
968 if (ret < 0) {
969 goto fail;
970 }
971
972 ret = qcow2_co_encrypt(bs,
973 m->alloc_offset + end->offset,
974 m->offset + end->offset,
975 end_buffer, end->nb_bytes);
976 if (ret < 0) {
672f0f2c
AG
977 goto fail;
978 }
979 }
980
ee22a9d8
AG
981 /* And now we can write everything. If we have the guest data we
982 * can write everything in one single operation */
983 if (m->data_qiov) {
984 qemu_iovec_reset(&qiov);
985 if (start->nb_bytes) {
986 qemu_iovec_add(&qiov, start_buffer, start->nb_bytes);
987 }
5396234b 988 qemu_iovec_concat(&qiov, m->data_qiov, m->data_qiov_offset, data_bytes);
ee22a9d8
AG
989 if (end->nb_bytes) {
990 qemu_iovec_add(&qiov, end_buffer, end->nb_bytes);
991 }
992 /* NOTE: we have a write_aio blkdebug event here followed by
993 * a cow_write one in do_perform_cow_write(), but there's only
994 * one single I/O operation */
995 BLKDBG_EVENT(bs->file, BLKDBG_WRITE_AIO);
996 ret = do_perform_cow_write(bs, m->alloc_offset, start->offset, &qiov);
997 } else {
998 /* If there's no guest data then write both COW regions separately */
999 qemu_iovec_reset(&qiov);
1000 qemu_iovec_add(&qiov, start_buffer, start->nb_bytes);
1001 ret = do_perform_cow_write(bs, m->alloc_offset, start->offset, &qiov);
1002 if (ret < 0) {
1003 goto fail;
1004 }
1005
1006 qemu_iovec_reset(&qiov);
1007 qemu_iovec_add(&qiov, end_buffer, end->nb_bytes);
1008 ret = do_perform_cow_write(bs, m->alloc_offset, end->offset, &qiov);
672f0f2c 1009 }
99450c6f
AG
1010
1011fail:
1012 qemu_co_mutex_lock(&s->lock);
1013
593fb83c
KW
1014 /*
1015 * Before we update the L2 table to actually point to the new cluster, we
1016 * need to be sure that the refcounts have been increased and COW was
1017 * handled.
1018 */
99450c6f
AG
1019 if (ret == 0) {
1020 qcow2_cache_depends_on_flush(s->l2_table_cache);
1021 }
593fb83c 1022
672f0f2c 1023 qemu_vfree(start_buffer);
86b862c4 1024 qemu_iovec_destroy(&qiov);
99450c6f 1025 return ret;
593fb83c
KW
1026}
1027
050ed2e7
PB
1028int coroutine_fn qcow2_alloc_cluster_link_l2(BlockDriverState *bs,
1029 QCowL2Meta *m)
45aba42f 1030{
ff99129a 1031 BDRVQcow2State *s = bs->opaque;
45aba42f 1032 int i, j = 0, l2_index, ret;
a002c0b0 1033 uint64_t *old_cluster, *l2_slice;
250196f1 1034 uint64_t cluster_offset = m->alloc_offset;
45aba42f 1035
3cce16f4 1036 trace_qcow2_cluster_link_l2(qemu_coroutine_self(), m->nb_clusters);
f50f88b9 1037 assert(m->nb_clusters > 0);
45aba42f 1038
5839e53b 1039 old_cluster = g_try_new(uint64_t, m->nb_clusters);
de82815d
KW
1040 if (old_cluster == NULL) {
1041 ret = -ENOMEM;
1042 goto err;
1043 }
45aba42f
KW
1044
1045 /* copy content of unmodified sectors */
99450c6f 1046 ret = perform_cow(bs, m);
593fb83c
KW
1047 if (ret < 0) {
1048 goto err;
29c1a730
KW
1049 }
1050
593fb83c 1051 /* Update L2 table. */
74c4510a 1052 if (s->use_lazy_refcounts) {
280d3735
KW
1053 qcow2_mark_dirty(bs);
1054 }
bfe8043e
SH
1055 if (qcow2_need_accurate_refcounts(s)) {
1056 qcow2_cache_set_dependency(bs, s->l2_table_cache,
1057 s->refcount_block_cache);
1058 }
280d3735 1059
a002c0b0 1060 ret = get_cluster_table(bs, m->offset, &l2_slice, &l2_index);
1e3e8f1a 1061 if (ret < 0) {
45aba42f 1062 goto err;
1e3e8f1a 1063 }
a002c0b0 1064 qcow2_cache_entry_mark_dirty(s->l2_table_cache, l2_slice);
45aba42f 1065
a002c0b0 1066 assert(l2_index + m->nb_clusters <= s->l2_slice_size);
3441ad4b
AG
1067 assert(m->cow_end.offset + m->cow_end.nb_bytes <=
1068 m->nb_clusters << s->cluster_bits);
45aba42f 1069 for (i = 0; i < m->nb_clusters; i++) {
348fcc4f 1070 uint64_t offset = cluster_offset + ((uint64_t)i << s->cluster_bits);
45aba42f 1071 /* if two concurrent writes happen to the same unallocated cluster
aaa4d20b
KW
1072 * each write allocates separate cluster and writes data concurrently.
1073 * The first one to complete updates l2 table with pointer to its
1074 * cluster the second one has to do RMW (which is done above by
1075 * perform_cow()), update l2 table with its cluster pointer and free
1076 * old cluster. This is what this loop does */
12c6aebe
AG
1077 if (get_l2_entry(s, l2_slice, l2_index + i) != 0) {
1078 old_cluster[j++] = get_l2_entry(s, l2_slice, l2_index + i);
aaa4d20b 1079 }
45aba42f 1080
3a75a870
AG
1081 /* The offset must fit in the offset field of the L2 table entry */
1082 assert((offset & L2E_OFFSET_MASK) == offset);
1083
12c6aebe 1084 set_l2_entry(s, l2_slice, l2_index + i, offset | QCOW_OFLAG_COPIED);
aca00cd9
AG
1085
1086 /* Update bitmap with the subclusters that were just written */
40dee943 1087 if (has_subclusters(s) && !m->prealloc) {
aca00cd9
AG
1088 uint64_t l2_bitmap = get_l2_bitmap(s, l2_slice, l2_index + i);
1089 unsigned written_from = m->cow_start.offset;
3441ad4b 1090 unsigned written_to = m->cow_end.offset + m->cow_end.nb_bytes;
aca00cd9
AG
1091 int first_sc, last_sc;
1092 /* Narrow written_from and written_to down to the current cluster */
1093 written_from = MAX(written_from, i << s->cluster_bits);
1094 written_to = MIN(written_to, (i + 1) << s->cluster_bits);
1095 assert(written_from < written_to);
1096 first_sc = offset_to_sc_index(s, written_from);
1097 last_sc = offset_to_sc_index(s, written_to - 1);
1098 l2_bitmap |= QCOW_OFLAG_SUB_ALLOC_RANGE(first_sc, last_sc + 1);
1099 l2_bitmap &= ~QCOW_OFLAG_SUB_ZERO_RANGE(first_sc, last_sc + 1);
1100 set_l2_bitmap(s, l2_slice, l2_index + i, l2_bitmap);
1101 }
45aba42f
KW
1102 }
1103
9f8e668e 1104
a002c0b0 1105 qcow2_cache_put(s->l2_table_cache, (void **) &l2_slice);
45aba42f 1106
7ec5e6a4
KW
1107 /*
1108 * If this was a COW, we need to decrease the refcount of the old cluster.
6cfcb9b8
KW
1109 *
1110 * Don't discard clusters that reach a refcount of 0 (e.g. compressed
1111 * clusters), the next write will reuse them anyway.
7ec5e6a4 1112 */
564a6b69 1113 if (!m->keep_old_clusters && j != 0) {
7ec5e6a4 1114 for (i = 0; i < j; i++) {
3fec237f 1115 qcow2_free_any_cluster(bs, old_cluster[i], QCOW2_DISCARD_NEVER);
7ec5e6a4
KW
1116 }
1117 }
45aba42f
KW
1118
1119 ret = 0;
1120err:
7267c094 1121 g_free(old_cluster);
45aba42f
KW
1122 return ret;
1123 }
1124
8b24cd14
KW
1125/**
1126 * Frees the allocated clusters because the request failed and they won't
1127 * actually be linked.
1128 */
1129void qcow2_alloc_cluster_abort(BlockDriverState *bs, QCowL2Meta *m)
1130{
1131 BDRVQcow2State *s = bs->opaque;
3ede935f 1132 if (!has_data_file(bs) && !m->keep_old_clusters) {
c3b6658c
KW
1133 qcow2_free_clusters(bs, m->alloc_offset,
1134 m->nb_clusters << s->cluster_bits,
1135 QCOW2_DISCARD_NEVER);
1136 }
8b24cd14
KW
1137}
1138
8f91d690
AG
1139/*
1140 * For a given write request, create a new QCowL2Meta structure, add
57538c86
AG
1141 * it to @m and the BDRVQcow2State.cluster_allocs list. If the write
1142 * request does not need copy-on-write or changes to the L2 metadata
1143 * then this function does nothing.
8f91d690
AG
1144 *
1145 * @host_cluster_offset points to the beginning of the first cluster.
1146 *
1147 * @guest_offset and @bytes indicate the offset and length of the
1148 * request.
1149 *
57538c86
AG
1150 * @l2_slice contains the L2 entries of all clusters involved in this
1151 * write request.
1152 *
8f91d690
AG
1153 * If @keep_old is true it means that the clusters were already
1154 * allocated and will be overwritten. If false then the clusters are
1155 * new and we have to decrease the reference count of the old ones.
d53ec3d8
AG
1156 *
1157 * Returns 0 on success, -errno on failure.
8f91d690 1158 */
d53ec3d8
AG
1159static int calculate_l2_meta(BlockDriverState *bs, uint64_t host_cluster_offset,
1160 uint64_t guest_offset, unsigned bytes,
1161 uint64_t *l2_slice, QCowL2Meta **m, bool keep_old)
8f91d690
AG
1162{
1163 BDRVQcow2State *s = bs->opaque;
d53ec3d8
AG
1164 int sc_index, l2_index = offset_to_l2_slice_index(s, guest_offset);
1165 uint64_t l2_entry, l2_bitmap;
57538c86 1166 unsigned cow_start_from, cow_end_to;
8f91d690
AG
1167 unsigned cow_start_to = offset_into_cluster(s, guest_offset);
1168 unsigned cow_end_from = cow_start_to + bytes;
8f91d690
AG
1169 unsigned nb_clusters = size_to_clusters(s, cow_end_from);
1170 QCowL2Meta *old_m = *m;
d53ec3d8
AG
1171 QCow2SubclusterType type;
1172 int i;
1173 bool skip_cow = keep_old;
57538c86
AG
1174
1175 assert(nb_clusters <= s->l2_slice_size - l2_index);
1176
d53ec3d8
AG
1177 /* Check the type of all affected subclusters */
1178 for (i = 0; i < nb_clusters; i++) {
1179 l2_entry = get_l2_entry(s, l2_slice, l2_index + i);
1180 l2_bitmap = get_l2_bitmap(s, l2_slice, l2_index + i);
1181 if (skip_cow) {
1182 unsigned write_from = MAX(cow_start_to, i << s->cluster_bits);
1183 unsigned write_to = MIN(cow_end_from, (i + 1) << s->cluster_bits);
1184 int first_sc = offset_to_sc_index(s, write_from);
1185 int last_sc = offset_to_sc_index(s, write_to - 1);
1186 int cnt = qcow2_get_subcluster_range_type(bs, l2_entry, l2_bitmap,
1187 first_sc, &type);
1188 /* Is any of the subclusters of type != QCOW2_SUBCLUSTER_NORMAL ? */
1189 if (type != QCOW2_SUBCLUSTER_NORMAL || first_sc + cnt <= last_sc) {
1190 skip_cow = false;
57538c86 1191 }
d53ec3d8
AG
1192 } else {
1193 /* If we can't skip the cow we can still look for invalid entries */
1194 type = qcow2_get_subcluster_type(bs, l2_entry, l2_bitmap, 0);
57538c86 1195 }
d53ec3d8
AG
1196 if (type == QCOW2_SUBCLUSTER_INVALID) {
1197 int l1_index = offset_to_l1_index(s, guest_offset);
1198 uint64_t l2_offset = s->l1_table[l1_index] & L1E_OFFSET_MASK;
1199 qcow2_signal_corruption(bs, true, -1, -1, "Invalid cluster "
1200 "entry found (L2 offset: %#" PRIx64
1201 ", L2 index: %#x)",
1202 l2_offset, l2_index + i);
1203 return -EIO;
57538c86
AG
1204 }
1205 }
1206
d53ec3d8
AG
1207 if (skip_cow) {
1208 return 0;
1209 }
1210
57538c86 1211 /* Get the L2 entry of the first cluster */
12c6aebe 1212 l2_entry = get_l2_entry(s, l2_slice, l2_index);
d53ec3d8
AG
1213 l2_bitmap = get_l2_bitmap(s, l2_slice, l2_index);
1214 sc_index = offset_to_sc_index(s, guest_offset);
1215 type = qcow2_get_subcluster_type(bs, l2_entry, l2_bitmap, sc_index);
1216
1217 if (!keep_old) {
1218 switch (type) {
1219 case QCOW2_SUBCLUSTER_COMPRESSED:
1220 cow_start_from = 0;
1221 break;
1222 case QCOW2_SUBCLUSTER_NORMAL:
1223 case QCOW2_SUBCLUSTER_ZERO_ALLOC:
1224 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC:
1225 if (has_subclusters(s)) {
1226 /* Skip all leading zero and unallocated subclusters */
1227 uint32_t alloc_bitmap = l2_bitmap & QCOW_L2_BITMAP_ALL_ALLOC;
1228 cow_start_from =
1229 MIN(sc_index, ctz32(alloc_bitmap)) << s->subcluster_bits;
1230 } else {
1231 cow_start_from = 0;
1232 }
1233 break;
1234 case QCOW2_SUBCLUSTER_ZERO_PLAIN:
1235 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN:
1236 cow_start_from = sc_index << s->subcluster_bits;
1237 break;
1238 default:
1239 g_assert_not_reached();
1240 }
57538c86 1241 } else {
d53ec3d8
AG
1242 switch (type) {
1243 case QCOW2_SUBCLUSTER_NORMAL:
1244 cow_start_from = cow_start_to;
1245 break;
1246 case QCOW2_SUBCLUSTER_ZERO_ALLOC:
1247 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC:
1248 cow_start_from = sc_index << s->subcluster_bits;
1249 break;
1250 default:
1251 g_assert_not_reached();
1252 }
57538c86
AG
1253 }
1254
1255 /* Get the L2 entry of the last cluster */
d53ec3d8
AG
1256 l2_index += nb_clusters - 1;
1257 l2_entry = get_l2_entry(s, l2_slice, l2_index);
1258 l2_bitmap = get_l2_bitmap(s, l2_slice, l2_index);
1259 sc_index = offset_to_sc_index(s, guest_offset + bytes - 1);
1260 type = qcow2_get_subcluster_type(bs, l2_entry, l2_bitmap, sc_index);
1261
1262 if (!keep_old) {
1263 switch (type) {
1264 case QCOW2_SUBCLUSTER_COMPRESSED:
1265 cow_end_to = ROUND_UP(cow_end_from, s->cluster_size);
1266 break;
1267 case QCOW2_SUBCLUSTER_NORMAL:
1268 case QCOW2_SUBCLUSTER_ZERO_ALLOC:
1269 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC:
1270 cow_end_to = ROUND_UP(cow_end_from, s->cluster_size);
1271 if (has_subclusters(s)) {
1272 /* Skip all trailing zero and unallocated subclusters */
1273 uint32_t alloc_bitmap = l2_bitmap & QCOW_L2_BITMAP_ALL_ALLOC;
1274 cow_end_to -=
1275 MIN(s->subclusters_per_cluster - sc_index - 1,
1276 clz32(alloc_bitmap)) << s->subcluster_bits;
1277 }
1278 break;
1279 case QCOW2_SUBCLUSTER_ZERO_PLAIN:
1280 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN:
1281 cow_end_to = ROUND_UP(cow_end_from, s->subcluster_size);
1282 break;
1283 default:
1284 g_assert_not_reached();
1285 }
57538c86 1286 } else {
d53ec3d8
AG
1287 switch (type) {
1288 case QCOW2_SUBCLUSTER_NORMAL:
1289 cow_end_to = cow_end_from;
1290 break;
1291 case QCOW2_SUBCLUSTER_ZERO_ALLOC:
1292 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC:
1293 cow_end_to = ROUND_UP(cow_end_from, s->subcluster_size);
1294 break;
1295 default:
1296 g_assert_not_reached();
1297 }
57538c86 1298 }
8f91d690
AG
1299
1300 *m = g_malloc0(sizeof(**m));
1301 **m = (QCowL2Meta) {
1302 .next = old_m,
1303
1304 .alloc_offset = host_cluster_offset,
1305 .offset = start_of_cluster(s, guest_offset),
1306 .nb_clusters = nb_clusters,
1307
1308 .keep_old_clusters = keep_old,
1309
1310 .cow_start = {
1311 .offset = cow_start_from,
1312 .nb_bytes = cow_start_to - cow_start_from,
1313 },
1314 .cow_end = {
1315 .offset = cow_end_from,
1316 .nb_bytes = cow_end_to - cow_end_from,
1317 },
1318 };
1319
1320 qemu_co_queue_init(&(*m)->dependent_requests);
1321 QLIST_INSERT_HEAD(&s->cluster_allocs, *m, next_in_flight);
d53ec3d8
AG
1322
1323 return 0;
8f91d690
AG
1324}
1325
57538c86
AG
1326/*
1327 * Returns true if writing to the cluster pointed to by @l2_entry
1328 * requires a new allocation (that is, if the cluster is unallocated
1329 * or has refcount > 1 and therefore cannot be written in-place).
1330 */
1331static bool cluster_needs_new_alloc(BlockDriverState *bs, uint64_t l2_entry)
c1587d87
AG
1332{
1333 switch (qcow2_get_cluster_type(bs, l2_entry)) {
1334 case QCOW2_CLUSTER_NORMAL:
57538c86 1335 case QCOW2_CLUSTER_ZERO_ALLOC:
c1587d87
AG
1336 if (l2_entry & QCOW_OFLAG_COPIED) {
1337 return false;
1338 }
b9be6fae 1339 /* fallthrough */
c1587d87
AG
1340 case QCOW2_CLUSTER_UNALLOCATED:
1341 case QCOW2_CLUSTER_COMPRESSED:
1342 case QCOW2_CLUSTER_ZERO_PLAIN:
c1587d87
AG
1343 return true;
1344 default:
1345 abort();
1346 }
1347}
1348
bf319ece 1349/*
57538c86
AG
1350 * Returns the number of contiguous clusters that can be written to
1351 * using one single write request, starting from @l2_index.
1352 * At most @nb_clusters are checked.
1353 *
1354 * If @new_alloc is true this counts clusters that are either
1355 * unallocated, or allocated but with refcount > 1 (so they need to be
1356 * newly allocated and COWed).
1357 *
1358 * If @new_alloc is false this counts clusters that are already
1359 * allocated and can be overwritten in-place (this includes clusters
1360 * of type QCOW2_CLUSTER_ZERO_ALLOC).
bf319ece 1361 */
57538c86
AG
1362static int count_single_write_clusters(BlockDriverState *bs, int nb_clusters,
1363 uint64_t *l2_slice, int l2_index,
1364 bool new_alloc)
bf319ece 1365{
57538c86 1366 BDRVQcow2State *s = bs->opaque;
12c6aebe 1367 uint64_t l2_entry = get_l2_entry(s, l2_slice, l2_index);
57538c86 1368 uint64_t expected_offset = l2_entry & L2E_OFFSET_MASK;
143550a8 1369 int i;
bf319ece 1370
143550a8 1371 for (i = 0; i < nb_clusters; i++) {
12c6aebe 1372 l2_entry = get_l2_entry(s, l2_slice, l2_index + i);
57538c86 1373 if (cluster_needs_new_alloc(bs, l2_entry) != new_alloc) {
bf319ece 1374 break;
143550a8 1375 }
57538c86
AG
1376 if (!new_alloc) {
1377 if (expected_offset != (l2_entry & L2E_OFFSET_MASK)) {
1378 break;
1379 }
1380 expected_offset += s->cluster_size;
1381 }
bf319ece
KW
1382 }
1383
1384 assert(i <= nb_clusters);
1385 return i;
1386}
1387
250196f1 1388/*
226c3c26
KW
1389 * Check if there already is an AIO write request in flight which allocates
1390 * the same cluster. In this case we need to wait until the previous
1391 * request has completed and updated the L2 table accordingly.
65eb2e35
KW
1392 *
1393 * Returns:
1394 * 0 if there was no dependency. *cur_bytes indicates the number of
1395 * bytes from guest_offset that can be read before the next
1396 * dependency must be processed (or the request is complete)
1397 *
1398 * -EAGAIN if we had to wait for another request, previously gathered
1399 * information on cluster allocation may be invalid now. The caller
1400 * must start over anyway, so consider *cur_bytes undefined.
250196f1 1401 */
050ed2e7
PB
1402static int coroutine_fn handle_dependencies(BlockDriverState *bs,
1403 uint64_t guest_offset,
1404 uint64_t *cur_bytes, QCowL2Meta **m)
250196f1 1405{
ff99129a 1406 BDRVQcow2State *s = bs->opaque;
250196f1 1407 QCowL2Meta *old_alloc;
65eb2e35 1408 uint64_t bytes = *cur_bytes;
250196f1 1409
250196f1
KW
1410 QLIST_FOREACH(old_alloc, &s->cluster_allocs, next_in_flight) {
1411
65eb2e35
KW
1412 uint64_t start = guest_offset;
1413 uint64_t end = start + bytes;
d53ec3d8
AG
1414 uint64_t old_start = start_of_cluster(s, l2meta_cow_start(old_alloc));
1415 uint64_t old_end = ROUND_UP(l2meta_cow_end(old_alloc), s->cluster_size);
250196f1 1416
d9d74f41 1417 if (end <= old_start || start >= old_end) {
250196f1 1418 /* No intersection */
6d207d35
VSO
1419 continue;
1420 }
1421
ff812c55
VSO
1422 if (old_alloc->keep_old_clusters &&
1423 (end <= l2meta_cow_start(old_alloc) ||
1424 start >= l2meta_cow_end(old_alloc)))
1425 {
1426 /*
1427 * Clusters intersect but COW areas don't. And cluster itself is
1428 * already allocated. So, there is no actual conflict.
1429 */
1430 continue;
1431 }
1432
6d207d35
VSO
1433 /* Conflict */
1434
1435 if (start < old_start) {
1436 /* Stop at the start of a running allocation */
1437 bytes = old_start - start;
250196f1 1438 } else {
6d207d35
VSO
1439 bytes = 0;
1440 }
250196f1 1441
6d207d35
VSO
1442 /*
1443 * Stop if an l2meta already exists. After yielding, it wouldn't
1444 * be valid any more, so we'd have to clean up the old L2Metas
1445 * and deal with requests depending on them before starting to
1446 * gather new ones. Not worth the trouble.
1447 */
1448 if (bytes == 0 && *m) {
1449 *cur_bytes = 0;
1450 return 0;
1451 }
ecdd5333 1452
6d207d35
VSO
1453 if (bytes == 0) {
1454 /*
1455 * Wait for the dependency to complete. We need to recheck
1456 * the free/allocated clusters when we continue.
1457 */
1458 qemu_co_queue_wait(&old_alloc->dependent_requests, &s->lock);
1459 return -EAGAIN;
250196f1
KW
1460 }
1461 }
1462
65eb2e35
KW
1463 /* Make sure that existing clusters and new allocations are only used up to
1464 * the next dependency if we shortened the request above */
1465 *cur_bytes = bytes;
250196f1 1466
226c3c26
KW
1467 return 0;
1468}
1469
0af729ec 1470/*
57538c86
AG
1471 * Checks how many already allocated clusters that don't require a new
1472 * allocation there are at the given guest_offset (up to *bytes).
1473 * If *host_offset is not INV_OFFSET, only physically contiguous clusters
1474 * beginning at this host offset are counted.
0af729ec 1475 *
411d62b0
KW
1476 * Note that guest_offset may not be cluster aligned. In this case, the
1477 * returned *host_offset points to exact byte referenced by guest_offset and
1478 * therefore isn't cluster aligned as well.
0af729ec
KW
1479 *
1480 * Returns:
1481 * 0: if no allocated clusters are available at the given offset.
1482 * *bytes is normally unchanged. It is set to 0 if the cluster
57538c86
AG
1483 * is allocated and can be overwritten in-place but doesn't have
1484 * the right physical offset.
0af729ec 1485 *
57538c86
AG
1486 * 1: if allocated clusters that can be overwritten in place are
1487 * available at the requested offset. *bytes may have decreased
1488 * and describes the length of the area that can be written to.
0af729ec
KW
1489 *
1490 * -errno: in error cases
0af729ec 1491 */
a1b4ecfd
PB
1492static int coroutine_fn handle_copied(BlockDriverState *bs,
1493 uint64_t guest_offset, uint64_t *host_offset, uint64_t *bytes,
1494 QCowL2Meta **m)
0af729ec 1495{
ff99129a 1496 BDRVQcow2State *s = bs->opaque;
0af729ec 1497 int l2_index;
57538c86 1498 uint64_t l2_entry, cluster_offset;
cde91766 1499 uint64_t *l2_slice;
b6d36def 1500 uint64_t nb_clusters;
c53ede9f 1501 unsigned int keep_clusters;
a3f1afb4 1502 int ret;
0af729ec
KW
1503
1504 trace_qcow2_handle_copied(qemu_coroutine_self(), guest_offset, *host_offset,
1505 *bytes);
0af729ec 1506
c6d619cc
KW
1507 assert(*host_offset == INV_OFFSET || offset_into_cluster(s, guest_offset)
1508 == offset_into_cluster(s, *host_offset));
411d62b0 1509
acb0467f 1510 /*
cde91766 1511 * Calculate the number of clusters to look for. We stop at L2 slice
acb0467f
KW
1512 * boundaries to keep things simple.
1513 */
1514 nb_clusters =
1515 size_to_clusters(s, offset_into_cluster(s, guest_offset) + *bytes);
1516
cde91766
AG
1517 l2_index = offset_to_l2_slice_index(s, guest_offset);
1518 nb_clusters = MIN(nb_clusters, s->l2_slice_size - l2_index);
57538c86
AG
1519 /* Limit total byte count to BDRV_REQUEST_MAX_BYTES */
1520 nb_clusters = MIN(nb_clusters, BDRV_REQUEST_MAX_BYTES >> s->cluster_bits);
acb0467f 1521
0af729ec 1522 /* Find L2 entry for the first involved cluster */
cde91766 1523 ret = get_cluster_table(bs, guest_offset, &l2_slice, &l2_index);
0af729ec
KW
1524 if (ret < 0) {
1525 return ret;
1526 }
1527
12c6aebe 1528 l2_entry = get_l2_entry(s, l2_slice, l2_index);
57538c86
AG
1529 cluster_offset = l2_entry & L2E_OFFSET_MASK;
1530
1531 if (!cluster_needs_new_alloc(bs, l2_entry)) {
1532 if (offset_into_cluster(s, cluster_offset)) {
1533 qcow2_signal_corruption(bs, true, -1, -1, "%s cluster offset "
1534 "%#" PRIx64 " unaligned (guest offset: %#"
1535 PRIx64 ")", l2_entry & QCOW_OFLAG_ZERO ?
1536 "Preallocated zero" : "Data",
1537 cluster_offset, guest_offset);
a97c67ee
HR
1538 ret = -EIO;
1539 goto out;
1540 }
1541
57538c86
AG
1542 /* If a specific host_offset is required, check it */
1543 if (*host_offset != INV_OFFSET && cluster_offset != *host_offset) {
e62daaf6
KW
1544 *bytes = 0;
1545 ret = 0;
1546 goto out;
1547 }
1548
0af729ec 1549 /* We keep all QCOW_OFLAG_COPIED clusters */
57538c86
AG
1550 keep_clusters = count_single_write_clusters(bs, nb_clusters, l2_slice,
1551 l2_index, false);
c53ede9f
KW
1552 assert(keep_clusters <= nb_clusters);
1553
1554 *bytes = MIN(*bytes,
1555 keep_clusters * s->cluster_size
1556 - offset_into_cluster(s, guest_offset));
57538c86
AG
1557 assert(*bytes != 0);
1558
d53ec3d8
AG
1559 ret = calculate_l2_meta(bs, cluster_offset, guest_offset,
1560 *bytes, l2_slice, m, true);
1561 if (ret < 0) {
1562 goto out;
1563 }
0af729ec
KW
1564
1565 ret = 1;
1566 } else {
0af729ec
KW
1567 ret = 0;
1568 }
1569
0af729ec 1570 /* Cleanup */
e62daaf6 1571out:
cde91766 1572 qcow2_cache_put(s->l2_table_cache, (void **) &l2_slice);
0af729ec 1573
e62daaf6
KW
1574 /* Only return a host offset if we actually made progress. Otherwise we
1575 * would make requirements for handle_alloc() that it can't fulfill */
a97c67ee 1576 if (ret > 0) {
57538c86 1577 *host_offset = cluster_offset + offset_into_cluster(s, guest_offset);
e62daaf6
KW
1578 }
1579
0af729ec
KW
1580 return ret;
1581}
1582
226c3c26
KW
1583/*
1584 * Allocates new clusters for the given guest_offset.
1585 *
1586 * At most *nb_clusters are allocated, and on return *nb_clusters is updated to
1587 * contain the number of clusters that have been allocated and are contiguous
1588 * in the image file.
1589 *
c6d619cc
KW
1590 * If *host_offset is not INV_OFFSET, it specifies the offset in the image file
1591 * at which the new clusters must start. *nb_clusters can be 0 on return in
1592 * this case if the cluster at host_offset is already in use. If *host_offset
1593 * is INV_OFFSET, the clusters can be allocated anywhere in the image file.
226c3c26
KW
1594 *
1595 * *host_offset is updated to contain the offset into the image file at which
1596 * the first allocated cluster starts.
1597 *
1598 * Return 0 on success and -errno in error cases. -EAGAIN means that the
1599 * function has been waiting for another request and the allocation must be
1600 * restarted, but the whole request should not be failed.
1601 */
1602static int do_alloc_cluster_offset(BlockDriverState *bs, uint64_t guest_offset,
b6d36def 1603 uint64_t *host_offset, uint64_t *nb_clusters)
226c3c26 1604{
ff99129a 1605 BDRVQcow2State *s = bs->opaque;
226c3c26
KW
1606
1607 trace_qcow2_do_alloc_clusters_offset(qemu_coroutine_self(), guest_offset,
1608 *host_offset, *nb_clusters);
1609
966b000f
KW
1610 if (has_data_file(bs)) {
1611 assert(*host_offset == INV_OFFSET ||
1612 *host_offset == start_of_cluster(s, guest_offset));
1613 *host_offset = start_of_cluster(s, guest_offset);
1614 return 0;
1615 }
1616
250196f1
KW
1617 /* Allocate new clusters */
1618 trace_qcow2_cluster_alloc_phys(qemu_coroutine_self());
c6d619cc 1619 if (*host_offset == INV_OFFSET) {
df021791
KW
1620 int64_t cluster_offset =
1621 qcow2_alloc_clusters(bs, *nb_clusters * s->cluster_size);
1622 if (cluster_offset < 0) {
1623 return cluster_offset;
1624 }
1625 *host_offset = cluster_offset;
1626 return 0;
250196f1 1627 } else {
b6d36def 1628 int64_t ret = qcow2_alloc_clusters_at(bs, *host_offset, *nb_clusters);
df021791
KW
1629 if (ret < 0) {
1630 return ret;
1631 }
1632 *nb_clusters = ret;
1633 return 0;
250196f1 1634 }
250196f1
KW
1635}
1636
10f0ed8b 1637/*
57538c86
AG
1638 * Allocates new clusters for an area that is either still unallocated or
1639 * cannot be overwritten in-place. If *host_offset is not INV_OFFSET,
1640 * clusters are only allocated if the new allocation can match the specified
1641 * host offset.
10f0ed8b 1642 *
411d62b0
KW
1643 * Note that guest_offset may not be cluster aligned. In this case, the
1644 * returned *host_offset points to exact byte referenced by guest_offset and
1645 * therefore isn't cluster aligned as well.
10f0ed8b
KW
1646 *
1647 * Returns:
1648 * 0: if no clusters could be allocated. *bytes is set to 0,
1649 * *host_offset is left unchanged.
1650 *
1651 * 1: if new clusters were allocated. *bytes may be decreased if the
1652 * new allocation doesn't cover all of the requested area.
1653 * *host_offset is updated to contain the host offset of the first
1654 * newly allocated cluster.
1655 *
1656 * -errno: in error cases
10f0ed8b 1657 */
a1b4ecfd
PB
1658static int coroutine_fn handle_alloc(BlockDriverState *bs,
1659 uint64_t guest_offset, uint64_t *host_offset, uint64_t *bytes,
1660 QCowL2Meta **m)
10f0ed8b 1661{
ff99129a 1662 BDRVQcow2State *s = bs->opaque;
10f0ed8b 1663 int l2_index;
6d99a344 1664 uint64_t *l2_slice;
b6d36def 1665 uint64_t nb_clusters;
10f0ed8b
KW
1666 int ret;
1667
57538c86 1668 uint64_t alloc_cluster_offset;
10f0ed8b
KW
1669
1670 trace_qcow2_handle_alloc(qemu_coroutine_self(), guest_offset, *host_offset,
1671 *bytes);
1672 assert(*bytes > 0);
1673
f5bc6350 1674 /*
6d99a344 1675 * Calculate the number of clusters to look for. We stop at L2 slice
f5bc6350
KW
1676 * boundaries to keep things simple.
1677 */
c37f4cd7
KW
1678 nb_clusters =
1679 size_to_clusters(s, offset_into_cluster(s, guest_offset) + *bytes);
1680
6d99a344
AG
1681 l2_index = offset_to_l2_slice_index(s, guest_offset);
1682 nb_clusters = MIN(nb_clusters, s->l2_slice_size - l2_index);
57538c86
AG
1683 /* Limit total allocation byte count to BDRV_REQUEST_MAX_BYTES */
1684 nb_clusters = MIN(nb_clusters, BDRV_REQUEST_MAX_BYTES >> s->cluster_bits);
d1b9d19f 1685
10f0ed8b 1686 /* Find L2 entry for the first involved cluster */
6d99a344 1687 ret = get_cluster_table(bs, guest_offset, &l2_slice, &l2_index);
10f0ed8b
KW
1688 if (ret < 0) {
1689 return ret;
1690 }
1691
57538c86
AG
1692 nb_clusters = count_single_write_clusters(bs, nb_clusters,
1693 l2_slice, l2_index, true);
10f0ed8b 1694
ecdd5333
KW
1695 /* This function is only called when there were no non-COW clusters, so if
1696 * we can't find any unallocated or COW clusters either, something is
1697 * wrong with our code. */
1698 assert(nb_clusters > 0);
1699
57538c86
AG
1700 /* Allocate at a given offset in the image file */
1701 alloc_cluster_offset = *host_offset == INV_OFFSET ? INV_OFFSET :
1702 start_of_cluster(s, *host_offset);
1703 ret = do_alloc_cluster_offset(bs, guest_offset, &alloc_cluster_offset,
1704 &nb_clusters);
1705 if (ret < 0) {
1706 goto out;
10f0ed8b
KW
1707 }
1708
57538c86
AG
1709 /* Can't extend contiguous allocation */
1710 if (nb_clusters == 0) {
1711 *bytes = 0;
1712 ret = 0;
1713 goto out;
ff52aab2
HR
1714 }
1715
57538c86
AG
1716 assert(alloc_cluster_offset != INV_OFFSET);
1717
83baa9a4
KW
1718 /*
1719 * Save info needed for meta data update.
1720 *
85567393 1721 * requested_bytes: Number of bytes from the start of the first
83baa9a4
KW
1722 * newly allocated cluster to the end of the (possibly shortened
1723 * before) write request.
1724 *
85567393 1725 * avail_bytes: Number of bytes from the start of the first
83baa9a4
KW
1726 * newly allocated to the end of the last newly allocated cluster.
1727 *
85567393 1728 * nb_bytes: The number of bytes from the start of the first
83baa9a4
KW
1729 * newly allocated cluster to the end of the area that the write
1730 * request actually writes to (excluding COW at the end)
1731 */
85567393 1732 uint64_t requested_bytes = *bytes + offset_into_cluster(s, guest_offset);
d1b9d19f 1733 int avail_bytes = nb_clusters << s->cluster_bits;
85567393 1734 int nb_bytes = MIN(requested_bytes, avail_bytes);
83baa9a4 1735
411d62b0 1736 *host_offset = alloc_cluster_offset + offset_into_cluster(s, guest_offset);
85567393 1737 *bytes = MIN(*bytes, nb_bytes - offset_into_cluster(s, guest_offset));
83baa9a4
KW
1738 assert(*bytes != 0);
1739
d53ec3d8
AG
1740 ret = calculate_l2_meta(bs, alloc_cluster_offset, guest_offset, *bytes,
1741 l2_slice, m, false);
1742 if (ret < 0) {
1743 goto out;
1744 }
8f91d690 1745
57538c86 1746 ret = 1;
10f0ed8b 1747
57538c86
AG
1748out:
1749 qcow2_cache_put(s->l2_table_cache, (void **) &l2_slice);
10f0ed8b
KW
1750 return ret;
1751}
1752
45aba42f 1753/*
2b60c5b9
AG
1754 * For a given area on the virtual disk defined by @offset and @bytes,
1755 * find the corresponding area on the qcow2 image, allocating new
1756 * clusters (or subclusters) if necessary. The result can span a
1757 * combination of allocated and previously unallocated clusters.
45aba42f 1758 *
bfd0989a
AG
1759 * Note that offset may not be cluster aligned. In this case, the returned
1760 * *host_offset points to exact byte referenced by offset and therefore
1761 * isn't cluster aligned as well.
1762 *
2b60c5b9
AG
1763 * On return, @host_offset is set to the beginning of the requested
1764 * area. This area is guaranteed to be contiguous on the qcow2 file
1765 * but it can be smaller than initially requested. In this case @bytes
1766 * is updated with the actual size.
45aba42f 1767 *
2b60c5b9
AG
1768 * If any clusters or subclusters were allocated then @m contains a
1769 * list with the information of all the affected regions. Note that
1770 * this can happen regardless of whether this function succeeds or
1771 * not. The caller is responsible for updating the L2 metadata of the
1772 * allocated clusters (on success) or freeing them (on failure), and
1773 * for clearing the contents of @m afterwards in both cases.
45aba42f 1774 *
68d100e9
KW
1775 * If the request conflicts with another write request in flight, the coroutine
1776 * is queued and will be reentered when the dependency has completed.
148da7ea
KW
1777 *
1778 * Return 0 on success and -errno in error cases
45aba42f 1779 */
050ed2e7
PB
1780int coroutine_fn qcow2_alloc_host_offset(BlockDriverState *bs, uint64_t offset,
1781 unsigned int *bytes,
1782 uint64_t *host_offset,
1783 QCowL2Meta **m)
45aba42f 1784{
ff99129a 1785 BDRVQcow2State *s = bs->opaque;
710c2496 1786 uint64_t start, remaining;
250196f1 1787 uint64_t cluster_offset;
65eb2e35 1788 uint64_t cur_bytes;
710c2496 1789 int ret;
45aba42f 1790
d46a0bb2 1791 trace_qcow2_alloc_clusters_offset(qemu_coroutine_self(), offset, *bytes);
710c2496 1792
72424114 1793again:
16f0587e 1794 start = offset;
d46a0bb2 1795 remaining = *bytes;
c6d619cc
KW
1796 cluster_offset = INV_OFFSET;
1797 *host_offset = INV_OFFSET;
ecdd5333
KW
1798 cur_bytes = 0;
1799 *m = NULL;
0af729ec 1800
2c3b32d2 1801 while (true) {
ecdd5333 1802
c6d619cc 1803 if (*host_offset == INV_OFFSET && cluster_offset != INV_OFFSET) {
bfd0989a 1804 *host_offset = cluster_offset;
ecdd5333
KW
1805 }
1806
1807 assert(remaining >= cur_bytes);
1808
1809 start += cur_bytes;
1810 remaining -= cur_bytes;
c6d619cc
KW
1811
1812 if (cluster_offset != INV_OFFSET) {
1813 cluster_offset += cur_bytes;
1814 }
ecdd5333
KW
1815
1816 if (remaining == 0) {
1817 break;
1818 }
1819
1820 cur_bytes = remaining;
1821
2c3b32d2
KW
1822 /*
1823 * Now start gathering as many contiguous clusters as possible:
1824 *
1825 * 1. Check for overlaps with in-flight allocations
1826 *
1827 * a) Overlap not in the first cluster -> shorten this request and
1828 * let the caller handle the rest in its next loop iteration.
1829 *
1830 * b) Real overlaps of two requests. Yield and restart the search
1831 * for contiguous clusters (the situation could have changed
1832 * while we were sleeping)
1833 *
1834 * c) TODO: Request starts in the same cluster as the in-flight
1835 * allocation ends. Shorten the COW of the in-fight allocation,
1836 * set cluster_offset to write to the same cluster and set up
1837 * the right synchronisation between the in-flight request and
1838 * the new one.
1839 */
ecdd5333 1840 ret = handle_dependencies(bs, start, &cur_bytes, m);
2c3b32d2 1841 if (ret == -EAGAIN) {
ecdd5333
KW
1842 /* Currently handle_dependencies() doesn't yield if we already had
1843 * an allocation. If it did, we would have to clean up the L2Meta
1844 * structs before starting over. */
1845 assert(*m == NULL);
2c3b32d2
KW
1846 goto again;
1847 } else if (ret < 0) {
1848 return ret;
ecdd5333
KW
1849 } else if (cur_bytes == 0) {
1850 break;
2c3b32d2
KW
1851 } else {
1852 /* handle_dependencies() may have decreased cur_bytes (shortened
1853 * the allocations below) so that the next dependency is processed
1854 * correctly during the next loop iteration. */
0af729ec 1855 }
710c2496 1856
2c3b32d2
KW
1857 /*
1858 * 2. Count contiguous COPIED clusters.
1859 */
1860 ret = handle_copied(bs, start, &cluster_offset, &cur_bytes, m);
1861 if (ret < 0) {
1862 return ret;
1863 } else if (ret) {
ecdd5333 1864 continue;
2c3b32d2
KW
1865 } else if (cur_bytes == 0) {
1866 break;
1867 }
060bee89 1868
2c3b32d2
KW
1869 /*
1870 * 3. If the request still hasn't completed, allocate new clusters,
1871 * considering any cluster_offset of steps 1c or 2.
1872 */
1873 ret = handle_alloc(bs, start, &cluster_offset, &cur_bytes, m);
1874 if (ret < 0) {
1875 return ret;
1876 } else if (ret) {
ecdd5333 1877 continue;
2c3b32d2
KW
1878 } else {
1879 assert(cur_bytes == 0);
1880 break;
1881 }
f5bc6350 1882 }
10f0ed8b 1883
d46a0bb2
KW
1884 *bytes -= remaining;
1885 assert(*bytes > 0);
c6d619cc 1886 assert(*host_offset != INV_OFFSET);
bfd0989a
AG
1887 assert(offset_into_cluster(s, *host_offset) ==
1888 offset_into_cluster(s, offset));
45aba42f 1889
148da7ea 1890 return 0;
45aba42f
KW
1891}
1892
5ea929e3
KW
1893/*
1894 * This discards as many clusters of nb_clusters as possible at once (i.e.
21ab3add 1895 * all clusters in the same L2 slice) and returns the number of discarded
5ea929e3
KW
1896 * clusters.
1897 */
21ab3add
AG
1898static int discard_in_l2_slice(BlockDriverState *bs, uint64_t offset,
1899 uint64_t nb_clusters,
1900 enum qcow2_discard_type type, bool full_discard)
5ea929e3 1901{
ff99129a 1902 BDRVQcow2State *s = bs->opaque;
21ab3add 1903 uint64_t *l2_slice;
5ea929e3
KW
1904 int l2_index;
1905 int ret;
1906 int i;
1907
21ab3add 1908 ret = get_cluster_table(bs, offset, &l2_slice, &l2_index);
5ea929e3
KW
1909 if (ret < 0) {
1910 return ret;
1911 }
1912
21ab3add
AG
1913 /* Limit nb_clusters to one L2 slice */
1914 nb_clusters = MIN(nb_clusters, s->l2_slice_size - l2_index);
b6d36def 1915 assert(nb_clusters <= INT_MAX);
5ea929e3
KW
1916
1917 for (i = 0; i < nb_clusters; i++) {
a68cd703
AG
1918 uint64_t old_l2_entry = get_l2_entry(s, l2_slice, l2_index + i);
1919 uint64_t old_l2_bitmap = get_l2_bitmap(s, l2_slice, l2_index + i);
1920 uint64_t new_l2_entry = old_l2_entry;
1921 uint64_t new_l2_bitmap = old_l2_bitmap;
1922 QCow2ClusterType cluster_type =
1923 qcow2_get_cluster_type(bs, old_l2_entry);
a71835a0
KW
1924
1925 /*
a68cd703
AG
1926 * If full_discard is true, the cluster should not read back as zeroes,
1927 * but rather fall through to the backing file.
1928 *
808c4b6f
HR
1929 * If full_discard is false, make sure that a discarded area reads back
1930 * as zeroes for v3 images (we cannot do it for v2 without actually
1931 * writing a zero-filled buffer). We can skip the operation if the
1932 * cluster is already marked as zero, or if it's unallocated and we
1933 * don't have a backing file.
a71835a0 1934 *
237d78f8 1935 * TODO We might want to use bdrv_block_status(bs) here, but we're
a71835a0
KW
1936 * holding s->lock, so that doesn't work today.
1937 */
a68cd703
AG
1938 if (full_discard) {
1939 new_l2_entry = new_l2_bitmap = 0;
1940 } else if (bs->backing || qcow2_cluster_is_allocated(cluster_type)) {
1941 if (has_subclusters(s)) {
1942 new_l2_entry = 0;
1943 new_l2_bitmap = QCOW_L2_BITMAP_ALL_ZEROES;
1944 } else {
1945 new_l2_entry = s->qcow_version >= 3 ? QCOW_OFLAG_ZERO : 0;
bbd995d8 1946 }
a68cd703 1947 }
bbd995d8 1948
a68cd703
AG
1949 if (old_l2_entry == new_l2_entry && old_l2_bitmap == new_l2_bitmap) {
1950 continue;
5ea929e3
KW
1951 }
1952
1953 /* First remove L2 entries */
21ab3add 1954 qcow2_cache_entry_mark_dirty(s->l2_table_cache, l2_slice);
a68cd703
AG
1955 set_l2_entry(s, l2_slice, l2_index + i, new_l2_entry);
1956 if (has_subclusters(s)) {
1957 set_l2_bitmap(s, l2_slice, l2_index + i, new_l2_bitmap);
a71835a0 1958 }
5ea929e3 1959 /* Then decrease the refcount */
3fec237f 1960 qcow2_free_any_cluster(bs, old_l2_entry, type);
5ea929e3
KW
1961 }
1962
21ab3add 1963 qcow2_cache_put(s->l2_table_cache, (void **) &l2_slice);
5ea929e3
KW
1964
1965 return nb_clusters;
1966}
1967
d2cb36af
EB
1968int qcow2_cluster_discard(BlockDriverState *bs, uint64_t offset,
1969 uint64_t bytes, enum qcow2_discard_type type,
1970 bool full_discard)
5ea929e3 1971{
ff99129a 1972 BDRVQcow2State *s = bs->opaque;
d2cb36af 1973 uint64_t end_offset = offset + bytes;
b6d36def 1974 uint64_t nb_clusters;
d2cb36af 1975 int64_t cleared;
5ea929e3
KW
1976 int ret;
1977
f10ee139 1978 /* Caller must pass aligned values, except at image end */
0c1bd469 1979 assert(QEMU_IS_ALIGNED(offset, s->cluster_size));
f10ee139
EB
1980 assert(QEMU_IS_ALIGNED(end_offset, s->cluster_size) ||
1981 end_offset == bs->total_sectors << BDRV_SECTOR_BITS);
5ea929e3 1982
d2cb36af 1983 nb_clusters = size_to_clusters(s, bytes);
5ea929e3 1984
0b919fae
KW
1985 s->cache_discards = true;
1986
21ab3add 1987 /* Each L2 slice is handled by its own loop iteration */
5ea929e3 1988 while (nb_clusters > 0) {
21ab3add
AG
1989 cleared = discard_in_l2_slice(bs, offset, nb_clusters, type,
1990 full_discard);
d2cb36af
EB
1991 if (cleared < 0) {
1992 ret = cleared;
0b919fae 1993 goto fail;
5ea929e3
KW
1994 }
1995
d2cb36af
EB
1996 nb_clusters -= cleared;
1997 offset += (cleared * s->cluster_size);
5ea929e3
KW
1998 }
1999
0b919fae
KW
2000 ret = 0;
2001fail:
2002 s->cache_discards = false;
2003 qcow2_process_discards(bs, ret);
2004
2005 return ret;
5ea929e3 2006}
621f0589
KW
2007
2008/*
2009 * This zeroes as many clusters of nb_clusters as possible at once (i.e.
a9a9f8f0 2010 * all clusters in the same L2 slice) and returns the number of zeroed
621f0589
KW
2011 * clusters.
2012 */
a9a9f8f0
AG
2013static int zero_in_l2_slice(BlockDriverState *bs, uint64_t offset,
2014 uint64_t nb_clusters, int flags)
621f0589 2015{
ff99129a 2016 BDRVQcow2State *s = bs->opaque;
a9a9f8f0 2017 uint64_t *l2_slice;
621f0589
KW
2018 int l2_index;
2019 int ret;
2020 int i;
2021
a9a9f8f0 2022 ret = get_cluster_table(bs, offset, &l2_slice, &l2_index);
621f0589
KW
2023 if (ret < 0) {
2024 return ret;
2025 }
2026
a9a9f8f0
AG
2027 /* Limit nb_clusters to one L2 slice */
2028 nb_clusters = MIN(nb_clusters, s->l2_slice_size - l2_index);
b6d36def 2029 assert(nb_clusters <= INT_MAX);
621f0589
KW
2030
2031 for (i = 0; i < nb_clusters; i++) {
205fa507
AG
2032 uint64_t old_l2_entry = get_l2_entry(s, l2_slice, l2_index + i);
2033 uint64_t old_l2_bitmap = get_l2_bitmap(s, l2_slice, l2_index + i);
2034 QCow2ClusterType type = qcow2_get_cluster_type(bs, old_l2_entry);
2035 bool unmap = (type == QCOW2_CLUSTER_COMPRESSED) ||
2036 ((flags & BDRV_REQ_MAY_UNMAP) && qcow2_cluster_is_allocated(type));
2037 uint64_t new_l2_entry = unmap ? 0 : old_l2_entry;
2038 uint64_t new_l2_bitmap = old_l2_bitmap;
2039
2040 if (has_subclusters(s)) {
2041 new_l2_bitmap = QCOW_L2_BITMAP_ALL_ZEROES;
2042 } else {
2043 new_l2_entry |= QCOW_OFLAG_ZERO;
2044 }
621f0589 2045
205fa507 2046 if (old_l2_entry == new_l2_entry && old_l2_bitmap == new_l2_bitmap) {
06cc5e2b
EB
2047 continue;
2048 }
2049
c8bf9a91 2050 /* First update L2 entries */
a9a9f8f0 2051 qcow2_cache_entry_mark_dirty(s->l2_table_cache, l2_slice);
205fa507
AG
2052 set_l2_entry(s, l2_slice, l2_index + i, new_l2_entry);
2053 if (has_subclusters(s)) {
2054 set_l2_bitmap(s, l2_slice, l2_index + i, new_l2_bitmap);
621f0589 2055 }
c8bf9a91
ML
2056
2057 /* Then decrease the refcount */
2058 if (unmap) {
2059 qcow2_free_any_cluster(bs, old_l2_entry, QCOW2_DISCARD_REQUEST);
2060 }
621f0589
KW
2061 }
2062
a9a9f8f0 2063 qcow2_cache_put(s->l2_table_cache, (void **) &l2_slice);
621f0589
KW
2064
2065 return nb_clusters;
2066}
2067
a6841a2d
AG
2068static int zero_l2_subclusters(BlockDriverState *bs, uint64_t offset,
2069 unsigned nb_subclusters)
2070{
2071 BDRVQcow2State *s = bs->opaque;
2072 uint64_t *l2_slice;
2073 uint64_t old_l2_bitmap, l2_bitmap;
2074 int l2_index, ret, sc = offset_to_sc_index(s, offset);
2075
2076 /* For full clusters use zero_in_l2_slice() instead */
2077 assert(nb_subclusters > 0 && nb_subclusters < s->subclusters_per_cluster);
2078 assert(sc + nb_subclusters <= s->subclusters_per_cluster);
2079 assert(offset_into_subcluster(s, offset) == 0);
2080
2081 ret = get_cluster_table(bs, offset, &l2_slice, &l2_index);
2082 if (ret < 0) {
2083 return ret;
2084 }
2085
2086 switch (qcow2_get_cluster_type(bs, get_l2_entry(s, l2_slice, l2_index))) {
2087 case QCOW2_CLUSTER_COMPRESSED:
2088 ret = -ENOTSUP; /* We cannot partially zeroize compressed clusters */
2089 goto out;
2090 case QCOW2_CLUSTER_NORMAL:
2091 case QCOW2_CLUSTER_UNALLOCATED:
2092 break;
2093 default:
2094 g_assert_not_reached();
2095 }
2096
2097 old_l2_bitmap = l2_bitmap = get_l2_bitmap(s, l2_slice, l2_index);
2098
2099 l2_bitmap |= QCOW_OFLAG_SUB_ZERO_RANGE(sc, sc + nb_subclusters);
2100 l2_bitmap &= ~QCOW_OFLAG_SUB_ALLOC_RANGE(sc, sc + nb_subclusters);
2101
2102 if (old_l2_bitmap != l2_bitmap) {
2103 set_l2_bitmap(s, l2_slice, l2_index, l2_bitmap);
2104 qcow2_cache_entry_mark_dirty(s->l2_table_cache, l2_slice);
2105 }
2106
2107 ret = 0;
2108out:
2109 qcow2_cache_put(s->l2_table_cache, (void **) &l2_slice);
2110
2111 return ret;
2112}
2113
050ed2e7
PB
2114int coroutine_fn qcow2_subcluster_zeroize(BlockDriverState *bs, uint64_t offset,
2115 uint64_t bytes, int flags)
621f0589 2116{
ff99129a 2117 BDRVQcow2State *s = bs->opaque;
d2cb36af 2118 uint64_t end_offset = offset + bytes;
b6d36def 2119 uint64_t nb_clusters;
a6841a2d 2120 unsigned head, tail;
d2cb36af 2121 int64_t cleared;
621f0589
KW
2122 int ret;
2123
6c3944dc
KW
2124 /* If we have to stay in sync with an external data file, zero out
2125 * s->data_file first. */
2126 if (data_file_is_raw(bs)) {
2127 assert(has_data_file(bs));
2128 ret = bdrv_co_pwrite_zeroes(s->data_file, offset, bytes, flags);
2129 if (ret < 0) {
2130 return ret;
2131 }
2132 }
2133
f10ee139 2134 /* Caller must pass aligned values, except at image end */
a6841a2d
AG
2135 assert(offset_into_subcluster(s, offset) == 0);
2136 assert(offset_into_subcluster(s, end_offset) == 0 ||
f01643fb 2137 end_offset >= bs->total_sectors << BDRV_SECTOR_BITS);
f10ee139 2138
61b30439
KW
2139 /*
2140 * The zero flag is only supported by version 3 and newer. However, if we
2141 * have no backing file, we can resort to discard in version 2.
2142 */
621f0589 2143 if (s->qcow_version < 3) {
61b30439
KW
2144 if (!bs->backing) {
2145 return qcow2_cluster_discard(bs, offset, bytes,
2146 QCOW2_DISCARD_REQUEST, false);
2147 }
621f0589
KW
2148 return -ENOTSUP;
2149 }
2150
a6841a2d
AG
2151 head = MIN(end_offset, ROUND_UP(offset, s->cluster_size)) - offset;
2152 offset += head;
2153
2154 tail = (end_offset >= bs->total_sectors << BDRV_SECTOR_BITS) ? 0 :
2155 end_offset - MAX(offset, start_of_cluster(s, end_offset));
2156 end_offset -= tail;
621f0589 2157
0b919fae
KW
2158 s->cache_discards = true;
2159
a6841a2d
AG
2160 if (head) {
2161 ret = zero_l2_subclusters(bs, offset - head,
2162 size_to_subclusters(s, head));
2163 if (ret < 0) {
2164 goto fail;
2165 }
2166 }
2167
2168 /* Each L2 slice is handled by its own loop iteration */
2169 nb_clusters = size_to_clusters(s, end_offset - offset);
2170
621f0589 2171 while (nb_clusters > 0) {
a9a9f8f0 2172 cleared = zero_in_l2_slice(bs, offset, nb_clusters, flags);
d2cb36af
EB
2173 if (cleared < 0) {
2174 ret = cleared;
0b919fae 2175 goto fail;
621f0589
KW
2176 }
2177
d2cb36af
EB
2178 nb_clusters -= cleared;
2179 offset += (cleared * s->cluster_size);
621f0589
KW
2180 }
2181
a6841a2d
AG
2182 if (tail) {
2183 ret = zero_l2_subclusters(bs, end_offset, size_to_subclusters(s, tail));
2184 if (ret < 0) {
2185 goto fail;
2186 }
2187 }
2188
0b919fae
KW
2189 ret = 0;
2190fail:
2191 s->cache_discards = false;
2192 qcow2_process_discards(bs, ret);
2193
2194 return ret;
621f0589 2195}
32b6444d
HR
2196
2197/*
2198 * Expands all zero clusters in a specific L1 table (or deallocates them, for
2199 * non-backed non-pre-allocated zero clusters).
2200 *
4057a2b2
HR
2201 * l1_entries and *visited_l1_entries are used to keep track of progress for
2202 * status_cb(). l1_entries contains the total number of L1 entries and
2203 * *visited_l1_entries counts all visited L1 entries.
32b6444d
HR
2204 */
2205static int expand_zero_clusters_in_l1(BlockDriverState *bs, uint64_t *l1_table,
ecf58777 2206 int l1_size, int64_t *visited_l1_entries,
4057a2b2 2207 int64_t l1_entries,
8b13976d
HR
2208 BlockDriverAmendStatusCB *status_cb,
2209 void *cb_opaque)
32b6444d 2210{
ff99129a 2211 BDRVQcow2State *s = bs->opaque;
32b6444d 2212 bool is_active_l1 = (l1_table == s->l1_table);
415184f5
AG
2213 uint64_t *l2_slice = NULL;
2214 unsigned slice, slice_size2, n_slices;
32b6444d
HR
2215 int ret;
2216 int i, j;
2217
7bbb5920
AG
2218 /* qcow2_downgrade() is not allowed in images with subclusters */
2219 assert(!has_subclusters(s));
2220
c8fd8554 2221 slice_size2 = s->l2_slice_size * l2_entry_size(s);
415184f5
AG
2222 n_slices = s->cluster_size / slice_size2;
2223
32b6444d
HR
2224 if (!is_active_l1) {
2225 /* inactive L2 tables require a buffer to be stored in when loading
2226 * them from disk */
415184f5
AG
2227 l2_slice = qemu_try_blockalign(bs->file->bs, slice_size2);
2228 if (l2_slice == NULL) {
de82815d
KW
2229 return -ENOMEM;
2230 }
32b6444d
HR
2231 }
2232
2233 for (i = 0; i < l1_size; i++) {
2234 uint64_t l2_offset = l1_table[i] & L1E_OFFSET_MASK;
0e06528e 2235 uint64_t l2_refcount;
32b6444d
HR
2236
2237 if (!l2_offset) {
2238 /* unallocated */
4057a2b2
HR
2239 (*visited_l1_entries)++;
2240 if (status_cb) {
8b13976d 2241 status_cb(bs, *visited_l1_entries, l1_entries, cb_opaque);
4057a2b2 2242 }
32b6444d
HR
2243 continue;
2244 }
2245
8dd93d93
HR
2246 if (offset_into_cluster(s, l2_offset)) {
2247 qcow2_signal_corruption(bs, true, -1, -1, "L2 table offset %#"
2248 PRIx64 " unaligned (L1 index: %#x)",
2249 l2_offset, i);
2250 ret = -EIO;
2251 goto fail;
2252 }
2253
9b765486
AG
2254 ret = qcow2_get_refcount(bs, l2_offset >> s->cluster_bits,
2255 &l2_refcount);
2256 if (ret < 0) {
2257 goto fail;
2258 }
2259
415184f5
AG
2260 for (slice = 0; slice < n_slices; slice++) {
2261 uint64_t slice_offset = l2_offset + slice * slice_size2;
2262 bool l2_dirty = false;
226494ff
AG
2263 if (is_active_l1) {
2264 /* get active L2 tables from cache */
415184f5
AG
2265 ret = qcow2_cache_get(bs, s->l2_table_cache, slice_offset,
2266 (void **)&l2_slice);
226494ff
AG
2267 } else {
2268 /* load inactive L2 tables from disk */
32cc71de
AF
2269 ret = bdrv_pread(bs->file, slice_offset, slice_size2,
2270 l2_slice, 0);
226494ff
AG
2271 }
2272 if (ret < 0) {
2273 goto fail;
32b6444d
HR
2274 }
2275
415184f5 2276 for (j = 0; j < s->l2_slice_size; j++) {
12c6aebe 2277 uint64_t l2_entry = get_l2_entry(s, l2_slice, j);
226494ff
AG
2278 int64_t offset = l2_entry & L2E_OFFSET_MASK;
2279 QCow2ClusterType cluster_type =
808c2bb4 2280 qcow2_get_cluster_type(bs, l2_entry);
226494ff
AG
2281
2282 if (cluster_type != QCOW2_CLUSTER_ZERO_PLAIN &&
2283 cluster_type != QCOW2_CLUSTER_ZERO_ALLOC) {
32b6444d
HR
2284 continue;
2285 }
2286
226494ff
AG
2287 if (cluster_type == QCOW2_CLUSTER_ZERO_PLAIN) {
2288 if (!bs->backing) {
7bbb5920
AG
2289 /*
2290 * not backed; therefore we can simply deallocate the
2291 * cluster. No need to call set_l2_bitmap(), this
2292 * function doesn't support images with subclusters.
2293 */
12c6aebe 2294 set_l2_entry(s, l2_slice, j, 0);
226494ff
AG
2295 l2_dirty = true;
2296 continue;
2297 }
2298
2299 offset = qcow2_alloc_clusters(bs, s->cluster_size);
2300 if (offset < 0) {
2301 ret = offset;
2302 goto fail;
2303 }
ecf58777 2304
3a75a870
AG
2305 /* The offset must fit in the offset field */
2306 assert((offset & L2E_OFFSET_MASK) == offset);
2307
226494ff
AG
2308 if (l2_refcount > 1) {
2309 /* For shared L2 tables, set the refcount accordingly
2310 * (it is already 1 and needs to be l2_refcount) */
2311 ret = qcow2_update_cluster_refcount(
2312 bs, offset >> s->cluster_bits,
2aabe7c7 2313 refcount_diff(1, l2_refcount), false,
ecf58777 2314 QCOW2_DISCARD_OTHER);
226494ff
AG
2315 if (ret < 0) {
2316 qcow2_free_clusters(bs, offset, s->cluster_size,
2317 QCOW2_DISCARD_OTHER);
2318 goto fail;
2319 }
ecf58777
HR
2320 }
2321 }
32b6444d 2322
226494ff 2323 if (offset_into_cluster(s, offset)) {
415184f5 2324 int l2_index = slice * s->l2_slice_size + j;
226494ff
AG
2325 qcow2_signal_corruption(
2326 bs, true, -1, -1,
2327 "Cluster allocation offset "
2328 "%#" PRIx64 " unaligned (L2 offset: %#"
2329 PRIx64 ", L2 index: %#x)", offset,
415184f5 2330 l2_offset, l2_index);
226494ff
AG
2331 if (cluster_type == QCOW2_CLUSTER_ZERO_PLAIN) {
2332 qcow2_free_clusters(bs, offset, s->cluster_size,
2333 QCOW2_DISCARD_ALWAYS);
2334 }
2335 ret = -EIO;
2336 goto fail;
8dd93d93 2337 }
8dd93d93 2338
226494ff 2339 ret = qcow2_pre_write_overlap_check(bs, 0, offset,
966b000f 2340 s->cluster_size, true);
226494ff
AG
2341 if (ret < 0) {
2342 if (cluster_type == QCOW2_CLUSTER_ZERO_PLAIN) {
2343 qcow2_free_clusters(bs, offset, s->cluster_size,
2344 QCOW2_DISCARD_ALWAYS);
2345 }
2346 goto fail;
320c7066 2347 }
32b6444d 2348
966b000f
KW
2349 ret = bdrv_pwrite_zeroes(s->data_file, offset,
2350 s->cluster_size, 0);
226494ff
AG
2351 if (ret < 0) {
2352 if (cluster_type == QCOW2_CLUSTER_ZERO_PLAIN) {
2353 qcow2_free_clusters(bs, offset, s->cluster_size,
2354 QCOW2_DISCARD_ALWAYS);
2355 }
2356 goto fail;
320c7066 2357 }
32b6444d 2358
226494ff 2359 if (l2_refcount == 1) {
12c6aebe 2360 set_l2_entry(s, l2_slice, j, offset | QCOW_OFLAG_COPIED);
226494ff 2361 } else {
12c6aebe 2362 set_l2_entry(s, l2_slice, j, offset);
226494ff 2363 }
7bbb5920
AG
2364 /*
2365 * No need to call set_l2_bitmap() after set_l2_entry() because
2366 * this function doesn't support images with subclusters.
2367 */
226494ff 2368 l2_dirty = true;
e390cf5a 2369 }
32b6444d 2370
226494ff
AG
2371 if (is_active_l1) {
2372 if (l2_dirty) {
415184f5 2373 qcow2_cache_entry_mark_dirty(s->l2_table_cache, l2_slice);
226494ff 2374 qcow2_cache_depends_on_flush(s->l2_table_cache);
32b6444d 2375 }
415184f5 2376 qcow2_cache_put(s->l2_table_cache, (void **) &l2_slice);
226494ff
AG
2377 } else {
2378 if (l2_dirty) {
2379 ret = qcow2_pre_write_overlap_check(
2380 bs, QCOW2_OL_INACTIVE_L2 | QCOW2_OL_ACTIVE_L2,
966b000f 2381 slice_offset, slice_size2, false);
226494ff
AG
2382 if (ret < 0) {
2383 goto fail;
2384 }
32b6444d 2385
32cc71de
AF
2386 ret = bdrv_pwrite(bs->file, slice_offset, slice_size2,
2387 l2_slice, 0);
226494ff
AG
2388 if (ret < 0) {
2389 goto fail;
2390 }
32b6444d
HR
2391 }
2392 }
2393 }
4057a2b2
HR
2394
2395 (*visited_l1_entries)++;
2396 if (status_cb) {
8b13976d 2397 status_cb(bs, *visited_l1_entries, l1_entries, cb_opaque);
4057a2b2 2398 }
32b6444d
HR
2399 }
2400
2401 ret = 0;
2402
2403fail:
415184f5 2404 if (l2_slice) {
32b6444d 2405 if (!is_active_l1) {
415184f5 2406 qemu_vfree(l2_slice);
32b6444d 2407 } else {
415184f5 2408 qcow2_cache_put(s->l2_table_cache, (void **) &l2_slice);
32b6444d
HR
2409 }
2410 }
2411 return ret;
2412}
2413
2414/*
2415 * For backed images, expands all zero clusters on the image. For non-backed
2416 * images, deallocates all non-pre-allocated zero clusters (and claims the
2417 * allocation for pre-allocated ones). This is important for downgrading to a
2418 * qcow2 version which doesn't yet support metadata zero clusters.
2419 */
4057a2b2 2420int qcow2_expand_zero_clusters(BlockDriverState *bs,
8b13976d
HR
2421 BlockDriverAmendStatusCB *status_cb,
2422 void *cb_opaque)
32b6444d 2423{
ff99129a 2424 BDRVQcow2State *s = bs->opaque;
32b6444d 2425 uint64_t *l1_table = NULL;
4057a2b2 2426 int64_t l1_entries = 0, visited_l1_entries = 0;
32b6444d
HR
2427 int ret;
2428 int i, j;
2429
4057a2b2
HR
2430 if (status_cb) {
2431 l1_entries = s->l1_size;
2432 for (i = 0; i < s->nb_snapshots; i++) {
2433 l1_entries += s->snapshots[i].l1_size;
2434 }
2435 }
2436
32b6444d 2437 ret = expand_zero_clusters_in_l1(bs, s->l1_table, s->l1_size,
4057a2b2 2438 &visited_l1_entries, l1_entries,
8b13976d 2439 status_cb, cb_opaque);
32b6444d
HR
2440 if (ret < 0) {
2441 goto fail;
2442 }
2443
2444 /* Inactive L1 tables may point to active L2 tables - therefore it is
2445 * necessary to flush the L2 table cache before trying to access the L2
2446 * tables pointed to by inactive L1 entries (else we might try to expand
2447 * zero clusters that have already been expanded); furthermore, it is also
2448 * necessary to empty the L2 table cache, since it may contain tables which
2449 * are now going to be modified directly on disk, bypassing the cache.
2450 * qcow2_cache_empty() does both for us. */
2451 ret = qcow2_cache_empty(bs, s->l2_table_cache);
2452 if (ret < 0) {
2453 goto fail;
2454 }
2455
2456 for (i = 0; i < s->nb_snapshots; i++) {
c9a442e4
AG
2457 int l1_size2;
2458 uint64_t *new_l1_table;
2459 Error *local_err = NULL;
2460
2461 ret = qcow2_validate_table(bs, s->snapshots[i].l1_table_offset,
02b1ecfa 2462 s->snapshots[i].l1_size, L1E_SIZE,
c9a442e4
AG
2463 QCOW_MAX_L1_SIZE, "Snapshot L1 table",
2464 &local_err);
2465 if (ret < 0) {
2466 error_report_err(local_err);
2467 goto fail;
2468 }
32b6444d 2469
02b1ecfa 2470 l1_size2 = s->snapshots[i].l1_size * L1E_SIZE;
c9a442e4 2471 new_l1_table = g_try_realloc(l1_table, l1_size2);
de7269d2
AG
2472
2473 if (!new_l1_table) {
2474 ret = -ENOMEM;
2475 goto fail;
2476 }
2477
2478 l1_table = new_l1_table;
32b6444d 2479
32cc71de
AF
2480 ret = bdrv_pread(bs->file, s->snapshots[i].l1_table_offset, l1_size2,
2481 l1_table, 0);
32b6444d
HR
2482 if (ret < 0) {
2483 goto fail;
2484 }
2485
2486 for (j = 0; j < s->snapshots[i].l1_size; j++) {
2487 be64_to_cpus(&l1_table[j]);
2488 }
2489
2490 ret = expand_zero_clusters_in_l1(bs, l1_table, s->snapshots[i].l1_size,
4057a2b2 2491 &visited_l1_entries, l1_entries,
8b13976d 2492 status_cb, cb_opaque);
32b6444d
HR
2493 if (ret < 0) {
2494 goto fail;
2495 }
2496 }
2497
2498 ret = 0;
2499
2500fail:
32b6444d
HR
2501 g_free(l1_table);
2502 return ret;
2503}
a6e09846
VSO
2504
2505void qcow2_parse_compressed_l2_entry(BlockDriverState *bs, uint64_t l2_entry,
2506 uint64_t *coffset, int *csize)
2507{
2508 BDRVQcow2State *s = bs->opaque;
2509 int nb_csectors;
2510
2511 assert(qcow2_get_cluster_type(bs, l2_entry) == QCOW2_CLUSTER_COMPRESSED);
2512
2513 *coffset = l2_entry & s->cluster_offset_mask;
2514
2515 nb_csectors = ((l2_entry >> s->csize_shift) & s->csize_mask) + 1;
2516 *csize = nb_csectors * QCOW2_COMPRESSED_SECTOR_SIZE -
2517 (*coffset & (QCOW2_COMPRESSED_SECTOR_SIZE - 1));
2518}