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 "qapi/qobject-input-visitor.h"
42 #include "qapi/qapi-visit-block-core.h"
44 #include "block/aio_task.h"
47 Differences with QCOW:
49 - Support for multiple incremental snapshots.
50 - Memory management by reference counts.
51 - Clusters which have a reference count of one have the bit
52 QCOW_OFLAG_COPIED to optimize write performance.
53 - Size of compressed clusters is stored in sectors to reduce bit usage
54 in the cluster offsets.
55 - Support for storing additional data (such as the VM state) in the
57 - If a backing store is used, the cluster size is not constrained
58 (could be backported to QCOW).
59 - L2 tables have always a size of one cluster.
66 } QEMU_PACKED QCowExtension
;
68 #define QCOW2_EXT_MAGIC_END 0
69 #define QCOW2_EXT_MAGIC_BACKING_FORMAT 0xe2792aca
70 #define QCOW2_EXT_MAGIC_FEATURE_TABLE 0x6803f857
71 #define QCOW2_EXT_MAGIC_CRYPTO_HEADER 0x0537be77
72 #define QCOW2_EXT_MAGIC_BITMAPS 0x23852875
73 #define QCOW2_EXT_MAGIC_DATA_FILE 0x44415441
75 static int coroutine_fn
76 qcow2_co_preadv_compressed(BlockDriverState
*bs
,
77 uint64_t cluster_descriptor
,
83 static int qcow2_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
85 const QCowHeader
*cow_header
= (const void *)buf
;
87 if (buf_size
>= sizeof(QCowHeader
) &&
88 be32_to_cpu(cow_header
->magic
) == QCOW_MAGIC
&&
89 be32_to_cpu(cow_header
->version
) >= 2)
96 static ssize_t
qcow2_crypto_hdr_read_func(QCryptoBlock
*block
, size_t offset
,
97 uint8_t *buf
, size_t buflen
,
98 void *opaque
, Error
**errp
)
100 BlockDriverState
*bs
= opaque
;
101 BDRVQcow2State
*s
= bs
->opaque
;
104 if ((offset
+ buflen
) > s
->crypto_header
.length
) {
105 error_setg(errp
, "Request for data outside of extension header");
109 ret
= bdrv_pread(bs
->file
,
110 s
->crypto_header
.offset
+ offset
, buf
, buflen
);
112 error_setg_errno(errp
, -ret
, "Could not read encryption header");
119 static ssize_t
qcow2_crypto_hdr_init_func(QCryptoBlock
*block
, size_t headerlen
,
120 void *opaque
, Error
**errp
)
122 BlockDriverState
*bs
= opaque
;
123 BDRVQcow2State
*s
= bs
->opaque
;
127 ret
= qcow2_alloc_clusters(bs
, headerlen
);
129 error_setg_errno(errp
, -ret
,
130 "Cannot allocate cluster for LUKS header size %zu",
135 s
->crypto_header
.length
= headerlen
;
136 s
->crypto_header
.offset
= ret
;
139 * Zero fill all space in cluster so it has predictable
140 * content, as we may not initialize some regions of the
141 * header (eg only 1 out of 8 key slots will be initialized)
143 clusterlen
= size_to_clusters(s
, headerlen
) * s
->cluster_size
;
144 assert(qcow2_pre_write_overlap_check(bs
, 0, ret
, clusterlen
, false) == 0);
145 ret
= bdrv_pwrite_zeroes(bs
->file
,
149 error_setg_errno(errp
, -ret
, "Could not zero fill encryption header");
157 static ssize_t
qcow2_crypto_hdr_write_func(QCryptoBlock
*block
, size_t offset
,
158 const uint8_t *buf
, size_t buflen
,
159 void *opaque
, Error
**errp
)
161 BlockDriverState
*bs
= opaque
;
162 BDRVQcow2State
*s
= bs
->opaque
;
165 if ((offset
+ buflen
) > s
->crypto_header
.length
) {
166 error_setg(errp
, "Request for data outside of extension header");
170 ret
= bdrv_pwrite(bs
->file
,
171 s
->crypto_header
.offset
+ offset
, buf
, buflen
);
173 error_setg_errno(errp
, -ret
, "Could not read encryption header");
180 qcow2_extract_crypto_opts(QemuOpts
*opts
, const char *fmt
, Error
**errp
)
182 QDict
*cryptoopts_qdict
;
185 /* Extract "encrypt." options into a qdict */
186 opts_qdict
= qemu_opts_to_qdict(opts
, NULL
);
187 qdict_extract_subqdict(opts_qdict
, &cryptoopts_qdict
, "encrypt.");
188 qobject_unref(opts_qdict
);
189 qdict_put_str(cryptoopts_qdict
, "format", fmt
);
190 return cryptoopts_qdict
;
194 * read qcow2 extension and fill bs
195 * start reading from start_offset
196 * finish reading upon magic of value 0 or when end_offset reached
197 * unknown magic is skipped (future extension this version knows nothing about)
198 * return 0 upon success, non-0 otherwise
200 static int qcow2_read_extensions(BlockDriverState
*bs
, uint64_t start_offset
,
201 uint64_t end_offset
, void **p_feature_table
,
202 int flags
, bool *need_update_header
,
205 BDRVQcow2State
*s
= bs
->opaque
;
209 Qcow2BitmapHeaderExt bitmaps_ext
;
211 if (need_update_header
!= NULL
) {
212 *need_update_header
= false;
216 printf("qcow2_read_extensions: start=%ld end=%ld\n", start_offset
, end_offset
);
218 offset
= start_offset
;
219 while (offset
< end_offset
) {
223 if (offset
> s
->cluster_size
)
224 printf("qcow2_read_extension: suspicious offset %lu\n", offset
);
226 printf("attempting to read extended header in offset %lu\n", offset
);
229 ret
= bdrv_pread(bs
->file
, offset
, &ext
, sizeof(ext
));
231 error_setg_errno(errp
, -ret
, "qcow2_read_extension: ERROR: "
232 "pread fail from offset %" PRIu64
, offset
);
235 ext
.magic
= be32_to_cpu(ext
.magic
);
236 ext
.len
= be32_to_cpu(ext
.len
);
237 offset
+= sizeof(ext
);
239 printf("ext.magic = 0x%x\n", ext
.magic
);
241 if (offset
> end_offset
|| ext
.len
> end_offset
- offset
) {
242 error_setg(errp
, "Header extension too large");
247 case QCOW2_EXT_MAGIC_END
:
250 case QCOW2_EXT_MAGIC_BACKING_FORMAT
:
251 if (ext
.len
>= sizeof(bs
->backing_format
)) {
252 error_setg(errp
, "ERROR: ext_backing_format: len=%" PRIu32
253 " too large (>=%zu)", ext
.len
,
254 sizeof(bs
->backing_format
));
257 ret
= bdrv_pread(bs
->file
, offset
, bs
->backing_format
, ext
.len
);
259 error_setg_errno(errp
, -ret
, "ERROR: ext_backing_format: "
260 "Could not read format name");
263 bs
->backing_format
[ext
.len
] = '\0';
264 s
->image_backing_format
= g_strdup(bs
->backing_format
);
266 printf("Qcow2: Got format extension %s\n", bs
->backing_format
);
270 case QCOW2_EXT_MAGIC_FEATURE_TABLE
:
271 if (p_feature_table
!= NULL
) {
272 void *feature_table
= g_malloc0(ext
.len
+ 2 * sizeof(Qcow2Feature
));
273 ret
= bdrv_pread(bs
->file
, offset
, feature_table
, ext
.len
);
275 error_setg_errno(errp
, -ret
, "ERROR: ext_feature_table: "
276 "Could not read table");
280 *p_feature_table
= feature_table
;
284 case QCOW2_EXT_MAGIC_CRYPTO_HEADER
: {
285 unsigned int cflags
= 0;
286 if (s
->crypt_method_header
!= QCOW_CRYPT_LUKS
) {
287 error_setg(errp
, "CRYPTO header extension only "
288 "expected with LUKS encryption method");
291 if (ext
.len
!= sizeof(Qcow2CryptoHeaderExtension
)) {
292 error_setg(errp
, "CRYPTO header extension size %u, "
293 "but expected size %zu", ext
.len
,
294 sizeof(Qcow2CryptoHeaderExtension
));
298 ret
= bdrv_pread(bs
->file
, offset
, &s
->crypto_header
, ext
.len
);
300 error_setg_errno(errp
, -ret
,
301 "Unable to read CRYPTO header extension");
304 s
->crypto_header
.offset
= be64_to_cpu(s
->crypto_header
.offset
);
305 s
->crypto_header
.length
= be64_to_cpu(s
->crypto_header
.length
);
307 if ((s
->crypto_header
.offset
% s
->cluster_size
) != 0) {
308 error_setg(errp
, "Encryption header offset '%" PRIu64
"' is "
309 "not a multiple of cluster size '%u'",
310 s
->crypto_header
.offset
, s
->cluster_size
);
314 if (flags
& BDRV_O_NO_IO
) {
315 cflags
|= QCRYPTO_BLOCK_OPEN_NO_IO
;
317 s
->crypto
= qcrypto_block_open(s
->crypto_opts
, "encrypt.",
318 qcow2_crypto_hdr_read_func
,
319 bs
, cflags
, QCOW2_MAX_THREADS
, errp
);
325 case QCOW2_EXT_MAGIC_BITMAPS
:
326 if (ext
.len
!= sizeof(bitmaps_ext
)) {
327 error_setg_errno(errp
, -ret
, "bitmaps_ext: "
328 "Invalid extension length");
332 if (!(s
->autoclear_features
& QCOW2_AUTOCLEAR_BITMAPS
)) {
333 if (s
->qcow_version
< 3) {
334 /* Let's be a bit more specific */
335 warn_report("This qcow2 v2 image contains bitmaps, but "
336 "they may have been modified by a program "
337 "without persistent bitmap support; so now "
338 "they must all be considered inconsistent");
340 warn_report("a program lacking bitmap support "
341 "modified this file, so all bitmaps are now "
342 "considered inconsistent");
344 error_printf("Some clusters may be leaked, "
345 "run 'qemu-img check -r' on the image "
347 if (need_update_header
!= NULL
) {
348 /* Updating is needed to drop invalid bitmap extension. */
349 *need_update_header
= true;
354 ret
= bdrv_pread(bs
->file
, offset
, &bitmaps_ext
, ext
.len
);
356 error_setg_errno(errp
, -ret
, "bitmaps_ext: "
357 "Could not read ext header");
361 if (bitmaps_ext
.reserved32
!= 0) {
362 error_setg_errno(errp
, -ret
, "bitmaps_ext: "
363 "Reserved field is not zero");
367 bitmaps_ext
.nb_bitmaps
= be32_to_cpu(bitmaps_ext
.nb_bitmaps
);
368 bitmaps_ext
.bitmap_directory_size
=
369 be64_to_cpu(bitmaps_ext
.bitmap_directory_size
);
370 bitmaps_ext
.bitmap_directory_offset
=
371 be64_to_cpu(bitmaps_ext
.bitmap_directory_offset
);
373 if (bitmaps_ext
.nb_bitmaps
> QCOW2_MAX_BITMAPS
) {
375 "bitmaps_ext: Image has %" PRIu32
" bitmaps, "
376 "exceeding the QEMU supported maximum of %d",
377 bitmaps_ext
.nb_bitmaps
, QCOW2_MAX_BITMAPS
);
381 if (bitmaps_ext
.nb_bitmaps
== 0) {
382 error_setg(errp
, "found bitmaps extension with zero bitmaps");
386 if (offset_into_cluster(s
, bitmaps_ext
.bitmap_directory_offset
)) {
387 error_setg(errp
, "bitmaps_ext: "
388 "invalid bitmap directory offset");
392 if (bitmaps_ext
.bitmap_directory_size
>
393 QCOW2_MAX_BITMAP_DIRECTORY_SIZE
) {
394 error_setg(errp
, "bitmaps_ext: "
395 "bitmap directory size (%" PRIu64
") exceeds "
396 "the maximum supported size (%d)",
397 bitmaps_ext
.bitmap_directory_size
,
398 QCOW2_MAX_BITMAP_DIRECTORY_SIZE
);
402 s
->nb_bitmaps
= bitmaps_ext
.nb_bitmaps
;
403 s
->bitmap_directory_offset
=
404 bitmaps_ext
.bitmap_directory_offset
;
405 s
->bitmap_directory_size
=
406 bitmaps_ext
.bitmap_directory_size
;
409 printf("Qcow2: Got bitmaps extension: "
410 "offset=%" PRIu64
" nb_bitmaps=%" PRIu32
"\n",
411 s
->bitmap_directory_offset
, s
->nb_bitmaps
);
415 case QCOW2_EXT_MAGIC_DATA_FILE
:
417 s
->image_data_file
= g_malloc0(ext
.len
+ 1);
418 ret
= bdrv_pread(bs
->file
, offset
, s
->image_data_file
, ext
.len
);
420 error_setg_errno(errp
, -ret
,
421 "ERROR: Could not read data file name");
425 printf("Qcow2: Got external data file %s\n", s
->image_data_file
);
431 /* unknown magic - save it in case we need to rewrite the header */
432 /* If you add a new feature, make sure to also update the fast
433 * path of qcow2_make_empty() to deal with it. */
435 Qcow2UnknownHeaderExtension
*uext
;
437 uext
= g_malloc0(sizeof(*uext
) + ext
.len
);
438 uext
->magic
= ext
.magic
;
440 QLIST_INSERT_HEAD(&s
->unknown_header_ext
, uext
, next
);
442 ret
= bdrv_pread(bs
->file
, offset
, uext
->data
, uext
->len
);
444 error_setg_errno(errp
, -ret
, "ERROR: unknown extension: "
445 "Could not read data");
452 offset
+= ((ext
.len
+ 7) & ~7);
458 static void cleanup_unknown_header_ext(BlockDriverState
*bs
)
460 BDRVQcow2State
*s
= bs
->opaque
;
461 Qcow2UnknownHeaderExtension
*uext
, *next
;
463 QLIST_FOREACH_SAFE(uext
, &s
->unknown_header_ext
, next
, next
) {
464 QLIST_REMOVE(uext
, next
);
469 static void report_unsupported_feature(Error
**errp
, Qcow2Feature
*table
,
472 g_autoptr(GString
) features
= g_string_sized_new(60);
474 while (table
&& table
->name
[0] != '\0') {
475 if (table
->type
== QCOW2_FEAT_TYPE_INCOMPATIBLE
) {
476 if (mask
& (1ULL << table
->bit
)) {
477 if (features
->len
> 0) {
478 g_string_append(features
, ", ");
480 g_string_append_printf(features
, "%.46s", table
->name
);
481 mask
&= ~(1ULL << table
->bit
);
488 if (features
->len
> 0) {
489 g_string_append(features
, ", ");
491 g_string_append_printf(features
,
492 "Unknown incompatible feature: %" PRIx64
, mask
);
495 error_setg(errp
, "Unsupported qcow2 feature(s): %s", features
->str
);
499 * Sets the dirty bit and flushes afterwards if necessary.
501 * The incompatible_features bit is only set if the image file header was
502 * updated successfully. Therefore it is not required to check the return
503 * value of this function.
505 int qcow2_mark_dirty(BlockDriverState
*bs
)
507 BDRVQcow2State
*s
= bs
->opaque
;
511 assert(s
->qcow_version
>= 3);
513 if (s
->incompatible_features
& QCOW2_INCOMPAT_DIRTY
) {
514 return 0; /* already dirty */
517 val
= cpu_to_be64(s
->incompatible_features
| QCOW2_INCOMPAT_DIRTY
);
518 ret
= bdrv_pwrite(bs
->file
, offsetof(QCowHeader
, incompatible_features
),
523 ret
= bdrv_flush(bs
->file
->bs
);
528 /* Only treat image as dirty if the header was updated successfully */
529 s
->incompatible_features
|= QCOW2_INCOMPAT_DIRTY
;
534 * Clears the dirty bit and flushes before if necessary. Only call this
535 * function when there are no pending requests, it does not guard against
536 * concurrent requests dirtying the image.
538 static int qcow2_mark_clean(BlockDriverState
*bs
)
540 BDRVQcow2State
*s
= bs
->opaque
;
542 if (s
->incompatible_features
& QCOW2_INCOMPAT_DIRTY
) {
545 s
->incompatible_features
&= ~QCOW2_INCOMPAT_DIRTY
;
547 ret
= qcow2_flush_caches(bs
);
552 return qcow2_update_header(bs
);
558 * Marks the image as corrupt.
560 int qcow2_mark_corrupt(BlockDriverState
*bs
)
562 BDRVQcow2State
*s
= bs
->opaque
;
564 s
->incompatible_features
|= QCOW2_INCOMPAT_CORRUPT
;
565 return qcow2_update_header(bs
);
569 * Marks the image as consistent, i.e., unsets the corrupt bit, and flushes
570 * before if necessary.
572 int qcow2_mark_consistent(BlockDriverState
*bs
)
574 BDRVQcow2State
*s
= bs
->opaque
;
576 if (s
->incompatible_features
& QCOW2_INCOMPAT_CORRUPT
) {
577 int ret
= qcow2_flush_caches(bs
);
582 s
->incompatible_features
&= ~QCOW2_INCOMPAT_CORRUPT
;
583 return qcow2_update_header(bs
);
588 static void qcow2_add_check_result(BdrvCheckResult
*out
,
589 const BdrvCheckResult
*src
,
590 bool set_allocation_info
)
592 out
->corruptions
+= src
->corruptions
;
593 out
->leaks
+= src
->leaks
;
594 out
->check_errors
+= src
->check_errors
;
595 out
->corruptions_fixed
+= src
->corruptions_fixed
;
596 out
->leaks_fixed
+= src
->leaks_fixed
;
598 if (set_allocation_info
) {
599 out
->image_end_offset
= src
->image_end_offset
;
604 static int coroutine_fn
qcow2_co_check_locked(BlockDriverState
*bs
,
605 BdrvCheckResult
*result
,
608 BdrvCheckResult snapshot_res
= {};
609 BdrvCheckResult refcount_res
= {};
612 memset(result
, 0, sizeof(*result
));
614 ret
= qcow2_check_read_snapshot_table(bs
, &snapshot_res
, fix
);
616 qcow2_add_check_result(result
, &snapshot_res
, false);
620 ret
= qcow2_check_refcounts(bs
, &refcount_res
, fix
);
621 qcow2_add_check_result(result
, &refcount_res
, true);
623 qcow2_add_check_result(result
, &snapshot_res
, false);
627 ret
= qcow2_check_fix_snapshot_table(bs
, &snapshot_res
, fix
);
628 qcow2_add_check_result(result
, &snapshot_res
, false);
633 if (fix
&& result
->check_errors
== 0 && result
->corruptions
== 0) {
634 ret
= qcow2_mark_clean(bs
);
638 return qcow2_mark_consistent(bs
);
643 static int coroutine_fn
qcow2_co_check(BlockDriverState
*bs
,
644 BdrvCheckResult
*result
,
647 BDRVQcow2State
*s
= bs
->opaque
;
650 qemu_co_mutex_lock(&s
->lock
);
651 ret
= qcow2_co_check_locked(bs
, result
, fix
);
652 qemu_co_mutex_unlock(&s
->lock
);
656 int qcow2_validate_table(BlockDriverState
*bs
, uint64_t offset
,
657 uint64_t entries
, size_t entry_len
,
658 int64_t max_size_bytes
, const char *table_name
,
661 BDRVQcow2State
*s
= bs
->opaque
;
663 if (entries
> max_size_bytes
/ entry_len
) {
664 error_setg(errp
, "%s too large", table_name
);
668 /* Use signed INT64_MAX as the maximum even for uint64_t header fields,
669 * because values will be passed to qemu functions taking int64_t. */
670 if ((INT64_MAX
- entries
* entry_len
< offset
) ||
671 (offset_into_cluster(s
, offset
) != 0)) {
672 error_setg(errp
, "%s offset invalid", table_name
);
679 static const char *const mutable_opts
[] = {
680 QCOW2_OPT_LAZY_REFCOUNTS
,
681 QCOW2_OPT_DISCARD_REQUEST
,
682 QCOW2_OPT_DISCARD_SNAPSHOT
,
683 QCOW2_OPT_DISCARD_OTHER
,
685 QCOW2_OPT_OVERLAP_TEMPLATE
,
686 QCOW2_OPT_OVERLAP_MAIN_HEADER
,
687 QCOW2_OPT_OVERLAP_ACTIVE_L1
,
688 QCOW2_OPT_OVERLAP_ACTIVE_L2
,
689 QCOW2_OPT_OVERLAP_REFCOUNT_TABLE
,
690 QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK
,
691 QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE
,
692 QCOW2_OPT_OVERLAP_INACTIVE_L1
,
693 QCOW2_OPT_OVERLAP_INACTIVE_L2
,
694 QCOW2_OPT_OVERLAP_BITMAP_DIRECTORY
,
695 QCOW2_OPT_CACHE_SIZE
,
696 QCOW2_OPT_L2_CACHE_SIZE
,
697 QCOW2_OPT_L2_CACHE_ENTRY_SIZE
,
698 QCOW2_OPT_REFCOUNT_CACHE_SIZE
,
699 QCOW2_OPT_CACHE_CLEAN_INTERVAL
,
703 static QemuOptsList qcow2_runtime_opts
= {
705 .head
= QTAILQ_HEAD_INITIALIZER(qcow2_runtime_opts
.head
),
708 .name
= QCOW2_OPT_LAZY_REFCOUNTS
,
709 .type
= QEMU_OPT_BOOL
,
710 .help
= "Postpone refcount updates",
713 .name
= QCOW2_OPT_DISCARD_REQUEST
,
714 .type
= QEMU_OPT_BOOL
,
715 .help
= "Pass guest discard requests to the layer below",
718 .name
= QCOW2_OPT_DISCARD_SNAPSHOT
,
719 .type
= QEMU_OPT_BOOL
,
720 .help
= "Generate discard requests when snapshot related space "
724 .name
= QCOW2_OPT_DISCARD_OTHER
,
725 .type
= QEMU_OPT_BOOL
,
726 .help
= "Generate discard requests when other clusters are freed",
729 .name
= QCOW2_OPT_OVERLAP
,
730 .type
= QEMU_OPT_STRING
,
731 .help
= "Selects which overlap checks to perform from a range of "
732 "templates (none, constant, cached, all)",
735 .name
= QCOW2_OPT_OVERLAP_TEMPLATE
,
736 .type
= QEMU_OPT_STRING
,
737 .help
= "Selects which overlap checks to perform from a range of "
738 "templates (none, constant, cached, all)",
741 .name
= QCOW2_OPT_OVERLAP_MAIN_HEADER
,
742 .type
= QEMU_OPT_BOOL
,
743 .help
= "Check for unintended writes into the main qcow2 header",
746 .name
= QCOW2_OPT_OVERLAP_ACTIVE_L1
,
747 .type
= QEMU_OPT_BOOL
,
748 .help
= "Check for unintended writes into the active L1 table",
751 .name
= QCOW2_OPT_OVERLAP_ACTIVE_L2
,
752 .type
= QEMU_OPT_BOOL
,
753 .help
= "Check for unintended writes into an active L2 table",
756 .name
= QCOW2_OPT_OVERLAP_REFCOUNT_TABLE
,
757 .type
= QEMU_OPT_BOOL
,
758 .help
= "Check for unintended writes into the refcount table",
761 .name
= QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK
,
762 .type
= QEMU_OPT_BOOL
,
763 .help
= "Check for unintended writes into a refcount block",
766 .name
= QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE
,
767 .type
= QEMU_OPT_BOOL
,
768 .help
= "Check for unintended writes into the snapshot table",
771 .name
= QCOW2_OPT_OVERLAP_INACTIVE_L1
,
772 .type
= QEMU_OPT_BOOL
,
773 .help
= "Check for unintended writes into an inactive L1 table",
776 .name
= QCOW2_OPT_OVERLAP_INACTIVE_L2
,
777 .type
= QEMU_OPT_BOOL
,
778 .help
= "Check for unintended writes into an inactive L2 table",
781 .name
= QCOW2_OPT_OVERLAP_BITMAP_DIRECTORY
,
782 .type
= QEMU_OPT_BOOL
,
783 .help
= "Check for unintended writes into the bitmap directory",
786 .name
= QCOW2_OPT_CACHE_SIZE
,
787 .type
= QEMU_OPT_SIZE
,
788 .help
= "Maximum combined metadata (L2 tables and refcount blocks) "
792 .name
= QCOW2_OPT_L2_CACHE_SIZE
,
793 .type
= QEMU_OPT_SIZE
,
794 .help
= "Maximum L2 table cache size",
797 .name
= QCOW2_OPT_L2_CACHE_ENTRY_SIZE
,
798 .type
= QEMU_OPT_SIZE
,
799 .help
= "Size of each entry in the L2 cache",
802 .name
= QCOW2_OPT_REFCOUNT_CACHE_SIZE
,
803 .type
= QEMU_OPT_SIZE
,
804 .help
= "Maximum refcount block cache size",
807 .name
= QCOW2_OPT_CACHE_CLEAN_INTERVAL
,
808 .type
= QEMU_OPT_NUMBER
,
809 .help
= "Clean unused cache entries after this time (in seconds)",
811 BLOCK_CRYPTO_OPT_DEF_KEY_SECRET("encrypt.",
812 "ID of secret providing qcow2 AES key or LUKS passphrase"),
813 { /* end of list */ }
817 static const char *overlap_bool_option_names
[QCOW2_OL_MAX_BITNR
] = {
818 [QCOW2_OL_MAIN_HEADER_BITNR
] = QCOW2_OPT_OVERLAP_MAIN_HEADER
,
819 [QCOW2_OL_ACTIVE_L1_BITNR
] = QCOW2_OPT_OVERLAP_ACTIVE_L1
,
820 [QCOW2_OL_ACTIVE_L2_BITNR
] = QCOW2_OPT_OVERLAP_ACTIVE_L2
,
821 [QCOW2_OL_REFCOUNT_TABLE_BITNR
] = QCOW2_OPT_OVERLAP_REFCOUNT_TABLE
,
822 [QCOW2_OL_REFCOUNT_BLOCK_BITNR
] = QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK
,
823 [QCOW2_OL_SNAPSHOT_TABLE_BITNR
] = QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE
,
824 [QCOW2_OL_INACTIVE_L1_BITNR
] = QCOW2_OPT_OVERLAP_INACTIVE_L1
,
825 [QCOW2_OL_INACTIVE_L2_BITNR
] = QCOW2_OPT_OVERLAP_INACTIVE_L2
,
826 [QCOW2_OL_BITMAP_DIRECTORY_BITNR
] = QCOW2_OPT_OVERLAP_BITMAP_DIRECTORY
,
829 static void cache_clean_timer_cb(void *opaque
)
831 BlockDriverState
*bs
= opaque
;
832 BDRVQcow2State
*s
= bs
->opaque
;
833 qcow2_cache_clean_unused(s
->l2_table_cache
);
834 qcow2_cache_clean_unused(s
->refcount_block_cache
);
835 timer_mod(s
->cache_clean_timer
, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL
) +
836 (int64_t) s
->cache_clean_interval
* 1000);
839 static void cache_clean_timer_init(BlockDriverState
*bs
, AioContext
*context
)
841 BDRVQcow2State
*s
= bs
->opaque
;
842 if (s
->cache_clean_interval
> 0) {
843 s
->cache_clean_timer
=
844 aio_timer_new_with_attrs(context
, QEMU_CLOCK_VIRTUAL
,
845 SCALE_MS
, QEMU_TIMER_ATTR_EXTERNAL
,
846 cache_clean_timer_cb
, bs
);
847 timer_mod(s
->cache_clean_timer
, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL
) +
848 (int64_t) s
->cache_clean_interval
* 1000);
852 static void cache_clean_timer_del(BlockDriverState
*bs
)
854 BDRVQcow2State
*s
= bs
->opaque
;
855 if (s
->cache_clean_timer
) {
856 timer_free(s
->cache_clean_timer
);
857 s
->cache_clean_timer
= NULL
;
861 static void qcow2_detach_aio_context(BlockDriverState
*bs
)
863 cache_clean_timer_del(bs
);
866 static void qcow2_attach_aio_context(BlockDriverState
*bs
,
867 AioContext
*new_context
)
869 cache_clean_timer_init(bs
, new_context
);
872 static bool read_cache_sizes(BlockDriverState
*bs
, QemuOpts
*opts
,
873 uint64_t *l2_cache_size
,
874 uint64_t *l2_cache_entry_size
,
875 uint64_t *refcount_cache_size
, Error
**errp
)
877 BDRVQcow2State
*s
= bs
->opaque
;
878 uint64_t combined_cache_size
, l2_cache_max_setting
;
879 bool l2_cache_size_set
, refcount_cache_size_set
, combined_cache_size_set
;
880 bool l2_cache_entry_size_set
;
881 int min_refcount_cache
= MIN_REFCOUNT_CACHE_SIZE
* s
->cluster_size
;
882 uint64_t virtual_disk_size
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
883 uint64_t max_l2_entries
= DIV_ROUND_UP(virtual_disk_size
, s
->cluster_size
);
884 /* An L2 table is always one cluster in size so the max cache size
885 * should be a multiple of the cluster size. */
886 uint64_t max_l2_cache
= ROUND_UP(max_l2_entries
* l2_entry_size(s
),
889 combined_cache_size_set
= qemu_opt_get(opts
, QCOW2_OPT_CACHE_SIZE
);
890 l2_cache_size_set
= qemu_opt_get(opts
, QCOW2_OPT_L2_CACHE_SIZE
);
891 refcount_cache_size_set
= qemu_opt_get(opts
, QCOW2_OPT_REFCOUNT_CACHE_SIZE
);
892 l2_cache_entry_size_set
= qemu_opt_get(opts
, QCOW2_OPT_L2_CACHE_ENTRY_SIZE
);
894 combined_cache_size
= qemu_opt_get_size(opts
, QCOW2_OPT_CACHE_SIZE
, 0);
895 l2_cache_max_setting
= qemu_opt_get_size(opts
, QCOW2_OPT_L2_CACHE_SIZE
,
896 DEFAULT_L2_CACHE_MAX_SIZE
);
897 *refcount_cache_size
= qemu_opt_get_size(opts
,
898 QCOW2_OPT_REFCOUNT_CACHE_SIZE
, 0);
900 *l2_cache_entry_size
= qemu_opt_get_size(
901 opts
, QCOW2_OPT_L2_CACHE_ENTRY_SIZE
, s
->cluster_size
);
903 *l2_cache_size
= MIN(max_l2_cache
, l2_cache_max_setting
);
905 if (combined_cache_size_set
) {
906 if (l2_cache_size_set
&& refcount_cache_size_set
) {
907 error_setg(errp
, QCOW2_OPT_CACHE_SIZE
", " QCOW2_OPT_L2_CACHE_SIZE
908 " and " QCOW2_OPT_REFCOUNT_CACHE_SIZE
" may not be set "
911 } else if (l2_cache_size_set
&&
912 (l2_cache_max_setting
> combined_cache_size
)) {
913 error_setg(errp
, QCOW2_OPT_L2_CACHE_SIZE
" may not exceed "
914 QCOW2_OPT_CACHE_SIZE
);
916 } else if (*refcount_cache_size
> combined_cache_size
) {
917 error_setg(errp
, QCOW2_OPT_REFCOUNT_CACHE_SIZE
" may not exceed "
918 QCOW2_OPT_CACHE_SIZE
);
922 if (l2_cache_size_set
) {
923 *refcount_cache_size
= combined_cache_size
- *l2_cache_size
;
924 } else if (refcount_cache_size_set
) {
925 *l2_cache_size
= combined_cache_size
- *refcount_cache_size
;
927 /* Assign as much memory as possible to the L2 cache, and
928 * use the remainder for the refcount cache */
929 if (combined_cache_size
>= max_l2_cache
+ min_refcount_cache
) {
930 *l2_cache_size
= max_l2_cache
;
931 *refcount_cache_size
= combined_cache_size
- *l2_cache_size
;
933 *refcount_cache_size
=
934 MIN(combined_cache_size
, min_refcount_cache
);
935 *l2_cache_size
= combined_cache_size
- *refcount_cache_size
;
941 * If the L2 cache is not enough to cover the whole disk then
942 * default to 4KB entries. Smaller entries reduce the cost of
943 * loads and evictions and increase I/O performance.
945 if (*l2_cache_size
< max_l2_cache
&& !l2_cache_entry_size_set
) {
946 *l2_cache_entry_size
= MIN(s
->cluster_size
, 4096);
949 /* l2_cache_size and refcount_cache_size are ensured to have at least
950 * their minimum values in qcow2_update_options_prepare() */
952 if (*l2_cache_entry_size
< (1 << MIN_CLUSTER_BITS
) ||
953 *l2_cache_entry_size
> s
->cluster_size
||
954 !is_power_of_2(*l2_cache_entry_size
)) {
955 error_setg(errp
, "L2 cache entry size must be a power of two "
956 "between %d and the cluster size (%d)",
957 1 << MIN_CLUSTER_BITS
, s
->cluster_size
);
964 typedef struct Qcow2ReopenState
{
965 Qcow2Cache
*l2_table_cache
;
966 Qcow2Cache
*refcount_block_cache
;
967 int l2_slice_size
; /* Number of entries in a slice of the L2 table */
968 bool use_lazy_refcounts
;
970 bool discard_passthrough
[QCOW2_DISCARD_MAX
];
971 uint64_t cache_clean_interval
;
972 QCryptoBlockOpenOptions
*crypto_opts
; /* Disk encryption runtime options */
975 static int qcow2_update_options_prepare(BlockDriverState
*bs
,
977 QDict
*options
, int flags
,
980 BDRVQcow2State
*s
= bs
->opaque
;
981 QemuOpts
*opts
= NULL
;
982 const char *opt_overlap_check
, *opt_overlap_check_template
;
983 int overlap_check_template
= 0;
984 uint64_t l2_cache_size
, l2_cache_entry_size
, refcount_cache_size
;
986 const char *encryptfmt
;
987 QDict
*encryptopts
= NULL
;
990 qdict_extract_subqdict(options
, &encryptopts
, "encrypt.");
991 encryptfmt
= qdict_get_try_str(encryptopts
, "format");
993 opts
= qemu_opts_create(&qcow2_runtime_opts
, NULL
, 0, &error_abort
);
994 if (!qemu_opts_absorb_qdict(opts
, options
, errp
)) {
999 /* get L2 table/refcount block cache size from command line options */
1000 if (!read_cache_sizes(bs
, opts
, &l2_cache_size
, &l2_cache_entry_size
,
1001 &refcount_cache_size
, errp
)) {
1006 l2_cache_size
/= l2_cache_entry_size
;
1007 if (l2_cache_size
< MIN_L2_CACHE_SIZE
) {
1008 l2_cache_size
= MIN_L2_CACHE_SIZE
;
1010 if (l2_cache_size
> INT_MAX
) {
1011 error_setg(errp
, "L2 cache size too big");
1016 refcount_cache_size
/= s
->cluster_size
;
1017 if (refcount_cache_size
< MIN_REFCOUNT_CACHE_SIZE
) {
1018 refcount_cache_size
= MIN_REFCOUNT_CACHE_SIZE
;
1020 if (refcount_cache_size
> INT_MAX
) {
1021 error_setg(errp
, "Refcount cache size too big");
1026 /* alloc new L2 table/refcount block cache, flush old one */
1027 if (s
->l2_table_cache
) {
1028 ret
= qcow2_cache_flush(bs
, s
->l2_table_cache
);
1030 error_setg_errno(errp
, -ret
, "Failed to flush the L2 table cache");
1035 if (s
->refcount_block_cache
) {
1036 ret
= qcow2_cache_flush(bs
, s
->refcount_block_cache
);
1038 error_setg_errno(errp
, -ret
,
1039 "Failed to flush the refcount block cache");
1044 r
->l2_slice_size
= l2_cache_entry_size
/ l2_entry_size(s
);
1045 r
->l2_table_cache
= qcow2_cache_create(bs
, l2_cache_size
,
1046 l2_cache_entry_size
);
1047 r
->refcount_block_cache
= qcow2_cache_create(bs
, refcount_cache_size
,
1049 if (r
->l2_table_cache
== NULL
|| r
->refcount_block_cache
== NULL
) {
1050 error_setg(errp
, "Could not allocate metadata caches");
1055 /* New interval for cache cleanup timer */
1056 r
->cache_clean_interval
=
1057 qemu_opt_get_number(opts
, QCOW2_OPT_CACHE_CLEAN_INTERVAL
,
1058 DEFAULT_CACHE_CLEAN_INTERVAL
);
1059 #ifndef CONFIG_LINUX
1060 if (r
->cache_clean_interval
!= 0) {
1061 error_setg(errp
, QCOW2_OPT_CACHE_CLEAN_INTERVAL
1062 " not supported on this host");
1067 if (r
->cache_clean_interval
> UINT_MAX
) {
1068 error_setg(errp
, "Cache clean interval too big");
1073 /* lazy-refcounts; flush if going from enabled to disabled */
1074 r
->use_lazy_refcounts
= qemu_opt_get_bool(opts
, QCOW2_OPT_LAZY_REFCOUNTS
,
1075 (s
->compatible_features
& QCOW2_COMPAT_LAZY_REFCOUNTS
));
1076 if (r
->use_lazy_refcounts
&& s
->qcow_version
< 3) {
1077 error_setg(errp
, "Lazy refcounts require a qcow2 image with at least "
1078 "qemu 1.1 compatibility level");
1083 if (s
->use_lazy_refcounts
&& !r
->use_lazy_refcounts
) {
1084 ret
= qcow2_mark_clean(bs
);
1086 error_setg_errno(errp
, -ret
, "Failed to disable lazy refcounts");
1091 /* Overlap check options */
1092 opt_overlap_check
= qemu_opt_get(opts
, QCOW2_OPT_OVERLAP
);
1093 opt_overlap_check_template
= qemu_opt_get(opts
, QCOW2_OPT_OVERLAP_TEMPLATE
);
1094 if (opt_overlap_check_template
&& opt_overlap_check
&&
1095 strcmp(opt_overlap_check_template
, opt_overlap_check
))
1097 error_setg(errp
, "Conflicting values for qcow2 options '"
1098 QCOW2_OPT_OVERLAP
"' ('%s') and '" QCOW2_OPT_OVERLAP_TEMPLATE
1099 "' ('%s')", opt_overlap_check
, opt_overlap_check_template
);
1103 if (!opt_overlap_check
) {
1104 opt_overlap_check
= opt_overlap_check_template
?: "cached";
1107 if (!strcmp(opt_overlap_check
, "none")) {
1108 overlap_check_template
= 0;
1109 } else if (!strcmp(opt_overlap_check
, "constant")) {
1110 overlap_check_template
= QCOW2_OL_CONSTANT
;
1111 } else if (!strcmp(opt_overlap_check
, "cached")) {
1112 overlap_check_template
= QCOW2_OL_CACHED
;
1113 } else if (!strcmp(opt_overlap_check
, "all")) {
1114 overlap_check_template
= QCOW2_OL_ALL
;
1116 error_setg(errp
, "Unsupported value '%s' for qcow2 option "
1117 "'overlap-check'. Allowed are any of the following: "
1118 "none, constant, cached, all", opt_overlap_check
);
1123 r
->overlap_check
= 0;
1124 for (i
= 0; i
< QCOW2_OL_MAX_BITNR
; i
++) {
1125 /* overlap-check defines a template bitmask, but every flag may be
1126 * overwritten through the associated boolean option */
1128 qemu_opt_get_bool(opts
, overlap_bool_option_names
[i
],
1129 overlap_check_template
& (1 << i
)) << i
;
1132 r
->discard_passthrough
[QCOW2_DISCARD_NEVER
] = false;
1133 r
->discard_passthrough
[QCOW2_DISCARD_ALWAYS
] = true;
1134 r
->discard_passthrough
[QCOW2_DISCARD_REQUEST
] =
1135 qemu_opt_get_bool(opts
, QCOW2_OPT_DISCARD_REQUEST
,
1136 flags
& BDRV_O_UNMAP
);
1137 r
->discard_passthrough
[QCOW2_DISCARD_SNAPSHOT
] =
1138 qemu_opt_get_bool(opts
, QCOW2_OPT_DISCARD_SNAPSHOT
, true);
1139 r
->discard_passthrough
[QCOW2_DISCARD_OTHER
] =
1140 qemu_opt_get_bool(opts
, QCOW2_OPT_DISCARD_OTHER
, false);
1142 switch (s
->crypt_method_header
) {
1143 case QCOW_CRYPT_NONE
:
1145 error_setg(errp
, "No encryption in image header, but options "
1146 "specified format '%s'", encryptfmt
);
1152 case QCOW_CRYPT_AES
:
1153 if (encryptfmt
&& !g_str_equal(encryptfmt
, "aes")) {
1155 "Header reported 'aes' encryption format but "
1156 "options specify '%s'", encryptfmt
);
1160 qdict_put_str(encryptopts
, "format", "qcow");
1161 r
->crypto_opts
= block_crypto_open_opts_init(encryptopts
, errp
);
1162 if (!r
->crypto_opts
) {
1168 case QCOW_CRYPT_LUKS
:
1169 if (encryptfmt
&& !g_str_equal(encryptfmt
, "luks")) {
1171 "Header reported 'luks' encryption format but "
1172 "options specify '%s'", encryptfmt
);
1176 qdict_put_str(encryptopts
, "format", "luks");
1177 r
->crypto_opts
= block_crypto_open_opts_init(encryptopts
, errp
);
1178 if (!r
->crypto_opts
) {
1185 error_setg(errp
, "Unsupported encryption method %d",
1186 s
->crypt_method_header
);
1193 qobject_unref(encryptopts
);
1194 qemu_opts_del(opts
);
1199 static void qcow2_update_options_commit(BlockDriverState
*bs
,
1200 Qcow2ReopenState
*r
)
1202 BDRVQcow2State
*s
= bs
->opaque
;
1205 if (s
->l2_table_cache
) {
1206 qcow2_cache_destroy(s
->l2_table_cache
);
1208 if (s
->refcount_block_cache
) {
1209 qcow2_cache_destroy(s
->refcount_block_cache
);
1211 s
->l2_table_cache
= r
->l2_table_cache
;
1212 s
->refcount_block_cache
= r
->refcount_block_cache
;
1213 s
->l2_slice_size
= r
->l2_slice_size
;
1215 s
->overlap_check
= r
->overlap_check
;
1216 s
->use_lazy_refcounts
= r
->use_lazy_refcounts
;
1218 for (i
= 0; i
< QCOW2_DISCARD_MAX
; i
++) {
1219 s
->discard_passthrough
[i
] = r
->discard_passthrough
[i
];
1222 if (s
->cache_clean_interval
!= r
->cache_clean_interval
) {
1223 cache_clean_timer_del(bs
);
1224 s
->cache_clean_interval
= r
->cache_clean_interval
;
1225 cache_clean_timer_init(bs
, bdrv_get_aio_context(bs
));
1228 qapi_free_QCryptoBlockOpenOptions(s
->crypto_opts
);
1229 s
->crypto_opts
= r
->crypto_opts
;
1232 static void qcow2_update_options_abort(BlockDriverState
*bs
,
1233 Qcow2ReopenState
*r
)
1235 if (r
->l2_table_cache
) {
1236 qcow2_cache_destroy(r
->l2_table_cache
);
1238 if (r
->refcount_block_cache
) {
1239 qcow2_cache_destroy(r
->refcount_block_cache
);
1241 qapi_free_QCryptoBlockOpenOptions(r
->crypto_opts
);
1244 static int qcow2_update_options(BlockDriverState
*bs
, QDict
*options
,
1245 int flags
, Error
**errp
)
1247 Qcow2ReopenState r
= {};
1250 ret
= qcow2_update_options_prepare(bs
, &r
, options
, flags
, errp
);
1252 qcow2_update_options_commit(bs
, &r
);
1254 qcow2_update_options_abort(bs
, &r
);
1260 static int validate_compression_type(BDRVQcow2State
*s
, Error
**errp
)
1262 switch (s
->compression_type
) {
1263 case QCOW2_COMPRESSION_TYPE_ZLIB
:
1265 case QCOW2_COMPRESSION_TYPE_ZSTD
:
1270 error_setg(errp
, "qcow2: unknown compression type: %u",
1271 s
->compression_type
);
1276 * if the compression type differs from QCOW2_COMPRESSION_TYPE_ZLIB
1277 * the incompatible feature flag must be set
1279 if (s
->compression_type
== QCOW2_COMPRESSION_TYPE_ZLIB
) {
1280 if (s
->incompatible_features
& QCOW2_INCOMPAT_COMPRESSION
) {
1281 error_setg(errp
, "qcow2: Compression type incompatible feature "
1282 "bit must not be set");
1286 if (!(s
->incompatible_features
& QCOW2_INCOMPAT_COMPRESSION
)) {
1287 error_setg(errp
, "qcow2: Compression type incompatible feature "
1296 /* Called with s->lock held. */
1297 static int coroutine_fn
qcow2_do_open(BlockDriverState
*bs
, QDict
*options
,
1298 int flags
, Error
**errp
)
1301 BDRVQcow2State
*s
= bs
->opaque
;
1302 unsigned int len
, i
;
1306 uint64_t l1_vm_state_index
;
1307 bool update_header
= false;
1309 ret
= bdrv_pread(bs
->file
, 0, &header
, sizeof(header
));
1311 error_setg_errno(errp
, -ret
, "Could not read qcow2 header");
1314 header
.magic
= be32_to_cpu(header
.magic
);
1315 header
.version
= be32_to_cpu(header
.version
);
1316 header
.backing_file_offset
= be64_to_cpu(header
.backing_file_offset
);
1317 header
.backing_file_size
= be32_to_cpu(header
.backing_file_size
);
1318 header
.size
= be64_to_cpu(header
.size
);
1319 header
.cluster_bits
= be32_to_cpu(header
.cluster_bits
);
1320 header
.crypt_method
= be32_to_cpu(header
.crypt_method
);
1321 header
.l1_table_offset
= be64_to_cpu(header
.l1_table_offset
);
1322 header
.l1_size
= be32_to_cpu(header
.l1_size
);
1323 header
.refcount_table_offset
= be64_to_cpu(header
.refcount_table_offset
);
1324 header
.refcount_table_clusters
=
1325 be32_to_cpu(header
.refcount_table_clusters
);
1326 header
.snapshots_offset
= be64_to_cpu(header
.snapshots_offset
);
1327 header
.nb_snapshots
= be32_to_cpu(header
.nb_snapshots
);
1329 if (header
.magic
!= QCOW_MAGIC
) {
1330 error_setg(errp
, "Image is not in qcow2 format");
1334 if (header
.version
< 2 || header
.version
> 3) {
1335 error_setg(errp
, "Unsupported qcow2 version %" PRIu32
, header
.version
);
1340 s
->qcow_version
= header
.version
;
1342 /* Initialise cluster size */
1343 if (header
.cluster_bits
< MIN_CLUSTER_BITS
||
1344 header
.cluster_bits
> MAX_CLUSTER_BITS
) {
1345 error_setg(errp
, "Unsupported cluster size: 2^%" PRIu32
,
1346 header
.cluster_bits
);
1351 s
->cluster_bits
= header
.cluster_bits
;
1352 s
->cluster_size
= 1 << s
->cluster_bits
;
1354 /* Initialise version 3 header fields */
1355 if (header
.version
== 2) {
1356 header
.incompatible_features
= 0;
1357 header
.compatible_features
= 0;
1358 header
.autoclear_features
= 0;
1359 header
.refcount_order
= 4;
1360 header
.header_length
= 72;
1362 header
.incompatible_features
=
1363 be64_to_cpu(header
.incompatible_features
);
1364 header
.compatible_features
= be64_to_cpu(header
.compatible_features
);
1365 header
.autoclear_features
= be64_to_cpu(header
.autoclear_features
);
1366 header
.refcount_order
= be32_to_cpu(header
.refcount_order
);
1367 header
.header_length
= be32_to_cpu(header
.header_length
);
1369 if (header
.header_length
< 104) {
1370 error_setg(errp
, "qcow2 header too short");
1376 if (header
.header_length
> s
->cluster_size
) {
1377 error_setg(errp
, "qcow2 header exceeds cluster size");
1382 if (header
.header_length
> sizeof(header
)) {
1383 s
->unknown_header_fields_size
= header
.header_length
- sizeof(header
);
1384 s
->unknown_header_fields
= g_malloc(s
->unknown_header_fields_size
);
1385 ret
= bdrv_pread(bs
->file
, sizeof(header
), s
->unknown_header_fields
,
1386 s
->unknown_header_fields_size
);
1388 error_setg_errno(errp
, -ret
, "Could not read unknown qcow2 header "
1394 if (header
.backing_file_offset
> s
->cluster_size
) {
1395 error_setg(errp
, "Invalid backing file offset");
1400 if (header
.backing_file_offset
) {
1401 ext_end
= header
.backing_file_offset
;
1403 ext_end
= 1 << header
.cluster_bits
;
1406 /* Handle feature bits */
1407 s
->incompatible_features
= header
.incompatible_features
;
1408 s
->compatible_features
= header
.compatible_features
;
1409 s
->autoclear_features
= header
.autoclear_features
;
1412 * Handle compression type
1413 * Older qcow2 images don't contain the compression type header.
1414 * Distinguish them by the header length and use
1415 * the only valid (default) compression type in that case
1417 if (header
.header_length
> offsetof(QCowHeader
, compression_type
)) {
1418 s
->compression_type
= header
.compression_type
;
1420 s
->compression_type
= QCOW2_COMPRESSION_TYPE_ZLIB
;
1423 ret
= validate_compression_type(s
, errp
);
1428 if (s
->incompatible_features
& ~QCOW2_INCOMPAT_MASK
) {
1429 void *feature_table
= NULL
;
1430 qcow2_read_extensions(bs
, header
.header_length
, ext_end
,
1431 &feature_table
, flags
, NULL
, NULL
);
1432 report_unsupported_feature(errp
, feature_table
,
1433 s
->incompatible_features
&
1434 ~QCOW2_INCOMPAT_MASK
);
1436 g_free(feature_table
);
1440 if (s
->incompatible_features
& QCOW2_INCOMPAT_CORRUPT
) {
1441 /* Corrupt images may not be written to unless they are being repaired
1443 if ((flags
& BDRV_O_RDWR
) && !(flags
& BDRV_O_CHECK
)) {
1444 error_setg(errp
, "qcow2: Image is corrupt; cannot be opened "
1451 s
->subclusters_per_cluster
=
1452 has_subclusters(s
) ? QCOW_EXTL2_SUBCLUSTERS_PER_CLUSTER
: 1;
1453 s
->subcluster_size
= s
->cluster_size
/ s
->subclusters_per_cluster
;
1454 s
->subcluster_bits
= ctz32(s
->subcluster_size
);
1456 if (s
->subcluster_size
< (1 << MIN_CLUSTER_BITS
)) {
1457 error_setg(errp
, "Unsupported subcluster size: %d", s
->subcluster_size
);
1462 /* Check support for various header values */
1463 if (header
.refcount_order
> 6) {
1464 error_setg(errp
, "Reference count entry width too large; may not "
1469 s
->refcount_order
= header
.refcount_order
;
1470 s
->refcount_bits
= 1 << s
->refcount_order
;
1471 s
->refcount_max
= UINT64_C(1) << (s
->refcount_bits
- 1);
1472 s
->refcount_max
+= s
->refcount_max
- 1;
1474 s
->crypt_method_header
= header
.crypt_method
;
1475 if (s
->crypt_method_header
) {
1476 if (bdrv_uses_whitelist() &&
1477 s
->crypt_method_header
== QCOW_CRYPT_AES
) {
1479 "Use of AES-CBC encrypted qcow2 images is no longer "
1480 "supported in system emulators");
1481 error_append_hint(errp
,
1482 "You can use 'qemu-img convert' to convert your "
1483 "image to an alternative supported format, such "
1484 "as unencrypted qcow2, or raw with the LUKS "
1485 "format instead.\n");
1490 if (s
->crypt_method_header
== QCOW_CRYPT_AES
) {
1491 s
->crypt_physical_offset
= false;
1493 /* Assuming LUKS and any future crypt methods we
1494 * add will all use physical offsets, due to the
1495 * fact that the alternative is insecure... */
1496 s
->crypt_physical_offset
= true;
1499 bs
->encrypted
= true;
1502 s
->l2_bits
= s
->cluster_bits
- ctz32(l2_entry_size(s
));
1503 s
->l2_size
= 1 << s
->l2_bits
;
1504 /* 2^(s->refcount_order - 3) is the refcount width in bytes */
1505 s
->refcount_block_bits
= s
->cluster_bits
- (s
->refcount_order
- 3);
1506 s
->refcount_block_size
= 1 << s
->refcount_block_bits
;
1507 bs
->total_sectors
= header
.size
/ BDRV_SECTOR_SIZE
;
1508 s
->csize_shift
= (62 - (s
->cluster_bits
- 8));
1509 s
->csize_mask
= (1 << (s
->cluster_bits
- 8)) - 1;
1510 s
->cluster_offset_mask
= (1LL << s
->csize_shift
) - 1;
1512 s
->refcount_table_offset
= header
.refcount_table_offset
;
1513 s
->refcount_table_size
=
1514 header
.refcount_table_clusters
<< (s
->cluster_bits
- 3);
1516 if (header
.refcount_table_clusters
== 0 && !(flags
& BDRV_O_CHECK
)) {
1517 error_setg(errp
, "Image does not contain a reference count table");
1522 ret
= qcow2_validate_table(bs
, s
->refcount_table_offset
,
1523 header
.refcount_table_clusters
,
1524 s
->cluster_size
, QCOW_MAX_REFTABLE_SIZE
,
1525 "Reference count table", errp
);
1530 if (!(flags
& BDRV_O_CHECK
)) {
1532 * The total size in bytes of the snapshot table is checked in
1533 * qcow2_read_snapshots() because the size of each snapshot is
1534 * variable and we don't know it yet.
1535 * Here we only check the offset and number of snapshots.
1537 ret
= qcow2_validate_table(bs
, header
.snapshots_offset
,
1538 header
.nb_snapshots
,
1539 sizeof(QCowSnapshotHeader
),
1540 sizeof(QCowSnapshotHeader
) *
1542 "Snapshot table", errp
);
1548 /* read the level 1 table */
1549 ret
= qcow2_validate_table(bs
, header
.l1_table_offset
,
1550 header
.l1_size
, L1E_SIZE
,
1551 QCOW_MAX_L1_SIZE
, "Active L1 table", errp
);
1555 s
->l1_size
= header
.l1_size
;
1556 s
->l1_table_offset
= header
.l1_table_offset
;
1558 l1_vm_state_index
= size_to_l1(s
, header
.size
);
1559 if (l1_vm_state_index
> INT_MAX
) {
1560 error_setg(errp
, "Image is too big");
1564 s
->l1_vm_state_index
= l1_vm_state_index
;
1566 /* the L1 table must contain at least enough entries to put
1567 header.size bytes */
1568 if (s
->l1_size
< s
->l1_vm_state_index
) {
1569 error_setg(errp
, "L1 table is too small");
1574 if (s
->l1_size
> 0) {
1575 s
->l1_table
= qemu_try_blockalign(bs
->file
->bs
, s
->l1_size
* L1E_SIZE
);
1576 if (s
->l1_table
== NULL
) {
1577 error_setg(errp
, "Could not allocate L1 table");
1581 ret
= bdrv_pread(bs
->file
, s
->l1_table_offset
, s
->l1_table
,
1582 s
->l1_size
* L1E_SIZE
);
1584 error_setg_errno(errp
, -ret
, "Could not read L1 table");
1587 for(i
= 0;i
< s
->l1_size
; i
++) {
1588 s
->l1_table
[i
] = be64_to_cpu(s
->l1_table
[i
]);
1592 /* Parse driver-specific options */
1593 ret
= qcow2_update_options(bs
, options
, flags
, errp
);
1600 ret
= qcow2_refcount_init(bs
);
1602 error_setg_errno(errp
, -ret
, "Could not initialize refcount handling");
1606 QLIST_INIT(&s
->cluster_allocs
);
1607 QTAILQ_INIT(&s
->discards
);
1609 /* read qcow2 extensions */
1610 if (qcow2_read_extensions(bs
, header
.header_length
, ext_end
, NULL
,
1611 flags
, &update_header
, errp
)) {
1616 /* Open external data file */
1617 s
->data_file
= bdrv_open_child(NULL
, options
, "data-file", bs
,
1618 &child_of_bds
, BDRV_CHILD_DATA
,
1625 if (s
->incompatible_features
& QCOW2_INCOMPAT_DATA_FILE
) {
1626 if (!s
->data_file
&& s
->image_data_file
) {
1627 s
->data_file
= bdrv_open_child(s
->image_data_file
, options
,
1628 "data-file", bs
, &child_of_bds
,
1629 BDRV_CHILD_DATA
, false, errp
);
1630 if (!s
->data_file
) {
1635 if (!s
->data_file
) {
1636 error_setg(errp
, "'data-file' is required for this image");
1642 bs
->file
->role
&= ~BDRV_CHILD_DATA
;
1644 /* Must succeed because we have given up permissions if anything */
1645 bdrv_child_refresh_perms(bs
, bs
->file
, &error_abort
);
1648 error_setg(errp
, "'data-file' can only be set for images with an "
1649 "external data file");
1654 s
->data_file
= bs
->file
;
1656 if (data_file_is_raw(bs
)) {
1657 error_setg(errp
, "data-file-raw requires a data file");
1663 /* qcow2_read_extension may have set up the crypto context
1664 * if the crypt method needs a header region, some methods
1665 * don't need header extensions, so must check here
1667 if (s
->crypt_method_header
&& !s
->crypto
) {
1668 if (s
->crypt_method_header
== QCOW_CRYPT_AES
) {
1669 unsigned int cflags
= 0;
1670 if (flags
& BDRV_O_NO_IO
) {
1671 cflags
|= QCRYPTO_BLOCK_OPEN_NO_IO
;
1673 s
->crypto
= qcrypto_block_open(s
->crypto_opts
, "encrypt.",
1675 QCOW2_MAX_THREADS
, errp
);
1680 } else if (!(flags
& BDRV_O_NO_IO
)) {
1681 error_setg(errp
, "Missing CRYPTO header for crypt method %d",
1682 s
->crypt_method_header
);
1688 /* read the backing file name */
1689 if (header
.backing_file_offset
!= 0) {
1690 len
= header
.backing_file_size
;
1691 if (len
> MIN(1023, s
->cluster_size
- header
.backing_file_offset
) ||
1692 len
>= sizeof(bs
->backing_file
)) {
1693 error_setg(errp
, "Backing file name too long");
1697 ret
= bdrv_pread(bs
->file
, header
.backing_file_offset
,
1698 bs
->auto_backing_file
, len
);
1700 error_setg_errno(errp
, -ret
, "Could not read backing file name");
1703 bs
->auto_backing_file
[len
] = '\0';
1704 pstrcpy(bs
->backing_file
, sizeof(bs
->backing_file
),
1705 bs
->auto_backing_file
);
1706 s
->image_backing_file
= g_strdup(bs
->auto_backing_file
);
1710 * Internal snapshots; skip reading them in check mode, because
1711 * we do not need them then, and we do not want to abort because
1712 * of a broken table.
1714 if (!(flags
& BDRV_O_CHECK
)) {
1715 s
->snapshots_offset
= header
.snapshots_offset
;
1716 s
->nb_snapshots
= header
.nb_snapshots
;
1718 ret
= qcow2_read_snapshots(bs
, errp
);
1724 /* Clear unknown autoclear feature bits */
1725 update_header
|= s
->autoclear_features
& ~QCOW2_AUTOCLEAR_MASK
;
1727 update_header
&& !bs
->read_only
&& !(flags
& BDRV_O_INACTIVE
);
1728 if (update_header
) {
1729 s
->autoclear_features
&= QCOW2_AUTOCLEAR_MASK
;
1732 /* == Handle persistent dirty bitmaps ==
1734 * We want load dirty bitmaps in three cases:
1736 * 1. Normal open of the disk in active mode, not related to invalidation
1739 * 2. Invalidation of the target vm after pre-copy phase of migration, if
1740 * bitmaps are _not_ migrating through migration channel, i.e.
1741 * 'dirty-bitmaps' capability is disabled.
1743 * 3. Invalidation of source vm after failed or canceled migration.
1744 * This is a very interesting case. There are two possible types of
1747 * A. Stored on inactivation and removed. They should be loaded from the
1750 * B. Not stored: not-persistent bitmaps and bitmaps, migrated through
1751 * the migration channel (with dirty-bitmaps capability).
1753 * On the other hand, there are two possible sub-cases:
1755 * 3.1 disk was changed by somebody else while were inactive. In this
1756 * case all in-RAM dirty bitmaps (both persistent and not) are
1757 * definitely invalid. And we don't have any method to determine
1760 * Simple and safe thing is to just drop all the bitmaps of type B on
1761 * inactivation. But in this case we lose bitmaps in valid 4.2 case.
1763 * On the other hand, resuming source vm, if disk was already changed
1764 * is a bad thing anyway: not only bitmaps, the whole vm state is
1765 * out of sync with disk.
1767 * This means, that user or management tool, who for some reason
1768 * decided to resume source vm, after disk was already changed by
1769 * target vm, should at least drop all dirty bitmaps by hand.
1771 * So, we can ignore this case for now, but TODO: "generation"
1772 * extension for qcow2, to determine, that image was changed after
1773 * last inactivation. And if it is changed, we will drop (or at least
1774 * mark as 'invalid' all the bitmaps of type B, both persistent
1777 * 3.2 disk was _not_ changed while were inactive. Bitmaps may be saved
1778 * to disk ('dirty-bitmaps' capability disabled), or not saved
1779 * ('dirty-bitmaps' capability enabled), but we don't need to care
1780 * of: let's load bitmaps as always: stored bitmaps will be loaded,
1781 * and not stored has flag IN_USE=1 in the image and will be skipped
1784 * One remaining possible case when we don't want load bitmaps:
1786 * 4. Open disk in inactive mode in target vm (bitmaps are migrating or
1787 * will be loaded on invalidation, no needs try loading them before)
1790 if (!(bdrv_get_flags(bs
) & BDRV_O_INACTIVE
)) {
1791 /* It's case 1, 2 or 3.2. Or 3.1 which is BUG in management layer. */
1792 bool header_updated
;
1793 if (!qcow2_load_dirty_bitmaps(bs
, &header_updated
, errp
)) {
1798 update_header
= update_header
&& !header_updated
;
1801 if (update_header
) {
1802 ret
= qcow2_update_header(bs
);
1804 error_setg_errno(errp
, -ret
, "Could not update qcow2 header");
1809 bs
->supported_zero_flags
= header
.version
>= 3 ?
1810 BDRV_REQ_MAY_UNMAP
| BDRV_REQ_NO_FALLBACK
: 0;
1811 bs
->supported_truncate_flags
= BDRV_REQ_ZERO_WRITE
;
1813 /* Repair image if dirty */
1814 if (!(flags
& (BDRV_O_CHECK
| BDRV_O_INACTIVE
)) && !bs
->read_only
&&
1815 (s
->incompatible_features
& QCOW2_INCOMPAT_DIRTY
)) {
1816 BdrvCheckResult result
= {0};
1818 ret
= qcow2_co_check_locked(bs
, &result
,
1819 BDRV_FIX_ERRORS
| BDRV_FIX_LEAKS
);
1820 if (ret
< 0 || result
.check_errors
) {
1824 error_setg_errno(errp
, -ret
, "Could not repair dirty image");
1831 BdrvCheckResult result
= {0};
1832 qcow2_check_refcounts(bs
, &result
, 0);
1836 qemu_co_queue_init(&s
->thread_task_queue
);
1841 g_free(s
->image_data_file
);
1842 if (has_data_file(bs
)) {
1843 bdrv_unref_child(bs
, s
->data_file
);
1844 s
->data_file
= NULL
;
1846 g_free(s
->unknown_header_fields
);
1847 cleanup_unknown_header_ext(bs
);
1848 qcow2_free_snapshots(bs
);
1849 qcow2_refcount_close(bs
);
1850 qemu_vfree(s
->l1_table
);
1851 /* else pre-write overlap checks in cache_destroy may crash */
1853 cache_clean_timer_del(bs
);
1854 if (s
->l2_table_cache
) {
1855 qcow2_cache_destroy(s
->l2_table_cache
);
1857 if (s
->refcount_block_cache
) {
1858 qcow2_cache_destroy(s
->refcount_block_cache
);
1860 qcrypto_block_free(s
->crypto
);
1861 qapi_free_QCryptoBlockOpenOptions(s
->crypto_opts
);
1865 typedef struct QCow2OpenCo
{
1866 BlockDriverState
*bs
;
1873 static void coroutine_fn
qcow2_open_entry(void *opaque
)
1875 QCow2OpenCo
*qoc
= opaque
;
1876 BDRVQcow2State
*s
= qoc
->bs
->opaque
;
1878 qemu_co_mutex_lock(&s
->lock
);
1879 qoc
->ret
= qcow2_do_open(qoc
->bs
, qoc
->options
, qoc
->flags
, qoc
->errp
);
1880 qemu_co_mutex_unlock(&s
->lock
);
1883 static int qcow2_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
1886 BDRVQcow2State
*s
= bs
->opaque
;
1895 bs
->file
= bdrv_open_child(NULL
, options
, "file", bs
, &child_of_bds
,
1896 BDRV_CHILD_IMAGE
, false, errp
);
1901 /* Initialise locks */
1902 qemu_co_mutex_init(&s
->lock
);
1904 if (qemu_in_coroutine()) {
1905 /* From bdrv_co_create. */
1906 qcow2_open_entry(&qoc
);
1908 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
1909 qemu_coroutine_enter(qemu_coroutine_create(qcow2_open_entry
, &qoc
));
1910 BDRV_POLL_WHILE(bs
, qoc
.ret
== -EINPROGRESS
);
1915 static void qcow2_refresh_limits(BlockDriverState
*bs
, Error
**errp
)
1917 BDRVQcow2State
*s
= bs
->opaque
;
1919 if (bs
->encrypted
) {
1920 /* Encryption works on a sector granularity */
1921 bs
->bl
.request_alignment
= qcrypto_block_get_sector_size(s
->crypto
);
1923 bs
->bl
.pwrite_zeroes_alignment
= s
->subcluster_size
;
1924 bs
->bl
.pdiscard_alignment
= s
->cluster_size
;
1927 static int qcow2_reopen_prepare(BDRVReopenState
*state
,
1928 BlockReopenQueue
*queue
, Error
**errp
)
1930 Qcow2ReopenState
*r
;
1933 r
= g_new0(Qcow2ReopenState
, 1);
1936 ret
= qcow2_update_options_prepare(state
->bs
, r
, state
->options
,
1937 state
->flags
, errp
);
1942 /* We need to write out any unwritten data if we reopen read-only. */
1943 if ((state
->flags
& BDRV_O_RDWR
) == 0) {
1944 ret
= qcow2_reopen_bitmaps_ro(state
->bs
, errp
);
1949 ret
= bdrv_flush(state
->bs
);
1954 ret
= qcow2_mark_clean(state
->bs
);
1963 qcow2_update_options_abort(state
->bs
, r
);
1968 static void qcow2_reopen_commit(BDRVReopenState
*state
)
1970 qcow2_update_options_commit(state
->bs
, state
->opaque
);
1971 g_free(state
->opaque
);
1974 static void qcow2_reopen_commit_post(BDRVReopenState
*state
)
1976 if (state
->flags
& BDRV_O_RDWR
) {
1977 Error
*local_err
= NULL
;
1979 if (qcow2_reopen_bitmaps_rw(state
->bs
, &local_err
) < 0) {
1981 * This is not fatal, bitmaps just left read-only, so all following
1982 * writes will fail. User can remove read-only bitmaps to unblock
1983 * writes or retry reopen.
1985 error_reportf_err(local_err
,
1986 "%s: Failed to make dirty bitmaps writable: ",
1987 bdrv_get_node_name(state
->bs
));
1992 static void qcow2_reopen_abort(BDRVReopenState
*state
)
1994 qcow2_update_options_abort(state
->bs
, state
->opaque
);
1995 g_free(state
->opaque
);
1998 static void qcow2_join_options(QDict
*options
, QDict
*old_options
)
2000 bool has_new_overlap_template
=
2001 qdict_haskey(options
, QCOW2_OPT_OVERLAP
) ||
2002 qdict_haskey(options
, QCOW2_OPT_OVERLAP_TEMPLATE
);
2003 bool has_new_total_cache_size
=
2004 qdict_haskey(options
, QCOW2_OPT_CACHE_SIZE
);
2005 bool has_all_cache_options
;
2007 /* New overlap template overrides all old overlap options */
2008 if (has_new_overlap_template
) {
2009 qdict_del(old_options
, QCOW2_OPT_OVERLAP
);
2010 qdict_del(old_options
, QCOW2_OPT_OVERLAP_TEMPLATE
);
2011 qdict_del(old_options
, QCOW2_OPT_OVERLAP_MAIN_HEADER
);
2012 qdict_del(old_options
, QCOW2_OPT_OVERLAP_ACTIVE_L1
);
2013 qdict_del(old_options
, QCOW2_OPT_OVERLAP_ACTIVE_L2
);
2014 qdict_del(old_options
, QCOW2_OPT_OVERLAP_REFCOUNT_TABLE
);
2015 qdict_del(old_options
, QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK
);
2016 qdict_del(old_options
, QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE
);
2017 qdict_del(old_options
, QCOW2_OPT_OVERLAP_INACTIVE_L1
);
2018 qdict_del(old_options
, QCOW2_OPT_OVERLAP_INACTIVE_L2
);
2021 /* New total cache size overrides all old options */
2022 if (qdict_haskey(options
, QCOW2_OPT_CACHE_SIZE
)) {
2023 qdict_del(old_options
, QCOW2_OPT_L2_CACHE_SIZE
);
2024 qdict_del(old_options
, QCOW2_OPT_REFCOUNT_CACHE_SIZE
);
2027 qdict_join(options
, old_options
, false);
2030 * If after merging all cache size options are set, an old total size is
2031 * overwritten. Do keep all options, however, if all three are new. The
2032 * resulting error message is what we want to happen.
2034 has_all_cache_options
=
2035 qdict_haskey(options
, QCOW2_OPT_CACHE_SIZE
) ||
2036 qdict_haskey(options
, QCOW2_OPT_L2_CACHE_SIZE
) ||
2037 qdict_haskey(options
, QCOW2_OPT_REFCOUNT_CACHE_SIZE
);
2039 if (has_all_cache_options
&& !has_new_total_cache_size
) {
2040 qdict_del(options
, QCOW2_OPT_CACHE_SIZE
);
2044 static int coroutine_fn
qcow2_co_block_status(BlockDriverState
*bs
,
2046 int64_t offset
, int64_t count
,
2047 int64_t *pnum
, int64_t *map
,
2048 BlockDriverState
**file
)
2050 BDRVQcow2State
*s
= bs
->opaque
;
2051 uint64_t host_offset
;
2053 QCow2SubclusterType type
;
2054 int ret
, status
= 0;
2056 qemu_co_mutex_lock(&s
->lock
);
2058 if (!s
->metadata_preallocation_checked
) {
2059 ret
= qcow2_detect_metadata_preallocation(bs
);
2060 s
->metadata_preallocation
= (ret
== 1);
2061 s
->metadata_preallocation_checked
= true;
2064 bytes
= MIN(INT_MAX
, count
);
2065 ret
= qcow2_get_host_offset(bs
, offset
, &bytes
, &host_offset
, &type
);
2066 qemu_co_mutex_unlock(&s
->lock
);
2073 if ((type
== QCOW2_SUBCLUSTER_NORMAL
||
2074 type
== QCOW2_SUBCLUSTER_ZERO_ALLOC
||
2075 type
== QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
) && !s
->crypto
) {
2077 *file
= s
->data_file
->bs
;
2078 status
|= BDRV_BLOCK_OFFSET_VALID
;
2080 if (type
== QCOW2_SUBCLUSTER_ZERO_PLAIN
||
2081 type
== QCOW2_SUBCLUSTER_ZERO_ALLOC
) {
2082 status
|= BDRV_BLOCK_ZERO
;
2083 } else if (type
!= QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
&&
2084 type
!= QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
) {
2085 status
|= BDRV_BLOCK_DATA
;
2087 if (s
->metadata_preallocation
&& (status
& BDRV_BLOCK_DATA
) &&
2088 (status
& BDRV_BLOCK_OFFSET_VALID
))
2090 status
|= BDRV_BLOCK_RECURSE
;
2095 static coroutine_fn
int qcow2_handle_l2meta(BlockDriverState
*bs
,
2096 QCowL2Meta
**pl2meta
,
2100 QCowL2Meta
*l2meta
= *pl2meta
;
2102 while (l2meta
!= NULL
) {
2106 ret
= qcow2_alloc_cluster_link_l2(bs
, l2meta
);
2111 qcow2_alloc_cluster_abort(bs
, l2meta
);
2114 /* Take the request off the list of running requests */
2115 QLIST_REMOVE(l2meta
, next_in_flight
);
2117 qemu_co_queue_restart_all(&l2meta
->dependent_requests
);
2119 next
= l2meta
->next
;
2128 static coroutine_fn
int
2129 qcow2_co_preadv_encrypted(BlockDriverState
*bs
,
2130 uint64_t host_offset
,
2134 uint64_t qiov_offset
)
2137 BDRVQcow2State
*s
= bs
->opaque
;
2140 assert(bs
->encrypted
&& s
->crypto
);
2141 assert(bytes
<= QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
2144 * For encrypted images, read everything into a temporary
2145 * contiguous buffer on which the AES functions can work.
2146 * Also, decryption in a separate buffer is better as it
2147 * prevents the guest from learning information about the
2148 * encrypted nature of the virtual disk.
2151 buf
= qemu_try_blockalign(s
->data_file
->bs
, bytes
);
2156 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_AIO
);
2157 ret
= bdrv_co_pread(s
->data_file
, host_offset
, bytes
, buf
, 0);
2162 if (qcow2_co_decrypt(bs
, host_offset
, offset
, buf
, bytes
) < 0)
2167 qemu_iovec_from_buf(qiov
, qiov_offset
, buf
, bytes
);
2175 typedef struct Qcow2AioTask
{
2178 BlockDriverState
*bs
;
2179 QCow2SubclusterType subcluster_type
; /* only for read */
2180 uint64_t host_offset
; /* or full descriptor in compressed clusters */
2184 uint64_t qiov_offset
;
2185 QCowL2Meta
*l2meta
; /* only for write */
2188 static coroutine_fn
int qcow2_co_preadv_task_entry(AioTask
*task
);
2189 static coroutine_fn
int qcow2_add_task(BlockDriverState
*bs
,
2192 QCow2SubclusterType subcluster_type
,
2193 uint64_t host_offset
,
2200 Qcow2AioTask local_task
;
2201 Qcow2AioTask
*task
= pool
? g_new(Qcow2AioTask
, 1) : &local_task
;
2203 *task
= (Qcow2AioTask
) {
2206 .subcluster_type
= subcluster_type
,
2208 .host_offset
= host_offset
,
2211 .qiov_offset
= qiov_offset
,
2215 trace_qcow2_add_task(qemu_coroutine_self(), bs
, pool
,
2216 func
== qcow2_co_preadv_task_entry
? "read" : "write",
2217 subcluster_type
, host_offset
, offset
, bytes
,
2221 return func(&task
->task
);
2224 aio_task_pool_start_task(pool
, &task
->task
);
2229 static coroutine_fn
int qcow2_co_preadv_task(BlockDriverState
*bs
,
2230 QCow2SubclusterType subc_type
,
2231 uint64_t host_offset
,
2232 uint64_t offset
, uint64_t bytes
,
2236 BDRVQcow2State
*s
= bs
->opaque
;
2238 switch (subc_type
) {
2239 case QCOW2_SUBCLUSTER_ZERO_PLAIN
:
2240 case QCOW2_SUBCLUSTER_ZERO_ALLOC
:
2241 /* Both zero types are handled in qcow2_co_preadv_part */
2242 g_assert_not_reached();
2244 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
:
2245 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
:
2246 assert(bs
->backing
); /* otherwise handled in qcow2_co_preadv_part */
2248 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_BACKING_AIO
);
2249 return bdrv_co_preadv_part(bs
->backing
, offset
, bytes
,
2250 qiov
, qiov_offset
, 0);
2252 case QCOW2_SUBCLUSTER_COMPRESSED
:
2253 return qcow2_co_preadv_compressed(bs
, host_offset
,
2254 offset
, bytes
, qiov
, qiov_offset
);
2256 case QCOW2_SUBCLUSTER_NORMAL
:
2257 if (bs
->encrypted
) {
2258 return qcow2_co_preadv_encrypted(bs
, host_offset
,
2259 offset
, bytes
, qiov
, qiov_offset
);
2262 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_AIO
);
2263 return bdrv_co_preadv_part(s
->data_file
, host_offset
,
2264 bytes
, qiov
, qiov_offset
, 0);
2267 g_assert_not_reached();
2270 g_assert_not_reached();
2273 static coroutine_fn
int qcow2_co_preadv_task_entry(AioTask
*task
)
2275 Qcow2AioTask
*t
= container_of(task
, Qcow2AioTask
, task
);
2279 return qcow2_co_preadv_task(t
->bs
, t
->subcluster_type
,
2280 t
->host_offset
, t
->offset
, t
->bytes
,
2281 t
->qiov
, t
->qiov_offset
);
2284 static coroutine_fn
int qcow2_co_preadv_part(BlockDriverState
*bs
,
2285 uint64_t offset
, uint64_t bytes
,
2287 size_t qiov_offset
, int flags
)
2289 BDRVQcow2State
*s
= bs
->opaque
;
2291 unsigned int cur_bytes
; /* number of bytes in current iteration */
2292 uint64_t host_offset
= 0;
2293 QCow2SubclusterType type
;
2294 AioTaskPool
*aio
= NULL
;
2296 while (bytes
!= 0 && aio_task_pool_status(aio
) == 0) {
2297 /* prepare next request */
2298 cur_bytes
= MIN(bytes
, INT_MAX
);
2300 cur_bytes
= MIN(cur_bytes
,
2301 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
2304 qemu_co_mutex_lock(&s
->lock
);
2305 ret
= qcow2_get_host_offset(bs
, offset
, &cur_bytes
,
2306 &host_offset
, &type
);
2307 qemu_co_mutex_unlock(&s
->lock
);
2312 if (type
== QCOW2_SUBCLUSTER_ZERO_PLAIN
||
2313 type
== QCOW2_SUBCLUSTER_ZERO_ALLOC
||
2314 (type
== QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
&& !bs
->backing
) ||
2315 (type
== QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
&& !bs
->backing
))
2317 qemu_iovec_memset(qiov
, qiov_offset
, 0, cur_bytes
);
2319 if (!aio
&& cur_bytes
!= bytes
) {
2320 aio
= aio_task_pool_new(QCOW2_MAX_WORKERS
);
2322 ret
= qcow2_add_task(bs
, aio
, qcow2_co_preadv_task_entry
, type
,
2323 host_offset
, offset
, cur_bytes
,
2324 qiov
, qiov_offset
, NULL
);
2331 offset
+= cur_bytes
;
2332 qiov_offset
+= cur_bytes
;
2337 aio_task_pool_wait_all(aio
);
2339 ret
= aio_task_pool_status(aio
);
2347 /* Check if it's possible to merge a write request with the writing of
2348 * the data from the COW regions */
2349 static bool merge_cow(uint64_t offset
, unsigned bytes
,
2350 QEMUIOVector
*qiov
, size_t qiov_offset
,
2355 for (m
= l2meta
; m
!= NULL
; m
= m
->next
) {
2356 /* If both COW regions are empty then there's nothing to merge */
2357 if (m
->cow_start
.nb_bytes
== 0 && m
->cow_end
.nb_bytes
== 0) {
2361 /* If COW regions are handled already, skip this too */
2367 * The write request should start immediately after the first
2368 * COW region. This does not always happen because the area
2369 * touched by the request can be larger than the one defined
2370 * by @m (a single request can span an area consisting of a
2371 * mix of previously unallocated and allocated clusters, that
2372 * is why @l2meta is a list).
2374 if (l2meta_cow_start(m
) + m
->cow_start
.nb_bytes
!= offset
) {
2375 /* In this case the request starts before this region */
2376 assert(offset
< l2meta_cow_start(m
));
2377 assert(m
->cow_start
.nb_bytes
== 0);
2381 /* The write request should end immediately before the second
2382 * COW region (see above for why it does not always happen) */
2383 if (m
->offset
+ m
->cow_end
.offset
!= offset
+ bytes
) {
2384 assert(offset
+ bytes
> m
->offset
+ m
->cow_end
.offset
);
2385 assert(m
->cow_end
.nb_bytes
== 0);
2389 /* Make sure that adding both COW regions to the QEMUIOVector
2390 * does not exceed IOV_MAX */
2391 if (qemu_iovec_subvec_niov(qiov
, qiov_offset
, bytes
) > IOV_MAX
- 2) {
2395 m
->data_qiov
= qiov
;
2396 m
->data_qiov_offset
= qiov_offset
;
2404 * Return 1 if the COW regions read as zeroes, 0 if not, < 0 on error.
2405 * Note that returning 0 does not guarantee non-zero data.
2407 static int is_zero_cow(BlockDriverState
*bs
, QCowL2Meta
*m
)
2410 * This check is designed for optimization shortcut so it must be
2412 * Instead of is_zero(), use bdrv_co_is_zero_fast() as it is
2413 * faster (but not as accurate and can result in false negatives).
2415 int ret
= bdrv_co_is_zero_fast(bs
, m
->offset
+ m
->cow_start
.offset
,
2416 m
->cow_start
.nb_bytes
);
2421 return bdrv_co_is_zero_fast(bs
, m
->offset
+ m
->cow_end
.offset
,
2422 m
->cow_end
.nb_bytes
);
2425 static int handle_alloc_space(BlockDriverState
*bs
, QCowL2Meta
*l2meta
)
2427 BDRVQcow2State
*s
= bs
->opaque
;
2430 if (!(s
->data_file
->bs
->supported_zero_flags
& BDRV_REQ_NO_FALLBACK
)) {
2434 if (bs
->encrypted
) {
2438 for (m
= l2meta
; m
!= NULL
; m
= m
->next
) {
2440 uint64_t start_offset
= m
->alloc_offset
+ m
->cow_start
.offset
;
2441 unsigned nb_bytes
= m
->cow_end
.offset
+ m
->cow_end
.nb_bytes
-
2442 m
->cow_start
.offset
;
2444 if (!m
->cow_start
.nb_bytes
&& !m
->cow_end
.nb_bytes
) {
2448 ret
= is_zero_cow(bs
, m
);
2451 } else if (ret
== 0) {
2456 * instead of writing zero COW buffers,
2457 * efficiently zero out the whole clusters
2460 ret
= qcow2_pre_write_overlap_check(bs
, 0, start_offset
, nb_bytes
,
2466 BLKDBG_EVENT(bs
->file
, BLKDBG_CLUSTER_ALLOC_SPACE
);
2467 ret
= bdrv_co_pwrite_zeroes(s
->data_file
, start_offset
, nb_bytes
,
2468 BDRV_REQ_NO_FALLBACK
);
2470 if (ret
!= -ENOTSUP
&& ret
!= -EAGAIN
) {
2476 trace_qcow2_skip_cow(qemu_coroutine_self(), m
->offset
, m
->nb_clusters
);
2483 * qcow2_co_pwritev_task
2484 * Called with s->lock unlocked
2485 * l2meta - if not NULL, qcow2_co_pwritev_task() will consume it. Caller must
2486 * not use it somehow after qcow2_co_pwritev_task() call
2488 static coroutine_fn
int qcow2_co_pwritev_task(BlockDriverState
*bs
,
2489 uint64_t host_offset
,
2490 uint64_t offset
, uint64_t bytes
,
2492 uint64_t qiov_offset
,
2496 BDRVQcow2State
*s
= bs
->opaque
;
2497 void *crypt_buf
= NULL
;
2498 QEMUIOVector encrypted_qiov
;
2500 if (bs
->encrypted
) {
2502 assert(bytes
<= QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
2503 crypt_buf
= qemu_try_blockalign(bs
->file
->bs
, bytes
);
2504 if (crypt_buf
== NULL
) {
2508 qemu_iovec_to_buf(qiov
, qiov_offset
, crypt_buf
, bytes
);
2510 if (qcow2_co_encrypt(bs
, host_offset
, offset
, crypt_buf
, bytes
) < 0) {
2515 qemu_iovec_init_buf(&encrypted_qiov
, crypt_buf
, bytes
);
2516 qiov
= &encrypted_qiov
;
2520 /* Try to efficiently initialize the physical space with zeroes */
2521 ret
= handle_alloc_space(bs
, l2meta
);
2527 * If we need to do COW, check if it's possible to merge the
2528 * writing of the guest data together with that of the COW regions.
2529 * If it's not possible (or not necessary) then write the
2532 if (!merge_cow(offset
, bytes
, qiov
, qiov_offset
, l2meta
)) {
2533 BLKDBG_EVENT(bs
->file
, BLKDBG_WRITE_AIO
);
2534 trace_qcow2_writev_data(qemu_coroutine_self(), host_offset
);
2535 ret
= bdrv_co_pwritev_part(s
->data_file
, host_offset
,
2536 bytes
, qiov
, qiov_offset
, 0);
2542 qemu_co_mutex_lock(&s
->lock
);
2544 ret
= qcow2_handle_l2meta(bs
, &l2meta
, true);
2548 qemu_co_mutex_lock(&s
->lock
);
2551 qcow2_handle_l2meta(bs
, &l2meta
, false);
2552 qemu_co_mutex_unlock(&s
->lock
);
2554 qemu_vfree(crypt_buf
);
2559 static coroutine_fn
int qcow2_co_pwritev_task_entry(AioTask
*task
)
2561 Qcow2AioTask
*t
= container_of(task
, Qcow2AioTask
, task
);
2563 assert(!t
->subcluster_type
);
2565 return qcow2_co_pwritev_task(t
->bs
, t
->host_offset
,
2566 t
->offset
, t
->bytes
, t
->qiov
, t
->qiov_offset
,
2570 static coroutine_fn
int qcow2_co_pwritev_part(
2571 BlockDriverState
*bs
, uint64_t offset
, uint64_t bytes
,
2572 QEMUIOVector
*qiov
, size_t qiov_offset
, int flags
)
2574 BDRVQcow2State
*s
= bs
->opaque
;
2575 int offset_in_cluster
;
2577 unsigned int cur_bytes
; /* number of sectors in current iteration */
2578 uint64_t host_offset
;
2579 QCowL2Meta
*l2meta
= NULL
;
2580 AioTaskPool
*aio
= NULL
;
2582 trace_qcow2_writev_start_req(qemu_coroutine_self(), offset
, bytes
);
2584 while (bytes
!= 0 && aio_task_pool_status(aio
) == 0) {
2588 trace_qcow2_writev_start_part(qemu_coroutine_self());
2589 offset_in_cluster
= offset_into_cluster(s
, offset
);
2590 cur_bytes
= MIN(bytes
, INT_MAX
);
2591 if (bs
->encrypted
) {
2592 cur_bytes
= MIN(cur_bytes
,
2593 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
2594 - offset_in_cluster
);
2597 qemu_co_mutex_lock(&s
->lock
);
2599 ret
= qcow2_alloc_host_offset(bs
, offset
, &cur_bytes
,
2600 &host_offset
, &l2meta
);
2605 ret
= qcow2_pre_write_overlap_check(bs
, 0, host_offset
,
2611 qemu_co_mutex_unlock(&s
->lock
);
2613 if (!aio
&& cur_bytes
!= bytes
) {
2614 aio
= aio_task_pool_new(QCOW2_MAX_WORKERS
);
2616 ret
= qcow2_add_task(bs
, aio
, qcow2_co_pwritev_task_entry
, 0,
2617 host_offset
, offset
,
2618 cur_bytes
, qiov
, qiov_offset
, l2meta
);
2619 l2meta
= NULL
; /* l2meta is consumed by qcow2_co_pwritev_task() */
2625 offset
+= cur_bytes
;
2626 qiov_offset
+= cur_bytes
;
2627 trace_qcow2_writev_done_part(qemu_coroutine_self(), cur_bytes
);
2631 qemu_co_mutex_lock(&s
->lock
);
2634 qcow2_handle_l2meta(bs
, &l2meta
, false);
2636 qemu_co_mutex_unlock(&s
->lock
);
2640 aio_task_pool_wait_all(aio
);
2642 ret
= aio_task_pool_status(aio
);
2647 trace_qcow2_writev_done_req(qemu_coroutine_self(), ret
);
2652 static int qcow2_inactivate(BlockDriverState
*bs
)
2654 BDRVQcow2State
*s
= bs
->opaque
;
2655 int ret
, result
= 0;
2656 Error
*local_err
= NULL
;
2658 qcow2_store_persistent_dirty_bitmaps(bs
, true, &local_err
);
2659 if (local_err
!= NULL
) {
2661 error_reportf_err(local_err
, "Lost persistent bitmaps during "
2662 "inactivation of node '%s': ",
2663 bdrv_get_device_or_node_name(bs
));
2666 ret
= qcow2_cache_flush(bs
, s
->l2_table_cache
);
2669 error_report("Failed to flush the L2 table cache: %s",
2673 ret
= qcow2_cache_flush(bs
, s
->refcount_block_cache
);
2676 error_report("Failed to flush the refcount block cache: %s",
2681 qcow2_mark_clean(bs
);
2687 static void qcow2_close(BlockDriverState
*bs
)
2689 BDRVQcow2State
*s
= bs
->opaque
;
2690 qemu_vfree(s
->l1_table
);
2691 /* else pre-write overlap checks in cache_destroy may crash */
2694 if (!(s
->flags
& BDRV_O_INACTIVE
)) {
2695 qcow2_inactivate(bs
);
2698 cache_clean_timer_del(bs
);
2699 qcow2_cache_destroy(s
->l2_table_cache
);
2700 qcow2_cache_destroy(s
->refcount_block_cache
);
2702 qcrypto_block_free(s
->crypto
);
2704 qapi_free_QCryptoBlockOpenOptions(s
->crypto_opts
);
2706 g_free(s
->unknown_header_fields
);
2707 cleanup_unknown_header_ext(bs
);
2709 g_free(s
->image_data_file
);
2710 g_free(s
->image_backing_file
);
2711 g_free(s
->image_backing_format
);
2713 if (has_data_file(bs
)) {
2714 bdrv_unref_child(bs
, s
->data_file
);
2715 s
->data_file
= NULL
;
2718 qcow2_refcount_close(bs
);
2719 qcow2_free_snapshots(bs
);
2722 static void coroutine_fn
qcow2_co_invalidate_cache(BlockDriverState
*bs
,
2726 BDRVQcow2State
*s
= bs
->opaque
;
2727 int flags
= s
->flags
;
2728 QCryptoBlock
*crypto
= NULL
;
2733 * Backing files are read-only which makes all of their metadata immutable,
2734 * that means we don't have to worry about reopening them here.
2742 memset(s
, 0, sizeof(BDRVQcow2State
));
2743 options
= qdict_clone_shallow(bs
->options
);
2745 flags
&= ~BDRV_O_INACTIVE
;
2746 qemu_co_mutex_lock(&s
->lock
);
2747 ret
= qcow2_do_open(bs
, options
, flags
, errp
);
2748 qemu_co_mutex_unlock(&s
->lock
);
2749 qobject_unref(options
);
2751 error_prepend(errp
, "Could not reopen qcow2 layer: ");
2759 static size_t header_ext_add(char *buf
, uint32_t magic
, const void *s
,
2760 size_t len
, size_t buflen
)
2762 QCowExtension
*ext_backing_fmt
= (QCowExtension
*) buf
;
2763 size_t ext_len
= sizeof(QCowExtension
) + ((len
+ 7) & ~7);
2765 if (buflen
< ext_len
) {
2769 *ext_backing_fmt
= (QCowExtension
) {
2770 .magic
= cpu_to_be32(magic
),
2771 .len
= cpu_to_be32(len
),
2775 memcpy(buf
+ sizeof(QCowExtension
), s
, len
);
2782 * Updates the qcow2 header, including the variable length parts of it, i.e.
2783 * the backing file name and all extensions. qcow2 was not designed to allow
2784 * such changes, so if we run out of space (we can only use the first cluster)
2785 * this function may fail.
2787 * Returns 0 on success, -errno in error cases.
2789 int qcow2_update_header(BlockDriverState
*bs
)
2791 BDRVQcow2State
*s
= bs
->opaque
;
2794 size_t buflen
= s
->cluster_size
;
2796 uint64_t total_size
;
2797 uint32_t refcount_table_clusters
;
2798 size_t header_length
;
2799 Qcow2UnknownHeaderExtension
*uext
;
2801 buf
= qemu_blockalign(bs
, buflen
);
2803 /* Header structure */
2804 header
= (QCowHeader
*) buf
;
2806 if (buflen
< sizeof(*header
)) {
2811 header_length
= sizeof(*header
) + s
->unknown_header_fields_size
;
2812 total_size
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
2813 refcount_table_clusters
= s
->refcount_table_size
>> (s
->cluster_bits
- 3);
2815 ret
= validate_compression_type(s
, NULL
);
2820 *header
= (QCowHeader
) {
2821 /* Version 2 fields */
2822 .magic
= cpu_to_be32(QCOW_MAGIC
),
2823 .version
= cpu_to_be32(s
->qcow_version
),
2824 .backing_file_offset
= 0,
2825 .backing_file_size
= 0,
2826 .cluster_bits
= cpu_to_be32(s
->cluster_bits
),
2827 .size
= cpu_to_be64(total_size
),
2828 .crypt_method
= cpu_to_be32(s
->crypt_method_header
),
2829 .l1_size
= cpu_to_be32(s
->l1_size
),
2830 .l1_table_offset
= cpu_to_be64(s
->l1_table_offset
),
2831 .refcount_table_offset
= cpu_to_be64(s
->refcount_table_offset
),
2832 .refcount_table_clusters
= cpu_to_be32(refcount_table_clusters
),
2833 .nb_snapshots
= cpu_to_be32(s
->nb_snapshots
),
2834 .snapshots_offset
= cpu_to_be64(s
->snapshots_offset
),
2836 /* Version 3 fields */
2837 .incompatible_features
= cpu_to_be64(s
->incompatible_features
),
2838 .compatible_features
= cpu_to_be64(s
->compatible_features
),
2839 .autoclear_features
= cpu_to_be64(s
->autoclear_features
),
2840 .refcount_order
= cpu_to_be32(s
->refcount_order
),
2841 .header_length
= cpu_to_be32(header_length
),
2842 .compression_type
= s
->compression_type
,
2845 /* For older versions, write a shorter header */
2846 switch (s
->qcow_version
) {
2848 ret
= offsetof(QCowHeader
, incompatible_features
);
2851 ret
= sizeof(*header
);
2860 memset(buf
, 0, buflen
);
2862 /* Preserve any unknown field in the header */
2863 if (s
->unknown_header_fields_size
) {
2864 if (buflen
< s
->unknown_header_fields_size
) {
2869 memcpy(buf
, s
->unknown_header_fields
, s
->unknown_header_fields_size
);
2870 buf
+= s
->unknown_header_fields_size
;
2871 buflen
-= s
->unknown_header_fields_size
;
2874 /* Backing file format header extension */
2875 if (s
->image_backing_format
) {
2876 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_BACKING_FORMAT
,
2877 s
->image_backing_format
,
2878 strlen(s
->image_backing_format
),
2888 /* External data file header extension */
2889 if (has_data_file(bs
) && s
->image_data_file
) {
2890 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_DATA_FILE
,
2891 s
->image_data_file
, strlen(s
->image_data_file
),
2901 /* Full disk encryption header pointer extension */
2902 if (s
->crypto_header
.offset
!= 0) {
2903 s
->crypto_header
.offset
= cpu_to_be64(s
->crypto_header
.offset
);
2904 s
->crypto_header
.length
= cpu_to_be64(s
->crypto_header
.length
);
2905 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_CRYPTO_HEADER
,
2906 &s
->crypto_header
, sizeof(s
->crypto_header
),
2908 s
->crypto_header
.offset
= be64_to_cpu(s
->crypto_header
.offset
);
2909 s
->crypto_header
.length
= be64_to_cpu(s
->crypto_header
.length
);
2918 * Feature table. A mere 8 feature names occupies 392 bytes, and
2919 * when coupled with the v3 minimum header of 104 bytes plus the
2920 * 8-byte end-of-extension marker, that would leave only 8 bytes
2921 * for a backing file name in an image with 512-byte clusters.
2922 * Thus, we choose to omit this header for cluster sizes 4k and
2925 if (s
->qcow_version
>= 3 && s
->cluster_size
> 4096) {
2926 static const Qcow2Feature features
[] = {
2928 .type
= QCOW2_FEAT_TYPE_INCOMPATIBLE
,
2929 .bit
= QCOW2_INCOMPAT_DIRTY_BITNR
,
2930 .name
= "dirty bit",
2933 .type
= QCOW2_FEAT_TYPE_INCOMPATIBLE
,
2934 .bit
= QCOW2_INCOMPAT_CORRUPT_BITNR
,
2935 .name
= "corrupt bit",
2938 .type
= QCOW2_FEAT_TYPE_INCOMPATIBLE
,
2939 .bit
= QCOW2_INCOMPAT_DATA_FILE_BITNR
,
2940 .name
= "external data file",
2943 .type
= QCOW2_FEAT_TYPE_INCOMPATIBLE
,
2944 .bit
= QCOW2_INCOMPAT_COMPRESSION_BITNR
,
2945 .name
= "compression type",
2948 .type
= QCOW2_FEAT_TYPE_INCOMPATIBLE
,
2949 .bit
= QCOW2_INCOMPAT_EXTL2_BITNR
,
2950 .name
= "extended L2 entries",
2953 .type
= QCOW2_FEAT_TYPE_COMPATIBLE
,
2954 .bit
= QCOW2_COMPAT_LAZY_REFCOUNTS_BITNR
,
2955 .name
= "lazy refcounts",
2958 .type
= QCOW2_FEAT_TYPE_AUTOCLEAR
,
2959 .bit
= QCOW2_AUTOCLEAR_BITMAPS_BITNR
,
2963 .type
= QCOW2_FEAT_TYPE_AUTOCLEAR
,
2964 .bit
= QCOW2_AUTOCLEAR_DATA_FILE_RAW_BITNR
,
2965 .name
= "raw external data",
2969 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_FEATURE_TABLE
,
2970 features
, sizeof(features
), buflen
);
2978 /* Bitmap extension */
2979 if (s
->nb_bitmaps
> 0) {
2980 Qcow2BitmapHeaderExt bitmaps_header
= {
2981 .nb_bitmaps
= cpu_to_be32(s
->nb_bitmaps
),
2982 .bitmap_directory_size
=
2983 cpu_to_be64(s
->bitmap_directory_size
),
2984 .bitmap_directory_offset
=
2985 cpu_to_be64(s
->bitmap_directory_offset
)
2987 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_BITMAPS
,
2988 &bitmaps_header
, sizeof(bitmaps_header
),
2997 /* Keep unknown header extensions */
2998 QLIST_FOREACH(uext
, &s
->unknown_header_ext
, next
) {
2999 ret
= header_ext_add(buf
, uext
->magic
, uext
->data
, uext
->len
, buflen
);
3008 /* End of header extensions */
3009 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_END
, NULL
, 0, buflen
);
3017 /* Backing file name */
3018 if (s
->image_backing_file
) {
3019 size_t backing_file_len
= strlen(s
->image_backing_file
);
3021 if (buflen
< backing_file_len
) {
3026 /* Using strncpy is ok here, since buf is not NUL-terminated. */
3027 strncpy(buf
, s
->image_backing_file
, buflen
);
3029 header
->backing_file_offset
= cpu_to_be64(buf
- ((char*) header
));
3030 header
->backing_file_size
= cpu_to_be32(backing_file_len
);
3033 /* Write the new header */
3034 ret
= bdrv_pwrite(bs
->file
, 0, header
, s
->cluster_size
);
3045 static int qcow2_change_backing_file(BlockDriverState
*bs
,
3046 const char *backing_file
, const char *backing_fmt
)
3048 BDRVQcow2State
*s
= bs
->opaque
;
3050 /* Adding a backing file means that the external data file alone won't be
3051 * enough to make sense of the content */
3052 if (backing_file
&& data_file_is_raw(bs
)) {
3056 if (backing_file
&& strlen(backing_file
) > 1023) {
3060 pstrcpy(bs
->auto_backing_file
, sizeof(bs
->auto_backing_file
),
3061 backing_file
?: "");
3062 pstrcpy(bs
->backing_file
, sizeof(bs
->backing_file
), backing_file
?: "");
3063 pstrcpy(bs
->backing_format
, sizeof(bs
->backing_format
), backing_fmt
?: "");
3065 g_free(s
->image_backing_file
);
3066 g_free(s
->image_backing_format
);
3068 s
->image_backing_file
= backing_file
? g_strdup(bs
->backing_file
) : NULL
;
3069 s
->image_backing_format
= backing_fmt
? g_strdup(bs
->backing_format
) : NULL
;
3071 return qcow2_update_header(bs
);
3074 static int qcow2_set_up_encryption(BlockDriverState
*bs
,
3075 QCryptoBlockCreateOptions
*cryptoopts
,
3078 BDRVQcow2State
*s
= bs
->opaque
;
3079 QCryptoBlock
*crypto
= NULL
;
3082 switch (cryptoopts
->format
) {
3083 case Q_CRYPTO_BLOCK_FORMAT_LUKS
:
3084 fmt
= QCOW_CRYPT_LUKS
;
3086 case Q_CRYPTO_BLOCK_FORMAT_QCOW
:
3087 fmt
= QCOW_CRYPT_AES
;
3090 error_setg(errp
, "Crypto format not supported in qcow2");
3094 s
->crypt_method_header
= fmt
;
3096 crypto
= qcrypto_block_create(cryptoopts
, "encrypt.",
3097 qcow2_crypto_hdr_init_func
,
3098 qcow2_crypto_hdr_write_func
,
3104 ret
= qcow2_update_header(bs
);
3106 error_setg_errno(errp
, -ret
, "Could not write encryption header");
3112 qcrypto_block_free(crypto
);
3117 * Preallocates metadata structures for data clusters between @offset (in the
3118 * guest disk) and @new_length (which is thus generally the new guest disk
3121 * Returns: 0 on success, -errno on failure.
3123 static int coroutine_fn
preallocate_co(BlockDriverState
*bs
, uint64_t offset
,
3124 uint64_t new_length
, PreallocMode mode
,
3127 BDRVQcow2State
*s
= bs
->opaque
;
3129 uint64_t host_offset
= 0;
3130 int64_t file_length
;
3131 unsigned int cur_bytes
;
3133 QCowL2Meta
*meta
= NULL
, *m
;
3135 assert(offset
<= new_length
);
3136 bytes
= new_length
- offset
;
3139 cur_bytes
= MIN(bytes
, QEMU_ALIGN_DOWN(INT_MAX
, s
->cluster_size
));
3140 ret
= qcow2_alloc_host_offset(bs
, offset
, &cur_bytes
,
3141 &host_offset
, &meta
);
3143 error_setg_errno(errp
, -ret
, "Allocating clusters failed");
3147 for (m
= meta
; m
!= NULL
; m
= m
->next
) {
3151 ret
= qcow2_handle_l2meta(bs
, &meta
, true);
3153 error_setg_errno(errp
, -ret
, "Mapping clusters failed");
3157 /* TODO Preallocate data if requested */
3160 offset
+= cur_bytes
;
3164 * It is expected that the image file is large enough to actually contain
3165 * all of the allocated clusters (otherwise we get failing reads after
3166 * EOF). Extend the image to the last allocated sector.
3168 file_length
= bdrv_getlength(s
->data_file
->bs
);
3169 if (file_length
< 0) {
3170 error_setg_errno(errp
, -file_length
, "Could not get file size");
3175 if (host_offset
+ cur_bytes
> file_length
) {
3176 if (mode
== PREALLOC_MODE_METADATA
) {
3177 mode
= PREALLOC_MODE_OFF
;
3179 ret
= bdrv_co_truncate(s
->data_file
, host_offset
+ cur_bytes
, false,
3189 qcow2_handle_l2meta(bs
, &meta
, false);
3193 /* qcow2_refcount_metadata_size:
3194 * @clusters: number of clusters to refcount (including data and L1/L2 tables)
3195 * @cluster_size: size of a cluster, in bytes
3196 * @refcount_order: refcount bits power-of-2 exponent
3197 * @generous_increase: allow for the refcount table to be 1.5x as large as it
3200 * Returns: Number of bytes required for refcount blocks and table metadata.
3202 int64_t qcow2_refcount_metadata_size(int64_t clusters
, size_t cluster_size
,
3203 int refcount_order
, bool generous_increase
,
3204 uint64_t *refblock_count
)
3207 * Every host cluster is reference-counted, including metadata (even
3208 * refcount metadata is recursively included).
3210 * An accurate formula for the size of refcount metadata size is difficult
3211 * to derive. An easier method of calculation is finding the fixed point
3212 * where no further refcount blocks or table clusters are required to
3213 * reference count every cluster.
3215 int64_t blocks_per_table_cluster
= cluster_size
/ REFTABLE_ENTRY_SIZE
;
3216 int64_t refcounts_per_block
= cluster_size
* 8 / (1 << refcount_order
);
3217 int64_t table
= 0; /* number of refcount table clusters */
3218 int64_t blocks
= 0; /* number of refcount block clusters */
3224 blocks
= DIV_ROUND_UP(clusters
+ table
+ blocks
, refcounts_per_block
);
3225 table
= DIV_ROUND_UP(blocks
, blocks_per_table_cluster
);
3226 n
= clusters
+ blocks
+ table
;
3228 if (n
== last
&& generous_increase
) {
3229 clusters
+= DIV_ROUND_UP(table
, 2);
3230 n
= 0; /* force another loop */
3231 generous_increase
= false;
3233 } while (n
!= last
);
3235 if (refblock_count
) {
3236 *refblock_count
= blocks
;
3239 return (blocks
+ table
) * cluster_size
;
3243 * qcow2_calc_prealloc_size:
3244 * @total_size: virtual disk size in bytes
3245 * @cluster_size: cluster size in bytes
3246 * @refcount_order: refcount bits power-of-2 exponent
3247 * @extended_l2: true if the image has extended L2 entries
3249 * Returns: Total number of bytes required for the fully allocated image
3250 * (including metadata).
3252 static int64_t qcow2_calc_prealloc_size(int64_t total_size
,
3253 size_t cluster_size
,
3257 int64_t meta_size
= 0;
3258 uint64_t nl1e
, nl2e
;
3259 int64_t aligned_total_size
= ROUND_UP(total_size
, cluster_size
);
3260 size_t l2e_size
= extended_l2
? L2E_SIZE_EXTENDED
: L2E_SIZE_NORMAL
;
3262 /* header: 1 cluster */
3263 meta_size
+= cluster_size
;
3265 /* total size of L2 tables */
3266 nl2e
= aligned_total_size
/ cluster_size
;
3267 nl2e
= ROUND_UP(nl2e
, cluster_size
/ l2e_size
);
3268 meta_size
+= nl2e
* l2e_size
;
3270 /* total size of L1 tables */
3271 nl1e
= nl2e
* l2e_size
/ cluster_size
;
3272 nl1e
= ROUND_UP(nl1e
, cluster_size
/ L1E_SIZE
);
3273 meta_size
+= nl1e
* L1E_SIZE
;
3275 /* total size of refcount table and blocks */
3276 meta_size
+= qcow2_refcount_metadata_size(
3277 (meta_size
+ aligned_total_size
) / cluster_size
,
3278 cluster_size
, refcount_order
, false, NULL
);
3280 return meta_size
+ aligned_total_size
;
3283 static bool validate_cluster_size(size_t cluster_size
, bool extended_l2
,
3286 int cluster_bits
= ctz32(cluster_size
);
3287 if (cluster_bits
< MIN_CLUSTER_BITS
|| cluster_bits
> MAX_CLUSTER_BITS
||
3288 (1 << cluster_bits
) != cluster_size
)
3290 error_setg(errp
, "Cluster size must be a power of two between %d and "
3291 "%dk", 1 << MIN_CLUSTER_BITS
, 1 << (MAX_CLUSTER_BITS
- 10));
3296 unsigned min_cluster_size
=
3297 (1 << MIN_CLUSTER_BITS
) * QCOW_EXTL2_SUBCLUSTERS_PER_CLUSTER
;
3298 if (cluster_size
< min_cluster_size
) {
3299 error_setg(errp
, "Extended L2 entries are only supported with "
3300 "cluster sizes of at least %u bytes", min_cluster_size
);
3308 static size_t qcow2_opt_get_cluster_size_del(QemuOpts
*opts
, bool extended_l2
,
3311 size_t cluster_size
;
3313 cluster_size
= qemu_opt_get_size_del(opts
, BLOCK_OPT_CLUSTER_SIZE
,
3314 DEFAULT_CLUSTER_SIZE
);
3315 if (!validate_cluster_size(cluster_size
, extended_l2
, errp
)) {
3318 return cluster_size
;
3321 static int qcow2_opt_get_version_del(QemuOpts
*opts
, Error
**errp
)
3326 buf
= qemu_opt_get_del(opts
, BLOCK_OPT_COMPAT_LEVEL
);
3328 ret
= 3; /* default */
3329 } else if (!strcmp(buf
, "0.10")) {
3331 } else if (!strcmp(buf
, "1.1")) {
3334 error_setg(errp
, "Invalid compatibility level: '%s'", buf
);
3341 static uint64_t qcow2_opt_get_refcount_bits_del(QemuOpts
*opts
, int version
,
3344 uint64_t refcount_bits
;
3346 refcount_bits
= qemu_opt_get_number_del(opts
, BLOCK_OPT_REFCOUNT_BITS
, 16);
3347 if (refcount_bits
> 64 || !is_power_of_2(refcount_bits
)) {
3348 error_setg(errp
, "Refcount width must be a power of two and may not "
3353 if (version
< 3 && refcount_bits
!= 16) {
3354 error_setg(errp
, "Different refcount widths than 16 bits require "
3355 "compatibility level 1.1 or above (use compat=1.1 or "
3360 return refcount_bits
;
3363 static int coroutine_fn
3364 qcow2_co_create(BlockdevCreateOptions
*create_options
, Error
**errp
)
3366 BlockdevCreateOptionsQcow2
*qcow2_opts
;
3370 * Open the image file and write a minimal qcow2 header.
3372 * We keep things simple and start with a zero-sized image. We also
3373 * do without refcount blocks or a L1 table for now. We'll fix the
3374 * inconsistency later.
3376 * We do need a refcount table because growing the refcount table means
3377 * allocating two new refcount blocks - the second of which would be at
3378 * 2 GB for 64k clusters, and we don't want to have a 2 GB initial file
3379 * size for any qcow2 image.
3381 BlockBackend
*blk
= NULL
;
3382 BlockDriverState
*bs
= NULL
;
3383 BlockDriverState
*data_bs
= NULL
;
3385 size_t cluster_size
;
3388 uint64_t *refcount_table
;
3390 uint8_t compression_type
= QCOW2_COMPRESSION_TYPE_ZLIB
;
3392 assert(create_options
->driver
== BLOCKDEV_DRIVER_QCOW2
);
3393 qcow2_opts
= &create_options
->u
.qcow2
;
3395 bs
= bdrv_open_blockdev_ref(qcow2_opts
->file
, errp
);
3400 /* Validate options and set default values */
3401 if (!QEMU_IS_ALIGNED(qcow2_opts
->size
, BDRV_SECTOR_SIZE
)) {
3402 error_setg(errp
, "Image size must be a multiple of %u bytes",
3403 (unsigned) BDRV_SECTOR_SIZE
);
3408 if (qcow2_opts
->has_version
) {
3409 switch (qcow2_opts
->version
) {
3410 case BLOCKDEV_QCOW2_VERSION_V2
:
3413 case BLOCKDEV_QCOW2_VERSION_V3
:
3417 g_assert_not_reached();
3423 if (qcow2_opts
->has_cluster_size
) {
3424 cluster_size
= qcow2_opts
->cluster_size
;
3426 cluster_size
= DEFAULT_CLUSTER_SIZE
;
3429 if (!qcow2_opts
->has_extended_l2
) {
3430 qcow2_opts
->extended_l2
= false;
3432 if (qcow2_opts
->extended_l2
) {
3434 error_setg(errp
, "Extended L2 entries are only supported with "
3435 "compatibility level 1.1 and above (use version=v3 or "
3442 if (!validate_cluster_size(cluster_size
, qcow2_opts
->extended_l2
, errp
)) {
3447 if (!qcow2_opts
->has_preallocation
) {
3448 qcow2_opts
->preallocation
= PREALLOC_MODE_OFF
;
3450 if (qcow2_opts
->has_backing_file
&&
3451 qcow2_opts
->preallocation
!= PREALLOC_MODE_OFF
&&
3452 !qcow2_opts
->extended_l2
)
3454 error_setg(errp
, "Backing file and preallocation can only be used at "
3455 "the same time if extended_l2 is on");
3459 if (qcow2_opts
->has_backing_fmt
&& !qcow2_opts
->has_backing_file
) {
3460 error_setg(errp
, "Backing format cannot be used without backing file");
3465 if (!qcow2_opts
->has_lazy_refcounts
) {
3466 qcow2_opts
->lazy_refcounts
= false;
3468 if (version
< 3 && qcow2_opts
->lazy_refcounts
) {
3469 error_setg(errp
, "Lazy refcounts only supported with compatibility "
3470 "level 1.1 and above (use version=v3 or greater)");
3475 if (!qcow2_opts
->has_refcount_bits
) {
3476 qcow2_opts
->refcount_bits
= 16;
3478 if (qcow2_opts
->refcount_bits
> 64 ||
3479 !is_power_of_2(qcow2_opts
->refcount_bits
))
3481 error_setg(errp
, "Refcount width must be a power of two and may not "
3486 if (version
< 3 && qcow2_opts
->refcount_bits
!= 16) {
3487 error_setg(errp
, "Different refcount widths than 16 bits require "
3488 "compatibility level 1.1 or above (use version=v3 or "
3493 refcount_order
= ctz32(qcow2_opts
->refcount_bits
);
3495 if (qcow2_opts
->data_file_raw
&& !qcow2_opts
->data_file
) {
3496 error_setg(errp
, "data-file-raw requires data-file");
3500 if (qcow2_opts
->data_file_raw
&& qcow2_opts
->has_backing_file
) {
3501 error_setg(errp
, "Backing file and data-file-raw cannot be used at "
3506 if (qcow2_opts
->data_file_raw
&&
3507 qcow2_opts
->preallocation
== PREALLOC_MODE_OFF
)
3510 * data-file-raw means that "the external data file can be
3511 * read as a consistent standalone raw image without looking
3512 * at the qcow2 metadata." It does not say that the metadata
3513 * must be ignored, though (and the qcow2 driver in fact does
3514 * not ignore it), so the L1/L2 tables must be present and
3515 * give a 1:1 mapping, so you get the same result regardless
3516 * of whether you look at the metadata or whether you ignore
3519 qcow2_opts
->preallocation
= PREALLOC_MODE_METADATA
;
3522 * Cannot use preallocation with backing files, but giving a
3523 * backing file when specifying data_file_raw is an error
3526 assert(!qcow2_opts
->has_backing_file
);
3529 if (qcow2_opts
->data_file
) {
3531 error_setg(errp
, "External data files are only supported with "
3532 "compatibility level 1.1 and above (use version=v3 or "
3537 data_bs
= bdrv_open_blockdev_ref(qcow2_opts
->data_file
, errp
);
3538 if (data_bs
== NULL
) {
3544 if (qcow2_opts
->has_compression_type
&&
3545 qcow2_opts
->compression_type
!= QCOW2_COMPRESSION_TYPE_ZLIB
) {
3550 error_setg(errp
, "Non-zlib compression type is only supported with "
3551 "compatibility level 1.1 and above (use version=v3 or "
3556 switch (qcow2_opts
->compression_type
) {
3558 case QCOW2_COMPRESSION_TYPE_ZSTD
:
3562 error_setg(errp
, "Unknown compression type");
3566 compression_type
= qcow2_opts
->compression_type
;
3569 /* Create BlockBackend to write to the image */
3570 blk
= blk_new_with_bs(bs
, BLK_PERM_WRITE
| BLK_PERM_RESIZE
, BLK_PERM_ALL
,
3576 blk_set_allow_write_beyond_eof(blk
, true);
3578 /* Write the header */
3579 QEMU_BUILD_BUG_ON((1 << MIN_CLUSTER_BITS
) < sizeof(*header
));
3580 header
= g_malloc0(cluster_size
);
3581 *header
= (QCowHeader
) {
3582 .magic
= cpu_to_be32(QCOW_MAGIC
),
3583 .version
= cpu_to_be32(version
),
3584 .cluster_bits
= cpu_to_be32(ctz32(cluster_size
)),
3585 .size
= cpu_to_be64(0),
3586 .l1_table_offset
= cpu_to_be64(0),
3587 .l1_size
= cpu_to_be32(0),
3588 .refcount_table_offset
= cpu_to_be64(cluster_size
),
3589 .refcount_table_clusters
= cpu_to_be32(1),
3590 .refcount_order
= cpu_to_be32(refcount_order
),
3591 /* don't deal with endianness since compression_type is 1 byte long */
3592 .compression_type
= compression_type
,
3593 .header_length
= cpu_to_be32(sizeof(*header
)),
3596 /* We'll update this to correct value later */
3597 header
->crypt_method
= cpu_to_be32(QCOW_CRYPT_NONE
);
3599 if (qcow2_opts
->lazy_refcounts
) {
3600 header
->compatible_features
|=
3601 cpu_to_be64(QCOW2_COMPAT_LAZY_REFCOUNTS
);
3604 header
->incompatible_features
|=
3605 cpu_to_be64(QCOW2_INCOMPAT_DATA_FILE
);
3607 if (qcow2_opts
->data_file_raw
) {
3608 header
->autoclear_features
|=
3609 cpu_to_be64(QCOW2_AUTOCLEAR_DATA_FILE_RAW
);
3611 if (compression_type
!= QCOW2_COMPRESSION_TYPE_ZLIB
) {
3612 header
->incompatible_features
|=
3613 cpu_to_be64(QCOW2_INCOMPAT_COMPRESSION
);
3616 if (qcow2_opts
->extended_l2
) {
3617 header
->incompatible_features
|=
3618 cpu_to_be64(QCOW2_INCOMPAT_EXTL2
);
3621 ret
= blk_pwrite(blk
, 0, header
, cluster_size
, 0);
3624 error_setg_errno(errp
, -ret
, "Could not write qcow2 header");
3628 /* Write a refcount table with one refcount block */
3629 refcount_table
= g_malloc0(2 * cluster_size
);
3630 refcount_table
[0] = cpu_to_be64(2 * cluster_size
);
3631 ret
= blk_pwrite(blk
, cluster_size
, refcount_table
, 2 * cluster_size
, 0);
3632 g_free(refcount_table
);
3635 error_setg_errno(errp
, -ret
, "Could not write refcount table");
3643 * And now open the image and make it consistent first (i.e. increase the
3644 * refcount of the cluster that is occupied by the header and the refcount
3647 options
= qdict_new();
3648 qdict_put_str(options
, "driver", "qcow2");
3649 qdict_put_str(options
, "file", bs
->node_name
);
3651 qdict_put_str(options
, "data-file", data_bs
->node_name
);
3653 blk
= blk_new_open(NULL
, NULL
, options
,
3654 BDRV_O_RDWR
| BDRV_O_RESIZE
| BDRV_O_NO_FLUSH
,
3661 ret
= qcow2_alloc_clusters(blk_bs(blk
), 3 * cluster_size
);
3663 error_setg_errno(errp
, -ret
, "Could not allocate clusters for qcow2 "
3664 "header and refcount table");
3667 } else if (ret
!= 0) {
3668 error_report("Huh, first cluster in empty image is already in use?");
3672 /* Set the external data file if necessary */
3674 BDRVQcow2State
*s
= blk_bs(blk
)->opaque
;
3675 s
->image_data_file
= g_strdup(data_bs
->filename
);
3678 /* Create a full header (including things like feature table) */
3679 ret
= qcow2_update_header(blk_bs(blk
));
3681 error_setg_errno(errp
, -ret
, "Could not update qcow2 header");
3685 /* Okay, now that we have a valid image, let's give it the right size */
3686 ret
= blk_truncate(blk
, qcow2_opts
->size
, false, qcow2_opts
->preallocation
,
3689 error_prepend(errp
, "Could not resize image: ");
3693 /* Want a backing file? There you go. */
3694 if (qcow2_opts
->has_backing_file
) {
3695 const char *backing_format
= NULL
;
3697 if (qcow2_opts
->has_backing_fmt
) {
3698 backing_format
= BlockdevDriver_str(qcow2_opts
->backing_fmt
);
3701 ret
= bdrv_change_backing_file(blk_bs(blk
), qcow2_opts
->backing_file
,
3702 backing_format
, false);
3704 error_setg_errno(errp
, -ret
, "Could not assign backing file '%s' "
3705 "with format '%s'", qcow2_opts
->backing_file
,
3711 /* Want encryption? There you go. */
3712 if (qcow2_opts
->has_encrypt
) {
3713 ret
= qcow2_set_up_encryption(blk_bs(blk
), qcow2_opts
->encrypt
, errp
);
3722 /* Reopen the image without BDRV_O_NO_FLUSH to flush it before returning.
3723 * Using BDRV_O_NO_IO, since encryption is now setup we don't want to
3724 * have to setup decryption context. We're not doing any I/O on the top
3725 * level BlockDriverState, only lower layers, where BDRV_O_NO_IO does
3728 options
= qdict_new();
3729 qdict_put_str(options
, "driver", "qcow2");
3730 qdict_put_str(options
, "file", bs
->node_name
);
3732 qdict_put_str(options
, "data-file", data_bs
->node_name
);
3734 blk
= blk_new_open(NULL
, NULL
, options
,
3735 BDRV_O_RDWR
| BDRV_O_NO_BACKING
| BDRV_O_NO_IO
,
3746 bdrv_unref(data_bs
);
3750 static int coroutine_fn
qcow2_co_create_opts(BlockDriver
*drv
,
3751 const char *filename
,
3755 BlockdevCreateOptions
*create_options
= NULL
;
3758 BlockDriverState
*bs
= NULL
;
3759 BlockDriverState
*data_bs
= NULL
;
3763 /* Only the keyval visitor supports the dotted syntax needed for
3764 * encryption, so go through a QDict before getting a QAPI type. Ignore
3765 * options meant for the protocol layer so that the visitor doesn't
3767 qdict
= qemu_opts_to_qdict_filtered(opts
, NULL
, bdrv_qcow2
.create_opts
,
3770 /* Handle encryption options */
3771 val
= qdict_get_try_str(qdict
, BLOCK_OPT_ENCRYPT
);
3772 if (val
&& !strcmp(val
, "on")) {
3773 qdict_put_str(qdict
, BLOCK_OPT_ENCRYPT
, "qcow");
3774 } else if (val
&& !strcmp(val
, "off")) {
3775 qdict_del(qdict
, BLOCK_OPT_ENCRYPT
);
3778 val
= qdict_get_try_str(qdict
, BLOCK_OPT_ENCRYPT_FORMAT
);
3779 if (val
&& !strcmp(val
, "aes")) {
3780 qdict_put_str(qdict
, BLOCK_OPT_ENCRYPT_FORMAT
, "qcow");
3783 /* Convert compat=0.10/1.1 into compat=v2/v3, to be renamed into
3784 * version=v2/v3 below. */
3785 val
= qdict_get_try_str(qdict
, BLOCK_OPT_COMPAT_LEVEL
);
3786 if (val
&& !strcmp(val
, "0.10")) {
3787 qdict_put_str(qdict
, BLOCK_OPT_COMPAT_LEVEL
, "v2");
3788 } else if (val
&& !strcmp(val
, "1.1")) {
3789 qdict_put_str(qdict
, BLOCK_OPT_COMPAT_LEVEL
, "v3");
3792 /* Change legacy command line options into QMP ones */
3793 static const QDictRenames opt_renames
[] = {
3794 { BLOCK_OPT_BACKING_FILE
, "backing-file" },
3795 { BLOCK_OPT_BACKING_FMT
, "backing-fmt" },
3796 { BLOCK_OPT_CLUSTER_SIZE
, "cluster-size" },
3797 { BLOCK_OPT_LAZY_REFCOUNTS
, "lazy-refcounts" },
3798 { BLOCK_OPT_EXTL2
, "extended-l2" },
3799 { BLOCK_OPT_REFCOUNT_BITS
, "refcount-bits" },
3800 { BLOCK_OPT_ENCRYPT
, BLOCK_OPT_ENCRYPT_FORMAT
},
3801 { BLOCK_OPT_COMPAT_LEVEL
, "version" },
3802 { BLOCK_OPT_DATA_FILE_RAW
, "data-file-raw" },
3803 { BLOCK_OPT_COMPRESSION_TYPE
, "compression-type" },
3807 if (!qdict_rename_keys(qdict
, opt_renames
, errp
)) {
3812 /* Create and open the file (protocol layer) */
3813 ret
= bdrv_create_file(filename
, opts
, errp
);
3818 bs
= bdrv_open(filename
, NULL
, NULL
,
3819 BDRV_O_RDWR
| BDRV_O_RESIZE
| BDRV_O_PROTOCOL
, errp
);
3825 /* Create and open an external data file (protocol layer) */
3826 val
= qdict_get_try_str(qdict
, BLOCK_OPT_DATA_FILE
);
3828 ret
= bdrv_create_file(val
, opts
, errp
);
3833 data_bs
= bdrv_open(val
, NULL
, NULL
,
3834 BDRV_O_RDWR
| BDRV_O_RESIZE
| BDRV_O_PROTOCOL
,
3836 if (data_bs
== NULL
) {
3841 qdict_del(qdict
, BLOCK_OPT_DATA_FILE
);
3842 qdict_put_str(qdict
, "data-file", data_bs
->node_name
);
3845 /* Set 'driver' and 'node' options */
3846 qdict_put_str(qdict
, "driver", "qcow2");
3847 qdict_put_str(qdict
, "file", bs
->node_name
);
3849 /* Now get the QAPI type BlockdevCreateOptions */
3850 v
= qobject_input_visitor_new_flat_confused(qdict
, errp
);
3856 visit_type_BlockdevCreateOptions(v
, NULL
, &create_options
, errp
);
3858 if (!create_options
) {
3863 /* Silently round up size */
3864 create_options
->u
.qcow2
.size
= ROUND_UP(create_options
->u
.qcow2
.size
,
3867 /* Create the qcow2 image (format layer) */
3868 ret
= qcow2_co_create(create_options
, errp
);
3871 bdrv_co_delete_file_noerr(bs
);
3872 bdrv_co_delete_file_noerr(data_bs
);
3877 qobject_unref(qdict
);
3879 bdrv_unref(data_bs
);
3880 qapi_free_BlockdevCreateOptions(create_options
);
3885 static bool is_zero(BlockDriverState
*bs
, int64_t offset
, int64_t bytes
)
3890 /* Clamp to image length, before checking status of underlying sectors */
3891 if (offset
+ bytes
> bs
->total_sectors
* BDRV_SECTOR_SIZE
) {
3892 bytes
= bs
->total_sectors
* BDRV_SECTOR_SIZE
- offset
;
3900 * bdrv_block_status_above doesn't merge different types of zeros, for
3901 * example, zeros which come from the region which is unallocated in
3902 * the whole backing chain, and zeros which come because of a short
3903 * backing file. So, we need a loop.
3906 res
= bdrv_block_status_above(bs
, NULL
, offset
, bytes
, &nr
, NULL
, NULL
);
3909 } while (res
>= 0 && (res
& BDRV_BLOCK_ZERO
) && nr
&& bytes
);
3911 return res
>= 0 && (res
& BDRV_BLOCK_ZERO
) && bytes
== 0;
3914 static coroutine_fn
int qcow2_co_pwrite_zeroes(BlockDriverState
*bs
,
3915 int64_t offset
, int bytes
, BdrvRequestFlags flags
)
3918 BDRVQcow2State
*s
= bs
->opaque
;
3920 uint32_t head
= offset_into_subcluster(s
, offset
);
3921 uint32_t tail
= ROUND_UP(offset
+ bytes
, s
->subcluster_size
) -
3924 trace_qcow2_pwrite_zeroes_start_req(qemu_coroutine_self(), offset
, bytes
);
3925 if (offset
+ bytes
== bs
->total_sectors
* BDRV_SECTOR_SIZE
) {
3932 QCow2SubclusterType type
;
3934 assert(head
+ bytes
+ tail
<= s
->subcluster_size
);
3936 /* check whether remainder of cluster already reads as zero */
3937 if (!(is_zero(bs
, offset
- head
, head
) &&
3938 is_zero(bs
, offset
+ bytes
, tail
))) {
3942 qemu_co_mutex_lock(&s
->lock
);
3943 /* We can have new write after previous check */
3945 bytes
= s
->subcluster_size
;
3946 nr
= s
->subcluster_size
;
3947 ret
= qcow2_get_host_offset(bs
, offset
, &nr
, &off
, &type
);
3949 (type
!= QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
&&
3950 type
!= QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
&&
3951 type
!= QCOW2_SUBCLUSTER_ZERO_PLAIN
&&
3952 type
!= QCOW2_SUBCLUSTER_ZERO_ALLOC
)) {
3953 qemu_co_mutex_unlock(&s
->lock
);
3954 return ret
< 0 ? ret
: -ENOTSUP
;
3957 qemu_co_mutex_lock(&s
->lock
);
3960 trace_qcow2_pwrite_zeroes(qemu_coroutine_self(), offset
, bytes
);
3962 /* Whatever is left can use real zero subclusters */
3963 ret
= qcow2_subcluster_zeroize(bs
, offset
, bytes
, flags
);
3964 qemu_co_mutex_unlock(&s
->lock
);
3969 static coroutine_fn
int qcow2_co_pdiscard(BlockDriverState
*bs
,
3970 int64_t offset
, int bytes
)
3973 BDRVQcow2State
*s
= bs
->opaque
;
3975 /* If the image does not support QCOW_OFLAG_ZERO then discarding
3976 * clusters could expose stale data from the backing file. */
3977 if (s
->qcow_version
< 3 && bs
->backing
) {
3981 if (!QEMU_IS_ALIGNED(offset
| bytes
, s
->cluster_size
)) {
3982 assert(bytes
< s
->cluster_size
);
3983 /* Ignore partial clusters, except for the special case of the
3984 * complete partial cluster at the end of an unaligned file */
3985 if (!QEMU_IS_ALIGNED(offset
, s
->cluster_size
) ||
3986 offset
+ bytes
!= bs
->total_sectors
* BDRV_SECTOR_SIZE
) {
3991 qemu_co_mutex_lock(&s
->lock
);
3992 ret
= qcow2_cluster_discard(bs
, offset
, bytes
, QCOW2_DISCARD_REQUEST
,
3994 qemu_co_mutex_unlock(&s
->lock
);
3998 static int coroutine_fn
3999 qcow2_co_copy_range_from(BlockDriverState
*bs
,
4000 BdrvChild
*src
, uint64_t src_offset
,
4001 BdrvChild
*dst
, uint64_t dst_offset
,
4002 uint64_t bytes
, BdrvRequestFlags read_flags
,
4003 BdrvRequestFlags write_flags
)
4005 BDRVQcow2State
*s
= bs
->opaque
;
4007 unsigned int cur_bytes
; /* number of bytes in current iteration */
4008 BdrvChild
*child
= NULL
;
4009 BdrvRequestFlags cur_write_flags
;
4011 assert(!bs
->encrypted
);
4012 qemu_co_mutex_lock(&s
->lock
);
4014 while (bytes
!= 0) {
4015 uint64_t copy_offset
= 0;
4016 QCow2SubclusterType type
;
4017 /* prepare next request */
4018 cur_bytes
= MIN(bytes
, INT_MAX
);
4019 cur_write_flags
= write_flags
;
4021 ret
= qcow2_get_host_offset(bs
, src_offset
, &cur_bytes
,
4022 ©_offset
, &type
);
4028 case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN
:
4029 case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC
:
4030 if (bs
->backing
&& bs
->backing
->bs
) {
4031 int64_t backing_length
= bdrv_getlength(bs
->backing
->bs
);
4032 if (src_offset
>= backing_length
) {
4033 cur_write_flags
|= BDRV_REQ_ZERO_WRITE
;
4035 child
= bs
->backing
;
4036 cur_bytes
= MIN(cur_bytes
, backing_length
- src_offset
);
4037 copy_offset
= src_offset
;
4040 cur_write_flags
|= BDRV_REQ_ZERO_WRITE
;
4044 case QCOW2_SUBCLUSTER_ZERO_PLAIN
:
4045 case QCOW2_SUBCLUSTER_ZERO_ALLOC
:
4046 cur_write_flags
|= BDRV_REQ_ZERO_WRITE
;
4049 case QCOW2_SUBCLUSTER_COMPRESSED
:
4053 case QCOW2_SUBCLUSTER_NORMAL
:
4054 child
= s
->data_file
;
4060 qemu_co_mutex_unlock(&s
->lock
);
4061 ret
= bdrv_co_copy_range_from(child
,
4064 cur_bytes
, read_flags
, cur_write_flags
);
4065 qemu_co_mutex_lock(&s
->lock
);
4071 src_offset
+= cur_bytes
;
4072 dst_offset
+= cur_bytes
;
4077 qemu_co_mutex_unlock(&s
->lock
);
4081 static int coroutine_fn
4082 qcow2_co_copy_range_to(BlockDriverState
*bs
,
4083 BdrvChild
*src
, uint64_t src_offset
,
4084 BdrvChild
*dst
, uint64_t dst_offset
,
4085 uint64_t bytes
, BdrvRequestFlags read_flags
,
4086 BdrvRequestFlags write_flags
)
4088 BDRVQcow2State
*s
= bs
->opaque
;
4090 unsigned int cur_bytes
; /* number of sectors in current iteration */
4091 uint64_t host_offset
;
4092 QCowL2Meta
*l2meta
= NULL
;
4094 assert(!bs
->encrypted
);
4096 qemu_co_mutex_lock(&s
->lock
);
4098 while (bytes
!= 0) {
4102 cur_bytes
= MIN(bytes
, INT_MAX
);
4105 * If src->bs == dst->bs, we could simply copy by incrementing
4106 * the refcnt, without copying user data.
4107 * Or if src->bs == dst->bs->backing->bs, we could copy by discarding. */
4108 ret
= qcow2_alloc_host_offset(bs
, dst_offset
, &cur_bytes
,
4109 &host_offset
, &l2meta
);
4114 ret
= qcow2_pre_write_overlap_check(bs
, 0, host_offset
, cur_bytes
,
4120 qemu_co_mutex_unlock(&s
->lock
);
4121 ret
= bdrv_co_copy_range_to(src
, src_offset
, s
->data_file
, host_offset
,
4122 cur_bytes
, read_flags
, write_flags
);
4123 qemu_co_mutex_lock(&s
->lock
);
4128 ret
= qcow2_handle_l2meta(bs
, &l2meta
, true);
4134 src_offset
+= cur_bytes
;
4135 dst_offset
+= cur_bytes
;
4140 qcow2_handle_l2meta(bs
, &l2meta
, false);
4142 qemu_co_mutex_unlock(&s
->lock
);
4144 trace_qcow2_writev_done_req(qemu_coroutine_self(), ret
);
4149 static int coroutine_fn
qcow2_co_truncate(BlockDriverState
*bs
, int64_t offset
,
4150 bool exact
, PreallocMode prealloc
,
4151 BdrvRequestFlags flags
, Error
**errp
)
4153 BDRVQcow2State
*s
= bs
->opaque
;
4154 uint64_t old_length
;
4155 int64_t new_l1_size
;
4159 if (prealloc
!= PREALLOC_MODE_OFF
&& prealloc
!= PREALLOC_MODE_METADATA
&&
4160 prealloc
!= PREALLOC_MODE_FALLOC
&& prealloc
!= PREALLOC_MODE_FULL
)
4162 error_setg(errp
, "Unsupported preallocation mode '%s'",
4163 PreallocMode_str(prealloc
));
4167 if (!QEMU_IS_ALIGNED(offset
, BDRV_SECTOR_SIZE
)) {
4168 error_setg(errp
, "The new size must be a multiple of %u",
4169 (unsigned) BDRV_SECTOR_SIZE
);
4173 qemu_co_mutex_lock(&s
->lock
);
4176 * Even though we store snapshot size for all images, it was not
4177 * required until v3, so it is not safe to proceed for v2.
4179 if (s
->nb_snapshots
&& s
->qcow_version
< 3) {
4180 error_setg(errp
, "Can't resize a v2 image which has snapshots");
4185 /* See qcow2-bitmap.c for which bitmap scenarios prevent a resize. */
4186 if (qcow2_truncate_bitmaps_check(bs
, errp
)) {
4191 old_length
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
4192 new_l1_size
= size_to_l1(s
, offset
);
4194 if (offset
< old_length
) {
4195 int64_t last_cluster
, old_file_size
;
4196 if (prealloc
!= PREALLOC_MODE_OFF
) {
4198 "Preallocation can't be used for shrinking an image");
4203 ret
= qcow2_cluster_discard(bs
, ROUND_UP(offset
, s
->cluster_size
),
4204 old_length
- ROUND_UP(offset
,
4206 QCOW2_DISCARD_ALWAYS
, true);
4208 error_setg_errno(errp
, -ret
, "Failed to discard cropped clusters");
4212 ret
= qcow2_shrink_l1_table(bs
, new_l1_size
);
4214 error_setg_errno(errp
, -ret
,
4215 "Failed to reduce the number of L2 tables");
4219 ret
= qcow2_shrink_reftable(bs
);
4221 error_setg_errno(errp
, -ret
,
4222 "Failed to discard unused refblocks");
4226 old_file_size
= bdrv_getlength(bs
->file
->bs
);
4227 if (old_file_size
< 0) {
4228 error_setg_errno(errp
, -old_file_size
,
4229 "Failed to inquire current file length");
4230 ret
= old_file_size
;
4233 last_cluster
= qcow2_get_last_cluster(bs
, old_file_size
);
4234 if (last_cluster
< 0) {
4235 error_setg_errno(errp
, -last_cluster
,
4236 "Failed to find the last cluster");
4240 if ((last_cluster
+ 1) * s
->cluster_size
< old_file_size
) {
4241 Error
*local_err
= NULL
;
4244 * Do not pass @exact here: It will not help the user if
4245 * we get an error here just because they wanted to shrink
4246 * their qcow2 image (on a block device) with qemu-img.
4247 * (And on the qcow2 layer, the @exact requirement is
4248 * always fulfilled, so there is no need to pass it on.)
4250 bdrv_co_truncate(bs
->file
, (last_cluster
+ 1) * s
->cluster_size
,
4251 false, PREALLOC_MODE_OFF
, 0, &local_err
);
4253 warn_reportf_err(local_err
,
4254 "Failed to truncate the tail of the image: ");
4258 ret
= qcow2_grow_l1_table(bs
, new_l1_size
, true);
4260 error_setg_errno(errp
, -ret
, "Failed to grow the L1 table");
4264 if (data_file_is_raw(bs
) && prealloc
== PREALLOC_MODE_OFF
) {
4266 * When creating a qcow2 image with data-file-raw, we enforce
4267 * at least prealloc=metadata, so that the L1/L2 tables are
4268 * fully allocated and reading from the data file will return
4269 * the same data as reading from the qcow2 image. When the
4270 * image is grown, we must consequently preallocate the
4271 * metadata structures to cover the added area.
4273 prealloc
= PREALLOC_MODE_METADATA
;
4278 case PREALLOC_MODE_OFF
:
4279 if (has_data_file(bs
)) {
4281 * If the caller wants an exact resize, the external data
4282 * file should be resized to the exact target size, too,
4283 * so we pass @exact here.
4285 ret
= bdrv_co_truncate(s
->data_file
, offset
, exact
, prealloc
, 0,
4293 case PREALLOC_MODE_METADATA
:
4294 ret
= preallocate_co(bs
, old_length
, offset
, prealloc
, errp
);
4300 case PREALLOC_MODE_FALLOC
:
4301 case PREALLOC_MODE_FULL
:
4303 int64_t allocation_start
, host_offset
, guest_offset
;
4304 int64_t clusters_allocated
;
4305 int64_t old_file_size
, last_cluster
, new_file_size
;
4306 uint64_t nb_new_data_clusters
, nb_new_l2_tables
;
4307 bool subclusters_need_allocation
= false;
4309 /* With a data file, preallocation means just allocating the metadata
4310 * and forwarding the truncate request to the data file */
4311 if (has_data_file(bs
)) {
4312 ret
= preallocate_co(bs
, old_length
, offset
, prealloc
, errp
);
4319 old_file_size
= bdrv_getlength(bs
->file
->bs
);
4320 if (old_file_size
< 0) {
4321 error_setg_errno(errp
, -old_file_size
,
4322 "Failed to inquire current file length");
4323 ret
= old_file_size
;
4327 last_cluster
= qcow2_get_last_cluster(bs
, old_file_size
);
4328 if (last_cluster
>= 0) {
4329 old_file_size
= (last_cluster
+ 1) * s
->cluster_size
;
4331 old_file_size
= ROUND_UP(old_file_size
, s
->cluster_size
);
4334 nb_new_data_clusters
= (ROUND_UP(offset
, s
->cluster_size
) -
4335 start_of_cluster(s
, old_length
)) >> s
->cluster_bits
;
4337 /* This is an overestimation; we will not actually allocate space for
4338 * these in the file but just make sure the new refcount structures are
4339 * able to cover them so we will not have to allocate new refblocks
4340 * while entering the data blocks in the potentially new L2 tables.
4341 * (We do not actually care where the L2 tables are placed. Maybe they
4342 * are already allocated or they can be placed somewhere before
4343 * @old_file_size. It does not matter because they will be fully
4344 * allocated automatically, so they do not need to be covered by the
4345 * preallocation. All that matters is that we will not have to allocate
4346 * new refcount structures for them.) */
4347 nb_new_l2_tables
= DIV_ROUND_UP(nb_new_data_clusters
,
4348 s
->cluster_size
/ l2_entry_size(s
));
4349 /* The cluster range may not be aligned to L2 boundaries, so add one L2
4350 * table for a potential head/tail */
4353 allocation_start
= qcow2_refcount_area(bs
, old_file_size
,
4354 nb_new_data_clusters
+
4357 if (allocation_start
< 0) {
4358 error_setg_errno(errp
, -allocation_start
,
4359 "Failed to resize refcount structures");
4360 ret
= allocation_start
;
4364 clusters_allocated
= qcow2_alloc_clusters_at(bs
, allocation_start
,
4365 nb_new_data_clusters
);
4366 if (clusters_allocated
< 0) {
4367 error_setg_errno(errp
, -clusters_allocated
,
4368 "Failed to allocate data clusters");
4369 ret
= clusters_allocated
;
4373 assert(clusters_allocated
== nb_new_data_clusters
);
4375 /* Allocate the data area */
4376 new_file_size
= allocation_start
+
4377 nb_new_data_clusters
* s
->cluster_size
;
4379 * Image file grows, so @exact does not matter.
4381 * If we need to zero out the new area, try first whether the protocol
4382 * driver can already take care of this.
4384 if (flags
& BDRV_REQ_ZERO_WRITE
) {
4385 ret
= bdrv_co_truncate(bs
->file
, new_file_size
, false, prealloc
,
4386 BDRV_REQ_ZERO_WRITE
, NULL
);
4388 flags
&= ~BDRV_REQ_ZERO_WRITE
;
4389 /* Ensure that we read zeroes and not backing file data */
4390 subclusters_need_allocation
= true;
4396 ret
= bdrv_co_truncate(bs
->file
, new_file_size
, false, prealloc
, 0,
4400 error_prepend(errp
, "Failed to resize underlying file: ");
4401 qcow2_free_clusters(bs
, allocation_start
,
4402 nb_new_data_clusters
* s
->cluster_size
,
4403 QCOW2_DISCARD_OTHER
);
4407 /* Create the necessary L2 entries */
4408 host_offset
= allocation_start
;
4409 guest_offset
= old_length
;
4410 while (nb_new_data_clusters
) {
4411 int64_t nb_clusters
= MIN(
4412 nb_new_data_clusters
,
4413 s
->l2_slice_size
- offset_to_l2_slice_index(s
, guest_offset
));
4414 unsigned cow_start_length
= offset_into_cluster(s
, guest_offset
);
4415 QCowL2Meta allocation
;
4416 guest_offset
= start_of_cluster(s
, guest_offset
);
4417 allocation
= (QCowL2Meta
) {
4418 .offset
= guest_offset
,
4419 .alloc_offset
= host_offset
,
4420 .nb_clusters
= nb_clusters
,
4423 .nb_bytes
= cow_start_length
,
4426 .offset
= nb_clusters
<< s
->cluster_bits
,
4429 .prealloc
= !subclusters_need_allocation
,
4431 qemu_co_queue_init(&allocation
.dependent_requests
);
4433 ret
= qcow2_alloc_cluster_link_l2(bs
, &allocation
);
4435 error_setg_errno(errp
, -ret
, "Failed to update L2 tables");
4436 qcow2_free_clusters(bs
, host_offset
,
4437 nb_new_data_clusters
* s
->cluster_size
,
4438 QCOW2_DISCARD_OTHER
);
4442 guest_offset
+= nb_clusters
* s
->cluster_size
;
4443 host_offset
+= nb_clusters
* s
->cluster_size
;
4444 nb_new_data_clusters
-= nb_clusters
;
4450 g_assert_not_reached();
4453 if ((flags
& BDRV_REQ_ZERO_WRITE
) && offset
> old_length
) {
4454 uint64_t zero_start
= QEMU_ALIGN_UP(old_length
, s
->subcluster_size
);
4457 * Use zero clusters as much as we can. qcow2_subcluster_zeroize()
4458 * requires a subcluster-aligned start. The end may be unaligned if
4459 * it is at the end of the image (which it is here).
4461 if (offset
> zero_start
) {
4462 ret
= qcow2_subcluster_zeroize(bs
, zero_start
, offset
- zero_start
,
4465 error_setg_errno(errp
, -ret
, "Failed to zero out new clusters");
4470 /* Write explicit zeros for the unaligned head */
4471 if (zero_start
> old_length
) {
4472 uint64_t len
= MIN(zero_start
, offset
) - old_length
;
4473 uint8_t *buf
= qemu_blockalign0(bs
, len
);
4475 qemu_iovec_init_buf(&qiov
, buf
, len
);
4477 qemu_co_mutex_unlock(&s
->lock
);
4478 ret
= qcow2_co_pwritev_part(bs
, old_length
, len
, &qiov
, 0, 0);
4479 qemu_co_mutex_lock(&s
->lock
);
4483 error_setg_errno(errp
, -ret
, "Failed to zero out the new area");
4489 if (prealloc
!= PREALLOC_MODE_OFF
) {
4490 /* Flush metadata before actually changing the image size */
4491 ret
= qcow2_write_caches(bs
);
4493 error_setg_errno(errp
, -ret
,
4494 "Failed to flush the preallocated area to disk");
4499 bs
->total_sectors
= offset
/ BDRV_SECTOR_SIZE
;
4501 /* write updated header.size */
4502 offset
= cpu_to_be64(offset
);
4503 ret
= bdrv_pwrite_sync(bs
->file
, offsetof(QCowHeader
, size
),
4504 &offset
, sizeof(offset
));
4506 error_setg_errno(errp
, -ret
, "Failed to update the image size");
4510 s
->l1_vm_state_index
= new_l1_size
;
4512 /* Update cache sizes */
4513 options
= qdict_clone_shallow(bs
->options
);
4514 ret
= qcow2_update_options(bs
, options
, s
->flags
, errp
);
4515 qobject_unref(options
);
4521 qemu_co_mutex_unlock(&s
->lock
);
4525 static coroutine_fn
int
4526 qcow2_co_pwritev_compressed_task(BlockDriverState
*bs
,
4527 uint64_t offset
, uint64_t bytes
,
4528 QEMUIOVector
*qiov
, size_t qiov_offset
)
4530 BDRVQcow2State
*s
= bs
->opaque
;
4533 uint8_t *buf
, *out_buf
;
4534 uint64_t cluster_offset
;
4536 assert(bytes
== s
->cluster_size
|| (bytes
< s
->cluster_size
&&
4537 (offset
+ bytes
== bs
->total_sectors
<< BDRV_SECTOR_BITS
)));
4539 buf
= qemu_blockalign(bs
, s
->cluster_size
);
4540 if (bytes
< s
->cluster_size
) {
4541 /* Zero-pad last write if image size is not cluster aligned */
4542 memset(buf
+ bytes
, 0, s
->cluster_size
- bytes
);
4544 qemu_iovec_to_buf(qiov
, qiov_offset
, buf
, bytes
);
4546 out_buf
= g_malloc(s
->cluster_size
);
4548 out_len
= qcow2_co_compress(bs
, out_buf
, s
->cluster_size
- 1,
4549 buf
, s
->cluster_size
);
4550 if (out_len
== -ENOMEM
) {
4551 /* could not compress: write normal cluster */
4552 ret
= qcow2_co_pwritev_part(bs
, offset
, bytes
, qiov
, qiov_offset
, 0);
4557 } else if (out_len
< 0) {
4562 qemu_co_mutex_lock(&s
->lock
);
4563 ret
= qcow2_alloc_compressed_cluster_offset(bs
, offset
, out_len
,
4566 qemu_co_mutex_unlock(&s
->lock
);
4570 ret
= qcow2_pre_write_overlap_check(bs
, 0, cluster_offset
, out_len
, true);
4571 qemu_co_mutex_unlock(&s
->lock
);
4576 BLKDBG_EVENT(s
->data_file
, BLKDBG_WRITE_COMPRESSED
);
4577 ret
= bdrv_co_pwrite(s
->data_file
, cluster_offset
, out_len
, out_buf
, 0);
4589 static coroutine_fn
int qcow2_co_pwritev_compressed_task_entry(AioTask
*task
)
4591 Qcow2AioTask
*t
= container_of(task
, Qcow2AioTask
, task
);
4593 assert(!t
->subcluster_type
&& !t
->l2meta
);
4595 return qcow2_co_pwritev_compressed_task(t
->bs
, t
->offset
, t
->bytes
, t
->qiov
,
4600 * XXX: put compressed sectors first, then all the cluster aligned
4601 * tables to avoid losing bytes in alignment
4603 static coroutine_fn
int
4604 qcow2_co_pwritev_compressed_part(BlockDriverState
*bs
,
4605 uint64_t offset
, uint64_t bytes
,
4606 QEMUIOVector
*qiov
, size_t qiov_offset
)
4608 BDRVQcow2State
*s
= bs
->opaque
;
4609 AioTaskPool
*aio
= NULL
;
4612 if (has_data_file(bs
)) {
4618 * align end of file to a sector boundary to ease reading with
4621 int64_t len
= bdrv_getlength(bs
->file
->bs
);
4625 return bdrv_co_truncate(bs
->file
, len
, false, PREALLOC_MODE_OFF
, 0,
4629 if (offset_into_cluster(s
, offset
)) {
4633 if (offset_into_cluster(s
, bytes
) &&
4634 (offset
+ bytes
) != (bs
->total_sectors
<< BDRV_SECTOR_BITS
)) {
4638 while (bytes
&& aio_task_pool_status(aio
) == 0) {
4639 uint64_t chunk_size
= MIN(bytes
, s
->cluster_size
);
4641 if (!aio
&& chunk_size
!= bytes
) {
4642 aio
= aio_task_pool_new(QCOW2_MAX_WORKERS
);
4645 ret
= qcow2_add_task(bs
, aio
, qcow2_co_pwritev_compressed_task_entry
,
4646 0, 0, offset
, chunk_size
, qiov
, qiov_offset
, NULL
);
4650 qiov_offset
+= chunk_size
;
4651 offset
+= chunk_size
;
4652 bytes
-= chunk_size
;
4656 aio_task_pool_wait_all(aio
);
4658 ret
= aio_task_pool_status(aio
);
4666 static int coroutine_fn
4667 qcow2_co_preadv_compressed(BlockDriverState
*bs
,
4668 uint64_t cluster_descriptor
,
4674 BDRVQcow2State
*s
= bs
->opaque
;
4675 int ret
= 0, csize
, nb_csectors
;
4677 uint8_t *buf
, *out_buf
;
4678 int offset_in_cluster
= offset_into_cluster(s
, offset
);
4680 coffset
= cluster_descriptor
& s
->cluster_offset_mask
;
4681 nb_csectors
= ((cluster_descriptor
>> s
->csize_shift
) & s
->csize_mask
) + 1;
4682 csize
= nb_csectors
* QCOW2_COMPRESSED_SECTOR_SIZE
-
4683 (coffset
& ~QCOW2_COMPRESSED_SECTOR_MASK
);
4685 buf
= g_try_malloc(csize
);
4690 out_buf
= qemu_blockalign(bs
, s
->cluster_size
);
4692 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_COMPRESSED
);
4693 ret
= bdrv_co_pread(bs
->file
, coffset
, csize
, buf
, 0);
4698 if (qcow2_co_decompress(bs
, out_buf
, s
->cluster_size
, buf
, csize
) < 0) {
4703 qemu_iovec_from_buf(qiov
, qiov_offset
, out_buf
+ offset_in_cluster
, bytes
);
4706 qemu_vfree(out_buf
);
4712 static int make_completely_empty(BlockDriverState
*bs
)
4714 BDRVQcow2State
*s
= bs
->opaque
;
4715 Error
*local_err
= NULL
;
4716 int ret
, l1_clusters
;
4718 uint64_t *new_reftable
= NULL
;
4719 uint64_t rt_entry
, l1_size2
;
4722 uint64_t reftable_offset
;
4723 uint32_t reftable_clusters
;
4724 } QEMU_PACKED l1_ofs_rt_ofs_cls
;
4726 ret
= qcow2_cache_empty(bs
, s
->l2_table_cache
);
4731 ret
= qcow2_cache_empty(bs
, s
->refcount_block_cache
);
4736 /* Refcounts will be broken utterly */
4737 ret
= qcow2_mark_dirty(bs
);
4742 BLKDBG_EVENT(bs
->file
, BLKDBG_L1_UPDATE
);
4744 l1_clusters
= DIV_ROUND_UP(s
->l1_size
, s
->cluster_size
/ L1E_SIZE
);
4745 l1_size2
= (uint64_t)s
->l1_size
* L1E_SIZE
;
4747 /* After this call, neither the in-memory nor the on-disk refcount
4748 * information accurately describe the actual references */
4750 ret
= bdrv_pwrite_zeroes(bs
->file
, s
->l1_table_offset
,
4751 l1_clusters
* s
->cluster_size
, 0);
4753 goto fail_broken_refcounts
;
4755 memset(s
->l1_table
, 0, l1_size2
);
4757 BLKDBG_EVENT(bs
->file
, BLKDBG_EMPTY_IMAGE_PREPARE
);
4759 /* Overwrite enough clusters at the beginning of the sectors to place
4760 * the refcount table, a refcount block and the L1 table in; this may
4761 * overwrite parts of the existing refcount and L1 table, which is not
4762 * an issue because the dirty flag is set, complete data loss is in fact
4763 * desired and partial data loss is consequently fine as well */
4764 ret
= bdrv_pwrite_zeroes(bs
->file
, s
->cluster_size
,
4765 (2 + l1_clusters
) * s
->cluster_size
, 0);
4766 /* This call (even if it failed overall) may have overwritten on-disk
4767 * refcount structures; in that case, the in-memory refcount information
4768 * will probably differ from the on-disk information which makes the BDS
4771 goto fail_broken_refcounts
;
4774 BLKDBG_EVENT(bs
->file
, BLKDBG_L1_UPDATE
);
4775 BLKDBG_EVENT(bs
->file
, BLKDBG_REFTABLE_UPDATE
);
4777 /* "Create" an empty reftable (one cluster) directly after the image
4778 * header and an empty L1 table three clusters after the image header;
4779 * the cluster between those two will be used as the first refblock */
4780 l1_ofs_rt_ofs_cls
.l1_offset
= cpu_to_be64(3 * s
->cluster_size
);
4781 l1_ofs_rt_ofs_cls
.reftable_offset
= cpu_to_be64(s
->cluster_size
);
4782 l1_ofs_rt_ofs_cls
.reftable_clusters
= cpu_to_be32(1);
4783 ret
= bdrv_pwrite_sync(bs
->file
, offsetof(QCowHeader
, l1_table_offset
),
4784 &l1_ofs_rt_ofs_cls
, sizeof(l1_ofs_rt_ofs_cls
));
4786 goto fail_broken_refcounts
;
4789 s
->l1_table_offset
= 3 * s
->cluster_size
;
4791 new_reftable
= g_try_new0(uint64_t, s
->cluster_size
/ REFTABLE_ENTRY_SIZE
);
4792 if (!new_reftable
) {
4794 goto fail_broken_refcounts
;
4797 s
->refcount_table_offset
= s
->cluster_size
;
4798 s
->refcount_table_size
= s
->cluster_size
/ REFTABLE_ENTRY_SIZE
;
4799 s
->max_refcount_table_index
= 0;
4801 g_free(s
->refcount_table
);
4802 s
->refcount_table
= new_reftable
;
4803 new_reftable
= NULL
;
4805 /* Now the in-memory refcount information again corresponds to the on-disk
4806 * information (reftable is empty and no refblocks (the refblock cache is
4807 * empty)); however, this means some clusters (e.g. the image header) are
4808 * referenced, but not refcounted, but the normal qcow2 code assumes that
4809 * the in-memory information is always correct */
4811 BLKDBG_EVENT(bs
->file
, BLKDBG_REFBLOCK_ALLOC
);
4813 /* Enter the first refblock into the reftable */
4814 rt_entry
= cpu_to_be64(2 * s
->cluster_size
);
4815 ret
= bdrv_pwrite_sync(bs
->file
, s
->cluster_size
,
4816 &rt_entry
, sizeof(rt_entry
));
4818 goto fail_broken_refcounts
;
4820 s
->refcount_table
[0] = 2 * s
->cluster_size
;
4822 s
->free_cluster_index
= 0;
4823 assert(3 + l1_clusters
<= s
->refcount_block_size
);
4824 offset
= qcow2_alloc_clusters(bs
, 3 * s
->cluster_size
+ l1_size2
);
4827 goto fail_broken_refcounts
;
4828 } else if (offset
> 0) {
4829 error_report("First cluster in emptied image is in use");
4833 /* Now finally the in-memory information corresponds to the on-disk
4834 * structures and is correct */
4835 ret
= qcow2_mark_clean(bs
);
4840 ret
= bdrv_truncate(bs
->file
, (3 + l1_clusters
) * s
->cluster_size
, false,
4841 PREALLOC_MODE_OFF
, 0, &local_err
);
4843 error_report_err(local_err
);
4849 fail_broken_refcounts
:
4850 /* The BDS is unusable at this point. If we wanted to make it usable, we
4851 * would have to call qcow2_refcount_close(), qcow2_refcount_init(),
4852 * qcow2_check_refcounts(), qcow2_refcount_close() and qcow2_refcount_init()
4853 * again. However, because the functions which could have caused this error
4854 * path to be taken are used by those functions as well, it's very likely
4855 * that that sequence will fail as well. Therefore, just eject the BDS. */
4859 g_free(new_reftable
);
4863 static int qcow2_make_empty(BlockDriverState
*bs
)
4865 BDRVQcow2State
*s
= bs
->opaque
;
4866 uint64_t offset
, end_offset
;
4867 int step
= QEMU_ALIGN_DOWN(INT_MAX
, s
->cluster_size
);
4868 int l1_clusters
, ret
= 0;
4870 l1_clusters
= DIV_ROUND_UP(s
->l1_size
, s
->cluster_size
/ L1E_SIZE
);
4872 if (s
->qcow_version
>= 3 && !s
->snapshots
&& !s
->nb_bitmaps
&&
4873 3 + l1_clusters
<= s
->refcount_block_size
&&
4874 s
->crypt_method_header
!= QCOW_CRYPT_LUKS
&&
4875 !has_data_file(bs
)) {
4876 /* The following function only works for qcow2 v3 images (it
4877 * requires the dirty flag) and only as long as there are no
4878 * features that reserve extra clusters (such as snapshots,
4879 * LUKS header, or persistent bitmaps), because it completely
4880 * empties the image. Furthermore, the L1 table and three
4881 * additional clusters (image header, refcount table, one
4882 * refcount block) have to fit inside one refcount block. It
4883 * only resets the image file, i.e. does not work with an
4884 * external data file. */
4885 return make_completely_empty(bs
);
4888 /* This fallback code simply discards every active cluster; this is slow,
4889 * but works in all cases */
4890 end_offset
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
4891 for (offset
= 0; offset
< end_offset
; offset
+= step
) {
4892 /* As this function is generally used after committing an external
4893 * snapshot, QCOW2_DISCARD_SNAPSHOT seems appropriate. Also, the
4894 * default action for this kind of discard is to pass the discard,
4895 * which will ideally result in an actually smaller image file, as
4896 * is probably desired. */
4897 ret
= qcow2_cluster_discard(bs
, offset
, MIN(step
, end_offset
- offset
),
4898 QCOW2_DISCARD_SNAPSHOT
, true);
4907 static coroutine_fn
int qcow2_co_flush_to_os(BlockDriverState
*bs
)
4909 BDRVQcow2State
*s
= bs
->opaque
;
4912 qemu_co_mutex_lock(&s
->lock
);
4913 ret
= qcow2_write_caches(bs
);
4914 qemu_co_mutex_unlock(&s
->lock
);
4919 static BlockMeasureInfo
*qcow2_measure(QemuOpts
*opts
, BlockDriverState
*in_bs
,
4922 Error
*local_err
= NULL
;
4923 BlockMeasureInfo
*info
;
4924 uint64_t required
= 0; /* bytes that contribute to required size */
4925 uint64_t virtual_size
; /* disk size as seen by guest */
4926 uint64_t refcount_bits
;
4928 uint64_t luks_payload_size
= 0;
4929 size_t cluster_size
;
4932 PreallocMode prealloc
;
4933 bool has_backing_file
;
4938 /* Parse image creation options */
4939 extended_l2
= qemu_opt_get_bool_del(opts
, BLOCK_OPT_EXTL2
, false);
4941 cluster_size
= qcow2_opt_get_cluster_size_del(opts
, extended_l2
,
4947 version
= qcow2_opt_get_version_del(opts
, &local_err
);
4952 refcount_bits
= qcow2_opt_get_refcount_bits_del(opts
, version
, &local_err
);
4957 optstr
= qemu_opt_get_del(opts
, BLOCK_OPT_PREALLOC
);
4958 prealloc
= qapi_enum_parse(&PreallocMode_lookup
, optstr
,
4959 PREALLOC_MODE_OFF
, &local_err
);
4965 optstr
= qemu_opt_get_del(opts
, BLOCK_OPT_BACKING_FILE
);
4966 has_backing_file
= !!optstr
;
4969 optstr
= qemu_opt_get_del(opts
, BLOCK_OPT_ENCRYPT_FORMAT
);
4970 has_luks
= optstr
&& strcmp(optstr
, "luks") == 0;
4974 g_autoptr(QCryptoBlockCreateOptions
) create_opts
= NULL
;
4975 QDict
*cryptoopts
= qcow2_extract_crypto_opts(opts
, "luks", errp
);
4978 create_opts
= block_crypto_create_opts_init(cryptoopts
, errp
);
4979 qobject_unref(cryptoopts
);
4984 if (!qcrypto_block_calculate_payload_offset(create_opts
,
4991 luks_payload_size
= ROUND_UP(headerlen
, cluster_size
);
4994 virtual_size
= qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0);
4995 virtual_size
= ROUND_UP(virtual_size
, cluster_size
);
4997 /* Check that virtual disk size is valid */
4998 l2e_size
= extended_l2
? L2E_SIZE_EXTENDED
: L2E_SIZE_NORMAL
;
4999 l2_tables
= DIV_ROUND_UP(virtual_size
/ cluster_size
,
5000 cluster_size
/ l2e_size
);
5001 if (l2_tables
* L1E_SIZE
> QCOW_MAX_L1_SIZE
) {
5002 error_setg(&local_err
, "The image size is too large "
5003 "(try using a larger cluster size)");
5007 /* Account for input image */
5009 int64_t ssize
= bdrv_getlength(in_bs
);
5011 error_setg_errno(&local_err
, -ssize
,
5012 "Unable to get image virtual_size");
5016 virtual_size
= ROUND_UP(ssize
, cluster_size
);
5018 if (has_backing_file
) {
5019 /* We don't how much of the backing chain is shared by the input
5020 * image and the new image file. In the worst case the new image's
5021 * backing file has nothing in common with the input image. Be
5022 * conservative and assume all clusters need to be written.
5024 required
= virtual_size
;
5029 for (offset
= 0; offset
< ssize
; offset
+= pnum
) {
5032 ret
= bdrv_block_status_above(in_bs
, NULL
, offset
,
5033 ssize
- offset
, &pnum
, NULL
,
5036 error_setg_errno(&local_err
, -ret
,
5037 "Unable to get block status");
5041 if (ret
& BDRV_BLOCK_ZERO
) {
5042 /* Skip zero regions (safe with no backing file) */
5043 } else if ((ret
& (BDRV_BLOCK_DATA
| BDRV_BLOCK_ALLOCATED
)) ==
5044 (BDRV_BLOCK_DATA
| BDRV_BLOCK_ALLOCATED
)) {
5045 /* Extend pnum to end of cluster for next iteration */
5046 pnum
= ROUND_UP(offset
+ pnum
, cluster_size
) - offset
;
5048 /* Count clusters we've seen */
5049 required
+= offset
% cluster_size
+ pnum
;
5055 /* Take into account preallocation. Nothing special is needed for
5056 * PREALLOC_MODE_METADATA since metadata is always counted.
5058 if (prealloc
== PREALLOC_MODE_FULL
|| prealloc
== PREALLOC_MODE_FALLOC
) {
5059 required
= virtual_size
;
5062 info
= g_new0(BlockMeasureInfo
, 1);
5063 info
->fully_allocated
= luks_payload_size
+
5064 qcow2_calc_prealloc_size(virtual_size
, cluster_size
,
5065 ctz32(refcount_bits
), extended_l2
);
5068 * Remove data clusters that are not required. This overestimates the
5069 * required size because metadata needed for the fully allocated file is
5070 * still counted. Show bitmaps only if both source and destination
5071 * would support them.
5073 info
->required
= info
->fully_allocated
- virtual_size
+ required
;
5074 info
->has_bitmaps
= version
>= 3 && in_bs
&&
5075 bdrv_supports_persistent_dirty_bitmap(in_bs
);
5076 if (info
->has_bitmaps
) {
5077 info
->bitmaps
= qcow2_get_persistent_dirty_bitmap_size(in_bs
,
5083 error_propagate(errp
, local_err
);
5087 static int qcow2_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
5089 BDRVQcow2State
*s
= bs
->opaque
;
5090 bdi
->cluster_size
= s
->cluster_size
;
5091 bdi
->vm_state_offset
= qcow2_vm_state_offset(s
);
5095 static ImageInfoSpecific
*qcow2_get_specific_info(BlockDriverState
*bs
,
5098 BDRVQcow2State
*s
= bs
->opaque
;
5099 ImageInfoSpecific
*spec_info
;
5100 QCryptoBlockInfo
*encrypt_info
= NULL
;
5102 if (s
->crypto
!= NULL
) {
5103 encrypt_info
= qcrypto_block_get_info(s
->crypto
, errp
);
5104 if (!encrypt_info
) {
5109 spec_info
= g_new(ImageInfoSpecific
, 1);
5110 *spec_info
= (ImageInfoSpecific
){
5111 .type
= IMAGE_INFO_SPECIFIC_KIND_QCOW2
,
5112 .u
.qcow2
.data
= g_new0(ImageInfoSpecificQCow2
, 1),
5114 if (s
->qcow_version
== 2) {
5115 *spec_info
->u
.qcow2
.data
= (ImageInfoSpecificQCow2
){
5116 .compat
= g_strdup("0.10"),
5117 .refcount_bits
= s
->refcount_bits
,
5119 } else if (s
->qcow_version
== 3) {
5120 Qcow2BitmapInfoList
*bitmaps
;
5121 if (!qcow2_get_bitmap_info_list(bs
, &bitmaps
, errp
)) {
5122 qapi_free_ImageInfoSpecific(spec_info
);
5123 qapi_free_QCryptoBlockInfo(encrypt_info
);
5126 *spec_info
->u
.qcow2
.data
= (ImageInfoSpecificQCow2
){
5127 .compat
= g_strdup("1.1"),
5128 .lazy_refcounts
= s
->compatible_features
&
5129 QCOW2_COMPAT_LAZY_REFCOUNTS
,
5130 .has_lazy_refcounts
= true,
5131 .corrupt
= s
->incompatible_features
&
5132 QCOW2_INCOMPAT_CORRUPT
,
5133 .has_corrupt
= true,
5134 .has_extended_l2
= true,
5135 .extended_l2
= has_subclusters(s
),
5136 .refcount_bits
= s
->refcount_bits
,
5137 .has_bitmaps
= !!bitmaps
,
5139 .has_data_file
= !!s
->image_data_file
,
5140 .data_file
= g_strdup(s
->image_data_file
),
5141 .has_data_file_raw
= has_data_file(bs
),
5142 .data_file_raw
= data_file_is_raw(bs
),
5143 .compression_type
= s
->compression_type
,
5146 /* if this assertion fails, this probably means a new version was
5147 * added without having it covered here */
5152 ImageInfoSpecificQCow2Encryption
*qencrypt
=
5153 g_new(ImageInfoSpecificQCow2Encryption
, 1);
5154 switch (encrypt_info
->format
) {
5155 case Q_CRYPTO_BLOCK_FORMAT_QCOW
:
5156 qencrypt
->format
= BLOCKDEV_QCOW2_ENCRYPTION_FORMAT_AES
;
5158 case Q_CRYPTO_BLOCK_FORMAT_LUKS
:
5159 qencrypt
->format
= BLOCKDEV_QCOW2_ENCRYPTION_FORMAT_LUKS
;
5160 qencrypt
->u
.luks
= encrypt_info
->u
.luks
;
5165 /* Since we did shallow copy above, erase any pointers
5166 * in the original info */
5167 memset(&encrypt_info
->u
, 0, sizeof(encrypt_info
->u
));
5168 qapi_free_QCryptoBlockInfo(encrypt_info
);
5170 spec_info
->u
.qcow2
.data
->has_encrypt
= true;
5171 spec_info
->u
.qcow2
.data
->encrypt
= qencrypt
;
5177 static int qcow2_has_zero_init(BlockDriverState
*bs
)
5179 BDRVQcow2State
*s
= bs
->opaque
;
5182 if (qemu_in_coroutine()) {
5183 qemu_co_mutex_lock(&s
->lock
);
5186 * Check preallocation status: Preallocated images have all L2
5187 * tables allocated, nonpreallocated images have none. It is
5188 * therefore enough to check the first one.
5190 preallocated
= s
->l1_size
> 0 && s
->l1_table
[0] != 0;
5191 if (qemu_in_coroutine()) {
5192 qemu_co_mutex_unlock(&s
->lock
);
5195 if (!preallocated
) {
5197 } else if (bs
->encrypted
) {
5200 return bdrv_has_zero_init(s
->data_file
->bs
);
5204 static int qcow2_save_vmstate(BlockDriverState
*bs
, QEMUIOVector
*qiov
,
5207 BDRVQcow2State
*s
= bs
->opaque
;
5209 BLKDBG_EVENT(bs
->file
, BLKDBG_VMSTATE_SAVE
);
5210 return bs
->drv
->bdrv_co_pwritev_part(bs
, qcow2_vm_state_offset(s
) + pos
,
5211 qiov
->size
, qiov
, 0, 0);
5214 static int qcow2_load_vmstate(BlockDriverState
*bs
, QEMUIOVector
*qiov
,
5217 BDRVQcow2State
*s
= bs
->opaque
;
5219 BLKDBG_EVENT(bs
->file
, BLKDBG_VMSTATE_LOAD
);
5220 return bs
->drv
->bdrv_co_preadv_part(bs
, qcow2_vm_state_offset(s
) + pos
,
5221 qiov
->size
, qiov
, 0, 0);
5225 * Downgrades an image's version. To achieve this, any incompatible features
5226 * have to be removed.
5228 static int qcow2_downgrade(BlockDriverState
*bs
, int target_version
,
5229 BlockDriverAmendStatusCB
*status_cb
, void *cb_opaque
,
5232 BDRVQcow2State
*s
= bs
->opaque
;
5233 int current_version
= s
->qcow_version
;
5237 /* This is qcow2_downgrade(), not qcow2_upgrade() */
5238 assert(target_version
< current_version
);
5240 /* There are no other versions (now) that you can downgrade to */
5241 assert(target_version
== 2);
5243 if (s
->refcount_order
!= 4) {
5244 error_setg(errp
, "compat=0.10 requires refcount_bits=16");
5248 if (has_data_file(bs
)) {
5249 error_setg(errp
, "Cannot downgrade an image with a data file");
5254 * If any internal snapshot has a different size than the current
5255 * image size, or VM state size that exceeds 32 bits, downgrading
5256 * is unsafe. Even though we would still use v3-compliant output
5257 * to preserve that data, other v2 programs might not realize
5258 * those optional fields are important.
5260 for (i
= 0; i
< s
->nb_snapshots
; i
++) {
5261 if (s
->snapshots
[i
].vm_state_size
> UINT32_MAX
||
5262 s
->snapshots
[i
].disk_size
!= bs
->total_sectors
* BDRV_SECTOR_SIZE
) {
5263 error_setg(errp
, "Internal snapshots prevent downgrade of image");
5268 /* clear incompatible features */
5269 if (s
->incompatible_features
& QCOW2_INCOMPAT_DIRTY
) {
5270 ret
= qcow2_mark_clean(bs
);
5272 error_setg_errno(errp
, -ret
, "Failed to make the image clean");
5277 /* with QCOW2_INCOMPAT_CORRUPT, it is pretty much impossible to get here in
5278 * the first place; if that happens nonetheless, returning -ENOTSUP is the
5279 * best thing to do anyway */
5281 if (s
->incompatible_features
) {
5282 error_setg(errp
, "Cannot downgrade an image with incompatible features "
5283 "%#" PRIx64
" set", s
->incompatible_features
);
5287 /* since we can ignore compatible features, we can set them to 0 as well */
5288 s
->compatible_features
= 0;
5289 /* if lazy refcounts have been used, they have already been fixed through
5290 * clearing the dirty flag */
5292 /* clearing autoclear features is trivial */
5293 s
->autoclear_features
= 0;
5295 ret
= qcow2_expand_zero_clusters(bs
, status_cb
, cb_opaque
);
5297 error_setg_errno(errp
, -ret
, "Failed to turn zero into data clusters");
5301 s
->qcow_version
= target_version
;
5302 ret
= qcow2_update_header(bs
);
5304 s
->qcow_version
= current_version
;
5305 error_setg_errno(errp
, -ret
, "Failed to update the image header");
5312 * Upgrades an image's version. While newer versions encompass all
5313 * features of older versions, some things may have to be presented
5316 static int qcow2_upgrade(BlockDriverState
*bs
, int target_version
,
5317 BlockDriverAmendStatusCB
*status_cb
, void *cb_opaque
,
5320 BDRVQcow2State
*s
= bs
->opaque
;
5321 bool need_snapshot_update
;
5322 int current_version
= s
->qcow_version
;
5326 /* This is qcow2_upgrade(), not qcow2_downgrade() */
5327 assert(target_version
> current_version
);
5329 /* There are no other versions (yet) that you can upgrade to */
5330 assert(target_version
== 3);
5332 status_cb(bs
, 0, 2, cb_opaque
);
5335 * In v2, snapshots do not need to have extra data. v3 requires
5336 * the 64-bit VM state size and the virtual disk size to be
5338 * qcow2_write_snapshots() will always write the list in the
5339 * v3-compliant format.
5341 need_snapshot_update
= false;
5342 for (i
= 0; i
< s
->nb_snapshots
; i
++) {
5343 if (s
->snapshots
[i
].extra_data_size
<
5344 sizeof_field(QCowSnapshotExtraData
, vm_state_size_large
) +
5345 sizeof_field(QCowSnapshotExtraData
, disk_size
))
5347 need_snapshot_update
= true;
5351 if (need_snapshot_update
) {
5352 ret
= qcow2_write_snapshots(bs
);
5354 error_setg_errno(errp
, -ret
, "Failed to update the snapshot table");
5358 status_cb(bs
, 1, 2, cb_opaque
);
5360 s
->qcow_version
= target_version
;
5361 ret
= qcow2_update_header(bs
);
5363 s
->qcow_version
= current_version
;
5364 error_setg_errno(errp
, -ret
, "Failed to update the image header");
5367 status_cb(bs
, 2, 2, cb_opaque
);
5372 typedef enum Qcow2AmendOperation
{
5373 /* This is the value Qcow2AmendHelperCBInfo::last_operation will be
5374 * statically initialized to so that the helper CB can discern the first
5375 * invocation from an operation change */
5376 QCOW2_NO_OPERATION
= 0,
5379 QCOW2_UPDATING_ENCRYPTION
,
5380 QCOW2_CHANGING_REFCOUNT_ORDER
,
5382 } Qcow2AmendOperation
;
5384 typedef struct Qcow2AmendHelperCBInfo
{
5385 /* The code coordinating the amend operations should only modify
5386 * these four fields; the rest will be managed by the CB */
5387 BlockDriverAmendStatusCB
*original_status_cb
;
5388 void *original_cb_opaque
;
5390 Qcow2AmendOperation current_operation
;
5392 /* Total number of operations to perform (only set once) */
5393 int total_operations
;
5395 /* The following fields are managed by the CB */
5397 /* Number of operations completed */
5398 int operations_completed
;
5400 /* Cumulative offset of all completed operations */
5401 int64_t offset_completed
;
5403 Qcow2AmendOperation last_operation
;
5404 int64_t last_work_size
;
5405 } Qcow2AmendHelperCBInfo
;
5407 static void qcow2_amend_helper_cb(BlockDriverState
*bs
,
5408 int64_t operation_offset
,
5409 int64_t operation_work_size
, void *opaque
)
5411 Qcow2AmendHelperCBInfo
*info
= opaque
;
5412 int64_t current_work_size
;
5413 int64_t projected_work_size
;
5415 if (info
->current_operation
!= info
->last_operation
) {
5416 if (info
->last_operation
!= QCOW2_NO_OPERATION
) {
5417 info
->offset_completed
+= info
->last_work_size
;
5418 info
->operations_completed
++;
5421 info
->last_operation
= info
->current_operation
;
5424 assert(info
->total_operations
> 0);
5425 assert(info
->operations_completed
< info
->total_operations
);
5427 info
->last_work_size
= operation_work_size
;
5429 current_work_size
= info
->offset_completed
+ operation_work_size
;
5431 /* current_work_size is the total work size for (operations_completed + 1)
5432 * operations (which includes this one), so multiply it by the number of
5433 * operations not covered and divide it by the number of operations
5434 * covered to get a projection for the operations not covered */
5435 projected_work_size
= current_work_size
* (info
->total_operations
-
5436 info
->operations_completed
- 1)
5437 / (info
->operations_completed
+ 1);
5439 info
->original_status_cb(bs
, info
->offset_completed
+ operation_offset
,
5440 current_work_size
+ projected_work_size
,
5441 info
->original_cb_opaque
);
5444 static int qcow2_amend_options(BlockDriverState
*bs
, QemuOpts
*opts
,
5445 BlockDriverAmendStatusCB
*status_cb
,
5450 BDRVQcow2State
*s
= bs
->opaque
;
5451 int old_version
= s
->qcow_version
, new_version
= old_version
;
5452 uint64_t new_size
= 0;
5453 const char *backing_file
= NULL
, *backing_format
= NULL
, *data_file
= NULL
;
5454 bool lazy_refcounts
= s
->use_lazy_refcounts
;
5455 bool data_file_raw
= data_file_is_raw(bs
);
5456 const char *compat
= NULL
;
5457 int refcount_bits
= s
->refcount_bits
;
5459 QemuOptDesc
*desc
= opts
->list
->desc
;
5460 Qcow2AmendHelperCBInfo helper_cb_info
;
5461 bool encryption_update
= false;
5463 while (desc
&& desc
->name
) {
5464 if (!qemu_opt_find(opts
, desc
->name
)) {
5465 /* only change explicitly defined options */
5470 if (!strcmp(desc
->name
, BLOCK_OPT_COMPAT_LEVEL
)) {
5471 compat
= qemu_opt_get(opts
, BLOCK_OPT_COMPAT_LEVEL
);
5473 /* preserve default */
5474 } else if (!strcmp(compat
, "0.10") || !strcmp(compat
, "v2")) {
5476 } else if (!strcmp(compat
, "1.1") || !strcmp(compat
, "v3")) {
5479 error_setg(errp
, "Unknown compatibility level %s", compat
);
5482 } else if (!strcmp(desc
->name
, BLOCK_OPT_SIZE
)) {
5483 new_size
= qemu_opt_get_size(opts
, BLOCK_OPT_SIZE
, 0);
5484 } else if (!strcmp(desc
->name
, BLOCK_OPT_BACKING_FILE
)) {
5485 backing_file
= qemu_opt_get(opts
, BLOCK_OPT_BACKING_FILE
);
5486 } else if (!strcmp(desc
->name
, BLOCK_OPT_BACKING_FMT
)) {
5487 backing_format
= qemu_opt_get(opts
, BLOCK_OPT_BACKING_FMT
);
5488 } else if (g_str_has_prefix(desc
->name
, "encrypt.")) {
5491 "Can't amend encryption options - encryption not present");
5494 if (s
->crypt_method_header
!= QCOW_CRYPT_LUKS
) {
5496 "Only LUKS encryption options can be amended");
5499 encryption_update
= true;
5500 } else if (!strcmp(desc
->name
, BLOCK_OPT_LAZY_REFCOUNTS
)) {
5501 lazy_refcounts
= qemu_opt_get_bool(opts
, BLOCK_OPT_LAZY_REFCOUNTS
,
5503 } else if (!strcmp(desc
->name
, BLOCK_OPT_REFCOUNT_BITS
)) {
5504 refcount_bits
= qemu_opt_get_number(opts
, BLOCK_OPT_REFCOUNT_BITS
,
5507 if (refcount_bits
<= 0 || refcount_bits
> 64 ||
5508 !is_power_of_2(refcount_bits
))
5510 error_setg(errp
, "Refcount width must be a power of two and "
5511 "may not exceed 64 bits");
5514 } else if (!strcmp(desc
->name
, BLOCK_OPT_DATA_FILE
)) {
5515 data_file
= qemu_opt_get(opts
, BLOCK_OPT_DATA_FILE
);
5516 if (data_file
&& !has_data_file(bs
)) {
5517 error_setg(errp
, "data-file can only be set for images that "
5518 "use an external data file");
5521 } else if (!strcmp(desc
->name
, BLOCK_OPT_DATA_FILE_RAW
)) {
5522 data_file_raw
= qemu_opt_get_bool(opts
, BLOCK_OPT_DATA_FILE_RAW
,
5524 if (data_file_raw
&& !data_file_is_raw(bs
)) {
5525 error_setg(errp
, "data-file-raw cannot be set on existing "
5530 /* if this point is reached, this probably means a new option was
5531 * added without having it covered here */
5538 helper_cb_info
= (Qcow2AmendHelperCBInfo
){
5539 .original_status_cb
= status_cb
,
5540 .original_cb_opaque
= cb_opaque
,
5541 .total_operations
= (new_version
!= old_version
)
5542 + (s
->refcount_bits
!= refcount_bits
) +
5543 (encryption_update
== true)
5546 /* Upgrade first (some features may require compat=1.1) */
5547 if (new_version
> old_version
) {
5548 helper_cb_info
.current_operation
= QCOW2_UPGRADING
;
5549 ret
= qcow2_upgrade(bs
, new_version
, &qcow2_amend_helper_cb
,
5550 &helper_cb_info
, errp
);
5556 if (encryption_update
) {
5557 QDict
*amend_opts_dict
;
5558 QCryptoBlockAmendOptions
*amend_opts
;
5560 helper_cb_info
.current_operation
= QCOW2_UPDATING_ENCRYPTION
;
5561 amend_opts_dict
= qcow2_extract_crypto_opts(opts
, "luks", errp
);
5562 if (!amend_opts_dict
) {
5565 amend_opts
= block_crypto_amend_opts_init(amend_opts_dict
, errp
);
5566 qobject_unref(amend_opts_dict
);
5570 ret
= qcrypto_block_amend_options(s
->crypto
,
5571 qcow2_crypto_hdr_read_func
,
5572 qcow2_crypto_hdr_write_func
,
5577 qapi_free_QCryptoBlockAmendOptions(amend_opts
);
5583 if (s
->refcount_bits
!= refcount_bits
) {
5584 int refcount_order
= ctz32(refcount_bits
);
5586 if (new_version
< 3 && refcount_bits
!= 16) {
5587 error_setg(errp
, "Refcount widths other than 16 bits require "
5588 "compatibility level 1.1 or above (use compat=1.1 or "
5593 helper_cb_info
.current_operation
= QCOW2_CHANGING_REFCOUNT_ORDER
;
5594 ret
= qcow2_change_refcount_order(bs
, refcount_order
,
5595 &qcow2_amend_helper_cb
,
5596 &helper_cb_info
, errp
);
5602 /* data-file-raw blocks backing files, so clear it first if requested */
5603 if (data_file_raw
) {
5604 s
->autoclear_features
|= QCOW2_AUTOCLEAR_DATA_FILE_RAW
;
5606 s
->autoclear_features
&= ~QCOW2_AUTOCLEAR_DATA_FILE_RAW
;
5610 g_free(s
->image_data_file
);
5611 s
->image_data_file
= *data_file
? g_strdup(data_file
) : NULL
;
5614 ret
= qcow2_update_header(bs
);
5616 error_setg_errno(errp
, -ret
, "Failed to update the image header");
5620 if (backing_file
|| backing_format
) {
5621 if (g_strcmp0(backing_file
, s
->image_backing_file
) ||
5622 g_strcmp0(backing_format
, s
->image_backing_format
)) {
5623 warn_report("Deprecated use of amend to alter the backing file; "
5624 "use qemu-img rebase instead");
5626 ret
= qcow2_change_backing_file(bs
,
5627 backing_file
?: s
->image_backing_file
,
5628 backing_format
?: s
->image_backing_format
);
5630 error_setg_errno(errp
, -ret
, "Failed to change the backing file");
5635 if (s
->use_lazy_refcounts
!= lazy_refcounts
) {
5636 if (lazy_refcounts
) {
5637 if (new_version
< 3) {
5638 error_setg(errp
, "Lazy refcounts only supported with "
5639 "compatibility level 1.1 and above (use compat=1.1 "
5643 s
->compatible_features
|= QCOW2_COMPAT_LAZY_REFCOUNTS
;
5644 ret
= qcow2_update_header(bs
);
5646 s
->compatible_features
&= ~QCOW2_COMPAT_LAZY_REFCOUNTS
;
5647 error_setg_errno(errp
, -ret
, "Failed to update the image header");
5650 s
->use_lazy_refcounts
= true;
5652 /* make image clean first */
5653 ret
= qcow2_mark_clean(bs
);
5655 error_setg_errno(errp
, -ret
, "Failed to make the image clean");
5658 /* now disallow lazy refcounts */
5659 s
->compatible_features
&= ~QCOW2_COMPAT_LAZY_REFCOUNTS
;
5660 ret
= qcow2_update_header(bs
);
5662 s
->compatible_features
|= QCOW2_COMPAT_LAZY_REFCOUNTS
;
5663 error_setg_errno(errp
, -ret
, "Failed to update the image header");
5666 s
->use_lazy_refcounts
= false;
5671 BlockBackend
*blk
= blk_new_with_bs(bs
, BLK_PERM_RESIZE
, BLK_PERM_ALL
,
5678 * Amending image options should ensure that the image has
5679 * exactly the given new values, so pass exact=true here.
5681 ret
= blk_truncate(blk
, new_size
, true, PREALLOC_MODE_OFF
, 0, errp
);
5688 /* Downgrade last (so unsupported features can be removed before) */
5689 if (new_version
< old_version
) {
5690 helper_cb_info
.current_operation
= QCOW2_DOWNGRADING
;
5691 ret
= qcow2_downgrade(bs
, new_version
, &qcow2_amend_helper_cb
,
5692 &helper_cb_info
, errp
);
5701 static int coroutine_fn
qcow2_co_amend(BlockDriverState
*bs
,
5702 BlockdevAmendOptions
*opts
,
5706 BlockdevAmendOptionsQcow2
*qopts
= &opts
->u
.qcow2
;
5707 BDRVQcow2State
*s
= bs
->opaque
;
5710 if (qopts
->has_encrypt
) {
5712 error_setg(errp
, "image is not encrypted, can't amend");
5716 if (qopts
->encrypt
->format
!= Q_CRYPTO_BLOCK_FORMAT_LUKS
) {
5718 "Amend can't be used to change the qcow2 encryption format");
5722 if (s
->crypt_method_header
!= QCOW_CRYPT_LUKS
) {
5724 "Only LUKS encryption options can be amended for qcow2 with blockdev-amend");
5728 ret
= qcrypto_block_amend_options(s
->crypto
,
5729 qcow2_crypto_hdr_read_func
,
5730 qcow2_crypto_hdr_write_func
,
5740 * If offset or size are negative, respectively, they will not be included in
5741 * the BLOCK_IMAGE_CORRUPTED event emitted.
5742 * fatal will be ignored for read-only BDS; corruptions found there will always
5743 * be considered non-fatal.
5745 void qcow2_signal_corruption(BlockDriverState
*bs
, bool fatal
, int64_t offset
,
5746 int64_t size
, const char *message_format
, ...)
5748 BDRVQcow2State
*s
= bs
->opaque
;
5749 const char *node_name
;
5753 fatal
= fatal
&& bdrv_is_writable(bs
);
5755 if (s
->signaled_corruption
&&
5756 (!fatal
|| (s
->incompatible_features
& QCOW2_INCOMPAT_CORRUPT
)))
5761 va_start(ap
, message_format
);
5762 message
= g_strdup_vprintf(message_format
, ap
);
5766 fprintf(stderr
, "qcow2: Marking image as corrupt: %s; further "
5767 "corruption events will be suppressed\n", message
);
5769 fprintf(stderr
, "qcow2: Image is corrupt: %s; further non-fatal "
5770 "corruption events will be suppressed\n", message
);
5773 node_name
= bdrv_get_node_name(bs
);
5774 qapi_event_send_block_image_corrupted(bdrv_get_device_name(bs
),
5775 *node_name
!= '\0', node_name
,
5776 message
, offset
>= 0, offset
,
5782 qcow2_mark_corrupt(bs
);
5783 bs
->drv
= NULL
; /* make BDS unusable */
5786 s
->signaled_corruption
= true;
5789 #define QCOW_COMMON_OPTIONS \
5791 .name = BLOCK_OPT_SIZE, \
5792 .type = QEMU_OPT_SIZE, \
5793 .help = "Virtual disk size" \
5796 .name = BLOCK_OPT_COMPAT_LEVEL, \
5797 .type = QEMU_OPT_STRING, \
5798 .help = "Compatibility level (v2 [0.10] or v3 [1.1])" \
5801 .name = BLOCK_OPT_BACKING_FILE, \
5802 .type = QEMU_OPT_STRING, \
5803 .help = "File name of a base image" \
5806 .name = BLOCK_OPT_BACKING_FMT, \
5807 .type = QEMU_OPT_STRING, \
5808 .help = "Image format of the base image" \
5811 .name = BLOCK_OPT_DATA_FILE, \
5812 .type = QEMU_OPT_STRING, \
5813 .help = "File name of an external data file" \
5816 .name = BLOCK_OPT_DATA_FILE_RAW, \
5817 .type = QEMU_OPT_BOOL, \
5818 .help = "The external data file must stay valid " \
5822 .name = BLOCK_OPT_LAZY_REFCOUNTS, \
5823 .type = QEMU_OPT_BOOL, \
5824 .help = "Postpone refcount updates", \
5825 .def_value_str = "off" \
5828 .name = BLOCK_OPT_REFCOUNT_BITS, \
5829 .type = QEMU_OPT_NUMBER, \
5830 .help = "Width of a reference count entry in bits", \
5831 .def_value_str = "16" \
5834 static QemuOptsList qcow2_create_opts
= {
5835 .name
= "qcow2-create-opts",
5836 .head
= QTAILQ_HEAD_INITIALIZER(qcow2_create_opts
.head
),
5839 .name
= BLOCK_OPT_ENCRYPT
, \
5840 .type
= QEMU_OPT_BOOL
, \
5841 .help
= "Encrypt the image with format 'aes'. (Deprecated " \
5842 "in favor of " BLOCK_OPT_ENCRYPT_FORMAT
"=aes)", \
5845 .name
= BLOCK_OPT_ENCRYPT_FORMAT
, \
5846 .type
= QEMU_OPT_STRING
, \
5847 .help
= "Encrypt the image, format choices: 'aes', 'luks'", \
5849 BLOCK_CRYPTO_OPT_DEF_KEY_SECRET("encrypt.", \
5850 "ID of secret providing qcow AES key or LUKS passphrase"), \
5851 BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_ALG("encrypt."), \
5852 BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_MODE("encrypt."), \
5853 BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_ALG("encrypt."), \
5854 BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_HASH_ALG("encrypt."), \
5855 BLOCK_CRYPTO_OPT_DEF_LUKS_HASH_ALG("encrypt."), \
5856 BLOCK_CRYPTO_OPT_DEF_LUKS_ITER_TIME("encrypt."), \
5858 .name
= BLOCK_OPT_CLUSTER_SIZE
, \
5859 .type
= QEMU_OPT_SIZE
, \
5860 .help
= "qcow2 cluster size", \
5861 .def_value_str
= stringify(DEFAULT_CLUSTER_SIZE
) \
5864 .name
= BLOCK_OPT_EXTL2
, \
5865 .type
= QEMU_OPT_BOOL
, \
5866 .help
= "Extended L2 tables", \
5867 .def_value_str
= "off" \
5870 .name
= BLOCK_OPT_PREALLOC
, \
5871 .type
= QEMU_OPT_STRING
, \
5872 .help
= "Preallocation mode (allowed values: off, " \
5873 "metadata, falloc, full)" \
5876 .name
= BLOCK_OPT_COMPRESSION_TYPE
, \
5877 .type
= QEMU_OPT_STRING
, \
5878 .help
= "Compression method used for image cluster " \
5880 .def_value_str
= "zlib" \
5882 QCOW_COMMON_OPTIONS
,
5883 { /* end of list */ }
5887 static QemuOptsList qcow2_amend_opts
= {
5888 .name
= "qcow2-amend-opts",
5889 .head
= QTAILQ_HEAD_INITIALIZER(qcow2_amend_opts
.head
),
5891 BLOCK_CRYPTO_OPT_DEF_LUKS_STATE("encrypt."),
5892 BLOCK_CRYPTO_OPT_DEF_LUKS_KEYSLOT("encrypt."),
5893 BLOCK_CRYPTO_OPT_DEF_LUKS_OLD_SECRET("encrypt."),
5894 BLOCK_CRYPTO_OPT_DEF_LUKS_NEW_SECRET("encrypt."),
5895 BLOCK_CRYPTO_OPT_DEF_LUKS_ITER_TIME("encrypt."),
5896 QCOW_COMMON_OPTIONS
,
5897 { /* end of list */ }
5901 static const char *const qcow2_strong_runtime_opts
[] = {
5902 "encrypt." BLOCK_CRYPTO_OPT_QCOW_KEY_SECRET
,
5907 BlockDriver bdrv_qcow2
= {
5908 .format_name
= "qcow2",
5909 .instance_size
= sizeof(BDRVQcow2State
),
5910 .bdrv_probe
= qcow2_probe
,
5911 .bdrv_open
= qcow2_open
,
5912 .bdrv_close
= qcow2_close
,
5913 .bdrv_reopen_prepare
= qcow2_reopen_prepare
,
5914 .bdrv_reopen_commit
= qcow2_reopen_commit
,
5915 .bdrv_reopen_commit_post
= qcow2_reopen_commit_post
,
5916 .bdrv_reopen_abort
= qcow2_reopen_abort
,
5917 .bdrv_join_options
= qcow2_join_options
,
5918 .bdrv_child_perm
= bdrv_default_perms
,
5919 .bdrv_co_create_opts
= qcow2_co_create_opts
,
5920 .bdrv_co_create
= qcow2_co_create
,
5921 .bdrv_has_zero_init
= qcow2_has_zero_init
,
5922 .bdrv_co_block_status
= qcow2_co_block_status
,
5924 .bdrv_co_preadv_part
= qcow2_co_preadv_part
,
5925 .bdrv_co_pwritev_part
= qcow2_co_pwritev_part
,
5926 .bdrv_co_flush_to_os
= qcow2_co_flush_to_os
,
5928 .bdrv_co_pwrite_zeroes
= qcow2_co_pwrite_zeroes
,
5929 .bdrv_co_pdiscard
= qcow2_co_pdiscard
,
5930 .bdrv_co_copy_range_from
= qcow2_co_copy_range_from
,
5931 .bdrv_co_copy_range_to
= qcow2_co_copy_range_to
,
5932 .bdrv_co_truncate
= qcow2_co_truncate
,
5933 .bdrv_co_pwritev_compressed_part
= qcow2_co_pwritev_compressed_part
,
5934 .bdrv_make_empty
= qcow2_make_empty
,
5936 .bdrv_snapshot_create
= qcow2_snapshot_create
,
5937 .bdrv_snapshot_goto
= qcow2_snapshot_goto
,
5938 .bdrv_snapshot_delete
= qcow2_snapshot_delete
,
5939 .bdrv_snapshot_list
= qcow2_snapshot_list
,
5940 .bdrv_snapshot_load_tmp
= qcow2_snapshot_load_tmp
,
5941 .bdrv_measure
= qcow2_measure
,
5942 .bdrv_get_info
= qcow2_get_info
,
5943 .bdrv_get_specific_info
= qcow2_get_specific_info
,
5945 .bdrv_save_vmstate
= qcow2_save_vmstate
,
5946 .bdrv_load_vmstate
= qcow2_load_vmstate
,
5949 .supports_backing
= true,
5950 .bdrv_change_backing_file
= qcow2_change_backing_file
,
5952 .bdrv_refresh_limits
= qcow2_refresh_limits
,
5953 .bdrv_co_invalidate_cache
= qcow2_co_invalidate_cache
,
5954 .bdrv_inactivate
= qcow2_inactivate
,
5956 .create_opts
= &qcow2_create_opts
,
5957 .amend_opts
= &qcow2_amend_opts
,
5958 .strong_runtime_opts
= qcow2_strong_runtime_opts
,
5959 .mutable_opts
= mutable_opts
,
5960 .bdrv_co_check
= qcow2_co_check
,
5961 .bdrv_amend_options
= qcow2_amend_options
,
5962 .bdrv_co_amend
= qcow2_co_amend
,
5964 .bdrv_detach_aio_context
= qcow2_detach_aio_context
,
5965 .bdrv_attach_aio_context
= qcow2_attach_aio_context
,
5967 .bdrv_supports_persistent_dirty_bitmap
=
5968 qcow2_supports_persistent_dirty_bitmap
,
5969 .bdrv_co_can_store_new_dirty_bitmap
= qcow2_co_can_store_new_dirty_bitmap
,
5970 .bdrv_co_remove_persistent_dirty_bitmap
=
5971 qcow2_co_remove_persistent_dirty_bitmap
,
5974 static void bdrv_qcow2_init(void)
5976 bdrv_register(&bdrv_qcow2
);
5979 block_init(bdrv_qcow2_init
);