2 * Block driver for the QCOW version 2 format
4 * Copyright (c) 2004-2006 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
25 #include "qemu/osdep.h"
28 #include "qapi/error.h"
30 #include "qemu/bswap.h"
33 int qcow2_shrink_l1_table(BlockDriverState
*bs
, uint64_t exact_size
)
35 BDRVQcow2State
*s
= bs
->opaque
;
36 int new_l1_size
, i
, ret
;
38 if (exact_size
>= s
->l1_size
) {
42 new_l1_size
= exact_size
;
45 fprintf(stderr
, "shrink l1_table from %d to %d\n", s
->l1_size
, new_l1_size
);
48 BLKDBG_EVENT(bs
->file
, BLKDBG_L1_SHRINK_WRITE_TABLE
);
49 ret
= bdrv_pwrite_zeroes(bs
->file
, s
->l1_table_offset
+
50 new_l1_size
* sizeof(uint64_t),
51 (s
->l1_size
- new_l1_size
) * sizeof(uint64_t), 0);
56 ret
= bdrv_flush(bs
->file
->bs
);
61 BLKDBG_EVENT(bs
->file
, BLKDBG_L1_SHRINK_FREE_L2_CLUSTERS
);
62 for (i
= s
->l1_size
- 1; i
> new_l1_size
- 1; i
--) {
63 if ((s
->l1_table
[i
] & L1E_OFFSET_MASK
) == 0) {
66 qcow2_free_clusters(bs
, s
->l1_table
[i
] & L1E_OFFSET_MASK
,
67 s
->cluster_size
, QCOW2_DISCARD_ALWAYS
);
74 * If the write in the l1_table failed the image may contain a partially
75 * overwritten l1_table. In this case it would be better to clear the
76 * l1_table in memory to avoid possible image corruption.
78 memset(s
->l1_table
+ new_l1_size
, 0,
79 (s
->l1_size
- new_l1_size
) * sizeof(uint64_t));
83 int qcow2_grow_l1_table(BlockDriverState
*bs
, uint64_t min_size
,
86 BDRVQcow2State
*s
= bs
->opaque
;
87 int new_l1_size2
, ret
, i
;
88 uint64_t *new_l1_table
;
89 int64_t old_l1_table_offset
, old_l1_size
;
90 int64_t new_l1_table_offset
, new_l1_size
;
93 if (min_size
<= s
->l1_size
)
96 /* Do a sanity check on min_size before trying to calculate new_l1_size
97 * (this prevents overflows during the while loop for the calculation of
99 if (min_size
> INT_MAX
/ sizeof(uint64_t)) {
104 new_l1_size
= min_size
;
106 /* Bump size up to reduce the number of times we have to grow */
107 new_l1_size
= s
->l1_size
;
108 if (new_l1_size
== 0) {
111 while (min_size
> new_l1_size
) {
112 new_l1_size
= DIV_ROUND_UP(new_l1_size
* 3, 2);
116 QEMU_BUILD_BUG_ON(QCOW_MAX_L1_SIZE
> INT_MAX
);
117 if (new_l1_size
> QCOW_MAX_L1_SIZE
/ sizeof(uint64_t)) {
122 fprintf(stderr
, "grow l1_table from %d to %" PRId64
"\n",
123 s
->l1_size
, new_l1_size
);
126 new_l1_size2
= sizeof(uint64_t) * new_l1_size
;
127 new_l1_table
= qemu_try_blockalign(bs
->file
->bs
, new_l1_size2
);
128 if (new_l1_table
== NULL
) {
131 memset(new_l1_table
, 0, new_l1_size2
);
134 memcpy(new_l1_table
, s
->l1_table
, s
->l1_size
* sizeof(uint64_t));
137 /* write new table (align to cluster) */
138 BLKDBG_EVENT(bs
->file
, BLKDBG_L1_GROW_ALLOC_TABLE
);
139 new_l1_table_offset
= qcow2_alloc_clusters(bs
, new_l1_size2
);
140 if (new_l1_table_offset
< 0) {
141 qemu_vfree(new_l1_table
);
142 return new_l1_table_offset
;
145 ret
= qcow2_cache_flush(bs
, s
->refcount_block_cache
);
150 /* the L1 position has not yet been updated, so these clusters must
151 * indeed be completely free */
152 ret
= qcow2_pre_write_overlap_check(bs
, 0, new_l1_table_offset
,
153 new_l1_size2
, false);
158 BLKDBG_EVENT(bs
->file
, BLKDBG_L1_GROW_WRITE_TABLE
);
159 for(i
= 0; i
< s
->l1_size
; i
++)
160 new_l1_table
[i
] = cpu_to_be64(new_l1_table
[i
]);
161 ret
= bdrv_pwrite_sync(bs
->file
, new_l1_table_offset
,
162 new_l1_table
, new_l1_size2
);
165 for(i
= 0; i
< s
->l1_size
; i
++)
166 new_l1_table
[i
] = be64_to_cpu(new_l1_table
[i
]);
169 BLKDBG_EVENT(bs
->file
, BLKDBG_L1_GROW_ACTIVATE_TABLE
);
170 stl_be_p(data
, new_l1_size
);
171 stq_be_p(data
+ 4, new_l1_table_offset
);
172 ret
= bdrv_pwrite_sync(bs
->file
, offsetof(QCowHeader
, l1_size
),
177 qemu_vfree(s
->l1_table
);
178 old_l1_table_offset
= s
->l1_table_offset
;
179 s
->l1_table_offset
= new_l1_table_offset
;
180 s
->l1_table
= new_l1_table
;
181 old_l1_size
= s
->l1_size
;
182 s
->l1_size
= new_l1_size
;
183 qcow2_free_clusters(bs
, old_l1_table_offset
, old_l1_size
* sizeof(uint64_t),
184 QCOW2_DISCARD_OTHER
);
187 qemu_vfree(new_l1_table
);
188 qcow2_free_clusters(bs
, new_l1_table_offset
, new_l1_size2
,
189 QCOW2_DISCARD_OTHER
);
196 * @bs: The BlockDriverState
197 * @offset: A guest offset, used to calculate what slice of the L2
199 * @l2_offset: Offset to the L2 table in the image file.
200 * @l2_slice: Location to store the pointer to the L2 slice.
202 * Loads a L2 slice into memory (L2 slices are the parts of L2 tables
203 * that are loaded by the qcow2 cache). If the slice is in the cache,
204 * the cache is used; otherwise the L2 slice is loaded from the image
207 static int l2_load(BlockDriverState
*bs
, uint64_t offset
,
208 uint64_t l2_offset
, uint64_t **l2_slice
)
210 BDRVQcow2State
*s
= bs
->opaque
;
211 int start_of_slice
= l2_entry_size(s
) *
212 (offset_to_l2_index(s
, offset
) - offset_to_l2_slice_index(s
, offset
));
214 return qcow2_cache_get(bs
, s
->l2_table_cache
, l2_offset
+ start_of_slice
,
219 * Writes an L1 entry to disk (note that depending on the alignment
220 * requirements this function may write more that just one entry in
221 * order to prevent bdrv_pwrite from performing a read-modify-write)
223 int qcow2_write_l1_entry(BlockDriverState
*bs
, int l1_index
)
225 BDRVQcow2State
*s
= bs
->opaque
;
228 int bufsize
= MAX(sizeof(uint64_t),
229 MIN(bs
->file
->bs
->bl
.request_alignment
, s
->cluster_size
));
230 int nentries
= bufsize
/ sizeof(uint64_t);
231 g_autofree
uint64_t *buf
= g_try_new0(uint64_t, nentries
);
237 l1_start_index
= QEMU_ALIGN_DOWN(l1_index
, nentries
);
238 for (i
= 0; i
< MIN(nentries
, s
->l1_size
- l1_start_index
); i
++) {
239 buf
[i
] = cpu_to_be64(s
->l1_table
[l1_start_index
+ i
]);
242 ret
= qcow2_pre_write_overlap_check(bs
, QCOW2_OL_ACTIVE_L1
,
243 s
->l1_table_offset
+ 8 * l1_start_index
, bufsize
, false);
248 BLKDBG_EVENT(bs
->file
, BLKDBG_L1_UPDATE
);
249 ret
= bdrv_pwrite_sync(bs
->file
,
250 s
->l1_table_offset
+ 8 * l1_start_index
,
262 * Allocate a new l2 entry in the file. If l1_index points to an already
263 * used entry in the L2 table (i.e. we are doing a copy on write for the L2
264 * table) copy the contents of the old L2 table into the newly allocated one.
265 * Otherwise the new table is initialized with zeros.
269 static int l2_allocate(BlockDriverState
*bs
, int l1_index
)
271 BDRVQcow2State
*s
= bs
->opaque
;
272 uint64_t old_l2_offset
;
273 uint64_t *l2_slice
= NULL
;
274 unsigned slice
, slice_size2
, n_slices
;
278 old_l2_offset
= s
->l1_table
[l1_index
];
280 trace_qcow2_l2_allocate(bs
, l1_index
);
282 /* allocate a new l2 entry */
284 l2_offset
= qcow2_alloc_clusters(bs
, s
->l2_size
* l2_entry_size(s
));
290 /* The offset must fit in the offset field of the L1 table entry */
291 assert((l2_offset
& L1E_OFFSET_MASK
) == l2_offset
);
293 /* If we're allocating the table at offset 0 then something is wrong */
294 if (l2_offset
== 0) {
295 qcow2_signal_corruption(bs
, true, -1, -1, "Preventing invalid "
296 "allocation of L2 table at offset 0");
301 ret
= qcow2_cache_flush(bs
, s
->refcount_block_cache
);
306 /* allocate a new entry in the l2 cache */
308 slice_size2
= s
->l2_slice_size
* l2_entry_size(s
);
309 n_slices
= s
->cluster_size
/ slice_size2
;
311 trace_qcow2_l2_allocate_get_empty(bs
, l1_index
);
312 for (slice
= 0; slice
< n_slices
; slice
++) {
313 ret
= qcow2_cache_get_empty(bs
, s
->l2_table_cache
,
314 l2_offset
+ slice
* slice_size2
,
315 (void **) &l2_slice
);
320 if ((old_l2_offset
& L1E_OFFSET_MASK
) == 0) {
321 /* if there was no old l2 table, clear the new slice */
322 memset(l2_slice
, 0, slice_size2
);
325 uint64_t old_l2_slice_offset
=
326 (old_l2_offset
& L1E_OFFSET_MASK
) + slice
* slice_size2
;
328 /* if there was an old l2 table, read a slice from the disk */
329 BLKDBG_EVENT(bs
->file
, BLKDBG_L2_ALLOC_COW_READ
);
330 ret
= qcow2_cache_get(bs
, s
->l2_table_cache
, old_l2_slice_offset
,
331 (void **) &old_slice
);
336 memcpy(l2_slice
, old_slice
, slice_size2
);
338 qcow2_cache_put(s
->l2_table_cache
, (void **) &old_slice
);
341 /* write the l2 slice to the file */
342 BLKDBG_EVENT(bs
->file
, BLKDBG_L2_ALLOC_WRITE
);
344 trace_qcow2_l2_allocate_write_l2(bs
, l1_index
);
345 qcow2_cache_entry_mark_dirty(s
->l2_table_cache
, l2_slice
);
346 qcow2_cache_put(s
->l2_table_cache
, (void **) &l2_slice
);
349 ret
= qcow2_cache_flush(bs
, s
->l2_table_cache
);
354 /* update the L1 entry */
355 trace_qcow2_l2_allocate_write_l1(bs
, l1_index
);
356 s
->l1_table
[l1_index
] = l2_offset
| QCOW_OFLAG_COPIED
;
357 ret
= qcow2_write_l1_entry(bs
, l1_index
);
362 trace_qcow2_l2_allocate_done(bs
, l1_index
, 0);
366 trace_qcow2_l2_allocate_done(bs
, l1_index
, ret
);
367 if (l2_slice
!= NULL
) {
368 qcow2_cache_put(s
->l2_table_cache
, (void **) &l2_slice
);
370 s
->l1_table
[l1_index
] = old_l2_offset
;
372 qcow2_free_clusters(bs
, l2_offset
, s
->l2_size
* l2_entry_size(s
),
373 QCOW2_DISCARD_ALWAYS
);
379 * For a given L2 entry, count the number of contiguous subclusters of
380 * the same type starting from @sc_from. Compressed clusters are
381 * treated as if they were divided into subclusters of size
382 * s->subcluster_size.
384 * Return the number of contiguous subclusters and set @type to the
387 * If the L2 entry is invalid return -errno and set @type to
388 * QCOW2_SUBCLUSTER_INVALID.
390 static int qcow2_get_subcluster_range_type(BlockDriverState
*bs
,
394 QCow2SubclusterType
*type
)
396 BDRVQcow2State
*s
= bs
->opaque
;
399 *type
= qcow2_get_subcluster_type(bs
, l2_entry
, l2_bitmap
, sc_from
);
401 if (*type
== QCOW2_SUBCLUSTER_INVALID
) {
403 } else if (!has_subclusters(s
) || *type
== QCOW2_SUBCLUSTER_COMPRESSED
) {
404 return s
->subclusters_per_cluster
- sc_from
;
408 case QCOW2_SUBCLUSTER_NORMAL
:
409 val
= l2_bitmap
| QCOW_OFLAG_SUB_ALLOC_RANGE(0, sc_from
);
410 return cto32(val
) - sc_from
;
412 case QCOW2_SUBCLUSTER_ZERO_PLAIN
:
413 case QCOW2_SUBCLUSTER_ZERO_ALLOC
:
414 val
= (l2_bitmap
| QCOW_OFLAG_SUB_ZERO_RANGE(0, sc_from
)) >> 32;
415 return cto32(val
) - sc_from
;
417 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
:
418 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
:
419 val
= ((l2_bitmap
>> 32) | l2_bitmap
)
420 & ~QCOW_OFLAG_SUB_ALLOC_RANGE(0, sc_from
);
421 return ctz32(val
) - sc_from
;
424 g_assert_not_reached();
429 * Return the number of contiguous subclusters of the exact same type
430 * in a given L2 slice, starting from cluster @l2_index, subcluster
431 * @sc_index. Allocated subclusters are required to be contiguous in
433 * At most @nb_clusters are checked (note that this means clusters,
435 * Compressed clusters are always processed one by one but for the
436 * purpose of this count they are treated as if they were divided into
437 * subclusters of size s->subcluster_size.
438 * On failure return -errno and update @l2_index to point to the
441 static int count_contiguous_subclusters(BlockDriverState
*bs
, int nb_clusters
,
442 unsigned sc_index
, uint64_t *l2_slice
,
445 BDRVQcow2State
*s
= bs
->opaque
;
447 bool check_offset
= false;
448 uint64_t expected_offset
= 0;
449 QCow2SubclusterType expected_type
= QCOW2_SUBCLUSTER_NORMAL
, type
;
451 assert(*l2_index
+ nb_clusters
<= s
->l2_slice_size
);
453 for (i
= 0; i
< nb_clusters
; i
++) {
454 unsigned first_sc
= (i
== 0) ? sc_index
: 0;
455 uint64_t l2_entry
= get_l2_entry(s
, l2_slice
, *l2_index
+ i
);
456 uint64_t l2_bitmap
= get_l2_bitmap(s
, l2_slice
, *l2_index
+ i
);
457 int ret
= qcow2_get_subcluster_range_type(bs
, l2_entry
, l2_bitmap
,
460 *l2_index
+= i
; /* Point to the invalid entry */
464 if (type
== QCOW2_SUBCLUSTER_COMPRESSED
) {
465 /* Compressed clusters are always processed one by one */
468 expected_type
= type
;
469 expected_offset
= l2_entry
& L2E_OFFSET_MASK
;
470 check_offset
= (type
== QCOW2_SUBCLUSTER_NORMAL
||
471 type
== QCOW2_SUBCLUSTER_ZERO_ALLOC
||
472 type
== QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
);
473 } else if (type
!= expected_type
) {
475 } else if (check_offset
) {
476 expected_offset
+= s
->cluster_size
;
477 if (expected_offset
!= (l2_entry
& L2E_OFFSET_MASK
)) {
482 /* Stop if there are type changes before the end of the cluster */
483 if (first_sc
+ ret
< s
->subclusters_per_cluster
) {
491 static int coroutine_fn
do_perform_cow_read(BlockDriverState
*bs
,
492 uint64_t src_cluster_offset
,
493 unsigned offset_in_cluster
,
498 if (qiov
->size
== 0) {
502 BLKDBG_EVENT(bs
->file
, BLKDBG_COW_READ
);
508 /* Call .bdrv_co_readv() directly instead of using the public block-layer
509 * interface. This avoids double I/O throttling and request tracking,
510 * which can lead to deadlock when block layer copy-on-read is enabled.
512 ret
= bs
->drv
->bdrv_co_preadv_part(bs
,
513 src_cluster_offset
+ offset_in_cluster
,
514 qiov
->size
, qiov
, 0, 0);
522 static int coroutine_fn
do_perform_cow_write(BlockDriverState
*bs
,
523 uint64_t cluster_offset
,
524 unsigned offset_in_cluster
,
527 BDRVQcow2State
*s
= bs
->opaque
;
530 if (qiov
->size
== 0) {
534 ret
= qcow2_pre_write_overlap_check(bs
, 0,
535 cluster_offset
+ offset_in_cluster
, qiov
->size
, true);
540 BLKDBG_EVENT(bs
->file
, BLKDBG_COW_WRITE
);
541 ret
= bdrv_co_pwritev(s
->data_file
, cluster_offset
+ offset_in_cluster
,
542 qiov
->size
, qiov
, 0);
554 * For a given offset of the virtual disk find the equivalent host
555 * offset in the qcow2 file and store it in *host_offset. Neither
556 * offset needs to be aligned to a cluster boundary.
558 * If the cluster is unallocated then *host_offset will be 0.
559 * If the cluster is compressed then *host_offset will contain the
560 * complete compressed cluster descriptor.
562 * On entry, *bytes is the maximum number of contiguous bytes starting at
563 * offset that we are interested in.
565 * On exit, *bytes is the number of bytes starting at offset that have the same
566 * subcluster type and (if applicable) are stored contiguously in the image
567 * file. The subcluster type is stored in *subcluster_type.
568 * Compressed clusters are always processed one by one.
570 * Returns 0 on success, -errno in error cases.
572 int qcow2_get_host_offset(BlockDriverState
*bs
, uint64_t offset
,
573 unsigned int *bytes
, uint64_t *host_offset
,
574 QCow2SubclusterType
*subcluster_type
)
576 BDRVQcow2State
*s
= bs
->opaque
;
577 unsigned int l2_index
, sc_index
;
578 uint64_t l1_index
, l2_offset
, *l2_slice
, l2_entry
, l2_bitmap
;
580 unsigned int offset_in_cluster
;
581 uint64_t bytes_available
, bytes_needed
, nb_clusters
;
582 QCow2SubclusterType type
;
585 offset_in_cluster
= offset_into_cluster(s
, offset
);
586 bytes_needed
= (uint64_t) *bytes
+ offset_in_cluster
;
588 /* compute how many bytes there are between the start of the cluster
589 * containing offset and the end of the l2 slice that contains
590 * the entry pointing to it */
592 ((uint64_t) (s
->l2_slice_size
- offset_to_l2_slice_index(s
, offset
)))
595 if (bytes_needed
> bytes_available
) {
596 bytes_needed
= bytes_available
;
601 /* seek to the l2 offset in the l1 table */
603 l1_index
= offset_to_l1_index(s
, offset
);
604 if (l1_index
>= s
->l1_size
) {
605 type
= QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
;
609 l2_offset
= s
->l1_table
[l1_index
] & L1E_OFFSET_MASK
;
611 type
= QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
;
615 if (offset_into_cluster(s
, l2_offset
)) {
616 qcow2_signal_corruption(bs
, true, -1, -1, "L2 table offset %#" PRIx64
617 " unaligned (L1 index: %#" PRIx64
")",
618 l2_offset
, l1_index
);
622 /* load the l2 slice in memory */
624 ret
= l2_load(bs
, offset
, l2_offset
, &l2_slice
);
629 /* find the cluster offset for the given disk offset */
631 l2_index
= offset_to_l2_slice_index(s
, offset
);
632 sc_index
= offset_to_sc_index(s
, offset
);
633 l2_entry
= get_l2_entry(s
, l2_slice
, l2_index
);
634 l2_bitmap
= get_l2_bitmap(s
, l2_slice
, l2_index
);
636 nb_clusters
= size_to_clusters(s
, bytes_needed
);
637 /* bytes_needed <= *bytes + offset_in_cluster, both of which are unsigned
638 * integers; the minimum cluster size is 512, so this assertion is always
640 assert(nb_clusters
<= INT_MAX
);
642 type
= qcow2_get_subcluster_type(bs
, l2_entry
, l2_bitmap
, sc_index
);
643 if (s
->qcow_version
< 3 && (type
== QCOW2_SUBCLUSTER_ZERO_PLAIN
||
644 type
== QCOW2_SUBCLUSTER_ZERO_ALLOC
)) {
645 qcow2_signal_corruption(bs
, true, -1, -1, "Zero cluster entry found"
646 " in pre-v3 image (L2 offset: %#" PRIx64
647 ", L2 index: %#x)", l2_offset
, l2_index
);
652 case QCOW2_SUBCLUSTER_INVALID
:
653 break; /* This is handled by count_contiguous_subclusters() below */
654 case QCOW2_SUBCLUSTER_COMPRESSED
:
655 if (has_data_file(bs
)) {
656 qcow2_signal_corruption(bs
, true, -1, -1, "Compressed cluster "
657 "entry found in image with external data "
658 "file (L2 offset: %#" PRIx64
", L2 index: "
659 "%#x)", l2_offset
, l2_index
);
663 *host_offset
= l2_entry
& L2E_COMPRESSED_OFFSET_SIZE_MASK
;
665 case QCOW2_SUBCLUSTER_ZERO_PLAIN
:
666 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
:
668 case QCOW2_SUBCLUSTER_ZERO_ALLOC
:
669 case QCOW2_SUBCLUSTER_NORMAL
:
670 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
: {
671 uint64_t host_cluster_offset
= l2_entry
& L2E_OFFSET_MASK
;
672 *host_offset
= host_cluster_offset
+ offset_in_cluster
;
673 if (offset_into_cluster(s
, host_cluster_offset
)) {
674 qcow2_signal_corruption(bs
, true, -1, -1,
675 "Cluster allocation offset %#"
676 PRIx64
" unaligned (L2 offset: %#" PRIx64
677 ", L2 index: %#x)", host_cluster_offset
,
678 l2_offset
, l2_index
);
682 if (has_data_file(bs
) && *host_offset
!= offset
) {
683 qcow2_signal_corruption(bs
, true, -1, -1,
684 "External data file host cluster offset %#"
685 PRIx64
" does not match guest cluster "
687 ", L2 index: %#x)", host_cluster_offset
,
688 offset
- offset_in_cluster
, l2_index
);
698 sc
= count_contiguous_subclusters(bs
, nb_clusters
, sc_index
,
699 l2_slice
, &l2_index
);
701 qcow2_signal_corruption(bs
, true, -1, -1, "Invalid cluster entry found "
702 " (L2 offset: %#" PRIx64
", L2 index: %#x)",
703 l2_offset
, l2_index
);
707 qcow2_cache_put(s
->l2_table_cache
, (void **) &l2_slice
);
709 bytes_available
= ((int64_t)sc
+ sc_index
) << s
->subcluster_bits
;
712 if (bytes_available
> bytes_needed
) {
713 bytes_available
= bytes_needed
;
716 /* bytes_available <= bytes_needed <= *bytes + offset_in_cluster;
717 * subtracting offset_in_cluster will therefore definitely yield something
718 * not exceeding UINT_MAX */
719 assert(bytes_available
- offset_in_cluster
<= UINT_MAX
);
720 *bytes
= bytes_available
- offset_in_cluster
;
722 *subcluster_type
= type
;
727 qcow2_cache_put(s
->l2_table_cache
, (void **)&l2_slice
);
734 * for a given disk offset, load (and allocate if needed)
735 * the appropriate slice of its l2 table.
737 * the cluster index in the l2 slice is given to the caller.
739 * Returns 0 on success, -errno in failure case
741 static int get_cluster_table(BlockDriverState
*bs
, uint64_t offset
,
742 uint64_t **new_l2_slice
,
745 BDRVQcow2State
*s
= bs
->opaque
;
746 unsigned int l2_index
;
747 uint64_t l1_index
, l2_offset
;
748 uint64_t *l2_slice
= NULL
;
751 /* seek to the l2 offset in the l1 table */
753 l1_index
= offset_to_l1_index(s
, offset
);
754 if (l1_index
>= s
->l1_size
) {
755 ret
= qcow2_grow_l1_table(bs
, l1_index
+ 1, false);
761 assert(l1_index
< s
->l1_size
);
762 l2_offset
= s
->l1_table
[l1_index
] & L1E_OFFSET_MASK
;
763 if (offset_into_cluster(s
, l2_offset
)) {
764 qcow2_signal_corruption(bs
, true, -1, -1, "L2 table offset %#" PRIx64
765 " unaligned (L1 index: %#" PRIx64
")",
766 l2_offset
, l1_index
);
770 if (!(s
->l1_table
[l1_index
] & QCOW_OFLAG_COPIED
)) {
771 /* First allocate a new L2 table (and do COW if needed) */
772 ret
= l2_allocate(bs
, l1_index
);
777 /* Then decrease the refcount of the old table */
779 qcow2_free_clusters(bs
, l2_offset
, s
->l2_size
* l2_entry_size(s
),
780 QCOW2_DISCARD_OTHER
);
783 /* Get the offset of the newly-allocated l2 table */
784 l2_offset
= s
->l1_table
[l1_index
] & L1E_OFFSET_MASK
;
785 assert(offset_into_cluster(s
, l2_offset
) == 0);
788 /* load the l2 slice in memory */
789 ret
= l2_load(bs
, offset
, l2_offset
, &l2_slice
);
794 /* find the cluster offset for the given disk offset */
796 l2_index
= offset_to_l2_slice_index(s
, offset
);
798 *new_l2_slice
= l2_slice
;
799 *new_l2_index
= l2_index
;
805 * alloc_compressed_cluster_offset
807 * For a given offset on the virtual disk, allocate a new compressed cluster
808 * and put the host offset of the cluster into *host_offset. If a cluster is
809 * already allocated at the offset, return an error.
811 * Return 0 on success and -errno in error cases
813 int qcow2_alloc_compressed_cluster_offset(BlockDriverState
*bs
,
816 uint64_t *host_offset
)
818 BDRVQcow2State
*s
= bs
->opaque
;
821 int64_t cluster_offset
;
824 if (has_data_file(bs
)) {
828 ret
= get_cluster_table(bs
, offset
, &l2_slice
, &l2_index
);
833 /* Compression can't overwrite anything. Fail if the cluster was already
835 cluster_offset
= get_l2_entry(s
, l2_slice
, l2_index
);
836 if (cluster_offset
& L2E_OFFSET_MASK
) {
837 qcow2_cache_put(s
->l2_table_cache
, (void **) &l2_slice
);
841 cluster_offset
= qcow2_alloc_bytes(bs
, compressed_size
);
842 if (cluster_offset
< 0) {
843 qcow2_cache_put(s
->l2_table_cache
, (void **) &l2_slice
);
844 return cluster_offset
;
848 (cluster_offset
+ compressed_size
- 1) / QCOW2_COMPRESSED_SECTOR_SIZE
-
849 (cluster_offset
/ QCOW2_COMPRESSED_SECTOR_SIZE
);
851 /* The offset and size must fit in their fields of the L2 table entry */
852 assert((cluster_offset
& s
->cluster_offset_mask
) == cluster_offset
);
853 assert((nb_csectors
& s
->csize_mask
) == nb_csectors
);
855 cluster_offset
|= QCOW_OFLAG_COMPRESSED
|
856 ((uint64_t)nb_csectors
<< s
->csize_shift
);
858 /* update L2 table */
860 /* compressed clusters never have the copied flag */
862 BLKDBG_EVENT(bs
->file
, BLKDBG_L2_UPDATE_COMPRESSED
);
863 qcow2_cache_entry_mark_dirty(s
->l2_table_cache
, l2_slice
);
864 set_l2_entry(s
, l2_slice
, l2_index
, cluster_offset
);
865 if (has_subclusters(s
)) {
866 set_l2_bitmap(s
, l2_slice
, l2_index
, 0);
868 qcow2_cache_put(s
->l2_table_cache
, (void **) &l2_slice
);
870 *host_offset
= cluster_offset
& s
->cluster_offset_mask
;
874 static int perform_cow(BlockDriverState
*bs
, QCowL2Meta
*m
)
876 BDRVQcow2State
*s
= bs
->opaque
;
877 Qcow2COWRegion
*start
= &m
->cow_start
;
878 Qcow2COWRegion
*end
= &m
->cow_end
;
879 unsigned buffer_size
;
880 unsigned data_bytes
= end
->offset
- (start
->offset
+ start
->nb_bytes
);
882 uint8_t *start_buffer
, *end_buffer
;
886 assert(start
->nb_bytes
<= UINT_MAX
- end
->nb_bytes
);
887 assert(start
->nb_bytes
+ end
->nb_bytes
<= UINT_MAX
- data_bytes
);
888 assert(start
->offset
+ start
->nb_bytes
<= end
->offset
);
890 if ((start
->nb_bytes
== 0 && end
->nb_bytes
== 0) || m
->skip_cow
) {
894 /* If we have to read both the start and end COW regions and the
895 * middle region is not too large then perform just one read
897 merge_reads
= start
->nb_bytes
&& end
->nb_bytes
&& data_bytes
<= 16384;
899 buffer_size
= start
->nb_bytes
+ data_bytes
+ end
->nb_bytes
;
901 /* If we have to do two reads, add some padding in the middle
902 * if necessary to make sure that the end region is optimally
904 size_t align
= bdrv_opt_mem_align(bs
);
905 assert(align
> 0 && align
<= UINT_MAX
);
906 assert(QEMU_ALIGN_UP(start
->nb_bytes
, align
) <=
907 UINT_MAX
- end
->nb_bytes
);
908 buffer_size
= QEMU_ALIGN_UP(start
->nb_bytes
, align
) + end
->nb_bytes
;
911 /* Reserve a buffer large enough to store all the data that we're
913 start_buffer
= qemu_try_blockalign(bs
, buffer_size
);
914 if (start_buffer
== NULL
) {
917 /* The part of the buffer where the end region is located */
918 end_buffer
= start_buffer
+ buffer_size
- end
->nb_bytes
;
920 qemu_iovec_init(&qiov
, 2 + (m
->data_qiov
?
921 qemu_iovec_subvec_niov(m
->data_qiov
,
926 qemu_co_mutex_unlock(&s
->lock
);
927 /* First we read the existing data from both COW regions. We
928 * either read the whole region in one go, or the start and end
929 * regions separately. */
931 qemu_iovec_add(&qiov
, start_buffer
, buffer_size
);
932 ret
= do_perform_cow_read(bs
, m
->offset
, start
->offset
, &qiov
);
934 qemu_iovec_add(&qiov
, start_buffer
, start
->nb_bytes
);
935 ret
= do_perform_cow_read(bs
, m
->offset
, start
->offset
, &qiov
);
940 qemu_iovec_reset(&qiov
);
941 qemu_iovec_add(&qiov
, end_buffer
, end
->nb_bytes
);
942 ret
= do_perform_cow_read(bs
, m
->offset
, end
->offset
, &qiov
);
948 /* Encrypt the data if necessary before writing it */
950 ret
= qcow2_co_encrypt(bs
,
951 m
->alloc_offset
+ start
->offset
,
952 m
->offset
+ start
->offset
,
953 start_buffer
, start
->nb_bytes
);
958 ret
= qcow2_co_encrypt(bs
,
959 m
->alloc_offset
+ end
->offset
,
960 m
->offset
+ end
->offset
,
961 end_buffer
, end
->nb_bytes
);
967 /* And now we can write everything. If we have the guest data we
968 * can write everything in one single operation */
970 qemu_iovec_reset(&qiov
);
971 if (start
->nb_bytes
) {
972 qemu_iovec_add(&qiov
, start_buffer
, start
->nb_bytes
);
974 qemu_iovec_concat(&qiov
, m
->data_qiov
, m
->data_qiov_offset
, data_bytes
);
976 qemu_iovec_add(&qiov
, end_buffer
, end
->nb_bytes
);
978 /* NOTE: we have a write_aio blkdebug event here followed by
979 * a cow_write one in do_perform_cow_write(), but there's only
980 * one single I/O operation */
981 BLKDBG_EVENT(bs
->file
, BLKDBG_WRITE_AIO
);
982 ret
= do_perform_cow_write(bs
, m
->alloc_offset
, start
->offset
, &qiov
);
984 /* If there's no guest data then write both COW regions separately */
985 qemu_iovec_reset(&qiov
);
986 qemu_iovec_add(&qiov
, start_buffer
, start
->nb_bytes
);
987 ret
= do_perform_cow_write(bs
, m
->alloc_offset
, start
->offset
, &qiov
);
992 qemu_iovec_reset(&qiov
);
993 qemu_iovec_add(&qiov
, end_buffer
, end
->nb_bytes
);
994 ret
= do_perform_cow_write(bs
, m
->alloc_offset
, end
->offset
, &qiov
);
998 qemu_co_mutex_lock(&s
->lock
);
1001 * Before we update the L2 table to actually point to the new cluster, we
1002 * need to be sure that the refcounts have been increased and COW was
1006 qcow2_cache_depends_on_flush(s
->l2_table_cache
);
1009 qemu_vfree(start_buffer
);
1010 qemu_iovec_destroy(&qiov
);
1014 int qcow2_alloc_cluster_link_l2(BlockDriverState
*bs
, QCowL2Meta
*m
)
1016 BDRVQcow2State
*s
= bs
->opaque
;
1017 int i
, j
= 0, l2_index
, ret
;
1018 uint64_t *old_cluster
, *l2_slice
;
1019 uint64_t cluster_offset
= m
->alloc_offset
;
1021 trace_qcow2_cluster_link_l2(qemu_coroutine_self(), m
->nb_clusters
);
1022 assert(m
->nb_clusters
> 0);
1024 old_cluster
= g_try_new(uint64_t, m
->nb_clusters
);
1025 if (old_cluster
== NULL
) {
1030 /* copy content of unmodified sectors */
1031 ret
= perform_cow(bs
, m
);
1036 /* Update L2 table. */
1037 if (s
->use_lazy_refcounts
) {
1038 qcow2_mark_dirty(bs
);
1040 if (qcow2_need_accurate_refcounts(s
)) {
1041 qcow2_cache_set_dependency(bs
, s
->l2_table_cache
,
1042 s
->refcount_block_cache
);
1045 ret
= get_cluster_table(bs
, m
->offset
, &l2_slice
, &l2_index
);
1049 qcow2_cache_entry_mark_dirty(s
->l2_table_cache
, l2_slice
);
1051 assert(l2_index
+ m
->nb_clusters
<= s
->l2_slice_size
);
1052 for (i
= 0; i
< m
->nb_clusters
; i
++) {
1053 uint64_t offset
= cluster_offset
+ ((uint64_t)i
<< s
->cluster_bits
);
1054 /* if two concurrent writes happen to the same unallocated cluster
1055 * each write allocates separate cluster and writes data concurrently.
1056 * The first one to complete updates l2 table with pointer to its
1057 * cluster the second one has to do RMW (which is done above by
1058 * perform_cow()), update l2 table with its cluster pointer and free
1059 * old cluster. This is what this loop does */
1060 if (get_l2_entry(s
, l2_slice
, l2_index
+ i
) != 0) {
1061 old_cluster
[j
++] = get_l2_entry(s
, l2_slice
, l2_index
+ i
);
1064 /* The offset must fit in the offset field of the L2 table entry */
1065 assert((offset
& L2E_OFFSET_MASK
) == offset
);
1067 set_l2_entry(s
, l2_slice
, l2_index
+ i
, offset
| QCOW_OFLAG_COPIED
);
1069 /* Update bitmap with the subclusters that were just written */
1070 if (has_subclusters(s
) && !m
->prealloc
) {
1071 uint64_t l2_bitmap
= get_l2_bitmap(s
, l2_slice
, l2_index
+ i
);
1072 unsigned written_from
= m
->cow_start
.offset
;
1073 unsigned written_to
= m
->cow_end
.offset
+ m
->cow_end
.nb_bytes
?:
1074 m
->nb_clusters
<< s
->cluster_bits
;
1075 int first_sc
, last_sc
;
1076 /* Narrow written_from and written_to down to the current cluster */
1077 written_from
= MAX(written_from
, i
<< s
->cluster_bits
);
1078 written_to
= MIN(written_to
, (i
+ 1) << s
->cluster_bits
);
1079 assert(written_from
< written_to
);
1080 first_sc
= offset_to_sc_index(s
, written_from
);
1081 last_sc
= offset_to_sc_index(s
, written_to
- 1);
1082 l2_bitmap
|= QCOW_OFLAG_SUB_ALLOC_RANGE(first_sc
, last_sc
+ 1);
1083 l2_bitmap
&= ~QCOW_OFLAG_SUB_ZERO_RANGE(first_sc
, last_sc
+ 1);
1084 set_l2_bitmap(s
, l2_slice
, l2_index
+ i
, l2_bitmap
);
1089 qcow2_cache_put(s
->l2_table_cache
, (void **) &l2_slice
);
1092 * If this was a COW, we need to decrease the refcount of the old cluster.
1094 * Don't discard clusters that reach a refcount of 0 (e.g. compressed
1095 * clusters), the next write will reuse them anyway.
1097 if (!m
->keep_old_clusters
&& j
!= 0) {
1098 for (i
= 0; i
< j
; i
++) {
1099 qcow2_free_any_clusters(bs
, old_cluster
[i
], 1, QCOW2_DISCARD_NEVER
);
1105 g_free(old_cluster
);
1110 * Frees the allocated clusters because the request failed and they won't
1111 * actually be linked.
1113 void qcow2_alloc_cluster_abort(BlockDriverState
*bs
, QCowL2Meta
*m
)
1115 BDRVQcow2State
*s
= bs
->opaque
;
1116 if (!has_data_file(bs
) && !m
->keep_old_clusters
) {
1117 qcow2_free_clusters(bs
, m
->alloc_offset
,
1118 m
->nb_clusters
<< s
->cluster_bits
,
1119 QCOW2_DISCARD_NEVER
);
1124 * For a given write request, create a new QCowL2Meta structure, add
1125 * it to @m and the BDRVQcow2State.cluster_allocs list. If the write
1126 * request does not need copy-on-write or changes to the L2 metadata
1127 * then this function does nothing.
1129 * @host_cluster_offset points to the beginning of the first cluster.
1131 * @guest_offset and @bytes indicate the offset and length of the
1134 * @l2_slice contains the L2 entries of all clusters involved in this
1137 * If @keep_old is true it means that the clusters were already
1138 * allocated and will be overwritten. If false then the clusters are
1139 * new and we have to decrease the reference count of the old ones.
1141 * Returns 0 on success, -errno on failure.
1143 static int calculate_l2_meta(BlockDriverState
*bs
, uint64_t host_cluster_offset
,
1144 uint64_t guest_offset
, unsigned bytes
,
1145 uint64_t *l2_slice
, QCowL2Meta
**m
, bool keep_old
)
1147 BDRVQcow2State
*s
= bs
->opaque
;
1148 int sc_index
, l2_index
= offset_to_l2_slice_index(s
, guest_offset
);
1149 uint64_t l2_entry
, l2_bitmap
;
1150 unsigned cow_start_from
, cow_end_to
;
1151 unsigned cow_start_to
= offset_into_cluster(s
, guest_offset
);
1152 unsigned cow_end_from
= cow_start_to
+ bytes
;
1153 unsigned nb_clusters
= size_to_clusters(s
, cow_end_from
);
1154 QCowL2Meta
*old_m
= *m
;
1155 QCow2SubclusterType type
;
1157 bool skip_cow
= keep_old
;
1159 assert(nb_clusters
<= s
->l2_slice_size
- l2_index
);
1161 /* Check the type of all affected subclusters */
1162 for (i
= 0; i
< nb_clusters
; i
++) {
1163 l2_entry
= get_l2_entry(s
, l2_slice
, l2_index
+ i
);
1164 l2_bitmap
= get_l2_bitmap(s
, l2_slice
, l2_index
+ i
);
1166 unsigned write_from
= MAX(cow_start_to
, i
<< s
->cluster_bits
);
1167 unsigned write_to
= MIN(cow_end_from
, (i
+ 1) << s
->cluster_bits
);
1168 int first_sc
= offset_to_sc_index(s
, write_from
);
1169 int last_sc
= offset_to_sc_index(s
, write_to
- 1);
1170 int cnt
= qcow2_get_subcluster_range_type(bs
, l2_entry
, l2_bitmap
,
1172 /* Is any of the subclusters of type != QCOW2_SUBCLUSTER_NORMAL ? */
1173 if (type
!= QCOW2_SUBCLUSTER_NORMAL
|| first_sc
+ cnt
<= last_sc
) {
1177 /* If we can't skip the cow we can still look for invalid entries */
1178 type
= qcow2_get_subcluster_type(bs
, l2_entry
, l2_bitmap
, 0);
1180 if (type
== QCOW2_SUBCLUSTER_INVALID
) {
1181 int l1_index
= offset_to_l1_index(s
, guest_offset
);
1182 uint64_t l2_offset
= s
->l1_table
[l1_index
] & L1E_OFFSET_MASK
;
1183 qcow2_signal_corruption(bs
, true, -1, -1, "Invalid cluster "
1184 "entry found (L2 offset: %#" PRIx64
1186 l2_offset
, l2_index
+ i
);
1195 /* Get the L2 entry of the first cluster */
1196 l2_entry
= get_l2_entry(s
, l2_slice
, l2_index
);
1197 l2_bitmap
= get_l2_bitmap(s
, l2_slice
, l2_index
);
1198 sc_index
= offset_to_sc_index(s
, guest_offset
);
1199 type
= qcow2_get_subcluster_type(bs
, l2_entry
, l2_bitmap
, sc_index
);
1203 case QCOW2_SUBCLUSTER_COMPRESSED
:
1206 case QCOW2_SUBCLUSTER_NORMAL
:
1207 case QCOW2_SUBCLUSTER_ZERO_ALLOC
:
1208 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
:
1209 if (has_subclusters(s
)) {
1210 /* Skip all leading zero and unallocated subclusters */
1211 uint32_t alloc_bitmap
= l2_bitmap
& QCOW_L2_BITMAP_ALL_ALLOC
;
1213 MIN(sc_index
, ctz32(alloc_bitmap
)) << s
->subcluster_bits
;
1218 case QCOW2_SUBCLUSTER_ZERO_PLAIN
:
1219 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
:
1220 cow_start_from
= sc_index
<< s
->subcluster_bits
;
1223 g_assert_not_reached();
1227 case QCOW2_SUBCLUSTER_NORMAL
:
1228 cow_start_from
= cow_start_to
;
1230 case QCOW2_SUBCLUSTER_ZERO_ALLOC
:
1231 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
:
1232 cow_start_from
= sc_index
<< s
->subcluster_bits
;
1235 g_assert_not_reached();
1239 /* Get the L2 entry of the last cluster */
1240 l2_index
+= nb_clusters
- 1;
1241 l2_entry
= get_l2_entry(s
, l2_slice
, l2_index
);
1242 l2_bitmap
= get_l2_bitmap(s
, l2_slice
, l2_index
);
1243 sc_index
= offset_to_sc_index(s
, guest_offset
+ bytes
- 1);
1244 type
= qcow2_get_subcluster_type(bs
, l2_entry
, l2_bitmap
, sc_index
);
1248 case QCOW2_SUBCLUSTER_COMPRESSED
:
1249 cow_end_to
= ROUND_UP(cow_end_from
, s
->cluster_size
);
1251 case QCOW2_SUBCLUSTER_NORMAL
:
1252 case QCOW2_SUBCLUSTER_ZERO_ALLOC
:
1253 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
:
1254 cow_end_to
= ROUND_UP(cow_end_from
, s
->cluster_size
);
1255 if (has_subclusters(s
)) {
1256 /* Skip all trailing zero and unallocated subclusters */
1257 uint32_t alloc_bitmap
= l2_bitmap
& QCOW_L2_BITMAP_ALL_ALLOC
;
1259 MIN(s
->subclusters_per_cluster
- sc_index
- 1,
1260 clz32(alloc_bitmap
)) << s
->subcluster_bits
;
1263 case QCOW2_SUBCLUSTER_ZERO_PLAIN
:
1264 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
:
1265 cow_end_to
= ROUND_UP(cow_end_from
, s
->subcluster_size
);
1268 g_assert_not_reached();
1272 case QCOW2_SUBCLUSTER_NORMAL
:
1273 cow_end_to
= cow_end_from
;
1275 case QCOW2_SUBCLUSTER_ZERO_ALLOC
:
1276 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
:
1277 cow_end_to
= ROUND_UP(cow_end_from
, s
->subcluster_size
);
1280 g_assert_not_reached();
1284 *m
= g_malloc0(sizeof(**m
));
1285 **m
= (QCowL2Meta
) {
1288 .alloc_offset
= host_cluster_offset
,
1289 .offset
= start_of_cluster(s
, guest_offset
),
1290 .nb_clusters
= nb_clusters
,
1292 .keep_old_clusters
= keep_old
,
1295 .offset
= cow_start_from
,
1296 .nb_bytes
= cow_start_to
- cow_start_from
,
1299 .offset
= cow_end_from
,
1300 .nb_bytes
= cow_end_to
- cow_end_from
,
1304 qemu_co_queue_init(&(*m
)->dependent_requests
);
1305 QLIST_INSERT_HEAD(&s
->cluster_allocs
, *m
, next_in_flight
);
1311 * Returns true if writing to the cluster pointed to by @l2_entry
1312 * requires a new allocation (that is, if the cluster is unallocated
1313 * or has refcount > 1 and therefore cannot be written in-place).
1315 static bool cluster_needs_new_alloc(BlockDriverState
*bs
, uint64_t l2_entry
)
1317 switch (qcow2_get_cluster_type(bs
, l2_entry
)) {
1318 case QCOW2_CLUSTER_NORMAL
:
1319 case QCOW2_CLUSTER_ZERO_ALLOC
:
1320 if (l2_entry
& QCOW_OFLAG_COPIED
) {
1323 case QCOW2_CLUSTER_UNALLOCATED
:
1324 case QCOW2_CLUSTER_COMPRESSED
:
1325 case QCOW2_CLUSTER_ZERO_PLAIN
:
1333 * Returns the number of contiguous clusters that can be written to
1334 * using one single write request, starting from @l2_index.
1335 * At most @nb_clusters are checked.
1337 * If @new_alloc is true this counts clusters that are either
1338 * unallocated, or allocated but with refcount > 1 (so they need to be
1339 * newly allocated and COWed).
1341 * If @new_alloc is false this counts clusters that are already
1342 * allocated and can be overwritten in-place (this includes clusters
1343 * of type QCOW2_CLUSTER_ZERO_ALLOC).
1345 static int count_single_write_clusters(BlockDriverState
*bs
, int nb_clusters
,
1346 uint64_t *l2_slice
, int l2_index
,
1349 BDRVQcow2State
*s
= bs
->opaque
;
1350 uint64_t l2_entry
= get_l2_entry(s
, l2_slice
, l2_index
);
1351 uint64_t expected_offset
= l2_entry
& L2E_OFFSET_MASK
;
1354 for (i
= 0; i
< nb_clusters
; i
++) {
1355 l2_entry
= get_l2_entry(s
, l2_slice
, l2_index
+ i
);
1356 if (cluster_needs_new_alloc(bs
, l2_entry
) != new_alloc
) {
1360 if (expected_offset
!= (l2_entry
& L2E_OFFSET_MASK
)) {
1363 expected_offset
+= s
->cluster_size
;
1367 assert(i
<= nb_clusters
);
1372 * Check if there already is an AIO write request in flight which allocates
1373 * the same cluster. In this case we need to wait until the previous
1374 * request has completed and updated the L2 table accordingly.
1377 * 0 if there was no dependency. *cur_bytes indicates the number of
1378 * bytes from guest_offset that can be read before the next
1379 * dependency must be processed (or the request is complete)
1381 * -EAGAIN if we had to wait for another request, previously gathered
1382 * information on cluster allocation may be invalid now. The caller
1383 * must start over anyway, so consider *cur_bytes undefined.
1385 static int handle_dependencies(BlockDriverState
*bs
, uint64_t guest_offset
,
1386 uint64_t *cur_bytes
, QCowL2Meta
**m
)
1388 BDRVQcow2State
*s
= bs
->opaque
;
1389 QCowL2Meta
*old_alloc
;
1390 uint64_t bytes
= *cur_bytes
;
1392 QLIST_FOREACH(old_alloc
, &s
->cluster_allocs
, next_in_flight
) {
1394 uint64_t start
= guest_offset
;
1395 uint64_t end
= start
+ bytes
;
1396 uint64_t old_start
= start_of_cluster(s
, l2meta_cow_start(old_alloc
));
1397 uint64_t old_end
= ROUND_UP(l2meta_cow_end(old_alloc
), s
->cluster_size
);
1399 if (end
<= old_start
|| start
>= old_end
) {
1400 /* No intersection */
1402 if (start
< old_start
) {
1403 /* Stop at the start of a running allocation */
1404 bytes
= old_start
- start
;
1409 /* Stop if already an l2meta exists. After yielding, it wouldn't
1410 * be valid any more, so we'd have to clean up the old L2Metas
1411 * and deal with requests depending on them before starting to
1412 * gather new ones. Not worth the trouble. */
1413 if (bytes
== 0 && *m
) {
1419 /* Wait for the dependency to complete. We need to recheck
1420 * the free/allocated clusters when we continue. */
1421 qemu_co_queue_wait(&old_alloc
->dependent_requests
, &s
->lock
);
1427 /* Make sure that existing clusters and new allocations are only used up to
1428 * the next dependency if we shortened the request above */
1435 * Checks how many already allocated clusters that don't require a new
1436 * allocation there are at the given guest_offset (up to *bytes).
1437 * If *host_offset is not INV_OFFSET, only physically contiguous clusters
1438 * beginning at this host offset are counted.
1440 * Note that guest_offset may not be cluster aligned. In this case, the
1441 * returned *host_offset points to exact byte referenced by guest_offset and
1442 * therefore isn't cluster aligned as well.
1445 * 0: if no allocated clusters are available at the given offset.
1446 * *bytes is normally unchanged. It is set to 0 if the cluster
1447 * is allocated and can be overwritten in-place but doesn't have
1448 * the right physical offset.
1450 * 1: if allocated clusters that can be overwritten in place are
1451 * available at the requested offset. *bytes may have decreased
1452 * and describes the length of the area that can be written to.
1454 * -errno: in error cases
1456 static int handle_copied(BlockDriverState
*bs
, uint64_t guest_offset
,
1457 uint64_t *host_offset
, uint64_t *bytes
, QCowL2Meta
**m
)
1459 BDRVQcow2State
*s
= bs
->opaque
;
1461 uint64_t l2_entry
, cluster_offset
;
1463 uint64_t nb_clusters
;
1464 unsigned int keep_clusters
;
1467 trace_qcow2_handle_copied(qemu_coroutine_self(), guest_offset
, *host_offset
,
1470 assert(*host_offset
== INV_OFFSET
|| offset_into_cluster(s
, guest_offset
)
1471 == offset_into_cluster(s
, *host_offset
));
1474 * Calculate the number of clusters to look for. We stop at L2 slice
1475 * boundaries to keep things simple.
1478 size_to_clusters(s
, offset_into_cluster(s
, guest_offset
) + *bytes
);
1480 l2_index
= offset_to_l2_slice_index(s
, guest_offset
);
1481 nb_clusters
= MIN(nb_clusters
, s
->l2_slice_size
- l2_index
);
1482 /* Limit total byte count to BDRV_REQUEST_MAX_BYTES */
1483 nb_clusters
= MIN(nb_clusters
, BDRV_REQUEST_MAX_BYTES
>> s
->cluster_bits
);
1485 /* Find L2 entry for the first involved cluster */
1486 ret
= get_cluster_table(bs
, guest_offset
, &l2_slice
, &l2_index
);
1491 l2_entry
= get_l2_entry(s
, l2_slice
, l2_index
);
1492 cluster_offset
= l2_entry
& L2E_OFFSET_MASK
;
1494 if (!cluster_needs_new_alloc(bs
, l2_entry
)) {
1495 if (offset_into_cluster(s
, cluster_offset
)) {
1496 qcow2_signal_corruption(bs
, true, -1, -1, "%s cluster offset "
1497 "%#" PRIx64
" unaligned (guest offset: %#"
1498 PRIx64
")", l2_entry
& QCOW_OFLAG_ZERO
?
1499 "Preallocated zero" : "Data",
1500 cluster_offset
, guest_offset
);
1505 /* If a specific host_offset is required, check it */
1506 if (*host_offset
!= INV_OFFSET
&& cluster_offset
!= *host_offset
) {
1512 /* We keep all QCOW_OFLAG_COPIED clusters */
1513 keep_clusters
= count_single_write_clusters(bs
, nb_clusters
, l2_slice
,
1515 assert(keep_clusters
<= nb_clusters
);
1517 *bytes
= MIN(*bytes
,
1518 keep_clusters
* s
->cluster_size
1519 - offset_into_cluster(s
, guest_offset
));
1520 assert(*bytes
!= 0);
1522 ret
= calculate_l2_meta(bs
, cluster_offset
, guest_offset
,
1523 *bytes
, l2_slice
, m
, true);
1535 qcow2_cache_put(s
->l2_table_cache
, (void **) &l2_slice
);
1537 /* Only return a host offset if we actually made progress. Otherwise we
1538 * would make requirements for handle_alloc() that it can't fulfill */
1540 *host_offset
= cluster_offset
+ offset_into_cluster(s
, guest_offset
);
1547 * Allocates new clusters for the given guest_offset.
1549 * At most *nb_clusters are allocated, and on return *nb_clusters is updated to
1550 * contain the number of clusters that have been allocated and are contiguous
1551 * in the image file.
1553 * If *host_offset is not INV_OFFSET, it specifies the offset in the image file
1554 * at which the new clusters must start. *nb_clusters can be 0 on return in
1555 * this case if the cluster at host_offset is already in use. If *host_offset
1556 * is INV_OFFSET, the clusters can be allocated anywhere in the image file.
1558 * *host_offset is updated to contain the offset into the image file at which
1559 * the first allocated cluster starts.
1561 * Return 0 on success and -errno in error cases. -EAGAIN means that the
1562 * function has been waiting for another request and the allocation must be
1563 * restarted, but the whole request should not be failed.
1565 static int do_alloc_cluster_offset(BlockDriverState
*bs
, uint64_t guest_offset
,
1566 uint64_t *host_offset
, uint64_t *nb_clusters
)
1568 BDRVQcow2State
*s
= bs
->opaque
;
1570 trace_qcow2_do_alloc_clusters_offset(qemu_coroutine_self(), guest_offset
,
1571 *host_offset
, *nb_clusters
);
1573 if (has_data_file(bs
)) {
1574 assert(*host_offset
== INV_OFFSET
||
1575 *host_offset
== start_of_cluster(s
, guest_offset
));
1576 *host_offset
= start_of_cluster(s
, guest_offset
);
1580 /* Allocate new clusters */
1581 trace_qcow2_cluster_alloc_phys(qemu_coroutine_self());
1582 if (*host_offset
== INV_OFFSET
) {
1583 int64_t cluster_offset
=
1584 qcow2_alloc_clusters(bs
, *nb_clusters
* s
->cluster_size
);
1585 if (cluster_offset
< 0) {
1586 return cluster_offset
;
1588 *host_offset
= cluster_offset
;
1591 int64_t ret
= qcow2_alloc_clusters_at(bs
, *host_offset
, *nb_clusters
);
1601 * Allocates new clusters for an area that is either still unallocated or
1602 * cannot be overwritten in-place. If *host_offset is not INV_OFFSET,
1603 * clusters are only allocated if the new allocation can match the specified
1606 * Note that guest_offset may not be cluster aligned. In this case, the
1607 * returned *host_offset points to exact byte referenced by guest_offset and
1608 * therefore isn't cluster aligned as well.
1611 * 0: if no clusters could be allocated. *bytes is set to 0,
1612 * *host_offset is left unchanged.
1614 * 1: if new clusters were allocated. *bytes may be decreased if the
1615 * new allocation doesn't cover all of the requested area.
1616 * *host_offset is updated to contain the host offset of the first
1617 * newly allocated cluster.
1619 * -errno: in error cases
1621 static int handle_alloc(BlockDriverState
*bs
, uint64_t guest_offset
,
1622 uint64_t *host_offset
, uint64_t *bytes
, QCowL2Meta
**m
)
1624 BDRVQcow2State
*s
= bs
->opaque
;
1627 uint64_t nb_clusters
;
1630 uint64_t alloc_cluster_offset
;
1632 trace_qcow2_handle_alloc(qemu_coroutine_self(), guest_offset
, *host_offset
,
1637 * Calculate the number of clusters to look for. We stop at L2 slice
1638 * boundaries to keep things simple.
1641 size_to_clusters(s
, offset_into_cluster(s
, guest_offset
) + *bytes
);
1643 l2_index
= offset_to_l2_slice_index(s
, guest_offset
);
1644 nb_clusters
= MIN(nb_clusters
, s
->l2_slice_size
- l2_index
);
1645 /* Limit total allocation byte count to BDRV_REQUEST_MAX_BYTES */
1646 nb_clusters
= MIN(nb_clusters
, BDRV_REQUEST_MAX_BYTES
>> s
->cluster_bits
);
1648 /* Find L2 entry for the first involved cluster */
1649 ret
= get_cluster_table(bs
, guest_offset
, &l2_slice
, &l2_index
);
1654 nb_clusters
= count_single_write_clusters(bs
, nb_clusters
,
1655 l2_slice
, l2_index
, true);
1657 /* This function is only called when there were no non-COW clusters, so if
1658 * we can't find any unallocated or COW clusters either, something is
1659 * wrong with our code. */
1660 assert(nb_clusters
> 0);
1662 /* Allocate at a given offset in the image file */
1663 alloc_cluster_offset
= *host_offset
== INV_OFFSET
? INV_OFFSET
:
1664 start_of_cluster(s
, *host_offset
);
1665 ret
= do_alloc_cluster_offset(bs
, guest_offset
, &alloc_cluster_offset
,
1671 /* Can't extend contiguous allocation */
1672 if (nb_clusters
== 0) {
1678 assert(alloc_cluster_offset
!= INV_OFFSET
);
1681 * Save info needed for meta data update.
1683 * requested_bytes: Number of bytes from the start of the first
1684 * newly allocated cluster to the end of the (possibly shortened
1685 * before) write request.
1687 * avail_bytes: Number of bytes from the start of the first
1688 * newly allocated to the end of the last newly allocated cluster.
1690 * nb_bytes: The number of bytes from the start of the first
1691 * newly allocated cluster to the end of the area that the write
1692 * request actually writes to (excluding COW at the end)
1694 uint64_t requested_bytes
= *bytes
+ offset_into_cluster(s
, guest_offset
);
1695 int avail_bytes
= nb_clusters
<< s
->cluster_bits
;
1696 int nb_bytes
= MIN(requested_bytes
, avail_bytes
);
1698 *host_offset
= alloc_cluster_offset
+ offset_into_cluster(s
, guest_offset
);
1699 *bytes
= MIN(*bytes
, nb_bytes
- offset_into_cluster(s
, guest_offset
));
1700 assert(*bytes
!= 0);
1702 ret
= calculate_l2_meta(bs
, alloc_cluster_offset
, guest_offset
, *bytes
,
1703 l2_slice
, m
, false);
1711 qcow2_cache_put(s
->l2_table_cache
, (void **) &l2_slice
);
1712 if (ret
< 0 && *m
&& (*m
)->nb_clusters
> 0) {
1713 QLIST_REMOVE(*m
, next_in_flight
);
1719 * alloc_cluster_offset
1721 * For a given offset on the virtual disk, find the cluster offset in qcow2
1722 * file. If the offset is not found, allocate a new cluster.
1724 * If the cluster was already allocated, m->nb_clusters is set to 0 and
1725 * other fields in m are meaningless.
1727 * If the cluster is newly allocated, m->nb_clusters is set to the number of
1728 * contiguous clusters that have been allocated. In this case, the other
1729 * fields of m are valid and contain information about the first allocated
1732 * If the request conflicts with another write request in flight, the coroutine
1733 * is queued and will be reentered when the dependency has completed.
1735 * Return 0 on success and -errno in error cases
1737 int qcow2_alloc_cluster_offset(BlockDriverState
*bs
, uint64_t offset
,
1738 unsigned int *bytes
, uint64_t *host_offset
,
1741 BDRVQcow2State
*s
= bs
->opaque
;
1742 uint64_t start
, remaining
;
1743 uint64_t cluster_offset
;
1747 trace_qcow2_alloc_clusters_offset(qemu_coroutine_self(), offset
, *bytes
);
1752 cluster_offset
= INV_OFFSET
;
1753 *host_offset
= INV_OFFSET
;
1759 if (*host_offset
== INV_OFFSET
&& cluster_offset
!= INV_OFFSET
) {
1760 *host_offset
= start_of_cluster(s
, cluster_offset
);
1763 assert(remaining
>= cur_bytes
);
1766 remaining
-= cur_bytes
;
1768 if (cluster_offset
!= INV_OFFSET
) {
1769 cluster_offset
+= cur_bytes
;
1772 if (remaining
== 0) {
1776 cur_bytes
= remaining
;
1779 * Now start gathering as many contiguous clusters as possible:
1781 * 1. Check for overlaps with in-flight allocations
1783 * a) Overlap not in the first cluster -> shorten this request and
1784 * let the caller handle the rest in its next loop iteration.
1786 * b) Real overlaps of two requests. Yield and restart the search
1787 * for contiguous clusters (the situation could have changed
1788 * while we were sleeping)
1790 * c) TODO: Request starts in the same cluster as the in-flight
1791 * allocation ends. Shorten the COW of the in-fight allocation,
1792 * set cluster_offset to write to the same cluster and set up
1793 * the right synchronisation between the in-flight request and
1796 ret
= handle_dependencies(bs
, start
, &cur_bytes
, m
);
1797 if (ret
== -EAGAIN
) {
1798 /* Currently handle_dependencies() doesn't yield if we already had
1799 * an allocation. If it did, we would have to clean up the L2Meta
1800 * structs before starting over. */
1803 } else if (ret
< 0) {
1805 } else if (cur_bytes
== 0) {
1808 /* handle_dependencies() may have decreased cur_bytes (shortened
1809 * the allocations below) so that the next dependency is processed
1810 * correctly during the next loop iteration. */
1814 * 2. Count contiguous COPIED clusters.
1816 ret
= handle_copied(bs
, start
, &cluster_offset
, &cur_bytes
, m
);
1821 } else if (cur_bytes
== 0) {
1826 * 3. If the request still hasn't completed, allocate new clusters,
1827 * considering any cluster_offset of steps 1c or 2.
1829 ret
= handle_alloc(bs
, start
, &cluster_offset
, &cur_bytes
, m
);
1835 assert(cur_bytes
== 0);
1840 *bytes
-= remaining
;
1842 assert(*host_offset
!= INV_OFFSET
);
1848 * This discards as many clusters of nb_clusters as possible at once (i.e.
1849 * all clusters in the same L2 slice) and returns the number of discarded
1852 static int discard_in_l2_slice(BlockDriverState
*bs
, uint64_t offset
,
1853 uint64_t nb_clusters
,
1854 enum qcow2_discard_type type
, bool full_discard
)
1856 BDRVQcow2State
*s
= bs
->opaque
;
1862 ret
= get_cluster_table(bs
, offset
, &l2_slice
, &l2_index
);
1867 /* Limit nb_clusters to one L2 slice */
1868 nb_clusters
= MIN(nb_clusters
, s
->l2_slice_size
- l2_index
);
1869 assert(nb_clusters
<= INT_MAX
);
1871 for (i
= 0; i
< nb_clusters
; i
++) {
1872 uint64_t old_l2_entry
= get_l2_entry(s
, l2_slice
, l2_index
+ i
);
1873 uint64_t old_l2_bitmap
= get_l2_bitmap(s
, l2_slice
, l2_index
+ i
);
1874 uint64_t new_l2_entry
= old_l2_entry
;
1875 uint64_t new_l2_bitmap
= old_l2_bitmap
;
1876 QCow2ClusterType cluster_type
=
1877 qcow2_get_cluster_type(bs
, old_l2_entry
);
1880 * If full_discard is true, the cluster should not read back as zeroes,
1881 * but rather fall through to the backing file.
1883 * If full_discard is false, make sure that a discarded area reads back
1884 * as zeroes for v3 images (we cannot do it for v2 without actually
1885 * writing a zero-filled buffer). We can skip the operation if the
1886 * cluster is already marked as zero, or if it's unallocated and we
1887 * don't have a backing file.
1889 * TODO We might want to use bdrv_block_status(bs) here, but we're
1890 * holding s->lock, so that doesn't work today.
1893 new_l2_entry
= new_l2_bitmap
= 0;
1894 } else if (bs
->backing
|| qcow2_cluster_is_allocated(cluster_type
)) {
1895 if (has_subclusters(s
)) {
1897 new_l2_bitmap
= QCOW_L2_BITMAP_ALL_ZEROES
;
1899 new_l2_entry
= s
->qcow_version
>= 3 ? QCOW_OFLAG_ZERO
: 0;
1903 if (old_l2_entry
== new_l2_entry
&& old_l2_bitmap
== new_l2_bitmap
) {
1907 /* First remove L2 entries */
1908 qcow2_cache_entry_mark_dirty(s
->l2_table_cache
, l2_slice
);
1909 set_l2_entry(s
, l2_slice
, l2_index
+ i
, new_l2_entry
);
1910 if (has_subclusters(s
)) {
1911 set_l2_bitmap(s
, l2_slice
, l2_index
+ i
, new_l2_bitmap
);
1913 /* Then decrease the refcount */
1914 qcow2_free_any_clusters(bs
, old_l2_entry
, 1, type
);
1917 qcow2_cache_put(s
->l2_table_cache
, (void **) &l2_slice
);
1922 int qcow2_cluster_discard(BlockDriverState
*bs
, uint64_t offset
,
1923 uint64_t bytes
, enum qcow2_discard_type type
,
1926 BDRVQcow2State
*s
= bs
->opaque
;
1927 uint64_t end_offset
= offset
+ bytes
;
1928 uint64_t nb_clusters
;
1932 /* Caller must pass aligned values, except at image end */
1933 assert(QEMU_IS_ALIGNED(offset
, s
->cluster_size
));
1934 assert(QEMU_IS_ALIGNED(end_offset
, s
->cluster_size
) ||
1935 end_offset
== bs
->total_sectors
<< BDRV_SECTOR_BITS
);
1937 nb_clusters
= size_to_clusters(s
, bytes
);
1939 s
->cache_discards
= true;
1941 /* Each L2 slice is handled by its own loop iteration */
1942 while (nb_clusters
> 0) {
1943 cleared
= discard_in_l2_slice(bs
, offset
, nb_clusters
, type
,
1950 nb_clusters
-= cleared
;
1951 offset
+= (cleared
* s
->cluster_size
);
1956 s
->cache_discards
= false;
1957 qcow2_process_discards(bs
, ret
);
1963 * This zeroes as many clusters of nb_clusters as possible at once (i.e.
1964 * all clusters in the same L2 slice) and returns the number of zeroed
1967 static int zero_in_l2_slice(BlockDriverState
*bs
, uint64_t offset
,
1968 uint64_t nb_clusters
, int flags
)
1970 BDRVQcow2State
*s
= bs
->opaque
;
1976 ret
= get_cluster_table(bs
, offset
, &l2_slice
, &l2_index
);
1981 /* Limit nb_clusters to one L2 slice */
1982 nb_clusters
= MIN(nb_clusters
, s
->l2_slice_size
- l2_index
);
1983 assert(nb_clusters
<= INT_MAX
);
1985 for (i
= 0; i
< nb_clusters
; i
++) {
1986 uint64_t old_l2_entry
= get_l2_entry(s
, l2_slice
, l2_index
+ i
);
1987 uint64_t old_l2_bitmap
= get_l2_bitmap(s
, l2_slice
, l2_index
+ i
);
1988 QCow2ClusterType type
= qcow2_get_cluster_type(bs
, old_l2_entry
);
1989 bool unmap
= (type
== QCOW2_CLUSTER_COMPRESSED
) ||
1990 ((flags
& BDRV_REQ_MAY_UNMAP
) && qcow2_cluster_is_allocated(type
));
1991 uint64_t new_l2_entry
= unmap
? 0 : old_l2_entry
;
1992 uint64_t new_l2_bitmap
= old_l2_bitmap
;
1994 if (has_subclusters(s
)) {
1995 new_l2_bitmap
= QCOW_L2_BITMAP_ALL_ZEROES
;
1997 new_l2_entry
|= QCOW_OFLAG_ZERO
;
2000 if (old_l2_entry
== new_l2_entry
&& old_l2_bitmap
== new_l2_bitmap
) {
2004 qcow2_cache_entry_mark_dirty(s
->l2_table_cache
, l2_slice
);
2006 qcow2_free_any_clusters(bs
, old_l2_entry
, 1, QCOW2_DISCARD_REQUEST
);
2008 set_l2_entry(s
, l2_slice
, l2_index
+ i
, new_l2_entry
);
2009 if (has_subclusters(s
)) {
2010 set_l2_bitmap(s
, l2_slice
, l2_index
+ i
, new_l2_bitmap
);
2014 qcow2_cache_put(s
->l2_table_cache
, (void **) &l2_slice
);
2019 static int zero_l2_subclusters(BlockDriverState
*bs
, uint64_t offset
,
2020 unsigned nb_subclusters
)
2022 BDRVQcow2State
*s
= bs
->opaque
;
2024 uint64_t old_l2_bitmap
, l2_bitmap
;
2025 int l2_index
, ret
, sc
= offset_to_sc_index(s
, offset
);
2027 /* For full clusters use zero_in_l2_slice() instead */
2028 assert(nb_subclusters
> 0 && nb_subclusters
< s
->subclusters_per_cluster
);
2029 assert(sc
+ nb_subclusters
<= s
->subclusters_per_cluster
);
2030 assert(offset_into_subcluster(s
, offset
) == 0);
2032 ret
= get_cluster_table(bs
, offset
, &l2_slice
, &l2_index
);
2037 switch (qcow2_get_cluster_type(bs
, get_l2_entry(s
, l2_slice
, l2_index
))) {
2038 case QCOW2_CLUSTER_COMPRESSED
:
2039 ret
= -ENOTSUP
; /* We cannot partially zeroize compressed clusters */
2041 case QCOW2_CLUSTER_NORMAL
:
2042 case QCOW2_CLUSTER_UNALLOCATED
:
2045 g_assert_not_reached();
2048 old_l2_bitmap
= l2_bitmap
= get_l2_bitmap(s
, l2_slice
, l2_index
);
2050 l2_bitmap
|= QCOW_OFLAG_SUB_ZERO_RANGE(sc
, sc
+ nb_subclusters
);
2051 l2_bitmap
&= ~QCOW_OFLAG_SUB_ALLOC_RANGE(sc
, sc
+ nb_subclusters
);
2053 if (old_l2_bitmap
!= l2_bitmap
) {
2054 set_l2_bitmap(s
, l2_slice
, l2_index
, l2_bitmap
);
2055 qcow2_cache_entry_mark_dirty(s
->l2_table_cache
, l2_slice
);
2060 qcow2_cache_put(s
->l2_table_cache
, (void **) &l2_slice
);
2065 int qcow2_subcluster_zeroize(BlockDriverState
*bs
, uint64_t offset
,
2066 uint64_t bytes
, int flags
)
2068 BDRVQcow2State
*s
= bs
->opaque
;
2069 uint64_t end_offset
= offset
+ bytes
;
2070 uint64_t nb_clusters
;
2071 unsigned head
, tail
;
2075 /* If we have to stay in sync with an external data file, zero out
2076 * s->data_file first. */
2077 if (data_file_is_raw(bs
)) {
2078 assert(has_data_file(bs
));
2079 ret
= bdrv_co_pwrite_zeroes(s
->data_file
, offset
, bytes
, flags
);
2085 /* Caller must pass aligned values, except at image end */
2086 assert(offset_into_subcluster(s
, offset
) == 0);
2087 assert(offset_into_subcluster(s
, end_offset
) == 0 ||
2088 end_offset
>= bs
->total_sectors
<< BDRV_SECTOR_BITS
);
2091 * The zero flag is only supported by version 3 and newer. However, if we
2092 * have no backing file, we can resort to discard in version 2.
2094 if (s
->qcow_version
< 3) {
2096 return qcow2_cluster_discard(bs
, offset
, bytes
,
2097 QCOW2_DISCARD_REQUEST
, false);
2102 head
= MIN(end_offset
, ROUND_UP(offset
, s
->cluster_size
)) - offset
;
2105 tail
= (end_offset
>= bs
->total_sectors
<< BDRV_SECTOR_BITS
) ? 0 :
2106 end_offset
- MAX(offset
, start_of_cluster(s
, end_offset
));
2109 s
->cache_discards
= true;
2112 ret
= zero_l2_subclusters(bs
, offset
- head
,
2113 size_to_subclusters(s
, head
));
2119 /* Each L2 slice is handled by its own loop iteration */
2120 nb_clusters
= size_to_clusters(s
, end_offset
- offset
);
2122 while (nb_clusters
> 0) {
2123 cleared
= zero_in_l2_slice(bs
, offset
, nb_clusters
, flags
);
2129 nb_clusters
-= cleared
;
2130 offset
+= (cleared
* s
->cluster_size
);
2134 ret
= zero_l2_subclusters(bs
, end_offset
, size_to_subclusters(s
, tail
));
2142 s
->cache_discards
= false;
2143 qcow2_process_discards(bs
, ret
);
2149 * Expands all zero clusters in a specific L1 table (or deallocates them, for
2150 * non-backed non-pre-allocated zero clusters).
2152 * l1_entries and *visited_l1_entries are used to keep track of progress for
2153 * status_cb(). l1_entries contains the total number of L1 entries and
2154 * *visited_l1_entries counts all visited L1 entries.
2156 static int expand_zero_clusters_in_l1(BlockDriverState
*bs
, uint64_t *l1_table
,
2157 int l1_size
, int64_t *visited_l1_entries
,
2159 BlockDriverAmendStatusCB
*status_cb
,
2162 BDRVQcow2State
*s
= bs
->opaque
;
2163 bool is_active_l1
= (l1_table
== s
->l1_table
);
2164 uint64_t *l2_slice
= NULL
;
2165 unsigned slice
, slice_size2
, n_slices
;
2169 /* qcow2_downgrade() is not allowed in images with subclusters */
2170 assert(!has_subclusters(s
));
2172 slice_size2
= s
->l2_slice_size
* l2_entry_size(s
);
2173 n_slices
= s
->cluster_size
/ slice_size2
;
2175 if (!is_active_l1
) {
2176 /* inactive L2 tables require a buffer to be stored in when loading
2178 l2_slice
= qemu_try_blockalign(bs
->file
->bs
, slice_size2
);
2179 if (l2_slice
== NULL
) {
2184 for (i
= 0; i
< l1_size
; i
++) {
2185 uint64_t l2_offset
= l1_table
[i
] & L1E_OFFSET_MASK
;
2186 uint64_t l2_refcount
;
2190 (*visited_l1_entries
)++;
2192 status_cb(bs
, *visited_l1_entries
, l1_entries
, cb_opaque
);
2197 if (offset_into_cluster(s
, l2_offset
)) {
2198 qcow2_signal_corruption(bs
, true, -1, -1, "L2 table offset %#"
2199 PRIx64
" unaligned (L1 index: %#x)",
2205 ret
= qcow2_get_refcount(bs
, l2_offset
>> s
->cluster_bits
,
2211 for (slice
= 0; slice
< n_slices
; slice
++) {
2212 uint64_t slice_offset
= l2_offset
+ slice
* slice_size2
;
2213 bool l2_dirty
= false;
2215 /* get active L2 tables from cache */
2216 ret
= qcow2_cache_get(bs
, s
->l2_table_cache
, slice_offset
,
2217 (void **)&l2_slice
);
2219 /* load inactive L2 tables from disk */
2220 ret
= bdrv_pread(bs
->file
, slice_offset
, l2_slice
, slice_size2
);
2226 for (j
= 0; j
< s
->l2_slice_size
; j
++) {
2227 uint64_t l2_entry
= get_l2_entry(s
, l2_slice
, j
);
2228 int64_t offset
= l2_entry
& L2E_OFFSET_MASK
;
2229 QCow2ClusterType cluster_type
=
2230 qcow2_get_cluster_type(bs
, l2_entry
);
2232 if (cluster_type
!= QCOW2_CLUSTER_ZERO_PLAIN
&&
2233 cluster_type
!= QCOW2_CLUSTER_ZERO_ALLOC
) {
2237 if (cluster_type
== QCOW2_CLUSTER_ZERO_PLAIN
) {
2240 * not backed; therefore we can simply deallocate the
2241 * cluster. No need to call set_l2_bitmap(), this
2242 * function doesn't support images with subclusters.
2244 set_l2_entry(s
, l2_slice
, j
, 0);
2249 offset
= qcow2_alloc_clusters(bs
, s
->cluster_size
);
2255 /* The offset must fit in the offset field */
2256 assert((offset
& L2E_OFFSET_MASK
) == offset
);
2258 if (l2_refcount
> 1) {
2259 /* For shared L2 tables, set the refcount accordingly
2260 * (it is already 1 and needs to be l2_refcount) */
2261 ret
= qcow2_update_cluster_refcount(
2262 bs
, offset
>> s
->cluster_bits
,
2263 refcount_diff(1, l2_refcount
), false,
2264 QCOW2_DISCARD_OTHER
);
2266 qcow2_free_clusters(bs
, offset
, s
->cluster_size
,
2267 QCOW2_DISCARD_OTHER
);
2273 if (offset_into_cluster(s
, offset
)) {
2274 int l2_index
= slice
* s
->l2_slice_size
+ j
;
2275 qcow2_signal_corruption(
2277 "Cluster allocation offset "
2278 "%#" PRIx64
" unaligned (L2 offset: %#"
2279 PRIx64
", L2 index: %#x)", offset
,
2280 l2_offset
, l2_index
);
2281 if (cluster_type
== QCOW2_CLUSTER_ZERO_PLAIN
) {
2282 qcow2_free_clusters(bs
, offset
, s
->cluster_size
,
2283 QCOW2_DISCARD_ALWAYS
);
2289 ret
= qcow2_pre_write_overlap_check(bs
, 0, offset
,
2290 s
->cluster_size
, true);
2292 if (cluster_type
== QCOW2_CLUSTER_ZERO_PLAIN
) {
2293 qcow2_free_clusters(bs
, offset
, s
->cluster_size
,
2294 QCOW2_DISCARD_ALWAYS
);
2299 ret
= bdrv_pwrite_zeroes(s
->data_file
, offset
,
2300 s
->cluster_size
, 0);
2302 if (cluster_type
== QCOW2_CLUSTER_ZERO_PLAIN
) {
2303 qcow2_free_clusters(bs
, offset
, s
->cluster_size
,
2304 QCOW2_DISCARD_ALWAYS
);
2309 if (l2_refcount
== 1) {
2310 set_l2_entry(s
, l2_slice
, j
, offset
| QCOW_OFLAG_COPIED
);
2312 set_l2_entry(s
, l2_slice
, j
, offset
);
2315 * No need to call set_l2_bitmap() after set_l2_entry() because
2316 * this function doesn't support images with subclusters.
2323 qcow2_cache_entry_mark_dirty(s
->l2_table_cache
, l2_slice
);
2324 qcow2_cache_depends_on_flush(s
->l2_table_cache
);
2326 qcow2_cache_put(s
->l2_table_cache
, (void **) &l2_slice
);
2329 ret
= qcow2_pre_write_overlap_check(
2330 bs
, QCOW2_OL_INACTIVE_L2
| QCOW2_OL_ACTIVE_L2
,
2331 slice_offset
, slice_size2
, false);
2336 ret
= bdrv_pwrite(bs
->file
, slice_offset
,
2337 l2_slice
, slice_size2
);
2345 (*visited_l1_entries
)++;
2347 status_cb(bs
, *visited_l1_entries
, l1_entries
, cb_opaque
);
2355 if (!is_active_l1
) {
2356 qemu_vfree(l2_slice
);
2358 qcow2_cache_put(s
->l2_table_cache
, (void **) &l2_slice
);
2365 * For backed images, expands all zero clusters on the image. For non-backed
2366 * images, deallocates all non-pre-allocated zero clusters (and claims the
2367 * allocation for pre-allocated ones). This is important for downgrading to a
2368 * qcow2 version which doesn't yet support metadata zero clusters.
2370 int qcow2_expand_zero_clusters(BlockDriverState
*bs
,
2371 BlockDriverAmendStatusCB
*status_cb
,
2374 BDRVQcow2State
*s
= bs
->opaque
;
2375 uint64_t *l1_table
= NULL
;
2376 int64_t l1_entries
= 0, visited_l1_entries
= 0;
2381 l1_entries
= s
->l1_size
;
2382 for (i
= 0; i
< s
->nb_snapshots
; i
++) {
2383 l1_entries
+= s
->snapshots
[i
].l1_size
;
2387 ret
= expand_zero_clusters_in_l1(bs
, s
->l1_table
, s
->l1_size
,
2388 &visited_l1_entries
, l1_entries
,
2389 status_cb
, cb_opaque
);
2394 /* Inactive L1 tables may point to active L2 tables - therefore it is
2395 * necessary to flush the L2 table cache before trying to access the L2
2396 * tables pointed to by inactive L1 entries (else we might try to expand
2397 * zero clusters that have already been expanded); furthermore, it is also
2398 * necessary to empty the L2 table cache, since it may contain tables which
2399 * are now going to be modified directly on disk, bypassing the cache.
2400 * qcow2_cache_empty() does both for us. */
2401 ret
= qcow2_cache_empty(bs
, s
->l2_table_cache
);
2406 for (i
= 0; i
< s
->nb_snapshots
; i
++) {
2408 uint64_t *new_l1_table
;
2409 Error
*local_err
= NULL
;
2411 ret
= qcow2_validate_table(bs
, s
->snapshots
[i
].l1_table_offset
,
2412 s
->snapshots
[i
].l1_size
, sizeof(uint64_t),
2413 QCOW_MAX_L1_SIZE
, "Snapshot L1 table",
2416 error_report_err(local_err
);
2420 l1_size2
= s
->snapshots
[i
].l1_size
* sizeof(uint64_t);
2421 new_l1_table
= g_try_realloc(l1_table
, l1_size2
);
2423 if (!new_l1_table
) {
2428 l1_table
= new_l1_table
;
2430 ret
= bdrv_pread(bs
->file
, s
->snapshots
[i
].l1_table_offset
,
2431 l1_table
, l1_size2
);
2436 for (j
= 0; j
< s
->snapshots
[i
].l1_size
; j
++) {
2437 be64_to_cpus(&l1_table
[j
]);
2440 ret
= expand_zero_clusters_in_l1(bs
, l1_table
, s
->snapshots
[i
].l1_size
,
2441 &visited_l1_entries
, l1_entries
,
2442 status_cb
, cb_opaque
);