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"
27 #include "block/qdict.h"
28 #include "sysemu/block-backend.h"
29 #include "qemu/main-loop.h"
30 #include "qemu/module.h"
32 #include "qemu/error-report.h"
33 #include "qapi/error.h"
34 #include "qapi/qapi-events-block-core.h"
35 #include "qapi/qmp/qdict.h"
36 #include "qapi/qmp/qstring.h"
38 #include "qemu/option_int.h"
39 #include "qemu/cutils.h"
40 #include "qemu/bswap.h"
41 #include "qemu/memalign.h"
42 #include "qapi/qobject-input-visitor.h"
43 #include "qapi/qapi-visit-block-core.h"
45 #include "block/aio_task.h"
48 Differences with QCOW:
50 - Support for multiple incremental snapshots.
51 - Memory management by reference counts.
52 - Clusters which have a reference count of one have the bit
53 QCOW_OFLAG_COPIED to optimize write performance.
54 - Size of compressed clusters is stored in sectors to reduce bit usage
55 in the cluster offsets.
56 - Support for storing additional data (such as the VM state) in the
58 - If a backing store is used, the cluster size is not constrained
59 (could be backported to QCOW).
60 - L2 tables have always a size of one cluster.
67 } QEMU_PACKED QCowExtension
;
69 #define QCOW2_EXT_MAGIC_END 0
70 #define QCOW2_EXT_MAGIC_BACKING_FORMAT 0xe2792aca
71 #define QCOW2_EXT_MAGIC_FEATURE_TABLE 0x6803f857
72 #define QCOW2_EXT_MAGIC_CRYPTO_HEADER 0x0537be77
73 #define QCOW2_EXT_MAGIC_BITMAPS 0x23852875
74 #define QCOW2_EXT_MAGIC_DATA_FILE 0x44415441
76 static int coroutine_fn
77 qcow2_co_preadv_compressed(BlockDriverState
*bs
,
84 static int qcow2_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
86 const QCowHeader
*cow_header
= (const void *)buf
;
88 if (buf_size
>= sizeof(QCowHeader
) &&
89 be32_to_cpu(cow_header
->magic
) == QCOW_MAGIC
&&
90 be32_to_cpu(cow_header
->version
) >= 2)
97 static ssize_t
qcow2_crypto_hdr_read_func(QCryptoBlock
*block
, size_t offset
,
98 uint8_t *buf
, size_t buflen
,
99 void *opaque
, Error
**errp
)
101 BlockDriverState
*bs
= opaque
;
102 BDRVQcow2State
*s
= bs
->opaque
;
105 if ((offset
+ buflen
) > s
->crypto_header
.length
) {
106 error_setg(errp
, "Request for data outside of extension header");
110 ret
= bdrv_pread(bs
->file
,
111 s
->crypto_header
.offset
+ offset
, buf
, buflen
);
113 error_setg_errno(errp
, -ret
, "Could not read encryption header");
120 static ssize_t
qcow2_crypto_hdr_init_func(QCryptoBlock
*block
, size_t headerlen
,
121 void *opaque
, Error
**errp
)
123 BlockDriverState
*bs
= opaque
;
124 BDRVQcow2State
*s
= bs
->opaque
;
128 ret
= qcow2_alloc_clusters(bs
, headerlen
);
130 error_setg_errno(errp
, -ret
,
131 "Cannot allocate cluster for LUKS header size %zu",
136 s
->crypto_header
.length
= headerlen
;
137 s
->crypto_header
.offset
= ret
;
140 * Zero fill all space in cluster so it has predictable
141 * content, as we may not initialize some regions of the
142 * header (eg only 1 out of 8 key slots will be initialized)
144 clusterlen
= size_to_clusters(s
, headerlen
) * s
->cluster_size
;
145 assert(qcow2_pre_write_overlap_check(bs
, 0, ret
, clusterlen
, false) == 0);
146 ret
= bdrv_pwrite_zeroes(bs
->file
,
150 error_setg_errno(errp
, -ret
, "Could not zero fill encryption header");
158 static ssize_t
qcow2_crypto_hdr_write_func(QCryptoBlock
*block
, size_t offset
,
159 const uint8_t *buf
, size_t buflen
,
160 void *opaque
, Error
**errp
)
162 BlockDriverState
*bs
= opaque
;
163 BDRVQcow2State
*s
= bs
->opaque
;
166 if ((offset
+ buflen
) > s
->crypto_header
.length
) {
167 error_setg(errp
, "Request for data outside of extension header");
171 ret
= bdrv_pwrite(bs
->file
,
172 s
->crypto_header
.offset
+ offset
, buf
, buflen
);
174 error_setg_errno(errp
, -ret
, "Could not read encryption header");
181 qcow2_extract_crypto_opts(QemuOpts
*opts
, const char *fmt
, Error
**errp
)
183 QDict
*cryptoopts_qdict
;
186 /* Extract "encrypt." options into a qdict */
187 opts_qdict
= qemu_opts_to_qdict(opts
, NULL
);
188 qdict_extract_subqdict(opts_qdict
, &cryptoopts_qdict
, "encrypt.");
189 qobject_unref(opts_qdict
);
190 qdict_put_str(cryptoopts_qdict
, "format", fmt
);
191 return cryptoopts_qdict
;
195 * read qcow2 extension and fill bs
196 * start reading from start_offset
197 * finish reading upon magic of value 0 or when end_offset reached
198 * unknown magic is skipped (future extension this version knows nothing about)
199 * return 0 upon success, non-0 otherwise
201 static int qcow2_read_extensions(BlockDriverState
*bs
, uint64_t start_offset
,
202 uint64_t end_offset
, void **p_feature_table
,
203 int flags
, bool *need_update_header
,
206 BDRVQcow2State
*s
= bs
->opaque
;
210 Qcow2BitmapHeaderExt bitmaps_ext
;
212 if (need_update_header
!= NULL
) {
213 *need_update_header
= false;
217 printf("qcow2_read_extensions: start=%ld end=%ld\n", start_offset
, end_offset
);
219 offset
= start_offset
;
220 while (offset
< end_offset
) {
224 if (offset
> s
->cluster_size
)
225 printf("qcow2_read_extension: suspicious offset %lu\n", offset
);
227 printf("attempting to read extended header in offset %lu\n", offset
);
230 ret
= bdrv_pread(bs
->file
, offset
, &ext
, sizeof(ext
));
232 error_setg_errno(errp
, -ret
, "qcow2_read_extension: ERROR: "
233 "pread fail from offset %" PRIu64
, offset
);
236 ext
.magic
= be32_to_cpu(ext
.magic
);
237 ext
.len
= be32_to_cpu(ext
.len
);
238 offset
+= sizeof(ext
);
240 printf("ext.magic = 0x%x\n", ext
.magic
);
242 if (offset
> end_offset
|| ext
.len
> end_offset
- offset
) {
243 error_setg(errp
, "Header extension too large");
248 case QCOW2_EXT_MAGIC_END
:
251 case QCOW2_EXT_MAGIC_BACKING_FORMAT
:
252 if (ext
.len
>= sizeof(bs
->backing_format
)) {
253 error_setg(errp
, "ERROR: ext_backing_format: len=%" PRIu32
254 " too large (>=%zu)", ext
.len
,
255 sizeof(bs
->backing_format
));
258 ret
= bdrv_pread(bs
->file
, offset
, bs
->backing_format
, ext
.len
);
260 error_setg_errno(errp
, -ret
, "ERROR: ext_backing_format: "
261 "Could not read format name");
264 bs
->backing_format
[ext
.len
] = '\0';
265 s
->image_backing_format
= g_strdup(bs
->backing_format
);
267 printf("Qcow2: Got format extension %s\n", bs
->backing_format
);
271 case QCOW2_EXT_MAGIC_FEATURE_TABLE
:
272 if (p_feature_table
!= NULL
) {
273 void *feature_table
= g_malloc0(ext
.len
+ 2 * sizeof(Qcow2Feature
));
274 ret
= bdrv_pread(bs
->file
, offset
, feature_table
, ext
.len
);
276 error_setg_errno(errp
, -ret
, "ERROR: ext_feature_table: "
277 "Could not read table");
281 *p_feature_table
= feature_table
;
285 case QCOW2_EXT_MAGIC_CRYPTO_HEADER
: {
286 unsigned int cflags
= 0;
287 if (s
->crypt_method_header
!= QCOW_CRYPT_LUKS
) {
288 error_setg(errp
, "CRYPTO header extension only "
289 "expected with LUKS encryption method");
292 if (ext
.len
!= sizeof(Qcow2CryptoHeaderExtension
)) {
293 error_setg(errp
, "CRYPTO header extension size %u, "
294 "but expected size %zu", ext
.len
,
295 sizeof(Qcow2CryptoHeaderExtension
));
299 ret
= bdrv_pread(bs
->file
, offset
, &s
->crypto_header
, ext
.len
);
301 error_setg_errno(errp
, -ret
,
302 "Unable to read CRYPTO header extension");
305 s
->crypto_header
.offset
= be64_to_cpu(s
->crypto_header
.offset
);
306 s
->crypto_header
.length
= be64_to_cpu(s
->crypto_header
.length
);
308 if ((s
->crypto_header
.offset
% s
->cluster_size
) != 0) {
309 error_setg(errp
, "Encryption header offset '%" PRIu64
"' is "
310 "not a multiple of cluster size '%u'",
311 s
->crypto_header
.offset
, s
->cluster_size
);
315 if (flags
& BDRV_O_NO_IO
) {
316 cflags
|= QCRYPTO_BLOCK_OPEN_NO_IO
;
318 s
->crypto
= qcrypto_block_open(s
->crypto_opts
, "encrypt.",
319 qcow2_crypto_hdr_read_func
,
320 bs
, cflags
, QCOW2_MAX_THREADS
, errp
);
326 case QCOW2_EXT_MAGIC_BITMAPS
:
327 if (ext
.len
!= sizeof(bitmaps_ext
)) {
328 error_setg_errno(errp
, -ret
, "bitmaps_ext: "
329 "Invalid extension length");
333 if (!(s
->autoclear_features
& QCOW2_AUTOCLEAR_BITMAPS
)) {
334 if (s
->qcow_version
< 3) {
335 /* Let's be a bit more specific */
336 warn_report("This qcow2 v2 image contains bitmaps, but "
337 "they may have been modified by a program "
338 "without persistent bitmap support; so now "
339 "they must all be considered inconsistent");
341 warn_report("a program lacking bitmap support "
342 "modified this file, so all bitmaps are now "
343 "considered inconsistent");
345 error_printf("Some clusters may be leaked, "
346 "run 'qemu-img check -r' on the image "
348 if (need_update_header
!= NULL
) {
349 /* Updating is needed to drop invalid bitmap extension. */
350 *need_update_header
= true;
355 ret
= bdrv_pread(bs
->file
, offset
, &bitmaps_ext
, ext
.len
);
357 error_setg_errno(errp
, -ret
, "bitmaps_ext: "
358 "Could not read ext header");
362 if (bitmaps_ext
.reserved32
!= 0) {
363 error_setg_errno(errp
, -ret
, "bitmaps_ext: "
364 "Reserved field is not zero");
368 bitmaps_ext
.nb_bitmaps
= be32_to_cpu(bitmaps_ext
.nb_bitmaps
);
369 bitmaps_ext
.bitmap_directory_size
=
370 be64_to_cpu(bitmaps_ext
.bitmap_directory_size
);
371 bitmaps_ext
.bitmap_directory_offset
=
372 be64_to_cpu(bitmaps_ext
.bitmap_directory_offset
);
374 if (bitmaps_ext
.nb_bitmaps
> QCOW2_MAX_BITMAPS
) {
376 "bitmaps_ext: Image has %" PRIu32
" bitmaps, "
377 "exceeding the QEMU supported maximum of %d",
378 bitmaps_ext
.nb_bitmaps
, QCOW2_MAX_BITMAPS
);
382 if (bitmaps_ext
.nb_bitmaps
== 0) {
383 error_setg(errp
, "found bitmaps extension with zero bitmaps");
387 if (offset_into_cluster(s
, bitmaps_ext
.bitmap_directory_offset
)) {
388 error_setg(errp
, "bitmaps_ext: "
389 "invalid bitmap directory offset");
393 if (bitmaps_ext
.bitmap_directory_size
>
394 QCOW2_MAX_BITMAP_DIRECTORY_SIZE
) {
395 error_setg(errp
, "bitmaps_ext: "
396 "bitmap directory size (%" PRIu64
") exceeds "
397 "the maximum supported size (%d)",
398 bitmaps_ext
.bitmap_directory_size
,
399 QCOW2_MAX_BITMAP_DIRECTORY_SIZE
);
403 s
->nb_bitmaps
= bitmaps_ext
.nb_bitmaps
;
404 s
->bitmap_directory_offset
=
405 bitmaps_ext
.bitmap_directory_offset
;
406 s
->bitmap_directory_size
=
407 bitmaps_ext
.bitmap_directory_size
;
410 printf("Qcow2: Got bitmaps extension: "
411 "offset=%" PRIu64
" nb_bitmaps=%" PRIu32
"\n",
412 s
->bitmap_directory_offset
, s
->nb_bitmaps
);
416 case QCOW2_EXT_MAGIC_DATA_FILE
:
418 s
->image_data_file
= g_malloc0(ext
.len
+ 1);
419 ret
= bdrv_pread(bs
->file
, offset
, s
->image_data_file
, ext
.len
);
421 error_setg_errno(errp
, -ret
,
422 "ERROR: Could not read data file name");
426 printf("Qcow2: Got external data file %s\n", s
->image_data_file
);
432 /* unknown magic - save it in case we need to rewrite the header */
433 /* If you add a new feature, make sure to also update the fast
434 * path of qcow2_make_empty() to deal with it. */
436 Qcow2UnknownHeaderExtension
*uext
;
438 uext
= g_malloc0(sizeof(*uext
) + ext
.len
);
439 uext
->magic
= ext
.magic
;
441 QLIST_INSERT_HEAD(&s
->unknown_header_ext
, uext
, next
);
443 ret
= bdrv_pread(bs
->file
, offset
, uext
->data
, uext
->len
);
445 error_setg_errno(errp
, -ret
, "ERROR: unknown extension: "
446 "Could not read data");
453 offset
+= ((ext
.len
+ 7) & ~7);
459 static void cleanup_unknown_header_ext(BlockDriverState
*bs
)
461 BDRVQcow2State
*s
= bs
->opaque
;
462 Qcow2UnknownHeaderExtension
*uext
, *next
;
464 QLIST_FOREACH_SAFE(uext
, &s
->unknown_header_ext
, next
, next
) {
465 QLIST_REMOVE(uext
, next
);
470 static void report_unsupported_feature(Error
**errp
, Qcow2Feature
*table
,
473 g_autoptr(GString
) features
= g_string_sized_new(60);
475 while (table
&& table
->name
[0] != '\0') {
476 if (table
->type
== QCOW2_FEAT_TYPE_INCOMPATIBLE
) {
477 if (mask
& (1ULL << table
->bit
)) {
478 if (features
->len
> 0) {
479 g_string_append(features
, ", ");
481 g_string_append_printf(features
, "%.46s", table
->name
);
482 mask
&= ~(1ULL << table
->bit
);
489 if (features
->len
> 0) {
490 g_string_append(features
, ", ");
492 g_string_append_printf(features
,
493 "Unknown incompatible feature: %" PRIx64
, mask
);
496 error_setg(errp
, "Unsupported qcow2 feature(s): %s", features
->str
);
500 * Sets the dirty bit and flushes afterwards if necessary.
502 * The incompatible_features bit is only set if the image file header was
503 * updated successfully. Therefore it is not required to check the return
504 * value of this function.
506 int qcow2_mark_dirty(BlockDriverState
*bs
)
508 BDRVQcow2State
*s
= bs
->opaque
;
512 assert(s
->qcow_version
>= 3);
514 if (s
->incompatible_features
& QCOW2_INCOMPAT_DIRTY
) {
515 return 0; /* already dirty */
518 val
= cpu_to_be64(s
->incompatible_features
| QCOW2_INCOMPAT_DIRTY
);
519 ret
= bdrv_pwrite(bs
->file
, offsetof(QCowHeader
, incompatible_features
),
524 ret
= bdrv_flush(bs
->file
->bs
);
529 /* Only treat image as dirty if the header was updated successfully */
530 s
->incompatible_features
|= QCOW2_INCOMPAT_DIRTY
;
535 * Clears the dirty bit and flushes before if necessary. Only call this
536 * function when there are no pending requests, it does not guard against
537 * concurrent requests dirtying the image.
539 static int qcow2_mark_clean(BlockDriverState
*bs
)
541 BDRVQcow2State
*s
= bs
->opaque
;
543 if (s
->incompatible_features
& QCOW2_INCOMPAT_DIRTY
) {
546 s
->incompatible_features
&= ~QCOW2_INCOMPAT_DIRTY
;
548 ret
= qcow2_flush_caches(bs
);
553 return qcow2_update_header(bs
);
559 * Marks the image as corrupt.
561 int qcow2_mark_corrupt(BlockDriverState
*bs
)
563 BDRVQcow2State
*s
= bs
->opaque
;
565 s
->incompatible_features
|= QCOW2_INCOMPAT_CORRUPT
;
566 return qcow2_update_header(bs
);
570 * Marks the image as consistent, i.e., unsets the corrupt bit, and flushes
571 * before if necessary.
573 int qcow2_mark_consistent(BlockDriverState
*bs
)
575 BDRVQcow2State
*s
= bs
->opaque
;
577 if (s
->incompatible_features
& QCOW2_INCOMPAT_CORRUPT
) {
578 int ret
= qcow2_flush_caches(bs
);
583 s
->incompatible_features
&= ~QCOW2_INCOMPAT_CORRUPT
;
584 return qcow2_update_header(bs
);
589 static void qcow2_add_check_result(BdrvCheckResult
*out
,
590 const BdrvCheckResult
*src
,
591 bool set_allocation_info
)
593 out
->corruptions
+= src
->corruptions
;
594 out
->leaks
+= src
->leaks
;
595 out
->check_errors
+= src
->check_errors
;
596 out
->corruptions_fixed
+= src
->corruptions_fixed
;
597 out
->leaks_fixed
+= src
->leaks_fixed
;
599 if (set_allocation_info
) {
600 out
->image_end_offset
= src
->image_end_offset
;
605 static int coroutine_fn
qcow2_co_check_locked(BlockDriverState
*bs
,
606 BdrvCheckResult
*result
,
609 BdrvCheckResult snapshot_res
= {};
610 BdrvCheckResult refcount_res
= {};
613 memset(result
, 0, sizeof(*result
));
615 ret
= qcow2_check_read_snapshot_table(bs
, &snapshot_res
, fix
);
617 qcow2_add_check_result(result
, &snapshot_res
, false);
621 ret
= qcow2_check_refcounts(bs
, &refcount_res
, fix
);
622 qcow2_add_check_result(result
, &refcount_res
, true);
624 qcow2_add_check_result(result
, &snapshot_res
, false);
628 ret
= qcow2_check_fix_snapshot_table(bs
, &snapshot_res
, fix
);
629 qcow2_add_check_result(result
, &snapshot_res
, false);
634 if (fix
&& result
->check_errors
== 0 && result
->corruptions
== 0) {
635 ret
= qcow2_mark_clean(bs
);
639 return qcow2_mark_consistent(bs
);
644 static int coroutine_fn
qcow2_co_check(BlockDriverState
*bs
,
645 BdrvCheckResult
*result
,
648 BDRVQcow2State
*s
= bs
->opaque
;
651 qemu_co_mutex_lock(&s
->lock
);
652 ret
= qcow2_co_check_locked(bs
, result
, fix
);
653 qemu_co_mutex_unlock(&s
->lock
);
657 int qcow2_validate_table(BlockDriverState
*bs
, uint64_t offset
,
658 uint64_t entries
, size_t entry_len
,
659 int64_t max_size_bytes
, const char *table_name
,
662 BDRVQcow2State
*s
= bs
->opaque
;
664 if (entries
> max_size_bytes
/ entry_len
) {
665 error_setg(errp
, "%s too large", table_name
);
669 /* Use signed INT64_MAX as the maximum even for uint64_t header fields,
670 * because values will be passed to qemu functions taking int64_t. */
671 if ((INT64_MAX
- entries
* entry_len
< offset
) ||
672 (offset_into_cluster(s
, offset
) != 0)) {
673 error_setg(errp
, "%s offset invalid", table_name
);
680 static const char *const mutable_opts
[] = {
681 QCOW2_OPT_LAZY_REFCOUNTS
,
682 QCOW2_OPT_DISCARD_REQUEST
,
683 QCOW2_OPT_DISCARD_SNAPSHOT
,
684 QCOW2_OPT_DISCARD_OTHER
,
686 QCOW2_OPT_OVERLAP_TEMPLATE
,
687 QCOW2_OPT_OVERLAP_MAIN_HEADER
,
688 QCOW2_OPT_OVERLAP_ACTIVE_L1
,
689 QCOW2_OPT_OVERLAP_ACTIVE_L2
,
690 QCOW2_OPT_OVERLAP_REFCOUNT_TABLE
,
691 QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK
,
692 QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE
,
693 QCOW2_OPT_OVERLAP_INACTIVE_L1
,
694 QCOW2_OPT_OVERLAP_INACTIVE_L2
,
695 QCOW2_OPT_OVERLAP_BITMAP_DIRECTORY
,
696 QCOW2_OPT_CACHE_SIZE
,
697 QCOW2_OPT_L2_CACHE_SIZE
,
698 QCOW2_OPT_L2_CACHE_ENTRY_SIZE
,
699 QCOW2_OPT_REFCOUNT_CACHE_SIZE
,
700 QCOW2_OPT_CACHE_CLEAN_INTERVAL
,
704 static QemuOptsList qcow2_runtime_opts
= {
706 .head
= QTAILQ_HEAD_INITIALIZER(qcow2_runtime_opts
.head
),
709 .name
= QCOW2_OPT_LAZY_REFCOUNTS
,
710 .type
= QEMU_OPT_BOOL
,
711 .help
= "Postpone refcount updates",
714 .name
= QCOW2_OPT_DISCARD_REQUEST
,
715 .type
= QEMU_OPT_BOOL
,
716 .help
= "Pass guest discard requests to the layer below",
719 .name
= QCOW2_OPT_DISCARD_SNAPSHOT
,
720 .type
= QEMU_OPT_BOOL
,
721 .help
= "Generate discard requests when snapshot related space "
725 .name
= QCOW2_OPT_DISCARD_OTHER
,
726 .type
= QEMU_OPT_BOOL
,
727 .help
= "Generate discard requests when other clusters are freed",
730 .name
= QCOW2_OPT_OVERLAP
,
731 .type
= QEMU_OPT_STRING
,
732 .help
= "Selects which overlap checks to perform from a range of "
733 "templates (none, constant, cached, all)",
736 .name
= QCOW2_OPT_OVERLAP_TEMPLATE
,
737 .type
= QEMU_OPT_STRING
,
738 .help
= "Selects which overlap checks to perform from a range of "
739 "templates (none, constant, cached, all)",
742 .name
= QCOW2_OPT_OVERLAP_MAIN_HEADER
,
743 .type
= QEMU_OPT_BOOL
,
744 .help
= "Check for unintended writes into the main qcow2 header",
747 .name
= QCOW2_OPT_OVERLAP_ACTIVE_L1
,
748 .type
= QEMU_OPT_BOOL
,
749 .help
= "Check for unintended writes into the active L1 table",
752 .name
= QCOW2_OPT_OVERLAP_ACTIVE_L2
,
753 .type
= QEMU_OPT_BOOL
,
754 .help
= "Check for unintended writes into an active L2 table",
757 .name
= QCOW2_OPT_OVERLAP_REFCOUNT_TABLE
,
758 .type
= QEMU_OPT_BOOL
,
759 .help
= "Check for unintended writes into the refcount table",
762 .name
= QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK
,
763 .type
= QEMU_OPT_BOOL
,
764 .help
= "Check for unintended writes into a refcount block",
767 .name
= QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE
,
768 .type
= QEMU_OPT_BOOL
,
769 .help
= "Check for unintended writes into the snapshot table",
772 .name
= QCOW2_OPT_OVERLAP_INACTIVE_L1
,
773 .type
= QEMU_OPT_BOOL
,
774 .help
= "Check for unintended writes into an inactive L1 table",
777 .name
= QCOW2_OPT_OVERLAP_INACTIVE_L2
,
778 .type
= QEMU_OPT_BOOL
,
779 .help
= "Check for unintended writes into an inactive L2 table",
782 .name
= QCOW2_OPT_OVERLAP_BITMAP_DIRECTORY
,
783 .type
= QEMU_OPT_BOOL
,
784 .help
= "Check for unintended writes into the bitmap directory",
787 .name
= QCOW2_OPT_CACHE_SIZE
,
788 .type
= QEMU_OPT_SIZE
,
789 .help
= "Maximum combined metadata (L2 tables and refcount blocks) "
793 .name
= QCOW2_OPT_L2_CACHE_SIZE
,
794 .type
= QEMU_OPT_SIZE
,
795 .help
= "Maximum L2 table cache size",
798 .name
= QCOW2_OPT_L2_CACHE_ENTRY_SIZE
,
799 .type
= QEMU_OPT_SIZE
,
800 .help
= "Size of each entry in the L2 cache",
803 .name
= QCOW2_OPT_REFCOUNT_CACHE_SIZE
,
804 .type
= QEMU_OPT_SIZE
,
805 .help
= "Maximum refcount block cache size",
808 .name
= QCOW2_OPT_CACHE_CLEAN_INTERVAL
,
809 .type
= QEMU_OPT_NUMBER
,
810 .help
= "Clean unused cache entries after this time (in seconds)",
812 BLOCK_CRYPTO_OPT_DEF_KEY_SECRET("encrypt.",
813 "ID of secret providing qcow2 AES key or LUKS passphrase"),
814 { /* end of list */ }
818 static const char *overlap_bool_option_names
[QCOW2_OL_MAX_BITNR
] = {
819 [QCOW2_OL_MAIN_HEADER_BITNR
] = QCOW2_OPT_OVERLAP_MAIN_HEADER
,
820 [QCOW2_OL_ACTIVE_L1_BITNR
] = QCOW2_OPT_OVERLAP_ACTIVE_L1
,
821 [QCOW2_OL_ACTIVE_L2_BITNR
] = QCOW2_OPT_OVERLAP_ACTIVE_L2
,
822 [QCOW2_OL_REFCOUNT_TABLE_BITNR
] = QCOW2_OPT_OVERLAP_REFCOUNT_TABLE
,
823 [QCOW2_OL_REFCOUNT_BLOCK_BITNR
] = QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK
,
824 [QCOW2_OL_SNAPSHOT_TABLE_BITNR
] = QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE
,
825 [QCOW2_OL_INACTIVE_L1_BITNR
] = QCOW2_OPT_OVERLAP_INACTIVE_L1
,
826 [QCOW2_OL_INACTIVE_L2_BITNR
] = QCOW2_OPT_OVERLAP_INACTIVE_L2
,
827 [QCOW2_OL_BITMAP_DIRECTORY_BITNR
] = QCOW2_OPT_OVERLAP_BITMAP_DIRECTORY
,
830 static void cache_clean_timer_cb(void *opaque
)
832 BlockDriverState
*bs
= opaque
;
833 BDRVQcow2State
*s
= bs
->opaque
;
834 qcow2_cache_clean_unused(s
->l2_table_cache
);
835 qcow2_cache_clean_unused(s
->refcount_block_cache
);
836 timer_mod(s
->cache_clean_timer
, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL
) +
837 (int64_t) s
->cache_clean_interval
* 1000);
840 static void cache_clean_timer_init(BlockDriverState
*bs
, AioContext
*context
)
842 BDRVQcow2State
*s
= bs
->opaque
;
843 if (s
->cache_clean_interval
> 0) {
844 s
->cache_clean_timer
=
845 aio_timer_new_with_attrs(context
, QEMU_CLOCK_VIRTUAL
,
846 SCALE_MS
, QEMU_TIMER_ATTR_EXTERNAL
,
847 cache_clean_timer_cb
, bs
);
848 timer_mod(s
->cache_clean_timer
, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL
) +
849 (int64_t) s
->cache_clean_interval
* 1000);
853 static void cache_clean_timer_del(BlockDriverState
*bs
)
855 BDRVQcow2State
*s
= bs
->opaque
;
856 if (s
->cache_clean_timer
) {
857 timer_free(s
->cache_clean_timer
);
858 s
->cache_clean_timer
= NULL
;
862 static void qcow2_detach_aio_context(BlockDriverState
*bs
)
864 cache_clean_timer_del(bs
);
867 static void qcow2_attach_aio_context(BlockDriverState
*bs
,
868 AioContext
*new_context
)
870 cache_clean_timer_init(bs
, new_context
);
873 static bool read_cache_sizes(BlockDriverState
*bs
, QemuOpts
*opts
,
874 uint64_t *l2_cache_size
,
875 uint64_t *l2_cache_entry_size
,
876 uint64_t *refcount_cache_size
, Error
**errp
)
878 BDRVQcow2State
*s
= bs
->opaque
;
879 uint64_t combined_cache_size
, l2_cache_max_setting
;
880 bool l2_cache_size_set
, refcount_cache_size_set
, combined_cache_size_set
;
881 bool l2_cache_entry_size_set
;
882 int min_refcount_cache
= MIN_REFCOUNT_CACHE_SIZE
* s
->cluster_size
;
883 uint64_t virtual_disk_size
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
884 uint64_t max_l2_entries
= DIV_ROUND_UP(virtual_disk_size
, s
->cluster_size
);
885 /* An L2 table is always one cluster in size so the max cache size
886 * should be a multiple of the cluster size. */
887 uint64_t max_l2_cache
= ROUND_UP(max_l2_entries
* l2_entry_size(s
),
890 combined_cache_size_set
= qemu_opt_get(opts
, QCOW2_OPT_CACHE_SIZE
);
891 l2_cache_size_set
= qemu_opt_get(opts
, QCOW2_OPT_L2_CACHE_SIZE
);
892 refcount_cache_size_set
= qemu_opt_get(opts
, QCOW2_OPT_REFCOUNT_CACHE_SIZE
);
893 l2_cache_entry_size_set
= qemu_opt_get(opts
, QCOW2_OPT_L2_CACHE_ENTRY_SIZE
);
895 combined_cache_size
= qemu_opt_get_size(opts
, QCOW2_OPT_CACHE_SIZE
, 0);
896 l2_cache_max_setting
= qemu_opt_get_size(opts
, QCOW2_OPT_L2_CACHE_SIZE
,
897 DEFAULT_L2_CACHE_MAX_SIZE
);
898 *refcount_cache_size
= qemu_opt_get_size(opts
,
899 QCOW2_OPT_REFCOUNT_CACHE_SIZE
, 0);
901 *l2_cache_entry_size
= qemu_opt_get_size(
902 opts
, QCOW2_OPT_L2_CACHE_ENTRY_SIZE
, s
->cluster_size
);
904 *l2_cache_size
= MIN(max_l2_cache
, l2_cache_max_setting
);
906 if (combined_cache_size_set
) {
907 if (l2_cache_size_set
&& refcount_cache_size_set
) {
908 error_setg(errp
, QCOW2_OPT_CACHE_SIZE
", " QCOW2_OPT_L2_CACHE_SIZE
909 " and " QCOW2_OPT_REFCOUNT_CACHE_SIZE
" may not be set "
912 } else if (l2_cache_size_set
&&
913 (l2_cache_max_setting
> combined_cache_size
)) {
914 error_setg(errp
, QCOW2_OPT_L2_CACHE_SIZE
" may not exceed "
915 QCOW2_OPT_CACHE_SIZE
);
917 } else if (*refcount_cache_size
> combined_cache_size
) {
918 error_setg(errp
, QCOW2_OPT_REFCOUNT_CACHE_SIZE
" may not exceed "
919 QCOW2_OPT_CACHE_SIZE
);
923 if (l2_cache_size_set
) {
924 *refcount_cache_size
= combined_cache_size
- *l2_cache_size
;
925 } else if (refcount_cache_size_set
) {
926 *l2_cache_size
= combined_cache_size
- *refcount_cache_size
;
928 /* Assign as much memory as possible to the L2 cache, and
929 * use the remainder for the refcount cache */
930 if (combined_cache_size
>= max_l2_cache
+ min_refcount_cache
) {
931 *l2_cache_size
= max_l2_cache
;
932 *refcount_cache_size
= combined_cache_size
- *l2_cache_size
;
934 *refcount_cache_size
=
935 MIN(combined_cache_size
, min_refcount_cache
);
936 *l2_cache_size
= combined_cache_size
- *refcount_cache_size
;
942 * If the L2 cache is not enough to cover the whole disk then
943 * default to 4KB entries. Smaller entries reduce the cost of
944 * loads and evictions and increase I/O performance.
946 if (*l2_cache_size
< max_l2_cache
&& !l2_cache_entry_size_set
) {
947 *l2_cache_entry_size
= MIN(s
->cluster_size
, 4096);
950 /* l2_cache_size and refcount_cache_size are ensured to have at least
951 * their minimum values in qcow2_update_options_prepare() */
953 if (*l2_cache_entry_size
< (1 << MIN_CLUSTER_BITS
) ||
954 *l2_cache_entry_size
> s
->cluster_size
||
955 !is_power_of_2(*l2_cache_entry_size
)) {
956 error_setg(errp
, "L2 cache entry size must be a power of two "
957 "between %d and the cluster size (%d)",
958 1 << MIN_CLUSTER_BITS
, s
->cluster_size
);
965 typedef struct Qcow2ReopenState
{
966 Qcow2Cache
*l2_table_cache
;
967 Qcow2Cache
*refcount_block_cache
;
968 int l2_slice_size
; /* Number of entries in a slice of the L2 table */
969 bool use_lazy_refcounts
;
971 bool discard_passthrough
[QCOW2_DISCARD_MAX
];
972 uint64_t cache_clean_interval
;
973 QCryptoBlockOpenOptions
*crypto_opts
; /* Disk encryption runtime options */
976 static int qcow2_update_options_prepare(BlockDriverState
*bs
,
978 QDict
*options
, int flags
,
981 BDRVQcow2State
*s
= bs
->opaque
;
982 QemuOpts
*opts
= NULL
;
983 const char *opt_overlap_check
, *opt_overlap_check_template
;
984 int overlap_check_template
= 0;
985 uint64_t l2_cache_size
, l2_cache_entry_size
, refcount_cache_size
;
987 const char *encryptfmt
;
988 QDict
*encryptopts
= NULL
;
991 qdict_extract_subqdict(options
, &encryptopts
, "encrypt.");
992 encryptfmt
= qdict_get_try_str(encryptopts
, "format");
994 opts
= qemu_opts_create(&qcow2_runtime_opts
, NULL
, 0, &error_abort
);
995 if (!qemu_opts_absorb_qdict(opts
, options
, errp
)) {
1000 /* get L2 table/refcount block cache size from command line options */
1001 if (!read_cache_sizes(bs
, opts
, &l2_cache_size
, &l2_cache_entry_size
,
1002 &refcount_cache_size
, errp
)) {
1007 l2_cache_size
/= l2_cache_entry_size
;
1008 if (l2_cache_size
< MIN_L2_CACHE_SIZE
) {
1009 l2_cache_size
= MIN_L2_CACHE_SIZE
;
1011 if (l2_cache_size
> INT_MAX
) {
1012 error_setg(errp
, "L2 cache size too big");
1017 refcount_cache_size
/= s
->cluster_size
;
1018 if (refcount_cache_size
< MIN_REFCOUNT_CACHE_SIZE
) {
1019 refcount_cache_size
= MIN_REFCOUNT_CACHE_SIZE
;
1021 if (refcount_cache_size
> INT_MAX
) {
1022 error_setg(errp
, "Refcount cache size too big");
1027 /* alloc new L2 table/refcount block cache, flush old one */
1028 if (s
->l2_table_cache
) {
1029 ret
= qcow2_cache_flush(bs
, s
->l2_table_cache
);
1031 error_setg_errno(errp
, -ret
, "Failed to flush the L2 table cache");
1036 if (s
->refcount_block_cache
) {
1037 ret
= qcow2_cache_flush(bs
, s
->refcount_block_cache
);
1039 error_setg_errno(errp
, -ret
,
1040 "Failed to flush the refcount block cache");
1045 r
->l2_slice_size
= l2_cache_entry_size
/ l2_entry_size(s
);
1046 r
->l2_table_cache
= qcow2_cache_create(bs
, l2_cache_size
,
1047 l2_cache_entry_size
);
1048 r
->refcount_block_cache
= qcow2_cache_create(bs
, refcount_cache_size
,
1050 if (r
->l2_table_cache
== NULL
|| r
->refcount_block_cache
== NULL
) {
1051 error_setg(errp
, "Could not allocate metadata caches");
1056 /* New interval for cache cleanup timer */
1057 r
->cache_clean_interval
=
1058 qemu_opt_get_number(opts
, QCOW2_OPT_CACHE_CLEAN_INTERVAL
,
1059 DEFAULT_CACHE_CLEAN_INTERVAL
);
1060 #ifndef CONFIG_LINUX
1061 if (r
->cache_clean_interval
!= 0) {
1062 error_setg(errp
, QCOW2_OPT_CACHE_CLEAN_INTERVAL
1063 " not supported on this host");
1068 if (r
->cache_clean_interval
> UINT_MAX
) {
1069 error_setg(errp
, "Cache clean interval too big");
1074 /* lazy-refcounts; flush if going from enabled to disabled */
1075 r
->use_lazy_refcounts
= qemu_opt_get_bool(opts
, QCOW2_OPT_LAZY_REFCOUNTS
,
1076 (s
->compatible_features
& QCOW2_COMPAT_LAZY_REFCOUNTS
));
1077 if (r
->use_lazy_refcounts
&& s
->qcow_version
< 3) {
1078 error_setg(errp
, "Lazy refcounts require a qcow2 image with at least "
1079 "qemu 1.1 compatibility level");
1084 if (s
->use_lazy_refcounts
&& !r
->use_lazy_refcounts
) {
1085 ret
= qcow2_mark_clean(bs
);
1087 error_setg_errno(errp
, -ret
, "Failed to disable lazy refcounts");
1092 /* Overlap check options */
1093 opt_overlap_check
= qemu_opt_get(opts
, QCOW2_OPT_OVERLAP
);
1094 opt_overlap_check_template
= qemu_opt_get(opts
, QCOW2_OPT_OVERLAP_TEMPLATE
);
1095 if (opt_overlap_check_template
&& opt_overlap_check
&&
1096 strcmp(opt_overlap_check_template
, opt_overlap_check
))
1098 error_setg(errp
, "Conflicting values for qcow2 options '"
1099 QCOW2_OPT_OVERLAP
"' ('%s') and '" QCOW2_OPT_OVERLAP_TEMPLATE
1100 "' ('%s')", opt_overlap_check
, opt_overlap_check_template
);
1104 if (!opt_overlap_check
) {
1105 opt_overlap_check
= opt_overlap_check_template
?: "cached";
1108 if (!strcmp(opt_overlap_check
, "none")) {
1109 overlap_check_template
= 0;
1110 } else if (!strcmp(opt_overlap_check
, "constant")) {
1111 overlap_check_template
= QCOW2_OL_CONSTANT
;
1112 } else if (!strcmp(opt_overlap_check
, "cached")) {
1113 overlap_check_template
= QCOW2_OL_CACHED
;
1114 } else if (!strcmp(opt_overlap_check
, "all")) {
1115 overlap_check_template
= QCOW2_OL_ALL
;
1117 error_setg(errp
, "Unsupported value '%s' for qcow2 option "
1118 "'overlap-check'. Allowed are any of the following: "
1119 "none, constant, cached, all", opt_overlap_check
);
1124 r
->overlap_check
= 0;
1125 for (i
= 0; i
< QCOW2_OL_MAX_BITNR
; i
++) {
1126 /* overlap-check defines a template bitmask, but every flag may be
1127 * overwritten through the associated boolean option */
1129 qemu_opt_get_bool(opts
, overlap_bool_option_names
[i
],
1130 overlap_check_template
& (1 << i
)) << i
;
1133 r
->discard_passthrough
[QCOW2_DISCARD_NEVER
] = false;
1134 r
->discard_passthrough
[QCOW2_DISCARD_ALWAYS
] = true;
1135 r
->discard_passthrough
[QCOW2_DISCARD_REQUEST
] =
1136 qemu_opt_get_bool(opts
, QCOW2_OPT_DISCARD_REQUEST
,
1137 flags
& BDRV_O_UNMAP
);
1138 r
->discard_passthrough
[QCOW2_DISCARD_SNAPSHOT
] =
1139 qemu_opt_get_bool(opts
, QCOW2_OPT_DISCARD_SNAPSHOT
, true);
1140 r
->discard_passthrough
[QCOW2_DISCARD_OTHER
] =
1141 qemu_opt_get_bool(opts
, QCOW2_OPT_DISCARD_OTHER
, false);
1143 switch (s
->crypt_method_header
) {
1144 case QCOW_CRYPT_NONE
:
1146 error_setg(errp
, "No encryption in image header, but options "
1147 "specified format '%s'", encryptfmt
);
1153 case QCOW_CRYPT_AES
:
1154 if (encryptfmt
&& !g_str_equal(encryptfmt
, "aes")) {
1156 "Header reported 'aes' encryption format but "
1157 "options specify '%s'", encryptfmt
);
1161 qdict_put_str(encryptopts
, "format", "qcow");
1162 r
->crypto_opts
= block_crypto_open_opts_init(encryptopts
, errp
);
1163 if (!r
->crypto_opts
) {
1169 case QCOW_CRYPT_LUKS
:
1170 if (encryptfmt
&& !g_str_equal(encryptfmt
, "luks")) {
1172 "Header reported 'luks' encryption format but "
1173 "options specify '%s'", encryptfmt
);
1177 qdict_put_str(encryptopts
, "format", "luks");
1178 r
->crypto_opts
= block_crypto_open_opts_init(encryptopts
, errp
);
1179 if (!r
->crypto_opts
) {
1186 error_setg(errp
, "Unsupported encryption method %d",
1187 s
->crypt_method_header
);
1194 qobject_unref(encryptopts
);
1195 qemu_opts_del(opts
);
1200 static void qcow2_update_options_commit(BlockDriverState
*bs
,
1201 Qcow2ReopenState
*r
)
1203 BDRVQcow2State
*s
= bs
->opaque
;
1206 if (s
->l2_table_cache
) {
1207 qcow2_cache_destroy(s
->l2_table_cache
);
1209 if (s
->refcount_block_cache
) {
1210 qcow2_cache_destroy(s
->refcount_block_cache
);
1212 s
->l2_table_cache
= r
->l2_table_cache
;
1213 s
->refcount_block_cache
= r
->refcount_block_cache
;
1214 s
->l2_slice_size
= r
->l2_slice_size
;
1216 s
->overlap_check
= r
->overlap_check
;
1217 s
->use_lazy_refcounts
= r
->use_lazy_refcounts
;
1219 for (i
= 0; i
< QCOW2_DISCARD_MAX
; i
++) {
1220 s
->discard_passthrough
[i
] = r
->discard_passthrough
[i
];
1223 if (s
->cache_clean_interval
!= r
->cache_clean_interval
) {
1224 cache_clean_timer_del(bs
);
1225 s
->cache_clean_interval
= r
->cache_clean_interval
;
1226 cache_clean_timer_init(bs
, bdrv_get_aio_context(bs
));
1229 qapi_free_QCryptoBlockOpenOptions(s
->crypto_opts
);
1230 s
->crypto_opts
= r
->crypto_opts
;
1233 static void qcow2_update_options_abort(BlockDriverState
*bs
,
1234 Qcow2ReopenState
*r
)
1236 if (r
->l2_table_cache
) {
1237 qcow2_cache_destroy(r
->l2_table_cache
);
1239 if (r
->refcount_block_cache
) {
1240 qcow2_cache_destroy(r
->refcount_block_cache
);
1242 qapi_free_QCryptoBlockOpenOptions(r
->crypto_opts
);
1245 static int qcow2_update_options(BlockDriverState
*bs
, QDict
*options
,
1246 int flags
, Error
**errp
)
1248 Qcow2ReopenState r
= {};
1251 ret
= qcow2_update_options_prepare(bs
, &r
, options
, flags
, errp
);
1253 qcow2_update_options_commit(bs
, &r
);
1255 qcow2_update_options_abort(bs
, &r
);
1261 static int validate_compression_type(BDRVQcow2State
*s
, Error
**errp
)
1263 switch (s
->compression_type
) {
1264 case QCOW2_COMPRESSION_TYPE_ZLIB
:
1266 case QCOW2_COMPRESSION_TYPE_ZSTD
:
1271 error_setg(errp
, "qcow2: unknown compression type: %u",
1272 s
->compression_type
);
1277 * if the compression type differs from QCOW2_COMPRESSION_TYPE_ZLIB
1278 * the incompatible feature flag must be set
1280 if (s
->compression_type
== QCOW2_COMPRESSION_TYPE_ZLIB
) {
1281 if (s
->incompatible_features
& QCOW2_INCOMPAT_COMPRESSION
) {
1282 error_setg(errp
, "qcow2: Compression type incompatible feature "
1283 "bit must not be set");
1287 if (!(s
->incompatible_features
& QCOW2_INCOMPAT_COMPRESSION
)) {
1288 error_setg(errp
, "qcow2: Compression type incompatible feature "
1297 /* Called with s->lock held. */
1298 static int coroutine_fn
qcow2_do_open(BlockDriverState
*bs
, QDict
*options
,
1299 int flags
, bool open_data_file
,
1303 BDRVQcow2State
*s
= bs
->opaque
;
1304 unsigned int len
, i
;
1308 uint64_t l1_vm_state_index
;
1309 bool update_header
= false;
1311 ret
= bdrv_pread(bs
->file
, 0, &header
, sizeof(header
));
1313 error_setg_errno(errp
, -ret
, "Could not read qcow2 header");
1316 header
.magic
= be32_to_cpu(header
.magic
);
1317 header
.version
= be32_to_cpu(header
.version
);
1318 header
.backing_file_offset
= be64_to_cpu(header
.backing_file_offset
);
1319 header
.backing_file_size
= be32_to_cpu(header
.backing_file_size
);
1320 header
.size
= be64_to_cpu(header
.size
);
1321 header
.cluster_bits
= be32_to_cpu(header
.cluster_bits
);
1322 header
.crypt_method
= be32_to_cpu(header
.crypt_method
);
1323 header
.l1_table_offset
= be64_to_cpu(header
.l1_table_offset
);
1324 header
.l1_size
= be32_to_cpu(header
.l1_size
);
1325 header
.refcount_table_offset
= be64_to_cpu(header
.refcount_table_offset
);
1326 header
.refcount_table_clusters
=
1327 be32_to_cpu(header
.refcount_table_clusters
);
1328 header
.snapshots_offset
= be64_to_cpu(header
.snapshots_offset
);
1329 header
.nb_snapshots
= be32_to_cpu(header
.nb_snapshots
);
1331 if (header
.magic
!= QCOW_MAGIC
) {
1332 error_setg(errp
, "Image is not in qcow2 format");
1336 if (header
.version
< 2 || header
.version
> 3) {
1337 error_setg(errp
, "Unsupported qcow2 version %" PRIu32
, header
.version
);
1342 s
->qcow_version
= header
.version
;
1344 /* Initialise cluster size */
1345 if (header
.cluster_bits
< MIN_CLUSTER_BITS
||
1346 header
.cluster_bits
> MAX_CLUSTER_BITS
) {
1347 error_setg(errp
, "Unsupported cluster size: 2^%" PRIu32
,
1348 header
.cluster_bits
);
1353 s
->cluster_bits
= header
.cluster_bits
;
1354 s
->cluster_size
= 1 << s
->cluster_bits
;
1356 /* Initialise version 3 header fields */
1357 if (header
.version
== 2) {
1358 header
.incompatible_features
= 0;
1359 header
.compatible_features
= 0;
1360 header
.autoclear_features
= 0;
1361 header
.refcount_order
= 4;
1362 header
.header_length
= 72;
1364 header
.incompatible_features
=
1365 be64_to_cpu(header
.incompatible_features
);
1366 header
.compatible_features
= be64_to_cpu(header
.compatible_features
);
1367 header
.autoclear_features
= be64_to_cpu(header
.autoclear_features
);
1368 header
.refcount_order
= be32_to_cpu(header
.refcount_order
);
1369 header
.header_length
= be32_to_cpu(header
.header_length
);
1371 if (header
.header_length
< 104) {
1372 error_setg(errp
, "qcow2 header too short");
1378 if (header
.header_length
> s
->cluster_size
) {
1379 error_setg(errp
, "qcow2 header exceeds cluster size");
1384 if (header
.header_length
> sizeof(header
)) {
1385 s
->unknown_header_fields_size
= header
.header_length
- sizeof(header
);
1386 s
->unknown_header_fields
= g_malloc(s
->unknown_header_fields_size
);
1387 ret
= bdrv_pread(bs
->file
, sizeof(header
), s
->unknown_header_fields
,
1388 s
->unknown_header_fields_size
);
1390 error_setg_errno(errp
, -ret
, "Could not read unknown qcow2 header "
1396 if (header
.backing_file_offset
> s
->cluster_size
) {
1397 error_setg(errp
, "Invalid backing file offset");
1402 if (header
.backing_file_offset
) {
1403 ext_end
= header
.backing_file_offset
;
1405 ext_end
= 1 << header
.cluster_bits
;
1408 /* Handle feature bits */
1409 s
->incompatible_features
= header
.incompatible_features
;
1410 s
->compatible_features
= header
.compatible_features
;
1411 s
->autoclear_features
= header
.autoclear_features
;
1414 * Handle compression type
1415 * Older qcow2 images don't contain the compression type header.
1416 * Distinguish them by the header length and use
1417 * the only valid (default) compression type in that case
1419 if (header
.header_length
> offsetof(QCowHeader
, compression_type
)) {
1420 s
->compression_type
= header
.compression_type
;
1422 s
->compression_type
= QCOW2_COMPRESSION_TYPE_ZLIB
;
1425 ret
= validate_compression_type(s
, errp
);
1430 if (s
->incompatible_features
& ~QCOW2_INCOMPAT_MASK
) {
1431 void *feature_table
= NULL
;
1432 qcow2_read_extensions(bs
, header
.header_length
, ext_end
,
1433 &feature_table
, flags
, NULL
, NULL
);
1434 report_unsupported_feature(errp
, feature_table
,
1435 s
->incompatible_features
&
1436 ~QCOW2_INCOMPAT_MASK
);
1438 g_free(feature_table
);
1442 if (s
->incompatible_features
& QCOW2_INCOMPAT_CORRUPT
) {
1443 /* Corrupt images may not be written to unless they are being repaired
1445 if ((flags
& BDRV_O_RDWR
) && !(flags
& BDRV_O_CHECK
)) {
1446 error_setg(errp
, "qcow2: Image is corrupt; cannot be opened "
1453 s
->subclusters_per_cluster
=
1454 has_subclusters(s
) ? QCOW_EXTL2_SUBCLUSTERS_PER_CLUSTER
: 1;
1455 s
->subcluster_size
= s
->cluster_size
/ s
->subclusters_per_cluster
;
1456 s
->subcluster_bits
= ctz32(s
->subcluster_size
);
1458 if (s
->subcluster_size
< (1 << MIN_CLUSTER_BITS
)) {
1459 error_setg(errp
, "Unsupported subcluster size: %d", s
->subcluster_size
);
1464 /* Check support for various header values */
1465 if (header
.refcount_order
> 6) {
1466 error_setg(errp
, "Reference count entry width too large; may not "
1471 s
->refcount_order
= header
.refcount_order
;
1472 s
->refcount_bits
= 1 << s
->refcount_order
;
1473 s
->refcount_max
= UINT64_C(1) << (s
->refcount_bits
- 1);
1474 s
->refcount_max
+= s
->refcount_max
- 1;
1476 s
->crypt_method_header
= header
.crypt_method
;
1477 if (s
->crypt_method_header
) {
1478 if (bdrv_uses_whitelist() &&
1479 s
->crypt_method_header
== QCOW_CRYPT_AES
) {
1481 "Use of AES-CBC encrypted qcow2 images is no longer "
1482 "supported in system emulators");
1483 error_append_hint(errp
,
1484 "You can use 'qemu-img convert' to convert your "
1485 "image to an alternative supported format, such "
1486 "as unencrypted qcow2, or raw with the LUKS "
1487 "format instead.\n");
1492 if (s
->crypt_method_header
== QCOW_CRYPT_AES
) {
1493 s
->crypt_physical_offset
= false;
1495 /* Assuming LUKS and any future crypt methods we
1496 * add will all use physical offsets, due to the
1497 * fact that the alternative is insecure... */
1498 s
->crypt_physical_offset
= true;
1501 bs
->encrypted
= true;
1504 s
->l2_bits
= s
->cluster_bits
- ctz32(l2_entry_size(s
));
1505 s
->l2_size
= 1 << s
->l2_bits
;
1506 /* 2^(s->refcount_order - 3) is the refcount width in bytes */
1507 s
->refcount_block_bits
= s
->cluster_bits
- (s
->refcount_order
- 3);
1508 s
->refcount_block_size
= 1 << s
->refcount_block_bits
;
1509 bs
->total_sectors
= header
.size
/ BDRV_SECTOR_SIZE
;
1510 s
->csize_shift
= (62 - (s
->cluster_bits
- 8));
1511 s
->csize_mask
= (1 << (s
->cluster_bits
- 8)) - 1;
1512 s
->cluster_offset_mask
= (1LL << s
->csize_shift
) - 1;
1514 s
->refcount_table_offset
= header
.refcount_table_offset
;
1515 s
->refcount_table_size
=
1516 header
.refcount_table_clusters
<< (s
->cluster_bits
- 3);
1518 if (header
.refcount_table_clusters
== 0 && !(flags
& BDRV_O_CHECK
)) {
1519 error_setg(errp
, "Image does not contain a reference count table");
1524 ret
= qcow2_validate_table(bs
, s
->refcount_table_offset
,
1525 header
.refcount_table_clusters
,
1526 s
->cluster_size
, QCOW_MAX_REFTABLE_SIZE
,
1527 "Reference count table", errp
);
1532 if (!(flags
& BDRV_O_CHECK
)) {
1534 * The total size in bytes of the snapshot table is checked in
1535 * qcow2_read_snapshots() because the size of each snapshot is
1536 * variable and we don't know it yet.
1537 * Here we only check the offset and number of snapshots.
1539 ret
= qcow2_validate_table(bs
, header
.snapshots_offset
,
1540 header
.nb_snapshots
,
1541 sizeof(QCowSnapshotHeader
),
1542 sizeof(QCowSnapshotHeader
) *
1544 "Snapshot table", errp
);
1550 /* read the level 1 table */
1551 ret
= qcow2_validate_table(bs
, header
.l1_table_offset
,
1552 header
.l1_size
, L1E_SIZE
,
1553 QCOW_MAX_L1_SIZE
, "Active L1 table", errp
);
1557 s
->l1_size
= header
.l1_size
;
1558 s
->l1_table_offset
= header
.l1_table_offset
;
1560 l1_vm_state_index
= size_to_l1(s
, header
.size
);
1561 if (l1_vm_state_index
> INT_MAX
) {
1562 error_setg(errp
, "Image is too big");
1566 s
->l1_vm_state_index
= l1_vm_state_index
;
1568 /* the L1 table must contain at least enough entries to put
1569 header.size bytes */
1570 if (s
->l1_size
< s
->l1_vm_state_index
) {
1571 error_setg(errp
, "L1 table is too small");
1576 if (s
->l1_size
> 0) {
1577 s
->l1_table
= qemu_try_blockalign(bs
->file
->bs
, s
->l1_size
* L1E_SIZE
);
1578 if (s
->l1_table
== NULL
) {
1579 error_setg(errp
, "Could not allocate L1 table");
1583 ret
= bdrv_pread(bs
->file
, s
->l1_table_offset
, s
->l1_table
,
1584 s
->l1_size
* L1E_SIZE
);
1586 error_setg_errno(errp
, -ret
, "Could not read L1 table");
1589 for(i
= 0;i
< s
->l1_size
; i
++) {
1590 s
->l1_table
[i
] = be64_to_cpu(s
->l1_table
[i
]);
1594 /* Parse driver-specific options */
1595 ret
= qcow2_update_options(bs
, options
, flags
, errp
);
1602 ret
= qcow2_refcount_init(bs
);
1604 error_setg_errno(errp
, -ret
, "Could not initialize refcount handling");
1608 QLIST_INIT(&s
->cluster_allocs
);
1609 QTAILQ_INIT(&s
->discards
);
1611 /* read qcow2 extensions */
1612 if (qcow2_read_extensions(bs
, header
.header_length
, ext_end
, NULL
,
1613 flags
, &update_header
, errp
)) {
1618 if (open_data_file
) {
1619 /* Open external data file */
1620 s
->data_file
= bdrv_open_child(NULL
, options
, "data-file", bs
,
1621 &child_of_bds
, BDRV_CHILD_DATA
,
1628 if (s
->incompatible_features
& QCOW2_INCOMPAT_DATA_FILE
) {
1629 if (!s
->data_file
&& s
->image_data_file
) {
1630 s
->data_file
= bdrv_open_child(s
->image_data_file
, options
,
1631 "data-file", bs
, &child_of_bds
,
1632 BDRV_CHILD_DATA
, false, errp
);
1633 if (!s
->data_file
) {
1638 if (!s
->data_file
) {
1639 error_setg(errp
, "'data-file' is required for this image");
1645 bs
->file
->role
&= ~BDRV_CHILD_DATA
;
1647 /* Must succeed because we have given up permissions if anything */
1648 bdrv_child_refresh_perms(bs
, bs
->file
, &error_abort
);
1651 error_setg(errp
, "'data-file' can only be set for images with "
1652 "an external data file");
1657 s
->data_file
= bs
->file
;
1659 if (data_file_is_raw(bs
)) {
1660 error_setg(errp
, "data-file-raw requires a data file");
1667 /* qcow2_read_extension may have set up the crypto context
1668 * if the crypt method needs a header region, some methods
1669 * don't need header extensions, so must check here
1671 if (s
->crypt_method_header
&& !s
->crypto
) {
1672 if (s
->crypt_method_header
== QCOW_CRYPT_AES
) {
1673 unsigned int cflags
= 0;
1674 if (flags
& BDRV_O_NO_IO
) {
1675 cflags
|= QCRYPTO_BLOCK_OPEN_NO_IO
;
1677 s
->crypto
= qcrypto_block_open(s
->crypto_opts
, "encrypt.",
1679 QCOW2_MAX_THREADS
, errp
);
1684 } else if (!(flags
& BDRV_O_NO_IO
)) {
1685 error_setg(errp
, "Missing CRYPTO header for crypt method %d",
1686 s
->crypt_method_header
);
1692 /* read the backing file name */
1693 if (header
.backing_file_offset
!= 0) {
1694 len
= header
.backing_file_size
;
1695 if (len
> MIN(1023, s
->cluster_size
- header
.backing_file_offset
) ||
1696 len
>= sizeof(bs
->backing_file
)) {
1697 error_setg(errp
, "Backing file name too long");
1701 ret
= bdrv_pread(bs
->file
, header
.backing_file_offset
,
1702 bs
->auto_backing_file
, len
);
1704 error_setg_errno(errp
, -ret
, "Could not read backing file name");
1707 bs
->auto_backing_file
[len
] = '\0';
1708 pstrcpy(bs
->backing_file
, sizeof(bs
->backing_file
),
1709 bs
->auto_backing_file
);
1710 s
->image_backing_file
= g_strdup(bs
->auto_backing_file
);
1714 * Internal snapshots; skip reading them in check mode, because
1715 * we do not need them then, and we do not want to abort because
1716 * of a broken table.
1718 if (!(flags
& BDRV_O_CHECK
)) {
1719 s
->snapshots_offset
= header
.snapshots_offset
;
1720 s
->nb_snapshots
= header
.nb_snapshots
;
1722 ret
= qcow2_read_snapshots(bs
, errp
);
1728 /* Clear unknown autoclear feature bits */
1729 update_header
|= s
->autoclear_features
& ~QCOW2_AUTOCLEAR_MASK
;
1730 update_header
= update_header
&& bdrv_is_writable(bs
);
1731 if (update_header
) {
1732 s
->autoclear_features
&= QCOW2_AUTOCLEAR_MASK
;
1735 /* == Handle persistent dirty bitmaps ==
1737 * We want load dirty bitmaps in three cases:
1739 * 1. Normal open of the disk in active mode, not related to invalidation
1742 * 2. Invalidation of the target vm after pre-copy phase of migration, if
1743 * bitmaps are _not_ migrating through migration channel, i.e.
1744 * 'dirty-bitmaps' capability is disabled.
1746 * 3. Invalidation of source vm after failed or canceled migration.
1747 * This is a very interesting case. There are two possible types of
1750 * A. Stored on inactivation and removed. They should be loaded from the
1753 * B. Not stored: not-persistent bitmaps and bitmaps, migrated through
1754 * the migration channel (with dirty-bitmaps capability).
1756 * On the other hand, there are two possible sub-cases:
1758 * 3.1 disk was changed by somebody else while were inactive. In this
1759 * case all in-RAM dirty bitmaps (both persistent and not) are
1760 * definitely invalid. And we don't have any method to determine
1763 * Simple and safe thing is to just drop all the bitmaps of type B on
1764 * inactivation. But in this case we lose bitmaps in valid 4.2 case.
1766 * On the other hand, resuming source vm, if disk was already changed
1767 * is a bad thing anyway: not only bitmaps, the whole vm state is
1768 * out of sync with disk.
1770 * This means, that user or management tool, who for some reason
1771 * decided to resume source vm, after disk was already changed by
1772 * target vm, should at least drop all dirty bitmaps by hand.
1774 * So, we can ignore this case for now, but TODO: "generation"
1775 * extension for qcow2, to determine, that image was changed after
1776 * last inactivation. And if it is changed, we will drop (or at least
1777 * mark as 'invalid' all the bitmaps of type B, both persistent
1780 * 3.2 disk was _not_ changed while were inactive. Bitmaps may be saved
1781 * to disk ('dirty-bitmaps' capability disabled), or not saved
1782 * ('dirty-bitmaps' capability enabled), but we don't need to care
1783 * of: let's load bitmaps as always: stored bitmaps will be loaded,
1784 * and not stored has flag IN_USE=1 in the image and will be skipped
1787 * One remaining possible case when we don't want load bitmaps:
1789 * 4. Open disk in inactive mode in target vm (bitmaps are migrating or
1790 * will be loaded on invalidation, no needs try loading them before)
1793 if (!(bdrv_get_flags(bs
) & BDRV_O_INACTIVE
)) {
1794 /* It's case 1, 2 or 3.2. Or 3.1 which is BUG in management layer. */
1795 bool header_updated
;
1796 if (!qcow2_load_dirty_bitmaps(bs
, &header_updated
, errp
)) {
1801 update_header
= update_header
&& !header_updated
;
1804 if (update_header
) {
1805 ret
= qcow2_update_header(bs
);
1807 error_setg_errno(errp
, -ret
, "Could not update qcow2 header");
1812 bs
->supported_zero_flags
= header
.version
>= 3 ?
1813 BDRV_REQ_MAY_UNMAP
| BDRV_REQ_NO_FALLBACK
: 0;
1814 bs
->supported_truncate_flags
= BDRV_REQ_ZERO_WRITE
;
1816 /* Repair image if dirty */
1817 if (!(flags
& BDRV_O_CHECK
) && bdrv_is_writable(bs
) &&
1818 (s
->incompatible_features
& QCOW2_INCOMPAT_DIRTY
)) {
1819 BdrvCheckResult result
= {0};
1821 ret
= qcow2_co_check_locked(bs
, &result
,
1822 BDRV_FIX_ERRORS
| BDRV_FIX_LEAKS
);
1823 if (ret
< 0 || result
.check_errors
) {
1827 error_setg_errno(errp
, -ret
, "Could not repair dirty image");
1834 BdrvCheckResult result
= {0};
1835 qcow2_check_refcounts(bs
, &result
, 0);
1839 qemu_co_queue_init(&s
->thread_task_queue
);
1844 g_free(s
->image_data_file
);
1845 if (open_data_file
&& has_data_file(bs
)) {
1846 bdrv_unref_child(bs
, s
->data_file
);
1847 s
->data_file
= NULL
;
1849 g_free(s
->unknown_header_fields
);
1850 cleanup_unknown_header_ext(bs
);
1851 qcow2_free_snapshots(bs
);
1852 qcow2_refcount_close(bs
);
1853 qemu_vfree(s
->l1_table
);
1854 /* else pre-write overlap checks in cache_destroy may crash */
1856 cache_clean_timer_del(bs
);
1857 if (s
->l2_table_cache
) {
1858 qcow2_cache_destroy(s
->l2_table_cache
);
1860 if (s
->refcount_block_cache
) {
1861 qcow2_cache_destroy(s
->refcount_block_cache
);
1863 qcrypto_block_free(s
->crypto
);
1864 qapi_free_QCryptoBlockOpenOptions(s
->crypto_opts
);
1868 typedef struct QCow2OpenCo
{
1869 BlockDriverState
*bs
;
1876 static void coroutine_fn
qcow2_open_entry(void *opaque
)
1878 QCow2OpenCo
*qoc
= opaque
;
1879 BDRVQcow2State
*s
= qoc
->bs
->opaque
;
1881 qemu_co_mutex_lock(&s
->lock
);
1882 qoc
->ret
= qcow2_do_open(qoc
->bs
, qoc
->options
, qoc
->flags
, true,
1884 qemu_co_mutex_unlock(&s
->lock
);
1887 static int qcow2_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
1890 BDRVQcow2State
*s
= bs
->opaque
;
1899 bs
->file
= bdrv_open_child(NULL
, options
, "file", bs
, &child_of_bds
,
1900 BDRV_CHILD_IMAGE
, false, errp
);
1905 /* Initialise locks */
1906 qemu_co_mutex_init(&s
->lock
);
1908 if (qemu_in_coroutine()) {
1909 /* From bdrv_co_create. */
1910 qcow2_open_entry(&qoc
);
1912 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
1913 qemu_coroutine_enter(qemu_coroutine_create(qcow2_open_entry
, &qoc
));
1914 BDRV_POLL_WHILE(bs
, qoc
.ret
== -EINPROGRESS
);
1919 static void qcow2_refresh_limits(BlockDriverState
*bs
, Error
**errp
)
1921 BDRVQcow2State
*s
= bs
->opaque
;
1923 if (bs
->encrypted
) {
1924 /* Encryption works on a sector granularity */
1925 bs
->bl
.request_alignment
= qcrypto_block_get_sector_size(s
->crypto
);
1927 bs
->bl
.pwrite_zeroes_alignment
= s
->subcluster_size
;
1928 bs
->bl
.pdiscard_alignment
= s
->cluster_size
;
1931 static int qcow2_reopen_prepare(BDRVReopenState
*state
,
1932 BlockReopenQueue
*queue
, Error
**errp
)
1934 BDRVQcow2State
*s
= state
->bs
->opaque
;
1935 Qcow2ReopenState
*r
;
1938 r
= g_new0(Qcow2ReopenState
, 1);
1941 ret
= qcow2_update_options_prepare(state
->bs
, r
, state
->options
,
1942 state
->flags
, errp
);
1947 /* We need to write out any unwritten data if we reopen read-only. */
1948 if ((state
->flags
& BDRV_O_RDWR
) == 0) {
1949 ret
= qcow2_reopen_bitmaps_ro(state
->bs
, errp
);
1954 ret
= bdrv_flush(state
->bs
);
1959 ret
= qcow2_mark_clean(state
->bs
);
1966 * Without an external data file, s->data_file points to the same BdrvChild
1967 * as bs->file. It needs to be resynced after reopen because bs->file may
1968 * be changed. We can't use it in the meantime.
1970 if (!has_data_file(state
->bs
)) {
1971 assert(s
->data_file
== state
->bs
->file
);
1972 s
->data_file
= NULL
;
1978 qcow2_update_options_abort(state
->bs
, r
);
1983 static void qcow2_reopen_commit(BDRVReopenState
*state
)
1985 BDRVQcow2State
*s
= state
->bs
->opaque
;
1987 qcow2_update_options_commit(state
->bs
, state
->opaque
);
1988 if (!s
->data_file
) {
1990 * If we don't have an external data file, s->data_file was cleared by
1991 * qcow2_reopen_prepare() and needs to be updated.
1993 s
->data_file
= state
->bs
->file
;
1995 g_free(state
->opaque
);
1998 static void qcow2_reopen_commit_post(BDRVReopenState
*state
)
2000 if (state
->flags
& BDRV_O_RDWR
) {
2001 Error
*local_err
= NULL
;
2003 if (qcow2_reopen_bitmaps_rw(state
->bs
, &local_err
) < 0) {
2005 * This is not fatal, bitmaps just left read-only, so all following
2006 * writes will fail. User can remove read-only bitmaps to unblock
2007 * writes or retry reopen.
2009 error_reportf_err(local_err
,
2010 "%s: Failed to make dirty bitmaps writable: ",
2011 bdrv_get_node_name(state
->bs
));
2016 static void qcow2_reopen_abort(BDRVReopenState
*state
)
2018 BDRVQcow2State
*s
= state
->bs
->opaque
;
2020 if (!s
->data_file
) {
2022 * If we don't have an external data file, s->data_file was cleared by
2023 * qcow2_reopen_prepare() and needs to be restored.
2025 s
->data_file
= state
->bs
->file
;
2027 qcow2_update_options_abort(state
->bs
, state
->opaque
);
2028 g_free(state
->opaque
);
2031 static void qcow2_join_options(QDict
*options
, QDict
*old_options
)
2033 bool has_new_overlap_template
=
2034 qdict_haskey(options
, QCOW2_OPT_OVERLAP
) ||
2035 qdict_haskey(options
, QCOW2_OPT_OVERLAP_TEMPLATE
);
2036 bool has_new_total_cache_size
=
2037 qdict_haskey(options
, QCOW2_OPT_CACHE_SIZE
);
2038 bool has_all_cache_options
;
2040 /* New overlap template overrides all old overlap options */
2041 if (has_new_overlap_template
) {
2042 qdict_del(old_options
, QCOW2_OPT_OVERLAP
);
2043 qdict_del(old_options
, QCOW2_OPT_OVERLAP_TEMPLATE
);
2044 qdict_del(old_options
, QCOW2_OPT_OVERLAP_MAIN_HEADER
);
2045 qdict_del(old_options
, QCOW2_OPT_OVERLAP_ACTIVE_L1
);
2046 qdict_del(old_options
, QCOW2_OPT_OVERLAP_ACTIVE_L2
);
2047 qdict_del(old_options
, QCOW2_OPT_OVERLAP_REFCOUNT_TABLE
);
2048 qdict_del(old_options
, QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK
);
2049 qdict_del(old_options
, QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE
);
2050 qdict_del(old_options
, QCOW2_OPT_OVERLAP_INACTIVE_L1
);
2051 qdict_del(old_options
, QCOW2_OPT_OVERLAP_INACTIVE_L2
);
2054 /* New total cache size overrides all old options */
2055 if (qdict_haskey(options
, QCOW2_OPT_CACHE_SIZE
)) {
2056 qdict_del(old_options
, QCOW2_OPT_L2_CACHE_SIZE
);
2057 qdict_del(old_options
, QCOW2_OPT_REFCOUNT_CACHE_SIZE
);
2060 qdict_join(options
, old_options
, false);
2063 * If after merging all cache size options are set, an old total size is
2064 * overwritten. Do keep all options, however, if all three are new. The
2065 * resulting error message is what we want to happen.
2067 has_all_cache_options
=
2068 qdict_haskey(options
, QCOW2_OPT_CACHE_SIZE
) ||
2069 qdict_haskey(options
, QCOW2_OPT_L2_CACHE_SIZE
) ||
2070 qdict_haskey(options
, QCOW2_OPT_REFCOUNT_CACHE_SIZE
);
2072 if (has_all_cache_options
&& !has_new_total_cache_size
) {
2073 qdict_del(options
, QCOW2_OPT_CACHE_SIZE
);
2077 static int coroutine_fn
qcow2_co_block_status(BlockDriverState
*bs
,
2079 int64_t offset
, int64_t count
,
2080 int64_t *pnum
, int64_t *map
,
2081 BlockDriverState
**file
)
2083 BDRVQcow2State
*s
= bs
->opaque
;
2084 uint64_t host_offset
;
2086 QCow2SubclusterType type
;
2087 int ret
, status
= 0;
2089 qemu_co_mutex_lock(&s
->lock
);
2091 if (!s
->metadata_preallocation_checked
) {
2092 ret
= qcow2_detect_metadata_preallocation(bs
);
2093 s
->metadata_preallocation
= (ret
== 1);
2094 s
->metadata_preallocation_checked
= true;
2097 bytes
= MIN(INT_MAX
, count
);
2098 ret
= qcow2_get_host_offset(bs
, offset
, &bytes
, &host_offset
, &type
);
2099 qemu_co_mutex_unlock(&s
->lock
);
2106 if ((type
== QCOW2_SUBCLUSTER_NORMAL
||
2107 type
== QCOW2_SUBCLUSTER_ZERO_ALLOC
||
2108 type
== QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
) && !s
->crypto
) {
2110 *file
= s
->data_file
->bs
;
2111 status
|= BDRV_BLOCK_OFFSET_VALID
;
2113 if (type
== QCOW2_SUBCLUSTER_ZERO_PLAIN
||
2114 type
== QCOW2_SUBCLUSTER_ZERO_ALLOC
) {
2115 status
|= BDRV_BLOCK_ZERO
;
2116 } else if (type
!= QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
&&
2117 type
!= QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
) {
2118 status
|= BDRV_BLOCK_DATA
;
2120 if (s
->metadata_preallocation
&& (status
& BDRV_BLOCK_DATA
) &&
2121 (status
& BDRV_BLOCK_OFFSET_VALID
))
2123 status
|= BDRV_BLOCK_RECURSE
;
2128 static coroutine_fn
int qcow2_handle_l2meta(BlockDriverState
*bs
,
2129 QCowL2Meta
**pl2meta
,
2133 QCowL2Meta
*l2meta
= *pl2meta
;
2135 while (l2meta
!= NULL
) {
2139 ret
= qcow2_alloc_cluster_link_l2(bs
, l2meta
);
2144 qcow2_alloc_cluster_abort(bs
, l2meta
);
2147 /* Take the request off the list of running requests */
2148 QLIST_REMOVE(l2meta
, next_in_flight
);
2150 qemu_co_queue_restart_all(&l2meta
->dependent_requests
);
2152 next
= l2meta
->next
;
2161 static coroutine_fn
int
2162 qcow2_co_preadv_encrypted(BlockDriverState
*bs
,
2163 uint64_t host_offset
,
2167 uint64_t qiov_offset
)
2170 BDRVQcow2State
*s
= bs
->opaque
;
2173 assert(bs
->encrypted
&& s
->crypto
);
2174 assert(bytes
<= QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
2177 * For encrypted images, read everything into a temporary
2178 * contiguous buffer on which the AES functions can work.
2179 * Also, decryption in a separate buffer is better as it
2180 * prevents the guest from learning information about the
2181 * encrypted nature of the virtual disk.
2184 buf
= qemu_try_blockalign(s
->data_file
->bs
, bytes
);
2189 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_AIO
);
2190 ret
= bdrv_co_pread(s
->data_file
, host_offset
, bytes
, buf
, 0);
2195 if (qcow2_co_decrypt(bs
, host_offset
, offset
, buf
, bytes
) < 0)
2200 qemu_iovec_from_buf(qiov
, qiov_offset
, buf
, bytes
);
2208 typedef struct Qcow2AioTask
{
2211 BlockDriverState
*bs
;
2212 QCow2SubclusterType subcluster_type
; /* only for read */
2213 uint64_t host_offset
; /* or l2_entry for compressed read */
2217 uint64_t qiov_offset
;
2218 QCowL2Meta
*l2meta
; /* only for write */
2221 static coroutine_fn
int qcow2_co_preadv_task_entry(AioTask
*task
);
2222 static coroutine_fn
int qcow2_add_task(BlockDriverState
*bs
,
2225 QCow2SubclusterType subcluster_type
,
2226 uint64_t host_offset
,
2233 Qcow2AioTask local_task
;
2234 Qcow2AioTask
*task
= pool
? g_new(Qcow2AioTask
, 1) : &local_task
;
2236 *task
= (Qcow2AioTask
) {
2239 .subcluster_type
= subcluster_type
,
2241 .host_offset
= host_offset
,
2244 .qiov_offset
= qiov_offset
,
2248 trace_qcow2_add_task(qemu_coroutine_self(), bs
, pool
,
2249 func
== qcow2_co_preadv_task_entry
? "read" : "write",
2250 subcluster_type
, host_offset
, offset
, bytes
,
2254 return func(&task
->task
);
2257 aio_task_pool_start_task(pool
, &task
->task
);
2262 static coroutine_fn
int qcow2_co_preadv_task(BlockDriverState
*bs
,
2263 QCow2SubclusterType subc_type
,
2264 uint64_t host_offset
,
2265 uint64_t offset
, uint64_t bytes
,
2269 BDRVQcow2State
*s
= bs
->opaque
;
2271 switch (subc_type
) {
2272 case QCOW2_SUBCLUSTER_ZERO_PLAIN
:
2273 case QCOW2_SUBCLUSTER_ZERO_ALLOC
:
2274 /* Both zero types are handled in qcow2_co_preadv_part */
2275 g_assert_not_reached();
2277 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
:
2278 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
:
2279 assert(bs
->backing
); /* otherwise handled in qcow2_co_preadv_part */
2281 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_BACKING_AIO
);
2282 return bdrv_co_preadv_part(bs
->backing
, offset
, bytes
,
2283 qiov
, qiov_offset
, 0);
2285 case QCOW2_SUBCLUSTER_COMPRESSED
:
2286 return qcow2_co_preadv_compressed(bs
, host_offset
,
2287 offset
, bytes
, qiov
, qiov_offset
);
2289 case QCOW2_SUBCLUSTER_NORMAL
:
2290 if (bs
->encrypted
) {
2291 return qcow2_co_preadv_encrypted(bs
, host_offset
,
2292 offset
, bytes
, qiov
, qiov_offset
);
2295 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_AIO
);
2296 return bdrv_co_preadv_part(s
->data_file
, host_offset
,
2297 bytes
, qiov
, qiov_offset
, 0);
2300 g_assert_not_reached();
2303 g_assert_not_reached();
2306 static coroutine_fn
int qcow2_co_preadv_task_entry(AioTask
*task
)
2308 Qcow2AioTask
*t
= container_of(task
, Qcow2AioTask
, task
);
2312 return qcow2_co_preadv_task(t
->bs
, t
->subcluster_type
,
2313 t
->host_offset
, t
->offset
, t
->bytes
,
2314 t
->qiov
, t
->qiov_offset
);
2317 static coroutine_fn
int qcow2_co_preadv_part(BlockDriverState
*bs
,
2318 int64_t offset
, int64_t bytes
,
2321 BdrvRequestFlags flags
)
2323 BDRVQcow2State
*s
= bs
->opaque
;
2325 unsigned int cur_bytes
; /* number of bytes in current iteration */
2326 uint64_t host_offset
= 0;
2327 QCow2SubclusterType type
;
2328 AioTaskPool
*aio
= NULL
;
2330 while (bytes
!= 0 && aio_task_pool_status(aio
) == 0) {
2331 /* prepare next request */
2332 cur_bytes
= MIN(bytes
, INT_MAX
);
2334 cur_bytes
= MIN(cur_bytes
,
2335 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
2338 qemu_co_mutex_lock(&s
->lock
);
2339 ret
= qcow2_get_host_offset(bs
, offset
, &cur_bytes
,
2340 &host_offset
, &type
);
2341 qemu_co_mutex_unlock(&s
->lock
);
2346 if (type
== QCOW2_SUBCLUSTER_ZERO_PLAIN
||
2347 type
== QCOW2_SUBCLUSTER_ZERO_ALLOC
||
2348 (type
== QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
&& !bs
->backing
) ||
2349 (type
== QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
&& !bs
->backing
))
2351 qemu_iovec_memset(qiov
, qiov_offset
, 0, cur_bytes
);
2353 if (!aio
&& cur_bytes
!= bytes
) {
2354 aio
= aio_task_pool_new(QCOW2_MAX_WORKERS
);
2356 ret
= qcow2_add_task(bs
, aio
, qcow2_co_preadv_task_entry
, type
,
2357 host_offset
, offset
, cur_bytes
,
2358 qiov
, qiov_offset
, NULL
);
2365 offset
+= cur_bytes
;
2366 qiov_offset
+= cur_bytes
;
2371 aio_task_pool_wait_all(aio
);
2373 ret
= aio_task_pool_status(aio
);
2381 /* Check if it's possible to merge a write request with the writing of
2382 * the data from the COW regions */
2383 static bool merge_cow(uint64_t offset
, unsigned bytes
,
2384 QEMUIOVector
*qiov
, size_t qiov_offset
,
2389 for (m
= l2meta
; m
!= NULL
; m
= m
->next
) {
2390 /* If both COW regions are empty then there's nothing to merge */
2391 if (m
->cow_start
.nb_bytes
== 0 && m
->cow_end
.nb_bytes
== 0) {
2395 /* If COW regions are handled already, skip this too */
2401 * The write request should start immediately after the first
2402 * COW region. This does not always happen because the area
2403 * touched by the request can be larger than the one defined
2404 * by @m (a single request can span an area consisting of a
2405 * mix of previously unallocated and allocated clusters, that
2406 * is why @l2meta is a list).
2408 if (l2meta_cow_start(m
) + m
->cow_start
.nb_bytes
!= offset
) {
2409 /* In this case the request starts before this region */
2410 assert(offset
< l2meta_cow_start(m
));
2411 assert(m
->cow_start
.nb_bytes
== 0);
2415 /* The write request should end immediately before the second
2416 * COW region (see above for why it does not always happen) */
2417 if (m
->offset
+ m
->cow_end
.offset
!= offset
+ bytes
) {
2418 assert(offset
+ bytes
> m
->offset
+ m
->cow_end
.offset
);
2419 assert(m
->cow_end
.nb_bytes
== 0);
2423 /* Make sure that adding both COW regions to the QEMUIOVector
2424 * does not exceed IOV_MAX */
2425 if (qemu_iovec_subvec_niov(qiov
, qiov_offset
, bytes
) > IOV_MAX
- 2) {
2429 m
->data_qiov
= qiov
;
2430 m
->data_qiov_offset
= qiov_offset
;
2438 * Return 1 if the COW regions read as zeroes, 0 if not, < 0 on error.
2439 * Note that returning 0 does not guarantee non-zero data.
2441 static int is_zero_cow(BlockDriverState
*bs
, QCowL2Meta
*m
)
2444 * This check is designed for optimization shortcut so it must be
2446 * Instead of is_zero(), use bdrv_co_is_zero_fast() as it is
2447 * faster (but not as accurate and can result in false negatives).
2449 int ret
= bdrv_co_is_zero_fast(bs
, m
->offset
+ m
->cow_start
.offset
,
2450 m
->cow_start
.nb_bytes
);
2455 return bdrv_co_is_zero_fast(bs
, m
->offset
+ m
->cow_end
.offset
,
2456 m
->cow_end
.nb_bytes
);
2459 static int handle_alloc_space(BlockDriverState
*bs
, QCowL2Meta
*l2meta
)
2461 BDRVQcow2State
*s
= bs
->opaque
;
2464 if (!(s
->data_file
->bs
->supported_zero_flags
& BDRV_REQ_NO_FALLBACK
)) {
2468 if (bs
->encrypted
) {
2472 for (m
= l2meta
; m
!= NULL
; m
= m
->next
) {
2474 uint64_t start_offset
= m
->alloc_offset
+ m
->cow_start
.offset
;
2475 unsigned nb_bytes
= m
->cow_end
.offset
+ m
->cow_end
.nb_bytes
-
2476 m
->cow_start
.offset
;
2478 if (!m
->cow_start
.nb_bytes
&& !m
->cow_end
.nb_bytes
) {
2482 ret
= is_zero_cow(bs
, m
);
2485 } else if (ret
== 0) {
2490 * instead of writing zero COW buffers,
2491 * efficiently zero out the whole clusters
2494 ret
= qcow2_pre_write_overlap_check(bs
, 0, start_offset
, nb_bytes
,
2500 BLKDBG_EVENT(bs
->file
, BLKDBG_CLUSTER_ALLOC_SPACE
);
2501 ret
= bdrv_co_pwrite_zeroes(s
->data_file
, start_offset
, nb_bytes
,
2502 BDRV_REQ_NO_FALLBACK
);
2504 if (ret
!= -ENOTSUP
&& ret
!= -EAGAIN
) {
2510 trace_qcow2_skip_cow(qemu_coroutine_self(), m
->offset
, m
->nb_clusters
);
2517 * qcow2_co_pwritev_task
2518 * Called with s->lock unlocked
2519 * l2meta - if not NULL, qcow2_co_pwritev_task() will consume it. Caller must
2520 * not use it somehow after qcow2_co_pwritev_task() call
2522 static coroutine_fn
int qcow2_co_pwritev_task(BlockDriverState
*bs
,
2523 uint64_t host_offset
,
2524 uint64_t offset
, uint64_t bytes
,
2526 uint64_t qiov_offset
,
2530 BDRVQcow2State
*s
= bs
->opaque
;
2531 void *crypt_buf
= NULL
;
2532 QEMUIOVector encrypted_qiov
;
2534 if (bs
->encrypted
) {
2536 assert(bytes
<= QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
2537 crypt_buf
= qemu_try_blockalign(bs
->file
->bs
, bytes
);
2538 if (crypt_buf
== NULL
) {
2542 qemu_iovec_to_buf(qiov
, qiov_offset
, crypt_buf
, bytes
);
2544 if (qcow2_co_encrypt(bs
, host_offset
, offset
, crypt_buf
, bytes
) < 0) {
2549 qemu_iovec_init_buf(&encrypted_qiov
, crypt_buf
, bytes
);
2550 qiov
= &encrypted_qiov
;
2554 /* Try to efficiently initialize the physical space with zeroes */
2555 ret
= handle_alloc_space(bs
, l2meta
);
2561 * If we need to do COW, check if it's possible to merge the
2562 * writing of the guest data together with that of the COW regions.
2563 * If it's not possible (or not necessary) then write the
2566 if (!merge_cow(offset
, bytes
, qiov
, qiov_offset
, l2meta
)) {
2567 BLKDBG_EVENT(bs
->file
, BLKDBG_WRITE_AIO
);
2568 trace_qcow2_writev_data(qemu_coroutine_self(), host_offset
);
2569 ret
= bdrv_co_pwritev_part(s
->data_file
, host_offset
,
2570 bytes
, qiov
, qiov_offset
, 0);
2576 qemu_co_mutex_lock(&s
->lock
);
2578 ret
= qcow2_handle_l2meta(bs
, &l2meta
, true);
2582 qemu_co_mutex_lock(&s
->lock
);
2585 qcow2_handle_l2meta(bs
, &l2meta
, false);
2586 qemu_co_mutex_unlock(&s
->lock
);
2588 qemu_vfree(crypt_buf
);
2593 static coroutine_fn
int qcow2_co_pwritev_task_entry(AioTask
*task
)
2595 Qcow2AioTask
*t
= container_of(task
, Qcow2AioTask
, task
);
2597 assert(!t
->subcluster_type
);
2599 return qcow2_co_pwritev_task(t
->bs
, t
->host_offset
,
2600 t
->offset
, t
->bytes
, t
->qiov
, t
->qiov_offset
,
2604 static coroutine_fn
int qcow2_co_pwritev_part(
2605 BlockDriverState
*bs
, int64_t offset
, int64_t bytes
,
2606 QEMUIOVector
*qiov
, size_t qiov_offset
, BdrvRequestFlags flags
)
2608 BDRVQcow2State
*s
= bs
->opaque
;
2609 int offset_in_cluster
;
2611 unsigned int cur_bytes
; /* number of sectors in current iteration */
2612 uint64_t host_offset
;
2613 QCowL2Meta
*l2meta
= NULL
;
2614 AioTaskPool
*aio
= NULL
;
2616 trace_qcow2_writev_start_req(qemu_coroutine_self(), offset
, bytes
);
2618 while (bytes
!= 0 && aio_task_pool_status(aio
) == 0) {
2622 trace_qcow2_writev_start_part(qemu_coroutine_self());
2623 offset_in_cluster
= offset_into_cluster(s
, offset
);
2624 cur_bytes
= MIN(bytes
, INT_MAX
);
2625 if (bs
->encrypted
) {
2626 cur_bytes
= MIN(cur_bytes
,
2627 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
2628 - offset_in_cluster
);
2631 qemu_co_mutex_lock(&s
->lock
);
2633 ret
= qcow2_alloc_host_offset(bs
, offset
, &cur_bytes
,
2634 &host_offset
, &l2meta
);
2639 ret
= qcow2_pre_write_overlap_check(bs
, 0, host_offset
,
2645 qemu_co_mutex_unlock(&s
->lock
);
2647 if (!aio
&& cur_bytes
!= bytes
) {
2648 aio
= aio_task_pool_new(QCOW2_MAX_WORKERS
);
2650 ret
= qcow2_add_task(bs
, aio
, qcow2_co_pwritev_task_entry
, 0,
2651 host_offset
, offset
,
2652 cur_bytes
, qiov
, qiov_offset
, l2meta
);
2653 l2meta
= NULL
; /* l2meta is consumed by qcow2_co_pwritev_task() */
2659 offset
+= cur_bytes
;
2660 qiov_offset
+= cur_bytes
;
2661 trace_qcow2_writev_done_part(qemu_coroutine_self(), cur_bytes
);
2665 qemu_co_mutex_lock(&s
->lock
);
2668 qcow2_handle_l2meta(bs
, &l2meta
, false);
2670 qemu_co_mutex_unlock(&s
->lock
);
2674 aio_task_pool_wait_all(aio
);
2676 ret
= aio_task_pool_status(aio
);
2681 trace_qcow2_writev_done_req(qemu_coroutine_self(), ret
);
2686 static int qcow2_inactivate(BlockDriverState
*bs
)
2688 BDRVQcow2State
*s
= bs
->opaque
;
2689 int ret
, result
= 0;
2690 Error
*local_err
= NULL
;
2692 qcow2_store_persistent_dirty_bitmaps(bs
, true, &local_err
);
2693 if (local_err
!= NULL
) {
2695 error_reportf_err(local_err
, "Lost persistent bitmaps during "
2696 "inactivation of node '%s': ",
2697 bdrv_get_device_or_node_name(bs
));
2700 ret
= qcow2_cache_flush(bs
, s
->l2_table_cache
);
2703 error_report("Failed to flush the L2 table cache: %s",
2707 ret
= qcow2_cache_flush(bs
, s
->refcount_block_cache
);
2710 error_report("Failed to flush the refcount block cache: %s",
2715 qcow2_mark_clean(bs
);
2721 static void qcow2_do_close(BlockDriverState
*bs
, bool close_data_file
)
2723 BDRVQcow2State
*s
= bs
->opaque
;
2724 qemu_vfree(s
->l1_table
);
2725 /* else pre-write overlap checks in cache_destroy may crash */
2728 if (!(s
->flags
& BDRV_O_INACTIVE
)) {
2729 qcow2_inactivate(bs
);
2732 cache_clean_timer_del(bs
);
2733 qcow2_cache_destroy(s
->l2_table_cache
);
2734 qcow2_cache_destroy(s
->refcount_block_cache
);
2736 qcrypto_block_free(s
->crypto
);
2738 qapi_free_QCryptoBlockOpenOptions(s
->crypto_opts
);
2740 g_free(s
->unknown_header_fields
);
2741 cleanup_unknown_header_ext(bs
);
2743 g_free(s
->image_data_file
);
2744 g_free(s
->image_backing_file
);
2745 g_free(s
->image_backing_format
);
2747 if (close_data_file
&& has_data_file(bs
)) {
2748 bdrv_unref_child(bs
, s
->data_file
);
2749 s
->data_file
= NULL
;
2752 qcow2_refcount_close(bs
);
2753 qcow2_free_snapshots(bs
);
2756 static void qcow2_close(BlockDriverState
*bs
)
2758 qcow2_do_close(bs
, true);
2761 static void coroutine_fn
qcow2_co_invalidate_cache(BlockDriverState
*bs
,
2765 BDRVQcow2State
*s
= bs
->opaque
;
2766 BdrvChild
*data_file
;
2767 int flags
= s
->flags
;
2768 QCryptoBlock
*crypto
= NULL
;
2773 * Backing files are read-only which makes all of their metadata immutable,
2774 * that means we don't have to worry about reopening them here.
2781 * Do not reopen s->data_file (i.e., have qcow2_do_close() not close it,
2782 * and then prevent qcow2_do_open() from opening it), because this function
2783 * runs in the I/O path and as such we must not invoke global-state
2784 * functions like bdrv_unref_child() and bdrv_open_child().
2787 qcow2_do_close(bs
, false);
2789 data_file
= s
->data_file
;
2790 memset(s
, 0, sizeof(BDRVQcow2State
));
2791 s
->data_file
= data_file
;
2793 options
= qdict_clone_shallow(bs
->options
);
2795 flags
&= ~BDRV_O_INACTIVE
;
2796 qemu_co_mutex_lock(&s
->lock
);
2797 ret
= qcow2_do_open(bs
, options
, flags
, false, errp
);
2798 qemu_co_mutex_unlock(&s
->lock
);
2799 qobject_unref(options
);
2801 error_prepend(errp
, "Could not reopen qcow2 layer: ");
2809 static size_t header_ext_add(char *buf
, uint32_t magic
, const void *s
,
2810 size_t len
, size_t buflen
)
2812 QCowExtension
*ext_backing_fmt
= (QCowExtension
*) buf
;
2813 size_t ext_len
= sizeof(QCowExtension
) + ((len
+ 7) & ~7);
2815 if (buflen
< ext_len
) {
2819 *ext_backing_fmt
= (QCowExtension
) {
2820 .magic
= cpu_to_be32(magic
),
2821 .len
= cpu_to_be32(len
),
2825 memcpy(buf
+ sizeof(QCowExtension
), s
, len
);
2832 * Updates the qcow2 header, including the variable length parts of it, i.e.
2833 * the backing file name and all extensions. qcow2 was not designed to allow
2834 * such changes, so if we run out of space (we can only use the first cluster)
2835 * this function may fail.
2837 * Returns 0 on success, -errno in error cases.
2839 int qcow2_update_header(BlockDriverState
*bs
)
2841 BDRVQcow2State
*s
= bs
->opaque
;
2844 size_t buflen
= s
->cluster_size
;
2846 uint64_t total_size
;
2847 uint32_t refcount_table_clusters
;
2848 size_t header_length
;
2849 Qcow2UnknownHeaderExtension
*uext
;
2851 buf
= qemu_blockalign(bs
, buflen
);
2853 /* Header structure */
2854 header
= (QCowHeader
*) buf
;
2856 if (buflen
< sizeof(*header
)) {
2861 header_length
= sizeof(*header
) + s
->unknown_header_fields_size
;
2862 total_size
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
2863 refcount_table_clusters
= s
->refcount_table_size
>> (s
->cluster_bits
- 3);
2865 ret
= validate_compression_type(s
, NULL
);
2870 *header
= (QCowHeader
) {
2871 /* Version 2 fields */
2872 .magic
= cpu_to_be32(QCOW_MAGIC
),
2873 .version
= cpu_to_be32(s
->qcow_version
),
2874 .backing_file_offset
= 0,
2875 .backing_file_size
= 0,
2876 .cluster_bits
= cpu_to_be32(s
->cluster_bits
),
2877 .size
= cpu_to_be64(total_size
),
2878 .crypt_method
= cpu_to_be32(s
->crypt_method_header
),
2879 .l1_size
= cpu_to_be32(s
->l1_size
),
2880 .l1_table_offset
= cpu_to_be64(s
->l1_table_offset
),
2881 .refcount_table_offset
= cpu_to_be64(s
->refcount_table_offset
),
2882 .refcount_table_clusters
= cpu_to_be32(refcount_table_clusters
),
2883 .nb_snapshots
= cpu_to_be32(s
->nb_snapshots
),
2884 .snapshots_offset
= cpu_to_be64(s
->snapshots_offset
),
2886 /* Version 3 fields */
2887 .incompatible_features
= cpu_to_be64(s
->incompatible_features
),
2888 .compatible_features
= cpu_to_be64(s
->compatible_features
),
2889 .autoclear_features
= cpu_to_be64(s
->autoclear_features
),
2890 .refcount_order
= cpu_to_be32(s
->refcount_order
),
2891 .header_length
= cpu_to_be32(header_length
),
2892 .compression_type
= s
->compression_type
,
2895 /* For older versions, write a shorter header */
2896 switch (s
->qcow_version
) {
2898 ret
= offsetof(QCowHeader
, incompatible_features
);
2901 ret
= sizeof(*header
);
2910 memset(buf
, 0, buflen
);
2912 /* Preserve any unknown field in the header */
2913 if (s
->unknown_header_fields_size
) {
2914 if (buflen
< s
->unknown_header_fields_size
) {
2919 memcpy(buf
, s
->unknown_header_fields
, s
->unknown_header_fields_size
);
2920 buf
+= s
->unknown_header_fields_size
;
2921 buflen
-= s
->unknown_header_fields_size
;
2924 /* Backing file format header extension */
2925 if (s
->image_backing_format
) {
2926 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_BACKING_FORMAT
,
2927 s
->image_backing_format
,
2928 strlen(s
->image_backing_format
),
2938 /* External data file header extension */
2939 if (has_data_file(bs
) && s
->image_data_file
) {
2940 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_DATA_FILE
,
2941 s
->image_data_file
, strlen(s
->image_data_file
),
2951 /* Full disk encryption header pointer extension */
2952 if (s
->crypto_header
.offset
!= 0) {
2953 s
->crypto_header
.offset
= cpu_to_be64(s
->crypto_header
.offset
);
2954 s
->crypto_header
.length
= cpu_to_be64(s
->crypto_header
.length
);
2955 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_CRYPTO_HEADER
,
2956 &s
->crypto_header
, sizeof(s
->crypto_header
),
2958 s
->crypto_header
.offset
= be64_to_cpu(s
->crypto_header
.offset
);
2959 s
->crypto_header
.length
= be64_to_cpu(s
->crypto_header
.length
);
2968 * Feature table. A mere 8 feature names occupies 392 bytes, and
2969 * when coupled with the v3 minimum header of 104 bytes plus the
2970 * 8-byte end-of-extension marker, that would leave only 8 bytes
2971 * for a backing file name in an image with 512-byte clusters.
2972 * Thus, we choose to omit this header for cluster sizes 4k and
2975 if (s
->qcow_version
>= 3 && s
->cluster_size
> 4096) {
2976 static const Qcow2Feature features
[] = {
2978 .type
= QCOW2_FEAT_TYPE_INCOMPATIBLE
,
2979 .bit
= QCOW2_INCOMPAT_DIRTY_BITNR
,
2980 .name
= "dirty bit",
2983 .type
= QCOW2_FEAT_TYPE_INCOMPATIBLE
,
2984 .bit
= QCOW2_INCOMPAT_CORRUPT_BITNR
,
2985 .name
= "corrupt bit",
2988 .type
= QCOW2_FEAT_TYPE_INCOMPATIBLE
,
2989 .bit
= QCOW2_INCOMPAT_DATA_FILE_BITNR
,
2990 .name
= "external data file",
2993 .type
= QCOW2_FEAT_TYPE_INCOMPATIBLE
,
2994 .bit
= QCOW2_INCOMPAT_COMPRESSION_BITNR
,
2995 .name
= "compression type",
2998 .type
= QCOW2_FEAT_TYPE_INCOMPATIBLE
,
2999 .bit
= QCOW2_INCOMPAT_EXTL2_BITNR
,
3000 .name
= "extended L2 entries",
3003 .type
= QCOW2_FEAT_TYPE_COMPATIBLE
,
3004 .bit
= QCOW2_COMPAT_LAZY_REFCOUNTS_BITNR
,
3005 .name
= "lazy refcounts",
3008 .type
= QCOW2_FEAT_TYPE_AUTOCLEAR
,
3009 .bit
= QCOW2_AUTOCLEAR_BITMAPS_BITNR
,
3013 .type
= QCOW2_FEAT_TYPE_AUTOCLEAR
,
3014 .bit
= QCOW2_AUTOCLEAR_DATA_FILE_RAW_BITNR
,
3015 .name
= "raw external data",
3019 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_FEATURE_TABLE
,
3020 features
, sizeof(features
), buflen
);
3028 /* Bitmap extension */
3029 if (s
->nb_bitmaps
> 0) {
3030 Qcow2BitmapHeaderExt bitmaps_header
= {
3031 .nb_bitmaps
= cpu_to_be32(s
->nb_bitmaps
),
3032 .bitmap_directory_size
=
3033 cpu_to_be64(s
->bitmap_directory_size
),
3034 .bitmap_directory_offset
=
3035 cpu_to_be64(s
->bitmap_directory_offset
)
3037 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_BITMAPS
,
3038 &bitmaps_header
, sizeof(bitmaps_header
),
3047 /* Keep unknown header extensions */
3048 QLIST_FOREACH(uext
, &s
->unknown_header_ext
, next
) {
3049 ret
= header_ext_add(buf
, uext
->magic
, uext
->data
, uext
->len
, buflen
);
3058 /* End of header extensions */
3059 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_END
, NULL
, 0, buflen
);
3067 /* Backing file name */
3068 if (s
->image_backing_file
) {
3069 size_t backing_file_len
= strlen(s
->image_backing_file
);
3071 if (buflen
< backing_file_len
) {
3076 /* Using strncpy is ok here, since buf is not NUL-terminated. */
3077 strncpy(buf
, s
->image_backing_file
, buflen
);
3079 header
->backing_file_offset
= cpu_to_be64(buf
- ((char*) header
));
3080 header
->backing_file_size
= cpu_to_be32(backing_file_len
);
3083 /* Write the new header */
3084 ret
= bdrv_pwrite(bs
->file
, 0, header
, s
->cluster_size
);
3095 static int qcow2_change_backing_file(BlockDriverState
*bs
,
3096 const char *backing_file
, const char *backing_fmt
)
3098 BDRVQcow2State
*s
= bs
->opaque
;
3100 /* Adding a backing file means that the external data file alone won't be
3101 * enough to make sense of the content */
3102 if (backing_file
&& data_file_is_raw(bs
)) {
3106 if (backing_file
&& strlen(backing_file
) > 1023) {
3110 pstrcpy(bs
->auto_backing_file
, sizeof(bs
->auto_backing_file
),
3111 backing_file
?: "");
3112 pstrcpy(bs
->backing_file
, sizeof(bs
->backing_file
), backing_file
?: "");
3113 pstrcpy(bs
->backing_format
, sizeof(bs
->backing_format
), backing_fmt
?: "");
3115 g_free(s
->image_backing_file
);
3116 g_free(s
->image_backing_format
);
3118 s
->image_backing_file
= backing_file
? g_strdup(bs
->backing_file
) : NULL
;
3119 s
->image_backing_format
= backing_fmt
? g_strdup(bs
->backing_format
) : NULL
;
3121 return qcow2_update_header(bs
);
3124 static int qcow2_set_up_encryption(BlockDriverState
*bs
,
3125 QCryptoBlockCreateOptions
*cryptoopts
,
3128 BDRVQcow2State
*s
= bs
->opaque
;
3129 QCryptoBlock
*crypto
= NULL
;
3132 switch (cryptoopts
->format
) {
3133 case Q_CRYPTO_BLOCK_FORMAT_LUKS
:
3134 fmt
= QCOW_CRYPT_LUKS
;
3136 case Q_CRYPTO_BLOCK_FORMAT_QCOW
:
3137 fmt
= QCOW_CRYPT_AES
;
3140 error_setg(errp
, "Crypto format not supported in qcow2");
3144 s
->crypt_method_header
= fmt
;
3146 crypto
= qcrypto_block_create(cryptoopts
, "encrypt.",
3147 qcow2_crypto_hdr_init_func
,
3148 qcow2_crypto_hdr_write_func
,
3154 ret
= qcow2_update_header(bs
);
3156 error_setg_errno(errp
, -ret
, "Could not write encryption header");
3162 qcrypto_block_free(crypto
);
3167 * Preallocates metadata structures for data clusters between @offset (in the
3168 * guest disk) and @new_length (which is thus generally the new guest disk
3171 * Returns: 0 on success, -errno on failure.
3173 static int coroutine_fn
preallocate_co(BlockDriverState
*bs
, uint64_t offset
,
3174 uint64_t new_length
, PreallocMode mode
,
3177 BDRVQcow2State
*s
= bs
->opaque
;
3179 uint64_t host_offset
= 0;
3180 int64_t file_length
;
3181 unsigned int cur_bytes
;
3183 QCowL2Meta
*meta
= NULL
, *m
;
3185 assert(offset
<= new_length
);
3186 bytes
= new_length
- offset
;
3189 cur_bytes
= MIN(bytes
, QEMU_ALIGN_DOWN(INT_MAX
, s
->cluster_size
));
3190 ret
= qcow2_alloc_host_offset(bs
, offset
, &cur_bytes
,
3191 &host_offset
, &meta
);
3193 error_setg_errno(errp
, -ret
, "Allocating clusters failed");
3197 for (m
= meta
; m
!= NULL
; m
= m
->next
) {
3201 ret
= qcow2_handle_l2meta(bs
, &meta
, true);
3203 error_setg_errno(errp
, -ret
, "Mapping clusters failed");
3207 /* TODO Preallocate data if requested */
3210 offset
+= cur_bytes
;
3214 * It is expected that the image file is large enough to actually contain
3215 * all of the allocated clusters (otherwise we get failing reads after
3216 * EOF). Extend the image to the last allocated sector.
3218 file_length
= bdrv_getlength(s
->data_file
->bs
);
3219 if (file_length
< 0) {
3220 error_setg_errno(errp
, -file_length
, "Could not get file size");
3225 if (host_offset
+ cur_bytes
> file_length
) {
3226 if (mode
== PREALLOC_MODE_METADATA
) {
3227 mode
= PREALLOC_MODE_OFF
;
3229 ret
= bdrv_co_truncate(s
->data_file
, host_offset
+ cur_bytes
, false,
3239 qcow2_handle_l2meta(bs
, &meta
, false);
3243 /* qcow2_refcount_metadata_size:
3244 * @clusters: number of clusters to refcount (including data and L1/L2 tables)
3245 * @cluster_size: size of a cluster, in bytes
3246 * @refcount_order: refcount bits power-of-2 exponent
3247 * @generous_increase: allow for the refcount table to be 1.5x as large as it
3250 * Returns: Number of bytes required for refcount blocks and table metadata.
3252 int64_t qcow2_refcount_metadata_size(int64_t clusters
, size_t cluster_size
,
3253 int refcount_order
, bool generous_increase
,
3254 uint64_t *refblock_count
)
3257 * Every host cluster is reference-counted, including metadata (even
3258 * refcount metadata is recursively included).
3260 * An accurate formula for the size of refcount metadata size is difficult
3261 * to derive. An easier method of calculation is finding the fixed point
3262 * where no further refcount blocks or table clusters are required to
3263 * reference count every cluster.
3265 int64_t blocks_per_table_cluster
= cluster_size
/ REFTABLE_ENTRY_SIZE
;
3266 int64_t refcounts_per_block
= cluster_size
* 8 / (1 << refcount_order
);
3267 int64_t table
= 0; /* number of refcount table clusters */
3268 int64_t blocks
= 0; /* number of refcount block clusters */
3274 blocks
= DIV_ROUND_UP(clusters
+ table
+ blocks
, refcounts_per_block
);
3275 table
= DIV_ROUND_UP(blocks
, blocks_per_table_cluster
);
3276 n
= clusters
+ blocks
+ table
;
3278 if (n
== last
&& generous_increase
) {
3279 clusters
+= DIV_ROUND_UP(table
, 2);
3280 n
= 0; /* force another loop */
3281 generous_increase
= false;
3283 } while (n
!= last
);
3285 if (refblock_count
) {
3286 *refblock_count
= blocks
;
3289 return (blocks
+ table
) * cluster_size
;
3293 * qcow2_calc_prealloc_size:
3294 * @total_size: virtual disk size in bytes
3295 * @cluster_size: cluster size in bytes
3296 * @refcount_order: refcount bits power-of-2 exponent
3297 * @extended_l2: true if the image has extended L2 entries
3299 * Returns: Total number of bytes required for the fully allocated image
3300 * (including metadata).
3302 static int64_t qcow2_calc_prealloc_size(int64_t total_size
,
3303 size_t cluster_size
,
3307 int64_t meta_size
= 0;
3308 uint64_t nl1e
, nl2e
;
3309 int64_t aligned_total_size
= ROUND_UP(total_size
, cluster_size
);
3310 size_t l2e_size
= extended_l2
? L2E_SIZE_EXTENDED
: L2E_SIZE_NORMAL
;
3312 /* header: 1 cluster */
3313 meta_size
+= cluster_size
;
3315 /* total size of L2 tables */
3316 nl2e
= aligned_total_size
/ cluster_size
;
3317 nl2e
= ROUND_UP(nl2e
, cluster_size
/ l2e_size
);
3318 meta_size
+= nl2e
* l2e_size
;
3320 /* total size of L1 tables */
3321 nl1e
= nl2e
* l2e_size
/ cluster_size
;
3322 nl1e
= ROUND_UP(nl1e
, cluster_size
/ L1E_SIZE
);
3323 meta_size
+= nl1e
* L1E_SIZE
;
3325 /* total size of refcount table and blocks */
3326 meta_size
+= qcow2_refcount_metadata_size(
3327 (meta_size
+ aligned_total_size
) / cluster_size
,
3328 cluster_size
, refcount_order
, false, NULL
);
3330 return meta_size
+ aligned_total_size
;
3333 static bool validate_cluster_size(size_t cluster_size
, bool extended_l2
,
3336 int cluster_bits
= ctz32(cluster_size
);
3337 if (cluster_bits
< MIN_CLUSTER_BITS
|| cluster_bits
> MAX_CLUSTER_BITS
||
3338 (1 << cluster_bits
) != cluster_size
)
3340 error_setg(errp
, "Cluster size must be a power of two between %d and "
3341 "%dk", 1 << MIN_CLUSTER_BITS
, 1 << (MAX_CLUSTER_BITS
- 10));
3346 unsigned min_cluster_size
=
3347 (1 << MIN_CLUSTER_BITS
) * QCOW_EXTL2_SUBCLUSTERS_PER_CLUSTER
;
3348 if (cluster_size
< min_cluster_size
) {
3349 error_setg(errp
, "Extended L2 entries are only supported with "
3350 "cluster sizes of at least %u bytes", min_cluster_size
);
3358 static size_t qcow2_opt_get_cluster_size_del(QemuOpts
*opts
, bool extended_l2
,
3361 size_t cluster_size
;
3363 cluster_size
= qemu_opt_get_size_del(opts
, BLOCK_OPT_CLUSTER_SIZE
,
3364 DEFAULT_CLUSTER_SIZE
);
3365 if (!validate_cluster_size(cluster_size
, extended_l2
, errp
)) {
3368 return cluster_size
;
3371 static int qcow2_opt_get_version_del(QemuOpts
*opts
, Error
**errp
)
3376 buf
= qemu_opt_get_del(opts
, BLOCK_OPT_COMPAT_LEVEL
);
3378 ret
= 3; /* default */
3379 } else if (!strcmp(buf
, "0.10")) {
3381 } else if (!strcmp(buf
, "1.1")) {
3384 error_setg(errp
, "Invalid compatibility level: '%s'", buf
);
3391 static uint64_t qcow2_opt_get_refcount_bits_del(QemuOpts
*opts
, int version
,
3394 uint64_t refcount_bits
;
3396 refcount_bits
= qemu_opt_get_number_del(opts
, BLOCK_OPT_REFCOUNT_BITS
, 16);
3397 if (refcount_bits
> 64 || !is_power_of_2(refcount_bits
)) {
3398 error_setg(errp
, "Refcount width must be a power of two and may not "
3403 if (version
< 3 && refcount_bits
!= 16) {
3404 error_setg(errp
, "Different refcount widths than 16 bits require "
3405 "compatibility level 1.1 or above (use compat=1.1 or "
3410 return refcount_bits
;
3413 static int coroutine_fn
3414 qcow2_co_create(BlockdevCreateOptions
*create_options
, Error
**errp
)
3416 BlockdevCreateOptionsQcow2
*qcow2_opts
;
3420 * Open the image file and write a minimal qcow2 header.
3422 * We keep things simple and start with a zero-sized image. We also
3423 * do without refcount blocks or a L1 table for now. We'll fix the
3424 * inconsistency later.
3426 * We do need a refcount table because growing the refcount table means
3427 * allocating two new refcount blocks - the second of which would be at
3428 * 2 GB for 64k clusters, and we don't want to have a 2 GB initial file
3429 * size for any qcow2 image.
3431 BlockBackend
*blk
= NULL
;
3432 BlockDriverState
*bs
= NULL
;
3433 BlockDriverState
*data_bs
= NULL
;
3435 size_t cluster_size
;
3438 uint64_t *refcount_table
;
3440 uint8_t compression_type
= QCOW2_COMPRESSION_TYPE_ZLIB
;
3442 assert(create_options
->driver
== BLOCKDEV_DRIVER_QCOW2
);
3443 qcow2_opts
= &create_options
->u
.qcow2
;
3445 bs
= bdrv_open_blockdev_ref(qcow2_opts
->file
, errp
);
3450 /* Validate options and set default values */
3451 if (!QEMU_IS_ALIGNED(qcow2_opts
->size
, BDRV_SECTOR_SIZE
)) {
3452 error_setg(errp
, "Image size must be a multiple of %u bytes",
3453 (unsigned) BDRV_SECTOR_SIZE
);
3458 if (qcow2_opts
->has_version
) {
3459 switch (qcow2_opts
->version
) {
3460 case BLOCKDEV_QCOW2_VERSION_V2
:
3463 case BLOCKDEV_QCOW2_VERSION_V3
:
3467 g_assert_not_reached();
3473 if (qcow2_opts
->has_cluster_size
) {
3474 cluster_size
= qcow2_opts
->cluster_size
;
3476 cluster_size
= DEFAULT_CLUSTER_SIZE
;
3479 if (!qcow2_opts
->has_extended_l2
) {
3480 qcow2_opts
->extended_l2
= false;
3482 if (qcow2_opts
->extended_l2
) {
3484 error_setg(errp
, "Extended L2 entries are only supported with "
3485 "compatibility level 1.1 and above (use version=v3 or "
3492 if (!validate_cluster_size(cluster_size
, qcow2_opts
->extended_l2
, errp
)) {
3497 if (!qcow2_opts
->has_preallocation
) {
3498 qcow2_opts
->preallocation
= PREALLOC_MODE_OFF
;
3500 if (qcow2_opts
->has_backing_file
&&
3501 qcow2_opts
->preallocation
!= PREALLOC_MODE_OFF
&&
3502 !qcow2_opts
->extended_l2
)
3504 error_setg(errp
, "Backing file and preallocation can only be used at "
3505 "the same time if extended_l2 is on");
3509 if (qcow2_opts
->has_backing_fmt
&& !qcow2_opts
->has_backing_file
) {
3510 error_setg(errp
, "Backing format cannot be used without backing file");
3515 if (!qcow2_opts
->has_lazy_refcounts
) {
3516 qcow2_opts
->lazy_refcounts
= false;
3518 if (version
< 3 && qcow2_opts
->lazy_refcounts
) {
3519 error_setg(errp
, "Lazy refcounts only supported with compatibility "
3520 "level 1.1 and above (use version=v3 or greater)");
3525 if (!qcow2_opts
->has_refcount_bits
) {
3526 qcow2_opts
->refcount_bits
= 16;
3528 if (qcow2_opts
->refcount_bits
> 64 ||
3529 !is_power_of_2(qcow2_opts
->refcount_bits
))
3531 error_setg(errp
, "Refcount width must be a power of two and may not "
3536 if (version
< 3 && qcow2_opts
->refcount_bits
!= 16) {
3537 error_setg(errp
, "Different refcount widths than 16 bits require "
3538 "compatibility level 1.1 or above (use version=v3 or "
3543 refcount_order
= ctz32(qcow2_opts
->refcount_bits
);
3545 if (qcow2_opts
->data_file_raw
&& !qcow2_opts
->data_file
) {
3546 error_setg(errp
, "data-file-raw requires data-file");
3550 if (qcow2_opts
->data_file_raw
&& qcow2_opts
->has_backing_file
) {
3551 error_setg(errp
, "Backing file and data-file-raw cannot be used at "
3556 if (qcow2_opts
->data_file_raw
&&
3557 qcow2_opts
->preallocation
== PREALLOC_MODE_OFF
)
3560 * data-file-raw means that "the external data file can be
3561 * read as a consistent standalone raw image without looking
3562 * at the qcow2 metadata." It does not say that the metadata
3563 * must be ignored, though (and the qcow2 driver in fact does
3564 * not ignore it), so the L1/L2 tables must be present and
3565 * give a 1:1 mapping, so you get the same result regardless
3566 * of whether you look at the metadata or whether you ignore
3569 qcow2_opts
->preallocation
= PREALLOC_MODE_METADATA
;
3572 * Cannot use preallocation with backing files, but giving a
3573 * backing file when specifying data_file_raw is an error
3576 assert(!qcow2_opts
->has_backing_file
);
3579 if (qcow2_opts
->data_file
) {
3581 error_setg(errp
, "External data files are only supported with "
3582 "compatibility level 1.1 and above (use version=v3 or "
3587 data_bs
= bdrv_open_blockdev_ref(qcow2_opts
->data_file
, errp
);
3588 if (data_bs
== NULL
) {
3594 if (qcow2_opts
->has_compression_type
&&
3595 qcow2_opts
->compression_type
!= QCOW2_COMPRESSION_TYPE_ZLIB
) {
3600 error_setg(errp
, "Non-zlib compression type is only supported with "
3601 "compatibility level 1.1 and above (use version=v3 or "
3606 switch (qcow2_opts
->compression_type
) {
3608 case QCOW2_COMPRESSION_TYPE_ZSTD
:
3612 error_setg(errp
, "Unknown compression type");
3616 compression_type
= qcow2_opts
->compression_type
;
3619 /* Create BlockBackend to write to the image */
3620 blk
= blk_new_with_bs(bs
, BLK_PERM_WRITE
| BLK_PERM_RESIZE
, BLK_PERM_ALL
,
3626 blk_set_allow_write_beyond_eof(blk
, true);
3628 /* Write the header */
3629 QEMU_BUILD_BUG_ON((1 << MIN_CLUSTER_BITS
) < sizeof(*header
));
3630 header
= g_malloc0(cluster_size
);
3631 *header
= (QCowHeader
) {
3632 .magic
= cpu_to_be32(QCOW_MAGIC
),
3633 .version
= cpu_to_be32(version
),
3634 .cluster_bits
= cpu_to_be32(ctz32(cluster_size
)),
3635 .size
= cpu_to_be64(0),
3636 .l1_table_offset
= cpu_to_be64(0),
3637 .l1_size
= cpu_to_be32(0),
3638 .refcount_table_offset
= cpu_to_be64(cluster_size
),
3639 .refcount_table_clusters
= cpu_to_be32(1),
3640 .refcount_order
= cpu_to_be32(refcount_order
),
3641 /* don't deal with endianness since compression_type is 1 byte long */
3642 .compression_type
= compression_type
,
3643 .header_length
= cpu_to_be32(sizeof(*header
)),
3646 /* We'll update this to correct value later */
3647 header
->crypt_method
= cpu_to_be32(QCOW_CRYPT_NONE
);
3649 if (qcow2_opts
->lazy_refcounts
) {
3650 header
->compatible_features
|=
3651 cpu_to_be64(QCOW2_COMPAT_LAZY_REFCOUNTS
);
3654 header
->incompatible_features
|=
3655 cpu_to_be64(QCOW2_INCOMPAT_DATA_FILE
);
3657 if (qcow2_opts
->data_file_raw
) {
3658 header
->autoclear_features
|=
3659 cpu_to_be64(QCOW2_AUTOCLEAR_DATA_FILE_RAW
);
3661 if (compression_type
!= QCOW2_COMPRESSION_TYPE_ZLIB
) {
3662 header
->incompatible_features
|=
3663 cpu_to_be64(QCOW2_INCOMPAT_COMPRESSION
);
3666 if (qcow2_opts
->extended_l2
) {
3667 header
->incompatible_features
|=
3668 cpu_to_be64(QCOW2_INCOMPAT_EXTL2
);
3671 ret
= blk_pwrite(blk
, 0, header
, cluster_size
, 0);
3674 error_setg_errno(errp
, -ret
, "Could not write qcow2 header");
3678 /* Write a refcount table with one refcount block */
3679 refcount_table
= g_malloc0(2 * cluster_size
);
3680 refcount_table
[0] = cpu_to_be64(2 * cluster_size
);
3681 ret
= blk_pwrite(blk
, cluster_size
, refcount_table
, 2 * cluster_size
, 0);
3682 g_free(refcount_table
);
3685 error_setg_errno(errp
, -ret
, "Could not write refcount table");
3693 * And now open the image and make it consistent first (i.e. increase the
3694 * refcount of the cluster that is occupied by the header and the refcount
3697 options
= qdict_new();
3698 qdict_put_str(options
, "driver", "qcow2");
3699 qdict_put_str(options
, "file", bs
->node_name
);
3701 qdict_put_str(options
, "data-file", data_bs
->node_name
);
3703 blk
= blk_new_open(NULL
, NULL
, options
,
3704 BDRV_O_RDWR
| BDRV_O_RESIZE
| BDRV_O_NO_FLUSH
,
3711 ret
= qcow2_alloc_clusters(blk_bs(blk
), 3 * cluster_size
);
3713 error_setg_errno(errp
, -ret
, "Could not allocate clusters for qcow2 "
3714 "header and refcount table");
3717 } else if (ret
!= 0) {
3718 error_report("Huh, first cluster in empty image is already in use?");
3722 /* Set the external data file if necessary */
3724 BDRVQcow2State
*s
= blk_bs(blk
)->opaque
;
3725 s
->image_data_file
= g_strdup(data_bs
->filename
);
3728 /* Create a full header (including things like feature table) */
3729 ret
= qcow2_update_header(blk_bs(blk
));
3731 error_setg_errno(errp
, -ret
, "Could not update qcow2 header");
3735 /* Okay, now that we have a valid image, let's give it the right size */
3736 ret
= blk_truncate(blk
, qcow2_opts
->size
, false, qcow2_opts
->preallocation
,
3739 error_prepend(errp
, "Could not resize image: ");
3743 /* Want a backing file? There you go. */
3744 if (qcow2_opts
->has_backing_file
) {
3745 const char *backing_format
= NULL
;
3747 if (qcow2_opts
->has_backing_fmt
) {
3748 backing_format
= BlockdevDriver_str(qcow2_opts
->backing_fmt
);
3751 ret
= bdrv_change_backing_file(blk_bs(blk
), qcow2_opts
->backing_file
,
3752 backing_format
, false);
3754 error_setg_errno(errp
, -ret
, "Could not assign backing file '%s' "
3755 "with format '%s'", qcow2_opts
->backing_file
,
3761 /* Want encryption? There you go. */
3762 if (qcow2_opts
->has_encrypt
) {
3763 ret
= qcow2_set_up_encryption(blk_bs(blk
), qcow2_opts
->encrypt
, errp
);
3772 /* Reopen the image without BDRV_O_NO_FLUSH to flush it before returning.
3773 * Using BDRV_O_NO_IO, since encryption is now setup we don't want to
3774 * have to setup decryption context. We're not doing any I/O on the top
3775 * level BlockDriverState, only lower layers, where BDRV_O_NO_IO does
3778 options
= qdict_new();
3779 qdict_put_str(options
, "driver", "qcow2");
3780 qdict_put_str(options
, "file", bs
->node_name
);
3782 qdict_put_str(options
, "data-file", data_bs
->node_name
);
3784 blk
= blk_new_open(NULL
, NULL
, options
,
3785 BDRV_O_RDWR
| BDRV_O_NO_BACKING
| BDRV_O_NO_IO
,
3796 bdrv_unref(data_bs
);
3800 static int coroutine_fn
qcow2_co_create_opts(BlockDriver
*drv
,
3801 const char *filename
,
3805 BlockdevCreateOptions
*create_options
= NULL
;
3808 BlockDriverState
*bs
= NULL
;
3809 BlockDriverState
*data_bs
= NULL
;
3813 /* Only the keyval visitor supports the dotted syntax needed for
3814 * encryption, so go through a QDict before getting a QAPI type. Ignore
3815 * options meant for the protocol layer so that the visitor doesn't
3817 qdict
= qemu_opts_to_qdict_filtered(opts
, NULL
, bdrv_qcow2
.create_opts
,
3820 /* Handle encryption options */
3821 val
= qdict_get_try_str(qdict
, BLOCK_OPT_ENCRYPT
);
3822 if (val
&& !strcmp(val
, "on")) {
3823 qdict_put_str(qdict
, BLOCK_OPT_ENCRYPT
, "qcow");
3824 } else if (val
&& !strcmp(val
, "off")) {
3825 qdict_del(qdict
, BLOCK_OPT_ENCRYPT
);
3828 val
= qdict_get_try_str(qdict
, BLOCK_OPT_ENCRYPT_FORMAT
);
3829 if (val
&& !strcmp(val
, "aes")) {
3830 qdict_put_str(qdict
, BLOCK_OPT_ENCRYPT_FORMAT
, "qcow");
3833 /* Convert compat=0.10/1.1 into compat=v2/v3, to be renamed into
3834 * version=v2/v3 below. */
3835 val
= qdict_get_try_str(qdict
, BLOCK_OPT_COMPAT_LEVEL
);
3836 if (val
&& !strcmp(val
, "0.10")) {
3837 qdict_put_str(qdict
, BLOCK_OPT_COMPAT_LEVEL
, "v2");
3838 } else if (val
&& !strcmp(val
, "1.1")) {
3839 qdict_put_str(qdict
, BLOCK_OPT_COMPAT_LEVEL
, "v3");
3842 /* Change legacy command line options into QMP ones */
3843 static const QDictRenames opt_renames
[] = {
3844 { BLOCK_OPT_BACKING_FILE
, "backing-file" },
3845 { BLOCK_OPT_BACKING_FMT
, "backing-fmt" },
3846 { BLOCK_OPT_CLUSTER_SIZE
, "cluster-size" },
3847 { BLOCK_OPT_LAZY_REFCOUNTS
, "lazy-refcounts" },
3848 { BLOCK_OPT_EXTL2
, "extended-l2" },
3849 { BLOCK_OPT_REFCOUNT_BITS
, "refcount-bits" },
3850 { BLOCK_OPT_ENCRYPT
, BLOCK_OPT_ENCRYPT_FORMAT
},
3851 { BLOCK_OPT_COMPAT_LEVEL
, "version" },
3852 { BLOCK_OPT_DATA_FILE_RAW
, "data-file-raw" },
3853 { BLOCK_OPT_COMPRESSION_TYPE
, "compression-type" },
3857 if (!qdict_rename_keys(qdict
, opt_renames
, errp
)) {
3862 /* Create and open the file (protocol layer) */
3863 ret
= bdrv_create_file(filename
, opts
, errp
);
3868 bs
= bdrv_open(filename
, NULL
, NULL
,
3869 BDRV_O_RDWR
| BDRV_O_RESIZE
| BDRV_O_PROTOCOL
, errp
);
3875 /* Create and open an external data file (protocol layer) */
3876 val
= qdict_get_try_str(qdict
, BLOCK_OPT_DATA_FILE
);
3878 ret
= bdrv_create_file(val
, opts
, errp
);
3883 data_bs
= bdrv_open(val
, NULL
, NULL
,
3884 BDRV_O_RDWR
| BDRV_O_RESIZE
| BDRV_O_PROTOCOL
,
3886 if (data_bs
== NULL
) {
3891 qdict_del(qdict
, BLOCK_OPT_DATA_FILE
);
3892 qdict_put_str(qdict
, "data-file", data_bs
->node_name
);
3895 /* Set 'driver' and 'node' options */
3896 qdict_put_str(qdict
, "driver", "qcow2");
3897 qdict_put_str(qdict
, "file", bs
->node_name
);
3899 /* Now get the QAPI type BlockdevCreateOptions */
3900 v
= qobject_input_visitor_new_flat_confused(qdict
, errp
);
3906 visit_type_BlockdevCreateOptions(v
, NULL
, &create_options
, errp
);
3908 if (!create_options
) {
3913 /* Silently round up size */
3914 create_options
->u
.qcow2
.size
= ROUND_UP(create_options
->u
.qcow2
.size
,
3917 /* Create the qcow2 image (format layer) */
3918 ret
= qcow2_co_create(create_options
, errp
);
3921 bdrv_co_delete_file_noerr(bs
);
3922 bdrv_co_delete_file_noerr(data_bs
);
3927 qobject_unref(qdict
);
3929 bdrv_unref(data_bs
);
3930 qapi_free_BlockdevCreateOptions(create_options
);
3935 static bool is_zero(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
)
3940 /* Clamp to image length, before checking status of underlying sectors */
3941 if (offset
+ bytes
> bs
->total_sectors
* BDRV_SECTOR_SIZE
) {
3942 bytes
= bs
->total_sectors
* BDRV_SECTOR_SIZE
- offset
;
3950 * bdrv_block_status_above doesn't merge different types of zeros, for
3951 * example, zeros which come from the region which is unallocated in
3952 * the whole backing chain, and zeros which come because of a short
3953 * backing file. So, we need a loop.
3956 res
= bdrv_block_status_above(bs
, NULL
, offset
, bytes
, &nr
, NULL
, NULL
);
3959 } while (res
>= 0 && (res
& BDRV_BLOCK_ZERO
) && nr
&& bytes
);
3961 return res
>= 0 && (res
& BDRV_BLOCK_ZERO
) && bytes
== 0;
3964 static coroutine_fn
int qcow2_co_pwrite_zeroes(BlockDriverState
*bs
,
3965 int64_t offset
, int64_t bytes
, BdrvRequestFlags flags
)
3968 BDRVQcow2State
*s
= bs
->opaque
;
3970 uint32_t head
= offset_into_subcluster(s
, offset
);
3971 uint32_t tail
= ROUND_UP(offset
+ bytes
, s
->subcluster_size
) -
3974 trace_qcow2_pwrite_zeroes_start_req(qemu_coroutine_self(), offset
, bytes
);
3975 if (offset
+ bytes
== bs
->total_sectors
* BDRV_SECTOR_SIZE
) {
3982 QCow2SubclusterType type
;
3984 assert(head
+ bytes
+ tail
<= s
->subcluster_size
);
3986 /* check whether remainder of cluster already reads as zero */
3987 if (!(is_zero(bs
, offset
- head
, head
) &&
3988 is_zero(bs
, offset
+ bytes
, tail
))) {
3992 qemu_co_mutex_lock(&s
->lock
);
3993 /* We can have new write after previous check */
3995 bytes
= s
->subcluster_size
;
3996 nr
= s
->subcluster_size
;
3997 ret
= qcow2_get_host_offset(bs
, offset
, &nr
, &off
, &type
);
3999 (type
!= QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
&&
4000 type
!= QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
&&
4001 type
!= QCOW2_SUBCLUSTER_ZERO_PLAIN
&&
4002 type
!= QCOW2_SUBCLUSTER_ZERO_ALLOC
)) {
4003 qemu_co_mutex_unlock(&s
->lock
);
4004 return ret
< 0 ? ret
: -ENOTSUP
;
4007 qemu_co_mutex_lock(&s
->lock
);
4010 trace_qcow2_pwrite_zeroes(qemu_coroutine_self(), offset
, bytes
);
4012 /* Whatever is left can use real zero subclusters */
4013 ret
= qcow2_subcluster_zeroize(bs
, offset
, bytes
, flags
);
4014 qemu_co_mutex_unlock(&s
->lock
);
4019 static coroutine_fn
int qcow2_co_pdiscard(BlockDriverState
*bs
,
4020 int64_t offset
, int64_t bytes
)
4023 BDRVQcow2State
*s
= bs
->opaque
;
4025 /* If the image does not support QCOW_OFLAG_ZERO then discarding
4026 * clusters could expose stale data from the backing file. */
4027 if (s
->qcow_version
< 3 && bs
->backing
) {
4031 if (!QEMU_IS_ALIGNED(offset
| bytes
, s
->cluster_size
)) {
4032 assert(bytes
< s
->cluster_size
);
4033 /* Ignore partial clusters, except for the special case of the
4034 * complete partial cluster at the end of an unaligned file */
4035 if (!QEMU_IS_ALIGNED(offset
, s
->cluster_size
) ||
4036 offset
+ bytes
!= bs
->total_sectors
* BDRV_SECTOR_SIZE
) {
4041 qemu_co_mutex_lock(&s
->lock
);
4042 ret
= qcow2_cluster_discard(bs
, offset
, bytes
, QCOW2_DISCARD_REQUEST
,
4044 qemu_co_mutex_unlock(&s
->lock
);
4048 static int coroutine_fn
4049 qcow2_co_copy_range_from(BlockDriverState
*bs
,
4050 BdrvChild
*src
, int64_t src_offset
,
4051 BdrvChild
*dst
, int64_t dst_offset
,
4052 int64_t bytes
, BdrvRequestFlags read_flags
,
4053 BdrvRequestFlags write_flags
)
4055 BDRVQcow2State
*s
= bs
->opaque
;
4057 unsigned int cur_bytes
; /* number of bytes in current iteration */
4058 BdrvChild
*child
= NULL
;
4059 BdrvRequestFlags cur_write_flags
;
4061 assert(!bs
->encrypted
);
4062 qemu_co_mutex_lock(&s
->lock
);
4064 while (bytes
!= 0) {
4065 uint64_t copy_offset
= 0;
4066 QCow2SubclusterType type
;
4067 /* prepare next request */
4068 cur_bytes
= MIN(bytes
, INT_MAX
);
4069 cur_write_flags
= write_flags
;
4071 ret
= qcow2_get_host_offset(bs
, src_offset
, &cur_bytes
,
4072 ©_offset
, &type
);
4078 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
:
4079 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
:
4080 if (bs
->backing
&& bs
->backing
->bs
) {
4081 int64_t backing_length
= bdrv_getlength(bs
->backing
->bs
);
4082 if (src_offset
>= backing_length
) {
4083 cur_write_flags
|= BDRV_REQ_ZERO_WRITE
;
4085 child
= bs
->backing
;
4086 cur_bytes
= MIN(cur_bytes
, backing_length
- src_offset
);
4087 copy_offset
= src_offset
;
4090 cur_write_flags
|= BDRV_REQ_ZERO_WRITE
;
4094 case QCOW2_SUBCLUSTER_ZERO_PLAIN
:
4095 case QCOW2_SUBCLUSTER_ZERO_ALLOC
:
4096 cur_write_flags
|= BDRV_REQ_ZERO_WRITE
;
4099 case QCOW2_SUBCLUSTER_COMPRESSED
:
4103 case QCOW2_SUBCLUSTER_NORMAL
:
4104 child
= s
->data_file
;
4110 qemu_co_mutex_unlock(&s
->lock
);
4111 ret
= bdrv_co_copy_range_from(child
,
4114 cur_bytes
, read_flags
, cur_write_flags
);
4115 qemu_co_mutex_lock(&s
->lock
);
4121 src_offset
+= cur_bytes
;
4122 dst_offset
+= cur_bytes
;
4127 qemu_co_mutex_unlock(&s
->lock
);
4131 static int coroutine_fn
4132 qcow2_co_copy_range_to(BlockDriverState
*bs
,
4133 BdrvChild
*src
, int64_t src_offset
,
4134 BdrvChild
*dst
, int64_t dst_offset
,
4135 int64_t bytes
, BdrvRequestFlags read_flags
,
4136 BdrvRequestFlags write_flags
)
4138 BDRVQcow2State
*s
= bs
->opaque
;
4140 unsigned int cur_bytes
; /* number of sectors in current iteration */
4141 uint64_t host_offset
;
4142 QCowL2Meta
*l2meta
= NULL
;
4144 assert(!bs
->encrypted
);
4146 qemu_co_mutex_lock(&s
->lock
);
4148 while (bytes
!= 0) {
4152 cur_bytes
= MIN(bytes
, INT_MAX
);
4155 * If src->bs == dst->bs, we could simply copy by incrementing
4156 * the refcnt, without copying user data.
4157 * Or if src->bs == dst->bs->backing->bs, we could copy by discarding. */
4158 ret
= qcow2_alloc_host_offset(bs
, dst_offset
, &cur_bytes
,
4159 &host_offset
, &l2meta
);
4164 ret
= qcow2_pre_write_overlap_check(bs
, 0, host_offset
, cur_bytes
,
4170 qemu_co_mutex_unlock(&s
->lock
);
4171 ret
= bdrv_co_copy_range_to(src
, src_offset
, s
->data_file
, host_offset
,
4172 cur_bytes
, read_flags
, write_flags
);
4173 qemu_co_mutex_lock(&s
->lock
);
4178 ret
= qcow2_handle_l2meta(bs
, &l2meta
, true);
4184 src_offset
+= cur_bytes
;
4185 dst_offset
+= cur_bytes
;
4190 qcow2_handle_l2meta(bs
, &l2meta
, false);
4192 qemu_co_mutex_unlock(&s
->lock
);
4194 trace_qcow2_writev_done_req(qemu_coroutine_self(), ret
);
4199 static int coroutine_fn
qcow2_co_truncate(BlockDriverState
*bs
, int64_t offset
,
4200 bool exact
, PreallocMode prealloc
,
4201 BdrvRequestFlags flags
, Error
**errp
)
4203 BDRVQcow2State
*s
= bs
->opaque
;
4204 uint64_t old_length
;
4205 int64_t new_l1_size
;
4209 if (prealloc
!= PREALLOC_MODE_OFF
&& prealloc
!= PREALLOC_MODE_METADATA
&&
4210 prealloc
!= PREALLOC_MODE_FALLOC
&& prealloc
!= PREALLOC_MODE_FULL
)
4212 error_setg(errp
, "Unsupported preallocation mode '%s'",
4213 PreallocMode_str(prealloc
));
4217 if (!QEMU_IS_ALIGNED(offset
, BDRV_SECTOR_SIZE
)) {
4218 error_setg(errp
, "The new size must be a multiple of %u",
4219 (unsigned) BDRV_SECTOR_SIZE
);
4223 qemu_co_mutex_lock(&s
->lock
);
4226 * Even though we store snapshot size for all images, it was not
4227 * required until v3, so it is not safe to proceed for v2.
4229 if (s
->nb_snapshots
&& s
->qcow_version
< 3) {
4230 error_setg(errp
, "Can't resize a v2 image which has snapshots");
4235 /* See qcow2-bitmap.c for which bitmap scenarios prevent a resize. */
4236 if (qcow2_truncate_bitmaps_check(bs
, errp
)) {
4241 old_length
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
4242 new_l1_size
= size_to_l1(s
, offset
);
4244 if (offset
< old_length
) {
4245 int64_t last_cluster
, old_file_size
;
4246 if (prealloc
!= PREALLOC_MODE_OFF
) {
4248 "Preallocation can't be used for shrinking an image");
4253 ret
= qcow2_cluster_discard(bs
, ROUND_UP(offset
, s
->cluster_size
),
4254 old_length
- ROUND_UP(offset
,
4256 QCOW2_DISCARD_ALWAYS
, true);
4258 error_setg_errno(errp
, -ret
, "Failed to discard cropped clusters");
4262 ret
= qcow2_shrink_l1_table(bs
, new_l1_size
);
4264 error_setg_errno(errp
, -ret
,
4265 "Failed to reduce the number of L2 tables");
4269 ret
= qcow2_shrink_reftable(bs
);
4271 error_setg_errno(errp
, -ret
,
4272 "Failed to discard unused refblocks");
4276 old_file_size
= bdrv_getlength(bs
->file
->bs
);
4277 if (old_file_size
< 0) {
4278 error_setg_errno(errp
, -old_file_size
,
4279 "Failed to inquire current file length");
4280 ret
= old_file_size
;
4283 last_cluster
= qcow2_get_last_cluster(bs
, old_file_size
);
4284 if (last_cluster
< 0) {
4285 error_setg_errno(errp
, -last_cluster
,
4286 "Failed to find the last cluster");
4290 if ((last_cluster
+ 1) * s
->cluster_size
< old_file_size
) {
4291 Error
*local_err
= NULL
;
4294 * Do not pass @exact here: It will not help the user if
4295 * we get an error here just because they wanted to shrink
4296 * their qcow2 image (on a block device) with qemu-img.
4297 * (And on the qcow2 layer, the @exact requirement is
4298 * always fulfilled, so there is no need to pass it on.)
4300 bdrv_co_truncate(bs
->file
, (last_cluster
+ 1) * s
->cluster_size
,
4301 false, PREALLOC_MODE_OFF
, 0, &local_err
);
4303 warn_reportf_err(local_err
,
4304 "Failed to truncate the tail of the image: ");
4308 ret
= qcow2_grow_l1_table(bs
, new_l1_size
, true);
4310 error_setg_errno(errp
, -ret
, "Failed to grow the L1 table");
4314 if (data_file_is_raw(bs
) && prealloc
== PREALLOC_MODE_OFF
) {
4316 * When creating a qcow2 image with data-file-raw, we enforce
4317 * at least prealloc=metadata, so that the L1/L2 tables are
4318 * fully allocated and reading from the data file will return
4319 * the same data as reading from the qcow2 image. When the
4320 * image is grown, we must consequently preallocate the
4321 * metadata structures to cover the added area.
4323 prealloc
= PREALLOC_MODE_METADATA
;
4328 case PREALLOC_MODE_OFF
:
4329 if (has_data_file(bs
)) {
4331 * If the caller wants an exact resize, the external data
4332 * file should be resized to the exact target size, too,
4333 * so we pass @exact here.
4335 ret
= bdrv_co_truncate(s
->data_file
, offset
, exact
, prealloc
, 0,
4343 case PREALLOC_MODE_METADATA
:
4344 ret
= preallocate_co(bs
, old_length
, offset
, prealloc
, errp
);
4350 case PREALLOC_MODE_FALLOC
:
4351 case PREALLOC_MODE_FULL
:
4353 int64_t allocation_start
, host_offset
, guest_offset
;
4354 int64_t clusters_allocated
;
4355 int64_t old_file_size
, last_cluster
, new_file_size
;
4356 uint64_t nb_new_data_clusters
, nb_new_l2_tables
;
4357 bool subclusters_need_allocation
= false;
4359 /* With a data file, preallocation means just allocating the metadata
4360 * and forwarding the truncate request to the data file */
4361 if (has_data_file(bs
)) {
4362 ret
= preallocate_co(bs
, old_length
, offset
, prealloc
, errp
);
4369 old_file_size
= bdrv_getlength(bs
->file
->bs
);
4370 if (old_file_size
< 0) {
4371 error_setg_errno(errp
, -old_file_size
,
4372 "Failed to inquire current file length");
4373 ret
= old_file_size
;
4377 last_cluster
= qcow2_get_last_cluster(bs
, old_file_size
);
4378 if (last_cluster
>= 0) {
4379 old_file_size
= (last_cluster
+ 1) * s
->cluster_size
;
4381 old_file_size
= ROUND_UP(old_file_size
, s
->cluster_size
);
4384 nb_new_data_clusters
= (ROUND_UP(offset
, s
->cluster_size
) -
4385 start_of_cluster(s
, old_length
)) >> s
->cluster_bits
;
4387 /* This is an overestimation; we will not actually allocate space for
4388 * these in the file but just make sure the new refcount structures are
4389 * able to cover them so we will not have to allocate new refblocks
4390 * while entering the data blocks in the potentially new L2 tables.
4391 * (We do not actually care where the L2 tables are placed. Maybe they
4392 * are already allocated or they can be placed somewhere before
4393 * @old_file_size. It does not matter because they will be fully
4394 * allocated automatically, so they do not need to be covered by the
4395 * preallocation. All that matters is that we will not have to allocate
4396 * new refcount structures for them.) */
4397 nb_new_l2_tables
= DIV_ROUND_UP(nb_new_data_clusters
,
4398 s
->cluster_size
/ l2_entry_size(s
));
4399 /* The cluster range may not be aligned to L2 boundaries, so add one L2
4400 * table for a potential head/tail */
4403 allocation_start
= qcow2_refcount_area(bs
, old_file_size
,
4404 nb_new_data_clusters
+
4407 if (allocation_start
< 0) {
4408 error_setg_errno(errp
, -allocation_start
,
4409 "Failed to resize refcount structures");
4410 ret
= allocation_start
;
4414 clusters_allocated
= qcow2_alloc_clusters_at(bs
, allocation_start
,
4415 nb_new_data_clusters
);
4416 if (clusters_allocated
< 0) {
4417 error_setg_errno(errp
, -clusters_allocated
,
4418 "Failed to allocate data clusters");
4419 ret
= clusters_allocated
;
4423 assert(clusters_allocated
== nb_new_data_clusters
);
4425 /* Allocate the data area */
4426 new_file_size
= allocation_start
+
4427 nb_new_data_clusters
* s
->cluster_size
;
4429 * Image file grows, so @exact does not matter.
4431 * If we need to zero out the new area, try first whether the protocol
4432 * driver can already take care of this.
4434 if (flags
& BDRV_REQ_ZERO_WRITE
) {
4435 ret
= bdrv_co_truncate(bs
->file
, new_file_size
, false, prealloc
,
4436 BDRV_REQ_ZERO_WRITE
, NULL
);
4438 flags
&= ~BDRV_REQ_ZERO_WRITE
;
4439 /* Ensure that we read zeroes and not backing file data */
4440 subclusters_need_allocation
= true;
4446 ret
= bdrv_co_truncate(bs
->file
, new_file_size
, false, prealloc
, 0,
4450 error_prepend(errp
, "Failed to resize underlying file: ");
4451 qcow2_free_clusters(bs
, allocation_start
,
4452 nb_new_data_clusters
* s
->cluster_size
,
4453 QCOW2_DISCARD_OTHER
);
4457 /* Create the necessary L2 entries */
4458 host_offset
= allocation_start
;
4459 guest_offset
= old_length
;
4460 while (nb_new_data_clusters
) {
4461 int64_t nb_clusters
= MIN(
4462 nb_new_data_clusters
,
4463 s
->l2_slice_size
- offset_to_l2_slice_index(s
, guest_offset
));
4464 unsigned cow_start_length
= offset_into_cluster(s
, guest_offset
);
4465 QCowL2Meta allocation
;
4466 guest_offset
= start_of_cluster(s
, guest_offset
);
4467 allocation
= (QCowL2Meta
) {
4468 .offset
= guest_offset
,
4469 .alloc_offset
= host_offset
,
4470 .nb_clusters
= nb_clusters
,
4473 .nb_bytes
= cow_start_length
,
4476 .offset
= nb_clusters
<< s
->cluster_bits
,
4479 .prealloc
= !subclusters_need_allocation
,
4481 qemu_co_queue_init(&allocation
.dependent_requests
);
4483 ret
= qcow2_alloc_cluster_link_l2(bs
, &allocation
);
4485 error_setg_errno(errp
, -ret
, "Failed to update L2 tables");
4486 qcow2_free_clusters(bs
, host_offset
,
4487 nb_new_data_clusters
* s
->cluster_size
,
4488 QCOW2_DISCARD_OTHER
);
4492 guest_offset
+= nb_clusters
* s
->cluster_size
;
4493 host_offset
+= nb_clusters
* s
->cluster_size
;
4494 nb_new_data_clusters
-= nb_clusters
;
4500 g_assert_not_reached();
4503 if ((flags
& BDRV_REQ_ZERO_WRITE
) && offset
> old_length
) {
4504 uint64_t zero_start
= QEMU_ALIGN_UP(old_length
, s
->subcluster_size
);
4507 * Use zero clusters as much as we can. qcow2_subcluster_zeroize()
4508 * requires a subcluster-aligned start. The end may be unaligned if
4509 * it is at the end of the image (which it is here).
4511 if (offset
> zero_start
) {
4512 ret
= qcow2_subcluster_zeroize(bs
, zero_start
, offset
- zero_start
,
4515 error_setg_errno(errp
, -ret
, "Failed to zero out new clusters");
4520 /* Write explicit zeros for the unaligned head */
4521 if (zero_start
> old_length
) {
4522 uint64_t len
= MIN(zero_start
, offset
) - old_length
;
4523 uint8_t *buf
= qemu_blockalign0(bs
, len
);
4525 qemu_iovec_init_buf(&qiov
, buf
, len
);
4527 qemu_co_mutex_unlock(&s
->lock
);
4528 ret
= qcow2_co_pwritev_part(bs
, old_length
, len
, &qiov
, 0, 0);
4529 qemu_co_mutex_lock(&s
->lock
);
4533 error_setg_errno(errp
, -ret
, "Failed to zero out the new area");
4539 if (prealloc
!= PREALLOC_MODE_OFF
) {
4540 /* Flush metadata before actually changing the image size */
4541 ret
= qcow2_write_caches(bs
);
4543 error_setg_errno(errp
, -ret
,
4544 "Failed to flush the preallocated area to disk");
4549 bs
->total_sectors
= offset
/ BDRV_SECTOR_SIZE
;
4551 /* write updated header.size */
4552 offset
= cpu_to_be64(offset
);
4553 ret
= bdrv_pwrite_sync(bs
->file
, offsetof(QCowHeader
, size
),
4554 &offset
, sizeof(offset
));
4556 error_setg_errno(errp
, -ret
, "Failed to update the image size");
4560 s
->l1_vm_state_index
= new_l1_size
;
4562 /* Update cache sizes */
4563 options
= qdict_clone_shallow(bs
->options
);
4564 ret
= qcow2_update_options(bs
, options
, s
->flags
, errp
);
4565 qobject_unref(options
);
4571 qemu_co_mutex_unlock(&s
->lock
);
4575 static coroutine_fn
int
4576 qcow2_co_pwritev_compressed_task(BlockDriverState
*bs
,
4577 uint64_t offset
, uint64_t bytes
,
4578 QEMUIOVector
*qiov
, size_t qiov_offset
)
4580 BDRVQcow2State
*s
= bs
->opaque
;
4583 uint8_t *buf
, *out_buf
;
4584 uint64_t cluster_offset
;
4586 assert(bytes
== s
->cluster_size
|| (bytes
< s
->cluster_size
&&
4587 (offset
+ bytes
== bs
->total_sectors
<< BDRV_SECTOR_BITS
)));
4589 buf
= qemu_blockalign(bs
, s
->cluster_size
);
4590 if (bytes
< s
->cluster_size
) {
4591 /* Zero-pad last write if image size is not cluster aligned */
4592 memset(buf
+ bytes
, 0, s
->cluster_size
- bytes
);
4594 qemu_iovec_to_buf(qiov
, qiov_offset
, buf
, bytes
);
4596 out_buf
= g_malloc(s
->cluster_size
);
4598 out_len
= qcow2_co_compress(bs
, out_buf
, s
->cluster_size
- 1,
4599 buf
, s
->cluster_size
);
4600 if (out_len
== -ENOMEM
) {
4601 /* could not compress: write normal cluster */
4602 ret
= qcow2_co_pwritev_part(bs
, offset
, bytes
, qiov
, qiov_offset
, 0);
4607 } else if (out_len
< 0) {
4612 qemu_co_mutex_lock(&s
->lock
);
4613 ret
= qcow2_alloc_compressed_cluster_offset(bs
, offset
, out_len
,
4616 qemu_co_mutex_unlock(&s
->lock
);
4620 ret
= qcow2_pre_write_overlap_check(bs
, 0, cluster_offset
, out_len
, true);
4621 qemu_co_mutex_unlock(&s
->lock
);
4626 BLKDBG_EVENT(s
->data_file
, BLKDBG_WRITE_COMPRESSED
);
4627 ret
= bdrv_co_pwrite(s
->data_file
, cluster_offset
, out_len
, out_buf
, 0);
4639 static coroutine_fn
int qcow2_co_pwritev_compressed_task_entry(AioTask
*task
)
4641 Qcow2AioTask
*t
= container_of(task
, Qcow2AioTask
, task
);
4643 assert(!t
->subcluster_type
&& !t
->l2meta
);
4645 return qcow2_co_pwritev_compressed_task(t
->bs
, t
->offset
, t
->bytes
, t
->qiov
,
4650 * XXX: put compressed sectors first, then all the cluster aligned
4651 * tables to avoid losing bytes in alignment
4653 static coroutine_fn
int
4654 qcow2_co_pwritev_compressed_part(BlockDriverState
*bs
,
4655 int64_t offset
, int64_t bytes
,
4656 QEMUIOVector
*qiov
, size_t qiov_offset
)
4658 BDRVQcow2State
*s
= bs
->opaque
;
4659 AioTaskPool
*aio
= NULL
;
4662 if (has_data_file(bs
)) {
4668 * align end of file to a sector boundary to ease reading with
4671 int64_t len
= bdrv_getlength(bs
->file
->bs
);
4675 return bdrv_co_truncate(bs
->file
, len
, false, PREALLOC_MODE_OFF
, 0,
4679 if (offset_into_cluster(s
, offset
)) {
4683 if (offset_into_cluster(s
, bytes
) &&
4684 (offset
+ bytes
) != (bs
->total_sectors
<< BDRV_SECTOR_BITS
)) {
4688 while (bytes
&& aio_task_pool_status(aio
) == 0) {
4689 uint64_t chunk_size
= MIN(bytes
, s
->cluster_size
);
4691 if (!aio
&& chunk_size
!= bytes
) {
4692 aio
= aio_task_pool_new(QCOW2_MAX_WORKERS
);
4695 ret
= qcow2_add_task(bs
, aio
, qcow2_co_pwritev_compressed_task_entry
,
4696 0, 0, offset
, chunk_size
, qiov
, qiov_offset
, NULL
);
4700 qiov_offset
+= chunk_size
;
4701 offset
+= chunk_size
;
4702 bytes
-= chunk_size
;
4706 aio_task_pool_wait_all(aio
);
4708 ret
= aio_task_pool_status(aio
);
4716 static int coroutine_fn
4717 qcow2_co_preadv_compressed(BlockDriverState
*bs
,
4724 BDRVQcow2State
*s
= bs
->opaque
;
4727 uint8_t *buf
, *out_buf
;
4728 int offset_in_cluster
= offset_into_cluster(s
, offset
);
4730 qcow2_parse_compressed_l2_entry(bs
, l2_entry
, &coffset
, &csize
);
4732 buf
= g_try_malloc(csize
);
4737 out_buf
= qemu_blockalign(bs
, s
->cluster_size
);
4739 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_COMPRESSED
);
4740 ret
= bdrv_co_pread(bs
->file
, coffset
, csize
, buf
, 0);
4745 if (qcow2_co_decompress(bs
, out_buf
, s
->cluster_size
, buf
, csize
) < 0) {
4750 qemu_iovec_from_buf(qiov
, qiov_offset
, out_buf
+ offset_in_cluster
, bytes
);
4753 qemu_vfree(out_buf
);
4759 static int make_completely_empty(BlockDriverState
*bs
)
4761 BDRVQcow2State
*s
= bs
->opaque
;
4762 Error
*local_err
= NULL
;
4763 int ret
, l1_clusters
;
4765 uint64_t *new_reftable
= NULL
;
4766 uint64_t rt_entry
, l1_size2
;
4769 uint64_t reftable_offset
;
4770 uint32_t reftable_clusters
;
4771 } QEMU_PACKED l1_ofs_rt_ofs_cls
;
4773 ret
= qcow2_cache_empty(bs
, s
->l2_table_cache
);
4778 ret
= qcow2_cache_empty(bs
, s
->refcount_block_cache
);
4783 /* Refcounts will be broken utterly */
4784 ret
= qcow2_mark_dirty(bs
);
4789 BLKDBG_EVENT(bs
->file
, BLKDBG_L1_UPDATE
);
4791 l1_clusters
= DIV_ROUND_UP(s
->l1_size
, s
->cluster_size
/ L1E_SIZE
);
4792 l1_size2
= (uint64_t)s
->l1_size
* L1E_SIZE
;
4794 /* After this call, neither the in-memory nor the on-disk refcount
4795 * information accurately describe the actual references */
4797 ret
= bdrv_pwrite_zeroes(bs
->file
, s
->l1_table_offset
,
4798 l1_clusters
* s
->cluster_size
, 0);
4800 goto fail_broken_refcounts
;
4802 memset(s
->l1_table
, 0, l1_size2
);
4804 BLKDBG_EVENT(bs
->file
, BLKDBG_EMPTY_IMAGE_PREPARE
);
4806 /* Overwrite enough clusters at the beginning of the sectors to place
4807 * the refcount table, a refcount block and the L1 table in; this may
4808 * overwrite parts of the existing refcount and L1 table, which is not
4809 * an issue because the dirty flag is set, complete data loss is in fact
4810 * desired and partial data loss is consequently fine as well */
4811 ret
= bdrv_pwrite_zeroes(bs
->file
, s
->cluster_size
,
4812 (2 + l1_clusters
) * s
->cluster_size
, 0);
4813 /* This call (even if it failed overall) may have overwritten on-disk
4814 * refcount structures; in that case, the in-memory refcount information
4815 * will probably differ from the on-disk information which makes the BDS
4818 goto fail_broken_refcounts
;
4821 BLKDBG_EVENT(bs
->file
, BLKDBG_L1_UPDATE
);
4822 BLKDBG_EVENT(bs
->file
, BLKDBG_REFTABLE_UPDATE
);
4824 /* "Create" an empty reftable (one cluster) directly after the image
4825 * header and an empty L1 table three clusters after the image header;
4826 * the cluster between those two will be used as the first refblock */
4827 l1_ofs_rt_ofs_cls
.l1_offset
= cpu_to_be64(3 * s
->cluster_size
);
4828 l1_ofs_rt_ofs_cls
.reftable_offset
= cpu_to_be64(s
->cluster_size
);
4829 l1_ofs_rt_ofs_cls
.reftable_clusters
= cpu_to_be32(1);
4830 ret
= bdrv_pwrite_sync(bs
->file
, offsetof(QCowHeader
, l1_table_offset
),
4831 &l1_ofs_rt_ofs_cls
, sizeof(l1_ofs_rt_ofs_cls
));
4833 goto fail_broken_refcounts
;
4836 s
->l1_table_offset
= 3 * s
->cluster_size
;
4838 new_reftable
= g_try_new0(uint64_t, s
->cluster_size
/ REFTABLE_ENTRY_SIZE
);
4839 if (!new_reftable
) {
4841 goto fail_broken_refcounts
;
4844 s
->refcount_table_offset
= s
->cluster_size
;
4845 s
->refcount_table_size
= s
->cluster_size
/ REFTABLE_ENTRY_SIZE
;
4846 s
->max_refcount_table_index
= 0;
4848 g_free(s
->refcount_table
);
4849 s
->refcount_table
= new_reftable
;
4850 new_reftable
= NULL
;
4852 /* Now the in-memory refcount information again corresponds to the on-disk
4853 * information (reftable is empty and no refblocks (the refblock cache is
4854 * empty)); however, this means some clusters (e.g. the image header) are
4855 * referenced, but not refcounted, but the normal qcow2 code assumes that
4856 * the in-memory information is always correct */
4858 BLKDBG_EVENT(bs
->file
, BLKDBG_REFBLOCK_ALLOC
);
4860 /* Enter the first refblock into the reftable */
4861 rt_entry
= cpu_to_be64(2 * s
->cluster_size
);
4862 ret
= bdrv_pwrite_sync(bs
->file
, s
->cluster_size
,
4863 &rt_entry
, sizeof(rt_entry
));
4865 goto fail_broken_refcounts
;
4867 s
->refcount_table
[0] = 2 * s
->cluster_size
;
4869 s
->free_cluster_index
= 0;
4870 assert(3 + l1_clusters
<= s
->refcount_block_size
);
4871 offset
= qcow2_alloc_clusters(bs
, 3 * s
->cluster_size
+ l1_size2
);
4874 goto fail_broken_refcounts
;
4875 } else if (offset
> 0) {
4876 error_report("First cluster in emptied image is in use");
4880 /* Now finally the in-memory information corresponds to the on-disk
4881 * structures and is correct */
4882 ret
= qcow2_mark_clean(bs
);
4887 ret
= bdrv_truncate(bs
->file
, (3 + l1_clusters
) * s
->cluster_size
, false,
4888 PREALLOC_MODE_OFF
, 0, &local_err
);
4890 error_report_err(local_err
);
4896 fail_broken_refcounts
:
4897 /* The BDS is unusable at this point. If we wanted to make it usable, we
4898 * would have to call qcow2_refcount_close(), qcow2_refcount_init(),
4899 * qcow2_check_refcounts(), qcow2_refcount_close() and qcow2_refcount_init()
4900 * again. However, because the functions which could have caused this error
4901 * path to be taken are used by those functions as well, it's very likely
4902 * that that sequence will fail as well. Therefore, just eject the BDS. */
4906 g_free(new_reftable
);
4910 static int qcow2_make_empty(BlockDriverState
*bs
)
4912 BDRVQcow2State
*s
= bs
->opaque
;
4913 uint64_t offset
, end_offset
;
4914 int step
= QEMU_ALIGN_DOWN(INT_MAX
, s
->cluster_size
);
4915 int l1_clusters
, ret
= 0;
4917 l1_clusters
= DIV_ROUND_UP(s
->l1_size
, s
->cluster_size
/ L1E_SIZE
);
4919 if (s
->qcow_version
>= 3 && !s
->snapshots
&& !s
->nb_bitmaps
&&
4920 3 + l1_clusters
<= s
->refcount_block_size
&&
4921 s
->crypt_method_header
!= QCOW_CRYPT_LUKS
&&
4922 !has_data_file(bs
)) {
4923 /* The following function only works for qcow2 v3 images (it
4924 * requires the dirty flag) and only as long as there are no
4925 * features that reserve extra clusters (such as snapshots,
4926 * LUKS header, or persistent bitmaps), because it completely
4927 * empties the image. Furthermore, the L1 table and three
4928 * additional clusters (image header, refcount table, one
4929 * refcount block) have to fit inside one refcount block. It
4930 * only resets the image file, i.e. does not work with an
4931 * external data file. */
4932 return make_completely_empty(bs
);
4935 /* This fallback code simply discards every active cluster; this is slow,
4936 * but works in all cases */
4937 end_offset
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
4938 for (offset
= 0; offset
< end_offset
; offset
+= step
) {
4939 /* As this function is generally used after committing an external
4940 * snapshot, QCOW2_DISCARD_SNAPSHOT seems appropriate. Also, the
4941 * default action for this kind of discard is to pass the discard,
4942 * which will ideally result in an actually smaller image file, as
4943 * is probably desired. */
4944 ret
= qcow2_cluster_discard(bs
, offset
, MIN(step
, end_offset
- offset
),
4945 QCOW2_DISCARD_SNAPSHOT
, true);
4954 static coroutine_fn
int qcow2_co_flush_to_os(BlockDriverState
*bs
)
4956 BDRVQcow2State
*s
= bs
->opaque
;
4959 qemu_co_mutex_lock(&s
->lock
);
4960 ret
= qcow2_write_caches(bs
);
4961 qemu_co_mutex_unlock(&s
->lock
);
4966 static BlockMeasureInfo
*qcow2_measure(QemuOpts
*opts
, BlockDriverState
*in_bs
,
4969 Error
*local_err
= NULL
;
4970 BlockMeasureInfo
*info
;
4971 uint64_t required
= 0; /* bytes that contribute to required size */
4972 uint64_t virtual_size
; /* disk size as seen by guest */
4973 uint64_t refcount_bits
;
4975 uint64_t luks_payload_size
= 0;
4976 size_t cluster_size
;
4979 PreallocMode prealloc
;
4980 bool has_backing_file
;
4985 /* Parse image creation options */
4986 extended_l2
= qemu_opt_get_bool_del(opts
, BLOCK_OPT_EXTL2
, false);
4988 cluster_size
= qcow2_opt_get_cluster_size_del(opts
, extended_l2
,
4994 version
= qcow2_opt_get_version_del(opts
, &local_err
);
4999 refcount_bits
= qcow2_opt_get_refcount_bits_del(opts
, version
, &local_err
);
5004 optstr
= qemu_opt_get_del(opts
, BLOCK_OPT_PREALLOC
);
5005 prealloc
= qapi_enum_parse(&PreallocMode_lookup
, optstr
,
5006 PREALLOC_MODE_OFF
, &local_err
);
5012 optstr
= qemu_opt_get_del(opts
, BLOCK_OPT_BACKING_FILE
);
5013 has_backing_file
= !!optstr
;
5016 optstr
= qemu_opt_get_del(opts
, BLOCK_OPT_ENCRYPT_FORMAT
);
5017 has_luks
= optstr
&& strcmp(optstr
, "luks") == 0;
5021 g_autoptr(QCryptoBlockCreateOptions
) create_opts
= NULL
;
5022 QDict
*cryptoopts
= qcow2_extract_crypto_opts(opts
, "luks", errp
);
5025 create_opts
= block_crypto_create_opts_init(cryptoopts
, errp
);
5026 qobject_unref(cryptoopts
);
5031 if (!qcrypto_block_calculate_payload_offset(create_opts
,
5038 luks_payload_size
= ROUND_UP(headerlen
, cluster_size
);
5041 virtual_size
= qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0);
5042 virtual_size
= ROUND_UP(virtual_size
, cluster_size
);
5044 /* Check that virtual disk size is valid */
5045 l2e_size
= extended_l2
? L2E_SIZE_EXTENDED
: L2E_SIZE_NORMAL
;
5046 l2_tables
= DIV_ROUND_UP(virtual_size
/ cluster_size
,
5047 cluster_size
/ l2e_size
);
5048 if (l2_tables
* L1E_SIZE
> QCOW_MAX_L1_SIZE
) {
5049 error_setg(&local_err
, "The image size is too large "
5050 "(try using a larger cluster size)");
5054 /* Account for input image */
5056 int64_t ssize
= bdrv_getlength(in_bs
);
5058 error_setg_errno(&local_err
, -ssize
,
5059 "Unable to get image virtual_size");
5063 virtual_size
= ROUND_UP(ssize
, cluster_size
);
5065 if (has_backing_file
) {
5066 /* We don't how much of the backing chain is shared by the input
5067 * image and the new image file. In the worst case the new image's
5068 * backing file has nothing in common with the input image. Be
5069 * conservative and assume all clusters need to be written.
5071 required
= virtual_size
;
5076 for (offset
= 0; offset
< ssize
; offset
+= pnum
) {
5079 ret
= bdrv_block_status_above(in_bs
, NULL
, offset
,
5080 ssize
- offset
, &pnum
, NULL
,
5083 error_setg_errno(&local_err
, -ret
,
5084 "Unable to get block status");
5088 if (ret
& BDRV_BLOCK_ZERO
) {
5089 /* Skip zero regions (safe with no backing file) */
5090 } else if ((ret
& (BDRV_BLOCK_DATA
| BDRV_BLOCK_ALLOCATED
)) ==
5091 (BDRV_BLOCK_DATA
| BDRV_BLOCK_ALLOCATED
)) {
5092 /* Extend pnum to end of cluster for next iteration */
5093 pnum
= ROUND_UP(offset
+ pnum
, cluster_size
) - offset
;
5095 /* Count clusters we've seen */
5096 required
+= offset
% cluster_size
+ pnum
;
5102 /* Take into account preallocation. Nothing special is needed for
5103 * PREALLOC_MODE_METADATA since metadata is always counted.
5105 if (prealloc
== PREALLOC_MODE_FULL
|| prealloc
== PREALLOC_MODE_FALLOC
) {
5106 required
= virtual_size
;
5109 info
= g_new0(BlockMeasureInfo
, 1);
5110 info
->fully_allocated
= luks_payload_size
+
5111 qcow2_calc_prealloc_size(virtual_size
, cluster_size
,
5112 ctz32(refcount_bits
), extended_l2
);
5115 * Remove data clusters that are not required. This overestimates the
5116 * required size because metadata needed for the fully allocated file is
5117 * still counted. Show bitmaps only if both source and destination
5118 * would support them.
5120 info
->required
= info
->fully_allocated
- virtual_size
+ required
;
5121 info
->has_bitmaps
= version
>= 3 && in_bs
&&
5122 bdrv_supports_persistent_dirty_bitmap(in_bs
);
5123 if (info
->has_bitmaps
) {
5124 info
->bitmaps
= qcow2_get_persistent_dirty_bitmap_size(in_bs
,
5130 error_propagate(errp
, local_err
);
5134 static int qcow2_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
5136 BDRVQcow2State
*s
= bs
->opaque
;
5137 bdi
->cluster_size
= s
->cluster_size
;
5138 bdi
->vm_state_offset
= qcow2_vm_state_offset(s
);
5139 bdi
->is_dirty
= s
->incompatible_features
& QCOW2_INCOMPAT_DIRTY
;
5143 static ImageInfoSpecific
*qcow2_get_specific_info(BlockDriverState
*bs
,
5146 BDRVQcow2State
*s
= bs
->opaque
;
5147 ImageInfoSpecific
*spec_info
;
5148 QCryptoBlockInfo
*encrypt_info
= NULL
;
5150 if (s
->crypto
!= NULL
) {
5151 encrypt_info
= qcrypto_block_get_info(s
->crypto
, errp
);
5152 if (!encrypt_info
) {
5157 spec_info
= g_new(ImageInfoSpecific
, 1);
5158 *spec_info
= (ImageInfoSpecific
){
5159 .type
= IMAGE_INFO_SPECIFIC_KIND_QCOW2
,
5160 .u
.qcow2
.data
= g_new0(ImageInfoSpecificQCow2
, 1),
5162 if (s
->qcow_version
== 2) {
5163 *spec_info
->u
.qcow2
.data
= (ImageInfoSpecificQCow2
){
5164 .compat
= g_strdup("0.10"),
5165 .refcount_bits
= s
->refcount_bits
,
5167 } else if (s
->qcow_version
== 3) {
5168 Qcow2BitmapInfoList
*bitmaps
;
5169 if (!qcow2_get_bitmap_info_list(bs
, &bitmaps
, errp
)) {
5170 qapi_free_ImageInfoSpecific(spec_info
);
5171 qapi_free_QCryptoBlockInfo(encrypt_info
);
5174 *spec_info
->u
.qcow2
.data
= (ImageInfoSpecificQCow2
){
5175 .compat
= g_strdup("1.1"),
5176 .lazy_refcounts
= s
->compatible_features
&
5177 QCOW2_COMPAT_LAZY_REFCOUNTS
,
5178 .has_lazy_refcounts
= true,
5179 .corrupt
= s
->incompatible_features
&
5180 QCOW2_INCOMPAT_CORRUPT
,
5181 .has_corrupt
= true,
5182 .has_extended_l2
= true,
5183 .extended_l2
= has_subclusters(s
),
5184 .refcount_bits
= s
->refcount_bits
,
5185 .has_bitmaps
= !!bitmaps
,
5187 .has_data_file
= !!s
->image_data_file
,
5188 .data_file
= g_strdup(s
->image_data_file
),
5189 .has_data_file_raw
= has_data_file(bs
),
5190 .data_file_raw
= data_file_is_raw(bs
),
5191 .compression_type
= s
->compression_type
,
5194 /* if this assertion fails, this probably means a new version was
5195 * added without having it covered here */
5200 ImageInfoSpecificQCow2Encryption
*qencrypt
=
5201 g_new(ImageInfoSpecificQCow2Encryption
, 1);
5202 switch (encrypt_info
->format
) {
5203 case Q_CRYPTO_BLOCK_FORMAT_QCOW
:
5204 qencrypt
->format
= BLOCKDEV_QCOW2_ENCRYPTION_FORMAT_AES
;
5206 case Q_CRYPTO_BLOCK_FORMAT_LUKS
:
5207 qencrypt
->format
= BLOCKDEV_QCOW2_ENCRYPTION_FORMAT_LUKS
;
5208 qencrypt
->u
.luks
= encrypt_info
->u
.luks
;
5213 /* Since we did shallow copy above, erase any pointers
5214 * in the original info */
5215 memset(&encrypt_info
->u
, 0, sizeof(encrypt_info
->u
));
5216 qapi_free_QCryptoBlockInfo(encrypt_info
);
5218 spec_info
->u
.qcow2
.data
->has_encrypt
= true;
5219 spec_info
->u
.qcow2
.data
->encrypt
= qencrypt
;
5225 static int qcow2_has_zero_init(BlockDriverState
*bs
)
5227 BDRVQcow2State
*s
= bs
->opaque
;
5230 if (qemu_in_coroutine()) {
5231 qemu_co_mutex_lock(&s
->lock
);
5234 * Check preallocation status: Preallocated images have all L2
5235 * tables allocated, nonpreallocated images have none. It is
5236 * therefore enough to check the first one.
5238 preallocated
= s
->l1_size
> 0 && s
->l1_table
[0] != 0;
5239 if (qemu_in_coroutine()) {
5240 qemu_co_mutex_unlock(&s
->lock
);
5243 if (!preallocated
) {
5245 } else if (bs
->encrypted
) {
5248 return bdrv_has_zero_init(s
->data_file
->bs
);
5253 * Check the request to vmstate. On success return
5254 * qcow2_vm_state_offset(bs) + @pos
5256 static int64_t qcow2_check_vmstate_request(BlockDriverState
*bs
,
5257 QEMUIOVector
*qiov
, int64_t pos
)
5259 BDRVQcow2State
*s
= bs
->opaque
;
5260 int64_t vmstate_offset
= qcow2_vm_state_offset(s
);
5263 /* Incoming requests must be OK */
5264 bdrv_check_qiov_request(pos
, qiov
->size
, qiov
, 0, &error_abort
);
5266 if (INT64_MAX
- pos
< vmstate_offset
) {
5270 pos
+= vmstate_offset
;
5271 ret
= bdrv_check_qiov_request(pos
, qiov
->size
, qiov
, 0, NULL
);
5279 static int qcow2_save_vmstate(BlockDriverState
*bs
, QEMUIOVector
*qiov
,
5282 int64_t offset
= qcow2_check_vmstate_request(bs
, qiov
, pos
);
5287 BLKDBG_EVENT(bs
->file
, BLKDBG_VMSTATE_SAVE
);
5288 return bs
->drv
->bdrv_co_pwritev_part(bs
, offset
, qiov
->size
, qiov
, 0, 0);
5291 static int qcow2_load_vmstate(BlockDriverState
*bs
, QEMUIOVector
*qiov
,
5294 int64_t offset
= qcow2_check_vmstate_request(bs
, qiov
, pos
);
5299 BLKDBG_EVENT(bs
->file
, BLKDBG_VMSTATE_LOAD
);
5300 return bs
->drv
->bdrv_co_preadv_part(bs
, offset
, qiov
->size
, qiov
, 0, 0);
5303 static int qcow2_has_compressed_clusters(BlockDriverState
*bs
)
5306 int64_t bytes
= bdrv_getlength(bs
);
5312 while (bytes
!= 0) {
5314 QCow2SubclusterType type
;
5315 unsigned int cur_bytes
= MIN(INT_MAX
, bytes
);
5316 uint64_t host_offset
;
5318 ret
= qcow2_get_host_offset(bs
, offset
, &cur_bytes
, &host_offset
,
5324 if (type
== QCOW2_SUBCLUSTER_COMPRESSED
) {
5328 offset
+= cur_bytes
;
5336 * Downgrades an image's version. To achieve this, any incompatible features
5337 * have to be removed.
5339 static int qcow2_downgrade(BlockDriverState
*bs
, int target_version
,
5340 BlockDriverAmendStatusCB
*status_cb
, void *cb_opaque
,
5343 BDRVQcow2State
*s
= bs
->opaque
;
5344 int current_version
= s
->qcow_version
;
5348 /* This is qcow2_downgrade(), not qcow2_upgrade() */
5349 assert(target_version
< current_version
);
5351 /* There are no other versions (now) that you can downgrade to */
5352 assert(target_version
== 2);
5354 if (s
->refcount_order
!= 4) {
5355 error_setg(errp
, "compat=0.10 requires refcount_bits=16");
5359 if (has_data_file(bs
)) {
5360 error_setg(errp
, "Cannot downgrade an image with a data file");
5365 * If any internal snapshot has a different size than the current
5366 * image size, or VM state size that exceeds 32 bits, downgrading
5367 * is unsafe. Even though we would still use v3-compliant output
5368 * to preserve that data, other v2 programs might not realize
5369 * those optional fields are important.
5371 for (i
= 0; i
< s
->nb_snapshots
; i
++) {
5372 if (s
->snapshots
[i
].vm_state_size
> UINT32_MAX
||
5373 s
->snapshots
[i
].disk_size
!= bs
->total_sectors
* BDRV_SECTOR_SIZE
) {
5374 error_setg(errp
, "Internal snapshots prevent downgrade of image");
5379 /* clear incompatible features */
5380 if (s
->incompatible_features
& QCOW2_INCOMPAT_DIRTY
) {
5381 ret
= qcow2_mark_clean(bs
);
5383 error_setg_errno(errp
, -ret
, "Failed to make the image clean");
5388 /* with QCOW2_INCOMPAT_CORRUPT, it is pretty much impossible to get here in
5389 * the first place; if that happens nonetheless, returning -ENOTSUP is the
5390 * best thing to do anyway */
5392 if (s
->incompatible_features
& ~QCOW2_INCOMPAT_COMPRESSION
) {
5393 error_setg(errp
, "Cannot downgrade an image with incompatible features "
5394 "0x%" PRIx64
" set",
5395 s
->incompatible_features
& ~QCOW2_INCOMPAT_COMPRESSION
);
5399 /* since we can ignore compatible features, we can set them to 0 as well */
5400 s
->compatible_features
= 0;
5401 /* if lazy refcounts have been used, they have already been fixed through
5402 * clearing the dirty flag */
5404 /* clearing autoclear features is trivial */
5405 s
->autoclear_features
= 0;
5407 ret
= qcow2_expand_zero_clusters(bs
, status_cb
, cb_opaque
);
5409 error_setg_errno(errp
, -ret
, "Failed to turn zero into data clusters");
5413 if (s
->incompatible_features
& QCOW2_INCOMPAT_COMPRESSION
) {
5414 ret
= qcow2_has_compressed_clusters(bs
);
5416 error_setg(errp
, "Failed to check block status");
5420 error_setg(errp
, "Cannot downgrade an image with zstd compression "
5421 "type and existing compressed clusters");
5425 * No compressed clusters for now, so just chose default zlib
5428 s
->incompatible_features
&= ~QCOW2_INCOMPAT_COMPRESSION
;
5429 s
->compression_type
= QCOW2_COMPRESSION_TYPE_ZLIB
;
5432 assert(s
->incompatible_features
== 0);
5434 s
->qcow_version
= target_version
;
5435 ret
= qcow2_update_header(bs
);
5437 s
->qcow_version
= current_version
;
5438 error_setg_errno(errp
, -ret
, "Failed to update the image header");
5445 * Upgrades an image's version. While newer versions encompass all
5446 * features of older versions, some things may have to be presented
5449 static int qcow2_upgrade(BlockDriverState
*bs
, int target_version
,
5450 BlockDriverAmendStatusCB
*status_cb
, void *cb_opaque
,
5453 BDRVQcow2State
*s
= bs
->opaque
;
5454 bool need_snapshot_update
;
5455 int current_version
= s
->qcow_version
;
5459 /* This is qcow2_upgrade(), not qcow2_downgrade() */
5460 assert(target_version
> current_version
);
5462 /* There are no other versions (yet) that you can upgrade to */
5463 assert(target_version
== 3);
5465 status_cb(bs
, 0, 2, cb_opaque
);
5468 * In v2, snapshots do not need to have extra data. v3 requires
5469 * the 64-bit VM state size and the virtual disk size to be
5471 * qcow2_write_snapshots() will always write the list in the
5472 * v3-compliant format.
5474 need_snapshot_update
= false;
5475 for (i
= 0; i
< s
->nb_snapshots
; i
++) {
5476 if (s
->snapshots
[i
].extra_data_size
<
5477 sizeof_field(QCowSnapshotExtraData
, vm_state_size_large
) +
5478 sizeof_field(QCowSnapshotExtraData
, disk_size
))
5480 need_snapshot_update
= true;
5484 if (need_snapshot_update
) {
5485 ret
= qcow2_write_snapshots(bs
);
5487 error_setg_errno(errp
, -ret
, "Failed to update the snapshot table");
5491 status_cb(bs
, 1, 2, cb_opaque
);
5493 s
->qcow_version
= target_version
;
5494 ret
= qcow2_update_header(bs
);
5496 s
->qcow_version
= current_version
;
5497 error_setg_errno(errp
, -ret
, "Failed to update the image header");
5500 status_cb(bs
, 2, 2, cb_opaque
);
5505 typedef enum Qcow2AmendOperation
{
5506 /* This is the value Qcow2AmendHelperCBInfo::last_operation will be
5507 * statically initialized to so that the helper CB can discern the first
5508 * invocation from an operation change */
5509 QCOW2_NO_OPERATION
= 0,
5512 QCOW2_UPDATING_ENCRYPTION
,
5513 QCOW2_CHANGING_REFCOUNT_ORDER
,
5515 } Qcow2AmendOperation
;
5517 typedef struct Qcow2AmendHelperCBInfo
{
5518 /* The code coordinating the amend operations should only modify
5519 * these four fields; the rest will be managed by the CB */
5520 BlockDriverAmendStatusCB
*original_status_cb
;
5521 void *original_cb_opaque
;
5523 Qcow2AmendOperation current_operation
;
5525 /* Total number of operations to perform (only set once) */
5526 int total_operations
;
5528 /* The following fields are managed by the CB */
5530 /* Number of operations completed */
5531 int operations_completed
;
5533 /* Cumulative offset of all completed operations */
5534 int64_t offset_completed
;
5536 Qcow2AmendOperation last_operation
;
5537 int64_t last_work_size
;
5538 } Qcow2AmendHelperCBInfo
;
5540 static void qcow2_amend_helper_cb(BlockDriverState
*bs
,
5541 int64_t operation_offset
,
5542 int64_t operation_work_size
, void *opaque
)
5544 Qcow2AmendHelperCBInfo
*info
= opaque
;
5545 int64_t current_work_size
;
5546 int64_t projected_work_size
;
5548 if (info
->current_operation
!= info
->last_operation
) {
5549 if (info
->last_operation
!= QCOW2_NO_OPERATION
) {
5550 info
->offset_completed
+= info
->last_work_size
;
5551 info
->operations_completed
++;
5554 info
->last_operation
= info
->current_operation
;
5557 assert(info
->total_operations
> 0);
5558 assert(info
->operations_completed
< info
->total_operations
);
5560 info
->last_work_size
= operation_work_size
;
5562 current_work_size
= info
->offset_completed
+ operation_work_size
;
5564 /* current_work_size is the total work size for (operations_completed + 1)
5565 * operations (which includes this one), so multiply it by the number of
5566 * operations not covered and divide it by the number of operations
5567 * covered to get a projection for the operations not covered */
5568 projected_work_size
= current_work_size
* (info
->total_operations
-
5569 info
->operations_completed
- 1)
5570 / (info
->operations_completed
+ 1);
5572 info
->original_status_cb(bs
, info
->offset_completed
+ operation_offset
,
5573 current_work_size
+ projected_work_size
,
5574 info
->original_cb_opaque
);
5577 static int qcow2_amend_options(BlockDriverState
*bs
, QemuOpts
*opts
,
5578 BlockDriverAmendStatusCB
*status_cb
,
5583 BDRVQcow2State
*s
= bs
->opaque
;
5584 int old_version
= s
->qcow_version
, new_version
= old_version
;
5585 uint64_t new_size
= 0;
5586 const char *backing_file
= NULL
, *backing_format
= NULL
, *data_file
= NULL
;
5587 bool lazy_refcounts
= s
->use_lazy_refcounts
;
5588 bool data_file_raw
= data_file_is_raw(bs
);
5589 const char *compat
= NULL
;
5590 int refcount_bits
= s
->refcount_bits
;
5592 QemuOptDesc
*desc
= opts
->list
->desc
;
5593 Qcow2AmendHelperCBInfo helper_cb_info
;
5594 bool encryption_update
= false;
5596 while (desc
&& desc
->name
) {
5597 if (!qemu_opt_find(opts
, desc
->name
)) {
5598 /* only change explicitly defined options */
5603 if (!strcmp(desc
->name
, BLOCK_OPT_COMPAT_LEVEL
)) {
5604 compat
= qemu_opt_get(opts
, BLOCK_OPT_COMPAT_LEVEL
);
5606 /* preserve default */
5607 } else if (!strcmp(compat
, "0.10") || !strcmp(compat
, "v2")) {
5609 } else if (!strcmp(compat
, "1.1") || !strcmp(compat
, "v3")) {
5612 error_setg(errp
, "Unknown compatibility level %s", compat
);
5615 } else if (!strcmp(desc
->name
, BLOCK_OPT_SIZE
)) {
5616 new_size
= qemu_opt_get_size(opts
, BLOCK_OPT_SIZE
, 0);
5617 } else if (!strcmp(desc
->name
, BLOCK_OPT_BACKING_FILE
)) {
5618 backing_file
= qemu_opt_get(opts
, BLOCK_OPT_BACKING_FILE
);
5619 } else if (!strcmp(desc
->name
, BLOCK_OPT_BACKING_FMT
)) {
5620 backing_format
= qemu_opt_get(opts
, BLOCK_OPT_BACKING_FMT
);
5621 } else if (g_str_has_prefix(desc
->name
, "encrypt.")) {
5624 "Can't amend encryption options - encryption not present");
5627 if (s
->crypt_method_header
!= QCOW_CRYPT_LUKS
) {
5629 "Only LUKS encryption options can be amended");
5632 encryption_update
= true;
5633 } else if (!strcmp(desc
->name
, BLOCK_OPT_LAZY_REFCOUNTS
)) {
5634 lazy_refcounts
= qemu_opt_get_bool(opts
, BLOCK_OPT_LAZY_REFCOUNTS
,
5636 } else if (!strcmp(desc
->name
, BLOCK_OPT_REFCOUNT_BITS
)) {
5637 refcount_bits
= qemu_opt_get_number(opts
, BLOCK_OPT_REFCOUNT_BITS
,
5640 if (refcount_bits
<= 0 || refcount_bits
> 64 ||
5641 !is_power_of_2(refcount_bits
))
5643 error_setg(errp
, "Refcount width must be a power of two and "
5644 "may not exceed 64 bits");
5647 } else if (!strcmp(desc
->name
, BLOCK_OPT_DATA_FILE
)) {
5648 data_file
= qemu_opt_get(opts
, BLOCK_OPT_DATA_FILE
);
5649 if (data_file
&& !has_data_file(bs
)) {
5650 error_setg(errp
, "data-file can only be set for images that "
5651 "use an external data file");
5654 } else if (!strcmp(desc
->name
, BLOCK_OPT_DATA_FILE_RAW
)) {
5655 data_file_raw
= qemu_opt_get_bool(opts
, BLOCK_OPT_DATA_FILE_RAW
,
5657 if (data_file_raw
&& !data_file_is_raw(bs
)) {
5658 error_setg(errp
, "data-file-raw cannot be set on existing "
5663 /* if this point is reached, this probably means a new option was
5664 * added without having it covered here */
5671 helper_cb_info
= (Qcow2AmendHelperCBInfo
){
5672 .original_status_cb
= status_cb
,
5673 .original_cb_opaque
= cb_opaque
,
5674 .total_operations
= (new_version
!= old_version
)
5675 + (s
->refcount_bits
!= refcount_bits
) +
5676 (encryption_update
== true)
5679 /* Upgrade first (some features may require compat=1.1) */
5680 if (new_version
> old_version
) {
5681 helper_cb_info
.current_operation
= QCOW2_UPGRADING
;
5682 ret
= qcow2_upgrade(bs
, new_version
, &qcow2_amend_helper_cb
,
5683 &helper_cb_info
, errp
);
5689 if (encryption_update
) {
5690 QDict
*amend_opts_dict
;
5691 QCryptoBlockAmendOptions
*amend_opts
;
5693 helper_cb_info
.current_operation
= QCOW2_UPDATING_ENCRYPTION
;
5694 amend_opts_dict
= qcow2_extract_crypto_opts(opts
, "luks", errp
);
5695 if (!amend_opts_dict
) {
5698 amend_opts
= block_crypto_amend_opts_init(amend_opts_dict
, errp
);
5699 qobject_unref(amend_opts_dict
);
5703 ret
= qcrypto_block_amend_options(s
->crypto
,
5704 qcow2_crypto_hdr_read_func
,
5705 qcow2_crypto_hdr_write_func
,
5710 qapi_free_QCryptoBlockAmendOptions(amend_opts
);
5716 if (s
->refcount_bits
!= refcount_bits
) {
5717 int refcount_order
= ctz32(refcount_bits
);
5719 if (new_version
< 3 && refcount_bits
!= 16) {
5720 error_setg(errp
, "Refcount widths other than 16 bits require "
5721 "compatibility level 1.1 or above (use compat=1.1 or "
5726 helper_cb_info
.current_operation
= QCOW2_CHANGING_REFCOUNT_ORDER
;
5727 ret
= qcow2_change_refcount_order(bs
, refcount_order
,
5728 &qcow2_amend_helper_cb
,
5729 &helper_cb_info
, errp
);
5735 /* data-file-raw blocks backing files, so clear it first if requested */
5736 if (data_file_raw
) {
5737 s
->autoclear_features
|= QCOW2_AUTOCLEAR_DATA_FILE_RAW
;
5739 s
->autoclear_features
&= ~QCOW2_AUTOCLEAR_DATA_FILE_RAW
;
5743 g_free(s
->image_data_file
);
5744 s
->image_data_file
= *data_file
? g_strdup(data_file
) : NULL
;
5747 ret
= qcow2_update_header(bs
);
5749 error_setg_errno(errp
, -ret
, "Failed to update the image header");
5753 if (backing_file
|| backing_format
) {
5754 if (g_strcmp0(backing_file
, s
->image_backing_file
) ||
5755 g_strcmp0(backing_format
, s
->image_backing_format
)) {
5756 error_setg(errp
, "Cannot amend the backing file");
5757 error_append_hint(errp
,
5758 "You can use 'qemu-img rebase' instead.\n");
5763 if (s
->use_lazy_refcounts
!= lazy_refcounts
) {
5764 if (lazy_refcounts
) {
5765 if (new_version
< 3) {
5766 error_setg(errp
, "Lazy refcounts only supported with "
5767 "compatibility level 1.1 and above (use compat=1.1 "
5771 s
->compatible_features
|= QCOW2_COMPAT_LAZY_REFCOUNTS
;
5772 ret
= qcow2_update_header(bs
);
5774 s
->compatible_features
&= ~QCOW2_COMPAT_LAZY_REFCOUNTS
;
5775 error_setg_errno(errp
, -ret
, "Failed to update the image header");
5778 s
->use_lazy_refcounts
= true;
5780 /* make image clean first */
5781 ret
= qcow2_mark_clean(bs
);
5783 error_setg_errno(errp
, -ret
, "Failed to make the image clean");
5786 /* now disallow lazy refcounts */
5787 s
->compatible_features
&= ~QCOW2_COMPAT_LAZY_REFCOUNTS
;
5788 ret
= qcow2_update_header(bs
);
5790 s
->compatible_features
|= QCOW2_COMPAT_LAZY_REFCOUNTS
;
5791 error_setg_errno(errp
, -ret
, "Failed to update the image header");
5794 s
->use_lazy_refcounts
= false;
5799 BlockBackend
*blk
= blk_new_with_bs(bs
, BLK_PERM_RESIZE
, BLK_PERM_ALL
,
5806 * Amending image options should ensure that the image has
5807 * exactly the given new values, so pass exact=true here.
5809 ret
= blk_truncate(blk
, new_size
, true, PREALLOC_MODE_OFF
, 0, errp
);
5816 /* Downgrade last (so unsupported features can be removed before) */
5817 if (new_version
< old_version
) {
5818 helper_cb_info
.current_operation
= QCOW2_DOWNGRADING
;
5819 ret
= qcow2_downgrade(bs
, new_version
, &qcow2_amend_helper_cb
,
5820 &helper_cb_info
, errp
);
5829 static int coroutine_fn
qcow2_co_amend(BlockDriverState
*bs
,
5830 BlockdevAmendOptions
*opts
,
5834 BlockdevAmendOptionsQcow2
*qopts
= &opts
->u
.qcow2
;
5835 BDRVQcow2State
*s
= bs
->opaque
;
5838 if (qopts
->has_encrypt
) {
5840 error_setg(errp
, "image is not encrypted, can't amend");
5844 if (qopts
->encrypt
->format
!= Q_CRYPTO_BLOCK_FORMAT_LUKS
) {
5846 "Amend can't be used to change the qcow2 encryption format");
5850 if (s
->crypt_method_header
!= QCOW_CRYPT_LUKS
) {
5852 "Only LUKS encryption options can be amended for qcow2 with blockdev-amend");
5856 ret
= qcrypto_block_amend_options(s
->crypto
,
5857 qcow2_crypto_hdr_read_func
,
5858 qcow2_crypto_hdr_write_func
,
5868 * If offset or size are negative, respectively, they will not be included in
5869 * the BLOCK_IMAGE_CORRUPTED event emitted.
5870 * fatal will be ignored for read-only BDS; corruptions found there will always
5871 * be considered non-fatal.
5873 void qcow2_signal_corruption(BlockDriverState
*bs
, bool fatal
, int64_t offset
,
5874 int64_t size
, const char *message_format
, ...)
5876 BDRVQcow2State
*s
= bs
->opaque
;
5877 const char *node_name
;
5881 fatal
= fatal
&& bdrv_is_writable(bs
);
5883 if (s
->signaled_corruption
&&
5884 (!fatal
|| (s
->incompatible_features
& QCOW2_INCOMPAT_CORRUPT
)))
5889 va_start(ap
, message_format
);
5890 message
= g_strdup_vprintf(message_format
, ap
);
5894 fprintf(stderr
, "qcow2: Marking image as corrupt: %s; further "
5895 "corruption events will be suppressed\n", message
);
5897 fprintf(stderr
, "qcow2: Image is corrupt: %s; further non-fatal "
5898 "corruption events will be suppressed\n", message
);
5901 node_name
= bdrv_get_node_name(bs
);
5902 qapi_event_send_block_image_corrupted(bdrv_get_device_name(bs
),
5903 *node_name
!= '\0', node_name
,
5904 message
, offset
>= 0, offset
,
5910 qcow2_mark_corrupt(bs
);
5911 bs
->drv
= NULL
; /* make BDS unusable */
5914 s
->signaled_corruption
= true;
5917 #define QCOW_COMMON_OPTIONS \
5919 .name = BLOCK_OPT_SIZE, \
5920 .type = QEMU_OPT_SIZE, \
5921 .help = "Virtual disk size" \
5924 .name = BLOCK_OPT_COMPAT_LEVEL, \
5925 .type = QEMU_OPT_STRING, \
5926 .help = "Compatibility level (v2 [0.10] or v3 [1.1])" \
5929 .name = BLOCK_OPT_BACKING_FILE, \
5930 .type = QEMU_OPT_STRING, \
5931 .help = "File name of a base image" \
5934 .name = BLOCK_OPT_BACKING_FMT, \
5935 .type = QEMU_OPT_STRING, \
5936 .help = "Image format of the base image" \
5939 .name = BLOCK_OPT_DATA_FILE, \
5940 .type = QEMU_OPT_STRING, \
5941 .help = "File name of an external data file" \
5944 .name = BLOCK_OPT_DATA_FILE_RAW, \
5945 .type = QEMU_OPT_BOOL, \
5946 .help = "The external data file must stay valid " \
5950 .name = BLOCK_OPT_LAZY_REFCOUNTS, \
5951 .type = QEMU_OPT_BOOL, \
5952 .help = "Postpone refcount updates", \
5953 .def_value_str = "off" \
5956 .name = BLOCK_OPT_REFCOUNT_BITS, \
5957 .type = QEMU_OPT_NUMBER, \
5958 .help = "Width of a reference count entry in bits", \
5959 .def_value_str = "16" \
5962 static QemuOptsList qcow2_create_opts
= {
5963 .name
= "qcow2-create-opts",
5964 .head
= QTAILQ_HEAD_INITIALIZER(qcow2_create_opts
.head
),
5967 .name
= BLOCK_OPT_ENCRYPT
, \
5968 .type
= QEMU_OPT_BOOL
, \
5969 .help
= "Encrypt the image with format 'aes'. (Deprecated " \
5970 "in favor of " BLOCK_OPT_ENCRYPT_FORMAT
"=aes)", \
5973 .name
= BLOCK_OPT_ENCRYPT_FORMAT
, \
5974 .type
= QEMU_OPT_STRING
, \
5975 .help
= "Encrypt the image, format choices: 'aes', 'luks'", \
5977 BLOCK_CRYPTO_OPT_DEF_KEY_SECRET("encrypt.", \
5978 "ID of secret providing qcow AES key or LUKS passphrase"), \
5979 BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_ALG("encrypt."), \
5980 BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_MODE("encrypt."), \
5981 BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_ALG("encrypt."), \
5982 BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_HASH_ALG("encrypt."), \
5983 BLOCK_CRYPTO_OPT_DEF_LUKS_HASH_ALG("encrypt."), \
5984 BLOCK_CRYPTO_OPT_DEF_LUKS_ITER_TIME("encrypt."), \
5986 .name
= BLOCK_OPT_CLUSTER_SIZE
, \
5987 .type
= QEMU_OPT_SIZE
, \
5988 .help
= "qcow2 cluster size", \
5989 .def_value_str
= stringify(DEFAULT_CLUSTER_SIZE
) \
5992 .name
= BLOCK_OPT_EXTL2
, \
5993 .type
= QEMU_OPT_BOOL
, \
5994 .help
= "Extended L2 tables", \
5995 .def_value_str
= "off" \
5998 .name
= BLOCK_OPT_PREALLOC
, \
5999 .type
= QEMU_OPT_STRING
, \
6000 .help
= "Preallocation mode (allowed values: off, " \
6001 "metadata, falloc, full)" \
6004 .name
= BLOCK_OPT_COMPRESSION_TYPE
, \
6005 .type
= QEMU_OPT_STRING
, \
6006 .help
= "Compression method used for image cluster " \
6008 .def_value_str
= "zlib" \
6010 QCOW_COMMON_OPTIONS
,
6011 { /* end of list */ }
6015 static QemuOptsList qcow2_amend_opts
= {
6016 .name
= "qcow2-amend-opts",
6017 .head
= QTAILQ_HEAD_INITIALIZER(qcow2_amend_opts
.head
),
6019 BLOCK_CRYPTO_OPT_DEF_LUKS_STATE("encrypt."),
6020 BLOCK_CRYPTO_OPT_DEF_LUKS_KEYSLOT("encrypt."),
6021 BLOCK_CRYPTO_OPT_DEF_LUKS_OLD_SECRET("encrypt."),
6022 BLOCK_CRYPTO_OPT_DEF_LUKS_NEW_SECRET("encrypt."),
6023 BLOCK_CRYPTO_OPT_DEF_LUKS_ITER_TIME("encrypt."),
6024 QCOW_COMMON_OPTIONS
,
6025 { /* end of list */ }
6029 static const char *const qcow2_strong_runtime_opts
[] = {
6030 "encrypt." BLOCK_CRYPTO_OPT_QCOW_KEY_SECRET
,
6035 BlockDriver bdrv_qcow2
= {
6036 .format_name
= "qcow2",
6037 .instance_size
= sizeof(BDRVQcow2State
),
6038 .bdrv_probe
= qcow2_probe
,
6039 .bdrv_open
= qcow2_open
,
6040 .bdrv_close
= qcow2_close
,
6041 .bdrv_reopen_prepare
= qcow2_reopen_prepare
,
6042 .bdrv_reopen_commit
= qcow2_reopen_commit
,
6043 .bdrv_reopen_commit_post
= qcow2_reopen_commit_post
,
6044 .bdrv_reopen_abort
= qcow2_reopen_abort
,
6045 .bdrv_join_options
= qcow2_join_options
,
6046 .bdrv_child_perm
= bdrv_default_perms
,
6047 .bdrv_co_create_opts
= qcow2_co_create_opts
,
6048 .bdrv_co_create
= qcow2_co_create
,
6049 .bdrv_has_zero_init
= qcow2_has_zero_init
,
6050 .bdrv_co_block_status
= qcow2_co_block_status
,
6052 .bdrv_co_preadv_part
= qcow2_co_preadv_part
,
6053 .bdrv_co_pwritev_part
= qcow2_co_pwritev_part
,
6054 .bdrv_co_flush_to_os
= qcow2_co_flush_to_os
,
6056 .bdrv_co_pwrite_zeroes
= qcow2_co_pwrite_zeroes
,
6057 .bdrv_co_pdiscard
= qcow2_co_pdiscard
,
6058 .bdrv_co_copy_range_from
= qcow2_co_copy_range_from
,
6059 .bdrv_co_copy_range_to
= qcow2_co_copy_range_to
,
6060 .bdrv_co_truncate
= qcow2_co_truncate
,
6061 .bdrv_co_pwritev_compressed_part
= qcow2_co_pwritev_compressed_part
,
6062 .bdrv_make_empty
= qcow2_make_empty
,
6064 .bdrv_snapshot_create
= qcow2_snapshot_create
,
6065 .bdrv_snapshot_goto
= qcow2_snapshot_goto
,
6066 .bdrv_snapshot_delete
= qcow2_snapshot_delete
,
6067 .bdrv_snapshot_list
= qcow2_snapshot_list
,
6068 .bdrv_snapshot_load_tmp
= qcow2_snapshot_load_tmp
,
6069 .bdrv_measure
= qcow2_measure
,
6070 .bdrv_get_info
= qcow2_get_info
,
6071 .bdrv_get_specific_info
= qcow2_get_specific_info
,
6073 .bdrv_save_vmstate
= qcow2_save_vmstate
,
6074 .bdrv_load_vmstate
= qcow2_load_vmstate
,
6077 .supports_backing
= true,
6078 .bdrv_change_backing_file
= qcow2_change_backing_file
,
6080 .bdrv_refresh_limits
= qcow2_refresh_limits
,
6081 .bdrv_co_invalidate_cache
= qcow2_co_invalidate_cache
,
6082 .bdrv_inactivate
= qcow2_inactivate
,
6084 .create_opts
= &qcow2_create_opts
,
6085 .amend_opts
= &qcow2_amend_opts
,
6086 .strong_runtime_opts
= qcow2_strong_runtime_opts
,
6087 .mutable_opts
= mutable_opts
,
6088 .bdrv_co_check
= qcow2_co_check
,
6089 .bdrv_amend_options
= qcow2_amend_options
,
6090 .bdrv_co_amend
= qcow2_co_amend
,
6092 .bdrv_detach_aio_context
= qcow2_detach_aio_context
,
6093 .bdrv_attach_aio_context
= qcow2_attach_aio_context
,
6095 .bdrv_supports_persistent_dirty_bitmap
=
6096 qcow2_supports_persistent_dirty_bitmap
,
6097 .bdrv_co_can_store_new_dirty_bitmap
= qcow2_co_can_store_new_dirty_bitmap
,
6098 .bdrv_co_remove_persistent_dirty_bitmap
=
6099 qcow2_co_remove_persistent_dirty_bitmap
,
6102 static void bdrv_qcow2_init(void)
6104 bdrv_register(&bdrv_qcow2
);
6107 block_init(bdrv_qcow2_init
);